mirror of
https://github.com/postgres/postgres.git
synced 2025-06-27 23:21:58 +03:00
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
This commit is contained in:
@ -379,6 +379,8 @@ perform_base_backup(basebackup_options *opt, DIR *tblspcdir)
|
||||
fp = AllocateFile(pathbuf, "rb");
|
||||
if (fp == NULL)
|
||||
{
|
||||
int save_errno = errno;
|
||||
|
||||
/*
|
||||
* Most likely reason for this is that the file was already
|
||||
* removed by a checkpoint, so check for that to get a better
|
||||
@ -386,6 +388,7 @@ perform_base_backup(basebackup_options *opt, DIR *tblspcdir)
|
||||
*/
|
||||
CheckXLogRemoved(segno, tli);
|
||||
|
||||
errno = save_errno;
|
||||
ereport(ERROR,
|
||||
(errcode_for_file_access(),
|
||||
errmsg("could not open file \"%s\": %m", pathbuf)));
|
||||
|
Reference in New Issue
Block a user