]> git.proxmox.com Git - mirror_ovs.git/blame - lib/syslog-libc.c
cirrus: Use FreeBSD 12.2.
[mirror_ovs.git] / lib / syslog-libc.c
CommitLineData
fe089c0d 1/*
2225c0b9 2 * Copyright (c) 2015, 2016 Nicira, Inc.
fe089c0d
AA
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at:
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16#include "syslog-libc.h"
17
18#include <config.h>
19
20#include <string.h>
21#include <syslog.h>
22#include <unistd.h>
23
24#include "compiler.h"
3e8a2ad1 25#include "openvswitch/dynamic-string.h"
fe089c0d
AA
26#include "socket-util.h"
27#include "syslog-provider.h"
28#include "util.h"
29
30
31static void syslog_libc_open(struct syslogger *this, int facility);
32static void syslog_libc_log(struct syslogger *this, int pri, const char *msg);
33
34static struct syslog_class syslog_libc_class = {
35 syslog_libc_open,
36 syslog_libc_log,
37};
38
39struct syslog_libc {
40 struct syslogger parent;
41};
42
43
44/* This function creates object that delegate all logging to libc's
45 * syslog implementation. */
46struct syslogger *
47syslog_libc_create(void)
48{
49 struct syslog_libc *this = xmalloc(sizeof *this);
50
51 this->parent.class = &syslog_libc_class;
52 this->parent.prefix = "<%B> %D{%h %e %T} %E %A:";
53
54 return &this->parent;
55}
56
57static void
58syslog_libc_open(struct syslogger *this OVS_UNUSED, int facility)
59{
60 static char *ident;
61
62 /* openlog() is allowed to keep the pointer passed in, without making a
63 * copy. The daemonize code sometimes frees and replaces
64 * 'program_name', so make a private copy just for openlog(). (We keep
65 * a pointer to the private copy to suppress memory leak warnings in
66 * case openlog() does make its own copy.) */
2225c0b9 67 ident = nullable_xstrdup(program_name);
fe089c0d
AA
68
69 openlog(ident, LOG_NDELAY, facility);
70}
71
72static void
73syslog_libc_log(struct syslogger *this OVS_UNUSED, int pri, const char *msg)
74{
75 syslog(pri, "%s", msg);
76}