pw.h revision 44229
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 *
2644229Sdavidn *	$Id: pw.h,v 1.7 1997/10/10 06:23:35 charnier Exp $
2720253Sjoerg */
2820253Sjoerg
2920253Sjoerg#include <stdio.h>
3020253Sjoerg#include <stdlib.h>
3120253Sjoerg#include <string.h>
3220253Sjoerg#include <unistd.h>
3320253Sjoerg#include <stdarg.h>
3420253Sjoerg#include <errno.h>
3520253Sjoerg#include <sys/types.h>
3620253Sjoerg#include <sys/stat.h>
3744229Sdavidn#include <sys/param.h>
3820253Sjoerg#include <pwd.h>
3920253Sjoerg#include <grp.h>
4020253Sjoerg#include <sys/queue.h>
4120267Sjoerg#include <sysexits.h>
4220253Sjoerg
4320253Sjoerg#include "psdate.h"
4444229Sdavidn#include "pwupd.h"
4520253Sjoerg
4620253Sjoergenum _mode
4720253Sjoerg{
4820253Sjoerg        M_ADD,
4920253Sjoerg        M_DELETE,
5020253Sjoerg        M_UPDATE,
5120253Sjoerg        M_PRINT,
5220267Sjoerg	M_NEXT,
5320253Sjoerg        M_NUM
5420253Sjoerg};
5520253Sjoerg
5620253Sjoergenum _which
5720253Sjoerg{
5820253Sjoerg        W_USER,
5920253Sjoerg        W_GROUP,
6020253Sjoerg        W_NUM
6120253Sjoerg};
6220253Sjoerg
6320253Sjoergstruct carg
6420253Sjoerg{
6520253Sjoerg	int		  ch;
6620253Sjoerg	char		  *val;
6720253Sjoerg	LIST_ENTRY(carg)  list;
6820253Sjoerg};
6920253Sjoerg
7020253Sjoergextern LIST_HEAD(cargs, carg) arglist;
7120253Sjoerg
7220253Sjoergstruct userconf
7320253Sjoerg{
7420253Sjoerg	int	default_password;	/* Default password for new users? */
7520253Sjoerg	int	reuse_uids;		/* Reuse uids? */
7620253Sjoerg	int	reuse_gids;		/* Reuse gids? */
7721330Sdavidn	char	*nispasswd;		/* Path to NIS version of the passwd file */
7820253Sjoerg	char	*dotdir;		/* Where to obtain skeleton files */
7920253Sjoerg	char	*newmail;		/* Mail to send to new accounts */
8020253Sjoerg	char	*logfile;		/* Where to log changes */
8120253Sjoerg	char	*home;			/* Where to create home directory */
8220253Sjoerg	char	*shelldir;		/* Where shells are located */
8320253Sjoerg	char	**shells;		/* List of shells */
8420253Sjoerg	char	*shell_default;		/* Default shell */
8520253Sjoerg	char	*default_group;		/* Default group number */
8620253Sjoerg	char	**groups;		/* Default (additional) groups */
8720253Sjoerg	char	*default_class;		/* Default user class */
8820253Sjoerg	uid_t	min_uid, max_uid;	/* Allowed range of uids */
8920253Sjoerg	gid_t	min_gid, max_gid;	/* Allowed range of gids */
9020253Sjoerg	int	expire_days;		/* Days to expiry */
9120253Sjoerg	int	password_days;		/* Days to password expiry */
9220747Sdavidn	int	numgroups;		/* (internal) size of default_group array */
9320253Sjoerg};
9420253Sjoerg
9520253Sjoerg#define _PATH_PW_CONF	"/etc/pw.conf"
9620253Sjoerg#define _UC_MAXLINE	1024
9720253Sjoerg#define _UC_MAXSHELLS	32
9820253Sjoerg
9920253Sjoergstruct userconf *read_userconfig(char const * file);
10020253Sjoergint write_userconfig(char const * file);
10120253Sjoergstruct carg *addarg(struct cargs * _args, int ch, char *argstr);
10220253Sjoergstruct carg *getarg(struct cargs * _args, int ch);
10320253Sjoerg
10420253Sjoergint pw_user(struct userconf * cnf, int mode, struct cargs * _args);
10520253Sjoergint pw_group(struct userconf * cnf, int mode, struct cargs * _args);
10620679Sdavidnchar    *pw_checkname(u_char *name, int gecos);
10720253Sjoerg
10820253Sjoergint addpwent(struct passwd * pwd);
10920253Sjoergint delpwent(struct passwd * pwd);
11020253Sjoergint chgpwent(char const * login, struct passwd * pwd);
11120253Sjoergint fmtpwent(char *buf, struct passwd * pwd);
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 addgrent(struct group * grp);
11820253Sjoergint delgrent(struct group * grp);
11920253Sjoergint chggrent(char const * login, struct group * grp);
12020253Sjoerg
12120253Sjoergint boolean_val(char const * str, int dflt);
12220253Sjoergchar const *boolean_str(int val);
12320253Sjoergchar *newstr(char const * p);
12420253Sjoerg
12520253Sjoergvoid pw_log(struct userconf * cnf, int mode, int which, char const * fmt,...);
12620253Sjoergchar *pw_pwcrypt(char *password);
12720253Sjoerg
12820253Sjoergextern const char *Modes[];
12920253Sjoergextern const char *Which[];
130