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