Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 1 | /* vi: set sw=4 ts=4: */ |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 2 | /* |
| 3 | * Mini logger implementation for busybox |
| 4 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org> |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 6 | * |
Bernhard Reutner-Fischer | e15d757 | 2006-06-02 20:56:16 +0000 | [diff] [blame] | 7 | * Licensed under GPLv2 or later, see file LICENSE in this tarball for details. |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 8 | */ |
| 9 | |
Denis Vlasenko | b6adbf1 | 2007-05-26 19:00:18 +0000 | [diff] [blame] | 10 | #include "libbb.h" |
Bernhard Reutner-Fischer | f470196 | 2008-01-27 12:50:12 +0000 | [diff] [blame] | 11 | #ifndef CONFIG_SYSLOGD |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 12 | #define SYSLOG_NAMES |
Bernhard Reutner-Fischer | f470196 | 2008-01-27 12:50:12 +0000 | [diff] [blame] | 13 | #define SYSLOG_NAMES_CONST |
| 14 | #include <syslog.h> |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 15 | #else |
Bernhard Reutner-Fischer | f470196 | 2008-01-27 12:50:12 +0000 | [diff] [blame] | 16 | /* brokenness alert. Everybody except dietlibc get's this wrong by neither |
| 17 | * providing a typedef nor an extern for facilitynames and prioritynames |
| 18 | * in syslog.h. |
| 19 | */ |
| 20 | # include <syslog.h> |
| 21 | # ifndef __dietlibc__ |
| 22 | /* We have to do this since the header file does neither provide a sane type |
| 23 | * for this structure nor extern definitions. Argh.... bad libc, bad, bad... |
| 24 | */ |
| 25 | typedef struct _code { |
| 26 | char *c_name; /* FIXME: this should be const char *const c_name ! */ |
| 27 | int c_val; |
| 28 | } CODE; |
| 29 | # ifdef __UCLIBC__ |
| 30 | extern const CODE prioritynames[]; |
| 31 | extern const CODE facilitynames[]; |
| 32 | # else |
| 33 | extern CODE prioritynames[]; |
| 34 | extern CODE facilitynames[]; |
Eric Andersen | 8d79ce8 | 2001-07-22 23:00:15 +0000 | [diff] [blame] | 35 | # endif |
Bernhard Reutner-Fischer | f470196 | 2008-01-27 12:50:12 +0000 | [diff] [blame] | 36 | # endif |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 37 | #endif |
| 38 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 39 | /* Decode a symbolic name to a numeric value |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 40 | * this function is based on code |
| 41 | * Copyright (c) 1983, 1993 |
| 42 | * The Regents of the University of California. All rights reserved. |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 43 | * |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 44 | * Original copyright notice is retained at the end of this file. |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 45 | */ |
Denis Vlasenko | d202328 | 2007-11-23 23:39:01 +0000 | [diff] [blame] | 46 | static int decode(char *name, const CODE *codetab) |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 47 | { |
Denis Vlasenko | d202328 | 2007-11-23 23:39:01 +0000 | [diff] [blame] | 48 | const CODE *c; |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 49 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 50 | if (isdigit(*name)) |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 51 | return atoi(name); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 52 | for (c = codetab; c->c_name; c++) { |
| 53 | if (!strcasecmp(name, c->c_name)) { |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 54 | return c->c_val; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 55 | } |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 56 | } |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 57 | |
Denis Vlasenko | 1385899 | 2006-10-08 12:49:22 +0000 | [diff] [blame] | 58 | return -1; |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 59 | } |
| 60 | |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 61 | /* Decode a symbolic name to a numeric value |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 62 | * this function is based on code |
| 63 | * Copyright (c) 1983, 1993 |
| 64 | * The Regents of the University of California. All rights reserved. |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 65 | * |
| 66 | * Original copyright notice is retained at the end of this file. |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 67 | */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 68 | static int pencode(char *s) |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 69 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 70 | char *save; |
| 71 | int lev, fac = LOG_USER; |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 72 | |
Bernhard Reutner-Fischer | 0f48663 | 2007-01-09 17:37:32 +0000 | [diff] [blame] | 73 | for (save = s; *s && *s != '.'; ++s) |
| 74 | ; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 75 | if (*s) { |
| 76 | *s = '\0'; |
| 77 | fac = decode(save, facilitynames); |
Matt Kraai | 3180413 | 2000-10-25 16:40:21 +0000 | [diff] [blame] | 78 | if (fac < 0) |
Bernhard Reutner-Fischer | 0f48663 | 2007-01-09 17:37:32 +0000 | [diff] [blame] | 79 | bb_error_msg_and_die("unknown %s name: %s", "facility", save); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 80 | *s++ = '.'; |
| 81 | } else { |
| 82 | s = save; |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 83 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 84 | lev = decode(s, prioritynames); |
Matt Kraai | 3180413 | 2000-10-25 16:40:21 +0000 | [diff] [blame] | 85 | if (lev < 0) |
Bernhard Reutner-Fischer | 0f48663 | 2007-01-09 17:37:32 +0000 | [diff] [blame] | 86 | bb_error_msg_and_die("unknown %s name: %s", "priority", save); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 87 | return ((lev & LOG_PRIMASK) | (fac & LOG_FACMASK)); |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 88 | } |
| 89 | |
| 90 | |
Denis Vlasenko | 9b49a5e | 2007-10-11 10:05:36 +0000 | [diff] [blame] | 91 | int logger_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE; |
Rob Landley | dfba741 | 2006-03-06 20:47:33 +0000 | [diff] [blame] | 92 | int logger_main(int argc, char **argv) |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 93 | { |
Denis Vlasenko | 4df8135 | 2007-01-12 21:01:05 +0000 | [diff] [blame] | 94 | char *str_p, *str_t; |
Bernhard Reutner-Fischer | 0f48663 | 2007-01-09 17:37:32 +0000 | [diff] [blame] | 95 | int i = 0; |
Denis Vlasenko | 4df8135 | 2007-01-12 21:01:05 +0000 | [diff] [blame] | 96 | char name[80]; |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 97 | |
Matt Kraai | 1944f54 | 2001-01-02 18:13:58 +0000 | [diff] [blame] | 98 | /* Fill out the name string early (may be overwritten later) */ |
Denis Vlasenko | 3734b94 | 2007-07-27 11:20:10 +0000 | [diff] [blame] | 99 | bb_getpwuid(name, sizeof(name), geteuid()); |
Denis Vlasenko | 4df8135 | 2007-01-12 21:01:05 +0000 | [diff] [blame] | 100 | str_t = name; |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 101 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 102 | /* Parse any options */ |
Denis Vlasenko | fe7cd64 | 2007-08-18 15:32:12 +0000 | [diff] [blame] | 103 | getopt32(argv, "p:st:", &str_p, &str_t); |
Bernhard Reutner-Fischer | 0f48663 | 2007-01-09 17:37:32 +0000 | [diff] [blame] | 104 | |
| 105 | if (option_mask32 & 0x2) /* -s */ |
| 106 | i |= LOG_PERROR; |
Denis Vlasenko | 4df8135 | 2007-01-12 21:01:05 +0000 | [diff] [blame] | 107 | //if (option_mask32 & 0x4) /* -t */ |
| 108 | openlog(str_t, i, 0); |
Bernhard Reutner-Fischer | 0f48663 | 2007-01-09 17:37:32 +0000 | [diff] [blame] | 109 | i = LOG_USER | LOG_NOTICE; |
| 110 | if (option_mask32 & 0x1) /* -p */ |
Denis Vlasenko | 4df8135 | 2007-01-12 21:01:05 +0000 | [diff] [blame] | 111 | i = pencode(str_p); |
Bernhard Reutner-Fischer | 0f48663 | 2007-01-09 17:37:32 +0000 | [diff] [blame] | 112 | |
Denis Vlasenko | a0e2a0a | 2007-01-04 21:22:11 +0000 | [diff] [blame] | 113 | argc -= optind; |
| 114 | argv += optind; |
Denis Vlasenko | a0e2a0a | 2007-01-04 21:22:11 +0000 | [diff] [blame] | 115 | if (!argc) { |
Denis Vlasenko | 74324c8 | 2007-06-04 10:16:52 +0000 | [diff] [blame] | 116 | #define strbuf bb_common_bufsiz1 |
Denis Vlasenko | ebeaea0 | 2007-10-02 09:57:41 +0000 | [diff] [blame] | 117 | while (fgets(strbuf, COMMON_BUFSIZE, stdin)) { |
Denis Vlasenko | 74324c8 | 2007-06-04 10:16:52 +0000 | [diff] [blame] | 118 | if (strbuf[0] |
| 119 | && NOT_LONE_CHAR(strbuf, '\n') |
Denis Vlasenko | a0e2a0a | 2007-01-04 21:22:11 +0000 | [diff] [blame] | 120 | ) { |
| 121 | /* Neither "" nor "\n" */ |
Denis Vlasenko | 74324c8 | 2007-06-04 10:16:52 +0000 | [diff] [blame] | 122 | syslog(i, "%s", strbuf); |
Eric Andersen | 20aab26 | 2001-07-19 22:28:02 +0000 | [diff] [blame] | 123 | } |
Denis Vlasenko | a0e2a0a | 2007-01-04 21:22:11 +0000 | [diff] [blame] | 124 | } |
Eric Andersen | befda6e | 1999-11-25 08:06:22 +0000 | [diff] [blame] | 125 | } else { |
Glenn L McGrath | 907a240 | 2002-11-10 21:33:28 +0000 | [diff] [blame] | 126 | char *message = NULL; |
Denis Vlasenko | ebeaea0 | 2007-10-02 09:57:41 +0000 | [diff] [blame] | 127 | int len = 0; |
Denis Vlasenko | a0e2a0a | 2007-01-04 21:22:11 +0000 | [diff] [blame] | 128 | int pos = 0; |
| 129 | do { |
| 130 | len += strlen(*argv) + 1; |
Denis Vlasenko | ebeaea0 | 2007-10-02 09:57:41 +0000 | [diff] [blame] | 131 | message = xrealloc(message, len + 1); |
Denis Vlasenko | a0e2a0a | 2007-01-04 21:22:11 +0000 | [diff] [blame] | 132 | sprintf(message + pos, " %s", *argv), |
| 133 | pos = len; |
| 134 | } while (*++argv); |
Bernhard Reutner-Fischer | 0f48663 | 2007-01-09 17:37:32 +0000 | [diff] [blame] | 135 | syslog(i, "%s", message + 1); /* skip leading " " */ |
Eric Andersen | befda6e | 1999-11-25 08:06:22 +0000 | [diff] [blame] | 136 | } |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 137 | |
Eric Andersen | 20aab26 | 2001-07-19 22:28:02 +0000 | [diff] [blame] | 138 | closelog(); |
Matt Kraai | 3180413 | 2000-10-25 16:40:21 +0000 | [diff] [blame] | 139 | return EXIT_SUCCESS; |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 140 | } |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 141 | |
| 142 | |
| 143 | /*- |
| 144 | * Copyright (c) 1983, 1993 |
| 145 | * The Regents of the University of California. All rights reserved. |
| 146 | * |
| 147 | * This is the original license statement for the decode and pencode functions. |
| 148 | * |
| 149 | * Redistribution and use in source and binary forms, with or without |
| 150 | * modification, are permitted provided that the following conditions |
| 151 | * are met: |
| 152 | * 1. Redistributions of source code must retain the above copyright |
| 153 | * notice, this list of conditions and the following disclaimer. |
| 154 | * 2. Redistributions in binary form must reproduce the above copyright |
| 155 | * notice, this list of conditions and the following disclaimer in the |
| 156 | * documentation and/or other materials provided with the distribution. |
| 157 | * |
Eric Andersen | c7bda1c | 2004-03-15 08:29:22 +0000 | [diff] [blame] | 158 | * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change |
| 159 | * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change> |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 160 | * |
| 161 | * 4. Neither the name of the University nor the names of its contributors |
| 162 | * may be used to endorse or promote products derived from this software |
| 163 | * without specific prior written permission. |
| 164 | * |
| 165 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 166 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 167 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 168 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 169 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 170 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 171 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 172 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 173 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 174 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 175 | * SUCH DAMAGE. |
| 176 | */ |