1998-04-14 03:12:45 +04:00
|
|
|
/*
|
1994-08-29 03:32:47 +04:00
|
|
|
* Copyright (c) 1991, 1993, 1994
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1995-07-28 11:13:04 +04:00
|
|
|
* Portions Copyright(C) 1994, Jason Downs. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
* 3. All advertising materials mentioning features or use of this software
|
|
|
|
* must display the following acknowledgement:
|
|
|
|
* This product includes software developed by the University of
|
|
|
|
* California, Berkeley and its contributors.
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``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 REGENTS OR CONTRIBUTORS 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.
|
|
|
|
*/
|
|
|
|
|
1997-10-17 16:18:16 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifndef lint
|
2000-01-23 22:59:32 +03:00
|
|
|
__COPYRIGHT("@(#) Copyright (c) 2000\n\
|
|
|
|
The NetBSD Foundation, Inc. All rights reserved.\n\
|
|
|
|
Copyright (c) 1991, 1993, 1994\n\
|
1997-10-17 16:18:16 +04:00
|
|
|
The Regents of the University of California. All rights reserved.\n");
|
2000-01-23 22:59:32 +03:00
|
|
|
__SCCSID("from: @(#)pwd_mkdb.c 8.5 (Berkeley) 4/20/94");
|
|
|
|
__RCSID("$NetBSD: pwd_mkdb.c,v 1.17 2000/01/23 19:59:33 mycroft Exp $");
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/stat.h>
|
1994-08-29 03:32:47 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <db.h>
|
1994-08-29 03:32:47 +04:00
|
|
|
#include <err.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <errno.h>
|
1994-08-29 03:32:47 +04:00
|
|
|
#include <fcntl.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <limits.h>
|
1994-08-29 03:32:47 +04:00
|
|
|
#include <pwd.h>
|
|
|
|
#include <signal.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <stdio.h>
|
1994-08-29 03:32:47 +04:00
|
|
|
#include <stdlib.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <string.h>
|
1994-08-29 03:32:47 +04:00
|
|
|
#include <unistd.h>
|
1996-05-16 03:19:09 +04:00
|
|
|
#include <util.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
#define INSECURE 1
|
|
|
|
#define SECURE 2
|
|
|
|
#define PERM_INSECURE (S_IRUSR|S_IWUSR|S_IRGRP|S_IROTH)
|
|
|
|
#define PERM_SECURE (S_IRUSR|S_IWUSR)
|
|
|
|
|
1995-07-28 11:13:04 +04:00
|
|
|
/* pull this out of the C library. */
|
|
|
|
extern const char __yp_token[];
|
|
|
|
|
1994-08-29 03:32:47 +04:00
|
|
|
HASHINFO openinfo = {
|
|
|
|
4096, /* bsize */
|
|
|
|
32, /* ffactor */
|
|
|
|
256, /* nelem */
|
|
|
|
2048 * 1024, /* cachesize */
|
|
|
|
NULL, /* hash() */
|
|
|
|
0 /* lorder */
|
|
|
|
};
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
static enum state { FILE_INSECURE, FILE_SECURE, FILE_ORIG } clean;
|
|
|
|
static struct passwd pwd; /* password structure */
|
|
|
|
static char *pname; /* password file name */
|
1996-11-22 08:37:29 +03:00
|
|
|
static char prefix[MAXPATHLEN];
|
1998-04-14 03:12:45 +04:00
|
|
|
static char oldpwdfile[MAX(MAXPATHLEN, LINE_MAX * 2)];
|
|
|
|
static char pwd_db_tmp[MAX(MAXPATHLEN, LINE_MAX * 2)];
|
|
|
|
static char pwd_Sdb_tmp[MAX(MAXPATHLEN, LINE_MAX * 2)];
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-08-29 03:32:47 +04:00
|
|
|
void cleanup __P((void));
|
|
|
|
void error __P((char *));
|
1998-04-14 03:12:45 +04:00
|
|
|
void wr_error __P((char *));
|
1997-10-17 16:18:16 +04:00
|
|
|
int main __P((int, char **));
|
1994-08-29 03:32:47 +04:00
|
|
|
void mv __P((char *, char *));
|
1998-04-14 03:12:45 +04:00
|
|
|
void rm __P((char *));
|
2000-01-23 22:59:32 +03:00
|
|
|
int scan __P((FILE *, struct passwd *, u_int32_t *));
|
1994-08-29 03:32:47 +04:00
|
|
|
void usage __P((void));
|
|
|
|
|
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
main(argc, argv)
|
|
|
|
int argc;
|
1994-08-29 03:32:47 +04:00
|
|
|
char *argv[];
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
DB *dp, *edp;
|
|
|
|
DBT data, key;
|
1994-08-29 03:32:47 +04:00
|
|
|
FILE *fp, *oldfp;
|
|
|
|
sigset_t set;
|
2000-01-23 22:59:32 +03:00
|
|
|
int ch, len, makeold, tfd;
|
|
|
|
u_int32_t x, cnt, flags;
|
1998-07-27 04:52:00 +04:00
|
|
|
char *p;
|
|
|
|
const char *t;
|
1998-04-14 03:12:45 +04:00
|
|
|
char buf[MAX(MAXPATHLEN, LINE_MAX * 2)], tbuf[1024];
|
1995-07-28 11:13:04 +04:00
|
|
|
int hasyp = 0;
|
|
|
|
DBT ypdata, ypkey;
|
2000-01-23 22:59:32 +03:00
|
|
|
int lorder = BYTE_ORDER;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-10-17 16:18:16 +04:00
|
|
|
oldfp = NULL;
|
1996-11-22 08:37:29 +03:00
|
|
|
strcpy(prefix, "/");
|
1993-03-21 12:45:37 +03:00
|
|
|
makeold = 0;
|
2000-01-23 22:59:32 +03:00
|
|
|
while ((ch = getopt(argc, argv, "d:pvBL")) != -1)
|
1993-03-21 12:45:37 +03:00
|
|
|
switch(ch) {
|
1996-11-22 08:37:29 +03:00
|
|
|
case 'd':
|
|
|
|
strncpy(prefix, optarg, sizeof(prefix));
|
|
|
|
prefix[sizeof(prefix)-1] = '\0';
|
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
case 'p': /* create V7 "file.orig" */
|
|
|
|
makeold = 1;
|
|
|
|
break;
|
|
|
|
case 'v': /* backward compatible */
|
|
|
|
break;
|
2000-01-23 22:59:32 +03:00
|
|
|
case 'B':
|
|
|
|
lorder = BIG_ENDIAN;
|
|
|
|
break;
|
|
|
|
case 'L':
|
|
|
|
lorder = LITTLE_ENDIAN;
|
|
|
|
break;
|
1993-03-21 12:45:37 +03:00
|
|
|
case '?':
|
|
|
|
default:
|
|
|
|
usage();
|
|
|
|
}
|
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
|
|
|
|
if (argc != 1)
|
|
|
|
usage();
|
|
|
|
|
|
|
|
/*
|
1994-08-29 03:32:47 +04:00
|
|
|
* This could be changed to allow the user to interrupt.
|
|
|
|
* Probably not worth the effort.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
sigemptyset(&set);
|
|
|
|
sigaddset(&set, SIGTSTP);
|
|
|
|
sigaddset(&set, SIGHUP);
|
|
|
|
sigaddset(&set, SIGINT);
|
|
|
|
sigaddset(&set, SIGQUIT);
|
|
|
|
sigaddset(&set, SIGTERM);
|
|
|
|
(void)sigprocmask(SIG_BLOCK, &set, (sigset_t *)NULL);
|
|
|
|
|
1994-08-29 03:32:47 +04:00
|
|
|
/* We don't care what the user wants. */
|
|
|
|
(void)umask(0);
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
pname = *argv;
|
|
|
|
/* Open the original password file */
|
|
|
|
if (!(fp = fopen(pname, "r")))
|
|
|
|
error(pname);
|
|
|
|
|
2000-01-23 22:59:32 +03:00
|
|
|
openinfo.lorder = lorder;
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/* Open the temporary insecure password database. */
|
1998-04-14 03:12:45 +04:00
|
|
|
(void)snprintf(pwd_db_tmp, sizeof(pwd_db_tmp), "%s%s.tmp", prefix,
|
|
|
|
_PATH_MP_DB);
|
|
|
|
dp = dbopen(pwd_db_tmp,
|
1994-08-29 03:32:47 +04:00
|
|
|
O_RDWR|O_CREAT|O_EXCL, PERM_INSECURE, DB_HASH, &openinfo);
|
|
|
|
if (dp == NULL)
|
1998-04-14 03:12:45 +04:00
|
|
|
error(pwd_db_tmp);
|
1993-03-21 12:45:37 +03:00
|
|
|
clean = FILE_INSECURE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Open file for old password file. Minor trickiness -- don't want to
|
|
|
|
* chance the file already existing, since someone (stupidly) might
|
|
|
|
* still be using this for permission checking. So, open it first and
|
1994-08-29 03:32:47 +04:00
|
|
|
* fdopen the resulting fd. The resulting file should be readable by
|
|
|
|
* everyone.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
if (makeold) {
|
1998-04-14 03:12:45 +04:00
|
|
|
(void)snprintf(oldpwdfile, sizeof(oldpwdfile), "%s.orig",
|
|
|
|
pname);
|
|
|
|
if ((tfd = open(oldpwdfile,
|
1993-03-21 12:45:37 +03:00
|
|
|
O_WRONLY|O_CREAT|O_EXCL, PERM_INSECURE)) < 0)
|
1998-04-14 03:12:45 +04:00
|
|
|
error(oldpwdfile);
|
1994-08-29 03:32:47 +04:00
|
|
|
if ((oldfp = fdopen(tfd, "w")) == NULL)
|
1998-04-14 03:12:45 +04:00
|
|
|
error(oldpwdfile);
|
1993-03-21 12:45:37 +03:00
|
|
|
clean = FILE_ORIG;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The databases actually contain three copies of the original data.
|
|
|
|
* Each password file entry is converted into a rough approximation
|
|
|
|
* of a ``struct passwd'', with the strings placed inline. This
|
|
|
|
* object is then stored as the data for three separate keys. The
|
|
|
|
* first key * is the pw_name field prepended by the _PW_KEYBYNAME
|
|
|
|
* character. The second key is the pw_uid field prepended by the
|
|
|
|
* _PW_KEYBYUID character. The third key is the line number in the
|
|
|
|
* original file prepended by the _PW_KEYBYNUM character. (The special
|
|
|
|
* characters are prepended to ensure that the keys do not collide.)
|
1995-07-28 11:13:04 +04:00
|
|
|
*
|
|
|
|
* If we see something go by that looks like YP, we save a special
|
|
|
|
* pointer record, which if YP is enabled in the C lib, will speed
|
|
|
|
* things up.
|
1993-03-21 12:45:37 +03:00
|
|
|
*/
|
|
|
|
data.data = (u_char *)buf;
|
|
|
|
key.data = (u_char *)tbuf;
|
1995-07-28 11:13:04 +04:00
|
|
|
for (cnt = 1; scan(fp, &pwd, &flags); ++cnt) {
|
1996-11-22 08:37:29 +03:00
|
|
|
#define COMPACT(e) t = e; while ((*p++ = *t++));
|
1995-07-28 11:13:04 +04:00
|
|
|
|
|
|
|
/* look like YP? */
|
|
|
|
if((pwd.pw_name[0] == '+') || (pwd.pw_name[0] == '-'))
|
|
|
|
hasyp++;
|
|
|
|
|
1996-11-25 00:13:27 +03:00
|
|
|
/*
|
|
|
|
* Warn about potentially unsafe uid/gid overrides.
|
|
|
|
*/
|
|
|
|
if (pwd.pw_name[0] == '+') {
|
|
|
|
if ((flags & _PASSWORD_NOUID) == 0 && pwd.pw_uid == 0)
|
1998-06-08 07:23:07 +04:00
|
|
|
warnx(
|
|
|
|
"line %d: superuser override in YP inclusion",
|
|
|
|
cnt);
|
1996-11-25 00:13:27 +03:00
|
|
|
if ((flags & _PASSWORD_NOGID) == 0 && pwd.pw_gid == 0)
|
1998-06-08 07:23:07 +04:00
|
|
|
warnx("line %d: wheel override in YP inclusion",
|
|
|
|
cnt);
|
1996-11-25 00:13:27 +03:00
|
|
|
}
|
|
|
|
|
2000-01-23 22:59:32 +03:00
|
|
|
if (lorder != BYTE_ORDER) {
|
|
|
|
M_32_SWAP(pwd.pw_uid);
|
|
|
|
M_32_SWAP(pwd.pw_gid);
|
|
|
|
M_32_SWAP(pwd.pw_change);
|
|
|
|
M_32_SWAP(pwd.pw_expire);
|
|
|
|
M_32_SWAP(flags);
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/* Create insecure data. */
|
|
|
|
p = buf;
|
|
|
|
COMPACT(pwd.pw_name);
|
|
|
|
COMPACT("*");
|
2000-01-23 22:59:32 +03:00
|
|
|
memmove(p, &pwd.pw_uid, sizeof(pwd.pw_uid));
|
|
|
|
p += sizeof(pwd.pw_uid);
|
|
|
|
memmove(p, &pwd.pw_gid, sizeof(pwd.pw_gid));
|
|
|
|
p += sizeof(pwd.pw_gid);
|
|
|
|
memmove(p, &pwd.pw_change, sizeof(pwd.pw_change));
|
|
|
|
p += sizeof(pwd.pw_change);
|
1993-03-21 12:45:37 +03:00
|
|
|
COMPACT(pwd.pw_class);
|
|
|
|
COMPACT(pwd.pw_gecos);
|
|
|
|
COMPACT(pwd.pw_dir);
|
|
|
|
COMPACT(pwd.pw_shell);
|
2000-01-23 22:59:32 +03:00
|
|
|
memmove(p, &pwd.pw_expire, sizeof(pwd.pw_expire));
|
|
|
|
p += sizeof(pwd.pw_expire);
|
|
|
|
memmove(p, &flags, sizeof(flags));
|
|
|
|
p += sizeof(flags);
|
1993-03-21 12:45:37 +03:00
|
|
|
data.size = p - buf;
|
|
|
|
|
|
|
|
/* Store insecure by name. */
|
|
|
|
tbuf[0] = _PW_KEYBYNAME;
|
|
|
|
len = strlen(pwd.pw_name);
|
1994-08-29 03:32:47 +04:00
|
|
|
memmove(tbuf + 1, pwd.pw_name, len);
|
1993-03-21 12:45:37 +03:00
|
|
|
key.size = len + 1;
|
|
|
|
if ((dp->put)(dp, &key, &data, R_NOOVERWRITE) == -1)
|
1998-04-14 03:12:45 +04:00
|
|
|
wr_error(pwd_db_tmp);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/* Store insecure by number. */
|
|
|
|
tbuf[0] = _PW_KEYBYNUM;
|
2000-01-23 22:59:32 +03:00
|
|
|
x = cnt;
|
|
|
|
if (lorder != BYTE_ORDER)
|
|
|
|
M_32_SWAP(x);
|
|
|
|
memmove(tbuf + 1, &x, sizeof(x));
|
|
|
|
key.size = sizeof(x) + 1;
|
1993-03-21 12:45:37 +03:00
|
|
|
if ((dp->put)(dp, &key, &data, R_NOOVERWRITE) == -1)
|
1998-04-14 03:12:45 +04:00
|
|
|
wr_error(pwd_db_tmp);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/* Store insecure by uid. */
|
|
|
|
tbuf[0] = _PW_KEYBYUID;
|
1994-08-29 03:32:47 +04:00
|
|
|
memmove(tbuf + 1, &pwd.pw_uid, sizeof(pwd.pw_uid));
|
1993-03-21 12:45:37 +03:00
|
|
|
key.size = sizeof(pwd.pw_uid) + 1;
|
|
|
|
if ((dp->put)(dp, &key, &data, R_NOOVERWRITE) == -1)
|
1998-04-14 03:12:45 +04:00
|
|
|
wr_error(pwd_db_tmp);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1994-08-29 03:32:47 +04:00
|
|
|
/* Create original format password file entry */
|
1998-04-14 03:12:45 +04:00
|
|
|
if (makeold) {
|
1994-08-29 03:32:47 +04:00
|
|
|
(void)fprintf(oldfp, "%s:*:%d:%d:%s:%s:%s\n",
|
|
|
|
pwd.pw_name, pwd.pw_uid, pwd.pw_gid, pwd.pw_gecos,
|
|
|
|
pwd.pw_dir, pwd.pw_shell);
|
1998-04-14 03:12:45 +04:00
|
|
|
if (ferror(oldfp)) {
|
|
|
|
wr_error(oldpwdfile);
|
|
|
|
}
|
|
|
|
}
|
1994-08-29 03:32:47 +04:00
|
|
|
}
|
1995-07-28 11:13:04 +04:00
|
|
|
|
|
|
|
/* Store YP token, if needed. */
|
|
|
|
if(hasyp) {
|
|
|
|
ypkey.data = (u_char *)__yp_token;
|
|
|
|
ypkey.size = strlen(__yp_token);
|
|
|
|
ypdata.data = (u_char *)NULL;
|
|
|
|
ypdata.size = 0;
|
|
|
|
|
|
|
|
if ((dp->put)(dp, &ypkey, &ypdata, R_NOOVERWRITE) == -1)
|
1998-04-14 03:12:45 +04:00
|
|
|
wr_error(pwd_db_tmp);
|
1995-07-28 11:13:04 +04:00
|
|
|
}
|
|
|
|
|
1998-04-14 03:12:45 +04:00
|
|
|
if ((dp->close)(dp) < 0) {
|
|
|
|
wr_error(pwd_db_tmp);
|
|
|
|
}
|
1994-08-29 03:32:47 +04:00
|
|
|
if (makeold) {
|
1998-04-14 03:12:45 +04:00
|
|
|
if (fflush(oldfp) == EOF) {
|
|
|
|
wr_error(oldpwdfile);
|
|
|
|
}
|
|
|
|
if (fclose(oldfp) == EOF) {
|
|
|
|
wr_error(oldpwdfile);
|
|
|
|
}
|
1994-08-29 03:32:47 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Open the temporary encrypted password database. */
|
1998-04-14 03:12:45 +04:00
|
|
|
(void)snprintf(pwd_Sdb_tmp, sizeof(pwd_Sdb_tmp), "%s%s.tmp", prefix,
|
|
|
|
_PATH_SMP_DB);
|
|
|
|
edp = dbopen(pwd_Sdb_tmp,
|
1994-08-29 03:32:47 +04:00
|
|
|
O_RDWR|O_CREAT|O_EXCL, PERM_SECURE, DB_HASH, &openinfo);
|
|
|
|
if (!edp)
|
1998-04-14 03:12:45 +04:00
|
|
|
error(pwd_Sdb_tmp);
|
1994-08-29 03:32:47 +04:00
|
|
|
clean = FILE_SECURE;
|
|
|
|
|
|
|
|
rewind(fp);
|
1995-07-28 11:13:04 +04:00
|
|
|
for (cnt = 1; scan(fp, &pwd, &flags); ++cnt) {
|
1994-08-29 03:32:47 +04:00
|
|
|
|
2000-01-23 22:59:32 +03:00
|
|
|
if (lorder != BYTE_ORDER) {
|
|
|
|
M_32_SWAP(pwd.pw_uid);
|
|
|
|
M_32_SWAP(pwd.pw_gid);
|
|
|
|
M_32_SWAP(pwd.pw_change);
|
|
|
|
M_32_SWAP(pwd.pw_expire);
|
|
|
|
M_32_SWAP(flags);
|
|
|
|
}
|
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/* Create secure data. */
|
|
|
|
p = buf;
|
|
|
|
COMPACT(pwd.pw_name);
|
|
|
|
COMPACT(pwd.pw_passwd);
|
2000-01-23 22:59:32 +03:00
|
|
|
memmove(p, &pwd.pw_uid, sizeof(pwd.pw_uid));
|
|
|
|
p += sizeof(pwd.pw_uid);
|
|
|
|
memmove(p, &pwd.pw_gid, sizeof(pwd.pw_gid));
|
|
|
|
p += sizeof(pwd.pw_gid);
|
|
|
|
memmove(p, &pwd.pw_change, sizeof(pwd.pw_change));
|
|
|
|
p += sizeof(pwd.pw_change);
|
1993-03-21 12:45:37 +03:00
|
|
|
COMPACT(pwd.pw_class);
|
|
|
|
COMPACT(pwd.pw_gecos);
|
|
|
|
COMPACT(pwd.pw_dir);
|
|
|
|
COMPACT(pwd.pw_shell);
|
2000-01-23 22:59:32 +03:00
|
|
|
memmove(p, &pwd.pw_expire, sizeof(pwd.pw_expire));
|
|
|
|
p += sizeof(pwd.pw_expire);
|
|
|
|
memmove(p, &flags, sizeof(flags));
|
|
|
|
p += sizeof(flags);
|
1993-03-21 12:45:37 +03:00
|
|
|
data.size = p - buf;
|
|
|
|
|
|
|
|
/* Store secure by name. */
|
|
|
|
tbuf[0] = _PW_KEYBYNAME;
|
|
|
|
len = strlen(pwd.pw_name);
|
1994-08-29 03:32:47 +04:00
|
|
|
memmove(tbuf + 1, pwd.pw_name, len);
|
1993-03-21 12:45:37 +03:00
|
|
|
key.size = len + 1;
|
1998-04-14 03:12:45 +04:00
|
|
|
if ((edp->put)(edp, &key, &data, R_NOOVERWRITE) == -1)
|
1998-04-14 08:51:19 +04:00
|
|
|
wr_error(pwd_Sdb_tmp);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/* Store secure by number. */
|
|
|
|
tbuf[0] = _PW_KEYBYNUM;
|
2000-01-23 22:59:32 +03:00
|
|
|
x = cnt;
|
|
|
|
if (lorder != BYTE_ORDER)
|
|
|
|
M_32_SWAP(x);
|
|
|
|
memmove(tbuf + 1, &x, sizeof(x));
|
|
|
|
key.size = sizeof(x) + 1;
|
1998-04-14 03:12:45 +04:00
|
|
|
if ((edp->put)(edp, &key, &data, R_NOOVERWRITE) == -1)
|
1998-04-14 08:51:19 +04:00
|
|
|
wr_error(pwd_Sdb_tmp);
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/* Store secure by uid. */
|
|
|
|
tbuf[0] = _PW_KEYBYUID;
|
1994-08-29 03:32:47 +04:00
|
|
|
memmove(tbuf + 1, &pwd.pw_uid, sizeof(pwd.pw_uid));
|
1993-03-21 12:45:37 +03:00
|
|
|
key.size = sizeof(pwd.pw_uid) + 1;
|
1998-04-14 03:12:45 +04:00
|
|
|
if ((edp->put)(edp, &key, &data, R_NOOVERWRITE) == -1)
|
1998-04-14 08:51:19 +04:00
|
|
|
wr_error(pwd_Sdb_tmp);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-08-29 03:32:47 +04:00
|
|
|
|
1995-07-28 11:13:04 +04:00
|
|
|
/* Store YP token, if needed. */
|
|
|
|
if(hasyp) {
|
|
|
|
ypkey.data = (u_char *)__yp_token;
|
|
|
|
ypkey.size = strlen(__yp_token);
|
|
|
|
ypdata.data = (u_char *)NULL;
|
|
|
|
ypdata.size = 0;
|
|
|
|
|
1998-04-14 03:12:45 +04:00
|
|
|
if((edp->put)(edp, &ypkey, &ypdata, R_NOOVERWRITE) == -1)
|
1998-04-14 08:51:19 +04:00
|
|
|
wr_error(pwd_Sdb_tmp);
|
1995-07-28 11:13:04 +04:00
|
|
|
}
|
|
|
|
|
1998-04-14 03:12:45 +04:00
|
|
|
if ((edp->close)(edp) < 0) {
|
|
|
|
wr_error(_PATH_SMP_DB);
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/* Set master.passwd permissions, in case caller forgot. */
|
|
|
|
(void)fchmod(fileno(fp), S_IRUSR|S_IWUSR);
|
1998-04-14 03:12:45 +04:00
|
|
|
if (fclose(fp) == EOF) {
|
|
|
|
wr_error(pname);
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
/* Install as the real password files. */
|
1998-04-14 03:12:45 +04:00
|
|
|
{
|
|
|
|
char destination[MAXPATHLEN];
|
|
|
|
|
|
|
|
(void)snprintf(destination, sizeof(destination),
|
|
|
|
"%s%s", prefix, _PATH_MP_DB);
|
|
|
|
mv(pwd_db_tmp, destination);
|
|
|
|
|
|
|
|
(void)snprintf(destination, sizeof(destination),
|
|
|
|
"%s%s", prefix, _PATH_SMP_DB);
|
|
|
|
mv(pwd_Sdb_tmp, destination);
|
|
|
|
|
|
|
|
if (makeold) {
|
|
|
|
(void)snprintf(destination, sizeof(destination),
|
|
|
|
"%s%s", prefix, _PATH_PASSWD);
|
|
|
|
mv(oldpwdfile, destination);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Move the master password LAST -- chpass(1),
|
|
|
|
* passwd(1) and vipw(8) all use flock(2) on it to
|
|
|
|
* block other incarnations of themselves. The rename
|
|
|
|
* means that everything is unlocked, as the original
|
|
|
|
* file can no longer be accessed.
|
|
|
|
*/
|
|
|
|
(void)snprintf(destination, sizeof(destination),
|
|
|
|
"%s%s", prefix, _PATH_MASTERPASSWD);
|
|
|
|
mv(pname, destination);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
|
1994-08-29 03:32:47 +04:00
|
|
|
int
|
1995-07-28 11:13:04 +04:00
|
|
|
scan(fp, pw, flags)
|
1993-03-21 12:45:37 +03:00
|
|
|
FILE *fp;
|
|
|
|
struct passwd *pw;
|
2000-01-23 22:59:32 +03:00
|
|
|
u_int32_t *flags;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
|
|
|
static int lcnt;
|
|
|
|
static char line[LINE_MAX];
|
|
|
|
char *p;
|
2000-01-23 22:59:32 +03:00
|
|
|
int oflags;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
if (!fgets(line, sizeof(line), fp))
|
1994-08-29 03:32:47 +04:00
|
|
|
return (0);
|
1993-03-21 12:45:37 +03:00
|
|
|
++lcnt;
|
|
|
|
/*
|
|
|
|
* ``... if I swallow anything evil, put your fingers down my
|
|
|
|
* throat...''
|
|
|
|
* -- The Who
|
|
|
|
*/
|
1994-08-29 03:32:47 +04:00
|
|
|
if (!(p = strchr(line, '\n'))) {
|
|
|
|
warnx("line too long");
|
1993-03-21 12:45:37 +03:00
|
|
|
goto fmt;
|
|
|
|
|
|
|
|
}
|
|
|
|
*p = '\0';
|
1998-06-08 07:23:07 +04:00
|
|
|
if (strcmp(line, "+") == 0)
|
|
|
|
strcpy(line, "+:::::::::"); /* pw_scan() can't handle "+" */
|
2000-01-23 22:59:32 +03:00
|
|
|
oflags = 0;
|
|
|
|
if (!pw_scan(line, pw, &oflags)) {
|
1994-08-29 03:32:47 +04:00
|
|
|
warnx("at line #%d", lcnt);
|
|
|
|
fmt: errno = EFTYPE; /* XXX */
|
1993-03-21 12:45:37 +03:00
|
|
|
error(pname);
|
|
|
|
}
|
2000-01-23 22:59:32 +03:00
|
|
|
*flags = oflags;
|
1994-08-29 03:32:47 +04:00
|
|
|
|
|
|
|
return (1);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
|
1994-08-29 03:32:47 +04:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
mv(from, to)
|
|
|
|
char *from, *to;
|
|
|
|
{
|
|
|
|
char buf[MAXPATHLEN];
|
|
|
|
|
|
|
|
if (rename(from, to)) {
|
1994-08-29 03:32:47 +04:00
|
|
|
int sverrno = errno;
|
|
|
|
(void)snprintf(buf, sizeof(buf), "%s to %s", from, to);
|
1993-03-21 12:45:37 +03:00
|
|
|
errno = sverrno;
|
|
|
|
error(buf);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1998-04-14 03:12:45 +04:00
|
|
|
void
|
|
|
|
wr_error(name)
|
|
|
|
char *name;
|
|
|
|
{
|
|
|
|
char errbuf[BUFSIZ];
|
|
|
|
int sverrno = errno;
|
|
|
|
|
|
|
|
(void)snprintf(errbuf, sizeof(errbuf),
|
|
|
|
"attempt to write %s failed", name);
|
|
|
|
|
|
|
|
errno = sverrno;
|
|
|
|
error(errbuf);
|
|
|
|
}
|
|
|
|
|
1994-08-29 03:32:47 +04:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
error(name)
|
|
|
|
char *name;
|
|
|
|
{
|
1994-08-29 03:32:47 +04:00
|
|
|
|
|
|
|
warn(name);
|
1993-03-21 12:45:37 +03:00
|
|
|
cleanup();
|
1998-04-14 03:12:45 +04:00
|
|
|
#ifdef think_about_this_a_while_longer
|
|
|
|
fputs("NOTE: possible inconsistencies between text files and databases\n", stderr);
|
|
|
|
fputs("re-run pwd_mkdb when you have fixed the problem.\n", stderr);
|
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
|
1998-04-14 03:12:45 +04:00
|
|
|
void
|
|
|
|
rm(victim)
|
|
|
|
char *victim;
|
|
|
|
{
|
|
|
|
if (unlink(victim) < 0) {
|
|
|
|
warn("unlink(%s)", victim);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-08-29 03:32:47 +04:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
cleanup()
|
|
|
|
{
|
|
|
|
switch(clean) {
|
|
|
|
case FILE_ORIG:
|
1998-04-14 03:12:45 +04:00
|
|
|
rm(oldpwdfile);
|
1993-03-21 12:45:37 +03:00
|
|
|
/* FALLTHROUGH */
|
|
|
|
case FILE_SECURE:
|
1998-04-14 03:12:45 +04:00
|
|
|
rm(pwd_Sdb_tmp);
|
1993-03-21 12:45:37 +03:00
|
|
|
/* FALLTHROUGH */
|
|
|
|
case FILE_INSECURE:
|
1998-04-14 03:12:45 +04:00
|
|
|
rm(pwd_db_tmp);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-08-29 03:32:47 +04:00
|
|
|
void
|
1993-03-21 12:45:37 +03:00
|
|
|
usage()
|
|
|
|
{
|
1994-08-29 03:32:47 +04:00
|
|
|
|
2000-01-23 22:59:32 +03:00
|
|
|
(void)fprintf(stderr, "usage: pwd_mkdb [-pBL] [-d directory] file\n");
|
1993-03-21 12:45:37 +03:00
|
|
|
exit(1);
|
|
|
|
}
|