mirror of
https://git.postgresql.org/git/postgresql.git
synced 2024-12-21 08:29:39 +08:00
Add SO_PEERCRED check in new unix domain socket permission checking code.
This commit is contained in:
parent
040aee295e
commit
9c5ea833a0
@ -8,7 +8,7 @@
|
|||||||
*
|
*
|
||||||
*
|
*
|
||||||
* IDENTIFICATION
|
* IDENTIFICATION
|
||||||
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.399 2010/07/18 11:37:26 petere Exp $
|
* $PostgreSQL: pgsql/src/interfaces/libpq/fe-connect.c,v 1.400 2010/07/18 15:51:00 momjian Exp $
|
||||||
*
|
*
|
||||||
*-------------------------------------------------------------------------
|
*-------------------------------------------------------------------------
|
||||||
*/
|
*/
|
||||||
@ -1816,8 +1816,12 @@ keep_going: /* We will come back to here until there is
|
|||||||
if (pass == NULL)
|
if (pass == NULL)
|
||||||
{
|
{
|
||||||
appendPQExpBuffer(&conn->errorMessage,
|
appendPQExpBuffer(&conn->errorMessage,
|
||||||
|
# if defined(SO_PEERCRED)
|
||||||
libpq_gettext("local user with ID %d does not exist\n"),
|
libpq_gettext("local user with ID %d does not exist\n"),
|
||||||
(int) peercred.uid);
|
(int) peercred.uid);
|
||||||
|
#else
|
||||||
|
libpq_gettext("matching local user does not exist\n"));
|
||||||
|
#endif
|
||||||
goto error_return;
|
goto error_return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user