981748bb50559ad122b1a7cf0b7ed996375bd704
[oweals/busybox.git] / 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 "internal.h"
25 #include <stdio.h>
26 #include <unistd.h>
27 #include <sys/types.h>
28 #include <sys/stat.h>
29 #include <fcntl.h>
30 #include <ctype.h>
31
32 #if !defined BB_SYSLOGD
33
34 #define SYSLOG_NAMES
35 #include <sys/syslog.h>
36
37 #else
38 /* We have to do this since the header file defines static
39  * structues.  Argh.... bad libc, bad, bad...
40  */
41 #include <sys/syslog.h>
42 typedef struct _code {
43         char *c_name;
44         int c_val;
45 } CODE;
46 extern CODE prioritynames[];
47 extern CODE facilitynames[];
48 #endif
49
50 static const char logger_usage[] =
51         "logger [OPTION]... [MESSAGE]\n"
52 #ifndef BB_FEATURE_TRIVIAL_HELP
53         "\nWrite MESSAGE to the system log.  If MESSAGE is '-', log stdin.\n\n"
54         "Options:\n"
55         "\t-s\tLog to stderr as well as the system log.\n"
56         "\t-t\tLog using the specified tag (defaults to user name).\n"
57
58         "\t-p\tEnter the message with the specified priority.\n"
59         "\t\tThis may be numerical or a ``facility.level'' pair.\n"
60 #endif
61         ;
62
63
64 /* Decode a symbolic name to a numeric value 
65  * this function is based on code
66  * Copyright (c) 1983, 1993
67  * The Regents of the University of California.  All rights reserved.
68  */
69 static int decode(char *name, CODE * codetab)
70 {
71         CODE *c;
72
73         if (isdigit(*name))
74                 return (atoi(name));
75         for (c = codetab; c->c_name; c++) {
76                 if (!strcasecmp(name, c->c_name)) {
77                         return (c->c_val);
78                 }
79         }
80
81         return (-1);
82 }
83
84 /* Decode a symbolic name to a numeric value 
85  * this function is based on code
86  * Copyright (c) 1983, 1993
87  * The Regents of the University of California.  All rights reserved.
88  */
89 static int pencode(char *s)
90 {
91         char *save;
92         int lev, fac = LOG_USER;
93
94         for (save = s; *s && *s != '.'; ++s);
95         if (*s) {
96                 *s = '\0';
97                 fac = decode(save, facilitynames);
98                 if (fac < 0) {
99                         errorMsg("unknown facility name: %s\n", save);
100                         exit(FALSE);
101                 }
102                 *s++ = '.';
103         } else {
104                 s = save;
105         }
106         lev = decode(s, prioritynames);
107         if (lev < 0) {
108                 errorMsg("unknown priority name: %s\n", save);
109                 exit(FALSE);
110         }
111         return ((lev & LOG_PRIMASK) | (fac & LOG_FACMASK));
112 }
113
114
115 extern int logger_main(int argc, char **argv)
116 {
117         int pri = LOG_USER | LOG_NOTICE;
118         int option = 0;
119         int fromStdinFlag = FALSE;
120         int stopLookingAtMeLikeThat = FALSE;
121         char *message=NULL, buf[1024], name[128];
122
123         /* Fill out the name string early (may be overwritten later */
124         my_getpwuid(name, geteuid());
125
126         /* Parse any options */
127         while (--argc > 0 && **(++argv) == '-') {
128                 if (*((*argv) + 1) == '\0') {
129                         fromStdinFlag = TRUE;
130                 }
131                 stopLookingAtMeLikeThat = FALSE;
132                 while (*(++(*argv)) && stopLookingAtMeLikeThat == FALSE) {
133                         switch (**argv) {
134                         case 's':
135                                 option |= LOG_PERROR;
136                                 break;
137                         case 'p':
138                                 if (--argc == 0) {
139                                         usage(logger_usage);
140                                 }
141                                 pri = pencode(*(++argv));
142                                 stopLookingAtMeLikeThat = TRUE;
143                                 break;
144                         case 't':
145                                 if (--argc == 0) {
146                                         usage(logger_usage);
147                                 }
148                                 strncpy(name, *(++argv), sizeof(name));
149                                 stopLookingAtMeLikeThat = TRUE;
150                                 break;
151                         default:
152                                 usage(logger_usage);
153                         }
154                 }
155         }
156
157         if (fromStdinFlag == TRUE) {
158                 /* read from stdin */
159                 int c;
160                 unsigned int i = 0;
161
162                 while ((c = getc(stdin)) != EOF && i < sizeof(buf)) {
163                         buf[i++] = c;
164                 }
165                 message = buf;
166         } else {
167                 if (argc >= 1) {
168                         message = *argv;
169                 } else {
170                         errorMsg("No message\n");
171                         exit(FALSE);
172                 }
173         }
174
175         openlog(name, option, (pri | LOG_FACMASK));
176         syslog(pri, message);
177         closelog();
178
179         return(TRUE);
180 }