blob: e2d07460597e1fa4810919e33aacc6bbc9ff692f [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 Andersenc7bda1c2004-03-15 08:29:22 +00005 * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
Eric Andersen3843e961999-11-25 07:30:46 +00006 *
Bernhard Reutner-Fischere15d7572006-06-02 20:56:16 +00007 * Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
Eric Andersen3843e961999-11-25 07:30:46 +00008 */
9
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000010#include "libbb.h"
Eric Andersen3843e961999-11-25 07:30:46 +000011
Eric Andersenbdfd0d72001-10-24 05:00:29 +000012#if !defined CONFIG_SYSLOGD
Eric Andersen3843e961999-11-25 07:30:46 +000013
14#define SYSLOG_NAMES
15#include <sys/syslog.h>
16
17#else
Eric Andersen3843e961999-11-25 07:30:46 +000018#include <sys/syslog.h>
Eric Andersen8d79ce82001-07-22 23:00:15 +000019# ifndef __dietlibc__
20 /* We have to do this since the header file defines static
21 * structures. Argh.... bad libc, bad, bad...
22 */
23 typedef struct _code {
24 char *c_name;
25 int c_val;
26 } CODE;
27 extern CODE prioritynames[];
28 extern CODE facilitynames[];
29# endif
Eric Andersen3843e961999-11-25 07:30:46 +000030#endif
31
Eric Andersenc7bda1c2004-03-15 08:29:22 +000032/* Decode a symbolic name to a numeric value
Eric Andersen3843e961999-11-25 07:30:46 +000033 * this function is based on code
34 * Copyright (c) 1983, 1993
35 * The Regents of the University of California. All rights reserved.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000036 *
Eric Andersen4e573f42000-11-14 23:29:24 +000037 * Original copyright notice is retained at the end of this file.
Eric Andersen3843e961999-11-25 07:30:46 +000038 */
Erik Andersene49d5ec2000-02-08 19:58:47 +000039static int decode(char *name, CODE * codetab)
Eric Andersen3843e961999-11-25 07:30:46 +000040{
Erik Andersene49d5ec2000-02-08 19:58:47 +000041 CODE *c;
Eric Andersen3843e961999-11-25 07:30:46 +000042
Erik Andersene49d5ec2000-02-08 19:58:47 +000043 if (isdigit(*name))
Denis Vlasenko13858992006-10-08 12:49:22 +000044 return atoi(name);
Erik Andersene49d5ec2000-02-08 19:58:47 +000045 for (c = codetab; c->c_name; c++) {
46 if (!strcasecmp(name, c->c_name)) {
Denis Vlasenko13858992006-10-08 12:49:22 +000047 return c->c_val;
Erik Andersene49d5ec2000-02-08 19:58:47 +000048 }
Eric Andersen3843e961999-11-25 07:30:46 +000049 }
Eric Andersen3843e961999-11-25 07:30:46 +000050
Denis Vlasenko13858992006-10-08 12:49:22 +000051 return -1;
Eric Andersen3843e961999-11-25 07:30:46 +000052}
53
Eric Andersenc7bda1c2004-03-15 08:29:22 +000054/* Decode a symbolic name to a numeric value
Eric Andersen3843e961999-11-25 07:30:46 +000055 * this function is based on code
56 * Copyright (c) 1983, 1993
57 * The Regents of the University of California. All rights reserved.
Eric Andersen4e573f42000-11-14 23:29:24 +000058 *
59 * Original copyright notice is retained at the end of this file.
Eric Andersen3843e961999-11-25 07:30:46 +000060 */
Erik Andersene49d5ec2000-02-08 19:58:47 +000061static int pencode(char *s)
Eric Andersen3843e961999-11-25 07:30:46 +000062{
Erik Andersene49d5ec2000-02-08 19:58:47 +000063 char *save;
64 int lev, fac = LOG_USER;
Eric Andersen3843e961999-11-25 07:30:46 +000065
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000066 for (save = s; *s && *s != '.'; ++s)
67 ;
Erik Andersene49d5ec2000-02-08 19:58:47 +000068 if (*s) {
69 *s = '\0';
70 fac = decode(save, facilitynames);
Matt Kraai31804132000-10-25 16:40:21 +000071 if (fac < 0)
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000072 bb_error_msg_and_die("unknown %s name: %s", "facility", save);
Erik Andersene49d5ec2000-02-08 19:58:47 +000073 *s++ = '.';
74 } else {
75 s = save;
Eric Andersen3843e961999-11-25 07:30:46 +000076 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000077 lev = decode(s, prioritynames);
Matt Kraai31804132000-10-25 16:40:21 +000078 if (lev < 0)
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000079 bb_error_msg_and_die("unknown %s name: %s", "priority", save);
Erik Andersene49d5ec2000-02-08 19:58:47 +000080 return ((lev & LOG_PRIMASK) | (fac & LOG_FACMASK));
Eric Andersen3843e961999-11-25 07:30:46 +000081}
82
83
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000084int logger_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +000085int logger_main(int argc, char **argv)
Eric Andersen3843e961999-11-25 07:30:46 +000086{
Denis Vlasenko4df81352007-01-12 21:01:05 +000087 char *str_p, *str_t;
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000088 int i = 0;
Denis Vlasenko4df81352007-01-12 21:01:05 +000089 char name[80];
Eric Andersen3843e961999-11-25 07:30:46 +000090
Matt Kraai1944f542001-01-02 18:13:58 +000091 /* Fill out the name string early (may be overwritten later) */
Denis Vlasenko3734b942007-07-27 11:20:10 +000092 bb_getpwuid(name, sizeof(name), geteuid());
Denis Vlasenko4df81352007-01-12 21:01:05 +000093 str_t = name;
Eric Andersen3843e961999-11-25 07:30:46 +000094
Erik Andersene49d5ec2000-02-08 19:58:47 +000095 /* Parse any options */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000096 getopt32(argv, "p:st:", &str_p, &str_t);
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000097
98 if (option_mask32 & 0x2) /* -s */
99 i |= LOG_PERROR;
Denis Vlasenko4df81352007-01-12 21:01:05 +0000100 //if (option_mask32 & 0x4) /* -t */
101 openlog(str_t, i, 0);
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +0000102 i = LOG_USER | LOG_NOTICE;
103 if (option_mask32 & 0x1) /* -p */
Denis Vlasenko4df81352007-01-12 21:01:05 +0000104 i = pencode(str_p);
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +0000105
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000106 argc -= optind;
107 argv += optind;
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000108 if (!argc) {
Denis Vlasenko74324c82007-06-04 10:16:52 +0000109#define strbuf bb_common_bufsiz1
Denis Vlasenkoebeaea02007-10-02 09:57:41 +0000110 while (fgets(strbuf, COMMON_BUFSIZE, stdin)) {
Denis Vlasenko74324c82007-06-04 10:16:52 +0000111 if (strbuf[0]
112 && NOT_LONE_CHAR(strbuf, '\n')
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000113 ) {
114 /* Neither "" nor "\n" */
Denis Vlasenko74324c82007-06-04 10:16:52 +0000115 syslog(i, "%s", strbuf);
Eric Andersen20aab262001-07-19 22:28:02 +0000116 }
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000117 }
Eric Andersenbefda6e1999-11-25 08:06:22 +0000118 } else {
Glenn L McGrath907a2402002-11-10 21:33:28 +0000119 char *message = NULL;
Denis Vlasenkoebeaea02007-10-02 09:57:41 +0000120 int len = 0;
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000121 int pos = 0;
122 do {
123 len += strlen(*argv) + 1;
Denis Vlasenkoebeaea02007-10-02 09:57:41 +0000124 message = xrealloc(message, len + 1);
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000125 sprintf(message + pos, " %s", *argv),
126 pos = len;
127 } while (*++argv);
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +0000128 syslog(i, "%s", message + 1); /* skip leading " " */
Eric Andersenbefda6e1999-11-25 08:06:22 +0000129 }
Eric Andersen3843e961999-11-25 07:30:46 +0000130
Eric Andersen20aab262001-07-19 22:28:02 +0000131 closelog();
Matt Kraai31804132000-10-25 16:40:21 +0000132 return EXIT_SUCCESS;
Eric Andersen3843e961999-11-25 07:30:46 +0000133}
Eric Andersen4e573f42000-11-14 23:29:24 +0000134
135
136/*-
137 * Copyright (c) 1983, 1993
138 * The Regents of the University of California. All rights reserved.
139 *
140 * This is the original license statement for the decode and pencode functions.
141 *
142 * Redistribution and use in source and binary forms, with or without
143 * modification, are permitted provided that the following conditions
144 * are met:
145 * 1. Redistributions of source code must retain the above copyright
146 * notice, this list of conditions and the following disclaimer.
147 * 2. Redistributions in binary form must reproduce the above copyright
148 * notice, this list of conditions and the following disclaimer in the
149 * documentation and/or other materials provided with the distribution.
150 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000151 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
152 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
Eric Andersen4e573f42000-11-14 23:29:24 +0000153 *
154 * 4. Neither the name of the University nor the names of its contributors
155 * may be used to endorse or promote products derived from this software
156 * without specific prior written permission.
157 *
158 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
159 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
160 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
161 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
162 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
163 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
164 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
165 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
166 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
167 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
168 * SUCH DAMAGE.
169 */