diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2017-11-10 14:21:32 -0500 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2017-11-10 14:30:06 -0500 |
commit | 9efd83bfd32b38c675b263f532ebe9a6ec53149e (patch) | |
tree | e301743d36dda19da57e7572f11b29ee1a6250b3 /src/backend/libpq/auth.c | |
parent | 2d7e35b3a931fcef48a1faf0a0fb04f3db57cbde (diff) |
Fix some null pointer dereferences in LDAP auth code
An LDAP URL without a host name such as "ldap://" or without a base DN
such as "ldap://localhost" would cause a crash when reading pg_hba.conf.
If no binddn is configured, an error message might end up trying to print a
null pointer, which could crash on some platforms.
Author: Thomas Munro <thomas.munro@enterprisedb.com>
Reviewed-by: Michael Paquier <michael.paquier@gmail.com>
Diffstat (limited to 'src/backend/libpq/auth.c')
-rw-r--r-- | src/backend/libpq/auth.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/backend/libpq/auth.c b/src/backend/libpq/auth.c index 6030aa5e874..8fb518dbc24 100644 --- a/src/backend/libpq/auth.c +++ b/src/backend/libpq/auth.c @@ -2018,7 +2018,8 @@ CheckLDAPAuth(Port *port) { ereport(LOG, (errmsg("could not perform initial LDAP bind for ldapbinddn \"%s\" on server \"%s\": %s", - port->hba->ldapbinddn, port->hba->ldapserver, ldap_err2string(r)))); + port->hba->ldapbinddn ? port->hba->ldapbinddn : "", + port->hba->ldapserver, ldap_err2string(r)))); return STATUS_ERROR; } |