login.so: cannot be an error if there is no hostname (-h and -lh); only
[userinfo.git] / src / ui.c
blob7ee89eda266b2b34948b3a5934192ccc0c5d2224
1 /*
2 Copyright (C) 2001-2011 Ben Kibbey <bjk@luxsci.net>
4 This program is free software; you can redistribute it and/or modify
5 it under the terms of the GNU General Public License as published by
6 the Free Software Foundation; either version 2 of the License, or
7 (at your option) any later version.
9 This program is distributed in the hope that it will be useful,
10 but WITHOUT ANY WARRANTY; without even the implied warranty of
11 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 GNU General Public License for more details.
14 You should have received a copy of the GNU General Public License
15 along with this program; if not, write to the Free Software
16 Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02110-1301 USA
18 #ifdef HAVE_CONFIG_H
19 #include <config.h>
20 #endif
22 #include <stdio.h>
23 #include <unistd.h>
24 #include <stdlib.h>
25 #include <sys/types.h>
26 #include <sys/stat.h>
27 #include <errno.h>
28 #include <ctype.h>
29 #include <pwd.h>
30 #include <time.h>
32 #ifdef HAVE_GETOPT_H
33 #include <getopt.h>
34 #endif
36 #ifndef HAVE_ERR_H
37 #include "err.c"
38 #endif
40 #include "ui.h"
42 static void *Realloc(void *p, size_t size)
44 void *p2;
46 if ((p2 = realloc(p, size)) == NULL)
47 err(EXIT_FAILURE, "%s", "realloc()");
49 return p2;
52 /* This may be used in modules to keep a consistant time format with other
53 * modules. */
54 char *stamp(time_t epoch, const char *format)
56 static char buf[TIMEBUFSIZE];
57 struct tm *t;
59 t = localtime(&epoch);
60 strftime(buf, sizeof(buf), format, t);
61 return buf;
64 /*
65 * This may be used in modules to add a string to the buffer (ui_module_exec()).
67 void add_string(char ***buf, const char *str)
69 char **s;
70 int i = 0;
72 if (*buf) {
73 for (s = *buf; *s; s++)
74 i++;
77 s = *buf;
78 s = Realloc(s, (i + 2) * sizeof(char *));
79 s[i++] = strdup(str);
80 s[i] = NULL;
81 *buf = s;
84 /* This is for the field separators (-F and -m). */
85 static int escapes(const char *str)
87 int c = 0;
89 if (str[0] != '\\')
90 return str[0];
92 switch (*++str) {
93 case 't':
94 c = '\t';
95 break;
96 case 'n':
97 c = '\n';
98 break;
99 case '\\':
100 c = '\\';
101 break;
102 case 'v':
103 c = '\v';
104 break;
105 case 'b':
106 c = '\b';
107 break;
108 case 'f':
109 c = '\f';
110 break;
111 case 'r':
112 c = '\r';
113 break;
114 case '\'':
115 c = '\'';
116 break;
117 default:
118 c = 0;
119 break;
122 return c;
125 /* Help text. Module help text is displayed after this. */
126 static void usage_header()
128 printf("Usage: %s [-vhVL] [-c <filename>] [-t fmt] [-m c] [-F c] [-d]\n"
129 "\t[[-xX] -O <module1> [options] [-- [-xX] -O <module2> [...]]]\n"
130 "\t[- | username | -f filename] [...]\n\n", __progname);
133 /* Help text. Module help text is displayed before this. */
134 static void usage()
136 printf(" -d\tLoad the default modules (passwd.so, mail.so, and login.so).\n");
137 printf(" -c\tRead a configuration file. Can be used more than once.\n");
138 printf(" -O\tLoad a module. Can be used more than once.\n");
139 printf(" -x\tChain module1's output to module2's input.\n");
140 printf(" -X\tDon't output module1's info, only chain it.\n");
141 printf(" -F c\tSeparate output with the specified character "
142 "('%c').\n", delimchar);
143 printf(" -m c\tSeparate multi-string values with the specified "
144 "character ('%c').\n", multichar);
145 printf(" -t tf\tstrftime(3) time format ('%s').\n", DEFAULT_TIMEFORMAT);
146 printf(" -f\tUsers are the owners of the specified files.\n");
147 printf(" -L\tFollow symbolic links.\n");
148 printf(" -v\tVerbose output when possible (twice for all modules).\n");
149 printf(" -h\tThis help text.\n");
150 printf(" -V\tVersion information.\n\n");
151 printf("Output key: %s=unknown/error, %s=none, %s=yes/on, "
152 "%s=no/off\n", UNKNOWN, NONE, ON, OFF);
156 * Add a module to the array of loaded modules. The index argument is the
157 * current item number being added stored in an integer. The module is also
158 * initialized here with ui_module_init().
160 static int open_module(char *filename, int *idx)
162 void *m;
163 module_init *init;
164 char *p, s[FILENAME_MAX];
165 int i;
166 int chainable = 0;
168 strncpy(s, filename, sizeof(s));
170 if ((p = strrchr(s, '/')) != NULL)
171 p++;
172 else {
173 strncpy(s, filename, sizeof(s));
174 p = s;
177 for (i = 0; i < module_index; i++) {
178 if (strcmp(p, modules[i].name) == 0) {
179 if (TEST_FLAG(modules[i].flags, MODULE_DUP))
180 break;
182 SET_FLAG(modules[i].flags, MODULE_DUP);
183 warnx("%s: a module by this name is already loaded", p);
187 if ((m = dlopen(filename, RTLD_NOW)) == NULL) {
188 warnx("%s", dlerror());
189 chaining = 0;
190 chain_output = 1;
191 return 1;
194 modules = Realloc(modules, (module_index + 2) * sizeof(struct module));
195 modules[module_index].m = m;
197 strncpy(modules[module_index].name, p, sizeof(modules[module_index].name));
198 *idx = module_index++;
200 if ((init = dlsym(modules[*idx].m, "ui_module_init")) == NULL)
201 warnx("%s", dlerror());
202 else
203 (*init) (&chainable);
205 if (chainable)
206 SET_FLAG(modules[*idx].flags, MODULE_CHAINABLE);
208 if (*idx - 1 >= 0 && TEST_FLAG(modules[*idx - 1].flags, MODULE_CHAINED) &&
209 !TEST_FLAG(modules[*idx].flags, MODULE_CHAINABLE)) {
210 warnx("%s: this module is not chainable", modules[*idx].name);
211 return 1;
214 /* Module chaining. See junction() for more info. */
215 if (chaining)
216 SET_FLAG(modules[*idx].flags, MODULE_CHAINED);
218 if (chain_output)
219 SET_FLAG(modules[*idx].flags, MODULE_OUTPUT);
221 if (verbose)
222 SET_FLAG(modules[*idx].flags, MODULE_VERBOSE);
224 chaining = 0;
225 chain_output = 1;
226 verbose = (verbose < 2) ? 0 : 2;
227 return 0;
230 /* This just free's up the array of modules. The modules should clean up after
231 * themselves via the ui_module_exit() function. */
232 static void cleanup_modules()
234 int i;
236 for (i = 0; i < module_index; i++) {
237 module_exit *e;
239 if ((e = dlsym(modules[i].m, "ui_module_exit")) == NULL)
240 warnx("%s", dlerror());
241 else
242 (*e)();
244 dlclose(modules[i].m);
247 free(modules);
250 static void output(char **s, const int sep, int which)
252 char **p = s;
254 if (p) {
255 for (; *p; p++) {
256 printf("%s", *p);
258 if (*(p+1))
259 printf("%c", sep);
263 printf("%c", which == OUTPUT_DONE ? '\n' : sep);
266 /* Pass the argument to each loaded module. */
267 static int junction(const char *arg)
269 int i;
270 struct passwd *pw;
271 struct stat st;
272 int ret = EXIT_SUCCESS;
273 char **s = NULL;
275 if (usefile) {
276 if ((STAT(arg, &st)) == -1) {
277 warn("%s", arg);
278 return EXIT_FAILURE;
281 errno = 0;
283 if ((pw = getpwuid(st.st_uid)) == NULL) {
284 #ifdef __NetBSD__
285 warnx("%s: no such user", arg);
286 #else
287 if (errno == 0 || errno == ENOENT || errno == EPERM
288 || errno == EBADF || errno == ESRCH)
289 warnx("%s: no such uid %u", arg, st.st_uid);
290 else
291 warn("%s", "getpwuid()");
292 #endif
294 return EXIT_FAILURE;
297 else {
298 errno = 0;
300 if ((pw = getpwnam(arg)) == NULL) {
301 #ifdef __NetBSD__
302 warnx("%s: no such user", arg);
303 #else
304 if (errno == 0 || errno == ENOENT || errno == EPERM
305 || errno == EBADF || errno == ESRCH)
306 warnx("%s: no such user", arg);
307 else
308 warn("%s", "getpwnam()");
309 #endif
311 return EXIT_FAILURE;
315 for (i = 0; i < module_index; i++) {
316 module_exec *m_exec;
318 if ((m_exec = dlsym(modules[i].m, "ui_module_exec")) == NULL) {
319 warnx("%s", dlerror());
320 continue;
323 ret |= (*m_exec) (&s, pw, multichar,
324 TEST_FLAG(modules[i].flags, MODULE_VERBOSE), tf);
326 if (!TEST_FLAG(modules[i].flags, MODULE_CHAINED) ||
327 (TEST_FLAG(modules[i].flags, MODULE_CHAINED) &&
328 TEST_FLAG(modules[i].flags, MODULE_OUTPUT))) {
329 output(s, delimchar,
330 ((i + 1) < module_index) ? OUTPUT_APPEND : OUTPUT_DONE);
332 if (!TEST_FLAG(modules[i].flags, MODULE_CHAINED)) {
333 char **p;
335 for (p = s; *p; p++) {
336 free(*p);
339 free(s);
340 s = NULL;
345 return ret;
348 /* Copy options for each module into it's own argc and argv variables stopping
349 * at -- (getopt(3)). */
350 static int init_module_options(int the_argc, char **the_argv, struct module mod)
352 char tmp[255];
353 module_options *m;
354 module_options_init *o;
355 int old_optind = optind;
356 int argc = 0;
357 char **argv = NULL;
358 int opt;
359 int ret = EXIT_SUCCESS;
360 char *optstring = NULL;
361 char *defaults = NULL;
362 int have_an_argument = 0;
364 if ((o = dlsym(mod.m, "ui_module_options_init")) == NULL) {
365 warnx("%s", dlerror());
366 return EXIT_FAILURE;
369 if ((optstring = (*o) (&defaults))) {
370 argv = Realloc(argv, (argc + 2) * sizeof(char *));
371 argv[argc++] = strdup(__progname);
372 argv[argc] = NULL;
374 /* Probably a default module. */
375 if (the_argv == NULL)
376 goto blah;
378 while ((opt = getopt(the_argc, the_argv, optstring)) != -1) {
379 switch (opt) {
380 case '?':
381 warnx("%s: invalid option -- %c\n", mod.name,
382 optopt);
383 return EXIT_FAILURE;
384 default:
385 break;
388 argv = Realloc(argv, (argc + 2) * sizeof(char *));
389 snprintf(tmp, sizeof(tmp), "-%c%s", opt, (optarg) ? optarg : "");
390 argv[argc++] = strdup(tmp);
391 argv[argc] = NULL;
392 have_an_argument = 1;
395 else
396 goto skip_option_stuff;
398 blah:
400 * No options were specified for this module. Set the modules default
401 * options (ui_module_options_init()) if any.
403 if (!have_an_argument && defaults) {
404 argv = Realloc(argv, (argc + 2) * sizeof(char *));
405 snprintf(tmp, sizeof(tmp), "-%s", defaults);
406 argv[argc++] = strdup(tmp);
407 argv[argc] = NULL;
410 old_optind = optind;
411 opterr = optind = optopt = 1;
413 if ((m = dlsym(mod.m, "ui_module_options")) == NULL) {
414 warnx("%s", dlerror());
415 return EXIT_FAILURE;
418 ret |= (*m) (argc, argv);
419 optind = old_optind;
421 skip_option_stuff:
422 return ret;
426 * parseargs.c
428 * This will parse a line used as an argument list for the exec() line of
429 * functions returning a dynamically allocated array of character pointers so
430 * you should free() it afterwards. Both ' and " quoting is supported (with
431 * escapes) for multi-word arguments.
433 * This is my second attempt at it. Works alot better than the first. :)
435 * 2002/10/05
436 * Ben Kibbey <bjk@luxsci.net>
438 * 2004/11/07
439 * Modified to handle argv[0] and argc. (Ben Kibbey <bjk@luxsci.net>)
441 static char **parseargv(char *str, const char *progname, int *me_argc)
443 char **pptr, *s;
444 char arg[255];
445 int idx = 0;
446 int quote = 0;
447 int lastchar = 0;
448 int i;
449 int my_argc = 0;
451 if (!str)
452 return NULL;
454 if (!(pptr = malloc(sizeof(char *))))
455 return NULL;
457 pptr = Realloc(pptr, (idx + 2) * sizeof(char *));
458 pptr[idx++] = strdup(progname);
459 my_argc++;
461 for (i = 0, s = str; *s; lastchar = *s++) {
462 if ((*s == '\"' || *s == '\'') && lastchar != '\\') {
463 quote = (quote) ? 0 : 1;
464 continue;
467 if (*s == ' ' && !quote) {
468 arg[i] = 0;
469 pptr = Realloc(pptr, (idx + 2) * sizeof(char *));
470 pptr[idx++] = strdup(arg);
471 my_argc++;
472 arg[0] = i = 0;
473 continue;
476 if ((i + 1) == sizeof(arg))
477 continue;
479 arg[i++] = *s;
482 arg[i] = 0;
484 if (arg[0]) {
485 pptr = Realloc(pptr, (idx + 2) * sizeof(char *));
486 pptr[idx++] = strdup(arg);
487 my_argc++;
490 pptr[idx] = NULL;
491 *me_argc = my_argc;
492 return pptr;
495 static char *get_home_directory()
497 struct passwd *pw;
498 static char dir[FILENAME_MAX];
500 errno = 0;
502 if ((pw = getpwuid(getuid())) == NULL) {
503 if (errno)
504 warn("getpwuid()");
505 else
506 warnx("getpwuid(): no such uid");
508 return NULL;
511 strncpy(dir, pw->pw_dir, sizeof(dir));
512 return dir;
515 /* Read in a configuration file adding modules to the module array and
516 * checking any module options. */
517 static int parse_rc_file(const char *filename)
519 char line[LINE_MAX], *p;
520 FILE *fp;
521 int idx;
522 int old_optind = optind;
524 if ((fp = fopen(filename, "r")) == NULL) {
525 warn("%s", filename);
526 return 1;
529 while ((p = fgets(line, sizeof(line), fp)) != NULL) {
530 char name[FILENAME_MAX], options[LINE_MAX], tmp[LINE_MAX], *s;
531 int my_argc;
532 char **my_argv;
533 int lastchar = '\0';
535 while (*p && isspace((unsigned char) *p))
536 p++;
538 if (*p == '#')
539 continue;
541 s = name;
543 if (*p == '>' || *p == '-') {
544 chaining = 1;
546 if (*p == '-')
547 chain_output = 0;
549 p++;
552 while (*p && *p != ' ' && *p != '\t') {
553 if (*p == '\n') {
554 p++;
555 break;
558 *s++ = *p++;
561 *s = '\0';
563 if (!name[0])
564 continue;
566 s = options;
568 while (*p && isspace((unsigned char) *p))
569 p++;
571 lastchar = *p;
573 while (*p) {
574 if (*p == '\n' || (*p == '#' && lastchar != '\\'))
575 break;
577 if (*p == '#' && lastchar == '\\') {
578 lastchar = *--s = *p++;
579 s++;
580 continue;
583 lastchar = *s++ = *p++;
586 *s = '\0';
587 p = name;
589 if (*p == '~') {
590 s = get_home_directory();
591 strncpy(tmp, s, sizeof(tmp));
592 p++;
593 strncat(tmp, p, sizeof(tmp)-strlen(tmp)-1);
594 strncpy(name, tmp, sizeof(name));
597 if (open_module(name, &idx))
598 continue;
600 if ((my_argv = parseargv(options, __progname, &my_argc)) == NULL)
601 continue;
603 optind = 0;
605 if (init_module_options(my_argc, my_argv, modules[idx])) {
606 fclose(fp);
607 return 2;
610 optind = old_optind;
613 fclose(fp);
614 return 0;
617 int main(int argc, char *argv[])
619 int i = 0;
620 int ret = EXIT_SUCCESS;
621 int opt;
622 char line[LINE_MAX], *s = NULL;
623 int want_help = 0;
625 #ifndef HAVE___PROGNAME
626 __progname = argv[0];
627 #endif
628 delimchar = DEFAULT_DELIMINATING_CHAR;
629 multichar = DEFAULT_MULTI_CHAR;
630 strncpy(tf, DEFAULT_TIMEFORMAT, sizeof(tf));
631 chain_output = 1;
633 while ((opt = getopt(argc, argv, "+x:X:dm:c:hO:F:t:vVLf")) != -1) {
635 * See getopt(3).
637 opterr = 0;
639 switch (opt) {
640 case 'd':
641 i = module_index;
643 if (open_module("passwd.so", &i) == 0) {
644 if (init_module_options(1, NULL, modules[i]))
645 want_help = 1;
647 else {
648 ret = EXIT_FAILURE;
649 goto cleanup;
652 if (open_module("mail.so", &i) == 0) {
653 if (init_module_options(1, NULL, modules[i]))
654 want_help = 1;
656 else {
657 ret = EXIT_FAILURE;
658 goto cleanup;
661 if (open_module("login.so", &i) == 0) {
662 if (init_module_options(1, NULL, modules[i]))
663 want_help = 1;
665 else {
666 ret = EXIT_FAILURE;
667 goto cleanup;
670 break;
671 case 'm':
672 if ((optarg[0] != '\\' && strlen(optarg) > 1) ||
673 (optarg[0] == '\\' && strlen(optarg) != 2)) {
674 want_help = 1;
675 break;
678 if ((multichar = escapes(optarg)) == 0)
679 want_help = 1;
681 break;
682 case 'c':
683 if ((ret = parse_rc_file(optarg)) != 0) {
684 if (ret == 2)
685 want_help = 1;
686 else
687 exit(EXIT_FAILURE);
689 break;
690 case 'F':
691 if ((optarg[0] != '\\' && strlen(optarg) > 1) ||
692 (optarg[0] == '\\' && strlen(optarg) != 2)) {
693 want_help = 1;
694 break;
697 if ((delimchar = escapes(optarg)) == 0)
698 want_help = 1;
700 break;
701 case 't':
702 strncpy(tf, optarg, sizeof(tf));
703 break;
704 case 'V':
705 printf("%s\n%s\n", PACKAGE_STRING, COPYRIGHT);
706 exit(EXIT_SUCCESS);
707 break;
708 case 'L':
709 followsymlinks = 1;
710 break;
711 case 'f':
712 usefile = 1;
713 break;
714 case 'v':
715 verbose++;
716 break;
717 case 'X':
718 chain_output = 0;
719 case 'x':
720 chaining = 1;
721 case 'O':
722 if (open_module(optarg, &i)) {
723 ret = EXIT_FAILURE;
724 goto cleanup;
727 if (init_module_options(argc, argv, modules[i]))
728 want_help = 1;
731 * For modules which have no options at all (to keep getopt
732 * from interpreting the rest as arguments.
734 if (optind < argc) {
735 if (strcmp(argv[optind], "--") == 0)
736 optind++;
739 break;
740 case 'h':
741 default:
742 want_help = 1;
743 break;
747 /* The last module cannot be chained (syntax). */
748 if (!module_index || TEST_FLAG(modules[module_index - 1].flags, MODULE_CHAINED))
749 want_help = 1;
751 /* Cycle through the modules and output their help text. */
752 if (want_help) {
753 usage_header();
755 for (i = 0; i < module_index; i++) {
756 module_help *m_help;
758 if (TEST_FLAG(modules[i].flags, MODULE_DUP))
759 continue;
761 if ((m_help = dlsym(modules[i].m, "ui_module_help")) == NULL) {
762 warnx("%s", dlerror());
763 continue;
766 fprintf(stderr, "%s\n", modules[i].name);
767 (*m_help) ();
770 usage();
771 cleanup_modules();
772 exit(EXIT_FAILURE);
775 if (argc == optind || strcmp(argv[optind], "-") == 0) {
776 while ((s = fgets(line, sizeof(line), stdin)) != NULL) {
777 if (s[strlen(s) - 1] == '\n')
778 s[strlen(s) - 1] = '\0';
780 ret |= junction(s);
783 else {
784 for (; optind < argc; optind++)
785 ret |= junction(argv[optind]);
788 cleanup:
789 cleanup_modules();
790 exit(ret);