2008-04-27 06:10:09 +05:30
|
|
|
/*
|
2021-12-05 21:05:27 +05:30
|
|
|
* SPDX-FileCopyrightText: 1997 - 1999, Marek Michałkiewicz
|
|
|
|
* SPDX-FileCopyrightText: 2001 - 2005, Tomasz Kłoczko
|
|
|
|
* SPDX-FileCopyrightText: 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:02 +05:30
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#ifdef USE_PAM
|
|
|
|
|
2007-11-11 05:16:11 +05:30
|
|
|
#ident "$Id$"
|
2007-10-07 17:17:01 +05:30
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
2009-05-09 18:45:17 +05:30
|
|
|
* Change the user's password using PAM.
|
2007-10-07 17:14:02 +05:30
|
|
|
*/
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include "defines.h"
|
|
|
|
#include "pam_defs.h"
|
2008-01-05 21:11:58 +05:30
|
|
|
#include "prototypes.h"
|
2021-11-29 05:07:53 +05:30
|
|
|
#include "shadowlog.h"
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2008-05-26 05:08:05 +05:30
|
|
|
void do_pam_passwd (const char *user, bool silent, bool change_expired)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
pam_handle_t *pamh = NULL;
|
|
|
|
int flags = 0, ret;
|
2021-11-29 05:07:53 +05:30
|
|
|
FILE *shadow_logfd = log_get_logfd();
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
if (silent)
|
|
|
|
flags |= PAM_SILENT;
|
|
|
|
if (change_expired)
|
|
|
|
flags |= PAM_CHANGE_EXPIRED_AUTHTOK;
|
|
|
|
|
2007-10-07 17:15:23 +05:30
|
|
|
ret = pam_start ("passwd", user, &conv, &pamh);
|
2007-10-07 17:14:02 +05:30
|
|
|
if (ret != PAM_SUCCESS) {
|
2021-05-09 04:12:14 +05:30
|
|
|
fprintf (shadow_logfd,
|
2007-10-07 17:15:23 +05:30
|
|
|
_("passwd: pam_start() failed, error %d\n"), ret);
|
|
|
|
exit (10); /* XXX */
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
2007-10-07 17:15:23 +05:30
|
|
|
ret = pam_chauthtok (pamh, flags);
|
2007-10-07 17:14:02 +05:30
|
|
|
if (ret != PAM_SUCCESS) {
|
2021-05-09 04:12:14 +05:30
|
|
|
fprintf (shadow_logfd, _("passwd: %s\n"), pam_strerror (pamh, ret));
|
|
|
|
fputs (_("passwd: password unchanged\n"), shadow_logfd);
|
2007-10-07 17:15:23 +05:30
|
|
|
pam_end (pamh, ret);
|
|
|
|
exit (10); /* XXX */
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
2021-05-09 04:12:14 +05:30
|
|
|
fputs (_("passwd: password updated successfully\n"), shadow_logfd);
|
2008-05-26 05:08:05 +05:30
|
|
|
(void) pam_end (pamh, PAM_SUCCESS);
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
2007-10-07 17:15:23 +05:30
|
|
|
#else /* !USE_PAM */
|
|
|
|
extern int errno; /* warning: ANSI C forbids an empty source file */
|
|
|
|
#endif /* !USE_PAM */
|