]>
git.cameronkatri.com Git - pw-darwin.git/blob - pw/pw.c
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
28 static const char rcsid
[] =
39 #if !defined(_PATH_YP)
40 #define _PATH_YP "/var/yp/"
42 const char *Modes
[] = {
43 "add", "del", "mod", "show", "next",
45 const char *Which
[] = {"user", "group", NULL
};
46 static const char *Combo1
[] = {
47 "useradd", "userdel", "usermod", "usershow", "usernext",
49 "groupadd", "groupdel", "groupmod", "groupshow", "groupnext",
51 static const char *Combo2
[] = {
52 "adduser", "deluser", "moduser", "showuser", "nextuser",
54 "addgroup", "delgroup", "modgroup", "showgroup", "nextgroup",
91 static struct cargs arglist
;
93 static int getindex(const char *words
[], const char *word
);
94 static void cmdhelp(int mode
, int which
);
98 main(int argc
, char *argv
[])
104 struct userconf
*cnf
;
106 static const char *opts
[W_NUM
][M_NUM
] =
109 "V:C:qn:u:c:d:e:p:g:G:mk:s:oL:i:w:h:Db:NPy:Y",
111 "V:C:qn:u:c:d:e:p:g:G:ml:k:s:w:L:h:FNPY",
120 "V:C:qn:g:l:h:FM:m:NPY",
126 static int (*funcs
[W_NUM
]) (struct userconf
* _cnf
, int _mode
, struct cargs
* _args
) =
127 { /* Request handlers */
132 umask(0); /* We wish to handle this manually */
135 (void)setlocale(LC_ALL
, "");
138 * Break off the first couple of words to determine what exactly
139 * we're being asked to do
144 if (*argv
[1] == '-') {
146 * Special case, allow pw -V<dir> <operation> [args] for scripts etc.
148 if (argv
[1][1] == 'V') {
149 optarg
= &argv
[1][2];
150 if (*optarg
== '\0') {
155 addarg(&arglist
, 'V', optarg
);
159 else if (mode
== -1 && (tmp
= getindex(Modes
, argv
[1])) != -1)
161 else if (which
== -1 && (tmp
= getindex(Which
, argv
[1])) != -1)
163 else if ((mode
== -1 && which
== -1) &&
164 ((tmp
= getindex(Combo1
, argv
[1])) != -1 ||
165 (tmp
= getindex(Combo2
, argv
[1])) != -1)) {
168 } else if (strcmp(argv
[1], "help") == 0 && argv
[2] == NULL
)
169 cmdhelp(mode
, which
);
170 else if (which
!= -1 && mode
!= -1)
171 addarg(&arglist
, 'n', argv
[1]);
173 errx(EX_USAGE
, "unknown keyword `%s'", argv
[1]);
179 * Bail out unless the user is specific!
181 if (mode
== -1 || which
== -1)
182 cmdhelp(mode
, which
);
185 * We know which mode we're in and what we're about to do, so now
186 * let's dispatch the remaining command line args in a genric way.
190 while ((ch
= getopt(argc
, argv
, opts
[which
][mode
])) != -1) {
192 errx(EX_USAGE
, "unknown switch");
194 addarg(&arglist
, ch
, optarg
);
199 * Must be root to attempt an update
201 if (geteuid() != 0 && mode
!= M_PRINT
&& mode
!= M_NEXT
&& getarg(&arglist
, 'N')==NULL
)
202 errx(EX_NOPERM
, "you must be root to run this program");
205 * We should immediately look for the -q 'quiet' switch so that we
206 * don't bother with extraneous errors
208 if (getarg(&arglist
, 'q') != NULL
)
209 freopen("/dev/null", "w", stderr
);
212 * Set our base working path if not overridden
215 config
= getarg(&arglist
, 'C') ? getarg(&arglist
, 'C')->val
: NULL
;
217 if (getarg(&arglist
, 'V') != NULL
) {
218 char * etcpath
= getarg(&arglist
, 'V')->val
;
220 if (config
== NULL
) { /* Only override config location if -C not specified */
221 config
= malloc(MAXPATHLEN
);
222 snprintf(config
, MAXPATHLEN
, "%s/pw.conf", etcpath
);
224 memcpy(&PWF
, &VPWF
, sizeof PWF
);
231 * Now, let's do the common initialisation
233 cnf
= read_userconfig(config
);
235 ch
= funcs
[which
] (cnf
, mode
, &arglist
);
238 * If everything went ok, and we've been asked to update
239 * the NIS maps, then do it now
241 if (ch
== EXIT_SUCCESS
&& getarg(&arglist
, 'Y') != NULL
) {
245 if (chdir(_PATH_YP
) == -1)
246 warn("chdir(" _PATH_YP
")");
247 else if ((pid
= fork()) == -1)
250 /* Is make anywhere else? */
251 execlp("/usr/bin/make", "make", NULL
);
256 if ((i
= WEXITSTATUS(i
)) != 0)
257 errx(ch
, "make exited with status %d", i
);
259 pw_log(cnf
, mode
, which
, "NIS maps updated");
267 getindex(const char *words
[], const char *word
)
272 if (strcmp(words
[i
], word
) == 0)
281 * This is probably an overkill for a cmdline help system, but it reflects
282 * the complexity of the command line.
286 cmdhelp(int mode
, int which
)
289 fprintf(stderr
, "usage:\n pw [user|group|lock|unlock] [add|del|mod|show|next] [help|switches/values]\n");
291 fprintf(stderr
, "usage:\n pw %s [add|del|mod|show|next] [help|switches/values]\n", Which
[which
]);
295 * We need to give mode specific help
297 static const char *help
[W_NUM
][M_NUM
] =
300 "usage: pw useradd [name] [switches]\n"
301 "\t-V etcdir alternate /etc location\n"
302 "\t-C config configuration file\n"
303 "\t-q quiet operation\n"
305 "\t-n name login name\n"
307 "\t-c comment user name/comment\n"
308 "\t-d directory home directory\n"
309 "\t-e date account expiry date\n"
310 "\t-p date password expiry date\n"
311 "\t-g grp initial group\n"
312 "\t-G grp1,grp2 additional groups\n"
313 "\t-m [ -k dir ] create and set up home\n"
314 "\t-s shell name of login shell\n"
315 "\t-o duplicate uid ok\n"
316 "\t-L class user class\n"
317 "\t-h fd read password on fd\n"
318 "\t-Y update NIS maps\n"
320 " Setting defaults:\n"
321 "\t-V etcdir alternate /etc location\n"
322 "\t-D set user defaults\n"
323 "\t-b dir default home root dir\n"
324 "\t-e period default expiry period\n"
325 "\t-p period default password change period\n"
326 "\t-g group default group\n"
327 "\t-G grp1,grp2 additional groups\n"
328 "\t-L class default user class\n"
329 "\t-k dir default home skeleton\n"
330 "\t-u min,max set min,max uids\n"
331 "\t-i min,max set min,max gids\n"
332 "\t-w method set default password method\n"
333 "\t-s shell default shell\n"
334 "\t-y path set NIS passwd file path\n",
335 "usage: pw userdel [uid|name] [switches]\n"
336 "\t-V etcdir alternate /etc location\n"
337 "\t-n name login name\n"
339 "\t-Y update NIS maps\n"
340 "\t-r remove home & contents\n",
341 "usage: pw usermod [uid|name] [switches]\n"
342 "\t-V etcdir alternate /etc location\n"
343 "\t-C config configuration file\n"
344 "\t-q quiet operation\n"
345 "\t-F force add if no user\n"
346 "\t-n name login name\n"
348 "\t-c comment user name/comment\n"
349 "\t-d directory home directory\n"
350 "\t-e date account expiry date\n"
351 "\t-p date password expiry date\n"
352 "\t-g grp initial group\n"
353 "\t-G grp1,grp2 additional groups\n"
354 "\t-l name new login name\n"
355 "\t-L class user class\n"
356 "\t-m [ -k dir ] create and set up home\n"
357 "\t-s shell name of login shell\n"
358 "\t-w method set new password using method\n"
359 "\t-h fd read password on fd\n"
360 "\t-Y update NIS maps\n"
362 "usage: pw usershow [uid|name] [switches]\n"
363 "\t-V etcdir alternate /etc location\n"
364 "\t-n name login name\n"
367 "\t-P prettier format\n"
368 "\t-a print all users\n"
369 "\t-7 print in v7 format\n",
370 "usage: pw usernext [switches]\n"
371 "\t-V etcdir alternate /etc location\n"
372 "\t-C config configuration file\n"
375 "usage: pw groupadd [group|gid] [switches]\n"
376 "\t-V etcdir alternate /etc location\n"
377 "\t-C config configuration file\n"
378 "\t-q quiet operation\n"
379 "\t-n group group name\n"
380 "\t-g gid group id\n"
381 "\t-M usr1,usr2 add users as group members\n"
382 "\t-o duplicate gid ok\n"
383 "\t-Y update NIS maps\n"
385 "usage: pw groupdel [group|gid] [switches]\n"
386 "\t-V etcdir alternate /etc location\n"
387 "\t-n name group name\n"
388 "\t-g gid group id\n"
389 "\t-Y update NIS maps\n",
390 "usage: pw groupmod [group|gid] [switches]\n"
391 "\t-V etcdir alternate /etc location\n"
392 "\t-C config configuration file\n"
393 "\t-q quiet operation\n"
394 "\t-F force add if not exists\n"
395 "\t-n name group name\n"
396 "\t-g gid group id\n"
397 "\t-M usr1,usr2 replaces users as group members\n"
398 "\t-m usr1,usr2 add users as group members\n"
399 "\t-l name new group name\n"
400 "\t-Y update NIS maps\n"
402 "usage: pw groupshow [group|gid] [switches]\n"
403 "\t-V etcdir alternate /etc location\n"
404 "\t-n name group name\n"
405 "\t-g gid group id\n"
407 "\t-P prettier format\n"
408 "\t-a print all accounting groups\n",
409 "usage: pw groupnext [switches]\n"
410 "\t-V etcdir alternate /etc location\n"
411 "\t-C config configuration file\n"
415 fprintf(stderr
, help
[which
][mode
]);
421 getarg(struct cargs
* _args
, int ch
)
423 struct carg
*c
= _args
->lh_first
;
425 while (c
!= NULL
&& c
->ch
!= ch
)
431 addarg(struct cargs
* _args
, int ch
, char *argstr
)
433 struct carg
*ca
= malloc(sizeof(struct carg
));
436 errx(EX_OSERR
, "out of memory");
439 LIST_INSERT_HEAD(_args
, ca
, list
);