]>
git.saurik.com Git - apple/network_cmds.git/blob - racoon.tproj/plog.c
d864f1cc54965140614d020f69ad196e6b60ca14
1 /* $KAME: plog.c,v 1.19 2001/09/23 12:40:32 itojun Exp $ */
4 * Copyright (C) 1995, 1996, 1997, and 1998 WIDE Project.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 * 3. Neither the name of the project nor the names of its contributors
16 * may be used to endorse or promote products derived from this software
17 * without specific prior written permission.
19 * THIS SOFTWARE IS PROVIDED BY THE PROJECT AND CONTRIBUTORS ``AS IS'' AND
20 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 * ARE DISCLAIMED. IN NO EVENT SHALL THE PROJECT OR CONTRIBUTORS BE LIABLE
23 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32 #include <sys/types.h>
33 #include <sys/param.h>
44 #if TIME_WITH_SYS_TIME
45 # include <sys/time.h>
49 # include <sys/time.h>
65 u_int32_t loglevel
= LLV_BASE
;
67 static struct log
*logp
= NULL
;
68 static char *logfile
= NULL
;
70 static char *plog_common
__P((int, const char *, const char *));
72 static struct plogtags
{
76 { "(not defined)", 0, },
77 { "INFO", LOG_INFO
, },
78 { "NOTIFY", LOG_INFO
, },
79 { "WARNING", LOG_INFO
, },
80 { "ERROR", LOG_INFO
, },
81 { "DEBUG", LOG_DEBUG
, },
82 { "DEBUG2", LOG_DEBUG
, },
86 plog_common(pri
, fmt
, func
)
88 const char *fmt
, *func
;
90 static char buf
[800]; /* XXX shoule be allocated every time ? */
97 if (logfile
|| f_foreground
) {
103 len
= strftime(p
, reslen
, "%Y-%m-%d %T: ", tm
);
108 if (pri
< ARRAYLEN(ptab
)) {
109 len
= snprintf(p
, reslen
, "%s: ", ptab
[pri
].name
);
110 if (len
>= 0 && len
< reslen
) {
117 snprintf(p
, reslen
, "%s: %s", func
, fmt
);
123 plog(int pri
, const char *func
, struct sockaddr
*sa
, const char *fmt
, ...)
128 plogv(pri
, func
, sa
, fmt
, ap
);
133 plogv(int pri
, const char *func
, struct sockaddr
*sa
,
134 const char *fmt
, va_list ap
)
141 newfmt
= plog_common(pri
, fmt
, func
);
147 log_vaprint(logp
, newfmt
, ap
);
149 if (pri
< ARRAYLEN(ptab
))
150 vsyslog(ptab
[pri
].priority
, newfmt
, ap
);
152 vsyslog(LOG_ALERT
, newfmt
, ap
);
157 plogdump(pri
, data
, len
)
170 * 2 words a bytes + 1 space 4 bytes + 1 newline 32 bytes
173 buflen
= (len
* 2) + (len
/ 4) + (len
/ 32) + 3;
174 buf
= racoon_malloc(buflen
);
184 snprintf(&buf
[i
], buflen
- i
, "%02x",
185 ((unsigned char *)data
)[j
] & 0xff);
189 if (buflen
- i
>= 2) {
193 plog(pri
, LOCATION
, NULL
, "%s", buf
);
202 logp
= log_open(250, logfile
);
204 errx(1, "ERROR: failed to open log file %s.", logfile
);
208 openlog(pname
, LOG_NDELAY
, LOG_DAEMON
);
216 racoon_free(logfile
);
217 logfile
= strdup(file
);