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 | * |
Erik Andersen | 61677fe | 2000-04-13 01:18:56 +0000 | [diff] [blame] | 5 | * Copyright (C) 1999,2000 by Lineo, inc. |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 6 | * Written by Erik Andersen <andersen@lineo.com>, <andersee@debian.org> |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License as published by |
| 10 | * the Free Software Foundation; either version 2 of the License, or |
| 11 | * (at your option) any later version. |
| 12 | * |
| 13 | * This program is distributed in the hope that it will be useful, |
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 16 | * General Public License for more details. |
| 17 | * |
| 18 | * You should have received a copy of the GNU General Public License |
| 19 | * along with this program; if not, write to the Free Software |
| 20 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
| 21 | * |
| 22 | */ |
| 23 | |
Eric Andersen | 3570a34 | 2000-09-25 21:45:58 +0000 | [diff] [blame] | 24 | #include "busybox.h" |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 25 | #include <stdio.h> |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 26 | #include <unistd.h> |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 27 | #include <sys/types.h> |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 28 | #include <fcntl.h> |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 29 | #include <ctype.h> |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 30 | |
| 31 | #if !defined BB_SYSLOGD |
| 32 | |
| 33 | #define SYSLOG_NAMES |
| 34 | #include <sys/syslog.h> |
| 35 | |
| 36 | #else |
| 37 | /* We have to do this since the header file defines static |
| 38 | * structues. Argh.... bad libc, bad, bad... |
| 39 | */ |
| 40 | #include <sys/syslog.h> |
| 41 | typedef struct _code { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 42 | char *c_name; |
| 43 | int c_val; |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 44 | } CODE; |
| 45 | extern CODE prioritynames[]; |
| 46 | extern CODE facilitynames[]; |
| 47 | #endif |
| 48 | |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 49 | /* Decode a symbolic name to a numeric value |
| 50 | * this function is based on code |
| 51 | * Copyright (c) 1983, 1993 |
| 52 | * The Regents of the University of California. All rights reserved. |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 53 | * |
| 54 | * Original copyright notice is retained at the end of this file. |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 55 | */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 56 | static int decode(char *name, CODE * codetab) |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 57 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 58 | CODE *c; |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 59 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 60 | if (isdigit(*name)) |
| 61 | return (atoi(name)); |
| 62 | for (c = codetab; c->c_name; c++) { |
| 63 | if (!strcasecmp(name, c->c_name)) { |
| 64 | return (c->c_val); |
| 65 | } |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 66 | } |
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 | return (-1); |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | /* Decode a symbolic name to a numeric value |
| 72 | * this function is based on code |
| 73 | * Copyright (c) 1983, 1993 |
| 74 | * The Regents of the University of California. All rights reserved. |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 75 | * |
| 76 | * Original copyright notice is retained at the end of this file. |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 77 | */ |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 78 | static int pencode(char *s) |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 79 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 80 | char *save; |
| 81 | int lev, fac = LOG_USER; |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 82 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 83 | for (save = s; *s && *s != '.'; ++s); |
| 84 | if (*s) { |
| 85 | *s = '\0'; |
| 86 | fac = decode(save, facilitynames); |
Matt Kraai | 3180413 | 2000-10-25 16:40:21 +0000 | [diff] [blame] | 87 | if (fac < 0) |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 88 | error_msg_and_die("unknown facility name: %s\n", save); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 89 | *s++ = '.'; |
| 90 | } else { |
| 91 | s = save; |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 92 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 93 | lev = decode(s, prioritynames); |
Matt Kraai | 3180413 | 2000-10-25 16:40:21 +0000 | [diff] [blame] | 94 | if (lev < 0) |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 95 | error_msg_and_die("unknown priority name: %s\n", save); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 96 | return ((lev & LOG_PRIMASK) | (fac & LOG_FACMASK)); |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 97 | } |
| 98 | |
| 99 | |
| 100 | extern int logger_main(int argc, char **argv) |
| 101 | { |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 102 | int pri = LOG_USER | LOG_NOTICE; |
| 103 | int option = 0; |
| 104 | int fromStdinFlag = FALSE; |
| 105 | int stopLookingAtMeLikeThat = FALSE; |
Eric Andersen | b610615 | 2000-06-19 17:25:40 +0000 | [diff] [blame] | 106 | char *message=NULL, buf[1024], name[128]; |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 107 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 108 | /* Fill out the name string early (may be overwritten later */ |
| 109 | my_getpwuid(name, geteuid()); |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 110 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 111 | /* Parse any options */ |
| 112 | while (--argc > 0 && **(++argv) == '-') { |
| 113 | if (*((*argv) + 1) == '\0') { |
| 114 | fromStdinFlag = TRUE; |
| 115 | } |
| 116 | stopLookingAtMeLikeThat = FALSE; |
| 117 | while (*(++(*argv)) && stopLookingAtMeLikeThat == FALSE) { |
| 118 | switch (**argv) { |
| 119 | case 's': |
| 120 | option |= LOG_PERROR; |
| 121 | break; |
| 122 | case 'p': |
| 123 | if (--argc == 0) { |
| 124 | usage(logger_usage); |
| 125 | } |
| 126 | pri = pencode(*(++argv)); |
| 127 | stopLookingAtMeLikeThat = TRUE; |
| 128 | break; |
| 129 | case 't': |
| 130 | if (--argc == 0) { |
| 131 | usage(logger_usage); |
| 132 | } |
| 133 | strncpy(name, *(++argv), sizeof(name)); |
| 134 | stopLookingAtMeLikeThat = TRUE; |
| 135 | break; |
| 136 | default: |
| 137 | usage(logger_usage); |
| 138 | } |
| 139 | } |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 140 | } |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 141 | |
| 142 | if (fromStdinFlag == TRUE) { |
| 143 | /* read from stdin */ |
Pavel Roskin | df4532b | 2000-07-14 17:24:58 +0000 | [diff] [blame] | 144 | int c; |
| 145 | unsigned int i = 0; |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 146 | |
| 147 | while ((c = getc(stdin)) != EOF && i < sizeof(buf)) { |
| 148 | buf[i++] = c; |
| 149 | } |
| 150 | message = buf; |
Eric Andersen | befda6e | 1999-11-25 08:06:22 +0000 | [diff] [blame] | 151 | } else { |
Matt Kraai | 3180413 | 2000-10-25 16:40:21 +0000 | [diff] [blame] | 152 | if (argc >= 1) |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 153 | message = *argv; |
Matt Kraai | 3180413 | 2000-10-25 16:40:21 +0000 | [diff] [blame] | 154 | else |
Mark Whitley | f57c944 | 2000-12-07 19:56:48 +0000 | [diff] [blame] | 155 | error_msg_and_die("No message\n"); |
Eric Andersen | befda6e | 1999-11-25 08:06:22 +0000 | [diff] [blame] | 156 | } |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 157 | |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 158 | openlog(name, option, (pri | LOG_FACMASK)); |
Matt Kraai | 7b5c16e | 2000-12-07 16:22:04 +0000 | [diff] [blame] | 159 | syslog(pri, "%s", message); |
Erik Andersen | e49d5ec | 2000-02-08 19:58:47 +0000 | [diff] [blame] | 160 | closelog(); |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 161 | |
Matt Kraai | 3180413 | 2000-10-25 16:40:21 +0000 | [diff] [blame] | 162 | return EXIT_SUCCESS; |
Eric Andersen | 3843e96 | 1999-11-25 07:30:46 +0000 | [diff] [blame] | 163 | } |
Eric Andersen | 4e573f4 | 2000-11-14 23:29:24 +0000 | [diff] [blame] | 164 | |
| 165 | |
| 166 | /*- |
| 167 | * Copyright (c) 1983, 1993 |
| 168 | * The Regents of the University of California. All rights reserved. |
| 169 | * |
| 170 | * This is the original license statement for the decode and pencode functions. |
| 171 | * |
| 172 | * Redistribution and use in source and binary forms, with or without |
| 173 | * modification, are permitted provided that the following conditions |
| 174 | * are met: |
| 175 | * 1. Redistributions of source code must retain the above copyright |
| 176 | * notice, this list of conditions and the following disclaimer. |
| 177 | * 2. Redistributions in binary form must reproduce the above copyright |
| 178 | * notice, this list of conditions and the following disclaimer in the |
| 179 | * documentation and/or other materials provided with the distribution. |
| 180 | * |
| 181 | * 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change |
| 182 | * ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change> |
| 183 | * |
| 184 | * 4. Neither the name of the University nor the names of its contributors |
| 185 | * may be used to endorse or promote products derived from this software |
| 186 | * without specific prior written permission. |
| 187 | * |
| 188 | * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND |
| 189 | * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
| 190 | * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE |
| 191 | * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 192 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL |
| 193 | * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS |
| 194 | * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) |
| 195 | * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT |
| 196 | * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY |
| 197 | * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF |
| 198 | * SUCH DAMAGE. |
| 199 | */ |
| 200 | |
| 201 | |
| 202 | |