]>
git.saurik.com Git - apple/ipsec.git/blob - ipsec-tools/racoon/plog.c
1 /* $Id: plog.c,v 1.6.10.1 2005/12/07 10:19:51 vanhu 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
34 #include <sys/types.h>
35 #include <sys/param.h>
46 #if TIME_WITH_SYS_TIME
47 # include <sys/time.h>
51 # include <sys/time.h>
67 # define VA_COPY(dst,src) memcpy(&(dst), (src), sizeof(va_list))
73 u_int32_t loglevel
= LLV_BASE
;
76 int print_location
= 0;
78 static struct log
*logp
= NULL
;
79 static char *logfile
= NULL
;
81 static char *plog_common
__P((int, const char *, const char *));
83 static struct plogtags
{
87 { "(not defined)", 0, },
88 { "INFO", LOG_INFO
, },
89 { "NOTIFY", LOG_INFO
, },
90 { "WARNING", LOG_INFO
, },
91 { "ERROR", LOG_INFO
, },
92 { "ERROR", LOG_ERR
, },
93 { "DEBUG", LOG_DEBUG
, },
94 { "DEBUG2", LOG_DEBUG
, },
98 plog_common(pri
, fmt
, func
)
100 const char *fmt
, *func
;
102 static char buf
[800]; /* XXX shoule be allocated every time ? */
107 reslen
= sizeof(buf
);
109 if (logfile
|| f_foreground
) {
115 len
= strftime(p
, reslen
, "%Y-%m-%d %T: ", tm
);
120 if (pri
< ARRAYLEN(ptab
)) {
122 len
= snprintf(p
, reslen
, "[%d] %s: ", getpid(), ptab
[pri
].name
);
124 len
= snprintf(p
, reslen
, "%s: ", ptab
[pri
].name
);
125 if (len
>= 0 && len
< reslen
) {
133 snprintf(p
, reslen
, "%s: %s", func
, fmt
);
135 snprintf(p
, reslen
, "%s", fmt
);
137 while ((p
= strstr(buf
,"%z")) != NULL
)
145 plog(int pri
, const char *func
, struct sockaddr
*sa
, const char *fmt
, ...)
150 plogv(pri
, func
, sa
, fmt
, &ap
);
155 plogv(int pri
, const char *func
, struct sockaddr
*sa
,
156 const char *fmt
, va_list *ap
)
164 newfmt
= plog_common(pri
, fmt
, func
);
169 vprintf(newfmt
, *ap
);
172 log_vaprint(logp
, newfmt
, ap_bak
);
174 if (pri
< ARRAYLEN(ptab
))
175 vsyslog(ptab
[pri
].priority
, newfmt
, ap_bak
);
177 vsyslog(LOG_ALERT
, newfmt
, ap_bak
);
182 plogdump(pri
, data
, len
)
195 * 2 words a bytes + 1 space 4 bytes + 1 newline 32 bytes
198 buflen
= (len
* 2) + (len
/ 4) + (len
/ 32) + 3;
199 buf
= racoon_malloc(buflen
);
209 snprintf(&buf
[i
], buflen
- i
, "%02x",
210 ((unsigned char *)data
)[j
] & 0xff);
214 if (buflen
- i
>= 2) {
218 plog(pri
, LOCATION
, NULL
, "%s", buf
);
227 logp
= log_open(250, logfile
);
229 errx(1, "ERROR: failed to open log file %s.", logfile
);
233 openlog(pname
, LOG_NDELAY
, LOG_DAEMON
);
241 racoon_free(logfile
);
242 logfile
= racoon_strdup(file
);
243 STRDUP_FATAL(logfile
);
251 /* if log paths equal - do nothing */
252 if (logfile
== NULL
&& file
== NULL
)
254 if (logfile
!= NULL
&& file
!= NULL
)
255 if (!strcmp(logfile
, file
))
258 if (logfile
== NULL
) /* no logfile was specified - daemon was used */
259 closelog(); /* close it */
263 racoon_free(logfile
);
273 Returns a printable string from (possibly) binary data ;
274 concatenates all unprintable chars to one space.
275 XXX Maybe the printable chars range is too large...
278 binsanitize(binstr
, n
)
284 for (p
= 0, q
= 0; p
< n
; p
++) {
285 if (isgraph((int)binstr
[p
])) {
286 binstr
[q
++] = binstr
[p
];
288 if (q
&& binstr
[q
- 1] != ' ')