Skip to content

Commit 01ab9fb

Browse files
committed
Remove misguided SSL key file ownership check in libpq.
Commits a59c795 et al. tried to sync libpq's SSL key file permissions checks with what we've used for years in the backend. We did not intend to create any new failure cases, but it turns out we did: restricting the key file's ownership breaks cases where the client is allowed to read a key file despite not having the identical UID. In particular a client running as root used to be able to read someone else's key file; and having seen that I suspect that there are other, less-dubious use cases that this restriction breaks on some platforms. We don't really need an ownership check, since if we can read the key file despite its having restricted permissions, it must have the right ownership --- under normal conditions anyway, and the point of this patch is that any additional corner cases where that works should be deemed allowable, as they have been historically. Hence, just drop the ownership check, and rearrange the permissions check to get rid of its faulty assumption that geteuid() can't be zero. (Note that the comparable backend-side code doesn't have to cater for geteuid() == 0, since the server rejects that very early on.) This does have the end result that the permissions safety check used for a root user's private key file is weaker than that used for anyone else's. While odd, root really ought to know what she's doing with file permissions, so I think this is acceptable. Per report from Yogendra Suralkar. Like the previous patch, back-patch to all supported branches. Discussion: https://postgr.es/m/MW3PR15MB3931DF96896DC36D21AFD47CA3D39@MW3PR15MB3931.namprd15.prod.outlook.com
1 parent 4368ef2 commit 01ab9fb

File tree

2 files changed

+20
-19
lines changed

2 files changed

+20
-19
lines changed

src/backend/libpq/be-secure-common.c

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,9 +159,10 @@ check_ssl_key_file_permissions(const char *ssl_key_file, bool isServerStart)
159159
* allow read access through either our gid or a supplementary gid that
160160
* allows us to read system-wide certificates.
161161
*
162-
* Note that similar checks are performed in
162+
* Note that roughly similar checks are performed in
163163
* src/interfaces/libpq/fe-secure-openssl.c so any changes here may need
164-
* to be made there as well.
164+
* to be made there as well. The environment is different though; this
165+
* code can assume that we're not running as root.
165166
*
166167
* Ideally we would do similar permissions checks on Windows, but it is
167168
* not clear how that would work since Unix-style permissions may not be

src/interfaces/libpq/fe-secure-openssl.c

Lines changed: 17 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -1132,31 +1132,31 @@ initialize_SSL(PGconn *conn)
11321132
}
11331133

11341134
/*
1135-
* Refuse to load key files owned by users other than us or root, and
1136-
* require no public access to the key file. If the file is owned by
1137-
* us, require mode 0600 or less. If owned by root, require 0640 or
1138-
* less to allow read access through either our gid or a supplementary
1139-
* gid that allows us to read system-wide certificates.
1135+
* Refuse to load world-readable key files. We accept root-owned
1136+
* files with mode 0640 or less, so that we can access system-wide
1137+
* certificates if we have a supplementary group membership that
1138+
* allows us to read 'em. For files with non-root ownership, require
1139+
* mode 0600 or less. We need not check the file's ownership exactly;
1140+
* if we're able to read it despite it having such restrictive
1141+
* permissions, it must have the right ownership.
11401142
*
1141-
* Note that similar checks are performed in
1143+
* Note: be very careful about tightening these rules. Some people
1144+
* expect, for example, that a client process running as root should
1145+
* be able to use a non-root-owned key file.
1146+
*
1147+
* Note that roughly similar checks are performed in
11421148
* src/backend/libpq/be-secure-common.c so any changes here may need
1143-
* to be made there as well.
1149+
* to be made there as well. However, this code caters for the case
1150+
* of current user == root, while that code does not.
11441151
*
11451152
* Ideally we would do similar permissions checks on Windows, but it
11461153
* is not clear how that would work since Unix-style permissions may
11471154
* not be available.
11481155
*/
11491156
#if !defined(WIN32) && !defined(__CYGWIN__)
1150-
if (buf.st_uid != geteuid() && buf.st_uid != 0)
1151-
{
1152-
printfPQExpBuffer(&conn->errorMessage,
1153-
libpq_gettext("private key file \"%s\" must be owned by the current user or root\n"),
1154-
fnbuf);
1155-
return -1;
1156-
}
1157-
1158-
if ((buf.st_uid == geteuid() && buf.st_mode & (S_IRWXG | S_IRWXO)) ||
1159-
(buf.st_uid == 0 && buf.st_mode & (S_IWGRP | S_IXGRP | S_IRWXO)))
1157+
if (buf.st_uid == 0 ?
1158+
buf.st_mode & (S_IWGRP | S_IXGRP | S_IRWXO) :
1159+
buf.st_mode & (S_IRWXG | S_IRWXO))
11601160
{
11611161
printfPQExpBuffer(&conn->errorMessage,
11621162
libpq_gettext("private key file \"%s\" has group or world access; file must have permissions u=rw (0600) or less if owned by the current user, or permissions u=rw,g=r (0640) or less if owned by root\n"),

0 commit comments

Comments
 (0)