2000-02-09 01:28:47 +05:30
|
|
|
/* vi: set sw=4 ts=4: */
|
1999-11-25 13:00:46 +05:30
|
|
|
/*
|
|
|
|
* Mini logger implementation for busybox
|
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* Copyright (C) 1999-2004 by Erik Andersen <andersen@codepoet.org>
|
1999-11-25 13:00:46 +05:30
|
|
|
*
|
2006-06-03 02:26:16 +05:30
|
|
|
* Licensed under GPLv2 or later, see file LICENSE in this tarball for details.
|
1999-11-25 13:00:46 +05:30
|
|
|
*/
|
|
|
|
|
2006-06-03 02:26:16 +05:30
|
|
|
#include "busybox.h"
|
1999-11-25 13:00:46 +05:30
|
|
|
#include <stdio.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <ctype.h>
|
2001-01-27 13:54:39 +05:30
|
|
|
#include <string.h>
|
|
|
|
#include <stdlib.h>
|
1999-11-25 13:00:46 +05:30
|
|
|
|
2001-10-24 10:30:29 +05:30
|
|
|
#if !defined CONFIG_SYSLOGD
|
1999-11-25 13:00:46 +05:30
|
|
|
|
|
|
|
#define SYSLOG_NAMES
|
|
|
|
#include <sys/syslog.h>
|
|
|
|
|
|
|
|
#else
|
|
|
|
#include <sys/syslog.h>
|
2001-07-23 04:30:15 +05:30
|
|
|
# ifndef __dietlibc__
|
|
|
|
/* We have to do this since the header file defines static
|
|
|
|
* structures. Argh.... bad libc, bad, bad...
|
|
|
|
*/
|
|
|
|
typedef struct _code {
|
|
|
|
char *c_name;
|
|
|
|
int c_val;
|
|
|
|
} CODE;
|
|
|
|
extern CODE prioritynames[];
|
|
|
|
extern CODE facilitynames[];
|
|
|
|
# endif
|
1999-11-25 13:00:46 +05:30
|
|
|
#endif
|
|
|
|
|
2004-03-15 13:59:22 +05:30
|
|
|
/* Decode a symbolic name to a numeric value
|
1999-11-25 13:00:46 +05:30
|
|
|
* this function is based on code
|
|
|
|
* Copyright (c) 1983, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
2004-03-15 13:59:22 +05:30
|
|
|
*
|
2000-11-15 04:59:24 +05:30
|
|
|
* Original copyright notice is retained at the end of this file.
|
1999-11-25 13:00:46 +05:30
|
|
|
*/
|
2000-02-09 01:28:47 +05:30
|
|
|
static int decode(char *name, CODE * codetab)
|
1999-11-25 13:00:46 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
CODE *c;
|
1999-11-25 13:00:46 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
if (isdigit(*name))
|
|
|
|
return (atoi(name));
|
|
|
|
for (c = codetab; c->c_name; c++) {
|
|
|
|
if (!strcasecmp(name, c->c_name)) {
|
|
|
|
return (c->c_val);
|
|
|
|
}
|
1999-11-25 13:00:46 +05:30
|
|
|
}
|
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
return (-1);
|
1999-11-25 13:00:46 +05:30
|
|
|
}
|
|
|
|
|
2004-03-15 13:59:22 +05:30
|
|
|
/* Decode a symbolic name to a numeric value
|
1999-11-25 13:00:46 +05:30
|
|
|
* this function is based on code
|
|
|
|
* Copyright (c) 1983, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
2000-11-15 04:59:24 +05:30
|
|
|
*
|
|
|
|
* Original copyright notice is retained at the end of this file.
|
1999-11-25 13:00:46 +05:30
|
|
|
*/
|
2000-02-09 01:28:47 +05:30
|
|
|
static int pencode(char *s)
|
1999-11-25 13:00:46 +05:30
|
|
|
{
|
2000-02-09 01:28:47 +05:30
|
|
|
char *save;
|
|
|
|
int lev, fac = LOG_USER;
|
|
|
|
|
|
|
|
for (save = s; *s && *s != '.'; ++s);
|
|
|
|
if (*s) {
|
|
|
|
*s = '\0';
|
|
|
|
fac = decode(save, facilitynames);
|
2000-10-25 22:10:21 +05:30
|
|
|
if (fac < 0)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("unknown facility name: %s", save);
|
2000-02-09 01:28:47 +05:30
|
|
|
*s++ = '.';
|
|
|
|
} else {
|
|
|
|
s = save;
|
|
|
|
}
|
|
|
|
lev = decode(s, prioritynames);
|
2000-10-25 22:10:21 +05:30
|
|
|
if (lev < 0)
|
2003-03-19 14:43:01 +05:30
|
|
|
bb_error_msg_and_die("unknown priority name: %s", save);
|
2000-02-09 01:28:47 +05:30
|
|
|
return ((lev & LOG_PRIMASK) | (fac & LOG_FACMASK));
|
1999-11-25 13:00:46 +05:30
|
|
|
}
|
|
|
|
|
|
|
|
|
2006-03-07 02:17:33 +05:30
|
|
|
int logger_main(int argc, char **argv)
|
1999-11-25 13:00:46 +05:30
|
|
|
{
|
2006-09-22 14:14:58 +05:30
|
|
|
unsigned long opt;
|
|
|
|
char *opt_p, *opt_t;
|
2000-02-09 01:28:47 +05:30
|
|
|
int pri = LOG_USER | LOG_NOTICE;
|
|
|
|
int option = 0;
|
2006-09-22 14:14:58 +05:30
|
|
|
int c, i;
|
2002-11-11 03:03:28 +05:30
|
|
|
char buf[1024], name[128];
|
2000-02-09 01:28:47 +05:30
|
|
|
|
2001-01-02 23:43:58 +05:30
|
|
|
/* Fill out the name string early (may be overwritten later) */
|
2005-09-21 02:36:17 +05:30
|
|
|
bb_getpwuid(name, geteuid(), sizeof(name));
|
2000-02-09 01:28:47 +05:30
|
|
|
|
|
|
|
/* Parse any options */
|
2006-09-22 14:14:58 +05:30
|
|
|
opt = bb_getopt_ulflags(argc, argv, "p:st:", &opt_p, &opt_t);
|
|
|
|
if (opt & 0x1) pri = pencode(opt_p); // -p
|
|
|
|
if (opt & 0x2) option |= LOG_PERROR; // -s
|
|
|
|
if (opt & 0x4) safe_strncpy(name, opt_t, sizeof(name)); // -t
|
1999-11-25 13:00:46 +05:30
|
|
|
|
2005-04-06 16:26:57 +05:30
|
|
|
openlog(name, option, 0);
|
2001-01-02 23:43:58 +05:30
|
|
|
if (optind == argc) {
|
2001-07-20 03:58:02 +05:30
|
|
|
do {
|
|
|
|
/* read from stdin */
|
|
|
|
i = 0;
|
2004-03-15 13:59:22 +05:30
|
|
|
while ((c = getc(stdin)) != EOF && c != '\n' &&
|
2001-07-20 03:58:02 +05:30
|
|
|
i < (sizeof(buf)-1)) {
|
|
|
|
buf[i++] = c;
|
|
|
|
}
|
|
|
|
if (i > 0) {
|
|
|
|
buf[i++] = '\0';
|
|
|
|
syslog(pri, "%s", buf);
|
|
|
|
}
|
|
|
|
} while (c != EOF);
|
1999-11-25 13:00:46 +05:30
|
|
|
} else {
|
2002-11-11 03:03:28 +05:30
|
|
|
char *message = NULL;
|
|
|
|
int len = argc - optind; /* for the space between the args
|
|
|
|
and '\0' */
|
|
|
|
opt = len;
|
|
|
|
argv += optind;
|
|
|
|
for (i = 0; i < opt; i++) {
|
|
|
|
len += strlen(*argv);
|
2001-01-02 23:43:58 +05:30
|
|
|
message = xrealloc(message, len);
|
2002-11-11 03:03:28 +05:30
|
|
|
if(!i)
|
2006-09-09 17:54:19 +05:30
|
|
|
message[0] = '\0';
|
2005-04-06 16:26:57 +05:30
|
|
|
else
|
|
|
|
strcat(message, " ");
|
2002-11-11 03:03:28 +05:30
|
|
|
strcat(message, *argv);
|
|
|
|
argv++;
|
2000-12-09 01:05:51 +05:30
|
|
|
}
|
2001-07-20 03:58:02 +05:30
|
|
|
syslog(pri, "%s", message);
|
1999-11-25 13:00:46 +05:30
|
|
|
}
|
|
|
|
|
2001-07-20 03:58:02 +05:30
|
|
|
closelog();
|
2000-10-25 22:10:21 +05:30
|
|
|
return EXIT_SUCCESS;
|
1999-11-25 13:00:46 +05:30
|
|
|
}
|
2000-11-15 04:59:24 +05:30
|
|
|
|
|
|
|
|
|
|
|
/*-
|
|
|
|
* Copyright (c) 1983, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This is the original license statement for the decode and pencode functions.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
2004-03-15 13:59:22 +05:30
|
|
|
* 3. <BSD Advertising Clause omitted per the July 22, 1999 licensing change
|
|
|
|
* ftp://ftp.cs.berkeley.edu/pub/4bsd/README.Impt.License.Change>
|
2000-11-15 04:59:24 +05:30
|
|
|
*
|
|
|
|
* 4. Neither the name of the University nor the names of its contributors
|
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
|