1/*-
2 * Copyright (C) 1996
3 *	David L. Nugent.  All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright
9 *    notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 *    notice, this list of conditions and the following disclaimer in the
12 *    documentation and/or other materials provided with the distribution.
13 *
14 * THIS SOFTWARE IS PROVIDED BY DAVID L. NUGENT AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED.  IN NO EVENT SHALL DAVID L. NUGENT OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: stable/10/usr.sbin/pw/pw.h 326849 2017-12-14 13:10:22Z eugen $
27 */
28
29#include <sys/stat.h>
30
31#define _WITH_GETLINE
32#include <inttypes.h>
33#include <stdio.h>
34#include <stdlib.h>
35
36#include "pwupd.h"
37
38enum _mode
39{
40        M_ADD,
41        M_DELETE,
42        M_UPDATE,
43        M_PRINT,
44	M_NEXT,
45	M_LOCK,
46	M_UNLOCK,
47        M_NUM
48};
49
50enum _passmode
51{
52	P_NO,
53	P_NONE,
54	P_RANDOM,
55	P_YES
56};
57
58enum _which
59{
60        W_USER,
61        W_GROUP,
62        W_NUM
63};
64
65#define	_DEF_DIRMODE	(S_IRWXU | S_IRWXG | S_IRWXO)
66#define _PATH_PW_CONF	"/etc/pw.conf"
67#define _UC_MAXLINE	1024
68#define _UC_MAXSHELLS	32
69
70struct userconf *get_userconfig(const char *cfg);
71struct userconf *read_userconfig(char const * file);
72int write_userconfig(struct userconf *cnf, char const * file);
73
74int pw_group_add(int argc, char **argv, char *name);
75int pw_group_del(int argc, char **argv, char *name);
76int pw_group_mod(int argc, char **argv, char *name);
77int pw_group_next(int argc, char **argv, char *name);
78int pw_group_show(int argc, char **argv, char *name);
79int pw_user_add(int argc, char **argv, char *name);
80int pw_user_add(int argc, char **argv, char *name);
81int pw_user_add(int argc, char **argv, char *name);
82int pw_user_add(int argc, char **argv, char *name);
83int pw_user_del(int argc, char **argv, char *name);
84int pw_user_lock(int argc, char **argv, char *name);
85int pw_user_mod(int argc, char **argv, char *name);
86int pw_user_next(int argc, char **argv, char *name);
87int pw_user_show(int argc, char **argv, char *name);
88int pw_user_unlock(int argc, char **argv, char *name);
89int pw_groupnext(struct userconf *cnf, bool quiet);
90char *pw_checkname(char *name, int gecos);
91uintmax_t pw_checkid(char *nptr, uintmax_t maxval);
92int pw_checkfd(char *nptr);
93
94int addnispwent(const char *path, struct passwd *pwd);
95int delnispwent(const char *path, const char *login);
96int chgnispwent(const char *path, const char *login, struct passwd *pwd);
97
98int groupadd(struct userconf *, char *name, gid_t id, char *members, int fd,
99    bool dryrun, bool pretty, bool precrypted);
100
101int nis_update(void);
102
103int boolean_val(char const * str, int dflt);
104int passwd_val(char const * str, int dflt);
105char const *boolean_str(int val);
106char *newstr(char const * p);
107
108void pw_log(struct userconf * cnf, int mode, int which, char const * fmt,...) __printflike(4, 5);
109char *pw_pwcrypt(char *password);
110
111extern const char *Modes[];
112extern const char *Which[];
113
114uintmax_t strtounum(const char * __restrict, uintmax_t, uintmax_t,
115    const char ** __restrict);
116