mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-11-24 10:53:24 +08:00
b0fb6872ed
[atomicio.c auth-bsdauth.c auth-chall.c auth-krb5.c auth-options.c] [auth-pam.c auth-passwd.c auth-rh-rsa.c auth-rhosts.c auth-rsa.c] [auth-shadow.c auth-skey.c auth.c auth1.c auth2-chall.c] [auth2-hostbased.c auth2-kbdint.c auth2-none.c auth2-passwd.c] [auth2-pubkey.c auth2.c authfd.c authfile.c bufaux.c buffer.c] [canohost.c channels.c cipher-3des1.c cipher-acss.c cipher-aes.c] [cipher-bf1.c cipher-ctr.c cipher.c cleanup.c clientloop.c compat.c] [compress.c deattack.c dh.c dispatch.c dns.c entropy.c fatal.c] [groupaccess.c hostfile.c includes.h kex.c kexdh.c kexdhc.c] [kexdhs.c kexgex.c kexgexc.c kexgexs.c key.c log.c loginrec.c] [loginrec.h logintest.c mac.c match.c md-sha256.c md5crypt.c misc.c] [monitor.c monitor_fdpass.c monitor_mm.c monitor_wrap.c msg.c] [nchan.c packet.c progressmeter.c readconf.c readpass.c rsa.c] [scard.c scp.c servconf.c serverloop.c session.c sftp-client.c] [sftp-common.c sftp-glob.c sftp-server.c sftp.c ssh-add.c] [ssh-agent.c ssh-dss.c ssh-keygen.c ssh-keyscan.c ssh-keysign.c] [ssh-rand-helper.c ssh-rsa.c ssh.c sshconnect.c sshconnect1.c] [sshconnect2.c sshd.c sshlogin.c sshpty.c sshtty.c ttymodes.c] [uidswap.c uuencode.c xmalloc.c openbsd-compat/bsd-arc4random.c] [openbsd-compat/bsd-closefrom.c openbsd-compat/bsd-cygwin_util.c] [openbsd-compat/bsd-getpeereid.c openbsd-compat/bsd-misc.c] [openbsd-compat/bsd-nextstep.c openbsd-compat/bsd-snprintf.c] [openbsd-compat/bsd-waitpid.c openbsd-compat/fake-rfc2553.c] RCSID() can die
138 lines
4.1 KiB
C
138 lines
4.1 KiB
C
/*
|
|
* Copyright (c) 2004 Darren Tucker. All rights reserved.
|
|
*
|
|
* Redistribution and use in source and binary forms, with or without
|
|
* modification, are permitted provided that the following conditions
|
|
* are met:
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
* notice, this list of conditions and the following disclaimer.
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
* documentation and/or other materials provided with the distribution.
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*/
|
|
|
|
#include "includes.h"
|
|
|
|
#if defined(USE_SHADOW) && defined(HAS_SHADOW_EXPIRE)
|
|
#include <shadow.h>
|
|
|
|
#include "auth.h"
|
|
#include "buffer.h"
|
|
#include "log.h"
|
|
|
|
#ifdef DAY
|
|
# undef DAY
|
|
#endif
|
|
#define DAY (24L * 60 * 60) /* 1 day in seconds */
|
|
|
|
extern Buffer loginmsg;
|
|
|
|
/*
|
|
* For the account and password expiration functions, we assume the expiry
|
|
* occurs the day after the day specified.
|
|
*/
|
|
|
|
/*
|
|
* Check if specified account is expired. Returns 1 if account is expired,
|
|
* 0 otherwise.
|
|
*/
|
|
int
|
|
auth_shadow_acctexpired(struct spwd *spw)
|
|
{
|
|
time_t today;
|
|
int daysleft;
|
|
char buf[256];
|
|
|
|
today = time(NULL) / DAY;
|
|
daysleft = spw->sp_expire - today;
|
|
debug3("%s: today %d sp_expire %d days left %d", __func__, (int)today,
|
|
(int)spw->sp_expire, daysleft);
|
|
|
|
if (spw->sp_expire == -1) {
|
|
debug3("account expiration disabled");
|
|
} else if (daysleft < 0) {
|
|
logit("Account %.100s has expired", spw->sp_namp);
|
|
return 1;
|
|
} else if (daysleft <= spw->sp_warn) {
|
|
debug3("account will expire in %d days", daysleft);
|
|
snprintf(buf, sizeof(buf),
|
|
"Your account will expire in %d day%s.\n", daysleft,
|
|
daysleft == 1 ? "" : "s");
|
|
buffer_append(&loginmsg, buf, strlen(buf));
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/*
|
|
* Checks password expiry for platforms that use shadow passwd files.
|
|
* Returns: 1 = password expired, 0 = password not expired
|
|
*/
|
|
int
|
|
auth_shadow_pwexpired(Authctxt *ctxt)
|
|
{
|
|
struct spwd *spw = NULL;
|
|
const char *user = ctxt->pw->pw_name;
|
|
char buf[256];
|
|
time_t today;
|
|
int daysleft, disabled = 0;
|
|
|
|
if ((spw = getspnam((char *)user)) == NULL) {
|
|
error("Could not get shadow information for %.100s", user);
|
|
return 0;
|
|
}
|
|
|
|
today = time(NULL) / DAY;
|
|
debug3("%s: today %d sp_lstchg %d sp_max %d", __func__, (int)today,
|
|
(int)spw->sp_lstchg, (int)spw->sp_max);
|
|
|
|
#if defined(__hpux) && !defined(HAVE_SECUREWARE)
|
|
if (iscomsec()) {
|
|
struct pr_passwd *pr;
|
|
|
|
pr = getprpwnam((char *)user);
|
|
|
|
/* Test for Trusted Mode expiry disabled */
|
|
if (pr != NULL && pr->ufld.fd_min == 0 &&
|
|
pr->ufld.fd_lifetime == 0 && pr->ufld.fd_expire == 0 &&
|
|
pr->ufld.fd_pw_expire_warning == 0 &&
|
|
pr->ufld.fd_schange != 0)
|
|
disabled = 1;
|
|
}
|
|
#endif
|
|
|
|
/* TODO: check sp_inact */
|
|
daysleft = spw->sp_lstchg + spw->sp_max - today;
|
|
if (disabled) {
|
|
debug3("password expiration disabled");
|
|
} else if (spw->sp_lstchg == 0) {
|
|
logit("User %.100s password has expired (root forced)", user);
|
|
return 1;
|
|
} else if (spw->sp_max == -1) {
|
|
debug3("password expiration disabled");
|
|
} else if (daysleft < 0) {
|
|
logit("User %.100s password has expired (password aged)", user);
|
|
return 1;
|
|
} else if (daysleft <= spw->sp_warn) {
|
|
debug3("password will expire in %d days", daysleft);
|
|
snprintf(buf, sizeof(buf),
|
|
"Your password will expire in %d day%s.\n", daysleft,
|
|
daysleft == 1 ? "" : "s");
|
|
buffer_append(&loginmsg, buf, strlen(buf));
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
#endif /* USE_SHADOW && HAS_SHADOW_EXPIRE */
|