blob: 971a6beaec4bc449ecf908da6cca6188ba6cdcff [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 Vlasenko06af2162007-02-03 17:28:39 +000084int logger_main(int argc, char **argv);
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) */
Bernhard Reutner-Fischerd5bd1372005-09-20 21:06:17 +000092 bb_getpwuid(name, geteuid(), sizeof(name));
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 Vlasenko4df81352007-01-12 21:01:05 +000096 getopt32(argc, 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) {
109 while (fgets(bb_common_bufsiz1, BUFSIZ, stdin)) {
110 if (bb_common_bufsiz1[0]
111 && NOT_LONE_CHAR(bb_common_bufsiz1, '\n')
112 ) {
113 /* Neither "" nor "\n" */
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +0000114 syslog(i, "%s", bb_common_bufsiz1);
Eric Andersen20aab262001-07-19 22:28:02 +0000115 }
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000116 }
Eric Andersenbefda6e1999-11-25 08:06:22 +0000117 } else {
Glenn L McGrath907a2402002-11-10 21:33:28 +0000118 char *message = NULL;
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000119 int len = 1; /* for NUL */
120 int pos = 0;
121 do {
122 len += strlen(*argv) + 1;
Matt Kraai1944f542001-01-02 18:13:58 +0000123 message = xrealloc(message, len);
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000124 sprintf(message + pos, " %s", *argv),
125 pos = len;
126 } while (*++argv);
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +0000127 syslog(i, "%s", message + 1); /* skip leading " " */
Eric Andersenbefda6e1999-11-25 08:06:22 +0000128 }
Eric Andersen3843e961999-11-25 07:30:46 +0000129
Eric Andersen20aab262001-07-19 22:28:02 +0000130 closelog();
Matt Kraai31804132000-10-25 16:40:21 +0000131 return EXIT_SUCCESS;
Eric Andersen3843e961999-11-25 07:30:46 +0000132}
Eric Andersen4e573f42000-11-14 23:29:24 +0000133
134
135/*-
136 * Copyright (c) 1983, 1993
137 * The Regents of the University of California. All rights reserved.
138 *
139 * This is the original license statement for the decode and pencode functions.
140 *
141 * Redistribution and use in source and binary forms, with or without
142 * modification, are permitted provided that the following conditions
143 * are met:
144 * 1. Redistributions of source code must retain the above copyright
145 * notice, this list of conditions and the following disclaimer.
146 * 2. Redistributions in binary form must reproduce the above copyright
147 * notice, this list of conditions and the following disclaimer in the
148 * documentation and/or other materials provided with the distribution.
149 *
Eric Andersenc7bda1c2004-03-15 08:29:22 +0000150 * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
151 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
Eric Andersen4e573f42000-11-14 23:29:24 +0000152 *
153 * 4. Neither the name of the University nor the names of its contributors
154 * may be used to endorse or promote products derived from this software
155 * without specific prior written permission.
156 *
157 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
158 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
159 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
160 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
161 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
162 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
163 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
164 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
165 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
166 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
167 * SUCH DAMAGE.
168 */