blob: 252cfc494e24237bec18e283db686cd1534aa888 [file] [log] [blame]
Erik Andersene49d5ec2000-02-08 19:58:47 +00001/* vi: set sw=4 ts=4: */
Eric Andersen3843e961999-11-25 07:30:46 +00002/*
3 * Mini logger implementation for busybox
4 *
Eric Andersencb81e642003-07-14 21:21:08 +00005 * Copyright (C) 1999-2003 by Erik Andersen <andersen@codepoet.org>
Eric Andersen3843e961999-11-25 07:30:46 +00006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
20 *
21 */
22
Eric Andersen3843e961999-11-25 07:30:46 +000023#include <stdio.h>
Eric Andersen3843e961999-11-25 07:30:46 +000024#include <unistd.h>
Eric Andersen3843e961999-11-25 07:30:46 +000025#include <sys/types.h>
Eric Andersen3843e961999-11-25 07:30:46 +000026#include <fcntl.h>
Eric Andersen3843e961999-11-25 07:30:46 +000027#include <ctype.h>
Eric Andersened3ef502001-01-27 08:24:39 +000028#include <string.h>
29#include <stdlib.h>
Eric Andersen3843e961999-11-25 07:30:46 +000030
Eric Andersencbe31da2001-02-20 06:14:08 +000031#include "busybox.h"
Eric Andersenbdfd0d72001-10-24 05:00:29 +000032#if !defined CONFIG_SYSLOGD
Eric Andersen3843e961999-11-25 07:30:46 +000033
34#define SYSLOG_NAMES
35#include <sys/syslog.h>
36
37#else
Eric Andersen3843e961999-11-25 07:30:46 +000038#include <sys/syslog.h>
Eric Andersen8d79ce82001-07-22 23:00:15 +000039# ifndef __dietlibc__
40 /* We have to do this since the header file defines static
41 * structures. Argh.... bad libc, bad, bad...
42 */
43 typedef struct _code {
44 char *c_name;
45 int c_val;
46 } CODE;
47 extern CODE prioritynames[];
48 extern CODE facilitynames[];
49# endif
Eric Andersen3843e961999-11-25 07:30:46 +000050#endif
51
Eric Andersen3843e961999-11-25 07:30:46 +000052/* Decode a symbolic name to a numeric value
53 * this function is based on code
54 * Copyright (c) 1983, 1993
55 * The Regents of the University of California. All rights reserved.
Eric Andersen4e573f42000-11-14 23:29:24 +000056 *
57 * Original copyright notice is retained at the end of this file.
Eric Andersen3843e961999-11-25 07:30:46 +000058 */
Erik Andersene49d5ec2000-02-08 19:58:47 +000059static int decode(char *name, CODE * codetab)
Eric Andersen3843e961999-11-25 07:30:46 +000060{
Erik Andersene49d5ec2000-02-08 19:58:47 +000061 CODE *c;
Eric Andersen3843e961999-11-25 07:30:46 +000062
Erik Andersene49d5ec2000-02-08 19:58:47 +000063 if (isdigit(*name))
64 return (atoi(name));
65 for (c = codetab; c->c_name; c++) {
66 if (!strcasecmp(name, c->c_name)) {
67 return (c->c_val);
68 }
Eric Andersen3843e961999-11-25 07:30:46 +000069 }
Eric Andersen3843e961999-11-25 07:30:46 +000070
Erik Andersene49d5ec2000-02-08 19:58:47 +000071 return (-1);
Eric Andersen3843e961999-11-25 07:30:46 +000072}
73
74/* Decode a symbolic name to a numeric value
75 * this function is based on code
76 * Copyright (c) 1983, 1993
77 * The Regents of the University of California. All rights reserved.
Eric Andersen4e573f42000-11-14 23:29:24 +000078 *
79 * Original copyright notice is retained at the end of this file.
Eric Andersen3843e961999-11-25 07:30:46 +000080 */
Erik Andersene49d5ec2000-02-08 19:58:47 +000081static int pencode(char *s)
Eric Andersen3843e961999-11-25 07:30:46 +000082{
Erik Andersene49d5ec2000-02-08 19:58:47 +000083 char *save;
84 int lev, fac = LOG_USER;
Eric Andersen3843e961999-11-25 07:30:46 +000085
Erik Andersene49d5ec2000-02-08 19:58:47 +000086 for (save = s; *s && *s != '.'; ++s);
87 if (*s) {
88 *s = '\0';
89 fac = decode(save, facilitynames);
Matt Kraai31804132000-10-25 16:40:21 +000090 if (fac < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +000091 bb_error_msg_and_die("unknown facility name: %s", save);
Erik Andersene49d5ec2000-02-08 19:58:47 +000092 *s++ = '.';
93 } else {
94 s = save;
Eric Andersen3843e961999-11-25 07:30:46 +000095 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000096 lev = decode(s, prioritynames);
Matt Kraai31804132000-10-25 16:40:21 +000097 if (lev < 0)
Manuel Novoa III cad53642003-03-19 09:13:01 +000098 bb_error_msg_and_die("unknown priority name: %s", save);
Erik Andersene49d5ec2000-02-08 19:58:47 +000099 return ((lev & LOG_PRIMASK) | (fac & LOG_FACMASK));
Eric Andersen3843e961999-11-25 07:30:46 +0000100}
101
102
103extern int logger_main(int argc, char **argv)
104{
Erik Andersene49d5ec2000-02-08 19:58:47 +0000105 int pri = LOG_USER | LOG_NOTICE;
106 int option = 0;
Glenn L McGrath907a2402002-11-10 21:33:28 +0000107 int c, i, opt;
108 char buf[1024], name[128];
Eric Andersen3843e961999-11-25 07:30:46 +0000109
Matt Kraai1944f542001-01-02 18:13:58 +0000110 /* Fill out the name string early (may be overwritten later) */
Erik Andersene49d5ec2000-02-08 19:58:47 +0000111 my_getpwuid(name, geteuid());
Eric Andersen3843e961999-11-25 07:30:46 +0000112
Erik Andersene49d5ec2000-02-08 19:58:47 +0000113 /* Parse any options */
Matt Kraai1944f542001-01-02 18:13:58 +0000114 while ((opt = getopt(argc, argv, "p:st:")) > 0) {
115 switch (opt) {
Erik Andersene49d5ec2000-02-08 19:58:47 +0000116 case 's':
117 option |= LOG_PERROR;
118 break;
119 case 'p':
Matt Kraai1944f542001-01-02 18:13:58 +0000120 pri = pencode(optarg);
Erik Andersene49d5ec2000-02-08 19:58:47 +0000121 break;
122 case 't':
Eric Andersen02e6ba92002-09-30 20:39:56 +0000123 safe_strncpy(name, optarg, sizeof(name));
Erik Andersene49d5ec2000-02-08 19:58:47 +0000124 break;
125 default:
Manuel Novoa III cad53642003-03-19 09:13:01 +0000126 bb_show_usage();
Erik Andersene49d5ec2000-02-08 19:58:47 +0000127 }
Eric Andersen3843e961999-11-25 07:30:46 +0000128 }
Erik Andersene49d5ec2000-02-08 19:58:47 +0000129
Eric Andersen20aab262001-07-19 22:28:02 +0000130 openlog(name, option, (pri | LOG_FACMASK));
Matt Kraai1944f542001-01-02 18:13:58 +0000131 if (optind == argc) {
Eric Andersen20aab262001-07-19 22:28:02 +0000132 do {
133 /* read from stdin */
134 i = 0;
135 while ((c = getc(stdin)) != EOF && c != '\n' &&
136 i < (sizeof(buf)-1)) {
137 buf[i++] = c;
138 }
139 if (i > 0) {
140 buf[i++] = '\0';
141 syslog(pri, "%s", buf);
142 }
143 } while (c != EOF);
Eric Andersenbefda6e1999-11-25 08:06:22 +0000144 } else {
Glenn L McGrath907a2402002-11-10 21:33:28 +0000145 char *message = NULL;
146 int len = argc - optind; /* for the space between the args
147 and '\0' */
148 opt = len;
149 argv += optind;
150 for (i = 0; i < opt; i++) {
151 len += strlen(*argv);
Matt Kraai1944f542001-01-02 18:13:58 +0000152 message = xrealloc(message, len);
Glenn L McGrath907a2402002-11-10 21:33:28 +0000153 if(!i)
154 message[0] = 0;
155 else
Matt Kraai1944f542001-01-02 18:13:58 +0000156 strcat(message, " ");
Glenn L McGrath907a2402002-11-10 21:33:28 +0000157 strcat(message, *argv);
158 argv++;
Eric Andersen9cff4fb2000-12-08 19:35:51 +0000159 }
Eric Andersen20aab262001-07-19 22:28:02 +0000160 syslog(pri, "%s", message);
Eric Andersenbefda6e1999-11-25 08:06:22 +0000161 }
Eric Andersen3843e961999-11-25 07:30:46 +0000162
Eric Andersen20aab262001-07-19 22:28:02 +0000163 closelog();
Matt Kraai31804132000-10-25 16:40:21 +0000164 return EXIT_SUCCESS;
Eric Andersen3843e961999-11-25 07:30:46 +0000165}
Eric Andersen4e573f42000-11-14 23:29:24 +0000166
167
168/*-
169 * Copyright (c) 1983, 1993
170 * The Regents of the University of California. All rights reserved.
171 *
172 * This is the original license statement for the decode and pencode functions.
173 *
174 * Redistribution and use in source and binary forms, with or without
175 * modification, are permitted provided that the following conditions
176 * are met:
177 * 1. Redistributions of source code must retain the above copyright
178 * notice, this list of conditions and the following disclaimer.
179 * 2. Redistributions in binary form must reproduce the above copyright
180 * notice, this list of conditions and the following disclaimer in the
181 * documentation and/or other materials provided with the distribution.
182 *
183 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
184 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
185 *
186 * 4. Neither the name of the University nor the names of its contributors
187 * may be used to endorse or promote products derived from this software
188 * without specific prior written permission.
189 *
190 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
191 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
192 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
193 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
194 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
195 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
196 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
197 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
198 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
199 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
200 * SUCH DAMAGE.
201 */
202
203
204