Clean up error handling and uses of TRUE/FALSE.
[oweals/busybox.git] / sysklogd / logger.c
1 /* vi: set sw=4 ts=4: */
2 /*
3  * Mini logger implementation for busybox
4  *
5  * Copyright (C) 1999,2000 by Lineo, inc.
6  * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16  * General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
21  *
22  */
23
24 #include "busybox.h"
25 #include <stdio.h>
26 #include <unistd.h>
27 #include <sys/types.h>
28 #include <fcntl.h>
29 #include <ctype.h>
30
31 #if !defined BB_SYSLOGD
32
33 #define SYSLOG_NAMES
34 #include <sys/syslog.h>
35
36 #else
37 /* We have to do this since the header file defines static
38  * structues.  Argh.... bad libc, bad, bad...
39  */
40 #include <sys/syslog.h>
41 typedef struct _code {
42         char *c_name;
43         int c_val;
44 } CODE;
45 extern CODE prioritynames[];
46 extern CODE facilitynames[];
47 #endif
48
49 /* Decode a symbolic name to a numeric value 
50  * this function is based on code
51  * Copyright (c) 1983, 1993
52  * The Regents of the University of California.  All rights reserved.
53  */
54 static int decode(char *name, CODE * codetab)
55 {
56         CODE *c;
57
58         if (isdigit(*name))
59                 return (atoi(name));
60         for (c = codetab; c->c_name; c++) {
61                 if (!strcasecmp(name, c->c_name)) {
62                         return (c->c_val);
63                 }
64         }
65
66         return (-1);
67 }
68
69 /* Decode a symbolic name to a numeric value 
70  * this function is based on code
71  * Copyright (c) 1983, 1993
72  * The Regents of the University of California.  All rights reserved.
73  */
74 static int pencode(char *s)
75 {
76         char *save;
77         int lev, fac = LOG_USER;
78
79         for (save = s; *s && *s != '.'; ++s);
80         if (*s) {
81                 *s = '\0';
82                 fac = decode(save, facilitynames);
83                 if (fac < 0)
84                         fatalError("unknown facility name: %s\n", save);
85                 *s++ = '.';
86         } else {
87                 s = save;
88         }
89         lev = decode(s, prioritynames);
90         if (lev < 0)
91                 fatalError("unknown priority name: %s\n", save);
92         return ((lev & LOG_PRIMASK) | (fac & LOG_FACMASK));
93 }
94
95
96 extern int logger_main(int argc, char **argv)
97 {
98         int pri = LOG_USER | LOG_NOTICE;
99         int option = 0;
100         int fromStdinFlag = FALSE;
101         int stopLookingAtMeLikeThat = FALSE;
102         char *message=NULL, buf[1024], name[128];
103
104         /* Fill out the name string early (may be overwritten later */
105         my_getpwuid(name, geteuid());
106
107         /* Parse any options */
108         while (--argc > 0 && **(++argv) == '-') {
109                 if (*((*argv) + 1) == '\0') {
110                         fromStdinFlag = TRUE;
111                 }
112                 stopLookingAtMeLikeThat = FALSE;
113                 while (*(++(*argv)) && stopLookingAtMeLikeThat == FALSE) {
114                         switch (**argv) {
115                         case 's':
116                                 option |= LOG_PERROR;
117                                 break;
118                         case 'p':
119                                 if (--argc == 0) {
120                                         usage(logger_usage);
121                                 }
122                                 pri = pencode(*(++argv));
123                                 stopLookingAtMeLikeThat = TRUE;
124                                 break;
125                         case 't':
126                                 if (--argc == 0) {
127                                         usage(logger_usage);
128                                 }
129                                 strncpy(name, *(++argv), sizeof(name));
130                                 stopLookingAtMeLikeThat = TRUE;
131                                 break;
132                         default:
133                                 usage(logger_usage);
134                         }
135                 }
136         }
137
138         if (fromStdinFlag == TRUE) {
139                 /* read from stdin */
140                 int c;
141                 unsigned int i = 0;
142
143                 while ((c = getc(stdin)) != EOF && i < sizeof(buf)) {
144                         buf[i++] = c;
145                 }
146                 message = buf;
147         } else {
148                 if (argc >= 1)
149                         message = *argv;
150                 else
151                         fatalError("No message\n");
152         }
153
154         openlog(name, option, (pri | LOG_FACMASK));
155         syslog(pri, message);
156         closelog();
157
158         return EXIT_SUCCESS;
159 }