mirror of
https://github.com/osmarks/ngircd.git
synced 2024-12-13 10:20:28 +00:00
Use server password when PAM is compiled in but disabled
(cherry picked from commit 485d0aec81
)
Conflicts:
src/ngircd/conf.c
This commit is contained in:
parent
a3ad2927cc
commit
9a05c1145d
@ -369,9 +369,8 @@ Conf_Test( void )
|
|||||||
printf(" MotdPhrase = %s\n", array_bytes(&Conf_Motd)
|
printf(" MotdPhrase = %s\n", array_bytes(&Conf_Motd)
|
||||||
? (const char*) array_start(&Conf_Motd) : "");
|
? (const char*) array_start(&Conf_Motd) : "");
|
||||||
}
|
}
|
||||||
#ifndef PAM
|
if (!Conf_PAM)
|
||||||
printf(" Password = %s\n", Conf_ServerPwd);
|
printf(" Password = %s\n", Conf_ServerPwd);
|
||||||
#endif
|
|
||||||
printf(" PidFile = %s\n", Conf_PidFile);
|
printf(" PidFile = %s\n", Conf_PidFile);
|
||||||
printf(" Ports = ");
|
printf(" Ports = ");
|
||||||
ports_puts(&Conf_ListenPorts);
|
ports_puts(&Conf_ListenPorts);
|
||||||
@ -2247,7 +2246,7 @@ Validate_Config(bool Configtest, bool Rehash)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef PAM
|
#ifdef PAM
|
||||||
if (Conf_ServerPwd[0])
|
if (Conf_PAM && Conf_ServerPwd[0])
|
||||||
Config_Error(LOG_ERR,
|
Config_Error(LOG_ERR,
|
||||||
"This server uses PAM, \"Password\" in [Global] section will be ignored!");
|
"This server uses PAM, \"Password\" in [Global] section will be ignored!");
|
||||||
#endif
|
#endif
|
||||||
|
@ -91,13 +91,12 @@ Login_User(CLIENT * Client)
|
|||||||
|
|
||||||
#ifdef PAM
|
#ifdef PAM
|
||||||
if (!Conf_PAM) {
|
if (!Conf_PAM) {
|
||||||
/* Don't do any PAM authentication at all, instead emulate
|
/* Don't do any PAM authentication at all if PAM is not
|
||||||
* the behavior of the daemon compiled without PAM support:
|
* enabled, instead emulate the behavior of the daemon
|
||||||
* because there can't be any "server password", all
|
* compiled without PAM support. */
|
||||||
* passwords supplied are classified as "wrong". */
|
if (strcmp(Conn_Password(conn), Conf_ServerPwd) == 0)
|
||||||
if(Conn_Password(conn)[0] == '\0')
|
|
||||||
return Login_User_PostAuth(Client);
|
return Login_User_PostAuth(Client);
|
||||||
Client_Reject(Client, "Non-empty password", false);
|
Client_Reject(Client, "Bad server password", false);
|
||||||
return DISCONNECTED;
|
return DISCONNECTED;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -111,6 +110,7 @@ Login_User(CLIENT * Client)
|
|||||||
return Login_User_PostAuth(Client);
|
return Login_User_PostAuth(Client);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if (Conf_PAM) {
|
||||||
/* Fork child process for PAM authentication; and make sure that the
|
/* Fork child process for PAM authentication; and make sure that the
|
||||||
* process timeout is set higher than the login timeout! */
|
* process timeout is set higher than the login timeout! */
|
||||||
pid = Proc_Fork(Conn_GetProcStat(conn), pipefd,
|
pid = Proc_Fork(Conn_GetProcStat(conn), pipefd,
|
||||||
@ -130,6 +130,7 @@ Login_User(CLIENT * Client)
|
|||||||
Log_Exit_Subprocess("Auth");
|
Log_Exit_Subprocess("Auth");
|
||||||
exit(0);
|
exit(0);
|
||||||
}
|
}
|
||||||
|
} else return CONNECTED;
|
||||||
#else
|
#else
|
||||||
/* Check global server password ... */
|
/* Check global server password ... */
|
||||||
if (strcmp(Conn_Password(conn), Conf_ServerPwd) != 0) {
|
if (strcmp(Conn_Password(conn), Conf_ServerPwd) != 0) {
|
||||||
|
Loading…
Reference in New Issue
Block a user