2007-10-07 17:14:02 +05:30
|
|
|
/*
|
2021-12-05 21:05:27 +05:30
|
|
|
* SPDX-FileCopyrightText: 1989 - 1994, Julianne Frances Haugh
|
|
|
|
* SPDX-FileCopyrightText: 1996 - 1997, Marek Michałkiewicz
|
|
|
|
* SPDX-FileCopyrightText: 2003 - 2005, Tomasz Kłoczko
|
|
|
|
* SPDX-FileCopyrightText: 2007 - 2009, Nicolas François
|
2007-10-07 17:14:02 +05:30
|
|
|
*
|
2021-12-05 21:05:27 +05:30
|
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
2007-10-07 17:14:02 +05:30
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
2007-11-11 05:16:11 +05:30
|
|
|
#ident "$Id$"
|
2007-10-07 17:17:01 +05:30
|
|
|
|
2009-04-06 03:59:42 +05:30
|
|
|
#ifndef USE_PAM
|
|
|
|
|
2007-10-07 17:14:02 +05:30
|
|
|
#include <sys/types.h>
|
|
|
|
#include "prototypes.h"
|
|
|
|
#include "defines.h"
|
|
|
|
#include <pwd.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* pwd_to_spwd - create entries for new spwd structure
|
|
|
|
*
|
|
|
|
* pwd_to_spwd() creates a new (struct spwd) containing the
|
|
|
|
* information in the pointed-to (struct passwd).
|
|
|
|
*/
|
|
|
|
|
2007-10-07 17:15:23 +05:30
|
|
|
struct spwd *pwd_to_spwd (const struct passwd *pw)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
|
|
|
static struct spwd sp;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Nice, easy parts first. The name and passwd map directly
|
|
|
|
* from the old password structure to the new one.
|
|
|
|
*/
|
|
|
|
sp.sp_namp = pw->pw_name;
|
|
|
|
sp.sp_pwdp = pw->pw_passwd;
|
|
|
|
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Defaults used if there is no pw_age information.
|
|
|
|
*/
|
|
|
|
sp.sp_min = 0;
|
|
|
|
sp.sp_max = (10000L * DAY) / SCALE;
|
2023-02-01 18:20:48 +05:30
|
|
|
sp.sp_lstchg = gettime () / SCALE;
|
* libmisc/pwd2spwd.c, src/chpasswd.c, src/newusers.c,
src/passwd.c, src/pwck.c, src/pwconv.c, src/useradd.c,
src/usermod.c: On Jan 01, 1970, do not set the sp_lstchg field to
0 (which means that the password shall be changed during the next
login), but use -1 (password aging disabled).
* src/passwd.c: Do not check sp_min if sp_lstchg is null or -1.
2009-04-06 02:53:27 +05:30
|
|
|
if (0 == sp.sp_lstchg) {
|
|
|
|
/* Better disable aging than requiring a password
|
|
|
|
* change */
|
|
|
|
sp.sp_lstchg = -1;
|
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* These fields have no corresponding information in the password
|
|
|
|
* file. They are set to uninitialized values.
|
|
|
|
*/
|
|
|
|
sp.sp_warn = -1;
|
|
|
|
sp.sp_expire = -1;
|
|
|
|
sp.sp_inact = -1;
|
2008-06-14 01:38:33 +05:30
|
|
|
sp.sp_flag = SHADOW_SP_FLAG_UNSET;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
return &sp;
|
|
|
|
}
|
2009-04-06 03:59:42 +05:30
|
|
|
#else /* USE_PAM */
|
2022-12-21 23:32:25 +05:30
|
|
|
extern int ISO_C_forbids_an_empty_translation_unit;
|
2009-04-06 03:59:42 +05:30
|
|
|
#endif /* !USE_PAM */
|
|
|
|
|