blob: 0fabd97ca6068efe42303d8bfae474f9c1099560 [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 *
Denys Vlasenko0ef64bd2010-08-16 20:14:46 +02007 * Licensed under GPLv2 or later, see file LICENSE in this source tree.
Eric Andersen3843e961999-11-25 07:30:46 +00008 */
9
Pere Orga5bc8c002011-04-11 03:29:49 +020010//usage:#define logger_trivial_usage
11//usage: "[OPTIONS] [MESSAGE]"
12//usage:#define logger_full_usage "\n\n"
13//usage: "Write MESSAGE (or stdin) to syslog\n"
14//usage: "\nOptions:"
15//usage: "\n -s Log to stderr as well as the system log"
16//usage: "\n -t TAG Log using the specified tag (defaults to user name)"
17//usage: "\n -p PRIO Priority (numeric or facility.level pair)"
18//usage:
19//usage:#define logger_example_usage
20//usage: "$ logger \"hello\"\n"
21
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +000022/*
23 * Done in syslogd_and_logger.c:
Denis Vlasenkob6adbf12007-05-26 19:00:18 +000024#include "libbb.h"
Eric Andersen3843e961999-11-25 07:30:46 +000025#define SYSLOG_NAMES
Bernhard Reutner-Fischerf4701962008-01-27 12:50:12 +000026#define SYSLOG_NAMES_CONST
27#include <syslog.h>
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +000028*/
Eric Andersen3843e961999-11-25 07:30:46 +000029
Eric Andersenc7bda1c2004-03-15 08:29:22 +000030/* Decode a symbolic name to a numeric value
Eric Andersen3843e961999-11-25 07:30:46 +000031 * this function is based on code
32 * Copyright (c) 1983, 1993
33 * The Regents of the University of California. All rights reserved.
Eric Andersenc7bda1c2004-03-15 08:29:22 +000034 *
Eric Andersen4e573f42000-11-14 23:29:24 +000035 * Original copyright notice is retained at the end of this file.
Eric Andersen3843e961999-11-25 07:30:46 +000036 */
Denis Vlasenkod2023282007-11-23 23:39:01 +000037static int decode(char *name, const CODE *codetab)
Eric Andersen3843e961999-11-25 07:30:46 +000038{
Denis Vlasenkod2023282007-11-23 23:39:01 +000039 const CODE *c;
Eric Andersen3843e961999-11-25 07:30:46 +000040
Erik Andersene49d5ec2000-02-08 19:58:47 +000041 if (isdigit(*name))
Denis Vlasenko13858992006-10-08 12:49:22 +000042 return atoi(name);
Erik Andersene49d5ec2000-02-08 19:58:47 +000043 for (c = codetab; c->c_name; c++) {
44 if (!strcasecmp(name, c->c_name)) {
Denis Vlasenko13858992006-10-08 12:49:22 +000045 return c->c_val;
Erik Andersene49d5ec2000-02-08 19:58:47 +000046 }
Eric Andersen3843e961999-11-25 07:30:46 +000047 }
Eric Andersen3843e961999-11-25 07:30:46 +000048
Denis Vlasenko13858992006-10-08 12:49:22 +000049 return -1;
Eric Andersen3843e961999-11-25 07:30:46 +000050}
51
Eric Andersenc7bda1c2004-03-15 08:29:22 +000052/* Decode a symbolic name to a numeric value
Eric Andersen3843e961999-11-25 07:30:46 +000053 * 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 pencode(char *s)
Eric Andersen3843e961999-11-25 07:30:46 +000060{
Erik Andersene49d5ec2000-02-08 19:58:47 +000061 char *save;
62 int lev, fac = LOG_USER;
Eric Andersen3843e961999-11-25 07:30:46 +000063
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000064 for (save = s; *s && *s != '.'; ++s)
65 ;
Erik Andersene49d5ec2000-02-08 19:58:47 +000066 if (*s) {
67 *s = '\0';
68 fac = decode(save, facilitynames);
Matt Kraai31804132000-10-25 16:40:21 +000069 if (fac < 0)
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000070 bb_error_msg_and_die("unknown %s name: %s", "facility", save);
Erik Andersene49d5ec2000-02-08 19:58:47 +000071 *s++ = '.';
72 } else {
73 s = save;
Eric Andersen3843e961999-11-25 07:30:46 +000074 }
Erik Andersene49d5ec2000-02-08 19:58:47 +000075 lev = decode(s, prioritynames);
Matt Kraai31804132000-10-25 16:40:21 +000076 if (lev < 0)
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000077 bb_error_msg_and_die("unknown %s name: %s", "priority", save);
Erik Andersene49d5ec2000-02-08 19:58:47 +000078 return ((lev & LOG_PRIMASK) | (fac & LOG_FACMASK));
Eric Andersen3843e961999-11-25 07:30:46 +000079}
80
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +000081#define strbuf bb_common_bufsiz1
Eric Andersen3843e961999-11-25 07:30:46 +000082
Denis Vlasenko9b49a5e2007-10-11 10:05:36 +000083int logger_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +010084int logger_main(int argc UNUSED_PARAM, char **argv)
Eric Andersen3843e961999-11-25 07:30:46 +000085{
Denis Vlasenko4df81352007-01-12 21:01:05 +000086 char *str_p, *str_t;
Denis Vlasenko0c68a872008-12-02 22:56:59 +000087 int opt;
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000088 int i = 0;
Eric Andersen3843e961999-11-25 07:30:46 +000089
Matt Kraai1944f542001-01-02 18:13:58 +000090 /* Fill out the name string early (may be overwritten later) */
Denis Vlasenko0c68a872008-12-02 22:56:59 +000091 str_t = uid2uname_utoa(geteuid());
Eric Andersen3843e961999-11-25 07:30:46 +000092
Erik Andersene49d5ec2000-02-08 19:58:47 +000093 /* Parse any options */
Denis Vlasenko0c68a872008-12-02 22:56:59 +000094 opt = getopt32(argv, "p:st:", &str_p, &str_t);
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000095
Denis Vlasenko0c68a872008-12-02 22:56:59 +000096 if (opt & 0x2) /* -s */
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +000097 i |= LOG_PERROR;
Denis Vlasenko0c68a872008-12-02 22:56:59 +000098 //if (opt & 0x4) /* -t */
Denis Vlasenko4df81352007-01-12 21:01:05 +000099 openlog(str_t, i, 0);
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +0000100 i = LOG_USER | LOG_NOTICE;
Denis Vlasenko0c68a872008-12-02 22:56:59 +0000101 if (opt & 0x1) /* -p */
Denis Vlasenko4df81352007-01-12 21:01:05 +0000102 i = pencode(str_p);
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +0000103
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000104 argv += optind;
Denys Vlasenko2ec91ae2010-01-04 14:15:38 +0100105 if (!argv[0]) {
Denis Vlasenkoebeaea02007-10-02 09:57:41 +0000106 while (fgets(strbuf, COMMON_BUFSIZE, stdin)) {
Denis Vlasenko74324c82007-06-04 10:16:52 +0000107 if (strbuf[0]
108 && NOT_LONE_CHAR(strbuf, '\n')
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000109 ) {
110 /* Neither "" nor "\n" */
Denis Vlasenko74324c82007-06-04 10:16:52 +0000111 syslog(i, "%s", strbuf);
Eric Andersen20aab262001-07-19 22:28:02 +0000112 }
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000113 }
Eric Andersenbefda6e1999-11-25 08:06:22 +0000114 } else {
Glenn L McGrath907a2402002-11-10 21:33:28 +0000115 char *message = NULL;
Denis Vlasenkoebeaea02007-10-02 09:57:41 +0000116 int len = 0;
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000117 int pos = 0;
118 do {
119 len += strlen(*argv) + 1;
Denis Vlasenkoebeaea02007-10-02 09:57:41 +0000120 message = xrealloc(message, len + 1);
Denis Vlasenkoa0e2a0a2007-01-04 21:22:11 +0000121 sprintf(message + pos, " %s", *argv),
122 pos = len;
123 } while (*++argv);
Bernhard Reutner-Fischer0f486632007-01-09 17:37:32 +0000124 syslog(i, "%s", message + 1); /* skip leading " " */
Eric Andersenbefda6e1999-11-25 08:06:22 +0000125 }
Eric Andersen3843e961999-11-25 07:30:46 +0000126
Eric Andersen20aab262001-07-19 22:28:02 +0000127 closelog();
Matt Kraai31804132000-10-25 16:40:21 +0000128 return EXIT_SUCCESS;
Eric Andersen3843e961999-11-25 07:30:46 +0000129}
Eric Andersen4e573f42000-11-14 23:29:24 +0000130
Denis Vlasenkobd1aeeb2008-06-11 15:43:19 +0000131/* Clean up. Needed because we are included from syslogd_and_logger.c */
132#undef strbuf
Eric Andersen4e573f42000-11-14 23:29:24 +0000133
134/*-
135 * Copyright (c) 1983, 1993
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200136 * The Regents of the University of California. All rights reserved.
Eric Andersen4e573f42000-11-14 23:29:24 +0000137 *
138 * This is the original license statement for the decode and pencode functions.
139 *
140 * Redistribution and use in source and binary forms, with or without
141 * modification, are permitted provided that the following conditions
142 * are met:
143 * 1. Redistributions of source code must retain the above copyright
144 * notice, this list of conditions and the following disclaimer.
145 * 2. Redistributions in binary form must reproduce the above copyright
146 * notice, this list of conditions and the following disclaimer in the
147 * documentation and/or other materials provided with the distribution.
148 *
Denys Vlasenkoe4dcba12010-10-28 18:57:19 +0200149 * 3. BSD Advertising Clause omitted per the July 22, 1999 licensing change
150 * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change
Eric Andersen4e573f42000-11-14 23:29:24 +0000151 *
152 * 4. Neither the name of the University nor the names of its contributors
153 * may be used to endorse or promote products derived from this software
154 * without specific prior written permission.
155 *
156 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
157 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
158 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
159 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
160 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
161 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
162 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
163 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
164 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
165 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
166 * SUCH DAMAGE.
167 */