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