When --auth was added to initdb in commit
e7029b212755 it had support
for auth options separated by space from the auth type, like:
--auth pam <servicename>
--auth ident sameuser
Passing an option to the ident auth type was removed in
01c1a12a5bb4
which left the pam auth-options support in place.
8a02339e9ba3 broke
this by inverting a calculation in the strncmp arguments, which went
unnoticed for a long time. The ability to pass options to the auth
type was never documented.
Rather than fixing the support for an undocumented feature which has
been broken for all supported versions, and which only supports one
out of many auth types which can take options, it is removed.
Reported-by: Jingxian Li <[email protected]>
Reviewed-by: Michael Paquier <[email protected]>
Reviewed-by: Aleksander Alekseev <[email protected]>
Discussion: https://postgr.es/m/
[email protected]
"sspi",
#endif
#ifdef USE_PAM
- "pam", "pam ",
+ "pam",
#endif
#ifdef USE_BSD_AUTH
"bsd",
static const char *const auth_methods_local[] = {
"trust", "reject", "scram-sha-256", "md5", "password", "peer", "radius",
#ifdef USE_PAM
- "pam", "pam ",
+ "pam",
#endif
#ifdef USE_BSD_AUTH
"bsd",
{
if (strcmp(authmethod, *p) == 0)
return;
- /* with space = param */
- if (strchr(authmethod, ' '))
- if (strncmp(authmethod, *p, (authmethod - strchr(authmethod, ' '))) == 0)
- return;
}
pg_fatal("invalid authentication method \"%s\" for \"%s\" connections",