2008-04-27 06:10:09 +05:30
|
|
|
/*
|
2021-12-05 21:05:27 +05:30
|
|
|
* SPDX-FileCopyrightText: 2000 - 2005, Tomasz Kłoczko
|
|
|
|
* SPDX-FileCopyrightText: 2007 - 2008, Nicolas François
|
2008-04-27 06:10:09 +05:30
|
|
|
*
|
2021-12-05 21:05:27 +05:30
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2008-04-27 06:10:09 +05:30
|
|
|
*/
|
|
|
|
|
2007-10-07 17:14:44 +05:30
|
|
|
#include <config.h>
|
|
|
|
|
2007-11-11 05:16:11 +05:30
|
|
|
#ident "$Id$"
|
2007-10-07 17:17:01 +05:30
|
|
|
|
2008-05-24 19:41:31 +05:30
|
|
|
#ifndef USE_PAM
|
|
|
|
|
2007-10-07 17:16:34 +05:30
|
|
|
#include <stdio.h>
|
2008-05-24 19:41:31 +05:30
|
|
|
#include <shadow.h>
|
2007-10-07 17:14:44 +05:30
|
|
|
#include "prototypes.h"
|
|
|
|
#include "defines.h"
|
2008-01-05 22:03:43 +05:30
|
|
|
#include "pwauth.h"
|
2021-11-29 05:07:53 +05:30
|
|
|
#include "shadowlog.h"
|
2008-05-24 19:41:31 +05:30
|
|
|
|
2009-04-24 01:47:02 +05:30
|
|
|
void passwd_check (const char *user, const char *passwd, unused const char *progname)
|
2007-10-07 17:14:44 +05:30
|
|
|
{
|
|
|
|
struct spwd *sp;
|
|
|
|
|
2008-05-24 19:41:31 +05:30
|
|
|
sp = getspnam (user); /* !USE_PAM, no need for xgetspnam */
|
|
|
|
if (NULL != sp) {
|
2007-10-07 17:14:44 +05:30
|
|
|
passwd = sp->sp_pwdp;
|
2008-05-24 19:41:31 +05:30
|
|
|
}
|
2023-02-01 07:20:14 +05:30
|
|
|
if (pw_auth (passwd, user, PW_LOGIN, NULL) != 0) {
|
2008-05-24 19:41:31 +05:30
|
|
|
SYSLOG ((LOG_WARN, "incorrect password for `%s'", user));
|
2009-04-24 01:47:02 +05:30
|
|
|
(void) sleep (1);
|
2021-11-29 05:07:53 +05:30
|
|
|
fprintf (log_get_logfd(), _("Incorrect password for %s.\n"), user);
|
2009-04-24 01:47:02 +05:30
|
|
|
exit (EXIT_FAILURE);
|
2007-10-07 17:14:44 +05:30
|
|
|
}
|
|
|
|
}
|
2008-05-24 19:41:31 +05:30
|
|
|
#else /* USE_PAM */
|
2022-12-21 23:32:25 +05:30
|
|
|
extern int ISO_C_forbids_an_empty_translation_unit;
|
2008-05-24 19:41:31 +05:30
|
|
|
#endif /* USE_PAM */
|