Line data Source code
1 : #include "burp.h"
2 : #include "strlist.h"
3 : #include "conf.h"
4 : #include "log.h"
5 : #include "alloc.h"
6 : #include "cntr.h"
7 : #include "strlist.h"
8 : #include "prepend.h"
9 : #include "server/dpth.h"
10 :
11 : #include <assert.h>
12 :
13 100 : enum burp_mode str_to_burp_mode(const char *str)
14 : {
15 100 : if(!strcmp(str, "server"))
16 : return BURP_MODE_SERVER;
17 53 : else if(!strcmp(str, "client"))
18 : return BURP_MODE_CLIENT;
19 0 : logp("Unknown mode setting: %s\n", str);
20 0 : return BURP_MODE_UNSET;
21 : }
22 :
23 : static const char *burp_mode_to_str(enum burp_mode bm)
24 : {
25 : switch(bm)
26 : {
27 : case BURP_MODE_UNSET: return "unset";
28 : case BURP_MODE_SERVER: return "server";
29 : case BURP_MODE_CLIENT: return "client";
30 : default: return "unknown";
31 : }
32 : }
33 :
34 1 : enum recovery_method str_to_recovery_method(const char *str)
35 : {
36 1 : if(!strcmp(str, "delete"))
37 : return RECOVERY_METHOD_DELETE;
38 1 : else if(!strcmp(str, "resume"))
39 : return RECOVERY_METHOD_RESUME;
40 0 : logp("Unknown working_dir_recovery_method setting: %s\n", str);
41 0 : return RECOVERY_METHOD_UNSET;
42 : }
43 :
44 0 : const char *recovery_method_to_str(enum recovery_method r)
45 : {
46 0 : switch(r)
47 : {
48 : case RECOVERY_METHOD_DELETE: return "delete";
49 0 : case RECOVERY_METHOD_RESUME: return "resume";
50 0 : default: return "unknown";
51 : }
52 : }
53 :
54 0 : const char *rshash_to_str(enum rshash r)
55 : {
56 : switch(r)
57 : {
58 : case RSHASH_UNSET: return "unset";
59 : case RSHASH_MD4: return "md4";
60 : case RSHASH_BLAKE2: return "blake2";
61 : default: return "unknown";
62 : }
63 : }
64 :
65 14 : enum protocol str_to_protocol(const char *str)
66 : {
67 14 : if(!strcmp(str, "0"))
68 : return PROTO_AUTO;
69 14 : else if(!strcmp(str, "1"))
70 : return PROTO_1;
71 6 : else if(!strcmp(str, "2"))
72 : return PROTO_2;
73 0 : logp("Unknown protocol setting: %s\n", str);
74 0 : return PROTO_AUTO;
75 : }
76 :
77 4544 : struct strlist *get_strlist(struct conf *conf)
78 : {
79 4544 : assert(conf->conf_type==CT_STRLIST);
80 4544 : return conf->data.sl;
81 : }
82 :
83 3877 : char *get_string(struct conf *conf)
84 : {
85 3877 : assert(conf->conf_type==CT_STRING);
86 3877 : return conf->data.s;
87 : }
88 :
89 2871 : int get_int(struct conf *conf)
90 : {
91 2871 : assert(conf->conf_type==CT_UINT);
92 2871 : return conf->data.i;
93 : }
94 :
95 305 : uint64_t get_uint64_t(struct conf *conf)
96 : {
97 305 : assert(conf->conf_type==CT_SSIZE_T);
98 305 : return conf->data.uint64;
99 : }
100 :
101 1 : float get_float(struct conf *conf)
102 : {
103 1 : assert(conf->conf_type==CT_FLOAT);
104 1 : return conf->data.f;
105 : }
106 :
107 1 : mode_t get_mode_t(struct conf *conf)
108 : {
109 1 : assert(conf->conf_type==CT_MODE_T);
110 1 : return conf->data.mode;
111 : }
112 :
113 258 : enum burp_mode get_e_burp_mode(struct conf *conf)
114 : {
115 258 : assert(conf->conf_type==CT_E_BURP_MODE);
116 258 : return conf->data.burp_mode;
117 : }
118 :
119 55 : enum protocol get_e_protocol(struct conf *conf)
120 : {
121 352 : assert(conf->conf_type==CT_E_PROTOCOL);
122 352 : return conf->data.protocol;
123 : }
124 :
125 297 : enum protocol get_protocol(struct conf **confs)
126 : {
127 594 : return get_e_protocol(confs[OPT_PROTOCOL]);
128 : }
129 :
130 101 : enum recovery_method get_e_recovery_method(struct conf *conf)
131 : {
132 101 : assert(conf->conf_type==CT_E_RECOVERY_METHOD);
133 101 : return conf->data.recovery_method;
134 : }
135 :
136 80 : enum rshash get_e_rshash(struct conf *conf)
137 : {
138 80 : assert(conf->conf_type==CT_E_RSHASH);
139 80 : return conf->data.rshash;
140 : }
141 :
142 489 : struct cntr *get_cntr(struct conf **confs)
143 : {
144 489 : return confs[OPT_CNTR]->data.cntr;
145 : }
146 :
147 23760 : int set_string(struct conf *conf, const char *s)
148 : {
149 23760 : assert(conf->conf_type==CT_STRING);
150 23760 : if(conf->data.s) free_w(&(conf->data.s));
151 23760 : if(s && !(conf->data.s=strdup_w(s, __func__)))
152 : return -1;
153 : return 0;
154 : }
155 :
156 1811 : int set_int(struct conf *conf, unsigned int i)
157 : {
158 23649 : assert(conf->conf_type==CT_UINT);
159 23649 : conf->data.i=i;
160 1811 : return 0;
161 : }
162 :
163 12751 : int set_strlist(struct conf *conf, struct strlist *s)
164 : {
165 12751 : assert(conf->conf_type==CT_STRLIST);
166 12751 : if(conf->data.sl) strlists_free(&conf->data.sl);
167 12751 : conf->data.sl=s;
168 12751 : return 0;
169 : }
170 :
171 0 : int set_float(struct conf *conf, float f)
172 : {
173 358 : assert(conf->conf_type==CT_FLOAT);
174 358 : conf->data.f=f;
175 0 : return 0;
176 : }
177 :
178 100 : int set_e_burp_mode(struct conf *conf, enum burp_mode bm)
179 : {
180 458 : assert(conf->conf_type==CT_E_BURP_MODE);
181 458 : conf->data.burp_mode=bm;
182 100 : return 0;
183 : }
184 :
185 67 : int set_e_protocol(struct conf *conf, enum protocol p)
186 : {
187 562 : assert(conf->conf_type==CT_E_PROTOCOL);
188 562 : conf->data.protocol=p;
189 67 : return 0;
190 : }
191 :
192 137 : int set_protocol(struct conf **confs, enum protocol p)
193 : {
194 274 : return set_e_protocol(confs[OPT_PROTOCOL], p);
195 : }
196 :
197 54 : int set_e_recovery_method(struct conf *conf, enum recovery_method r)
198 : {
199 412 : assert(conf->conf_type==CT_E_RECOVERY_METHOD);
200 412 : conf->data.recovery_method=r;
201 54 : return 0;
202 : }
203 :
204 109 : int set_e_rshash(struct conf *conf, enum rshash r)
205 : {
206 467 : assert(conf->conf_type==CT_E_RSHASH);
207 467 : conf->data.rshash=r;
208 109 : return 0;
209 : }
210 :
211 0 : int set_mode_t(struct conf *conf, mode_t m)
212 : {
213 358 : assert(conf->conf_type==CT_MODE_T);
214 358 : conf->data.mode=m;
215 0 : return 0;
216 : }
217 :
218 215 : int set_uint64_t(struct conf *conf, uint64_t s)
219 : {
220 2363 : assert(conf->conf_type==CT_SSIZE_T);
221 2363 : conf->data.uint64=s;
222 215 : return 0;
223 : }
224 :
225 17 : int set_cntr(struct conf *conf, struct cntr *cntr)
226 : {
227 375 : assert(conf->conf_type==CT_CNTR);
228 375 : conf->data.cntr=cntr;
229 17 : return 0;
230 : }
231 :
232 564 : int add_to_strlist(struct conf *conf, const char *value, int include)
233 : {
234 564 : assert(conf->conf_type==CT_STRLIST);
235 564 : if(conf->flags & CONF_FLAG_STRLIST_SORTED)
236 138 : return strlist_add_sorted(&(conf->data.sl), value, include);
237 : else
238 426 : return strlist_add(&(conf->data.sl), value, include);
239 : }
240 :
241 3 : int add_to_strlist_include_uniq(struct conf *conf, const char *value)
242 : {
243 3 : return strlist_add_sorted_uniq(&(conf->data.sl), value, 1);
244 : }
245 :
246 57876 : void conf_free_content(struct conf *c)
247 : {
248 115752 : if(!c) return;
249 57372 : switch(c->conf_type)
250 : {
251 : case CT_STRING:
252 20237 : free_w(&c->data.s);
253 20237 : break;
254 : case CT_STRLIST:
255 12080 : strlists_free(&c->data.sl);
256 12080 : break;
257 : case CT_CNTR:
258 337 : cntr_free(&c->data.cntr);
259 337 : break;
260 : case CT_FLOAT:
261 : case CT_E_BURP_MODE:
262 : case CT_E_PROTOCOL:
263 : case CT_E_RECOVERY_METHOD:
264 : case CT_E_RSHASH:
265 : case CT_UINT:
266 : case CT_MODE_T:
267 : case CT_SSIZE_T:
268 24718 : memset(&c->data, 0, sizeof(c->data));
269 : break;
270 : }
271 : }
272 :
273 3 : void confs_memcpy(struct conf **dst, struct conf **src)
274 : {
275 3 : int i=0;
276 507 : for(i=0; i<OPT_MAX; i++)
277 : {
278 504 : free_v((void **)&(dst[i]));
279 504 : dst[i]=src[i];
280 : }
281 3 : }
282 :
283 3 : void confs_null(struct conf **confs)
284 : {
285 3 : int i=0;
286 6 : if(!confs) return;
287 504 : for(i=0; i<OPT_MAX; i++) confs[i]=NULL;
288 : }
289 :
290 342 : void confs_free_content(struct conf **confs)
291 : {
292 342 : int i=0;
293 684 : if(!confs) return;
294 57456 : for(i=0; i<OPT_MAX; i++) conf_free_content(confs[i]);
295 : }
296 :
297 : /* Free only stuff related to includes/excludes.
298 : This is so that the server can override them all on the client. */
299 9 : void free_incexcs(struct conf **confs)
300 : {
301 9 : int i=0;
302 18 : if(!confs) return;
303 1512 : for(i=0; i<OPT_MAX; i++)
304 1512 : if(confs[i]->flags & CONF_FLAG_INCEXC)
305 261 : conf_free_content(confs[i]);
306 : }
307 :
308 : static void sc(struct conf *conf, uint8_t flags,
309 : enum conf_type conf_type, const char *field)
310 : {
311 60144 : conf->conf_type=conf_type;
312 60144 : conf->field=field;
313 60144 : conf->flags=flags;
314 60144 : memset(&conf->data, 0, sizeof(conf->data));
315 : }
316 :
317 21122 : static int sc_str(struct conf *conf, const char *def,
318 : uint8_t flags, const char *field)
319 : {
320 21122 : sc(conf, flags, CT_STRING, field);
321 21122 : return set_string(conf, def);
322 : }
323 :
324 21838 : static int sc_int(struct conf *conf, unsigned int def,
325 : uint8_t flags, const char *field)
326 : {
327 21838 : sc(conf, flags, CT_UINT, field);
328 21838 : return set_int(conf, def);
329 : }
330 :
331 12530 : static int sc_lst(struct conf *conf, struct strlist *def,
332 : uint8_t flags, const char *field)
333 : {
334 12530 : sc(conf, flags, CT_STRLIST, field);
335 12530 : return set_strlist(conf, def);
336 : }
337 :
338 358 : static int sc_flt(struct conf *conf, float def,
339 : uint8_t flags, const char *field)
340 : {
341 358 : sc(conf, flags, CT_FLOAT, field);
342 358 : return set_float(conf, def);
343 : }
344 :
345 358 : static int sc_ebm(struct conf *conf, enum burp_mode def,
346 : uint8_t flags, const char *field)
347 : {
348 358 : sc(conf, flags, CT_E_BURP_MODE, field);
349 358 : return set_e_burp_mode(conf, def);
350 : }
351 :
352 358 : static int sc_epr(struct conf *conf, enum protocol def,
353 : uint8_t flags, const char *field)
354 : {
355 358 : sc(conf, flags, CT_E_PROTOCOL, field);
356 358 : return set_e_protocol(conf, def);
357 : }
358 :
359 358 : static int sc_rec(struct conf *conf, enum recovery_method def,
360 : uint8_t flags, const char *field)
361 : {
362 358 : sc(conf, flags, CT_E_RECOVERY_METHOD, field);
363 358 : return set_e_recovery_method(conf, def);
364 : }
365 :
366 358 : static int sc_rsh(struct conf *conf, enum rshash def,
367 : uint8_t flags, const char *field)
368 : {
369 358 : sc(conf, flags, CT_E_RSHASH, field);
370 358 : return set_e_rshash(conf, def);
371 : }
372 :
373 358 : static int sc_mod(struct conf *conf, mode_t def,
374 : uint8_t flags, const char *field)
375 : {
376 358 : sc(conf, flags, CT_MODE_T, field);
377 358 : return set_mode_t(conf, def);
378 : }
379 :
380 2148 : static int sc_u64(struct conf *conf, uint64_t def,
381 : uint8_t flags, const char *field)
382 : {
383 2148 : sc(conf, flags, CT_SSIZE_T, field);
384 2148 : return set_uint64_t(conf, def);
385 : }
386 :
387 358 : static int sc_cntr(struct conf *conf, struct cntr *def,
388 : uint8_t flags, const char *field)
389 : {
390 358 : sc(conf, flags, CT_CNTR, field);
391 358 : return set_cntr(conf, def);
392 : }
393 :
394 60144 : static int reset_conf(struct conf **c, enum conf_opt o)
395 : {
396 : // Do this with a switch statement, so that we get compiler warnings
397 : // if anything is missed.
398 60144 : switch(o)
399 : {
400 : case OPT_BURP_MODE:
401 358 : return sc_ebm(c[o], BURP_MODE_UNSET, 0, "mode");
402 : case OPT_LOCKFILE:
403 358 : return sc_str(c[o], 0, 0, "lockfile");
404 : case OPT_PIDFILE:
405 358 : return sc_str(c[o], 0, 0, "pidfile");
406 : case OPT_SSL_CERT_CA:
407 358 : return sc_str(c[o], 0, 0, "ssl_cert_ca");
408 : case OPT_SSL_CERT:
409 358 : return sc_str(c[o], 0, 0, "ssl_cert");
410 : case OPT_SSL_KEY:
411 358 : return sc_str(c[o], 0, 0, "ssl_key");
412 : case OPT_SSL_KEY_PASSWORD:
413 : // FIX THIS: synonym: ssl_cert_password
414 358 : return sc_str(c[o], 0, 0, "ssl_key_password");
415 : case OPT_SSL_PEER_CN:
416 358 : return sc_str(c[o], 0, 0, "ssl_peer_cn");
417 : case OPT_SSL_CIPHERS:
418 358 : return sc_str(c[o], 0, 0, "ssl_ciphers");
419 : case OPT_SSL_COMPRESSION:
420 358 : return sc_int(c[o], 5, 0, "ssl_compression");
421 : case OPT_RATELIMIT:
422 358 : return sc_flt(c[o], 0, 0, "ratelimit");
423 : case OPT_NETWORK_TIMEOUT:
424 358 : return sc_int(c[o], 60*60*2, 0, "network_timeout");
425 : case OPT_CLIENT_IS_WINDOWS:
426 358 : return sc_int(c[o], 0, 0, "client_is_windows");
427 : case OPT_PEER_VERSION:
428 358 : return sc_str(c[o], 0, 0, "peer_version");
429 : case OPT_ADDRESS:
430 358 : return sc_str(c[o], 0, 0, "address");
431 : case OPT_PORT:
432 358 : return sc_lst(c[o], 0, 0, "port");
433 : case OPT_PORT_BACKUP:
434 358 : return sc_int(c[o], 0, 0, "port_backup");
435 : case OPT_PORT_RESTORE:
436 358 : return sc_int(c[o], 0, 0, "port_restore");
437 : case OPT_PORT_VERIFY:
438 358 : return sc_int(c[o], 0, 0, "port_verify");
439 : case OPT_PORT_LIST:
440 358 : return sc_int(c[o], 0, 0, "port_list");
441 : case OPT_PORT_DELETE:
442 358 : return sc_int(c[o], 0, 0, "port_delete");
443 : case OPT_STATUS_ADDRESS:
444 358 : return sc_str(c[o], 0, 0, "status_address");
445 : case OPT_STATUS_PORT:
446 358 : return sc_lst(c[o], 0, 0, "status_port");
447 : case OPT_SSL_DHFILE:
448 358 : return sc_str(c[o], 0, 0, "ssl_dhfile");
449 : case OPT_MAX_CHILDREN:
450 358 : return sc_lst(c[o], 0, 0, "max_children");
451 : case OPT_MAX_STATUS_CHILDREN:
452 358 : return sc_lst(c[o], 0, 0, "max_status_children");
453 : case OPT_CLIENT_LOCKDIR:
454 358 : return sc_str(c[o], 0, CONF_FLAG_CC_OVERRIDE, "client_lockdir");
455 : case OPT_UMASK:
456 358 : return sc_mod(c[o], 0022, 0, "umask");
457 : case OPT_MAX_HARDLINKS:
458 358 : return sc_int(c[o], 10000, 0, "max_hardlinks");
459 : case OPT_MAX_STORAGE_SUBDIRS:
460 358 : return sc_int(c[o], MAX_STORAGE_SUBDIRS, 0, "max_storage_subdirs");
461 : case OPT_DAEMON:
462 358 : return sc_int(c[o], 1, 0, "daemon");
463 : case OPT_CA_CONF:
464 358 : return sc_str(c[o], 0, 0, "ca_conf");
465 : case OPT_CA_NAME:
466 358 : return sc_str(c[o], 0, 0, "ca_name");
467 : case OPT_CA_SERVER_NAME:
468 358 : return sc_str(c[o], 0, 0, "ca_server_name");
469 : case OPT_CA_BURP_CA:
470 358 : return sc_str(c[o], 0, 0, "ca_" PACKAGE_TARNAME "_ca");
471 : case OPT_CA_CRL:
472 358 : return sc_str(c[o], 0, 0, "ca_crl");
473 : case OPT_CA_CRL_CHECK:
474 358 : return sc_int(c[o], 0, 0, "ca_crl_check");
475 : case OPT_RBLK_MEMORY_MAX:
476 358 : return sc_u64(c[o], 256*1024*1024, // 256 Mb.
477 : CONF_FLAG_CC_OVERRIDE, "rblk_memory_max");
478 : case OPT_MONITOR_LOGFILE:
479 358 : return sc_str(c[o], 0, 0, "monitor_logfile");
480 : case OPT_MONITOR_EXE:
481 358 : return sc_str(c[o], 0, 0, "monitor_exe");
482 : case OPT_CNAME:
483 358 : return sc_str(c[o], 0, 0, "cname");
484 : case OPT_CNAME_LOWERCASE:
485 358 : return sc_int(c[o], 0, 0, "cname_lowercase");
486 : case OPT_CNAME_FQDN:
487 358 : return sc_int(c[o], 1, 0, "cname_fqdn");
488 : case OPT_PASSWORD:
489 358 : return sc_str(c[o], 0, 0, "password");
490 : case OPT_PASSWD:
491 358 : return sc_str(c[o], 0, 0, "passwd");
492 : case OPT_SERVER:
493 358 : return sc_str(c[o], 0, 0, "server");
494 : case OPT_ENCRYPTION_PASSWORD:
495 358 : return sc_str(c[o], 0, 0, "encryption_password");
496 : case OPT_AUTOUPGRADE_OS:
497 358 : return sc_str(c[o], 0, 0, "autoupgrade_os");
498 : case OPT_AUTOUPGRADE_DIR:
499 358 : return sc_str(c[o], 0, 0, "autoupgrade_dir");
500 : case OPT_CA_CSR_DIR:
501 358 : return sc_str(c[o], 0, 0, "ca_csr_dir");
502 : case OPT_RANDOMISE:
503 358 : return sc_int(c[o], 0, 0, "randomise");
504 : case OPT_ENABLED:
505 358 : return sc_int(c[o], 1, CONF_FLAG_CC_OVERRIDE, "enabled");
506 : case OPT_SERVER_CAN_OVERRIDE_INCLUDES:
507 358 : return sc_int(c[o], 1, 0, "server_can_override_includes");
508 : case OPT_BACKUP:
509 358 : return sc_str(c[o], 0, CONF_FLAG_INCEXC_RESTORE, "backup");
510 : case OPT_BACKUP2:
511 358 : return sc_str(c[o], 0, 0, "backup2");
512 : case OPT_RESTOREPREFIX:
513 358 : return sc_str(c[o], 0, CONF_FLAG_INCEXC_RESTORE, "restoreprefix");
514 : case OPT_STRIP_FROM_PATH:
515 358 : return sc_str(c[o], 0, CONF_FLAG_INCEXC_RESTORE, "stripfrompath");
516 : case OPT_BROWSEFILE:
517 358 : return sc_str(c[o], 0, 0, "browsefile");
518 : case OPT_BROWSEDIR:
519 358 : return sc_str(c[o], 0, 0, "browsedir");
520 : case OPT_GLOB_AFTER_SCRIPT_PRE:
521 358 : return sc_int(c[o], 1, 0, "glob_after_script_pre");
522 : case OPT_B_SCRIPT_PRE:
523 358 : return sc_str(c[o], 0, 0, "backup_script_pre");
524 : case OPT_B_SCRIPT_PRE_ARG:
525 358 : return sc_lst(c[o], 0, 0, "backup_script_pre_arg");
526 : case OPT_B_SCRIPT_POST:
527 358 : return sc_str(c[o], 0, 0, "backup_script_post");
528 : case OPT_B_SCRIPT_POST_ARG:
529 358 : return sc_lst(c[o], 0, 0, "backup_script_post_arg");
530 : case OPT_B_SCRIPT_POST_RUN_ON_FAIL:
531 358 : return sc_int(c[o], 0, 0, "backup_script_post_run_on_fail");
532 : case OPT_B_SCRIPT_RESERVED_ARGS:
533 358 : return sc_int(c[o], 1, 0, "backup_script_reserved_args");
534 : case OPT_R_SCRIPT_PRE:
535 358 : return sc_str(c[o], 0, 0, "restore_script_pre");
536 : case OPT_R_SCRIPT_PRE_ARG:
537 358 : return sc_lst(c[o], 0, 0, "restore_script_pre_arg");
538 : case OPT_R_SCRIPT_POST:
539 358 : return sc_str(c[o], 0, 0, "restore_script_post");
540 : case OPT_R_SCRIPT_POST_ARG:
541 358 : return sc_lst(c[o], 0, 0, "restore_script_post_arg");
542 : case OPT_R_SCRIPT_POST_RUN_ON_FAIL:
543 358 : return sc_int(c[o], 0, 0, "restore_script_post_run_on_fail");
544 : case OPT_B_SCRIPT:
545 358 : return sc_str(c[o], 0, 0, "backup_script");
546 : case OPT_B_SCRIPT_ARG:
547 358 : return sc_lst(c[o], 0, 0, "backup_script_arg");
548 : case OPT_R_SCRIPT:
549 358 : return sc_str(c[o], 0, 0, "restore_script");
550 : case OPT_R_SCRIPT_ARG:
551 358 : return sc_lst(c[o], 0, 0, "restore_script_arg");
552 : case OPT_R_SCRIPT_RESERVED_ARGS:
553 358 : return sc_int(c[o], 1, 0, "restore_script_reserved_args");
554 : case OPT_SEND_CLIENT_CNTR:
555 358 : return sc_int(c[o], 0, 0, "send_client_cntr");
556 : case OPT_RESTORE_CLIENT:
557 358 : return sc_str(c[o], 0, 0, "");
558 : case OPT_RESTORE_PATH:
559 358 : return sc_str(c[o], 0, 0, "restore_path");
560 : case OPT_ORIG_CLIENT:
561 358 : return sc_str(c[o], 0, CONF_FLAG_INCEXC_RESTORE, "orig_client");
562 : case OPT_CNTR:
563 358 : return sc_cntr(c[o], 0, 0, "");
564 : case OPT_BREAKPOINT:
565 358 : return sc_int(c[o], 0,
566 : CONF_FLAG_CC_OVERRIDE, "breakpoint");
567 : case OPT_CONFFILE:
568 358 : return sc_str(c[o], 0,
569 : CONF_FLAG_CC_OVERRIDE, "conffile");
570 : case OPT_SYSLOG:
571 358 : return sc_int(c[o], 0,
572 : CONF_FLAG_CC_OVERRIDE, "syslog");
573 : case OPT_STDOUT:
574 358 : return sc_int(c[o], 1,
575 : CONF_FLAG_CC_OVERRIDE, "stdout");
576 : case OPT_PROGRESS_COUNTER:
577 358 : return sc_int(c[o], 0,
578 : CONF_FLAG_CC_OVERRIDE, "progress_counter");
579 : case OPT_USER:
580 358 : return sc_str(c[o], 0,
581 : CONF_FLAG_CC_OVERRIDE, "user");
582 : case OPT_GROUP:
583 358 : return sc_str(c[o], 0,
584 : CONF_FLAG_CC_OVERRIDE, "group");
585 : case OPT_PROTOCOL:
586 358 : return sc_epr(c[o], PROTO_AUTO,
587 : CONF_FLAG_CC_OVERRIDE, "protocol");
588 : case OPT_DIRECTORY:
589 358 : return sc_str(c[o], 0,
590 : CONF_FLAG_CC_OVERRIDE, "directory");
591 : case OPT_TIMESTAMP_FORMAT:
592 358 : return sc_str(c[o], 0,
593 : CONF_FLAG_CC_OVERRIDE, "timestamp_format");
594 : case OPT_CLIENTCONFDIR:
595 358 : return sc_str(c[o], 0,
596 : CONF_FLAG_CC_OVERRIDE, "clientconfdir");
597 : case OPT_FORK:
598 358 : return sc_int(c[o], 1, 0, "fork");
599 : case OPT_DIRECTORY_TREE:
600 358 : return sc_int(c[o], 1,
601 : CONF_FLAG_CC_OVERRIDE, "directory_tree");
602 : case OPT_PASSWORD_CHECK:
603 358 : return sc_int(c[o], 1,
604 : CONF_FLAG_CC_OVERRIDE, "password_check");
605 : case OPT_MANUAL_DELETE:
606 358 : return sc_str(c[o], 0,
607 : CONF_FLAG_CC_OVERRIDE, "manual_delete");
608 : case OPT_MONITOR_BROWSE_CACHE:
609 358 : return sc_int(c[o], 0,
610 : CONF_FLAG_CC_OVERRIDE, "monitor_browse_cache");
611 : case OPT_S_SCRIPT_PRE:
612 358 : return sc_str(c[o], 0,
613 : CONF_FLAG_CC_OVERRIDE, "server_script_pre");
614 : case OPT_S_SCRIPT_PRE_ARG:
615 358 : return sc_lst(c[o], 0,
616 : CONF_FLAG_CC_OVERRIDE|CONF_FLAG_STRLIST_REPLACE, "server_script_pre_arg");
617 : case OPT_S_SCRIPT_PRE_NOTIFY:
618 358 : return sc_int(c[o], 0,
619 : CONF_FLAG_CC_OVERRIDE, "server_script_pre_notify");
620 : case OPT_S_SCRIPT_POST:
621 358 : return sc_str(c[o], 0,
622 : CONF_FLAG_CC_OVERRIDE, "server_script_post");
623 : case OPT_S_SCRIPT_POST_ARG:
624 358 : return sc_lst(c[o], 0,
625 : CONF_FLAG_CC_OVERRIDE|CONF_FLAG_STRLIST_REPLACE, "server_script_post_arg");
626 : case OPT_S_SCRIPT_POST_RUN_ON_FAIL:
627 358 : return sc_int(c[o], 0,
628 : CONF_FLAG_CC_OVERRIDE, "server_script_post_run_on_fail");
629 : case OPT_S_SCRIPT_POST_NOTIFY:
630 358 : return sc_int(c[o], 0,
631 : CONF_FLAG_CC_OVERRIDE, "server_script_post_notify");
632 : case OPT_S_SCRIPT:
633 358 : return sc_str(c[o], 0,
634 : CONF_FLAG_CC_OVERRIDE, "server_script");
635 : case OPT_S_SCRIPT_ARG:
636 358 : return sc_lst(c[o], 0,
637 : CONF_FLAG_CC_OVERRIDE|CONF_FLAG_STRLIST_REPLACE, "server_script_arg");
638 : case OPT_S_SCRIPT_NOTIFY:
639 358 : return sc_int(c[o], 0,
640 : CONF_FLAG_CC_OVERRIDE, "server_script_notify");
641 : case OPT_HARDLINKED_ARCHIVE:
642 358 : return sc_int(c[o], 0,
643 : CONF_FLAG_CC_OVERRIDE, "hardlinked_archive");
644 : case OPT_KEEP:
645 358 : return sc_lst(c[o], 0,
646 : CONF_FLAG_CC_OVERRIDE|CONF_FLAG_STRLIST_REPLACE, "keep");
647 : case OPT_LIBRSYNC:
648 358 : return sc_int(c[o], 1,
649 : CONF_FLAG_CC_OVERRIDE, "librsync");
650 : case OPT_LIBRSYNC_MAX_SIZE:
651 358 : return sc_u64(c[o], 0,
652 : CONF_FLAG_CC_OVERRIDE, "librsync_max_size");
653 : case OPT_COMPRESSION:
654 358 : return sc_int(c[o], 9,
655 : CONF_FLAG_CC_OVERRIDE, "compression");
656 : case OPT_VERSION_WARN:
657 358 : return sc_int(c[o], 1,
658 : CONF_FLAG_CC_OVERRIDE, "version_warn");
659 : case OPT_PATH_LENGTH_WARN:
660 358 : return sc_int(c[o], 1,
661 : CONF_FLAG_CC_OVERRIDE, "path_length_warn");
662 : case OPT_HARD_QUOTA:
663 358 : return sc_u64(c[o], 0,
664 : CONF_FLAG_CC_OVERRIDE, "hard_quota");
665 : case OPT_SOFT_QUOTA:
666 358 : return sc_u64(c[o], 0,
667 : CONF_FLAG_CC_OVERRIDE, "soft_quota");
668 : case OPT_TIMER_SCRIPT:
669 358 : return sc_str(c[o], 0,
670 : CONF_FLAG_CC_OVERRIDE, "timer_script");
671 : case OPT_TIMER_ARG:
672 358 : return sc_lst(c[o], 0,
673 : CONF_FLAG_CC_OVERRIDE|CONF_FLAG_STRLIST_REPLACE, "timer_arg");
674 : case OPT_LABEL:
675 358 : return sc_lst(c[o], 0,
676 : CONF_FLAG_CC_OVERRIDE|CONF_FLAG_STRLIST_REPLACE, "label");
677 : case OPT_N_SUCCESS_SCRIPT:
678 358 : return sc_str(c[o], 0,
679 : CONF_FLAG_CC_OVERRIDE, "notify_success_script");
680 : case OPT_N_SUCCESS_ARG:
681 358 : return sc_lst(c[o], 0,
682 : CONF_FLAG_CC_OVERRIDE|CONF_FLAG_STRLIST_REPLACE, "notify_success_arg");
683 : case OPT_N_SUCCESS_WARNINGS_ONLY:
684 358 : return sc_int(c[o], 0,
685 : CONF_FLAG_CC_OVERRIDE, "notify_success_warnings_only");
686 : case OPT_N_SUCCESS_CHANGES_ONLY:
687 358 : return sc_int(c[o], 0,
688 : CONF_FLAG_CC_OVERRIDE, "notify_success_changes_only");
689 : case OPT_N_FAILURE_SCRIPT:
690 358 : return sc_str(c[o], 0,
691 : CONF_FLAG_CC_OVERRIDE, "notify_failure_script");
692 : case OPT_N_FAILURE_ARG:
693 358 : return sc_lst(c[o], 0,
694 : CONF_FLAG_CC_OVERRIDE|CONF_FLAG_STRLIST_REPLACE, "notify_failure_arg");
695 : case OPT_RESTORE_CLIENTS:
696 358 : return sc_lst(c[o], 0,
697 : CONF_FLAG_CC_OVERRIDE|CONF_FLAG_STRLIST_SORTED, "restore_client");
698 : case OPT_DEDUP_GROUP:
699 358 : return sc_str(c[o], 0,
700 : CONF_FLAG_CC_OVERRIDE, "dedup_group");
701 : case OPT_CLIENT_CAN_DELETE:
702 358 : return sc_int(c[o], 1,
703 : CONF_FLAG_CC_OVERRIDE, "client_can_delete");
704 : case OPT_CLIENT_CAN_DIFF:
705 358 : return sc_int(c[o], 1,
706 : CONF_FLAG_CC_OVERRIDE, "client_can_diff");
707 : case OPT_CLIENT_CAN_FORCE_BACKUP:
708 358 : return sc_int(c[o], 1,
709 : CONF_FLAG_CC_OVERRIDE, "client_can_force_backup");
710 : case OPT_CLIENT_CAN_LIST:
711 358 : return sc_int(c[o], 1,
712 : CONF_FLAG_CC_OVERRIDE, "client_can_list");
713 : case OPT_CLIENT_CAN_RESTORE:
714 358 : return sc_int(c[o], 1,
715 : CONF_FLAG_CC_OVERRIDE, "client_can_restore");
716 : case OPT_CLIENT_CAN_VERIFY:
717 358 : return sc_int(c[o], 1,
718 : CONF_FLAG_CC_OVERRIDE, "client_can_verify");
719 : case OPT_SERVER_CAN_RESTORE:
720 358 : return sc_int(c[o], 1,
721 : CONF_FLAG_CC_OVERRIDE, "server_can_restore");
722 : case OPT_WORKING_DIR_RECOVERY_METHOD:
723 358 : return sc_rec(c[o], RECOVERY_METHOD_DELETE,
724 : CONF_FLAG_CC_OVERRIDE, "working_dir_recovery_method");
725 : case OPT_RSHASH:
726 358 : return sc_rsh(c[o], RSHASH_UNSET,
727 : CONF_FLAG_CC_OVERRIDE, "");
728 : case OPT_MESSAGE:
729 358 : return sc_int(c[o], 0,
730 : CONF_FLAG_CC_OVERRIDE, "");
731 : case OPT_INCEXCDIR:
732 : // This is a combination of OPT_INCLUDE and OPT_EXCLUDE, so
733 : // no field name set for now.
734 358 : return sc_lst(c[o], 0, CONF_FLAG_STRLIST_SORTED, "incexcdir");
735 : case OPT_STARTDIR:
736 : // This is a combination of OPT_INCLUDE and OPT_EXCLUDE, so
737 : // no field name set for now.
738 : // Deliberately not using CONF_FLAG_STRLIST_SORTED because of the
739 : // way finalise_start_dirs() works.
740 358 : return sc_lst(c[o], 0, 0, "startdir");
741 : case OPT_INCLUDE:
742 : // Combines with OPT_EXCLUDE to make OPT_INCEXCDIR and OPT_STARTDIR.
743 358 : return sc_lst(c[o], 0,
744 : CONF_FLAG_INCEXC|CONF_FLAG_INCEXC_RESTORE|CONF_FLAG_STRLIST_SORTED, "include");
745 : case OPT_EXCLUDE:
746 : // Combines with OPT_INCLUDE to make OPT_INCEXCDIR and OPT_STARTDIR.
747 358 : return sc_lst(c[o], 0,
748 : CONF_FLAG_INCEXC|CONF_FLAG_INCEXC_RESTORE|CONF_FLAG_STRLIST_SORTED, "exclude");
749 : case OPT_FSCHGDIR:
750 358 : return sc_lst(c[o], 0,
751 : CONF_FLAG_INCEXC|CONF_FLAG_STRLIST_SORTED, "cross_filesystem");
752 : case OPT_NOBACKUP:
753 358 : return sc_lst(c[o], 0,
754 : CONF_FLAG_INCEXC|CONF_FLAG_STRLIST_SORTED, "nobackup");
755 : case OPT_INCEXT:
756 358 : return sc_lst(c[o], 0,
757 : CONF_FLAG_INCEXC|CONF_FLAG_STRLIST_SORTED, "include_ext");
758 : case OPT_EXCEXT:
759 358 : return sc_lst(c[o], 0,
760 : CONF_FLAG_INCEXC|CONF_FLAG_STRLIST_SORTED, "exclude_ext");
761 : case OPT_INCREG:
762 358 : return sc_lst(c[o], 0,
763 : CONF_FLAG_INCEXC|CONF_FLAG_STRLIST_SORTED, "include_regex");
764 : case OPT_EXCREG:
765 358 : return sc_lst(c[o], 0,
766 : CONF_FLAG_INCEXC|CONF_FLAG_STRLIST_SORTED, "exclude_regex");
767 : case OPT_EXCFS:
768 358 : return sc_lst(c[o], 0,
769 : CONF_FLAG_INCEXC|CONF_FLAG_STRLIST_SORTED, "exclude_fs");
770 : case OPT_INCFS:
771 358 : return sc_lst(c[o], 0,
772 : CONF_FLAG_INCEXC|CONF_FLAG_STRLIST_SORTED, "include_fs");
773 : case OPT_EXCOM:
774 358 : return sc_lst(c[o], 0,
775 : CONF_FLAG_INCEXC|CONF_FLAG_STRLIST_SORTED, "exclude_comp");
776 : case OPT_INCGLOB:
777 358 : return sc_lst(c[o], 0,
778 : CONF_FLAG_INCEXC|CONF_FLAG_STRLIST_SORTED, "include_glob");
779 : case OPT_CROSS_ALL_FILESYSTEMS:
780 358 : return sc_int(c[o], 0, CONF_FLAG_INCEXC, "cross_all_filesystems");
781 : case OPT_READ_ALL_FIFOS:
782 358 : return sc_int(c[o], 0, CONF_FLAG_INCEXC, "read_all_fifos");
783 : case OPT_FIFOS:
784 358 : return sc_lst(c[o], 0, CONF_FLAG_INCEXC, "read_fifo");
785 : case OPT_READ_ALL_BLOCKDEVS:
786 358 : return sc_int(c[o], 0, CONF_FLAG_INCEXC, "read_all_blockdevs");
787 : case OPT_BLOCKDEVS:
788 358 : return sc_lst(c[o], 0, CONF_FLAG_INCEXC, "read_blockdev");
789 : case OPT_MIN_FILE_SIZE:
790 358 : return sc_u64(c[o], 0, CONF_FLAG_INCEXC, "min_file_size");
791 : case OPT_MAX_FILE_SIZE:
792 358 : return sc_u64(c[o], 0, CONF_FLAG_INCEXC, "max_file_size");
793 : case OPT_SPLIT_VSS:
794 358 : return sc_int(c[o], 0, CONF_FLAG_INCEXC, "split_vss");
795 : case OPT_STRIP_VSS:
796 358 : return sc_int(c[o], 0, CONF_FLAG_INCEXC, "strip_vss");
797 : case OPT_VSS_DRIVES:
798 358 : return sc_str(c[o], 0, CONF_FLAG_INCEXC, "vss_drives");
799 : case OPT_ACL:
800 358 : return sc_int(c[o], 1, CONF_FLAG_INCEXC, "acl");
801 : case OPT_XATTR:
802 358 : return sc_int(c[o], 1, CONF_FLAG_INCEXC, "xattr");
803 : case OPT_ATIME:
804 358 : return sc_int(c[o], 0, CONF_FLAG_INCEXC, "atime");
805 : case OPT_SCAN_PROBLEM_RAISES_ERROR:
806 358 : return sc_int(c[o], 0, CONF_FLAG_INCEXC, "scan_problem_raises_error");
807 : case OPT_OVERWRITE:
808 358 : return sc_int(c[o], 0,
809 : CONF_FLAG_INCEXC|CONF_FLAG_INCEXC_RESTORE, "overwrite");
810 : case OPT_STRIP:
811 358 : return sc_int(c[o], 0,
812 : CONF_FLAG_INCEXC|CONF_FLAG_INCEXC_RESTORE, "strip");
813 : case OPT_REGEX:
814 358 : return sc_str(c[o], 0,
815 : CONF_FLAG_INCEXC|CONF_FLAG_INCEXC_RESTORE, "regex");
816 : case OPT_MAX:
817 : return 0;
818 : // No default, so we get compiler warnings if something was missed.
819 : }
820 0 : return -1;
821 : }
822 :
823 0 : static int set_conf(struct conf *c, const char *value)
824 : {
825 0 : switch(c->conf_type)
826 : {
827 : case CT_STRING:
828 0 : if(set_string(c, value)) return 1;
829 : break;
830 : case CT_FLOAT:
831 0 : if(set_float(c, atof(value))) return 1;
832 : break;
833 : case CT_E_BURP_MODE:
834 : {
835 : enum burp_mode bm;
836 0 : bm=str_to_burp_mode(value);
837 0 : if(bm==BURP_MODE_UNSET
838 : || set_e_burp_mode(c, bm))
839 : return 1;
840 : break;
841 : }
842 : case CT_E_RECOVERY_METHOD:
843 : {
844 : enum recovery_method rm;
845 0 : rm=str_to_recovery_method(value);
846 0 : if(rm==RECOVERY_METHOD_UNSET
847 : || set_e_recovery_method(c, rm))
848 : return 1;
849 : break;
850 : }
851 : // FIX THIS
852 : case CT_E_RSHASH:
853 : case CT_UINT:
854 : case CT_MODE_T:
855 : case CT_SSIZE_T:
856 : case CT_E_PROTOCOL:
857 : case CT_STRLIST:
858 : case CT_CNTR:
859 : break;
860 : }
861 : return 0;
862 : }
863 :
864 0 : int conf_set(struct conf **confs, const char *field, const char *value)
865 : {
866 0 : int i=0;
867 0 : int r=0;
868 0 : for(i=0; i<OPT_MAX; i++)
869 : {
870 0 : if(strcmp(confs[i]->field, field)) continue;
871 0 : r+=set_conf(confs[i], value);
872 : }
873 0 : return r;
874 : }
875 :
876 0 : static char *conf_data_to_str(struct conf *conf)
877 : {
878 0 : size_t l=256;
879 0 : char *ret=NULL;
880 0 : if(!(ret=(char *)calloc_w(1, l, __func__))) return ret;
881 0 : *ret='\0';
882 0 : switch(conf->conf_type)
883 : {
884 : case CT_STRING:
885 0 : snprintf(ret, l, "%32s: %s\n", conf->field,
886 : get_string(conf)?get_string(conf):"");
887 : break;
888 : case CT_FLOAT:
889 0 : snprintf(ret, l, "%32s: %g\n", conf->field,
890 : get_float(conf));
891 : break;
892 : case CT_E_BURP_MODE:
893 0 : snprintf(ret, l, "%32s: %s\n", conf->field,
894 : burp_mode_to_str(get_e_burp_mode(conf)));
895 : break;
896 : case CT_E_PROTOCOL:
897 0 : snprintf(ret, l, "%32s: %d\n", conf->field,
898 : get_e_protocol(conf));
899 : break;
900 : case CT_E_RECOVERY_METHOD:
901 0 : snprintf(ret, l, "%32s: %s\n", conf->field,
902 : recovery_method_to_str(
903 : get_e_recovery_method(conf)));
904 : break;
905 : case CT_E_RSHASH:
906 0 : snprintf(ret, l, "%32s: %s\n", conf->field,
907 : rshash_to_str(get_e_rshash(conf)));
908 : break;
909 : case CT_UINT:
910 0 : snprintf(ret, l, "%32s: %u\n", conf->field,
911 : get_int(conf));
912 : break;
913 : case CT_STRLIST:
914 : {
915 0 : int count=0;
916 0 : char piece[256]="";
917 : struct strlist *s;
918 0 : for(s=get_strlist(conf); s; s=s->next)
919 : {
920 0 : snprintf(piece, sizeof(piece),
921 : "%32s: %s\n", conf->field, s->path);
922 0 : if(astrcat(&ret, piece, __func__))
923 0 : return ret;
924 0 : count++;
925 : }
926 0 : if(!count)
927 0 : snprintf(ret, l, "%32s:\n", conf->field);
928 0 : break;
929 : }
930 : case CT_MODE_T:
931 0 : snprintf(ret, l, "%32s: %o\n", conf->field,
932 : get_mode_t(conf));
933 : break;
934 : case CT_SSIZE_T:
935 : // FIX THIS
936 : break;
937 : case CT_CNTR:
938 : break;
939 : }
940 0 : return ret;
941 :
942 : }
943 :
944 323 : struct conf **confs_alloc(void)
945 : {
946 323 : int i=0;
947 323 : struct conf **confs=NULL;
948 323 : if(!(confs=(struct conf **)
949 : calloc_w(OPT_MAX, sizeof(struct conf *), __func__)))
950 : return NULL;
951 54264 : for(i=0; i<OPT_MAX; i++)
952 : {
953 : struct conf *c;
954 54264 : if(!(c=(struct conf *)
955 : calloc_w(1, sizeof(struct conf), __func__)))
956 : return NULL;
957 54264 : confs[i]=c;
958 : }
959 : return confs;
960 : };
961 :
962 358 : void confs_free(struct conf ***confs)
963 : {
964 358 : int i=0;
965 716 : if(!confs || !*confs) return;
966 323 : confs_free_content(*confs);
967 54587 : for(i=0; i<OPT_MAX; i++)
968 54264 : free_v((void **)&((*confs)[i]));
969 323 : free_v((void **)confs);
970 323 : *confs=NULL;
971 : }
972 :
973 358 : int confs_init(struct conf **confs)
974 : {
975 358 : int i=0;
976 60502 : for(i=0; i<OPT_MAX; i++)
977 60144 : if(reset_conf(confs, (enum conf_opt)i))
978 : return -1;
979 : return 0;
980 : }
981 :
982 0 : int confs_dump(struct conf **confs, int flags)
983 : {
984 0 : int i=0;
985 0 : char *str=NULL;
986 0 : for(i=0; i<OPT_MAX; i++)
987 : {
988 0 : if(flags && !(flags & confs[i]->flags)) continue;
989 : // if(!*(confs[i]->field)) continue;
990 0 : str=conf_data_to_str(confs[i]);
991 0 : if(str && *str) printf("%s", str);
992 0 : free_w(&str);
993 : }
994 0 : return 0;
995 : }
|