blob: 759981c75e0f64a215b23cfd457f362ce6b90789 [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;
Denis Vlasenko0c68a872008-12-02 22:56:59 +000075 int opt;
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000076 int i = 0;
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 Vlasenko0c68a872008-12-02 22:56:59 +000079 str_t = uid2uname_utoa(geteuid());
Eric Andersen3843e961999-11-25 07:30:46 +000080
Erik Andersene49d5ec2000-02-08 19:58:47 +000081 /* Parse any options */
Denis Vlasenko0c68a872008-12-02 22:56:59 +000082 opt = getopt32(argv, "p:st:", &str_p, &str_t);
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000083
Denis Vlasenko0c68a872008-12-02 22:56:59 +000084 if (opt & 0x2) /* -s */
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000085 i |= LOG_PERROR;
Denis Vlasenko0c68a872008-12-02 22:56:59 +000086 //if (opt & 0x4) /* -t */
Denis Vlasenko4df81352007-01-12 21:01:05 +000087 openlog(str_t, i, 0);
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000088 i = LOG_USER | LOG_NOTICE;
Denis Vlasenko0c68a872008-12-02 22:56:59 +000089 if (opt & 0x1) /* -p */
Denis Vlasenko4df81352007-01-12 21:01:05 +000090 i = pencode(str_p);
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000091
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +000092 argc -= optind;
93 argv += optind;
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +000094 if (!argc) {
Denis Vlasenkoebeaea02007-10-02 09:57:41 +000095 while (fgets(strbuf, COMMON_BUFSIZE, stdin)) {
Denis Vlasenko74324c82007-06-04 10:16:52 +000096 if (strbuf[0]
97 && NOT_LONE_CHAR(strbuf, '\n')
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +000098 ) {
99 /* Neither "" nor "\n" */
Denis Vlasenko74324c82007-06-04 10:16:52 +0000100 syslog(i, "%s", strbuf);
Eric Andersen20aab262001-07-19 22:28:02 +0000101 }
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000102 }
Eric Andersenbefda6e1999-11-25 08:06:22 +0000103 } else {
Glenn L McGrath907a2402002-11-10 21:33:28 +0000104 char *message = NULL;
Denis Vlasenkoebeaea02007-10-02 09:57:41 +0000105 int len = 0;
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000106 int pos = 0;
107 do {
108 len += strlen(*argv) + 1;
Denis Vlasenkoebeaea02007-10-02 09:57:41 +0000109 message = xrealloc(message, len + 1);
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000110 sprintf(message + pos, " %s", *argv),
111 pos = len;
112 } while (*++argv);
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +0000113 syslog(i, "%s", message + 1); /* skip leading " " */
Eric Andersenbefda6e1999-11-25 08:06:22 +0000114 }
Eric Andersen3843e961999-11-25 07:30:46 +0000115
Eric Andersen20aab262001-07-19 22:28:02 +0000116 closelog();
Matt Kraai31804132000-10-25 16:40:21 +0000117 return EXIT_SUCCESS;
Eric Andersen3843e961999-11-25 07:30:46 +0000118}
Eric Andersen4e573f42000-11-14 23:29:24 +0000119
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +0000120/* Clean up. Needed because we are included from syslogd_and_logger.c */
121#undef strbuf
Eric Andersen4e573f42000-11-14 23:29:24 +0000122
123/*-
124 * Copyright (c) 1983, 1993
125 * The Regents of the University of California. All rights reserved.
126 *
127 * This is the original license statement for the decode and pencode functions.
128 *
129 * Redistribution and use in source and binary forms, with or without
130 * modification, are permitted provided that the following conditions
131 * are met:
132 * 1. Redistributions of source code must retain the above copyright
133 * notice, this list of conditions and the following disclaimer.
134 * 2. Redistributions in binary form must reproduce the above copyright
135 * notice, this list of conditions and the following disclaimer in the
136 * documentation and/or other materials provided with the distribution.
137 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000138 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
139 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
Eric Andersen4e573f42000-11-14 23:29:24 +0000140 *
141 * 4. Neither the name of the University nor the names of its contributors
142 * may be used to endorse or promote products derived from this software
143 * without specific prior written permission.
144 *
145 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
146 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
147 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
148 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
149 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
150 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
151 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
152 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
153 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
154 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
155 * SUCH DAMAGE.
156 */