Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit1943c00

Browse files
committed
initdb -S should now have an explicit check that $PGDATA is valid.
The fsync code from the backend essentially assumes that somebody's alreadyvalidated PGDATA, at least to the extent of it being a readable directory.That's safe enough for initdb's normal code path too, but "initdb -S"doesn't have any other processing at all that touches the target directory.To have reasonable error-case behavior, add a pg_check_dir call.Per gripe from Peter E.
1 parent57e1138 commit1943c00

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

‎src/bin/initdb/initdb.c

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3564,10 +3564,19 @@ main(int argc, char *argv[])
35643564
exit(1);
35653565
}
35663566

3567-
/* If we only need to fsync, justto it and exit */
3567+
/* If we only need to fsync, justdo it and exit */
35683568
if (sync_only)
35693569
{
35703570
setup_pgdata();
3571+
3572+
/* must check that directory is readable */
3573+
if (pg_check_dir(pg_data) <=0)
3574+
{
3575+
fprintf(stderr,_("%s: could not access directory \"%s\": %s\n"),
3576+
progname,pg_data,strerror(errno));
3577+
exit_nicely();
3578+
}
3579+
35713580
fsync_pgdata();
35723581
return0;
35733582
}

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp