Line data Source code
1 : #include "burp.h"
2 : #include "alloc.h"
3 : #include "conf.h"
4 : #include "fsops.h"
5 : #include "handy.h"
6 : #include "lock.h"
7 : #include "log.h"
8 : #include "msg.h"
9 : #include "pathcmp.h"
10 : #include "prepend.h"
11 : #include "strlist.h"
12 : #include "times.h"
13 : #include "client/glob_windows.h"
14 : #include "conffile.h"
15 :
16 : static struct strlist *cli_overrides=NULL;
17 :
18 0 : void conf_set_cli_overrides(struct strlist *overrides)
19 : {
20 0 : cli_overrides=overrides;
21 0 : }
22 :
23 : // This will strip off everything after the last quote. So, configs like this
24 : // should work:
25 : // exclude_regex = "[A-Z]:/pagefile.sys" # swap file (Windows XP, 7, 8)
26 : // Return 1 for quotes removed, -1 for error, 0 for OK.
27 3570 : static int remove_quotes(const char *f, char **v, char quote)
28 : {
29 3570 : char *dp=NULL;
30 3570 : char *sp=NULL;
31 3570 : char *copy=NULL;
32 3570 : int ret=1;
33 :
34 : // If it does not start with a quote, leave it alone.
35 3570 : if(**v!=quote) return 0;
36 :
37 4 : if(!(copy=strdup_w(*v, __func__)))
38 : {
39 : ret=-1;
40 : goto end;
41 : }
42 :
43 8 : for(dp=*v, sp=copy+1; *sp; sp++)
44 : {
45 6 : if(*sp==quote)
46 : {
47 : // Found a matching quote. Stop here.
48 2 : *dp='\0';
49 2 : for(sp++; *sp && isspace(*sp); sp++) { }
50 : // Do not complain about trailing comments.
51 2 : if(*sp && *sp!='#')
52 0 : logp("ignoring trailing characters after quote in config '%s = %s'\n", f, copy);
53 : goto end;
54 : }
55 4 : else if(*sp=='\\')
56 : {
57 0 : sp++;
58 0 : *dp=*sp;
59 0 : dp++;
60 0 : if(*sp!=quote
61 0 : && *sp!='\\')
62 0 : logp("unknown escape sequence '\\%c' in config '%s = %s' - treating it as '%c'\n", *sp, f, copy, *sp);
63 : }
64 : else
65 : {
66 4 : *dp=*sp;
67 4 : dp++;
68 : }
69 : }
70 2 : logp("Did not find closing quote in config '%s = %s'\n", f, copy);
71 2 : *dp='\0';
72 : end:
73 4 : free_w(©);
74 4 : return ret;
75 : }
76 :
77 : // Get field and value pair.
78 1821 : int conf_get_pair(char buf[], char **f, char **v, int *r)
79 : {
80 1821 : char *cp=NULL;
81 1821 : char *eq=NULL;
82 :
83 : // strip leading space
84 1821 : for(cp=buf; *cp && isspace(*cp); cp++) { }
85 1821 : if(!*cp || *cp=='#')
86 : {
87 34 : *f=NULL;
88 34 : *v=NULL;
89 34 : return 0;
90 : }
91 1787 : *f=cp;
92 1787 : if(!(eq=strchr(*f, '='))) return -1;
93 1786 : *eq='\0';
94 :
95 : // Strip white space from before the equals sign.
96 1822 : for(cp=eq-1; *cp && (isspace(*cp) || *cp == ':'); cp--)
97 : {
98 36 : if(*cp == ':') *r=1;
99 36 : *cp='\0';
100 : }
101 : // Skip white space after the equals sign.
102 1786 : for(cp=eq+1; *cp && isspace(*cp); cp++) { }
103 1786 : *v=cp;
104 : // Strip white space at the end of the line.
105 1786 : for(cp+=strlen(cp)-1; *cp && isspace(*cp); cp--) { *cp='\0'; }
106 :
107 : // FIX THIS: Make this more sophisticated - it should understand
108 : // escapes, for example.
109 :
110 1786 : switch(remove_quotes(*f, v, '\''))
111 : {
112 : case -1: return -1;
113 : case 1: break;
114 : default:
115 : // If single quotes were not removed, try to remove
116 : // double quotes.
117 1784 : if(remove_quotes(*f, v, '\"')<0) return -1;
118 : break;
119 : }
120 :
121 1786 : if(!*f || !**f || !*v || !**v) return -1;
122 :
123 1786 : return 0;
124 : }
125 :
126 : static int conf_error(const char *conf_path, int line)
127 : {
128 1 : logp("%s: parse error on line %d\n", conf_path, line);
129 : return -1;
130 : }
131 :
132 53 : int get_file_size(const char *v, uint64_t *dest, const char *conf_path, int line)
133 : {
134 : // Store in bytes, allow k/m/g.
135 53 : const char *cp=NULL;
136 53 : *dest=strtoul(v, NULL, 10);
137 53 : for(cp=v; *cp && (isspace(*cp) || isdigit(*cp)); cp++) { }
138 53 : if(tolower(*cp)=='k') *dest*=1024;
139 53 : else if(tolower(*cp)=='m') *dest*=1024*1024;
140 52 : else if(tolower(*cp)=='g') *dest*=1024*1024*1024;
141 52 : else if(!*cp || *cp=='b')
142 : { }
143 : else
144 : {
145 0 : logp("Unknown file size type '%s' - please use b/kb/mb/gb\n",
146 : cp);
147 0 : return conf_error(conf_path, line);
148 : }
149 : return 0;
150 : }
151 :
152 558 : static int pre_post_override(struct conf *c,
153 : struct conf *pre, struct conf *post)
154 : {
155 558 : const char *override=get_string(c);
156 558 : if(!override) return 0;
157 5 : if(set_string(pre, override)
158 5 : || set_string(post, override))
159 : return -1;
160 : return 0;
161 : }
162 :
163 : #ifdef HAVE_LINUX_OS
164 : struct fstype
165 : {
166 : const char *str;
167 : uint64_t flag;
168 : };
169 :
170 : // Sorted in magic number order.
171 : static struct fstype fstypes[]={
172 : { "devfs", 0x00001373 },
173 : { "devpts", 0x00001CD1 },
174 : { "smbfs", 0x0000517B },
175 : { "nfs", 0x00006969 },
176 : { "romfs", 0x00007275 },
177 : { "iso9660", 0x00009660 },
178 : { "devtmpfs", 0x00009FA0 },
179 : { "proc", 0x00009FA0 },
180 : { "usbdevfs", 0x00009FA2 },
181 : { "ext2", 0x0000EF53 },
182 : { "ext3", 0x0000EF53 },
183 : { "ext4", 0x0000EF53 },
184 : { "ecryptfs", 0x0000F15F },
185 : { "cgroup", 0x0027E0EB },
186 : { "tmpfs", 0x01021994 },
187 : { "zfs", 0x2FC12FC1 },
188 : { "jfs", 0x3153464A },
189 : { "autofs", 0x42494E4D },
190 : { "reiserfs", 0x52654973 },
191 : { "ntfs", 0x5346544E },
192 : { "xfs", 0x58465342 },
193 : { "sysfs", 0x62656572 },
194 : { "debugfs", 0x64626720 },
195 : { "fusectl", 0x65735543 },
196 : { "fuse.lxcfs", 0x65735546 },
197 : { "securityfs", 0x73636673 },
198 : { "ramfs", 0x858458F6 },
199 : { "btrfs", 0x9123683E },
200 : { "hugetlbfs", 0x958458F6 },
201 : { "cifs", 0xFF534D42 },
202 : { NULL, 0 },
203 : };
204 : /* Use this C code to figure out what f_type gets set to.
205 : #include <stdio.h>
206 : #include <sys/vfs.h>
207 :
208 : int main(int argc, char *argv[])
209 : {
210 : int i=0;
211 : struct statfs buf;
212 : if(argc<1)
213 : {
214 : printf("not enough args\n");
215 : return -1;
216 : }
217 : if(statfs(argv[1], &buf))
218 : {
219 : printf("error\n");
220 : return -1;
221 : }
222 : printf("0x%08X\n", buf.f_type);
223 : return 0;
224 : }
225 : */
226 :
227 : #endif
228 :
229 0 : static int fstype_to_flag(const char *fstype, long *flag)
230 : {
231 : #ifdef HAVE_LINUX_OS
232 0 : int i=0;
233 0 : for(i=0; fstypes[i].str; i++)
234 : {
235 0 : if(!strcmp(fstypes[i].str, fstype))
236 : {
237 0 : *flag=fstypes[i].flag;
238 0 : return 0;
239 : }
240 : }
241 : #else
242 : return 0;
243 : #endif
244 : return -1;
245 : }
246 :
247 5 : static int get_compression(const char *v)
248 : {
249 5 : const char *cp=v;
250 5 : if(!strncmp(v, "gzip", strlen("gzip"))
251 5 : || !(strncmp(v, "zlib", strlen("zlib"))))
252 0 : cp=v+strlen("gzip"); // Or "zlib".
253 5 : if(strlen(cp)==1 && isdigit(*cp))
254 5 : return atoi(cp);
255 : return -1;
256 : }
257 :
258 1772 : static int load_conf_field_and_value(struct conf **c,
259 : const char *f, // field
260 : const char *v, // value
261 : int reset, // reset flag
262 : const char *conf_path,
263 : int line)
264 : {
265 1772 : if(!strcmp(f, "compression"))
266 : {
267 5 : int compression=get_compression(v);
268 5 : if(compression<0) return -1;
269 5 : set_int(c[OPT_COMPRESSION], compression);
270 : }
271 1767 : else if(!strcmp(f, "ssl_compression"))
272 : {
273 0 : int compression=get_compression(v);
274 0 : if(compression<0) return -1;
275 0 : set_int(c[OPT_SSL_COMPRESSION], compression);
276 : }
277 1767 : else if(!strcmp(f, "ratelimit"))
278 : {
279 0 : float f=0;
280 0 : f=atof(v);
281 : // User is specifying Mega bits per second.
282 : // Need to convert to bytes per second.
283 0 : f=(f*1024*1024)/8;
284 0 : if(!f)
285 : {
286 0 : logp("ratelimit should be greater than zero\n");
287 0 : return -1;
288 : }
289 0 : set_float(c[OPT_RATELIMIT], f);
290 : }
291 : else
292 : {
293 : int i=0;
294 102011 : for(i=0; i<OPT_MAX; i++)
295 : {
296 103773 : if(strcmp(c[i]->field, f)) continue;
297 1762 : switch(c[i]->conf_type)
298 : {
299 : case CT_STRING:
300 948 : return set_string(c[i], v);
301 : case CT_UINT:
302 166 : return set_int(c[i], atoi(v));
303 : case CT_FLOAT:
304 0 : return set_float(c[i], atof(v));
305 : break;
306 : case CT_MODE_T:
307 0 : return set_mode_t(c[i],
308 0 : strtol(v, NULL, 8));
309 : case CT_SSIZE_T:
310 : {
311 3 : uint64_t s=0;
312 : return
313 3 : get_file_size(v, &s, conf_path, line)
314 3 : || set_uint64_t(c[i], s);
315 : }
316 : case CT_E_BURP_MODE:
317 127 : return set_e_burp_mode(c[i],
318 : str_to_burp_mode(v));
319 : case CT_E_PROTOCOL:
320 14 : return set_e_protocol(c[i],
321 : str_to_protocol(v));
322 : case CT_E_RECOVERY_METHOD:
323 1 : return set_e_recovery_method(c[i],
324 : str_to_recovery_method(v));
325 : case CT_STRLIST:
326 503 : if (reset) set_strlist(c[i], 0);
327 503 : return add_to_strlist(c[i], v,
328 503 : !strcmp(c[i]->field, "include"));
329 : case CT_E_RSHASH:
330 : break;
331 : case CT_CNTR:
332 : break;
333 : // No default so we get a warning if something
334 : // was missed;
335 : }
336 : }
337 : }
338 : return 0;
339 : }
340 :
341 : // Recursing, so need to define this ahead of conf_parse_line.
342 : static int conf_load_lines_from_file(const char *conf_path,
343 : struct conf **confs);
344 :
345 0 : static int deal_with_dot_inclusion(const char *conf_path,
346 : char **extrafile, struct conf **confs)
347 : {
348 0 : int ret=-1;
349 0 : char *copy=NULL;
350 : #ifndef HAVE_WIN32
351 0 : int i=0;
352 : glob_t globbuf;
353 0 : if(**extrafile!='/')
354 : #else
355 : if(strlen(*extrafile)>2
356 : && (*extrafile)[1]!=':')
357 : #endif
358 : {
359 : // It is relative to the directory that the
360 : // current conf file is in.
361 0 : char *cp=NULL;
362 0 : char *tmp=NULL;
363 0 : if(!(copy=strdup_w(conf_path, __func__)))
364 : goto end;
365 0 : if((cp=strrchr(copy, '/'))) *cp='\0';
366 0 : if(!(tmp=prepend_s(copy, *extrafile)))
367 : {
368 0 : log_out_of_memory(__func__);
369 0 : goto end;
370 : }
371 0 : free_w(extrafile);
372 0 : *extrafile=tmp;
373 : }
374 : #ifndef HAVE_WIN32
375 : // Treat it is a glob expression.
376 0 : memset(&globbuf, 0, sizeof(globbuf));
377 0 : glob(*extrafile, 0, NULL, &globbuf);
378 0 : for(i=0; (unsigned int)i<globbuf.gl_pathc; i++)
379 0 : if((ret=conf_load_lines_from_file(globbuf.gl_pathv[i], confs)))
380 : goto end;
381 :
382 0 : globfree(&globbuf);
383 : #else
384 : ret=conf_load_lines_from_file(*extrafile, confs);
385 : #endif
386 :
387 : end:
388 0 : free_w(©);
389 0 : return ret;
390 : }
391 :
392 1805 : static int conf_parse_line(struct conf **confs, const char *conf_path,
393 : char buf[], int line)
394 : {
395 1805 : int ret=-1;
396 1805 : int r=0;
397 1805 : char *f=NULL; // field
398 1805 : char *v=NULL; // value
399 1805 : char *extrafile=NULL;
400 :
401 1805 : if(!strncmp(buf, ". ", 2))
402 : {
403 : // The conf file specifies another file to include.
404 0 : char *np=NULL;
405 :
406 0 : if(!(extrafile=strdup_w(buf+2, __func__))) goto end;
407 :
408 0 : if((np=strrchr(extrafile, '\n'))) *np='\0';
409 0 : if(!*extrafile) goto end;
410 :
411 0 : ret=deal_with_dot_inclusion(conf_path, &extrafile, confs);
412 0 : goto end;
413 : }
414 :
415 1805 : if(conf_get_pair(buf, &f, &v, &r)) goto end;
416 1804 : if(f && v
417 1772 : && load_conf_field_and_value(confs, f, v, r, conf_path, line))
418 : goto end;
419 : ret=0;
420 : end:
421 1805 : free_w(&extrafile);
422 1805 : return ret;
423 : }
424 :
425 : static void conf_problem(const char *conf_path, const char *msg, int *r)
426 : {
427 6 : logp("%s: %s\n", conf_path, msg);
428 6 : (*r)--;
429 : }
430 :
431 4 : static void burp_ca_conf_problem(const char *conf_path,
432 : const char *field, int *r)
433 : {
434 4 : char msg[128]="";
435 4 : snprintf(msg, sizeof(msg), "ca_%s_ca set, but %s not set\n",
436 : PACKAGE_TARNAME, field);
437 4 : conf_problem(conf_path, msg, r);
438 4 : }
439 :
440 56 : static int server_conf_checks(struct conf **c, const char *path, int *r)
441 : {
442 : // FIX THIS: Most of this could be done by flags.
443 56 : if(!get_string(c[OPT_DIRECTORY]))
444 : conf_problem(path, "directory unset", r);
445 56 : if(!get_string(c[OPT_DEDUP_GROUP]))
446 : conf_problem(path, "dedup_group unset", r);
447 56 : if(!get_string(c[OPT_CLIENTCONFDIR]))
448 : conf_problem(path, "clientconfdir unset", r);
449 56 : if(get_e_recovery_method(c[OPT_WORKING_DIR_RECOVERY_METHOD])==RECOVERY_METHOD_UNSET)
450 : conf_problem(path, "working_dir_recovery_method unset", r);
451 56 : if(!get_string(c[OPT_SSL_DHFILE]))
452 : conf_problem(path, "ssl_dhfile unset", r);
453 56 : if(get_string(c[OPT_ENCRYPTION_PASSWORD]))
454 : conf_problem(path,
455 : "encryption_password should not be set on the server!", r);
456 56 : if(!get_strlist(c[OPT_KEEP]))
457 : conf_problem(path, "keep unset", r);
458 56 : if(get_int(c[OPT_MAX_HARDLINKS])<2)
459 : conf_problem(path, "max_hardlinks too low", r);
460 :
461 56 : if(get_int(c[OPT_MAX_STORAGE_SUBDIRS])<=1000)
462 : conf_problem(path, "max_storage_subdirs too low", r);
463 56 : if(!get_string(c[OPT_TIMESTAMP_FORMAT])
464 56 : && set_string(c[OPT_TIMESTAMP_FORMAT], DEFAULT_TIMESTAMP_FORMAT))
465 : return -1;
466 56 : if(get_string(c[OPT_CA_CONF]))
467 : {
468 1 : int ca_err=0;
469 1 : const char *ca_name=get_string(c[OPT_CA_NAME]);
470 1 : const char *ca_server_name=get_string(c[OPT_CA_SERVER_NAME]);
471 1 : if(!ca_name)
472 : {
473 0 : logp("ca_conf set, but ca_name not set\n");
474 0 : ca_err++;
475 : }
476 1 : if(!ca_server_name)
477 : {
478 0 : logp("ca_conf set, but ca_server_name not set\n");
479 0 : ca_err++;
480 : }
481 2 : if(ca_name
482 1 : && ca_server_name
483 1 : && !strcmp(ca_name, ca_server_name))
484 : {
485 0 : logp("ca_name and ca_server_name cannot be the same\n");
486 0 : ca_err++;
487 : }
488 1 : if(!get_string(c[OPT_CA_BURP_CA]))
489 : {
490 0 : logp("ca_conf set, but ca_%s_ca not set\n",
491 : PACKAGE_TARNAME);
492 0 : ca_err++;
493 : }
494 1 : if(!get_string(c[OPT_SSL_DHFILE]))
495 : {
496 0 : logp("ca_conf set, but ssl_dhfile not set\n");
497 0 : ca_err++;
498 : }
499 1 : if(!get_string(c[OPT_SSL_CERT_CA]))
500 : {
501 0 : logp("ca_conf set, but ssl_cert_ca not set\n");
502 0 : ca_err++;
503 : }
504 1 : if(!get_string(c[OPT_SSL_CERT]))
505 : {
506 0 : logp("ca_conf set, but ssl_cert not set\n");
507 0 : ca_err++;
508 : }
509 1 : if(!get_string(c[OPT_SSL_KEY]))
510 : {
511 0 : logp("ca_conf set, but ssl_key not set\n");
512 0 : ca_err++;
513 : }
514 1 : if(ca_err) return -1;
515 : }
516 56 : if(get_string(c[OPT_MANUAL_DELETE]))
517 : {
518 0 : if(!is_absolute(get_string(c[OPT_MANUAL_DELETE])))
519 : {
520 0 : logp("ERROR: Please use an absolute manual_delete path.\n");
521 0 : return -1;
522 : }
523 : }
524 :
525 : return 0;
526 : }
527 :
528 : #ifdef HAVE_WIN32
529 : #undef X509_NAME
530 : #include <openssl/x509.h>
531 : #endif
532 :
533 0 : static char *extract_cn(X509_NAME *subj)
534 : {
535 : int nid;
536 : int index;
537 : ASN1_STRING *d;
538 : X509_NAME_ENTRY *e;
539 :
540 0 : nid=OBJ_txt2nid("CN");
541 0 : if((index=X509_NAME_get_index_by_NID(subj, nid, -1))<0
542 0 : || !(e=X509_NAME_get_entry(subj, index))
543 0 : || !(d=X509_NAME_ENTRY_get_data(e)))
544 : return NULL;
545 : #if OPENSSL_VERSION_NUMBER < 0x1010000fL || defined(LIBRESSL_VERSION_NUMBER)
546 : return (char *)ASN1_STRING_data(d);
547 : #else
548 0 : return (char *)ASN1_STRING_get0_data(d);
549 : #endif
550 : }
551 :
552 52 : static void mangle_cname(char **cname, struct conf **c)
553 : {
554 52 : if(!get_int(c[OPT_CNAME_FQDN]))
555 0 : strip_fqdn(cname);
556 52 : if(get_int(c[OPT_CNAME_LOWERCASE]))
557 0 : strlwr(*cname);
558 52 : }
559 :
560 52 : static int get_cname_from_ssl_cert(struct conf **c)
561 : {
562 52 : int ret=-1;
563 52 : struct fzp *fzp=NULL;
564 52 : X509 *cert=NULL;
565 52 : X509_NAME *subj=NULL;
566 52 : char *path=get_string(c[OPT_SSL_CERT]);
567 52 : const char *cn=NULL;
568 52 : char *copy=NULL;
569 :
570 52 : if(!path || !(fzp=fzp_open(path, "rb"))) return 0;
571 :
572 0 : if(!(cert=fzp_PEM_read_X509(fzp)))
573 : {
574 0 : logp("unable to parse %s in: %s\n", path, __func__);
575 0 : goto end;
576 : }
577 0 : if(!(subj=X509_get_subject_name(cert)))
578 : {
579 0 : logp("unable to get subject from %s in: %s\n", path, __func__);
580 0 : goto end;
581 : }
582 :
583 0 : if(!(cn=extract_cn(subj)))
584 : {
585 0 : logp("could not get CN from %s\n", path);
586 0 : goto end;
587 : }
588 0 : if(!(copy=strdup_w(cn, __func__)))
589 : goto end;
590 0 : mangle_cname(©, c);
591 0 : if(set_string(c[OPT_CNAME], copy))
592 : goto end;
593 0 : logp("cname from cert: %s\n", cn);
594 0 : if(strcmp(copy, cn))
595 0 : logp("cname mangled to: %s\n", copy);
596 :
597 : ret=0;
598 : end:
599 0 : if(cert) X509_free(cert);
600 0 : fzp_close(&fzp);
601 0 : free_w(©);
602 0 : return ret;
603 : }
604 :
605 : #ifdef HAVE_WIN32
606 : #include <winsock2.h>
607 : #include <ws2tcpip.h>
608 : #endif
609 :
610 52 : static int get_fqdn(struct conf **c)
611 : {
612 52 : int ret=-1;
613 : int gai_result;
614 : struct addrinfo hints;
615 52 : struct addrinfo *info=NULL;
616 52 : char hostname[1024]="";
617 52 : char *fqdn=NULL;
618 52 : hostname[1023] = '\0';
619 52 : if(gethostname(hostname, 1023))
620 : {
621 0 : logp("gethostname() failed: %s\n", strerror(errno));
622 0 : goto end;
623 : }
624 :
625 52 : memset(&hints, 0, sizeof hints);
626 : hints.ai_family=AF_UNSPEC;
627 52 : hints.ai_socktype=SOCK_STREAM;
628 52 : hints.ai_flags=AI_CANONNAME;
629 :
630 52 : if((gai_result=getaddrinfo(hostname, NULL, &hints, &info)))
631 : {
632 0 : logp("getaddrinfo in %s: %s\n", __func__,
633 : gai_strerror(gai_result));
634 0 : logp("Using %s\n", hostname);
635 0 : if(!(fqdn=strdup_w(hostname, __func__)))
636 : goto end;
637 : }
638 : else
639 : {
640 : //for(p=info; p; p=p->ai_next)
641 : // Just use the first one.
642 52 : if(!info)
643 : {
644 0 : logp("Got no hostname in %s\n", __func__);
645 0 : goto end;
646 : }
647 52 : if(!(fqdn=strdup_w(info->ai_canonname, __func__)))
648 : goto end;
649 : }
650 :
651 52 : mangle_cname(&fqdn, c);
652 :
653 52 : if(set_string(c[OPT_CNAME], fqdn))
654 : goto end;
655 52 : logp("cname from hostname: %s\n", get_string(c[OPT_CNAME]));
656 :
657 52 : ret=0;
658 : end:
659 52 : if(info) freeaddrinfo(info);
660 52 : free_w(&fqdn);
661 52 : return ret;
662 : }
663 :
664 108 : const char *confs_get_lockfile(struct conf **confs)
665 : {
666 108 : const char *lockfile=get_string(confs[OPT_LOCKFILE]);
667 108 : if(!lockfile) lockfile=get_string(confs[OPT_PIDFILE]);
668 108 : return lockfile;
669 : }
670 :
671 108 : static int general_conf_checks(struct conf **c, const char *path, int *r)
672 : {
673 108 : if(!confs_get_lockfile(c))
674 : conf_problem(path, "lockfile unset", r);
675 108 : if(!get_string(c[OPT_SSL_CERT]))
676 : conf_problem(path, "ssl_cert unset", r);
677 108 : if(!get_string(c[OPT_SSL_CERT_CA]))
678 : conf_problem(path, "ssl_cert_ca unset", r);
679 108 : return 0;
680 : }
681 :
682 52 : static int client_conf_checks(struct conf **c, const char *path, int *r)
683 : {
684 52 : const char *autoupgrade_os=get_string(c[OPT_AUTOUPGRADE_OS]);
685 :
686 52 : if(!get_string(c[OPT_CNAME]))
687 : {
688 52 : if(get_cname_from_ssl_cert(c)) return -1;
689 : // There was no error. This is probably a new install.
690 : // Try getting the fqdn and using that.
691 52 : if(!get_string(c[OPT_CNAME]))
692 : {
693 52 : if(get_fqdn(c)) return -1;
694 52 : if(!get_string(c[OPT_CNAME]))
695 : conf_problem(path, "client name unset", r);
696 : }
697 : }
698 52 : if(!get_string(c[OPT_PASSWORD]))
699 : {
700 52 : logp("password not set, falling back to \"password\"\n");
701 52 : if(set_string(c[OPT_PASSWORD], "password"))
702 : return -1;
703 : }
704 52 : if(!get_string(c[OPT_SERVER]))
705 : conf_problem(path, "server unset", r);
706 52 : if(!get_string(c[OPT_SSL_PEER_CN]))
707 : {
708 1 : const char *server=get_string(c[OPT_SERVER]);
709 1 : logp("ssl_peer_cn unset\n");
710 1 : if(server)
711 : {
712 1 : logp("falling back to '%s'\n", server);
713 1 : if(set_string(c[OPT_SSL_PEER_CN], server))
714 : return -1;
715 : }
716 : }
717 52 : if(autoupgrade_os
718 0 : && strstr(autoupgrade_os, ".."))
719 : conf_problem(path,
720 : "autoupgrade_os must not contain a '..' component", r);
721 52 : if(get_string(c[OPT_CA_BURP_CA]))
722 : {
723 1 : if(!get_string(c[OPT_CA_CSR_DIR]))
724 1 : burp_ca_conf_problem(path, "ca_csr_dir", r);
725 1 : if(!get_string(c[OPT_SSL_CERT_CA]))
726 1 : burp_ca_conf_problem(path, "ssl_cert_ca", r);
727 1 : if(!get_string(c[OPT_SSL_CERT]))
728 1 : burp_ca_conf_problem(path, "ssl_cert", r);
729 1 : if(!get_string(c[OPT_SSL_KEY]))
730 1 : burp_ca_conf_problem(path, "ssl_key", r);
731 : }
732 :
733 52 : if(!r)
734 : {
735 : struct strlist *l;
736 0 : logp("Listing configured paths:\n");
737 0 : for(l=get_strlist(c[OPT_INCEXCDIR]); l; l=l->next)
738 0 : logp("%s: %s\n", l->flag?"include":"exclude", l->path);
739 0 : logp("Listing starting paths:\n");
740 0 : for(l=get_strlist(c[OPT_STARTDIR]); l; l=l->next)
741 0 : if(l->flag) logp("%s\n", l->path);
742 : }
743 : return 0;
744 : }
745 :
746 187 : static int finalise_keep_args(struct conf **c)
747 : {
748 : struct strlist *k;
749 187 : struct strlist *last=NULL;
750 187 : uint64_t mult=1;
751 310 : for(k=get_strlist(c[OPT_KEEP]); k; k=k->next)
752 : {
753 246 : if(!(k->flag=atoi(k->path)))
754 : {
755 0 : logp("'keep' value cannot be set to '%s'\n", k->path);
756 0 : return -1;
757 : }
758 123 : mult*=k->flag;
759 :
760 : // An error if you try to keep backups every second
761 : // for 100 years.
762 123 : if(mult>52560000)
763 : {
764 0 : logp("Your 'keep' values are far too high. High enough to keep a backup every second for 10 years. Please lower them to something sensible.\n");
765 0 : return -1;
766 : }
767 123 : last=k;
768 : }
769 : // If more than one keep value is set, add one to the last one.
770 : // This is so that, for example, having set 7, 4, 6, then
771 : // a backup of age 7*4*6=168 or more is guaranteed to be kept.
772 : // Otherwise, only 7*4*5=140 would be guaranteed to be kept.
773 187 : k=get_strlist(c[OPT_KEEP]);
774 187 : if(k && k->next) last->flag++;
775 : return 0;
776 : }
777 :
778 46 : static int incexc_munge(struct conf **c, struct strlist *s)
779 : {
780 : #ifdef HAVE_WIN32
781 : convert_backslashes(&s->path);
782 : #endif
783 46 : if(!is_absolute(s->path))
784 : {
785 1 : logp("ERROR: Please use absolute include/exclude paths.\n");
786 : return -1;
787 : }
788 45 : if(add_to_strlist(c[OPT_INCEXCDIR], s->path, s->flag))
789 : return -1;
790 : return 0;
791 : }
792 :
793 191 : static int finalise_incexc_dirs(struct conf **c)
794 : {
795 191 : struct strlist *s=NULL;
796 :
797 231 : for(s=get_strlist(c[OPT_INCLUDE]); s; s=s->next)
798 41 : if(incexc_munge(c, s)) return -1;
799 195 : for(s=get_strlist(c[OPT_EXCLUDE]); s; s=s->next)
800 5 : if(incexc_munge(c, s)) return -1;
801 191 : if(get_strlist(c[OPT_INCREG]) &&
802 1 : !(get_strlist(c[OPT_INCLUDE]) || get_strlist(c[OPT_INCGLOB])))
803 : {
804 0 : logp("Need at least one 'include' or 'include_glob' for the 'include_regex' to work.\n");
805 0 : return -1;
806 : }
807 : return 0;
808 : }
809 :
810 6 : static int add_to_cross_filesystem(struct conf **c, const char *path)
811 : {
812 6 : if(strlist_find(get_strlist(c[OPT_FSCHGDIR]), path, 0))
813 : return 0;
814 6 : return add_to_strlist(c[OPT_FSCHGDIR], path, 0);
815 : }
816 :
817 : // This decides which directories to start backing up, and which
818 : // are subdirectories which don't need to be started separately.
819 190 : static int finalise_start_dirs(struct conf **c)
820 : {
821 190 : struct strlist *s=NULL;
822 190 : struct strlist *last_ie=NULL;
823 190 : struct strlist *last_sd=NULL;
824 :
825 : // Make sure that the startdir list starts empty, or chaos will ensue.
826 190 : conf_free_content(c[OPT_STARTDIR]);
827 :
828 229 : for(s=get_strlist(c[OPT_INCLUDE]); s; s=s->next)
829 : {
830 : #ifdef HAVE_WIN32
831 : convert_backslashes(&s->path);
832 : #endif
833 40 : if(!is_absolute(s->path))
834 : {
835 0 : logp("ERROR: Please use absolute include/exclude paths.\n");
836 0 : return -1;
837 : }
838 :
839 : // Ensure that we do not backup the same directory twice.
840 40 : if(last_ie && !strcmp(s->path, last_ie->path))
841 : {
842 1 : logp("Directory appears twice in conf: %s\n",
843 : s->path);
844 1 : return -1;
845 : }
846 : // If it is not a subdirectory of the most recent start point,
847 : // we have found another start point.
848 39 : if(!get_strlist(c[OPT_STARTDIR])
849 14 : || !last_sd || !is_subdir(last_sd->path, s->path))
850 : {
851 : // Do not use strlist_add_sorted, because last_sd is
852 : // relying on incexcdir already being sorted.
853 33 : if(add_to_strlist(c[OPT_STARTDIR], s->path, s->flag))
854 : return -1;
855 : last_sd=s;
856 : }
857 : else
858 : {
859 : // If it is not a starting directory, it should at
860 : // least be included as a cross_filesystem entry.
861 6 : if(add_to_cross_filesystem(c, s->path))
862 : return -1;
863 : }
864 39 : last_ie=s;
865 : }
866 : return 0;
867 : }
868 :
869 189 : static int finalise_fschg_dirs(struct conf **c)
870 : {
871 : struct strlist *s;
872 197 : for(s=get_strlist(c[OPT_FSCHGDIR]); s; s=s->next)
873 8 : strip_trailing_slashes(&s->path);
874 189 : return 0;
875 : }
876 :
877 : // The glob stuff should only run on the client side.
878 56 : static int finalise_glob(struct conf **c)
879 : {
880 56 : int ret=-1;
881 : #ifdef HAVE_WIN32
882 : if(glob_windows(c)) goto end;
883 : #else
884 : int i;
885 : glob_t globbuf;
886 : struct strlist *l;
887 56 : struct strlist *last=NULL;
888 56 : memset(&globbuf, 0, sizeof(globbuf));
889 59 : for(l=get_strlist(c[OPT_INCGLOB]); l; l=l->next)
890 : {
891 3 : glob(l->path, last?GLOB_APPEND:0, NULL, &globbuf);
892 3 : last=l;
893 : }
894 :
895 3 : for(i=0; (unsigned int)i<globbuf.gl_pathc; i++)
896 3 : if(add_to_strlist_include_uniq(c[OPT_INCLUDE], globbuf.gl_pathv[i]))
897 : goto end;
898 :
899 56 : globfree(&globbuf);
900 : #endif
901 56 : ret=0;
902 : end:
903 56 : return ret;
904 : }
905 :
906 : // Reeval the glob after script pre
907 2 : int reeval_glob(struct conf **c)
908 : {
909 2 : if(finalise_glob(c))
910 : return -1;
911 :
912 2 : if(finalise_incexc_dirs(c)
913 2 : || finalise_start_dirs(c)
914 2 : || finalise_fschg_dirs(c))
915 : return -1;
916 :
917 : return 0;
918 : }
919 :
920 : // Set the flag of the first item in a list that looks at extensions to the
921 : // maximum number of characters that need to be checked, plus one. This is for
922 : // a bit of added efficiency.
923 567 : static void set_max_ext(struct strlist *list)
924 : {
925 567 : int max=0;
926 567 : struct strlist *l=NULL;
927 571 : for(l=list; l; l=l->next)
928 : {
929 4 : int s=strlen(l->path);
930 4 : if(s>max) max=s;
931 : }
932 567 : if(list) list->flag=max+1;
933 567 : }
934 :
935 378 : static int finalise_fstypes(struct conf **c, int opt)
936 : {
937 : struct strlist *l;
938 : // Set the strlist flag for the excluded fstypes
939 378 : for(l=get_strlist(c[opt]); l; l=l->next)
940 : {
941 0 : l->flag=0;
942 0 : if(!strncasecmp(l->path, "0x", 2))
943 : {
944 0 : l->flag=strtol((l->path)+2, NULL, 16);
945 0 : logp("Excluding file system type 0x%08lX\n", l->flag);
946 : }
947 : else
948 : {
949 0 : if(fstype_to_flag(l->path, &(l->flag)))
950 : {
951 0 : logp("Unknown exclude fs type: %s\n", l->path);
952 0 : l->flag=0;
953 : }
954 : }
955 : }
956 378 : return 0;
957 : }
958 :
959 10 : static int setup_script_arg_override(struct conf *c, struct conf *args)
960 : {
961 : struct strlist *s;
962 10 : set_strlist(args, NULL);
963 30 : for(s=get_strlist(c); s; s=s->next)
964 20 : if(add_to_strlist(args, s->path, s->flag))
965 : return -1;
966 : return 0;
967 : }
968 :
969 558 : static int setup_script_arg_overrides(struct conf *c,
970 : struct conf *pre_args, struct conf *post_args)
971 : {
972 558 : if(!get_strlist(c)) return 0;
973 5 : return setup_script_arg_override(c, pre_args)
974 5 : || setup_script_arg_override(c, post_args);
975 : }
976 :
977 149 : static int listen_config_ok(const char *l)
978 : {
979 : int port;
980 149 : const char *c=NULL;
981 149 : const char *cp=NULL;
982 :
983 2010 : for(c=l; *c; c++)
984 1861 : if(!isalnum(*c) && *c!=':' && *c!='.')
985 : return 0;
986 :
987 149 : if(!(cp=strrchr(l, ':')))
988 : return 0;
989 149 : if(l==cp)
990 : return 0;
991 149 : cp++;
992 149 : if(!strlen(cp) || strlen(cp)>5)
993 : return 0;
994 149 : port=atoi(cp);
995 149 : if(port<=0 || port>65535)
996 : return 0;
997 :
998 149 : return 1;
999 : }
1000 :
1001 144 : static int finalise_server_max_children(struct conf **c,
1002 : enum conf_opt listen_opt, enum conf_opt max_children_opt)
1003 : {
1004 : struct strlist *l;
1005 : struct strlist *mc;
1006 144 : long max_children=5;
1007 :
1008 581 : for(l=get_strlist(c[listen_opt]),
1009 293 : mc=get_strlist(c[max_children_opt]); l; l=l->next)
1010 : {
1011 149 : if(!listen_config_ok(l->path))
1012 : {
1013 0 : logp("Could not parse %s config '%s'\n",
1014 0 : c[listen_opt]->field, l->path);
1015 0 : return -1;
1016 : }
1017 149 : if(mc)
1018 : {
1019 20 : if((max_children=atol(mc->path))<=0)
1020 : {
1021 0 : logp("%s too low for %s %s\n",
1022 0 : c[max_children_opt]->field,
1023 0 : c[listen_opt]->field,
1024 : l->path);
1025 0 : return -1;
1026 : }
1027 10 : l->flag=max_children;
1028 :
1029 10 : mc=mc->next;
1030 : }
1031 : else
1032 : {
1033 278 : logp("%s %s defaulting to %s %lu\n",
1034 139 : c[listen_opt]->field,
1035 : l->path,
1036 139 : c[max_children_opt]->field,
1037 : max_children);
1038 139 : l->flag=max_children;
1039 : }
1040 : }
1041 :
1042 144 : if(mc)
1043 : {
1044 0 : logp("too many %s options\n", c[max_children_opt]->field);
1045 0 : return -1;
1046 : }
1047 :
1048 : return 0;
1049 : }
1050 :
1051 52 : static int finalise_client_ports(struct conf **c)
1052 : {
1053 52 : int port=0;
1054 : struct strlist *p;
1055 :
1056 103 : for(p=get_strlist(c[OPT_PORT]); p; p=p->next)
1057 102 : port=atoi(p->path);
1058 :
1059 52 : if(!port)
1060 : return 0;
1061 :
1062 51 : if(!get_int(c[OPT_PORT_BACKUP]))
1063 50 : set_int(c[OPT_PORT_BACKUP], port);
1064 51 : if(!get_int(c[OPT_PORT_RESTORE]))
1065 49 : set_int(c[OPT_PORT_RESTORE], port);
1066 51 : if(!get_int(c[OPT_PORT_VERIFY]))
1067 50 : set_int(c[OPT_PORT_VERIFY], get_int(c[OPT_PORT_RESTORE]));
1068 51 : if(!get_int(c[OPT_PORT_LIST]))
1069 50 : set_int(c[OPT_PORT_LIST], port);
1070 51 : if(!get_int(c[OPT_PORT_DELETE]))
1071 50 : set_int(c[OPT_PORT_DELETE], port);
1072 :
1073 : return 0;
1074 : }
1075 :
1076 189 : static int apply_cli_overrides(struct conf **confs)
1077 : {
1078 189 : int ret=-1;
1079 189 : int line=0;
1080 189 : char *opt=NULL;
1081 189 : struct strlist *oo=NULL;
1082 :
1083 189 : for(oo=cli_overrides; oo; oo=oo->next)
1084 : {
1085 0 : line++;
1086 0 : free_w(&opt);
1087 0 : if(!(opt=strdup_w(oo->path, __func__)))
1088 : goto end;
1089 0 : if((ret=conf_parse_line(confs, "", opt, line)))
1090 : {
1091 0 : logp("Unable to parse cli option %d '%s'\n",
1092 : line, oo->path);
1093 0 : goto end;
1094 : }
1095 : }
1096 : ret=0;
1097 : end:
1098 189 : free_w(&opt);
1099 189 : return ret;
1100 : }
1101 :
1102 189 : static int conf_finalise(struct conf **c)
1103 : {
1104 : enum burp_mode burp_mode;
1105 189 : int s_script_notify=0;
1106 :
1107 189 : if(apply_cli_overrides(c))
1108 : return -1;
1109 :
1110 189 : burp_mode=get_e_burp_mode(c[OPT_BURP_MODE]);
1111 :
1112 189 : if(finalise_fstypes(c, OPT_EXCFS)
1113 189 : || finalise_fstypes(c, OPT_INCFS))
1114 : return -1;
1115 :
1116 189 : strlist_compile_regexes(get_strlist(c[OPT_INCREG]));
1117 189 : strlist_compile_regexes(get_strlist(c[OPT_EXCREG]));
1118 :
1119 189 : set_max_ext(get_strlist(c[OPT_INCEXT]));
1120 189 : set_max_ext(get_strlist(c[OPT_EXCEXT]));
1121 189 : set_max_ext(get_strlist(c[OPT_EXCOM]));
1122 :
1123 189 : if(burp_mode==BURP_MODE_CLIENT
1124 54 : && finalise_glob(c))
1125 : return -1;
1126 :
1127 189 : if(finalise_incexc_dirs(c)
1128 188 : || finalise_start_dirs(c)
1129 187 : || finalise_fschg_dirs(c))
1130 : return -1;
1131 :
1132 187 : if(finalise_keep_args(c))
1133 : return -1;
1134 :
1135 187 : if(burp_mode==BURP_MODE_SERVER)
1136 : {
1137 73 : if(!get_strlist(c[OPT_LISTEN]))
1138 : {
1139 1 : logp("Need at least one 'listen' config.\n");
1140 1 : return -1;
1141 : }
1142 72 : if(finalise_server_max_children(c,
1143 : OPT_LISTEN, OPT_MAX_CHILDREN)
1144 72 : || finalise_server_max_children(c,
1145 : OPT_LISTEN_STATUS, OPT_MAX_STATUS_CHILDREN))
1146 : return -1;
1147 : }
1148 186 : if(burp_mode==BURP_MODE_CLIENT)
1149 : {
1150 52 : if(finalise_client_ports(c))
1151 : return -1;
1152 : }
1153 :
1154 186 : if((s_script_notify=get_int(c[OPT_S_SCRIPT_NOTIFY])))
1155 : {
1156 4 : set_int(c[OPT_S_SCRIPT_PRE_NOTIFY], s_script_notify);
1157 4 : set_int(c[OPT_S_SCRIPT_POST_NOTIFY], s_script_notify);
1158 : }
1159 :
1160 : // These override the specific pre/post script paths with the general
1161 : // one. For example, if 'server_script' is set, its value is used for
1162 : // 'server_script_pre' and 'server_script_post'.
1163 186 : if(pre_post_override(c[OPT_B_SCRIPT],
1164 : c[OPT_B_SCRIPT_PRE], c[OPT_B_SCRIPT_POST])
1165 186 : || pre_post_override(c[OPT_R_SCRIPT],
1166 : c[OPT_R_SCRIPT_PRE], c[OPT_R_SCRIPT_POST])
1167 186 : || pre_post_override(c[OPT_S_SCRIPT],
1168 : c[OPT_S_SCRIPT_PRE], c[OPT_S_SCRIPT_POST])
1169 : // And these do the same for the script arguments.
1170 186 : || setup_script_arg_overrides(c[OPT_B_SCRIPT_ARG],
1171 : c[OPT_B_SCRIPT_PRE_ARG], c[OPT_B_SCRIPT_POST_ARG])
1172 186 : || setup_script_arg_overrides(c[OPT_R_SCRIPT_ARG],
1173 : c[OPT_R_SCRIPT_PRE_ARG], c[OPT_R_SCRIPT_POST_ARG])
1174 186 : || setup_script_arg_overrides(c[OPT_S_SCRIPT_ARG],
1175 : c[OPT_S_SCRIPT_PRE_ARG], c[OPT_S_SCRIPT_POST_ARG]))
1176 : return -1;
1177 :
1178 : // We are now done with these. Clear them, otherwise they interfere.
1179 186 : set_string(c[OPT_S_SCRIPT], NULL);
1180 186 : set_strlist(c[OPT_S_SCRIPT_ARG], NULL);
1181 186 : return 0;
1182 : }
1183 :
1184 108 : static int conf_finalise_global_only(const char *conf_path, struct conf **confs)
1185 : {
1186 108 : int r=0;
1187 :
1188 : // Let the caller check the 'keep' value.
1189 :
1190 108 : if(!get_string(confs[OPT_SSL_KEY_PASSWORD])
1191 108 : && set_string(confs[OPT_SSL_KEY_PASSWORD], ""))
1192 0 : r--;
1193 :
1194 108 : if(general_conf_checks(confs, conf_path, &r)) r--;
1195 :
1196 108 : switch(get_e_burp_mode(confs[OPT_BURP_MODE]))
1197 : {
1198 : case BURP_MODE_SERVER:
1199 56 : if(server_conf_checks(confs, conf_path, &r)) r--;
1200 : break;
1201 : case BURP_MODE_CLIENT:
1202 52 : if(client_conf_checks(confs, conf_path, &r)) r--;
1203 : break;
1204 : case BURP_MODE_UNSET:
1205 : default:
1206 0 : logp("%s: mode unset - need 'server' or 'client'\n",
1207 : conf_path);
1208 0 : r--;
1209 0 : break;
1210 : }
1211 :
1212 108 : return r;
1213 : }
1214 :
1215 190 : static int conf_load_lines_from_file(const char *conf_path, struct conf **confs)
1216 : {
1217 190 : int ret=0;
1218 190 : int line=0;
1219 190 : FILE *fp=NULL;
1220 190 : char buf[4096]="";
1221 :
1222 190 : if(!(fp=fopen(conf_path, "r")))
1223 : {
1224 3 : logp("could not open '%s' for reading.\n", conf_path);
1225 3 : return -1;
1226 : }
1227 1984 : while(fgets(buf, sizeof(buf), fp))
1228 : {
1229 1797 : line++;
1230 1797 : if(conf_parse_line(confs, conf_path, buf, line))
1231 : {
1232 1 : conf_error(conf_path, line);
1233 1 : ret=-1;
1234 : }
1235 : }
1236 187 : if(fp) fclose(fp);
1237 187 : return ret;
1238 : }
1239 :
1240 : #ifndef UTEST
1241 : static
1242 : #endif
1243 3 : int conf_load_lines_from_buf(const char *buf, struct conf **c)
1244 : {
1245 3 : int ret=0;
1246 3 : int line=0;
1247 3 : char *tok=NULL;
1248 3 : char *copy=NULL;
1249 :
1250 3 : if(!buf) return 0;
1251 :
1252 3 : if(!(copy=strdup_w(buf, __func__))) return -1;
1253 3 : if(!(tok=strtok(copy, "\n")))
1254 : {
1255 0 : logp("unable to parse conf buffer\n");
1256 0 : free_w(©);
1257 0 : return -1;
1258 : }
1259 : do
1260 : {
1261 8 : line++;
1262 8 : if(conf_parse_line(c, "", tok, line))
1263 : {
1264 : ret=-1;
1265 : break;
1266 : }
1267 8 : } while((tok=strtok(NULL, "\n")));
1268 3 : free_w(©);
1269 :
1270 3 : return ret;
1271 : }
1272 :
1273 : /* The server runs this when parsing a restore file on the server. */
1274 6 : int conf_parse_incexcs_path(struct conf **c, const char *path)
1275 : {
1276 6 : free_incexcs(c);
1277 6 : if(conf_load_lines_from_file(path, c)
1278 6 : || conf_finalise(c))
1279 : return -1;
1280 : return 0;
1281 : }
1282 :
1283 : /* The client runs this when the server overrides the incexcs. */
1284 1 : int conf_parse_incexcs_buf(struct conf **c, const char *incexc)
1285 : {
1286 1 : free_incexcs(c);
1287 1 : if(conf_load_lines_from_buf(incexc, c)
1288 1 : || conf_finalise(c))
1289 : return -1;
1290 : return 0;
1291 : }
1292 :
1293 : /* The client runs this when the server overrides the incexcs for restore. */
1294 4 : int conf_parse_incexcs_srestore(struct conf **c, const char *incexc)
1295 : {
1296 4 : int ret=-1;
1297 4 : char *rp=NULL;
1298 4 : char *oldprefix=NULL;
1299 4 : char *srvprefix=NULL;
1300 4 : char *newprefix=NULL;
1301 4 : const char *rpfield=c[OPT_RESTOREPREFIX]->field;
1302 :
1303 4 : if(!(rp=get_string(c[OPT_RESTOREPREFIX])))
1304 : {
1305 2 : logp("The client side must specify a %s!\n", rpfield);
1306 2 : goto end;
1307 : }
1308 2 : if(!(oldprefix=strdup_w(rp, __func__)))
1309 : goto end;
1310 :
1311 2 : free_incexcs(c);
1312 2 : if(conf_load_lines_from_buf(incexc, c)
1313 2 : || conf_finalise(c))
1314 : goto end;
1315 :
1316 2 : if((srvprefix=get_string(c[OPT_RESTOREPREFIX])))
1317 : {
1318 2 : if(has_dot_component(srvprefix))
1319 : {
1320 0 : logp("The server gave %s '%s', which is not allowed!",
1321 : rpfield, srvprefix);
1322 0 : goto end;
1323 : }
1324 2 : if(!strcmp(oldprefix, "/"))
1325 : {
1326 : // Avoid double slash.
1327 0 : if(!(newprefix=prepend_s("", srvprefix)))
1328 : goto end;
1329 : }
1330 : else
1331 : {
1332 2 : if(!(newprefix=prepend_s(oldprefix, srvprefix)))
1333 : goto end;
1334 : }
1335 2 : if(set_string(c[OPT_RESTOREPREFIX], newprefix))
1336 : goto end;
1337 2 : if(build_path_w(newprefix))
1338 : goto end;
1339 : }
1340 : else
1341 : {
1342 0 : if(set_string(c[OPT_RESTOREPREFIX], oldprefix))
1343 : goto end;
1344 : }
1345 : ret=0;
1346 : end:
1347 4 : free_w(&oldprefix);
1348 4 : free_w(&newprefix);
1349 4 : return ret;
1350 : }
1351 :
1352 73 : static int conf_set_from_global(struct conf **globalc, struct conf **cc)
1353 : {
1354 73 : int i=0;
1355 13140 : for(i=0; i<OPT_MAX; i++)
1356 : {
1357 13067 : if(!(cc[i]->flags & CONF_FLAG_CC_OVERRIDE))
1358 8468 : continue;
1359 4599 : switch(cc[i]->conf_type)
1360 : {
1361 : case CT_STRING:
1362 1095 : set_string(cc[i], get_string(globalc[i]));
1363 1095 : break;
1364 : case CT_UINT:
1365 2263 : set_int(cc[i], get_int(globalc[i]));
1366 2263 : break;
1367 : case CT_FLOAT:
1368 0 : set_float(cc[i], get_float(globalc[i]));
1369 0 : break;
1370 : case CT_MODE_T:
1371 0 : set_mode_t(cc[i], get_mode_t(globalc[i]));
1372 0 : break;
1373 : case CT_SSIZE_T:
1374 292 : set_uint64_t(cc[i], get_uint64_t(globalc[i]));
1375 292 : break;
1376 : case CT_E_BURP_MODE:
1377 0 : set_e_burp_mode(cc[i], get_e_burp_mode(globalc[i]));
1378 0 : break;
1379 : case CT_E_PROTOCOL:
1380 73 : set_e_protocol(cc[i], get_e_protocol(globalc[i]));
1381 73 : break;
1382 : case CT_E_RECOVERY_METHOD:
1383 73 : set_e_recovery_method(cc[i], get_e_recovery_method(globalc[i]));
1384 73 : break;
1385 : case CT_E_RSHASH:
1386 73 : set_e_rshash(cc[i], get_e_rshash(globalc[i]));
1387 73 : break;
1388 : case CT_STRLIST:
1389 : // Done later.
1390 : break;
1391 : case CT_CNTR:
1392 : break;
1393 : // No default so that there are warnings if anything
1394 : // was missed.
1395 : }
1396 : }
1397 :
1398 : // If ssl_peer_cn is not set, default it to the client name.
1399 73 : if(!get_string(globalc[OPT_SSL_PEER_CN])
1400 62 : && set_string(cc[OPT_SSL_PEER_CN], get_string(cc[OPT_CNAME])))
1401 : return -1;
1402 :
1403 : return 0;
1404 : }
1405 :
1406 794 : static int append_strlist(struct conf *dst, struct conf *src)
1407 : {
1408 : struct strlist *s;
1409 893 : for(s=get_strlist(src); s; s=s->next)
1410 99 : if(add_to_strlist(dst, s->path, s->flag))
1411 : return -1;
1412 : return 0;
1413 : }
1414 :
1415 : // Instead of adding onto the end of the list, this replaces the list.
1416 69 : static int conf_set_from_global_arg_list_overrides(struct conf **globalc,
1417 : struct conf **cc)
1418 : {
1419 69 : int i=0;
1420 12420 : for(i=0; i<OPT_MAX; i++)
1421 : {
1422 12351 : if(cc[i]->conf_type!=CT_STRLIST) continue;
1423 2829 : if(!(cc[i]->flags & CONF_FLAG_CC_OVERRIDE)) continue;
1424 690 : if(cc[i]->flags & CONF_FLAG_STRLIST_REPLACE)
1425 : {
1426 : // If there was no cc[i] strlist set, use the global.
1427 552 : if(!get_strlist(cc[i])
1428 518 : && append_strlist(cc[i], globalc[i]))
1429 : return -1;
1430 : }
1431 : else
1432 : {
1433 : struct conf tmpconf;
1434 : // A bit painful.
1435 138 : tmpconf.conf_type=cc[i]->conf_type;
1436 138 : tmpconf.flags=cc[i]->flags;
1437 138 : memset(&tmpconf.data, 0, sizeof(tmpconf.data));
1438 138 : if(append_strlist(&tmpconf, globalc[i])
1439 138 : || append_strlist(&tmpconf, cc[i]))
1440 0 : return -1;
1441 138 : set_strlist(cc[i], get_strlist(&tmpconf));
1442 : }
1443 : }
1444 : return 0;
1445 : }
1446 :
1447 44 : static int conf_init_save_cname_and_version(struct conf **cconfs)
1448 : {
1449 44 : int ret=-1;
1450 44 : char *cname=NULL;
1451 44 : char *cversion=NULL;
1452 44 : char *orig_cname=get_string(cconfs[OPT_CNAME]);
1453 44 : char *orig_cversion=get_string(cconfs[OPT_PEER_VERSION]);
1454 :
1455 44 : if((orig_cname && !(cname=strdup_w(orig_cname, __func__)))
1456 44 : || (orig_cversion
1457 10 : && !(cversion=strdup_w(orig_cversion, __func__))))
1458 : goto end;
1459 :
1460 44 : set_string(cconfs[OPT_CNAME], NULL);
1461 44 : set_string(cconfs[OPT_PEER_VERSION], NULL);
1462 44 : if(confs_init(cconfs)) goto end;
1463 44 : set_string(cconfs[OPT_CNAME], cname);
1464 44 : set_string(cconfs[OPT_PEER_VERSION], cversion);
1465 44 : ret=0;
1466 : end:
1467 44 : free_w(&cname);
1468 44 : free_w(&cversion);
1469 44 : return ret;
1470 : }
1471 :
1472 73 : static int do_conf_load_overrides(struct conf **globalcs, struct conf **cconfs,
1473 : const char *path, const char *buf)
1474 : {
1475 : // Some client settings can be globally set in the server conf and
1476 : // overridden in the client specific conf.
1477 73 : if(conf_set_from_global(globalcs, cconfs)) return -1;
1478 73 : if(buf) { if(conf_load_lines_from_buf(buf, cconfs)) return -1; }
1479 73 : else { if(conf_load_lines_from_file(path, cconfs)) return -1; }
1480 69 : if(conf_set_from_global_arg_list_overrides(globalcs, cconfs)
1481 69 : || conf_finalise(cconfs))
1482 : return -1;
1483 : return 0;
1484 : }
1485 :
1486 : #ifndef UTEST
1487 : static
1488 : #endif
1489 29 : int conf_load_overrides(struct conf **globalcs, struct conf **cconfs,
1490 : const char *path)
1491 : {
1492 73 : return do_conf_load_overrides(globalcs, cconfs, path, NULL);
1493 : }
1494 :
1495 133 : int cname_valid(const char *cname)
1496 : {
1497 133 : if(!cname) return 0;
1498 133 : if(cname[0]=='.'
1499 127 : || strchr(cname, '/') // Avoid path attacks.
1500 123 : || strchr(cname, '\\') // Be cautious of backslashes too.
1501 : // I am told that emacs tmp files end with '~'.
1502 122 : || cname[strlen(cname)-1]=='~')
1503 : return 0;
1504 120 : return 1;
1505 : }
1506 :
1507 44 : int conf_load_clientconfdir(struct conf **globalcs, struct conf **cconfs)
1508 : {
1509 44 : int ret=-1;
1510 44 : char *path=NULL;
1511 44 : const char *cname=NULL;
1512 :
1513 44 : if(conf_init_save_cname_and_version(cconfs)) goto end;
1514 44 : cname=get_string(cconfs[OPT_CNAME]);
1515 44 : if(!cname_valid(cname))
1516 : {
1517 0 : logp("client name '%s' is not valid\n", cname);
1518 0 : goto end;
1519 : }
1520 :
1521 44 : if(!(path=prepend_s(get_string(globalcs[OPT_CLIENTCONFDIR]), cname)))
1522 : goto end;
1523 88 : ret=conf_load_overrides(globalcs, cconfs, path);
1524 : end:
1525 44 : free_w(&path);
1526 44 : return ret;
1527 : }
1528 :
1529 111 : static int do_load_global_only(struct conf **globalcs,
1530 : const char *path, const char *buf)
1531 : {
1532 111 : if(set_string(globalcs[OPT_CONFFILE], path)) return -1;
1533 111 : if(buf) { if(conf_load_lines_from_buf(buf, globalcs)) return -1; }
1534 111 : else { if(conf_load_lines_from_file(path, globalcs)) return -1; }
1535 111 : if(conf_finalise(globalcs)
1536 108 : || conf_finalise_global_only(path, globalcs))
1537 : return -1;
1538 : return 0;
1539 :
1540 : }
1541 :
1542 111 : int conf_load_global_only(const char *path, struct conf **globalcs)
1543 : {
1544 111 : return do_load_global_only(globalcs, path, NULL);
1545 : }
1546 :
1547 14 : static int restore_client_allowed(struct conf **cconfs, struct conf **sconfs)
1548 : {
1549 : struct strlist *r;
1550 17 : for(r=get_strlist(sconfs[OPT_SUPER_CLIENTS]); r; r=r->next)
1551 8 : if(!strcmp(r->path, get_string(cconfs[OPT_CNAME])))
1552 : return 2;
1553 12 : for(r=get_strlist(sconfs[OPT_RESTORE_CLIENTS]); r; r=r->next)
1554 10 : if(!strcmp(r->path, get_string(cconfs[OPT_CNAME])))
1555 : return 1;
1556 2 : logp("Access to client is not allowed: %s\n",
1557 : get_string(sconfs[OPT_CNAME]));
1558 2 : return 0;
1559 : }
1560 :
1561 15 : int conf_switch_to_orig_client(struct conf **globalcs,
1562 : struct conf **cconfs, const char *orig_client)
1563 : {
1564 15 : int ret=-1;
1565 15 : int is_super=0;
1566 15 : struct conf **sconfs=NULL;
1567 :
1568 : // If we are already the wanted client, no need to switch.
1569 15 : if(!strcmp(get_string(cconfs[OPT_CNAME]), orig_client))
1570 : return 0;
1571 :
1572 15 : if(!(sconfs=confs_alloc())
1573 15 : || confs_init(sconfs)) goto end;
1574 15 : if(set_string(sconfs[OPT_CNAME], orig_client))
1575 : goto end;
1576 15 : logp("Client wants to switch to client: %s\n",
1577 15 : get_string(sconfs[OPT_CNAME]));
1578 :
1579 15 : if(conf_load_clientconfdir(globalcs, sconfs))
1580 : {
1581 1 : logp("Could not load alternate config: %s",
1582 1 : get_string(sconfs[OPT_CNAME]));
1583 1 : goto end;
1584 : }
1585 14 : set_int(sconfs[OPT_SEND_CLIENT_CNTR],
1586 14 : get_int(cconfs[OPT_SEND_CLIENT_CNTR]));
1587 :
1588 14 : switch(restore_client_allowed(cconfs, sconfs))
1589 : {
1590 : case 1:
1591 : break;
1592 : case 2:
1593 5 : is_super=1;
1594 5 : break;
1595 : default:
1596 : goto end;
1597 : }
1598 :
1599 : // Restore client can never force backup.
1600 12 : set_int(sconfs[OPT_CLIENT_CAN_FORCE_BACKUP], 0);
1601 :
1602 12 : if(is_super)
1603 : {
1604 5 : set_int(sconfs[OPT_CLIENT_CAN_DELETE],
1605 5 : get_int(cconfs[OPT_CLIENT_CAN_DELETE]));
1606 5 : set_int(sconfs[OPT_CLIENT_CAN_DIFF],
1607 5 : get_int(cconfs[OPT_CLIENT_CAN_DIFF]));
1608 5 : set_int(sconfs[OPT_CLIENT_CAN_LIST],
1609 5 : get_int(cconfs[OPT_CLIENT_CAN_LIST]));
1610 5 : set_int(sconfs[OPT_CLIENT_CAN_MONITOR],
1611 5 : get_int(cconfs[OPT_CLIENT_CAN_MONITOR]));
1612 5 : set_int(sconfs[OPT_CLIENT_CAN_RESTORE],
1613 5 : get_int(cconfs[OPT_CLIENT_CAN_RESTORE]));
1614 5 : set_int(sconfs[OPT_CLIENT_CAN_VERIFY],
1615 5 : get_int(cconfs[OPT_CLIENT_CAN_VERIFY]));
1616 : }
1617 : else
1618 : {
1619 : // For the rest of the client_can things, do not allow them on
1620 : // orig_client if we do not have them ourselves.
1621 7 : if(!get_int(cconfs[OPT_CLIENT_CAN_DELETE]))
1622 2 : set_int(sconfs[OPT_CLIENT_CAN_DELETE], 0);
1623 7 : if(!get_int(cconfs[OPT_CLIENT_CAN_DIFF]))
1624 2 : set_int(sconfs[OPT_CLIENT_CAN_DIFF], 0);
1625 7 : if(!get_int(cconfs[OPT_CLIENT_CAN_LIST]))
1626 2 : set_int(sconfs[OPT_CLIENT_CAN_LIST], 0);
1627 7 : if(!get_int(cconfs[OPT_CLIENT_CAN_MONITOR]))
1628 2 : set_int(sconfs[OPT_CLIENT_CAN_MONITOR], 0);
1629 7 : if(!get_int(cconfs[OPT_CLIENT_CAN_RESTORE]))
1630 2 : set_int(sconfs[OPT_CLIENT_CAN_RESTORE], 0);
1631 7 : if(!get_int(cconfs[OPT_CLIENT_CAN_VERIFY]))
1632 2 : set_int(sconfs[OPT_CLIENT_CAN_VERIFY], 0);
1633 : }
1634 :
1635 12 : if(set_string(sconfs[OPT_RESTORE_PATH],
1636 12 : get_string(cconfs[OPT_RESTORE_PATH])))
1637 : goto end;
1638 12 : if(set_string(cconfs[OPT_RESTORE_PATH], NULL))
1639 : goto end;
1640 12 : set_cntr(sconfs[OPT_CNTR], get_cntr(cconfs));
1641 12 : set_cntr(cconfs[OPT_CNTR], NULL);
1642 12 : confs_free_content(cconfs);
1643 12 : confs_init(cconfs);
1644 12 : confs_memcpy(cconfs, sconfs);
1645 12 : confs_null(sconfs);
1646 12 : if(set_string(cconfs[OPT_SUPER_CLIENT],
1647 12 : get_string(cconfs[OPT_CNAME]))) goto end;
1648 12 : if(set_string(cconfs[OPT_ORIG_CLIENT],
1649 12 : get_string(cconfs[OPT_CNAME]))) goto end;
1650 :
1651 12 : logp("Switched to client %s\n", get_string(cconfs[OPT_CNAME]));
1652 12 : ret=0;
1653 : end:
1654 15 : confs_free(&sconfs);
1655 15 : return ret;
1656 : }
1657 :
1658 26 : char *config_default_path(void)
1659 : {
1660 : static char path[256]="";
1661 : #ifdef HAVE_WIN32
1662 : char *pfenv=NULL;
1663 :
1664 : // Burp used to always install to 'C:/Program Files/Burp/', but as
1665 : // of 1.3.11, it changed to %PROGRAMFILES%. Still want the old way
1666 : // to work though. So check %PROGRAMFILES% first, then fall back.
1667 : if((pfenv=getenv("PROGRAMFILES")))
1668 : {
1669 : struct stat statp;
1670 : snprintf(path, sizeof(path), "%s/%s/%s.conf",
1671 : pfenv, PACKAGE_NAME, PACKAGE_TARNAME);
1672 : if(!lstat(path, &statp)
1673 : && !S_ISDIR(statp.st_mode))
1674 : return path;
1675 : }
1676 : snprintf(path, sizeof(path), "C:/Program Files/%s/%s.conf",
1677 : PACKAGE_NAME, PACKAGE_TARNAME);
1678 : #else
1679 26 : snprintf(path, sizeof(path), "%s/%s.conf",
1680 : SYSCONFDIR, PACKAGE_TARNAME);
1681 : #endif
1682 26 : return path;
1683 : }
|