120253Sjoerg/*-
220302Sjoerg * Copyright (C) 1996
320302Sjoerg *	David L. Nugent.  All rights reserved.
420253Sjoerg *
520253Sjoerg * Redistribution and use in source and binary forms, with or without
620253Sjoerg * modification, are permitted provided that the following conditions
720253Sjoerg * are met:
820253Sjoerg * 1. Redistributions of source code must retain the above copyright
920302Sjoerg *    notice, this list of conditions and the following disclaimer.
1020253Sjoerg * 2. Redistributions in binary form must reproduce the above copyright
1120253Sjoerg *    notice, this list of conditions and the following disclaimer in the
1220253Sjoerg *    documentation and/or other materials provided with the distribution.
1320253Sjoerg *
1420302Sjoerg * THIS SOFTWARE IS PROVIDED BY DAVID L. NUGENT AND CONTRIBUTORS ``AS IS'' AND
1520253Sjoerg * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
1620253Sjoerg * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
1720302Sjoerg * ARE DISCLAIMED.  IN NO EVENT SHALL DAVID L. NUGENT OR CONTRIBUTORS BE LIABLE
1820253Sjoerg * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
1920253Sjoerg * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
2020253Sjoerg * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
2120253Sjoerg * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
2220253Sjoerg * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
2320253Sjoerg * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
2420253Sjoerg * SUCH DAMAGE.
2520253Sjoerg *
2650479Speter * $FreeBSD$
2720253Sjoerg */
2820253Sjoerg
29268346Sbapt#define _WITH_GETLINE
3020253Sjoerg#include <stdio.h>
3120253Sjoerg#include <stdlib.h>
3220253Sjoerg#include <string.h>
3320253Sjoerg#include <unistd.h>
3420253Sjoerg#include <stdarg.h>
3520253Sjoerg#include <errno.h>
3620253Sjoerg#include <sys/types.h>
3720253Sjoerg#include <sys/stat.h>
3844229Sdavidn#include <sys/param.h>
3920253Sjoerg#include <pwd.h>
4020253Sjoerg#include <grp.h>
4120253Sjoerg#include <sys/queue.h>
4220267Sjoerg#include <sysexits.h>
4320253Sjoerg
4420253Sjoerg#include "psdate.h"
4544229Sdavidn#include "pwupd.h"
4620253Sjoerg
4720253Sjoergenum _mode
4820253Sjoerg{
4920253Sjoerg        M_ADD,
5020253Sjoerg        M_DELETE,
5120253Sjoerg        M_UPDATE,
5220253Sjoerg        M_PRINT,
5320267Sjoerg	M_NEXT,
5452512Sdavidn	M_LOCK,
5552512Sdavidn	M_UNLOCK,
5620253Sjoerg        M_NUM
5720253Sjoerg};
5820253Sjoerg
5920253Sjoergenum _which
6020253Sjoerg{
6120253Sjoerg        W_USER,
6220253Sjoerg        W_GROUP,
6320253Sjoerg        W_NUM
6420253Sjoerg};
6520253Sjoerg
6620253Sjoergstruct carg
6720253Sjoerg{
6820253Sjoerg	int		  ch;
6920253Sjoerg	char		  *val;
7060938Sjake	LIST_ENTRY(carg)  list;
7120253Sjoerg};
7220253Sjoerg
73141608SstefanfLIST_HEAD(cargs, carg);
7420253Sjoerg
7520253Sjoergstruct userconf
7620253Sjoerg{
7720253Sjoerg	int	default_password;	/* Default password for new users? */
7820253Sjoerg	int	reuse_uids;		/* Reuse uids? */
7920253Sjoerg	int	reuse_gids;		/* Reuse gids? */
8021330Sdavidn	char	*nispasswd;		/* Path to NIS version of the passwd file */
8120253Sjoerg	char	*dotdir;		/* Where to obtain skeleton files */
8220253Sjoerg	char	*newmail;		/* Mail to send to new accounts */
8320253Sjoerg	char	*logfile;		/* Where to log changes */
8420253Sjoerg	char	*home;			/* Where to create home directory */
85168044Sle	mode_t	homemode;		/* Home directory permissions */
8620253Sjoerg	char	*shelldir;		/* Where shells are located */
8720253Sjoerg	char	**shells;		/* List of shells */
8820253Sjoerg	char	*shell_default;		/* Default shell */
8920253Sjoerg	char	*default_group;		/* Default group number */
9020253Sjoerg	char	**groups;		/* Default (additional) groups */
9120253Sjoerg	char	*default_class;		/* Default user class */
9220253Sjoerg	uid_t	min_uid, max_uid;	/* Allowed range of uids */
9320253Sjoerg	gid_t	min_gid, max_gid;	/* Allowed range of gids */
9420253Sjoerg	int	expire_days;		/* Days to expiry */
9520253Sjoerg	int	password_days;		/* Days to password expiry */
9620747Sdavidn	int	numgroups;		/* (internal) size of default_group array */
9720253Sjoerg};
9820253Sjoerg
99219408Sjkim#define	_DEF_DIRMODE	(S_IRWXU | S_IRWXG | S_IRWXO)
10020253Sjoerg#define _PATH_PW_CONF	"/etc/pw.conf"
10120253Sjoerg#define _UC_MAXLINE	1024
10220253Sjoerg#define _UC_MAXSHELLS	32
10320253Sjoerg
10420253Sjoergstruct userconf *read_userconfig(char const * file);
10520253Sjoergint write_userconfig(char const * file);
10620253Sjoergstruct carg *addarg(struct cargs * _args, int ch, char *argstr);
10720253Sjoergstruct carg *getarg(struct cargs * _args, int ch);
10820253Sjoerg
10920253Sjoergint pw_user(struct userconf * cnf, int mode, struct cargs * _args);
11020253Sjoergint pw_group(struct userconf * cnf, int mode, struct cargs * _args);
11120679Sdavidnchar    *pw_checkname(u_char *name, int gecos);
11220253Sjoerg
11321330Sdavidnint addnispwent(const char *path, struct passwd *pwd);
11421330Sdavidnint delnispwent(const char *path, const char *login);
11521330Sdavidnint chgnispwent(const char *path, const char *login, struct passwd *pwd);
11621330Sdavidn
11720253Sjoergint boolean_val(char const * str, int dflt);
11820253Sjoergchar const *boolean_str(int val);
11920253Sjoergchar *newstr(char const * p);
12020253Sjoerg
12179292Skrisvoid pw_log(struct userconf * cnf, int mode, int which, char const * fmt,...) __printflike(4, 5);
12220253Sjoergchar *pw_pwcrypt(char *password);
12320253Sjoerg
12420253Sjoergextern const char *Modes[];
12520253Sjoergextern const char *Which[];
126