Skip to content

Commit f1a4020

Browse files
committed
In pgwin32_open, loop after ERROR_ACCESS_DENIED only if we can't stat.
This fixes a performance problem introduced by commit 6d7547c. ERROR_ACCESS_DENIED is returned in some other cases besides the delete-pending case considered by that commit; notably, if the given path names a directory instead of a plain file. In that case we'll uselessly loop for 1 second before returning the failure condition. That slows down some usage scenarios enough to cause test timeout failures on our Windows buildfarm critters. To fix, try to stat() the file, and sleep/loop only if that fails. It will fail in the delete-pending case, and also in the case where the deletion completed before we could stat(), so we have the cases where we want to loop covered. In the directory case, the stat() should succeed, letting us exit without a wait. One case where we'll still wait uselessly is if the access-denied problem pertains to a directory in the given pathname. But we don't expect that to happen in any performance-critical code path. There might be room to refine this further, but I'll push it now in hopes of making the buildfarm green again. Back-patch, like the preceding commit. Alexander Lakhin and Tom Lane Discussion: https://postgr.es/m/23073.1576626626@sss.pgh.pa.us
1 parent 530b5d5 commit f1a4020

File tree

1 file changed

+23
-7
lines changed

1 file changed

+23
-7
lines changed

src/port/open.c

Lines changed: 23 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
#include <windows.h>
2323
#include <fcntl.h>
2424
#include <assert.h>
25+
#include <sys/stat.h>
2526

2627

2728
static int
@@ -121,18 +122,33 @@ pgwin32_open(const char *fileName, int fileFlags,...)
121122
}
122123

123124
/*
124-
* ERROR_ACCESS_DENIED can be returned if the file is deleted but not
125-
* yet gone (Windows NT status code is STATUS_DELETE_PENDING). Wait a
126-
* bit and try again, giving up after 1 second (since this condition
127-
* should never persist very long).
125+
* ERROR_ACCESS_DENIED is returned if the file is deleted but not yet
126+
* gone (Windows NT status code is STATUS_DELETE_PENDING). In that
127+
* case we want to wait a bit and try again, giving up after 1 second
128+
* (since this condition should never persist very long). However,
129+
* there are other commonly-hit cases that return ERROR_ACCESS_DENIED,
130+
* so care is needed. In particular that happens if we try to open a
131+
* directory, or of course if there's an actual file-permissions
132+
* problem. To distinguish these cases, try a stat(). In the
133+
* delete-pending case, it will either also get STATUS_DELETE_PENDING,
134+
* or it will see the file as gone and fail with ENOENT. In other
135+
* cases it will usually succeed. The only somewhat-likely case where
136+
* this coding will uselessly wait is if there's a permissions problem
137+
* with a containing directory, which we hope will never happen in any
138+
* performance-critical code paths.
128139
*/
129140
if (err == ERROR_ACCESS_DENIED)
130141
{
131142
if (loops < 10)
132143
{
133-
pg_usleep(100000);
134-
loops++;
135-
continue;
144+
struct stat st;
145+
146+
if (stat(fileName, &st) != 0)
147+
{
148+
pg_usleep(100000);
149+
loops++;
150+
continue;
151+
}
136152
}
137153
}
138154

0 commit comments

Comments
 (0)