Line data Source code
1 : #include "burp.h"
2 : #include "alloc.h"
3 : #include "asfd.h"
4 : #include "async.h"
5 : #include "cmd.h"
6 : #include "cntr.h"
7 : #include "iobuf.h"
8 : #include "log.h"
9 : #include "strlist.h"
10 :
11 : const char *prog="unknown";
12 : const char *prog_long="unknown";
13 :
14 : static struct fzp *logfzp=NULL;
15 : // Start with all logging on, so that something is said when initial startup
16 : // goes wrong - for example, reading the conf file.
17 : static int do_syslog=1;
18 : static int do_stdout=1;
19 : static int do_progress_counter=1;
20 : static int force_quiet=0;
21 : static int syslog_opened=0;
22 : static int json=0;
23 :
24 0 : void log_init(char *progname)
25 : {
26 0 : prog_long=progname;
27 0 : if((prog=strrchr(progname, '/'))) prog++;
28 0 : else prog=progname;
29 0 : }
30 :
31 : #ifndef UTEST
32 : static char *gettm(void)
33 : {
34 : time_t t=0;
35 : const struct tm *ctm=NULL;
36 : static char tmbuf[32]="";
37 :
38 : time(&t);
39 : ctm=localtime(&t);
40 : // Windows does not like the %T strftime format option - you get
41 : // complaints under gdb.
42 : strftime(tmbuf, sizeof(tmbuf), "%Y-%m-%d %H:%M:%S", ctm);
43 : return tmbuf;
44 : }
45 : #endif
46 :
47 1097 : void logp(const char *fmt, ...)
48 : {
49 : #ifndef UTEST
50 : int pid;
51 : char buf[512]="";
52 : va_list ap;
53 : va_start(ap, fmt);
54 : vsnprintf(buf, sizeof(buf), fmt, ap);
55 : pid=(int)getpid();
56 : if(logfzp)
57 : fzp_printf(logfzp, "%s: %s[%d] %s", gettm(), prog, pid, buf);
58 : else
59 : {
60 : if(do_syslog)
61 : syslog(LOG_INFO, "%s", buf);
62 : if(do_stdout)
63 : {
64 : if(json)
65 : {
66 : char *cp=NULL;
67 : if((cp=strrchr(buf, '\n'))) *cp='\0';
68 : // To help programs parsing the monitor output,
69 : // log things with simple JSON.
70 : fprintf(stdout, "{ \"logline\": \"%s\" }\n", buf);
71 : }
72 : else
73 : fprintf(stdout, "%s: %s[%d] %s",
74 : gettm(), prog, pid, buf);
75 : }
76 : }
77 : va_end(ap);
78 : #endif
79 1097 : }
80 :
81 0 : void logp_ssl_err(const char *fmt, ...)
82 : {
83 0 : char buf[512]="";
84 : va_list ap;
85 0 : va_start(ap, fmt);
86 : vsnprintf(buf, sizeof(buf), fmt, ap);
87 0 : va_end(ap);
88 : logp("%s", buf);
89 0 : if(logfzp) fzp_ERR_print_errors_fp(logfzp);
90 : else
91 : {
92 0 : if(do_syslog)
93 : {
94 : // FIX THIS: How to send to syslog?
95 : static BIO *bio_err=NULL;
96 0 : if(!bio_err) bio_err=BIO_new_fp(stderr, BIO_NOCLOSE);
97 0 : ERR_print_errors(bio_err);
98 : }
99 0 : if(do_stdout)
100 : {
101 0 : if(!json)
102 : {
103 : static BIO *bio_err=NULL;
104 0 : if(!bio_err) bio_err=BIO_new_fp(stdout,
105 : BIO_NOCLOSE);
106 0 : ERR_print_errors(bio_err);
107 : }
108 : }
109 : }
110 0 : }
111 :
112 : // For the counters.
113 0 : void logc(const char *fmt, ...)
114 : {
115 0 : char buf[512]="";
116 : va_list ap;
117 0 : va_start(ap, fmt);
118 : vsnprintf(buf, sizeof(buf), fmt, ap);
119 0 : if(logfzp)
120 0 : fzp_printf(logfzp, "%s", buf); // for the server side
121 : else
122 : {
123 0 : if(do_progress_counter
124 0 : && do_stdout)
125 0 : fprintf(stdout, "%s", buf);
126 : }
127 0 : va_end(ap);
128 0 : }
129 :
130 80 : void logfmt(const char *fmt, ...)
131 : {
132 : #ifndef UTEST
133 : if(do_stdout)
134 : {
135 : char buf[512]="";
136 : va_list ap;
137 : va_start(ap, fmt);
138 : vsnprintf(buf, sizeof(buf), fmt, ap);
139 : fprintf(stdout, "%s", buf);
140 : }
141 : #endif
142 80 : }
143 :
144 91 : const char *progname(void)
145 : {
146 91 : return prog;
147 : }
148 :
149 16 : int log_fzp_set(const char *path, struct conf **confs)
150 : {
151 16 : fzp_close(&logfzp);
152 16 : if(path)
153 : {
154 : logp("Logging to %s\n", path);
155 8 : if(!(logfzp=fzp_open(path, "ab"))) return -1;
156 : }
157 16 : if(logfzp) fzp_setlinebuf(logfzp);
158 16 : do_syslog=get_int(confs[OPT_SYSLOG]);
159 16 : if(force_quiet)
160 : {
161 0 : do_stdout=0;
162 0 : do_progress_counter=0;
163 : }
164 : else
165 : {
166 16 : do_stdout=get_int(confs[OPT_STDOUT]);
167 16 : do_progress_counter=get_int(confs[OPT_PROGRESS_COUNTER]);
168 : }
169 :
170 16 : if(syslog_opened)
171 : {
172 0 : closelog();
173 0 : syslog_opened=0;
174 : }
175 16 : if(do_syslog)
176 : {
177 0 : openlog(prog, LOG_PID, LOG_USER);
178 0 : syslog_opened++;
179 : }
180 : return 0;
181 : }
182 :
183 0 : void log_force_quiet(void)
184 : {
185 0 : force_quiet=1;
186 0 : }
187 :
188 0 : void log_fzp_set_direct(struct fzp *fzp)
189 : {
190 0 : fzp_close(&logfzp);
191 0 : logfzp=fzp;
192 0 : }
193 :
194 1 : void log_out_of_memory(const char *function)
195 : {
196 : if(function) logp("out of memory in %s()\n", function);
197 : else logp("out of memory in unknown function\n");
198 1 : }
199 :
200 8 : void log_restore_settings(struct conf **cconfs, int srestore)
201 : {
202 : struct strlist *l;
203 : logp("Restore settings:\n");
204 8 : if(get_string(cconfs[OPT_ORIG_CLIENT]))
205 1 : logp("orig_client = '%s'\n",
206 : get_string(cconfs[OPT_ORIG_CLIENT]));
207 8 : if(get_string(cconfs[OPT_BACKUP]))
208 8 : logp("backup = '%s'\n",
209 : get_string(cconfs[OPT_BACKUP]));
210 8 : if(srestore)
211 : {
212 : // This are unknown unless doing a server initiated restore.
213 2 : logp("overwrite = %d\n", get_int(cconfs[OPT_OVERWRITE]));
214 2 : logp("strip = %d\n", get_int(cconfs[OPT_STRIP]));
215 : }
216 8 : if(get_string(cconfs[OPT_RESTOREPREFIX]))
217 0 : logp("restoreprefix = '%s'\n",
218 : get_string(cconfs[OPT_RESTOREPREFIX]));
219 8 : if(get_string(cconfs[OPT_STRIP_FROM_PATH]))
220 0 : logp("stripfrompath = '%s'\n",
221 : get_string(cconfs[OPT_STRIP_FROM_PATH]));
222 8 : if(get_string(cconfs[OPT_REGEX]))
223 0 : logp("regex = '%s'\n", get_string(cconfs[OPT_REGEX]));
224 11 : for(l=get_strlist(cconfs[OPT_INCLUDE]); l; l=l->next)
225 3 : logp("include = '%s'\n", l->path);
226 8 : }
227 :
228 0 : int logm(struct asfd *asfd, struct conf **confs, const char *fmt, ...)
229 : {
230 0 : int r=0;
231 0 : char buf[512]="";
232 : va_list ap;
233 0 : va_start(ap, fmt);
234 : vsnprintf(buf, sizeof(buf), fmt, ap);
235 0 : if(asfd && asfd->as->doing_estimate) printf("\nMESSAGE: %s", buf);
236 : else
237 : {
238 0 : if(asfd
239 0 : && get_int(confs[OPT_MESSAGE])) // Backwards compatibility
240 0 : r=asfd->write_str(asfd, CMD_MESSAGE, buf);
241 : logp("MESSAGE: %s", buf);
242 : }
243 0 : va_end(ap);
244 0 : if(confs) cntr_add(get_cntr(confs), CMD_MESSAGE, 1);
245 0 : return r;
246 : }
247 :
248 13 : int logw(struct asfd *asfd, struct cntr *cntr, const char *fmt, ...)
249 : {
250 13 : int r=0;
251 13 : char buf[512]="";
252 : va_list ap;
253 13 : va_start(ap, fmt);
254 : vsnprintf(buf, sizeof(buf), fmt, ap);
255 13 : if(asfd
256 10 : && asfd->as
257 3 : && asfd->as->doing_estimate) printf("\nWARNING: %s", buf);
258 : else
259 : {
260 13 : if(asfd) r=asfd->write_str(asfd, CMD_WARNING, buf);
261 : logp("WARNING: %s", buf);
262 : }
263 13 : va_end(ap);
264 13 : cntr_add(cntr, CMD_WARNING, 1);
265 13 : return r;
266 : }
267 :
268 9 : void log_and_send(struct asfd *asfd, const char *msg)
269 : {
270 : logp("%s\n", msg);
271 9 : if(asfd)
272 9 : asfd->write_str(asfd, CMD_ERROR, msg);
273 9 : }
274 :
275 0 : void log_and_send_oom(struct asfd *asfd)
276 : {
277 0 : char m[256]="";
278 : snprintf(m, sizeof(m), "out of memory in %s()\n", __func__);
279 : logp("%s", m);
280 0 : if(asfd)
281 0 : asfd->write_str(asfd, CMD_ERROR, m);
282 0 : }
283 :
284 0 : void log_set_json(int value)
285 : {
286 0 : json=value;
287 0 : }
288 :
289 10 : void log_oom_w(const char *func, const char *orig_func)
290 : {
291 : logp("out of memory in %s, called from %s\n", func, orig_func);
292 10 : }
293 :
294 0 : int log_incexcs_buf(const char *incexc)
295 : {
296 0 : char *tok=NULL;
297 0 : char *copy=NULL;
298 0 : if(!incexc || !*incexc) return 0;
299 0 : if(!(copy=strdup_w(incexc, __func__)))
300 : return -1;
301 0 : if(!(tok=strtok(copy, "\n")))
302 : {
303 : logp("unable to parse server incexc\n");
304 0 : free_w(©);
305 0 : return -1;
306 : }
307 : do
308 : {
309 : logp("%s\n", tok);
310 0 : } while((tok=strtok(NULL, "\n")));
311 0 : free_w(©);
312 0 : return 0;
313 : }
314 :
315 8 : void log_recvd(struct iobuf *iobuf, struct cntr *cntr, int print)
316 : {
317 8 : const char *prefix="unset";
318 8 : switch(iobuf->cmd)
319 : {
320 : case CMD_MESSAGE: prefix="MESSAGE"; break;
321 : case CMD_WARNING: prefix="WARNING"; break;
322 : default: break;
323 : }
324 8 : logp("%s: %s", prefix, iobuf->buf);
325 8 : cntr_add(cntr, iobuf->cmd, print);
326 8 : }
|