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: 2001 - 2005, Tomasz Kłoczko
|
|
|
|
* SPDX-FileCopyrightText: 2008 - 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
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Extracted from age.c and made part of libshadow.a - may be useful
|
|
|
|
* in other shadow-aware programs. --marekm
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include "prototypes.h"
|
|
|
|
#include "defines.h"
|
|
|
|
#include <pwd.h>
|
|
|
|
#include <time.h>
|
2007-10-07 17:14:59 +05:30
|
|
|
|
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
|
|
|
|
|
|
|
/*
|
|
|
|
* isexpired - determine if account is expired yet
|
|
|
|
*
|
|
|
|
* isexpired calculates the expiration date based on the
|
|
|
|
* password expiration criteria.
|
2009-04-06 02:53:06 +05:30
|
|
|
*
|
|
|
|
* Return value:
|
|
|
|
* 0: The password is still valid
|
|
|
|
* 1: The password has expired, it must be changed
|
|
|
|
* 2: The password has expired since a long time and the account is
|
|
|
|
* now disabled. (password cannot be changed)
|
|
|
|
* 3: The account has expired
|
2007-10-07 17:14:02 +05:30
|
|
|
*/
|
2009-04-23 23:13:27 +05:30
|
|
|
int isexpired (const struct passwd *pw, /*@null@*/const struct spwd *sp)
|
2007-10-07 17:14:02 +05:30
|
|
|
{
|
2007-10-07 17:15:23 +05:30
|
|
|
long now;
|
|
|
|
|
2023-02-01 18:20:48 +05:30
|
|
|
now = time(NULL) / SCALE;
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2008-05-26 05:44:10 +05:30
|
|
|
if (NULL == sp) {
|
2009-04-06 03:32:00 +05:30
|
|
|
return 0;
|
2008-05-26 05:44:10 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Quick and easy - there is an expired account field
|
|
|
|
* along with an inactive account field. Do the expired
|
|
|
|
* one first since it is worse.
|
|
|
|
*/
|
|
|
|
|
2008-06-14 01:42:03 +05:30
|
|
|
if ((sp->sp_expire > 0) && (now >= sp->sp_expire)) {
|
2007-10-07 17:14:02 +05:30
|
|
|
return 3;
|
2008-06-14 01:42:03 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Last changed date 1970-01-01 (not very likely) means that
|
|
|
|
* the password must be changed on next login (passwd -e).
|
|
|
|
*
|
|
|
|
* The check for "x" is a workaround for RedHat NYS libc bug -
|
|
|
|
* if /etc/shadow doesn't exist, getspnam() still succeeds and
|
|
|
|
* returns sp_lstchg==0 (must change password) instead of -1!
|
|
|
|
*/
|
2008-06-14 01:42:03 +05:30
|
|
|
if ( (0 == sp->sp_lstchg)
|
|
|
|
&& (strcmp (pw->pw_passwd, SHADOW_PASSWD_STRING) == 0)) {
|
2007-10-07 17:14:02 +05:30
|
|
|
return 1;
|
2008-05-26 05:44:10 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
2008-06-14 01:42:03 +05:30
|
|
|
if ( (sp->sp_lstchg > 0)
|
|
|
|
&& (sp->sp_max >= 0)
|
|
|
|
&& (sp->sp_inact >= 0)
|
|
|
|
&& (now >= (sp->sp_lstchg + sp->sp_max + sp->sp_inact))) {
|
2007-10-07 17:14:02 +05:30
|
|
|
return 2;
|
2008-06-14 01:42:03 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* The last and max fields must be present for an account
|
|
|
|
* to have an expired password. A maximum of >10000 days
|
|
|
|
* is considered to be infinite.
|
|
|
|
*/
|
|
|
|
|
2008-06-14 01:42:03 +05:30
|
|
|
if ( (-1 == sp->sp_lstchg)
|
|
|
|
|| (-1 == sp->sp_max)
|
2011-06-17 02:55:36 +05:30
|
|
|
|| (sp->sp_max >= ((10000L * DAY) / SCALE))) {
|
2007-10-07 17:14:02 +05:30
|
|
|
return 0;
|
2008-06-14 01:42:03 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
|
|
|
|
/*
|
|
|
|
* Calculate today's day and the day on which the password
|
|
|
|
* is going to expire. If that date has already passed,
|
|
|
|
* the password has expired.
|
|
|
|
*/
|
|
|
|
|
2008-06-14 01:42:03 +05:30
|
|
|
if (now >= (sp->sp_lstchg + sp->sp_max)) {
|
2007-10-07 17:14:02 +05:30
|
|
|
return 1;
|
2008-06-14 01:42:03 +05:30
|
|
|
}
|
2007-10-07 17:14:02 +05:30
|
|
|
return 0;
|
|
|
|
}
|
2008-05-26 05:44:10 +05:30
|
|
|
|