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