]> granicus.if.org Git - postgresql/commit
Address set of issues with errno handling
authorMichael Paquier <michael@paquier.xyz>
Mon, 25 Jun 2018 01:30:59 +0000 (10:30 +0900)
committerMichael Paquier <michael@paquier.xyz>
Mon, 25 Jun 2018 02:22:24 +0000 (11:22 +0900)
commitf53ed82b7feeb1eee7388a24aa792e1d1b33e650
tree54925267f470433b1e3898bb9c7cc61f5c081f89
parent0a140ab32f4993917f81f07531752c41246fcac1
Address set of issues with errno handling

System calls mixed up in error code paths are causing two issues which
several code paths have not correctly handled:
1) For write() calls, sometimes the system may return less bytes than
what has been written without errno being set.  Some paths were careful
enough to consider that case, and assumed that errno should be set to
ENOSPC, other calls missed that.
2) errno generated by a system call is overwritten by other system calls
which may succeed once an error code path is taken, causing what is
reported to the user to be incorrect.

This patch uses the brute-force approach of correcting all those code
paths.  Some refactoring could happen in the future, but this is let as
future work, which is not targeted for back-branches anyway.

Author: Michael Paquier
Reviewed-by: Ashutosh Sharma
Discussion: https://postgr.es/m/20180622061535.GD5215@paquier.xyz
src/backend/access/transam/twophase.c
src/backend/access/transam/xlog.c
src/backend/replication/basebackup.c
src/bin/pg_basebackup/receivelog.c