Issue 17 - patch by tilman2: Always pass a format string to syslog()
[umurmur.git] / src / log.c
1 /* Copyright (C) 2009-2010, Martin Johansson <martin@fatbob.nu>
2    Copyright (C) 2005-2010, Thorvald Natvig <thorvald@natvig.com>
3
4    All rights reserved.
5
6    Redistribution and use in source and binary forms, with or without
7    modification, are permitted provided that the following conditions
8    are met:
9
10    - Redistributions of source code must retain the above copyright notice,
11      this list of conditions and the following disclaimer.
12    - Redistributions in binary form must reproduce the above copyright notice,
13      this list of conditions and the following disclaimer in the documentation
14      and/or other materials provided with the distribution.
15    - Neither the name of the Developers nor the names of its contributors may
16      be used to endorse or promote products derived from this software without
17      specific prior written permission.
18
19    THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20    ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21    LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
22    A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
23    CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
24    EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
25    PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
26    PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
27    LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
28    NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
29    SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
30 */
31
32 #include <stdarg.h>
33 #include <stdio.h>
34 #include <stdlib.h>
35 #include <syslog.h>
36 #include <string.h>
37
38 #include "log.h"
39
40 #define STRSIZE 254
41
42 static bool_t termprint;
43
44 void Log_init(bool_t terminal)
45 {
46         termprint = terminal;
47         if (!termprint)
48                 openlog("uMurmurd", LOG_PID, LOG_DAEMON);
49 }
50
51 void Log_free()
52 {
53         if (!termprint)
54                 closelog();
55 }
56                 
57
58 void logthis(const char *logstring, ...)
59 {
60         va_list argp;
61         char buf[STRSIZE + 1];
62         
63         va_start(argp, logstring);
64         vsnprintf(&buf[0], STRSIZE, logstring, argp);
65         va_end(argp);
66         if (termprint)
67                 fprintf(stderr, "%s\n", buf);
68         else
69                 syslog(LOG_INFO, "%s", buf);
70 }
71
72 void Log_warn(const char *logstring, ...)
73 {
74         va_list argp;
75         char buf[STRSIZE + 1];
76         int offset = 0;
77         
78         va_start(argp, logstring);
79         offset = sprintf(buf, "WARN: ");
80         vsnprintf(&buf[offset], STRSIZE - offset, logstring, argp);
81         va_end(argp);
82         if (termprint)
83                 fprintf(stderr, "%s\n", buf);
84         else
85                 syslog(LOG_WARNING, "%s", buf);
86 }
87
88 void Log_info(const char *logstring, ...)
89 {
90         va_list argp;
91         char buf[STRSIZE + 1];
92         int offset = 0;
93         
94         va_start(argp, logstring);
95         offset = sprintf(buf, "INFO: ");
96         vsnprintf(&buf[offset], STRSIZE - offset, logstring, argp);
97         va_end(argp);
98         if (termprint)
99                 fprintf(stderr, "%s\n", buf);
100         else
101                 syslog(LOG_INFO, "%s", buf);
102 }
103 void Log_info_client(client_t *client, const char *logstring, ...)
104 {
105         va_list argp;
106         char buf[STRSIZE + 1];
107         int offset = 0;
108         
109         va_start(argp, logstring);
110         offset = sprintf(buf, "INFO: ");
111         offset += vsnprintf(&buf[offset], STRSIZE - offset, logstring, argp);
112         va_end(argp);
113         offset += snprintf(&buf[offset], STRSIZE - offset, " - [%d] %s@%s:%d",
114                                            client->sessionId,
115                                            client->username == NULL ? "" : client->username,
116                                            inet_ntoa(client->remote_tcp.sin_addr),
117                                            ntohs(client->remote_tcp.sin_port));
118         if (termprint)
119                 fprintf(stderr, "%s\n", buf);
120         else
121                 syslog(LOG_INFO, "%s", buf);
122         
123 }
124
125 #ifdef DEBUG
126 void Log_debug(const char *logstring, ...)
127 {
128         va_list argp;
129         char buf[STRSIZE + 1];
130         int offset = 0;
131         
132         va_start(argp, logstring);
133         offset = sprintf(buf, "DEBUG: ");
134         vsnprintf(&buf[offset], STRSIZE - offset, logstring, argp);
135         va_end(argp);
136         if (termprint)
137                 fprintf(stderr, "%s\n", buf);
138         else
139                 syslog(LOG_DEBUG, "%s", buf);
140 }
141 #endif
142
143 void Log_fatal(const char *logstring, ...)
144 {
145         va_list argp;
146         char buf[STRSIZE + 1];
147         int offset = 0;
148         va_start(argp, logstring);
149         offset = sprintf(buf, "FATAL: ");
150         vsnprintf(&buf[offset], STRSIZE - offset, logstring, argp);
151         va_end(argp);
152         if (termprint)
153                 fprintf(stderr, "%s\n", buf);
154         else
155                 syslog(LOG_CRIT, "%s", buf);
156         exit(1);
157 }