This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
deb-mbse/unix/mbpasswd.c

933 lines
24 KiB
C
Raw Normal View History

2001-08-17 05:46:24 +00:00
/*****************************************************************************
*
2001-12-20 21:52:13 +00:00
* $Id$
2001-08-17 05:46:24 +00:00
* Purpose ...............: setuid root version of passwd
* Shadow Suite (c) ......: Julianne Frances Haugh
*
*****************************************************************************
2002-01-02 22:17:58 +00:00
* Copyright (C) 1997-2002
2001-08-17 05:46:24 +00:00
*
* Michiel Broek FIDO: 2:280/2802
* Beekmansbos 10
* 1971 BV IJmuiden
* the Netherlands
*
* This file is part of MBSE BBS.
*
* This BBS is free software; you can redistribute it and/or modify it
* under the terms of the GNU General Public License as published by the
* Free Software Foundation; either version 2, or (at your option) any
* later version.
*
* MBSE BBS is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with MBSE BBS; see the file COPYING. If not, write to the Free
* Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
*****************************************************************************/
#include "../config.h"
#include <stdio.h>
2001-08-25 19:53:11 +00:00
#include <sys/time.h>
#include <sys/types.h>
#ifdef HAVE_SYS_RESOURCE_H
2001-08-17 05:46:24 +00:00
#include <sys/resource.h>
2001-08-25 19:53:11 +00:00
#endif
2001-08-17 05:46:24 +00:00
#include <grp.h>
#include <pwd.h>
#include <sys/stat.h>
#include <syslog.h>
#include <string.h>
#include <signal.h>
#include <unistd.h>
#include <fcntl.h>
#include <time.h>
2001-08-25 19:53:11 +00:00
#include <stdlib.h>
2001-08-17 05:46:24 +00:00
#if defined(SHADOW_PASSWORD)
#include <shadow.h>
#endif
2001-08-25 19:53:11 +00:00
#ifdef HAVE_USERSEC_H
#include <userpw.h>
#include <usersec.h>
#include <userconf.h>
#endif
2001-08-17 05:46:24 +00:00
#include "encrypt.h"
#include "rad64.h"
#include "myname.h"
#include "xmalloc.h"
#include "pwio.h"
#include "shadowio.h"
2001-12-25 11:44:27 +00:00
#include "pw_util.h"
2002-01-11 21:07:04 +00:00
#include "getdef.h"
2001-08-17 05:46:24 +00:00
#include "mbpasswd.h"
#ifndef AGING
#if defined(SHADOW_PASSWORD)
#define AGING 1
#endif
#else
#if !defined(SHADOW_PASSWORD)
#undef AGING
#endif
#endif
static int do_update_age = 0;
#ifndef PAM
static char crypt_passwd[128]; /* The "old-style" password, if present */
static int do_update_pwd = 0;
#endif
#ifdef SHADOW_PASSWORD
2002-01-02 22:17:58 +00:00
static int is_shadow_pwd;
2001-08-17 05:46:24 +00:00
static void check_password(const struct passwd *, const struct spwd *);
#else /* !SHADOW_PASSWORD */
static void check_password(const struct passwd *);
#endif /* !SHADOW_PASSWORD */
#ifndef DAY
#define DAY (24L*3600L)
#endif
#define WEEK (7*DAY)
#define SCALE DAY
/*
* string to use for the pw_passwd field in /etc/passwd when using
* shadow passwords - most systems use "x" but there are a few
* exceptions, so it can be changed here if necessary. --marekm
*/
#ifndef SHADOW_PASSWD_STRING
#define SHADOW_PASSWD_STRING "x"
#endif
/*
* Global variables
*/
static char *name; /* The name of user whose password is being changed */
static char *myname; /* The current user's name */
static int force; /* Force update of locked passwords */
2002-01-11 19:01:00 +00:00
#if !defined(__FreeBSD__) && !defined(__NetBSD__)
2001-08-17 05:46:24 +00:00
static void fail_exit(int status)
{
2001-08-25 19:53:11 +00:00
// gr_unlock();
#ifdef SHADOWGRP
if (is_shadow_grp)
sgr_unlock();
#endif
2002-01-02 22:17:58 +00:00
#ifdef SHADOW_PASSWORD
2001-08-25 19:53:11 +00:00
if (is_shadow_pwd)
spw_unlock();
2001-08-17 05:46:24 +00:00
#endif
2001-08-25 19:53:11 +00:00
pw_unlock();
2001-08-17 05:46:24 +00:00
exit(status);
}
static void oom(void)
{
fprintf(stderr, "mbpasswd: out of memory\n");
2001-08-25 19:53:11 +00:00
fail_exit(E_FAILURE);
2001-08-17 05:46:24 +00:00
}
/*
* insert_crypt_passwd - add an "old-style" password to authentication string
* result now malloced to avoid overflow, just in case. --marekm
*/
2001-08-25 19:53:11 +00:00
static char *insert_crypt_passwd(const char *string, char *passwd)
2001-08-17 05:46:24 +00:00
{
#ifdef AUTH_METHODS
if (string && *string) {
char *cp, *result;
result = xmalloc(strlen(string) + strlen(passwd) + 1);
cp = result;
while (*string) {
if (string[0] == ';') {
*cp++ = *string++;
} else if (string[0] == '@') {
while (*string && *string != ';')
*cp++ = *string++;
} else {
while (*passwd)
*cp++ = *passwd++;
while (*string && *string != ';')
string++;
}
}
*cp = '\0';
return result;
}
#endif
return xstrdup(passwd);
}
static char *update_crypt_pw(char *cp)
{
if (do_update_pwd)
cp = insert_crypt_passwd(cp, crypt_passwd);
return cp;
}
/*
* pwd_init - ignore signals, and set resource limits to safe
* values. Call this before modifying password files, so that
* it is less likely to fail in the middle of operation.
*/
void pwd_init(void)
{
2001-08-25 19:53:11 +00:00
#ifdef HAVE_SYS_RESOURCE_H
2001-08-17 05:46:24 +00:00
struct rlimit rlim;
#ifdef RLIMIT_CORE
rlim.rlim_cur = rlim.rlim_max = 0;
setrlimit(RLIMIT_CORE, &rlim);
#endif
rlim.rlim_cur = rlim.rlim_max = RLIM_INFINITY;
#ifdef RLIMIT_AS
setrlimit(RLIMIT_AS, &rlim);
#endif
#ifdef RLIMIT_CPU
setrlimit(RLIMIT_CPU, &rlim);
#endif
#ifdef RLIMIT_DATA
setrlimit(RLIMIT_DATA, &rlim);
#endif
#ifdef RLIMIT_FSIZE
setrlimit(RLIMIT_FSIZE, &rlim);
#endif
#ifdef RLIMIT_NOFILE
setrlimit(RLIMIT_NOFILE, &rlim);
#endif
#ifdef RLIMIT_RSS
setrlimit(RLIMIT_RSS, &rlim);
#endif
#ifdef RLIMIT_STACK
setrlimit(RLIMIT_STACK, &rlim);
#endif
2001-08-25 19:53:11 +00:00
#endif /* !HAVE_SYS_RESOURCE_H */
2001-08-17 05:46:24 +00:00
signal(SIGALRM, SIG_IGN);
2001-08-25 19:53:11 +00:00
signal(SIGHUP, SIG_IGN);
signal(SIGINT, SIG_IGN);
2001-08-17 05:46:24 +00:00
signal(SIGPIPE, SIG_IGN);
signal(SIGQUIT, SIG_IGN);
signal(SIGTERM, SIG_IGN);
#ifdef SIGTSTP
signal(SIGTSTP, SIG_IGN);
#endif
#ifdef SIGTTOU
signal(SIGTTOU, SIG_IGN);
#endif
umask(077);
}
2002-01-11 19:01:00 +00:00
#endif /* not FreeBSD && NetBSD */
2001-08-17 05:46:24 +00:00
/*
* isexpired - determine if account is expired yet
*
* isexpired calculates the expiration date based on the
* password expiration criteria.
*/
#ifdef SHADOW_PASSWORD
int isexpired(const struct passwd *pw, const struct spwd *sp)
{
#else
int isexpired(const struct passwd *pw)
{
#endif
long now;
2001-08-25 19:53:11 +00:00
#ifdef HAVE_USERSEC_H
int minage = 0;
int maxage = 10000;
int curage = 0;
struct userpw *pu;
#endif
2001-08-17 05:46:24 +00:00
now = time ((time_t *) 0) / SCALE;
#ifdef SHADOW_PASSWORD
if (!sp)
sp = pwd_to_spwd(pw);
/*
* Quick and easy - there is an expired account field
* along with an inactive account field. Do the expired
* one first since it is worse.
*/
if (sp->sp_expire > 0 && now >= sp->sp_expire)
return 3;
/*
* 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!
*/
if (sp->sp_lstchg == 0 && !strcmp(pw->pw_passwd, SHADOW_PASSWD_STRING))
return 1;
if (sp->sp_lstchg > 0 && sp->sp_max >= 0 && sp->sp_inact >= 0 &&
now >= sp->sp_lstchg + sp->sp_max + sp->sp_inact)
return 2;
2001-08-25 19:53:11 +00:00
#endif
#ifdef HAVE_USERSEC_H /*{*/
/*
* The aging information lives someplace else. Get it from the
* login.cfg file
*/
if (getconfattr (SC_SYS_PASSWD, SC_MINAGE, &minage, SEC_INT))
minage = -1;
if (getconfattr (SC_SYS_PASSWD, SC_MAXAGE, &maxage, SEC_INT))
maxage = -1;
pu = getuserpw (pw->pw_name);
curage = (time (0) - pu->upw_lastupdate) / (7*86400L);
if (maxage != -1 && curage > maxage)
return 1;
#else /*} !HAVE_USERSEC_H */
2001-08-17 05:46:24 +00:00
/*
* 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.
*/
2001-08-25 19:53:11 +00:00
2002-01-02 22:17:58 +00:00
#ifdef SHADOW_PASSWORD
2001-08-17 05:46:24 +00:00
if (sp->sp_lstchg == -1 ||
sp->sp_max == -1 || sp->sp_max >= (10000L*DAY/SCALE))
return 0;
2001-08-25 19:53:11 +00:00
#endif
#ifdef ATT_AGE
if (pw->pw_age[0] == '\0' || pw->pw_age[0] == '/')
return 0;
#endif
2001-08-17 05:46:24 +00:00
/*
* 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.
*/
2001-08-25 19:53:11 +00:00
2002-01-02 22:17:58 +00:00
#ifdef SHADOW_PASSWORD
2001-08-17 05:46:24 +00:00
if (now >= sp->sp_lstchg + sp->sp_max)
return 1;
#endif
2001-08-25 19:53:11 +00:00
#ifdef ATT_AGE
if (a64l (pw->pw_age + 2) + c64i (pw->pw_age[1]) < now / 7)
return 1;
#endif
#endif /*} HAVE_USERSEC_H */
2001-08-17 05:46:24 +00:00
return 0;
}
/*
* check_password - test a password to see if it can be changed
*
* check_password() sees if the invoker has permission to change the
* password for the given user.
*/
#ifdef SHADOW_PASSWORD
static void check_password(const struct passwd *pw, const struct spwd *sp)
{
#else
static void check_password(const struct passwd *pw)
{
#endif
time_t now, last, ok;
int exp_status;
2001-08-25 19:53:11 +00:00
#ifdef HAVE_USERSEC_H
struct userpw *pu;
#endif
2001-08-17 05:46:24 +00:00
#ifdef SHADOW_PASSWORD
exp_status = isexpired(pw, sp);
#else
exp_status = isexpired(pw);
#endif
2001-12-23 16:44:18 +00:00
now = time(NULL);
2001-08-17 05:46:24 +00:00
#ifdef SHADOW_PASSWORD
/*
* If the force flag is set (for new users) this check is skipped.
*/
if (force == 1)
return;
/*
* Expired accounts cannot be changed ever. Passwords
* which are locked may not be changed. Passwords where
* min > max may not be changed. Passwords which have
* been inactive too long cannot be changed.
*/
if (sp->sp_pwdp[0] == '!' || exp_status > 1 ||
(sp->sp_max >= 0 && sp->sp_min > sp->sp_max)) {
fprintf (stderr, "The password for %s cannot be changed.\n", sp->sp_namp);
syslog(LOG_WARNING, "password locked for %s", sp->sp_namp);
closelog();
2001-08-25 19:53:11 +00:00
exit (E_NOPERM);
2001-08-17 05:46:24 +00:00
}
/*
* Passwords may only be changed after sp_min time is up.
*/
last = sp->sp_lstchg * SCALE;
ok = last + (sp->sp_min > 0 ? sp->sp_min * SCALE : 0);
#else /* !SHADOW_PASSWORD */
if (pw->pw_passwd[0] == '!' || exp_status > 1) {
fprintf (stderr, "The password for %s cannot be changed.\n", pw->pw_name);
syslog(LOG_WARNING, "password locked for %s", pw->pw_name);
closelog();
2001-08-25 19:53:11 +00:00
exit (E_NOPERM);
2001-08-17 05:46:24 +00:00
}
2001-08-25 19:53:11 +00:00
#ifdef ATT_AGE
/*
* Can always be changed if there is no age info
*/
if (! pw->pw_age[0])
return;
last = a64l (pw->pw_age + 2) * WEEK;
ok = last + c64i (pw->pw_age[1]) * WEEK;
#else /* !ATT_AGE */
#ifdef HAVE_USERSEC_H
pu = getuserpw(pw->pw_name);
last = pu ? pu->upw_lastupdate : 0L;
ok = last + (minage > 0 ? minage * WEEK : 0);
#else
last = 0;
ok = 0;
#endif
#endif /* !ATT_AGE */
2001-08-17 05:46:24 +00:00
#endif /* !SHADOW_PASSWORD */
if (now < ok) {
fprintf(stderr, "Sorry, the password for %s cannot be changed yet.\n", pw->pw_name);
syslog(LOG_WARNING, "now < minimum age for `%s'", pw->pw_name);
closelog();
2001-08-25 19:53:11 +00:00
exit (E_NOPERM);
2001-08-17 05:46:24 +00:00
}
}
/*
* 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).
*
* This function is borrowed from the Shadow Password Suite.
*/
#ifdef SHADOW_PASSWORD
struct spwd *pwd_to_spwd(const struct passwd *pw)
{
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;
2001-08-25 19:53:11 +00:00
#ifdef ATT_AGE
2001-08-17 05:46:24 +00:00
/*
2001-08-25 19:53:11 +00:00
* AT&T-style password aging maps the sp_min, sp_max, and
* sp_lstchg information from the pw_age field, which appears
* after the encrypted password.
2001-08-17 05:46:24 +00:00
*/
2001-08-25 19:53:11 +00:00
if (pw->pw_age[0]) {
sp.sp_max = (c64i(pw->pw_age[0]) * WEEK) / SCALE;
if (pw->pw_age[1])
sp.sp_min = (c64i(pw->pw_age[1]) * WEEK) / SCALE;
else
sp.sp_min = (10000L * DAY) / SCALE;
if (pw->pw_age[1] && pw->pw_age[2])
sp.sp_lstchg = (a64l(pw->pw_age + 2) * WEEK) / SCALE;
else
sp.sp_lstchg = time((time_t *) 0) / SCALE;
} else
#endif
{
/*
* Defaults used if there is no pw_age information.
*/
sp.sp_min = 0;
sp.sp_max = (10000L * DAY) / SCALE;
sp.sp_lstchg = time((time_t *) 0) / SCALE;
}
2001-08-17 05:46:24 +00:00
/*
* 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;
sp.sp_flag = -1;
return &sp;
}
#endif
/*
* new_password - validate old password and replace with new
* (both old and new in global "char crypt_passwd[128]")
*/
static int new_password(const struct passwd *pw, char *newpasswd)
{
char *cp; /* Pointer to getpass() response */
char pass[200]; /* New password */
#ifdef HAVE_LIBCRACK_HIST
int HistUpdate P_((const char *, const char *));
#endif
sprintf(pass, "%s", newpasswd);
/*
* Encrypt the password, then wipe the cleartext password.
*/
cp = pw_encrypt(pass, crypt_make_salt());
2001-08-25 19:53:11 +00:00
memset(&pass, 0, sizeof(pass));
2001-08-17 05:46:24 +00:00
#ifdef HAVE_LIBCRACK_HIST
HistUpdate(pw->pw_name, crypt_passwd);
#endif
STRFCPY(crypt_passwd, cp);
return 0;
}
2002-01-11 19:01:00 +00:00
#if !defined(__FreeBSD__) && !defined(__NetBSD__)
2001-08-17 05:46:24 +00:00
static void update_noshadow(int shadow_locked)
{
2001-08-25 19:53:11 +00:00
const struct passwd *pw;
struct passwd *npw;
#ifdef ATT_AGE
char age[5];
long week = time((time_t *) 0) / WEEK;
char *cp;
#endif
2001-08-17 05:46:24 +00:00
/*
* call this with shadow_locked != 0 to avoid calling lckpwdf()
* twice (which will fail). XXX - pw_lock(), pw_unlock(),
* spw_lock(), spw_unlock() really should track the lock count
* and call lckpwdf() only before the first lock, and ulckpwdf()
* after the last unlock.
*/
2001-08-25 19:53:11 +00:00
if (!pw_lock()) {
fprintf(stderr, "Cannot lock the password file; try again later.\n");
2001-08-17 05:46:24 +00:00
syslog(LOG_WARNING, "can't lock password file");
2001-08-25 19:53:11 +00:00
exit(E_PWDBUSY);
2001-08-17 05:46:24 +00:00
}
if (!pw_open(O_RDWR)) {
fprintf(stderr, "Cannot open the password file.\n");
syslog(LOG_ERR, "can't open password file");
2001-08-25 19:53:11 +00:00
fail_exit(E_MISSING);
2001-08-17 05:46:24 +00:00
}
pw = pw_locate(name);
if (!pw) {
fprintf(stderr, "mbpasswd: user %s not found in /etc/passwd\n", name);
2001-08-25 19:53:11 +00:00
fail_exit(E_NOPERM);
2001-08-17 05:46:24 +00:00
}
npw = __pw_dup(pw);
if (!npw)
oom();
npw->pw_passwd = update_crypt_pw(npw->pw_passwd);
2001-08-25 19:53:11 +00:00
#ifdef ATT_AGE
memset(age, 0, sizeof(age));
STRFCPY(age, npw->pw_age);
/*
* Just changing the password - update the last change date
* if there is one, otherwise the age just disappears.
*/
if (do_update_age) {
if (strlen(age) > 2) {
cp = l64a(week);
age[2] = cp[0];
age[3] = cp[1];
} else {
age[0] = '\0';
}
}
if (xflg) {
if (age_max > 0)
age[0] = i64c((age_max + 6) / 7);
else
age[0] = '.';
if (age[1] == '\0')
age[1] = '.';
}
if (nflg) {
if (age[0] == '\0')
age[0] = 'z';
if (age_min > 0)
age[1] = i64c((age_min + 6) / 7);
else
age[1] = '.';
}
/*
* The last change date is added by -n or -x if it's
* not already there.
*/
if ((nflg || xflg) && strlen(age) <= 2) {
cp = l64a(week);
age[2] = cp[0];
age[3] = cp[1];
}
/*
* Force password change - if last change date is
* present, it will be set to (today - max - 1 week).
* Otherwise, just set min = max = 0 (will disappear
* when password is changed).
*/
if (eflg) {
if (strlen(age) > 2) {
cp = l64a(week - c64i(age[0]) - 1);
age[2] = cp[0];
age[3] = cp[1];
} else {
strcpy(age, "..");
}
}
npw->pw_age = age;
#endif
2001-08-17 05:46:24 +00:00
if (!pw_update(npw)) {
fprintf(stderr, "Error updating the password entry.\n");
syslog(LOG_ERR, "error updating password entry");
2001-08-25 19:53:11 +00:00
fail_exit(E_FAILURE);
2001-08-17 05:46:24 +00:00
}
2001-08-25 19:53:11 +00:00
#ifdef NDBM
if (pw_dbm_present() && !pw_dbm_update(npw)) {
fprintf(stderr, _("Error updating the DBM password entry.\n"));
SYSLOG((LOG_ERR, DBMERROR2));
fail_exit(E_FAILURE);
}
endpwent();
#endif
2001-08-17 05:46:24 +00:00
if (!pw_close()) {
fprintf(stderr, "Cannot commit password file changes.\n");
syslog(LOG_ERR, "can't rewrite password file");
2001-08-25 19:53:11 +00:00
fail_exit(E_FAILURE);
2001-08-17 05:46:24 +00:00
}
pw_unlock();
}
2002-01-11 19:01:00 +00:00
#endif /* Not __FreeBSD__ && __NetBSD__ */
2001-08-17 05:46:24 +00:00
#ifdef SHADOW_PASSWORD
static void update_shadow(void)
{
const struct spwd *sp;
struct spwd *nsp;
2001-08-25 19:53:11 +00:00
if (!spw_lock()) {
2001-08-17 05:46:24 +00:00
fprintf(stderr, "Cannot lock the password file; try again later.\n");
syslog(LOG_WARNING, "can't lock password file");
2001-08-25 19:53:11 +00:00
exit(E_PWDBUSY);
2001-08-17 05:46:24 +00:00
}
if (!spw_open(O_RDWR)) {
fprintf(stderr, "Cannot open the password file.\n");
syslog(LOG_ERR, "can't open password file");
2001-08-25 19:53:11 +00:00
fail_exit(E_FAILURE);
2001-08-17 05:46:24 +00:00
}
sp = spw_locate(name);
if (!sp) {
/* Try to update the password in /etc/passwd instead. */
2001-08-25 19:53:11 +00:00
spw_close();
2001-08-17 05:46:24 +00:00
update_noshadow(1);
2001-08-25 19:53:11 +00:00
spw_unlock();
2001-08-17 05:46:24 +00:00
return;
}
nsp = __spw_dup(sp);
if (!nsp)
oom();
nsp->sp_pwdp = update_crypt_pw(nsp->sp_pwdp);
if (do_update_age)
nsp->sp_lstchg = time((time_t *) 0) / SCALE;
if (!spw_update(nsp)) {
fprintf(stderr, "Error updating the password entry.\n");
syslog(LOG_ERR, "error updating password entry");
2001-08-25 19:53:11 +00:00
fail_exit(E_FAILURE);
2001-08-17 05:46:24 +00:00
}
2001-08-25 19:53:11 +00:00
#ifdef NDBM
if (sp_dbm_present() && !sp_dbm_update(nsp)) {
fprintf(stderr, _("Error updating the DBM password entry.\n"));
SYSLOG((LOG_ERR, DBMERROR2));
fail_exit(E_FAILURE);
}
endspent();
#endif
2001-08-17 05:46:24 +00:00
if (!spw_close()) {
fprintf(stderr, "Cannot commit password file changes.\n");
syslog(LOG_ERR, "can't rewrite password file");
2001-08-25 19:53:11 +00:00
fail_exit(E_FAILURE);
2001-08-17 05:46:24 +00:00
}
spw_unlock();
}
#endif /* SHADOWPWD */
/*
* Function will set a new password in the users password file.
* Note that this function must run setuid root!
*/
int main(int argc, char *argv[])
{
2002-01-11 19:01:00 +00:00
#if !defined(__FreeBSD__) && !defined(__NetBSD__)
2001-08-17 05:46:24 +00:00
const struct passwd *pw;
const struct group *gr;
#ifdef SHADOW_PASSWORD
const struct spwd *sp;
#endif
2001-12-25 11:44:27 +00:00
#else
static struct passwd *pw;
static struct group *gr;
int pfd, tfd;
2001-08-25 19:53:11 +00:00
#endif
2001-12-25 11:44:27 +00:00
char *cp;
#ifdef _VPOPMAIL_PATH
char temp[PATH_MAX];
#endif
2001-12-25 11:44:27 +00:00
2002-01-11 21:07:04 +00:00
/*
* Init $MBSE_ROOT/etc/login.defs file before the *pw gets overwritten.
*/
def_load();
2001-08-17 05:46:24 +00:00
/*
* Get my username
*/
pw = get_my_pwent();
if (!pw) {
fprintf(stderr, "mbpasswd: Cannot determine your user name.\n");
exit(1);
}
myname = xstrdup(pw->pw_name);
/*
* Get my groupname, this must be "bbs", other users may not
* use this program, not even root.
*/
gr = getgrgid(pw->pw_gid);
if (!gr) {
fprintf(stderr, "mbpasswd: Cannot determine group name.\n");
2001-08-25 19:53:11 +00:00
exit(E_NOPERM);
2001-08-17 05:46:24 +00:00
}
if (strcmp(gr->gr_name, (char *)"bbs")) {
fprintf(stderr, "mbpasswd: You are not a member of group \"bbs\".\n");
2001-08-25 19:53:11 +00:00
exit(E_NOPERM);
2001-08-17 05:46:24 +00:00
}
// NOOT dit programma moet kontroleren of het is aangeroepen door mbsebbs.
// ook kontroleren of de originele uid en gid correct zijn.
// Gewone stervelingen mogen dit niet kunnen starten.
// Dit programma is een groot security gat.
if (argc != 4) {
2002-01-11 21:07:04 +00:00
fprintf(stderr, "\nmbpasswd commandline:\n\n");
fprintf(stderr, "mbpasswd [-opt] [username] [newpassword]\n");
fprintf(stderr, "options are: -n normal password change\n");
fprintf(stderr, " -f forced password change\n");
2001-08-25 19:53:11 +00:00
exit(E_FAILURE);
2001-08-17 05:46:24 +00:00
}
2001-12-25 11:44:27 +00:00
if (strncmp(argv[1], "-f", 2) == 0) {
/*
* This is a new user setting his password,
* this program runs under account mbse.
*/
2001-08-17 05:46:24 +00:00
force = 1;
2002-01-02 22:17:58 +00:00
if (strcmp(pw->pw_name, (char *)"mbse") && strcmp(pw->pw_name, (char *)"bbs")) {
fprintf(stderr, "mbpasswd: only users `mbse' and `bbs' may do this.\n");
2001-12-25 11:44:27 +00:00
exit(E_NOPERM);
}
} else if (strncmp(argv[1], "-n", 2) == 0) {
/*
* Normal password change by user, check
* caller is the user.
*/
2001-08-17 05:46:24 +00:00
force = 0;
2001-12-25 11:44:27 +00:00
if (strcmp(pw->pw_name, argv[2])) {
fprintf(stderr, "mbpasswd: only owner may do this.\n");
exit(E_NOPERM);
}
} else {
fprintf(stderr, "mbpasswd: wrong option switch.\n");
exit(E_FAILURE);
}
2001-08-17 05:46:24 +00:00
/*
* Check stringlengths
*/
if (strlen(argv[2]) > 16) {
fprintf(stderr, "mbpasswd: Username too long\n");
2001-08-25 19:53:11 +00:00
exit(E_FAILURE);
2001-08-17 05:46:24 +00:00
}
if (strlen(argv[3]) > 16) {
fprintf(stderr, "mbpasswd: Password too long\n");
2001-08-25 19:53:11 +00:00
exit(E_FAILURE);
2001-08-17 05:46:24 +00:00
}
2001-12-25 11:44:27 +00:00
/*
* We don't log into MBSE BBS logfiles but to the system logfiles,
* because we are modifying system files not belonging to MBSE BBS.
*/
openlog("mbpasswd", LOG_PID|LOG_CONS|LOG_NOWAIT, LOG_AUTH);
2001-08-17 05:46:24 +00:00
name = strdup(argv[2]);
if ((pw = getpwnam(name)) == NULL) {
2001-12-25 11:44:27 +00:00
syslog(LOG_ERR, "mbpasswd: Unknown user %s", name);
2001-08-17 05:46:24 +00:00
fprintf(stderr, "mbpasswd: Unknown user %s\n", name);
2001-08-25 19:53:11 +00:00
exit(E_FAILURE);
2001-08-17 05:46:24 +00:00
}
#ifdef SHADOW_PASSWORD
2002-01-02 22:17:58 +00:00
is_shadow_pwd = spw_file_present();
2001-08-17 05:46:24 +00:00
sp = getspnam(name);
if (!sp)
sp = pwd_to_spwd(pw);
cp = sp->sp_pwdp;
#else
cp = pw->pw_passwd;
#endif
/*
* See if the user is permitted to change the password.
* Otherwise, go ahead and set a new password.
*/
#ifdef SHADOW_PASSWORD
check_password(pw, sp);
#else
check_password(pw);
#endif
if (new_password(pw, argv[3])) {
fprintf(stderr, "The password for %s is unchanged.\n", name);
2001-08-25 19:53:11 +00:00
syslog(LOG_ERR, "The password for %s is unchanged", name);
2001-08-17 05:46:24 +00:00
closelog();
2001-08-25 19:53:11 +00:00
exit(E_FAILURE);
2001-08-17 05:46:24 +00:00
}
do_update_pwd = 1;
do_update_age = 1;
/*
* Before going any further, raise the ulimit to prevent
* colliding into a lowered ulimit, and set the real UID
* to root to protect against unexpected signals. Any
* keyboard signals are set to be ignored.
*/
2002-01-11 19:01:00 +00:00
#if !defined(__FreeBSD__) && !defined(__NetBSD__)
2001-08-17 05:46:24 +00:00
pwd_init();
2001-12-25 11:44:27 +00:00
#else
pw_init();
#endif
2001-08-17 05:46:24 +00:00
if (setuid(0)) {
fprintf(stderr, "Cannot change ID to root.\n");
syslog(LOG_ERR, "can't setuid(0)");
closelog();
2001-08-25 19:53:11 +00:00
exit(E_FAILURE);
2001-08-17 05:46:24 +00:00
}
2002-01-11 19:01:00 +00:00
#if !defined(__FreeBSD__) && !defined(__NetBSD__)
2001-08-25 19:53:11 +00:00
#ifdef HAVE_USERSEC_H
update_userpw(pw->pw_passwd);
#else /* !HAVE_USERSEC_H */
2001-08-17 05:46:24 +00:00
#ifdef SHADOW_PASSWORD
if (spw_file_present())
update_shadow();
else
#endif
update_noshadow(0);
2001-08-25 19:53:11 +00:00
#endif /* !HAVE_USERSEC_H */
2002-01-11 19:01:00 +00:00
#else /* __FreeBSD__ && __NetBSD__ */
2001-08-25 19:53:11 +00:00
/*
2001-12-25 11:44:27 +00:00
* FreeBSD password change, borrowed from the original FreeBSD sources
2001-08-25 19:53:11 +00:00
*/
2001-12-25 11:44:27 +00:00
/*
* Get the new password. Reset passwd change time to zero by
* default.
*/
pw->pw_change = 0;
pw->pw_passwd = crypt_passwd;
pfd = pw_lock();
tfd = pw_tmp();
pw_copy(pfd, tfd, pw);
if (!pw_mkdb(pw->pw_name))
pw_error((char *)NULL, 0, 1);
2001-08-25 19:53:11 +00:00
#endif /* __FreeBSD__ */
2001-08-17 05:46:24 +00:00
2002-02-24 21:20:25 +00:00
#ifdef _VPOPMAIL_PATH
sprintf(temp, "%s/vpasswd %s %s", _VPOPMAIL_PATH, argv[2], argv[3]);
fflush(stdout);
fflush(stdin);
if (system(temp) != 0) {
perror("mbpasswd: Failed to change vpopmail password\n");
syslog(LOG_ERR, "Failed to change vpopmail password");
}
#endif
2001-12-20 21:52:13 +00:00
syslog(LOG_NOTICE, "password for `%s' changed by user `%s'", name, myname);
2001-08-17 05:46:24 +00:00
closelog();
2001-08-25 19:53:11 +00:00
exit(E_SUCCESS);
2001-08-17 05:46:24 +00:00
}