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
|
|
|
*/
|
|
|
|
|
2008-06-11 21:13:19 +05:30
|
|
|
/*
|
|
|
|
* Done in syslogd_and_logger.c:
|
2007-05-27 00:30:18 +05:30
|
|
|
#include "libbb.h"
|
1999-11-25 13:00:46 +05:30
|
|
|
#define SYSLOG_NAMES
|
2008-01-27 18:20:12 +05:30
|
|
|
#define SYSLOG_NAMES_CONST
|
|
|
|
#include <syslog.h>
|
2008-06-11 21:13:19 +05:30
|
|
|
*/
|
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.
|
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
|
|
|
*/
|
2007-11-24 05:09:01 +05:30
|
|
|
static int decode(char *name, const CODE *codetab)
|
1999-11-25 13:00:46 +05:30
|
|
|
{
|
2007-11-24 05:09:01 +05:30
|
|
|
const CODE *c;
|
1999-11-25 13:00:46 +05:30
|
|
|
|
2000-02-09 01:28:47 +05:30
|
|
|
if (isdigit(*name))
|
2006-10-08 18:19:22 +05:30
|
|
|
return atoi(name);
|
2000-02-09 01:28:47 +05:30
|
|
|
for (c = codetab; c->c_name; c++) {
|
|
|
|
if (!strcasecmp(name, c->c_name)) {
|
2006-10-08 18:19:22 +05:30
|
|
|
return c->c_val;
|
2000-02-09 01:28:47 +05:30
|
|
|
}
|
1999-11-25 13:00:46 +05:30
|
|
|
}
|
|
|
|
|
2006-10-08 18:19:22 +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;
|
|
|
|
|
2007-01-09 23:07:32 +05:30
|
|
|
for (save = s; *s && *s != '.'; ++s)
|
|
|
|
;
|
2000-02-09 01:28:47 +05:30
|
|
|
if (*s) {
|
|
|
|
*s = '\0';
|
|
|
|
fac = decode(save, facilitynames);
|
2000-10-25 22:10:21 +05:30
|
|
|
if (fac < 0)
|
2007-01-09 23:07:32 +05:30
|
|
|
bb_error_msg_and_die("unknown %s name: %s", "facility", 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)
|
2007-01-09 23:07:32 +05:30
|
|
|
bb_error_msg_and_die("unknown %s name: %s", "priority", save);
|
2000-02-09 01:28:47 +05:30
|
|
|
return ((lev & LOG_PRIMASK) | (fac & LOG_FACMASK));
|
1999-11-25 13:00:46 +05:30
|
|
|
}
|
|
|
|
|
2008-06-11 21:13:19 +05:30
|
|
|
#define strbuf bb_common_bufsiz1
|
1999-11-25 13:00:46 +05:30
|
|
|
|
2007-10-11 15:35:36 +05:30
|
|
|
int logger_main(int argc, char **argv) MAIN_EXTERNALLY_VISIBLE;
|
2006-03-07 02:17:33 +05:30
|
|
|
int logger_main(int argc, char **argv)
|
1999-11-25 13:00:46 +05:30
|
|
|
{
|
2007-01-13 02:31:05 +05:30
|
|
|
char *str_p, *str_t;
|
2008-12-03 04:26:59 +05:30
|
|
|
int opt;
|
2007-01-09 23:07:32 +05:30
|
|
|
int i = 0;
|
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) */
|
2008-12-03 04:26:59 +05:30
|
|
|
str_t = uid2uname_utoa(geteuid());
|
2000-02-09 01:28:47 +05:30
|
|
|
|
|
|
|
/* Parse any options */
|
2008-12-03 04:26:59 +05:30
|
|
|
opt = getopt32(argv, "p:st:", &str_p, &str_t);
|
2007-01-09 23:07:32 +05:30
|
|
|
|
2008-12-03 04:26:59 +05:30
|
|
|
if (opt & 0x2) /* -s */
|
2007-01-09 23:07:32 +05:30
|
|
|
i |= LOG_PERROR;
|
2008-12-03 04:26:59 +05:30
|
|
|
//if (opt & 0x4) /* -t */
|
2007-01-13 02:31:05 +05:30
|
|
|
openlog(str_t, i, 0);
|
2007-01-09 23:07:32 +05:30
|
|
|
i = LOG_USER | LOG_NOTICE;
|
2008-12-03 04:26:59 +05:30
|
|
|
if (opt & 0x1) /* -p */
|
2007-01-13 02:31:05 +05:30
|
|
|
i = pencode(str_p);
|
2007-01-09 23:07:32 +05:30
|
|
|
|
2007-01-05 02:52:11 +05:30
|
|
|
argc -= optind;
|
|
|
|
argv += optind;
|
|
|
|
if (!argc) {
|
2007-10-02 15:27:41 +05:30
|
|
|
while (fgets(strbuf, COMMON_BUFSIZE, stdin)) {
|
2007-06-04 15:46:52 +05:30
|
|
|
if (strbuf[0]
|
|
|
|
&& NOT_LONE_CHAR(strbuf, '\n')
|
2007-01-05 02:52:11 +05:30
|
|
|
) {
|
|
|
|
/* Neither "" nor "\n" */
|
2007-06-04 15:46:52 +05:30
|
|
|
syslog(i, "%s", strbuf);
|
2001-07-20 03:58:02 +05:30
|
|
|
}
|
2007-01-05 02:52:11 +05:30
|
|
|
}
|
1999-11-25 13:00:46 +05:30
|
|
|
} else {
|
2002-11-11 03:03:28 +05:30
|
|
|
char *message = NULL;
|
2007-10-02 15:27:41 +05:30
|
|
|
int len = 0;
|
2007-01-05 02:52:11 +05:30
|
|
|
int pos = 0;
|
|
|
|
do {
|
|
|
|
len += strlen(*argv) + 1;
|
2007-10-02 15:27:41 +05:30
|
|
|
message = xrealloc(message, len + 1);
|
2007-01-05 02:52:11 +05:30
|
|
|
sprintf(message + pos, " %s", *argv),
|
|
|
|
pos = len;
|
|
|
|
} while (*++argv);
|
2007-01-09 23:07:32 +05:30
|
|
|
syslog(i, "%s", message + 1); /* skip leading " " */
|
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
|
|
|
|
2008-06-11 21:13:19 +05:30
|
|
|
/* Clean up. Needed because we are included from syslogd_and_logger.c */
|
|
|
|
#undef strbuf
|
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.
|
|
|
|
*/
|