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
|
/* gsmd logging functions
*
* (C) 2006-2007 by OpenMoko, Inc.
* Written by Harald Welte <laforge@openmoko.org>
* All Rights Reserved
*
* This program 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 2 of the License, or
* (at your option) any later version.
*
* This program 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 this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
*
*/
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <errno.h>
#include <stdarg.h>
#include <syslog.h>
#include <time.h>
#include <sys/types.h>
#include "gsmd.h"
#include <gsmd/gsmd.h>
static FILE *logfile;
static FILE syslog_dummy;
int loglevel = GSMD_INFO;
static int gsmd2syslog[] = {
[GSMD_DEBUG] = LOG_DEBUG,
[GSMD_INFO] = LOG_INFO,
[GSMD_NOTICE] = LOG_NOTICE,
[GSMD_ERROR] = LOG_ERR,
[GSMD_FATAL] = LOG_CRIT,
};
static inline int gsmd2syslog_level(int level)
{
if (level >= ARRAY_SIZE(gsmd2syslog))
return LOG_ERR;
return gsmd2syslog[level];
}
void __gsmd_log(int level, const char *file, int line, const char *function,
const char *format, ...)
{
char *timestr;
va_list ap;
time_t tm;
FILE *outfd;
if (level < loglevel)
return;
if (logfile == &syslog_dummy) {
va_start(ap, format);
vsyslog(gsmd2syslog_level(level), format, ap);
va_end(ap);
} else {
if (logfile)
outfd = logfile;
else
outfd = stderr;
tm = time(NULL);
timestr = ctime(&tm);
timestr[strlen(timestr)-1] = '\0';
fprintf(outfd, "%s <%1.1d> %s:%d:%s() ", timestr, level, file,
line, function);
va_start(ap, format);
vfprintf(outfd, format, ap);
va_end(ap);
fflush(outfd);
}
}
int gsmdlog_init(const char *path)
{
if (!strcmp(path, "syslog")) {
logfile = &syslog_dummy;
openlog("gsmd", 0, LOG_DAEMON);
} else {
logfile = fopen(path, "a+");
}
if (logfile == NULL)
return -1;
gsmd_log(LOG_INFO, "logfile successfully opened\n");
return 0;
}
|