forked from semigodking/redsocks
-
Notifications
You must be signed in to change notification settings - Fork 0
/
log.c
161 lines (141 loc) · 4.77 KB
/
log.c
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
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
/* redsocks - transparent TCP-to-proxy redirector
* Copyright (C) 2007-2011 Leonid Evdokimov <leon@darkk.net.ru>
*
* Licensed under the Apache License, Version 2.0 (the "License"); you may not
* use this file except in compliance with the License. You may obtain a copy
* of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
* WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
* License for the specific language governing permissions and limitations
* under the License.
*/
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include <sys/time.h>
#include <sys/types.h>
#include <event.h>
#include <event2/event.h>
#include "utils.h"
#include "log.h"
typedef void (*log_func)(const char *file, int line, const char *func, int priority, const char *message, const char *appendix);
static void fprint_timestamp(
FILE* fd,
const char *file, int line, const char *func, int priority, const char *message, const char *appendix)
{
struct timeval tv = { };
gettimeofday(&tv, 0);
/* XXX: there is no error-checking, IMHO it's better to lose messages
* then to die and stop service */
if (appendix)
fprintf(fd, "%lu.%6.6lu %s:%u %s(...) %s: %s\n", tv.tv_sec, tv.tv_usec, file, line, func, message, appendix);
else
fprintf(fd, "%lu.%6.6lu %s:%u %s(...) %s\n", tv.tv_sec, tv.tv_usec, file, line, func, message);
}
static void stderr_msg(const char *file, int line, const char *func, int priority, const char *message, const char *appendix)
{
fprint_timestamp(stderr, file, line, func, priority, message, appendix);
}
static FILE *logfile = NULL;
static void logfile_msg(const char *file, int line, const char *func, int priority, const char *message, const char *appendix)
{
fprint_timestamp(logfile, file, line, func, priority, message, appendix);
fflush(logfile);
}
static void syslog_msg(const char *file, int line, const char *func, int priority, const char *message, const char *appendix)
{
if (appendix)
syslog(priority, "%s: %s\n", message, appendix);
else
syslog(priority, "%s\n", message);
}
static log_func log_msg = stderr_msg;
static log_func log_msg_next = NULL;
static int log_mask = LOG_MASK(LOG_NOTICE)|LOG_MASK(LOG_WARNING)|LOG_MASK(LOG_ERR);
int log_preopen(const char *dst, bool log_debug, bool log_info)
{
const char *syslog_prefix = "syslog:";
const char *file_prefix = "file:";
if (log_debug)
log_mask |= LOG_MASK(LOG_DEBUG);
if (log_info)
log_mask |= LOG_MASK(LOG_INFO);
if (strcmp(dst, "stderr") == 0) {
log_msg_next = stderr_msg;
}
else if (strncmp(dst, syslog_prefix, strlen(syslog_prefix)) == 0) {
const char *facility_name = dst + strlen(syslog_prefix);
int facility = -1;
struct {
char *name; int value;
} *ptpl, tpl[] = {
{ "daemon", LOG_DAEMON },
{ "local0", LOG_LOCAL0 },
{ "local1", LOG_LOCAL1 },
{ "local2", LOG_LOCAL2 },
{ "local3", LOG_LOCAL3 },
{ "local4", LOG_LOCAL4 },
{ "local5", LOG_LOCAL5 },
{ "local6", LOG_LOCAL6 },
{ "local7", LOG_LOCAL7 },
};
FOREACH(ptpl, tpl)
if (strcmp(facility_name, ptpl->name) == 0) {
facility = ptpl->value;
break;
}
if (facility == -1) {
log_error(LOG_ERR, "log_preopen(%s, ...): unknown syslog facility", dst);
return -1;
}
openlog("redsocks", LOG_NDELAY | LOG_PID, facility);
log_mask = setlogmask(0);
if (!log_debug)
log_mask &= ~(LOG_MASK(LOG_DEBUG));
if (!log_info)
log_mask &= ~(LOG_MASK(LOG_INFO));
setlogmask(log_mask);
log_msg_next = syslog_msg;
}
else if (strncmp(dst, file_prefix, strlen(file_prefix)) == 0) {
const char *filename = dst + strlen(file_prefix);
if ((logfile = fopen(filename, "a")) == NULL) {
log_error(LOG_ERR, "log_preopen(%s, ...): %s", dst, strerror(errno));
return -1;
}
log_msg_next = logfile_msg;
/* TODO: add log rotation */
}
else {
log_error(LOG_ERR, "log_preopen(%s, ...): unknown destination", dst);
return -1;
}
return 0;
}
void log_open()
{
log_msg = log_msg_next;
log_msg_next = NULL;
}
void _log_vwrite(const char *file, int line, const char *func, int do_errno, int priority, const char *fmt, va_list ap)
{
int saved_errno = errno;
char message[MAX_LOG_LENGTH+1];
if (!(log_mask & LOG_MASK(priority)))
return;
vsnprintf(&message[0], sizeof(message), fmt, ap);
log_msg(file, line, func, priority, &message[0], do_errno ? strerror(saved_errno) : NULL);
}
void _log_write(const char *file, int line, const char *func, int do_errno, int priority, const char *fmt, ...)
{
va_list ap;
va_start(ap, fmt);
_log_vwrite(file, line, func, do_errno, priority, fmt, ap);
va_end(ap);
}
/* vim:set tabstop=4 softtabstop=4 shiftwidth=4: */
/* vim:set foldmethod=marker foldlevel=32 foldmarker={,}: */