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