1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-06 19:59:18 +03:00

Adjust getpwuid() fix commit to display errno string on failure

This adjusts patch 613c6d26bd42dd8c2dd0664315be9551475b8864.
This commit is contained in:
Bruce Momjian 2014-03-28 12:50:11 -04:00
parent a87c729153
commit e1827012ed

View File

@ -1559,9 +1559,8 @@ auth_peer(hbaPort *port)
char ident_user[IDENT_USERNAME_MAX + 1]; char ident_user[IDENT_USERNAME_MAX + 1];
uid_t uid; uid_t uid;
gid_t gid; gid_t gid;
struct passwd *pass; struct passwd *pw;
errno = 0;
if (getpeereid(port->sock, &uid, &gid) != 0) if (getpeereid(port->sock, &uid, &gid) != 0)
{ {
/* Provide special error message if getpeereid is a stub */ /* Provide special error message if getpeereid is a stub */
@ -1576,17 +1575,17 @@ auth_peer(hbaPort *port)
return STATUS_ERROR; return STATUS_ERROR;
} }
pass = getpwuid(uid); errno = 0; /* clear errno before call */
pw = getpwuid(uid);
if (pass == NULL) if (!pw)
{ {
ereport(LOG, ereport(LOG,
(errmsg("local user with ID %d does not exist", (errmsg("failed to look up local user id %ld: %s",
(int) uid))); (long) uid, errno ? strerror(errno) : _("user does not exist"))));
return STATUS_ERROR; return STATUS_ERROR;
} }
strlcpy(ident_user, pass->pw_name, IDENT_USERNAME_MAX + 1); strlcpy(ident_user, pw->pw_name, IDENT_USERNAME_MAX + 1);
return check_usermap(port->hba->usermap, port->user_name, ident_user, false); return check_usermap(port->hba->usermap, port->user_name, ident_user, false);
} }