aboutsummaryrefslogtreecommitdiff
path: root/src/logger.c
blob: fe8de2f351dc44a53b4d1bb91e13c4727b2041c8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
/* This file is part of Ping903.
   Copyright (C) 2020 Sergey Poznyakoff

   Ping903 is free software; you can redistribute it and/or modify
   it under the terms of the GNU General Public License as published by
   the Free Software Foundation; either version 3, or (at your option)
   any later version.

   Ping903 is distributed in the hope that it will be useful,
   but WITHOUT ANY WARRANTY; without even the implied warranty of
   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   GNU General Public License for more details.

   You should have received a copy of the GNU General Public License
   along with Ping903.  If not, see <http://www.gnu.org/licenses/>. */
#include <config.h>
#include <stdio.h>
#include <string.h>
#include <syslog.h>
#include "ping903.h"

char *progname;

static int facility = LOG_DAEMON;

static void
vlog_syslog(int prio, char const *fmt, va_list ap)
{
	vsyslog(prio, fmt, ap);
}

static void
vlog_stderr(int prio, char const *fmt, va_list ap)
{
	fprintf(stderr, "%s: ", progname);
	vfprintf(stderr, fmt, ap);
	fputc('\n', stderr);
}

static void (*vlog)(int prio, char const *fmt, va_list ap) = vlog_stderr;

void
vlogger(int prio, char const *fmt, va_list ap)
{
	vlog(prio, fmt, ap);
}

void
fatal(char const *fmt, ...)
{
	va_list ap;
	va_start(ap, fmt);
	vlog(LOG_CRIT, fmt, ap);
	va_end(ap);
}

void
error(char const *fmt, ...)
{
	va_list ap;
	va_start(ap, fmt);
	vlog(LOG_ERR, fmt, ap);
	va_end(ap);
}

void
info(char const *fmt, ...)
{
	va_list ap;
	va_start(ap, fmt);
	vlog(LOG_INFO, fmt, ap);
	va_end(ap);
}

void
syslog_enable(void)
{
	openlog(progname, LOG_PID, facility);
	vlog = vlog_syslog;
}

static struct facility {
	char const *s;
	int n;
} facilities[] = {
	{ "auth", LOG_AUTH },
	{ "authpriv", LOG_AUTHPRIV },
	{ "cron", LOG_CRON },
	{ "daemon", LOG_DAEMON },
	{ "ftp", LOG_FTP },
	{ "kern", LOG_KERN },
	{ "lpr", LOG_LPR },
	{ "mail", LOG_MAIL },
	{ "news", LOG_NEWS },
#ifdef LOG_AUTH
	{ "security", LOG_AUTH },
#endif
	{ "syslog", LOG_SYSLOG },
	{ "user", LOG_USER },
	{ "uucp", LOG_UUCP },
	{ "local0", LOG_LOCAL0 },
	{ "local1", LOG_LOCAL1 },
	{ "local2", LOG_LOCAL2 },
	{ "local3", LOG_LOCAL3 },
	{ "local4", LOG_LOCAL4 },
	{ "local5", LOG_LOCAL5 },
	{ "local6", LOG_LOCAL6 },
	{ "local7", LOG_LOCAL7 },
	{ NULL, -1 }
};
	  
int
set_log_facility(char const *arg)
{
	struct facility *f;
	for (f = facilities; f->s; f++)
		if (strcmp(f->s, arg) == 0)
			break;
	if (f->n == -1)
		return -1;
	facility = f->n;
	return 0;
}

void
set_progname(char const *arg)
{
	char *p = strrchr(arg, '/');
	if (p)
		p++;
	else
		p = (char*) arg;
	progname = p;
}

Return to:

Send suggestions and report system problems to the System administrator.