2019-06-28 06:32:41 -07:00
|
|
|
/* $OpenBSD: passwd.c,v 1.56 2019/06/28 13:32:43 deraadt Exp $ */
|
1997-06-17 03:10:41 -07:00
|
|
|
|
1996-05-22 04:34:43 -07:00
|
|
|
/*
|
|
|
|
* Copyright (c) 1987, 1993, 1994, 1995
|
|
|
|
* The Regents of the University of California. 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.
|
2003-06-02 13:18:29 -07:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
1996-05-22 04:34:43 -07:00
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/resource.h>
|
|
|
|
#include <sys/wait.h>
|
|
|
|
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <string.h>
|
1997-11-18 11:57:27 -08:00
|
|
|
#include <ctype.h>
|
1996-05-22 04:34:43 -07:00
|
|
|
#include <pwd.h>
|
1997-11-18 11:57:27 -08:00
|
|
|
#include <err.h>
|
1996-05-22 04:34:43 -07:00
|
|
|
#include <errno.h>
|
|
|
|
#include <paths.h>
|
|
|
|
#include <signal.h>
|
|
|
|
#include <limits.h>
|
1996-06-17 00:46:01 -07:00
|
|
|
|
|
|
|
#include "util.h"
|
1996-05-22 04:34:43 -07:00
|
|
|
|
1997-06-17 03:10:41 -07:00
|
|
|
static char pw_defdir[] = "/etc";
|
|
|
|
static char *pw_dir = pw_defdir;
|
|
|
|
static char *pw_lck;
|
|
|
|
|
|
|
|
char *
|
2003-06-26 09:34:42 -07:00
|
|
|
pw_file(const char *nm)
|
1997-06-17 03:10:41 -07:00
|
|
|
{
|
|
|
|
const char *p = strrchr(nm, '/');
|
|
|
|
char *new_nm;
|
|
|
|
|
|
|
|
if (p)
|
|
|
|
p++;
|
|
|
|
else
|
|
|
|
p = nm;
|
2003-03-30 12:57:59 -08:00
|
|
|
|
|
|
|
if (asprintf(&new_nm, "%s/%s", pw_dir, p) == -1)
|
1997-06-17 03:10:41 -07:00
|
|
|
return NULL;
|
|
|
|
return new_nm;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-06-26 09:34:42 -07:00
|
|
|
pw_setdir(const char *dir)
|
1997-06-17 03:10:41 -07:00
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
|
|
|
|
if (strcmp (dir, pw_dir) == 0)
|
|
|
|
return;
|
|
|
|
if (pw_dir != pw_defdir)
|
|
|
|
free(pw_dir);
|
|
|
|
pw_dir = strdup(dir);
|
|
|
|
if (pw_lck) {
|
|
|
|
p = pw_file(pw_lck);
|
|
|
|
free(pw_lck);
|
|
|
|
pw_lck = p;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1996-05-22 04:34:43 -07:00
|
|
|
int
|
2003-06-26 09:34:42 -07:00
|
|
|
pw_lock(int retries)
|
1996-05-22 04:34:43 -07:00
|
|
|
{
|
|
|
|
int i, fd;
|
|
|
|
mode_t old_mode;
|
|
|
|
|
2006-12-17 12:50:51 -08:00
|
|
|
if (!pw_lck) {
|
|
|
|
errno = EINVAL;
|
1997-06-17 03:10:41 -07:00
|
|
|
return (-1);
|
2006-12-17 12:50:51 -08:00
|
|
|
}
|
1997-11-17 14:46:03 -08:00
|
|
|
/* Acquire the lock file. */
|
1996-05-22 04:34:43 -07:00
|
|
|
old_mode = umask(0);
|
2014-08-14 20:51:40 -07:00
|
|
|
fd = open(pw_lck, O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0600);
|
2019-06-28 06:32:41 -07:00
|
|
|
for (i = 0; i < retries && fd == -1 && errno == EEXIST; i++) {
|
1996-05-22 04:34:43 -07:00
|
|
|
sleep(1);
|
2014-08-14 20:51:40 -07:00
|
|
|
fd = open(pw_lck, O_WRONLY|O_CREAT|O_EXCL|O_CLOEXEC, 0600);
|
2000-08-01 15:10:16 -07:00
|
|
|
}
|
1998-11-15 23:10:32 -08:00
|
|
|
(void) umask(old_mode);
|
1997-06-17 03:10:41 -07:00
|
|
|
return (fd);
|
1996-05-22 04:34:43 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-06-26 09:34:42 -07:00
|
|
|
pw_mkdb(char *username, int flags)
|
1996-05-22 04:34:43 -07:00
|
|
|
{
|
2001-08-16 11:24:32 -07:00
|
|
|
int pstat, ac;
|
1996-05-22 04:34:43 -07:00
|
|
|
pid_t pid;
|
2001-08-16 11:24:32 -07:00
|
|
|
char *av[8];
|
1997-11-17 13:12:12 -08:00
|
|
|
struct stat sb;
|
|
|
|
|
2001-08-16 11:24:32 -07:00
|
|
|
if (pw_lck == NULL)
|
|
|
|
return(-1);
|
|
|
|
|
1997-11-17 13:12:12 -08:00
|
|
|
/* A zero length passwd file is never ok */
|
2001-08-16 11:24:32 -07:00
|
|
|
if (stat(pw_lck, &sb) == 0 && sb.st_size == 0) {
|
|
|
|
warnx("%s is zero length", pw_lck);
|
|
|
|
return (-1);
|
1997-11-17 13:12:12 -08:00
|
|
|
}
|
1996-05-22 04:34:43 -07:00
|
|
|
|
2001-08-16 11:24:32 -07:00
|
|
|
ac = 0;
|
|
|
|
av[ac++] = "pwd_mkdb";
|
|
|
|
av[ac++] = "-d";
|
|
|
|
av[ac++] = pw_dir;
|
2001-08-25 20:28:30 -07:00
|
|
|
if (flags & _PASSWORD_SECUREONLY)
|
2001-08-16 11:24:32 -07:00
|
|
|
av[ac++] = "-s";
|
2001-08-25 20:28:30 -07:00
|
|
|
else if (!(flags & _PASSWORD_OMITV7))
|
2001-08-16 11:24:32 -07:00
|
|
|
av[ac++] = "-p";
|
|
|
|
if (username) {
|
|
|
|
av[ac++] = "-u";
|
|
|
|
av[ac++] = username;
|
|
|
|
}
|
|
|
|
av[ac++] = pw_lck;
|
|
|
|
av[ac] = NULL;
|
|
|
|
|
1996-05-22 04:34:43 -07:00
|
|
|
pid = vfork();
|
1998-03-23 14:40:52 -08:00
|
|
|
if (pid == -1)
|
|
|
|
return (-1);
|
1996-05-22 04:34:43 -07:00
|
|
|
if (pid == 0) {
|
2001-08-16 11:24:32 -07:00
|
|
|
if (pw_lck)
|
|
|
|
execv(_PATH_PWD_MKDB, av);
|
1996-12-05 17:54:58 -08:00
|
|
|
_exit(1);
|
1996-05-22 04:34:43 -07:00
|
|
|
}
|
|
|
|
pid = waitpid(pid, &pstat, 0);
|
1996-06-19 05:36:00 -07:00
|
|
|
if (pid == -1 || !WIFEXITED(pstat) || WEXITSTATUS(pstat) != 0)
|
1997-06-17 03:10:41 -07:00
|
|
|
return (-1);
|
|
|
|
return (0);
|
1996-05-22 04:34:43 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-06-26 09:34:42 -07:00
|
|
|
pw_abort(void)
|
1996-05-22 04:34:43 -07:00
|
|
|
{
|
1997-06-17 03:10:41 -07:00
|
|
|
return (pw_lck ? unlink(pw_lck) : -1);
|
1996-05-22 04:34:43 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
/* Everything below this point is intended for the convenience of programs
|
|
|
|
* which allow a user to interactively edit the passwd file. Errors in the
|
|
|
|
* routines below will cause the process to abort. */
|
|
|
|
|
|
|
|
static pid_t editpid = -1;
|
|
|
|
|
|
|
|
static void
|
2003-06-26 09:34:42 -07:00
|
|
|
pw_cont(int signo)
|
1996-05-22 04:34:43 -07:00
|
|
|
{
|
2001-11-14 11:50:23 -08:00
|
|
|
int save_errno = errno;
|
1996-05-22 04:34:43 -07:00
|
|
|
|
|
|
|
if (editpid != -1)
|
2003-06-26 09:34:42 -07:00
|
|
|
kill(editpid, signo);
|
2001-11-14 11:50:23 -08:00
|
|
|
errno = save_errno;
|
1996-05-22 04:34:43 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-06-26 09:34:42 -07:00
|
|
|
pw_init(void)
|
1996-05-22 04:34:43 -07:00
|
|
|
{
|
|
|
|
struct rlimit rlim;
|
|
|
|
|
|
|
|
/* Unlimited resource limits. */
|
|
|
|
rlim.rlim_cur = rlim.rlim_max = RLIM_INFINITY;
|
|
|
|
(void)setrlimit(RLIMIT_CPU, &rlim);
|
|
|
|
(void)setrlimit(RLIMIT_FSIZE, &rlim);
|
|
|
|
(void)setrlimit(RLIMIT_STACK, &rlim);
|
|
|
|
(void)setrlimit(RLIMIT_DATA, &rlim);
|
|
|
|
(void)setrlimit(RLIMIT_RSS, &rlim);
|
|
|
|
|
|
|
|
/* Don't drop core (not really necessary, but GP's). */
|
|
|
|
rlim.rlim_cur = rlim.rlim_max = 0;
|
|
|
|
(void)setrlimit(RLIMIT_CORE, &rlim);
|
|
|
|
|
|
|
|
/* Turn off signals. */
|
|
|
|
(void)signal(SIGALRM, SIG_IGN);
|
|
|
|
(void)signal(SIGHUP, SIG_IGN);
|
|
|
|
(void)signal(SIGINT, SIG_IGN);
|
|
|
|
(void)signal(SIGPIPE, SIG_IGN);
|
|
|
|
(void)signal(SIGQUIT, SIG_IGN);
|
|
|
|
(void)signal(SIGTERM, SIG_IGN);
|
|
|
|
(void)signal(SIGCONT, pw_cont);
|
1997-06-17 03:10:41 -07:00
|
|
|
|
|
|
|
if (!pw_lck)
|
|
|
|
pw_lck = pw_file(_PATH_MASTERPASSWD_LOCK);
|
1996-05-22 04:34:43 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-06-26 09:34:42 -07:00
|
|
|
pw_edit(int notsetuid, const char *filename)
|
1996-05-22 04:34:43 -07:00
|
|
|
{
|
|
|
|
int pstat;
|
2002-01-15 17:28:54 -08:00
|
|
|
char *p;
|
2018-08-10 10:03:26 -07:00
|
|
|
char *editor;
|
1996-06-19 05:36:00 -07:00
|
|
|
char *argp[] = {"sh", "-c", NULL, NULL};
|
1996-05-22 04:34:43 -07:00
|
|
|
|
1997-06-17 03:10:41 -07:00
|
|
|
if (!filename) {
|
|
|
|
filename = pw_lck;
|
|
|
|
if (!filename)
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1998-08-03 10:16:32 -07:00
|
|
|
if ((editor = getenv("EDITOR")) == NULL)
|
1996-05-22 04:34:43 -07:00
|
|
|
editor = _PATH_VI;
|
1996-06-06 05:10:01 -07:00
|
|
|
|
2003-03-30 13:10:27 -08:00
|
|
|
if (asprintf(&p, "%s %s", editor, filename) == -1)
|
1996-06-06 05:10:01 -07:00
|
|
|
return;
|
1996-06-19 05:36:00 -07:00
|
|
|
argp[2] = p;
|
1996-05-22 04:34:43 -07:00
|
|
|
|
1998-08-03 10:16:32 -07:00
|
|
|
switch (editpid = vfork()) {
|
1996-06-19 05:36:00 -07:00
|
|
|
case -1: /* error */
|
|
|
|
free(p);
|
|
|
|
return;
|
|
|
|
case 0: /* child */
|
1996-05-22 04:34:43 -07:00
|
|
|
if (notsetuid) {
|
|
|
|
setgid(getgid());
|
|
|
|
setuid(getuid());
|
|
|
|
}
|
1996-06-19 05:36:00 -07:00
|
|
|
execv(_PATH_BSHELL, argp);
|
|
|
|
_exit(127);
|
1996-05-22 04:34:43 -07:00
|
|
|
}
|
1996-06-19 05:36:00 -07:00
|
|
|
|
1996-06-06 05:10:01 -07:00
|
|
|
free(p);
|
1996-05-22 04:34:43 -07:00
|
|
|
for (;;) {
|
|
|
|
editpid = waitpid(editpid, (int *)&pstat, WUNTRACED);
|
|
|
|
if (editpid == -1)
|
|
|
|
pw_error(editor, 1, 1);
|
|
|
|
else if (WIFSTOPPED(pstat))
|
|
|
|
raise(WSTOPSIG(pstat));
|
|
|
|
else if (WIFEXITED(pstat) && WEXITSTATUS(pstat) == 0)
|
|
|
|
break;
|
|
|
|
else
|
|
|
|
pw_error(editor, 1, 1);
|
|
|
|
}
|
|
|
|
editpid = -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
2003-06-26 09:34:42 -07:00
|
|
|
pw_prompt(void)
|
1996-05-22 04:34:43 -07:00
|
|
|
{
|
1997-09-29 12:18:21 -07:00
|
|
|
int first, c;
|
1996-05-22 04:34:43 -07:00
|
|
|
|
|
|
|
(void)printf("re-edit the password file? [y]: ");
|
|
|
|
(void)fflush(stdout);
|
1997-09-29 12:18:21 -07:00
|
|
|
first = c = getchar();
|
|
|
|
while (c != '\n' && c != EOF)
|
|
|
|
c = getchar();
|
2004-11-04 10:44:59 -08:00
|
|
|
switch (first) {
|
|
|
|
case EOF:
|
|
|
|
putchar('\n');
|
|
|
|
/* FALLTHROUGH */
|
|
|
|
case 'n':
|
|
|
|
case 'N':
|
1996-05-22 04:34:43 -07:00
|
|
|
pw_error(NULL, 0, 0);
|
2004-11-04 10:44:59 -08:00
|
|
|
break;
|
|
|
|
}
|
1996-05-22 04:34:43 -07:00
|
|
|
}
|
|
|
|
|
2004-04-20 16:20:07 -07:00
|
|
|
static int
|
|
|
|
pw_equal(const struct passwd *pw1, const struct passwd *pw2)
|
|
|
|
{
|
|
|
|
return (strcmp(pw1->pw_name, pw2->pw_name) == 0 &&
|
|
|
|
pw1->pw_uid == pw2->pw_uid &&
|
|
|
|
pw1->pw_gid == pw2->pw_gid &&
|
|
|
|
strcmp(pw1->pw_class, pw2->pw_class) == 0 &&
|
|
|
|
pw1->pw_change == pw2->pw_change &&
|
|
|
|
pw1->pw_expire == pw2->pw_expire &&
|
|
|
|
strcmp(pw1->pw_gecos, pw2->pw_gecos) == 0 &&
|
|
|
|
strcmp(pw1->pw_dir, pw2->pw_dir) == 0 &&
|
|
|
|
strcmp(pw1->pw_shell, pw2->pw_shell) == 0);
|
|
|
|
}
|
|
|
|
|
2015-04-24 14:13:56 -07:00
|
|
|
static int
|
|
|
|
pw_write_entry(FILE *to, const struct passwd *pw)
|
|
|
|
{
|
|
|
|
char gidstr[16], uidstr[16];
|
|
|
|
|
|
|
|
/* Preserve gid/uid -1 */
|
|
|
|
if (pw->pw_gid == (gid_t)-1)
|
|
|
|
strlcpy(gidstr, "-1", sizeof(gidstr));
|
|
|
|
else
|
|
|
|
snprintf(gidstr, sizeof(gidstr), "%u", (u_int)pw->pw_gid);
|
|
|
|
|
|
|
|
if (pw->pw_uid == (uid_t)-1)
|
|
|
|
strlcpy(uidstr, "-1", sizeof(uidstr));
|
|
|
|
else
|
|
|
|
snprintf(uidstr, sizeof(uidstr), "%u", (u_int)pw->pw_uid);
|
|
|
|
|
|
|
|
return fprintf(to, "%s:%s:%s:%s:%s:%lld:%lld:%s:%s:%s\n",
|
|
|
|
pw->pw_name, pw->pw_passwd, uidstr, gidstr, pw->pw_class,
|
|
|
|
(long long)pw->pw_change, (long long)pw->pw_expire,
|
|
|
|
pw->pw_gecos, pw->pw_dir, pw->pw_shell);
|
|
|
|
}
|
|
|
|
|
1996-05-22 04:34:43 -07:00
|
|
|
void
|
2004-04-20 16:20:07 -07:00
|
|
|
pw_copy(int ffd, int tfd, const struct passwd *pw, const struct passwd *opw)
|
1996-05-22 04:34:43 -07:00
|
|
|
{
|
2004-04-20 16:20:07 -07:00
|
|
|
struct passwd tpw;
|
1997-06-17 03:10:41 -07:00
|
|
|
FILE *from, *to;
|
|
|
|
int done;
|
2004-04-20 16:20:07 -07:00
|
|
|
char *p, *ep, buf[8192];
|
1997-06-17 03:10:41 -07:00
|
|
|
char *master = pw_file(_PATH_MASTERPASSWD);
|
1996-05-22 04:34:43 -07:00
|
|
|
|
1997-06-17 03:10:41 -07:00
|
|
|
if (!master)
|
|
|
|
pw_error(NULL, 0, 1);
|
1996-05-22 04:34:43 -07:00
|
|
|
if (!(from = fdopen(ffd, "r")))
|
1997-06-17 03:10:41 -07:00
|
|
|
pw_error(master, 1, 1);
|
1996-05-22 04:34:43 -07:00
|
|
|
if (!(to = fdopen(tfd, "w")))
|
1997-06-17 03:10:41 -07:00
|
|
|
pw_error(pw_lck ? pw_lck : NULL, pw_lck ? 1 : 0, 1);
|
1996-05-22 04:34:43 -07:00
|
|
|
|
2006-04-01 18:10:35 -08:00
|
|
|
for (done = 0; fgets(buf, (int)sizeof(buf), from);) {
|
2004-04-20 16:20:07 -07:00
|
|
|
if ((ep = strchr(buf, '\n')) == NULL) {
|
1997-06-17 03:10:41 -07:00
|
|
|
warnx("%s: line too long", master);
|
1996-05-22 04:34:43 -07:00
|
|
|
pw_error(NULL, 0, 1);
|
|
|
|
}
|
|
|
|
if (done) {
|
2015-04-24 14:13:56 -07:00
|
|
|
if (fputs(buf, to))
|
2006-12-20 15:07:36 -08:00
|
|
|
goto fail;
|
1996-05-22 04:34:43 -07:00
|
|
|
continue;
|
|
|
|
}
|
|
|
|
if (!(p = strchr(buf, ':'))) {
|
1997-06-17 03:10:41 -07:00
|
|
|
warnx("%s: corrupted entry", master);
|
1996-05-22 04:34:43 -07:00
|
|
|
pw_error(NULL, 0, 1);
|
|
|
|
}
|
|
|
|
*p = '\0';
|
2004-04-20 16:20:07 -07:00
|
|
|
if (strcmp(buf, opw ? opw->pw_name : pw->pw_name)) {
|
1996-05-22 04:34:43 -07:00
|
|
|
*p = ':';
|
2015-04-24 14:13:56 -07:00
|
|
|
if (fputs(buf, to))
|
2006-12-20 15:07:36 -08:00
|
|
|
goto fail;
|
1996-05-22 04:34:43 -07:00
|
|
|
continue;
|
|
|
|
}
|
2004-04-20 16:20:07 -07:00
|
|
|
if (opw != NULL) {
|
|
|
|
*p = ':';
|
|
|
|
*ep = '\0';
|
|
|
|
if (!pw_scan(buf, &tpw, NULL))
|
|
|
|
pw_error(NULL, 0, 1);
|
|
|
|
if (!pw_equal(&tpw, opw)) {
|
|
|
|
warnx("%s: inconsistent entry", master);
|
|
|
|
pw_error(NULL, 0, 1);
|
|
|
|
}
|
|
|
|
}
|
2015-04-24 14:13:56 -07:00
|
|
|
if (pw_write_entry(to, pw) == -1)
|
2006-12-20 15:07:36 -08:00
|
|
|
goto fail;
|
2015-04-24 14:13:56 -07:00
|
|
|
done = 1;
|
1996-05-22 04:34:43 -07:00
|
|
|
}
|
2015-04-24 14:13:56 -07:00
|
|
|
if (!done && pw_write_entry(to, pw) == -1)
|
|
|
|
goto fail;
|
|
|
|
|
|
|
|
if (ferror(to) || fflush(to))
|
2006-12-20 15:07:36 -08:00
|
|
|
fail:
|
2003-04-01 16:08:28 -08:00
|
|
|
pw_error(NULL, 0, 1);
|
2001-07-11 09:11:10 -07:00
|
|
|
free(master);
|
1996-05-22 04:34:43 -07:00
|
|
|
(void)fclose(to);
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
2003-06-26 09:34:42 -07:00
|
|
|
pw_scan(char *bp, struct passwd *pw, int *flags)
|
1996-05-22 04:34:43 -07:00
|
|
|
{
|
|
|
|
int root;
|
2015-04-24 14:13:56 -07:00
|
|
|
char *p, *sh;
|
|
|
|
const char *errstr;
|
1996-05-22 04:34:43 -07:00
|
|
|
|
2015-04-24 14:13:56 -07:00
|
|
|
if (flags != NULL)
|
1996-05-22 04:34:43 -07:00
|
|
|
*flags = 0;
|
|
|
|
|
2003-04-01 08:28:03 -08:00
|
|
|
if (!(p = strsep(&bp, ":")) || *p == '\0') /* login */
|
1996-05-22 04:34:43 -07:00
|
|
|
goto fmt;
|
2003-04-01 08:28:03 -08:00
|
|
|
pw->pw_name = p;
|
1996-05-22 04:34:43 -07:00
|
|
|
root = !strcmp(pw->pw_name, "root");
|
|
|
|
|
|
|
|
if (!(pw->pw_passwd = strsep(&bp, ":"))) /* passwd */
|
|
|
|
goto fmt;
|
|
|
|
|
|
|
|
if (!(p = strsep(&bp, ":"))) /* uid */
|
|
|
|
goto fmt;
|
2015-04-24 14:13:56 -07:00
|
|
|
pw->pw_uid = strtonum(p, -1, UID_MAX, &errstr);
|
|
|
|
if (errstr != NULL) {
|
|
|
|
if (*p != '\0') {
|
|
|
|
warnx("uid is %s", errstr);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
if (flags != NULL)
|
|
|
|
*flags |= _PASSWORD_NOUID;
|
1996-05-22 04:34:43 -07:00
|
|
|
}
|
2015-04-24 14:13:56 -07:00
|
|
|
if (root && pw->pw_uid) {
|
|
|
|
warnx("root uid should be 0");
|
1997-02-12 21:41:38 -08:00
|
|
|
return (0);
|
|
|
|
}
|
1996-05-22 04:34:43 -07:00
|
|
|
|
|
|
|
if (!(p = strsep(&bp, ":"))) /* gid */
|
|
|
|
goto fmt;
|
2015-04-24 14:13:56 -07:00
|
|
|
pw->pw_gid = strtonum(p, -1, GID_MAX, &errstr);
|
|
|
|
if (errstr != NULL) {
|
|
|
|
if (*p != '\0') {
|
|
|
|
warnx("gid is %s", errstr);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
if (flags != NULL)
|
|
|
|
*flags |= _PASSWORD_NOGID;
|
1996-05-22 04:34:43 -07:00
|
|
|
}
|
|
|
|
|
|
|
|
pw->pw_class = strsep(&bp, ":"); /* class */
|
|
|
|
if (!(p = strsep(&bp, ":"))) /* change */
|
|
|
|
goto fmt;
|
2013-08-16 23:54:21 -07:00
|
|
|
pw->pw_change = atoll(p);
|
1996-05-22 04:34:43 -07:00
|
|
|
if ((*p == '\0') && (flags != (int *)NULL))
|
|
|
|
*flags |= _PASSWORD_NOCHG;
|
|
|
|
if (!(p = strsep(&bp, ":"))) /* expire */
|
|
|
|
goto fmt;
|
2013-08-16 23:54:21 -07:00
|
|
|
pw->pw_expire = atoll(p);
|
1996-05-22 04:34:43 -07:00
|
|
|
if ((*p == '\0') && (flags != (int *)NULL))
|
|
|
|
*flags |= _PASSWORD_NOEXP;
|
|
|
|
pw->pw_gecos = strsep(&bp, ":"); /* gecos */
|
|
|
|
pw->pw_dir = strsep(&bp, ":"); /* directory */
|
|
|
|
if (!(pw->pw_shell = strsep(&bp, ":"))) /* shell */
|
|
|
|
goto fmt;
|
|
|
|
|
|
|
|
p = pw->pw_shell;
|
1998-06-22 07:41:47 -07:00
|
|
|
if (root && *p) { /* empty == /bin/sh */
|
1996-05-22 04:34:43 -07:00
|
|
|
for (setusershell();;) {
|
|
|
|
if (!(sh = getusershell())) {
|
|
|
|
warnx("warning, unknown root shell");
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (!strcmp(p, sh))
|
2002-05-24 14:27:38 -07:00
|
|
|
break;
|
1996-05-22 04:34:43 -07:00
|
|
|
}
|
1998-06-22 07:41:47 -07:00
|
|
|
endusershell();
|
|
|
|
}
|
1996-05-22 04:34:43 -07:00
|
|
|
|
1997-11-18 11:57:27 -08:00
|
|
|
if ((p = strsep(&bp, ":"))) { /* too many */
|
1996-05-22 04:34:43 -07:00
|
|
|
fmt: warnx("corrupted entry");
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
2002-07-31 14:53:34 -07:00
|
|
|
__dead void
|
2006-12-20 15:07:36 -08:00
|
|
|
pw_error(const char *name, int error, int eval)
|
1996-05-22 04:34:43 -07:00
|
|
|
{
|
1997-06-17 03:10:41 -07:00
|
|
|
char *master = pw_file(_PATH_MASTERPASSWD);
|
|
|
|
|
2006-12-20 15:07:36 -08:00
|
|
|
if (error) {
|
2001-01-02 10:22:32 -08:00
|
|
|
if (name)
|
|
|
|
warn("%s", name);
|
|
|
|
else
|
|
|
|
warn(NULL);
|
|
|
|
}
|
2002-04-10 03:11:03 -07:00
|
|
|
if (master) {
|
1997-06-17 03:10:41 -07:00
|
|
|
warnx("%s: unchanged", master);
|
2002-04-10 03:11:03 -07:00
|
|
|
free(master);
|
|
|
|
}
|
|
|
|
|
1996-05-22 04:34:43 -07:00
|
|
|
pw_abort();
|
|
|
|
exit(eval);
|
|
|
|
}
|