]>
git.cameronkatri.com Git - pw-darwin.git/blob - pw/pw.h
3 * David L. Nugent. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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.
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
37 #include <sys/types.h>
39 #include <sys/param.h>
42 #include <sys/queue.h>
71 LIST_ENTRY(carg
) list
;
74 LIST_HEAD(cargs
, carg
);
76 #define _DEF_DIRMODE (S_IRWXU | S_IRWXG | S_IRWXO)
77 #define _PATH_PW_CONF "/etc/pw.conf"
78 #define _UC_MAXLINE 1024
79 #define _UC_MAXSHELLS 32
81 struct userconf
*read_userconfig(char const * file
);
82 int write_userconfig(char const * file
);
83 struct carg
*addarg(struct cargs
* _args
, int ch
, char *argstr
);
84 struct carg
*getarg(struct cargs
* _args
, int ch
);
86 int pw_user(int mode
, char *name
, long id
, struct cargs
* _args
);
87 int pw_usernext(struct userconf
*cnf
, bool quiet
);
88 int pw_group(int mode
, char *name
, long id
, struct cargs
* _args
);
89 int pw_groupnext(struct userconf
*cnf
, bool quiet
);
90 char *pw_checkname(char *name
, int gecos
);
92 int addnispwent(const char *path
, struct passwd
*pwd
);
93 int delnispwent(const char *path
, const char *login
);
94 int chgnispwent(const char *path
, const char *login
, struct passwd
*pwd
);
96 int boolean_val(char const * str
, int dflt
);
97 char const *boolean_str(int val
);
98 char *newstr(char const * p
);
100 void pw_log(struct userconf
* cnf
, int mode
, int which
, char const * fmt
,...) __printflike(4, 5);
101 char *pw_pwcrypt(char *password
);
103 extern const char *Modes
[];
104 extern const char *Which
[];
106 uintmax_t strtounum(const char * __restrict
, uintmax_t, uintmax_t,
107 const char ** __restrict
);