blob: 6258113563a2b09291cf709c1789f5e4610ce1a0 [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 Vlasenkobd1aeeb2008-06-11 15:43:19 +000010/*
11 * Done in syslogd_and_logger.c:
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000012#include "libbb.h"
Eric Andersen3843e961999-11-25 07:30:46 +000013#define SYSLOG_NAMES
Bernhard Reutner-Fischerf4701962008-01-27 12:50:12 +000014#define SYSLOG_NAMES_CONST
15#include <syslog.h>
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +000016*/
Eric Andersen3843e961999-11-25 07:30:46 +000017
Eric Andersenc7bda1c2004-03-15 08:29:22 +000018/* Decode a symbolic name to a numeric value
Eric Andersen3843e961999-11-25 07:30:46 +000019 * this function is based on code
20 * Copyright (c) 1983, 1993
21 * The Regents of the University of California. All rights reserved.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000022 *
Eric Andersen4e573f42000-11-14 23:29:24 +000023 * Original copyright notice is retained at the end of this file.
Eric Andersen3843e961999-11-25 07:30:46 +000024 */
Denis Vlasenkod2023282007-11-23 23:39:01 +000025static int decode(char *name, const CODE *codetab)
Eric Andersen3843e961999-11-25 07:30:46 +000026{
Denis Vlasenkod2023282007-11-23 23:39:01 +000027 const CODE *c;
Eric Andersen3843e961999-11-25 07:30:46 +000028
Erik Andersene49d5ec2000-02-08 19:58:47 +000029 if (isdigit(*name))
Denis Vlasenko13858992006-10-08 12:49:22 +000030 return atoi(name);
Erik Andersene49d5ec2000-02-08 19:58:47 +000031 for (c = codetab; c->c_name; c++) {
32 if (!strcasecmp(name, c->c_name)) {
Denis Vlasenko13858992006-10-08 12:49:22 +000033 return c->c_val;
Erik Andersene49d5ec2000-02-08 19:58:47 +000034 }
Eric Andersen3843e961999-11-25 07:30:46 +000035 }
Eric Andersen3843e961999-11-25 07:30:46 +000036
Denis Vlasenko13858992006-10-08 12:49:22 +000037 return -1;
Eric Andersen3843e961999-11-25 07:30:46 +000038}
39
Eric Andersenc7bda1c2004-03-15 08:29:22 +000040/* Decode a symbolic name to a numeric value
Eric Andersen3843e961999-11-25 07:30:46 +000041 * this function is based on code
42 * Copyright (c) 1983, 1993
43 * The Regents of the University of California. All rights reserved.
Eric Andersen4e573f42000-11-14 23:29:24 +000044 *
45 * Original copyright notice is retained at the end of this file.
Eric Andersen3843e961999-11-25 07:30:46 +000046 */
Erik Andersene49d5ec2000-02-08 19:58:47 +000047static int pencode(char *s)
Eric Andersen3843e961999-11-25 07:30:46 +000048{
Erik Andersene49d5ec2000-02-08 19:58:47 +000049 char *save;
50 int lev, fac = LOG_USER;
Eric Andersen3843e961999-11-25 07:30:46 +000051
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000052 for (save = s; *s && *s != '.'; ++s)
53 ;
Erik Andersene49d5ec2000-02-08 19:58:47 +000054 if (*s) {
55 *s = '\0';
56 fac = decode(save, facilitynames);
Matt Kraai31804132000-10-25 16:40:21 +000057 if (fac < 0)
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000058 bb_error_msg_and_die("unknown %s name: %s", "facility", save);
Erik Andersene49d5ec2000-02-08 19:58:47 +000059 *s++ = '.';
60 } else {
61 s = save;
Eric Andersen3843e961999-11-25 07:30:46 +000062 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000063 lev = decode(s, prioritynames);
Matt Kraai31804132000-10-25 16:40:21 +000064 if (lev < 0)
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000065 bb_error_msg_and_die("unknown %s name: %s", "priority", save);
Erik Andersene49d5ec2000-02-08 19:58:47 +000066 return ((lev & LOG_PRIMASK) | (fac & LOG_FACMASK));
Eric Andersen3843e961999-11-25 07:30:46 +000067}
68
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +000069#define strbuf bb_common_bufsiz1
Eric Andersen3843e961999-11-25 07:30:46 +000070
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000071int logger_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Rob Landleydfba7412006-03-06 20:47:33 +000072int logger_main(int argc, char **argv)
Eric Andersen3843e961999-11-25 07:30:46 +000073{
Denis Vlasenko4df81352007-01-12 21:01:05 +000074 char *str_p, *str_t;
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000075 int i = 0;
Denis Vlasenko4df81352007-01-12 21:01:05 +000076 char name[80];
Eric Andersen3843e961999-11-25 07:30:46 +000077
Matt Kraai1944f542001-01-02 18:13:58 +000078 /* Fill out the name string early (may be overwritten later) */
Denis Vlasenko3734b942007-07-27 11:20:10 +000079 bb_getpwuid(name, sizeof(name), geteuid());
Denis Vlasenko4df81352007-01-12 21:01:05 +000080 str_t = name;
Eric Andersen3843e961999-11-25 07:30:46 +000081
Erik Andersene49d5ec2000-02-08 19:58:47 +000082 /* Parse any options */
Denis Vlasenkofe7cd642007-08-18 15:32:12 +000083 getopt32(argv, "p:st:", &str_p, &str_t);
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000084
85 if (option_mask32 & 0x2) /* -s */
86 i |= LOG_PERROR;
Denis Vlasenko4df81352007-01-12 21:01:05 +000087 //if (option_mask32 & 0x4) /* -t */
88 openlog(str_t, i, 0);
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000089 i = LOG_USER | LOG_NOTICE;
90 if (option_mask32 & 0x1) /* -p */
Denis Vlasenko4df81352007-01-12 21:01:05 +000091 i = pencode(str_p);
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000092
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +000093 argc -= optind;
94 argv += optind;
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +000095 if (!argc) {
Denis Vlasenkoebeaea02007-10-02 09:57:41 +000096 while (fgets(strbuf, COMMON_BUFSIZE, stdin)) {
Denis Vlasenko74324c82007-06-04 10:16:52 +000097 if (strbuf[0]
98 && NOT_LONE_CHAR(strbuf, '\n')
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +000099 ) {
100 /* Neither "" nor "\n" */
Denis Vlasenko74324c82007-06-04 10:16:52 +0000101 syslog(i, "%s", strbuf);
Eric Andersen20aab262001-07-19 22:28:02 +0000102 }
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000103 }
Eric Andersenbefda6e1999-11-25 08:06:22 +0000104 } else {
Glenn L McGrath907a2402002-11-10 21:33:28 +0000105 char *message = NULL;
Denis Vlasenkoebeaea02007-10-02 09:57:41 +0000106 int len = 0;
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000107 int pos = 0;
108 do {
109 len += strlen(*argv) + 1;
Denis Vlasenkoebeaea02007-10-02 09:57:41 +0000110 message = xrealloc(message, len + 1);
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000111 sprintf(message + pos, " %s", *argv),
112 pos = len;
113 } while (*++argv);
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +0000114 syslog(i, "%s", message + 1); /* skip leading " " */
Eric Andersenbefda6e1999-11-25 08:06:22 +0000115 }
Eric Andersen3843e961999-11-25 07:30:46 +0000116
Eric Andersen20aab262001-07-19 22:28:02 +0000117 closelog();
Matt Kraai31804132000-10-25 16:40:21 +0000118 return EXIT_SUCCESS;
Eric Andersen3843e961999-11-25 07:30:46 +0000119}
Eric Andersen4e573f42000-11-14 23:29:24 +0000120
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +0000121/* Clean up. Needed because we are included from syslogd_and_logger.c */
122#undef strbuf
Eric Andersen4e573f42000-11-14 23:29:24 +0000123
124/*-
125 * Copyright (c) 1983, 1993
126 * The Regents of the University of California. All rights reserved.
127 *
128 * This is the original license statement for the decode and pencode functions.
129 *
130 * Redistribution and use in source and binary forms, with or without
131 * modification, are permitted provided that the following conditions
132 * are met:
133 * 1. Redistributions of source code must retain the above copyright
134 * notice, this list of conditions and the following disclaimer.
135 * 2. Redistributions in binary form must reproduce the above copyright
136 * notice, this list of conditions and the following disclaimer in the
137 * documentation and/or other materials provided with the distribution.
138 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000139 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
140 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
Eric Andersen4e573f42000-11-14 23:29:24 +0000141 *
142 * 4. Neither the name of the University nor the names of its contributors
143 * may be used to endorse or promote products derived from this software
144 * without specific prior written permission.
145 *
146 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
147 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
148 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
149 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
150 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
151 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
152 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
153 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
154 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
155 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
156 * SUCH DAMAGE.
157 */