]>
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
[] =
40 #if !defined(_PATH_YP)
41 #define _PATH_YP "/var/yp/"
43 const char *Modes
[] = {
44 "add", "del", "mod", "show", "next",
46 const char *Which
[] = {"user", "group", NULL
};
47 static const char *Combo1
[] = {
48 "useradd", "userdel", "usermod", "usershow", "usernext",
50 "groupadd", "groupdel", "groupmod", "groupshow", "groupnext",
52 static const char *Combo2
[] = {
53 "adduser", "deluser", "moduser", "showuser", "nextuser",
55 "addgroup", "delgroup", "modgroup", "showgroup", "nextgroup",
90 static struct cargs arglist
;
92 static int getindex(const char *words
[], const char *word
);
93 static void cmdhelp(int mode
, int which
);
97 main(int argc
, char *argv
[])
109 static const char *opts
[W_NUM
][M_NUM
] =
112 "R:V:C:qn:u:c:d:e:p:g:G:mM:k:s:oL:i:w:h:H:Db:NPy:Y",
114 "R:V:C:qn:u:c:d:e:p:g:G:mM:l:k:s:w:L:h:H:FNPY",
121 "R:V:C:qn:g:h:H:M:opNPY",
123 "R:V:C:qn:d:g:l:h:H:FM:m:NPY",
129 static int (*funcs
[W_NUM
]) (int _mode
, char *_name
, long _id
,
130 struct cargs
* _args
) =
131 { /* Request handlers */
137 relocated
= nis
= false;
138 memset(&conf
, 0, sizeof(conf
));
139 strlcpy(conf
.etcpath
, _PATH_PWD
, sizeof(conf
.etcpath
));
143 (void)setlocale(LC_ALL
, "");
146 * Break off the first couple of words to determine what exactly
147 * we're being asked to do
152 if (*argv
[1] == '-') {
154 * Special case, allow pw -V<dir> <operation> [args] for scripts etc.
157 if (arg
== 'V' || arg
== 'R') {
159 errx(EXIT_FAILURE
, "Both '-R' and '-V' "
160 "specified, only one accepted");
162 optarg
= &argv
[1][2];
163 if (*optarg
== '\0') {
164 if (stat(argv
[2], &st
) != 0)
166 "no such directory `%s'",
168 if (!S_ISDIR(st
.st_mode
))
169 errx(EX_OSFILE
, "`%s' not a "
170 "directory", argv
[2]);
175 memcpy(&PWF
, &VPWF
, sizeof PWF
);
177 strlcpy(conf
.rootdir
, optarg
,
178 sizeof(conf
.rootdir
));
179 PWF
._altdir
= PWF_ROOTDIR
;
181 snprintf(conf
.etcpath
, sizeof(conf
.etcpath
),
182 "%s%s", optarg
, arg
== 'R' ? "/etc" : "");
186 else if (mode
== -1 && (tmp
= getindex(Modes
, argv
[1])) != -1)
188 else if (which
== -1 && (tmp
= getindex(Which
, argv
[1])) != -1)
190 else if ((mode
== -1 && which
== -1) &&
191 ((tmp
= getindex(Combo1
, argv
[1])) != -1 ||
192 (tmp
= getindex(Combo2
, argv
[1])) != -1)) {
195 } else if (strcmp(argv
[1], "help") == 0 && argv
[2] == NULL
)
196 cmdhelp(mode
, which
);
197 else if (which
!= -1 && mode
!= -1) {
198 if (strspn(argv
[1], "0123456789") == strlen(argv
[1])) {
199 id
= strtonum(argv
[1], 0, LONG_MAX
, &errstr
);
201 errx(EX_USAGE
, "Bad id '%s': %s",
206 errx(EX_USAGE
, "unknown keyword `%s'", argv
[1]);
212 * Bail out unless the user is specific!
214 if (mode
== -1 || which
== -1)
215 cmdhelp(mode
, which
);
218 * We know which mode we're in and what we're about to do, so now
219 * let's dispatch the remaining command line args in a genric way.
223 while ((ch
= getopt(argc
, argv
, opts
[which
][mode
])) != -1) {
226 errx(EX_USAGE
, "unknown switch");
244 if (which
== 0) { /* for user* */
245 addarg(&arglist
, 'g', optarg
);
250 if (strspn(optarg
, "0123456789") != strlen(optarg
))
251 errx(EX_USAGE
, "%s expects a number",
252 which
== 1 ? "-g" : "-u" );
253 id
= strtonum(optarg
, 0, LONG_MAX
, &errstr
);
255 errx(EX_USAGE
, "Bad id '%s': %s", optarg
,
259 if (strspn(optarg
, "0123456789") != strlen(optarg
)) {
263 id
= strtonum(optarg
, 0, LONG_MAX
, &errstr
);
265 errx(EX_USAGE
, "Bad id '%s': %s", optarg
,
268 addarg(&arglist
, ch
, optarg
);
274 if (name
!= NULL
&& strlen(name
) >= MAXLOGNAME
)
275 errx(EX_USAGE
, "name too long: %s", name
);
278 * Must be root to attempt an update
280 if (geteuid() != 0 && mode
!= M_PRINT
&& mode
!= M_NEXT
&& !conf
.dryrun
)
281 errx(EX_NOPERM
, "you must be root to run this program");
284 * We should immediately look for the -q 'quiet' switch so that we
285 * don't bother with extraneous errors
287 if (getarg(&arglist
, 'q') != NULL
)
288 freopen(_PATH_DEVNULL
, "w", stderr
);
291 * Set our base working path if not overridden
294 if (config
== NULL
) { /* Only override config location if -C not specified */
295 asprintf(&config
, "%s/pw.conf", conf
.etcpath
);
297 errx(EX_OSERR
, "out of memory");
301 * Now, let's do the common initialisation
303 conf
.userconf
= read_userconfig(config
);
305 ch
= funcs
[which
] (mode
, name
, id
, &arglist
);
308 * If everything went ok, and we've been asked to update
309 * the NIS maps, then do it now
311 if (ch
== EXIT_SUCCESS
&& nis
) {
315 if (chdir(_PATH_YP
) == -1)
316 warn("chdir(" _PATH_YP
")");
317 else if ((pid
= fork()) == -1)
320 /* Is make anywhere else? */
321 execlp("/usr/bin/make", "make", (char *)NULL
);
326 if ((i
= WEXITSTATUS(i
)) != 0)
327 errx(ch
, "make exited with status %d", i
);
329 pw_log(conf
.userconf
, mode
, which
, "NIS maps updated");
337 getindex(const char *words
[], const char *word
)
342 if (strcmp(words
[i
], word
) == 0)
351 * This is probably an overkill for a cmdline help system, but it reflects
352 * the complexity of the command line.
356 cmdhelp(int mode
, int which
)
359 fprintf(stderr
, "usage:\n pw [user|group|lock|unlock] [add|del|mod|show|next] [help|switches/values]\n");
361 fprintf(stderr
, "usage:\n pw %s [add|del|mod|show|next] [help|switches/values]\n", Which
[which
]);
365 * We need to give mode specific help
367 static const char *help
[W_NUM
][M_NUM
] =
370 "usage: pw useradd [name] [switches]\n"
371 "\t-V etcdir alternate /etc location\n"
372 "\t-R rootir alternate root directory\n"
373 "\t-C config configuration file\n"
374 "\t-q quiet operation\n"
376 "\t-n name login name\n"
378 "\t-c comment user name/comment\n"
379 "\t-d directory home directory\n"
380 "\t-e date account expiry date\n"
381 "\t-p date password expiry date\n"
382 "\t-g grp initial group\n"
383 "\t-G grp1,grp2 additional groups\n"
384 "\t-m [ -k dir ] create and set up home\n"
385 "\t-M mode home directory permissions\n"
386 "\t-s shell name of login shell\n"
387 "\t-o duplicate uid ok\n"
388 "\t-L class user class\n"
389 "\t-h fd read password on fd\n"
390 "\t-H fd read encrypted password on fd\n"
391 "\t-Y update NIS maps\n"
393 " Setting defaults:\n"
394 "\t-V etcdir alternate /etc location\n"
395 "\t-R rootir alternate root directory\n"
396 "\t-D set user defaults\n"
397 "\t-b dir default home root dir\n"
398 "\t-e period default expiry period\n"
399 "\t-p period default password change period\n"
400 "\t-g group default group\n"
401 "\t-G grp1,grp2 additional groups\n"
402 "\t-L class default user class\n"
403 "\t-k dir default home skeleton\n"
404 "\t-M mode home directory permissions\n"
405 "\t-u min,max set min,max uids\n"
406 "\t-i min,max set min,max gids\n"
407 "\t-w method set default password method\n"
408 "\t-s shell default shell\n"
409 "\t-y path set NIS passwd file path\n",
410 "usage: pw userdel [uid|name] [switches]\n"
411 "\t-V etcdir alternate /etc location\n"
412 "\t-R rootir alternate root directory\n"
413 "\t-n name login name\n"
415 "\t-Y update NIS maps\n"
416 "\t-r remove home & contents\n",
417 "usage: pw usermod [uid|name] [switches]\n"
418 "\t-V etcdir alternate /etc location\n"
419 "\t-R rootir alternate root directory\n"
420 "\t-C config configuration file\n"
421 "\t-q quiet operation\n"
422 "\t-F force add if no user\n"
423 "\t-n name login name\n"
425 "\t-c comment user name/comment\n"
426 "\t-d directory home directory\n"
427 "\t-e date account expiry date\n"
428 "\t-p date password expiry date\n"
429 "\t-g grp initial group\n"
430 "\t-G grp1,grp2 additional groups\n"
431 "\t-l name new login name\n"
432 "\t-L class user class\n"
433 "\t-m [ -k dir ] create and set up home\n"
434 "\t-M mode home directory permissions\n"
435 "\t-s shell name of login shell\n"
436 "\t-w method set new password using method\n"
437 "\t-h fd read password on fd\n"
438 "\t-H fd read encrypted password on fd\n"
439 "\t-Y update NIS maps\n"
441 "usage: pw usershow [uid|name] [switches]\n"
442 "\t-V etcdir alternate /etc location\n"
443 "\t-R rootir alternate root directory\n"
444 "\t-n name login name\n"
447 "\t-P prettier format\n"
448 "\t-a print all users\n"
449 "\t-7 print in v7 format\n",
450 "usage: pw usernext [switches]\n"
451 "\t-V etcdir alternate /etc location\n"
452 "\t-R rootir alternate root directory\n"
453 "\t-C config configuration file\n"
454 "\t-q quiet operation\n",
455 "usage pw: lock [switches]\n"
456 "\t-V etcdir alternate /etc locations\n"
457 "\t-C config configuration file\n"
458 "\t-q quiet operation\n",
459 "usage pw: unlock [switches]\n"
460 "\t-V etcdir alternate /etc locations\n"
461 "\t-C config configuration file\n"
462 "\t-q quiet operation\n"
465 "usage: pw groupadd [group|gid] [switches]\n"
466 "\t-V etcdir alternate /etc location\n"
467 "\t-R rootir alternate root directory\n"
468 "\t-C config configuration file\n"
469 "\t-q quiet operation\n"
470 "\t-n group group name\n"
471 "\t-g gid group id\n"
472 "\t-M usr1,usr2 add users as group members\n"
473 "\t-o duplicate gid ok\n"
474 "\t-Y update NIS maps\n"
476 "usage: pw groupdel [group|gid] [switches]\n"
477 "\t-V etcdir alternate /etc location\n"
478 "\t-R rootir alternate root directory\n"
479 "\t-n name group name\n"
480 "\t-g gid group id\n"
481 "\t-Y update NIS maps\n",
482 "usage: pw groupmod [group|gid] [switches]\n"
483 "\t-V etcdir alternate /etc location\n"
484 "\t-R rootir alternate root directory\n"
485 "\t-C config configuration file\n"
486 "\t-q quiet operation\n"
487 "\t-F force add if not exists\n"
488 "\t-n name group name\n"
489 "\t-g gid group id\n"
490 "\t-M usr1,usr2 replaces users as group members\n"
491 "\t-m usr1,usr2 add users as group members\n"
492 "\t-d usr1,usr2 delete users as group members\n"
493 "\t-l name new group name\n"
494 "\t-Y update NIS maps\n"
496 "usage: pw groupshow [group|gid] [switches]\n"
497 "\t-V etcdir alternate /etc location\n"
498 "\t-R rootir alternate root directory\n"
499 "\t-n name group name\n"
500 "\t-g gid group id\n"
502 "\t-P prettier format\n"
503 "\t-a print all accounting groups\n",
504 "usage: pw groupnext [switches]\n"
505 "\t-V etcdir alternate /etc location\n"
506 "\t-R rootir alternate root directory\n"
507 "\t-C config configuration file\n"
508 "\t-q quiet operation\n"
512 fprintf(stderr
, "%s", help
[which
][mode
]);
518 getarg(struct cargs
* _args
, int ch
)
520 struct carg
*c
= LIST_FIRST(_args
);
522 while (c
!= NULL
&& c
->ch
!= ch
)
523 c
= LIST_NEXT(c
, list
);
528 addarg(struct cargs
* _args
, int ch
, char *argstr
)
530 struct carg
*ca
= malloc(sizeof(struct carg
));
533 errx(EX_OSERR
, "out of memory");
536 LIST_INSERT_HEAD(_args
, ca
, list
);