Spelling fixes from a Fossies run done by Jens.
[rsync.git] / loadparm.c
1 /*
2  * This program is free software; you can redistribute it and/or modify
3  * it under the terms of the GNU General Public License as published by
4  * the Free Software Foundation; either version 3 of the License, or
5  * (at your option) any later version.
6  *
7  * This program is distributed in the hope that it will be useful,
8  * but WITHOUT ANY WARRANTY; without even the implied warranty of
9  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
10  * GNU General Public License for more details.
11  *
12  * You should have received a copy of the GNU General Public License along
13  * with this program; if not, visit the http://fsf.org website.
14  *
15  * This is based on loadparm.c from Samba, written by Andrew Tridgell
16  * and Karl Auer.  Some of the changes are:
17  *
18  * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
19  * Copyright (C) 2003-2020 Wayne Davison
20  */
21
22 /* Load parameters.
23  *
24  *  This module provides suitable callback functions for the params
25  *  module. It builds the internal table of section details which is
26  *  then used by the rest of the server.
27  *
28  * To add a parameter:
29  *
30  * 1) add it to the global_vars or local_vars structure definition
31  * 2) add it to the parm_table
32  * 3) add it to the list of available functions (eg: using FN_GLOBAL_STRING())
33  * 4) initialise it in the Defaults static structure
34  *
35  * Notes:
36  *   The configuration file is processed sequentially for speed. For this
37  *   reason, there is a fair bit of sequence-dependent code here - ie., code
38  *   which assumes that certain things happen before others. In particular, the
39  *   code which happens at the boundary between sections is delicately poised,
40  *   so be careful!
41  */
42
43 #include "rsync.h"
44 #include "itypes.h"
45
46 extern item_list dparam_list;
47
48 #define strequal(a, b) (strcasecmp(a, b)==0)
49 #define BOOLSTR(b) ((b) ? "Yes" : "No")
50
51 #ifndef LOG_DAEMON
52 #define LOG_DAEMON 0
53 #endif
54
55 #define DEFAULT_DONT_COMPRESS "*.gz *.zip *.z *.rpm *.deb *.iso *.bz2" \
56         " *.t[gb]z *.7z *.mp[34] *.mov *.avi *.ogg *.jpg *.jpeg *.png" \
57         " *.lzo *.rzip *.lzma *.rar *.ace *.gpg *.xz *.txz *.lz *.tlz"
58
59 /* the following are used by loadparm for option lists */
60 typedef enum {
61         P_BOOL, P_BOOLREV, P_CHAR, P_INTEGER,
62         P_OCTAL, P_PATH, P_STRING, P_ENUM
63 } parm_type;
64
65 typedef enum {
66         P_LOCAL, P_GLOBAL, P_NONE
67 } parm_class;
68
69 struct enum_list {
70         int value;
71         char *name;
72 };
73
74 struct parm_struct {
75         char *label;
76         parm_type type;
77         parm_class class;
78         void *ptr;
79         struct enum_list *enum_list;
80         unsigned flags;
81 };
82
83 #ifndef GLOBAL_NAME
84 #define GLOBAL_NAME "global"
85 #endif
86
87 /* some helpful bits */
88 #define iSECTION(i) ((local_vars*)section_list.items)[i]
89 #define LP_SNUM_OK(i) ((i) >= 0 && (i) < (int)section_list.count)
90 #define SECTION_PTR(s, p) (((char*)(s)) + (ptrdiff_t)(((char*)(p))-(char*)&Vars.l))
91
92 /* This structure describes global (ie., server-wide) parameters. */
93 typedef struct {
94         char *bind_address;
95         char *daemon_chroot;
96         char *daemon_gid;
97         char *daemon_uid;
98         char *motd_file;
99         char *pid_file;
100         char *socket_options;
101
102         /* Each _EXP var tracks if the associated char* var has been expanded yet or not. */
103         BOOL bind_address_EXP;
104         BOOL daemon_chroot_EXP;
105         BOOL daemon_gid_EXP;
106         BOOL daemon_uid_EXP;
107         BOOL motd_file_EXP;
108         BOOL pid_file_EXP;
109         BOOL socket_options_EXP;
110
111         int listen_backlog;
112         int rsync_port;
113 } global_vars;
114
115 /* This structure describes a single section.  Their order must match the
116  * initializers below, which you can accomplish by keeping each sub-section
117  * sorted.  (e.g. in vim, just visually select each subsection and use !sort.)
118  * NOTE: the char* variables MUST all remain at the start of the struct! */
119 typedef struct {
120         char *auth_users;
121         char *charset;
122         char *comment;
123         char *dont_compress;
124         char *exclude;
125         char *exclude_from;
126         char *filter;
127         char *gid;
128         char *hosts_allow;
129         char *hosts_deny;
130         char *include;
131         char *include_from;
132         char *incoming_chmod;
133         char *lock_file;
134         char *log_file;
135         char *log_format;
136         char *name;
137         char *outgoing_chmod;
138         char *path;
139         char *postxfer_exec;
140         char *prexfer_exec;
141         char *refuse_options;
142         char *secrets_file;
143         char *syslog_tag;
144         char *temp_dir;
145         char *uid;
146
147         /* Each _EXP var tracks if the associated char* var has been expanded yet or not. */
148         BOOL auth_users_EXP;
149         BOOL charset_EXP;
150         BOOL comment_EXP;
151         BOOL dont_compress_EXP;
152         BOOL exclude_EXP;
153         BOOL exclude_from_EXP;
154         BOOL filter_EXP;
155         BOOL gid_EXP;
156         BOOL hosts_allow_EXP;
157         BOOL hosts_deny_EXP;
158         BOOL include_EXP;
159         BOOL include_from_EXP;
160         BOOL incoming_chmod_EXP;
161         BOOL lock_file_EXP;
162         BOOL log_file_EXP;
163         BOOL log_format_EXP;
164         BOOL name_EXP;
165         BOOL outgoing_chmod_EXP;
166         BOOL path_EXP;
167         BOOL postxfer_exec_EXP;
168         BOOL prexfer_exec_EXP;
169         BOOL refuse_options_EXP;
170         BOOL secrets_file_EXP;
171         BOOL syslog_tag_EXP;
172         BOOL temp_dir_EXP;
173         BOOL uid_EXP;
174
175         int max_connections;
176         int max_verbosity;
177         int syslog_facility;
178         int timeout;
179
180         BOOL fake_super;
181         BOOL forward_lookup;
182         BOOL ignore_errors;
183         BOOL ignore_nonreadable;
184         BOOL list;
185         BOOL munge_symlinks;
186         BOOL numeric_ids;
187         BOOL read_only;
188         BOOL reverse_lookup;
189         BOOL strict_modes;
190         BOOL transfer_logging;
191         BOOL use_chroot;
192         BOOL write_only;
193 } local_vars;
194
195 /* This structure describes the global variables (g) as well as the globally
196  * specified values of the local variables (l), which are used when modules
197  * don't specify their own values. */
198 typedef struct {
199         global_vars g;
200         local_vars l;
201 } all_vars;
202
203 /* The application defaults for all the variables.  "Defaults" is
204  * used to re-initialize "Vars" before each config-file read.
205  *
206  * In order to keep these sorted in the same way as the structure
207  * above, use the variable name in the leading comment, including a
208  * trailing ';' (to avoid a sorting problem with trailing digits). */
209 static const all_vars Defaults = {
210  /* ==== global_vars ==== */
211  {
212  /* bind_address; */            NULL,
213  /* daemon_chroot; */           NULL,
214  /* daemon_gid; */              NULL,
215  /* daemon_uid; */              NULL,
216  /* motd_file; */               NULL,
217  /* pid_file; */                NULL,
218  /* socket_options; */          NULL,
219
220  /* bind_address_EXP; */        False,
221  /* daemon_chroot_EXP; */       False,
222  /* daemon_gid_EXP; */          False,
223  /* daemon_uid_EXP; */          False,
224  /* motd_file_EXP; */           False,
225  /* pid_file_EXP; */            False,
226  /* socket_options_EXP; */      False,
227
228  /* listen_backlog; */          5,
229  /* rsync_port; */              0,
230  },
231
232  /* ==== local_vars ==== */
233  {
234  /* auth_users; */              NULL,
235  /* charset; */                 NULL,
236  /* comment; */                 NULL,
237  /* dont_compress; */           DEFAULT_DONT_COMPRESS,
238  /* exclude; */                 NULL,
239  /* exclude_from; */            NULL,
240  /* filter; */                  NULL,
241  /* gid; */                     NULL,
242  /* hosts_allow; */             NULL,
243  /* hosts_deny; */              NULL,
244  /* include; */                 NULL,
245  /* include_from; */            NULL,
246  /* incoming_chmod; */          NULL,
247  /* lock_file; */               DEFAULT_LOCK_FILE,
248  /* log_file; */                NULL,
249  /* log_format; */              "%o %h [%a] %m (%u) %f %l",
250  /* name; */                    NULL,
251  /* outgoing_chmod; */          NULL,
252  /* path; */                    NULL,
253  /* postxfer_exec; */           NULL,
254  /* prexfer_exec; */            NULL,
255  /* refuse_options; */          NULL,
256  /* secrets_file; */            NULL,
257  /* syslog_tag; */              "rsyncd",
258  /* temp_dir; */                NULL,
259  /* uid; */                     NULL,
260
261  /* auth_users_EXP; */          False,
262  /* charset_EXP; */             False,
263  /* comment_EXP; */             False,
264  /* dont_compress_EXP; */       False,
265  /* exclude_EXP; */             False,
266  /* exclude_from_EXP; */        False,
267  /* filter_EXP; */              False,
268  /* gid_EXP; */                 False,
269  /* hosts_allow_EXP; */         False,
270  /* hosts_deny_EXP; */          False,
271  /* include_EXP; */             False,
272  /* include_from_EXP; */        False,
273  /* incoming_chmod_EXP; */      False,
274  /* lock_file_EXP; */           False,
275  /* log_file_EXP; */            False,
276  /* log_format_EXP; */          False,
277  /* name_EXP; */                False,
278  /* outgoing_chmod_EXP; */      False,
279  /* path_EXP; */                False,
280  /* postxfer_exec_EXP; */       False,
281  /* prexfer_exec_EXP; */        False,
282  /* refuse_options_EXP; */      False,
283  /* secrets_file_EXP; */        False,
284  /* syslog_tag_EXP; */          False,
285  /* temp_dir_EXP; */            False,
286  /* uid_EXP; */                 False,
287
288  /* max_connections; */         0,
289  /* max_verbosity; */           1,
290  /* syslog_facility; */         LOG_DAEMON,
291  /* timeout; */                 0,
292
293  /* fake_super; */              False,
294  /* forward_lookup; */          True,
295  /* ignore_errors; */           False,
296  /* ignore_nonreadable; */      False,
297  /* list; */                    True,
298  /* munge_symlinks; */          (BOOL)-1,
299  /* numeric_ids; */             (BOOL)-1,
300  /* read_only; */               True,
301  /* reverse_lookup; */          True,
302  /* strict_modes; */            True,
303  /* transfer_logging; */        False,
304  /* use_chroot; */              True,
305  /* write_only; */              False,
306  }
307 };
308
309 /* The currently configured values for all the variables. */
310 static all_vars Vars;
311
312 /* Stack of "Vars" values used by the &include directive. */
313 static item_list Vars_stack = EMPTY_ITEM_LIST;
314
315 /* The array of section values that holds all the defined modules. */
316 static item_list section_list = EMPTY_ITEM_LIST;
317
318 static int iSectionIndex = -1;
319 static BOOL bInGlobalSection = True;
320
321 #define NUMPARAMETERS (sizeof (parm_table) / sizeof (struct parm_struct))
322
323 static struct enum_list enum_facilities[] = {
324 #ifdef LOG_AUTH
325         { LOG_AUTH, "auth" },
326 #endif
327 #ifdef LOG_AUTHPRIV
328         { LOG_AUTHPRIV, "authpriv" },
329 #endif
330 #ifdef LOG_CRON
331         { LOG_CRON, "cron" },
332 #endif
333 #ifdef LOG_DAEMON
334         { LOG_DAEMON, "daemon" },
335 #endif
336 #ifdef LOG_FTP
337         { LOG_FTP, "ftp" },
338 #endif
339 #ifdef LOG_KERN
340         { LOG_KERN, "kern" },
341 #endif
342 #ifdef LOG_LPR
343         { LOG_LPR, "lpr" },
344 #endif
345 #ifdef LOG_MAIL
346         { LOG_MAIL, "mail" },
347 #endif
348 #ifdef LOG_NEWS
349         { LOG_NEWS, "news" },
350 #endif
351 #ifdef LOG_AUTH
352         { LOG_AUTH, "security" },
353 #endif
354 #ifdef LOG_SYSLOG
355         { LOG_SYSLOG, "syslog" },
356 #endif
357 #ifdef LOG_USER
358         { LOG_USER, "user" },
359 #endif
360 #ifdef LOG_UUCP
361         { LOG_UUCP, "uucp" },
362 #endif
363 #ifdef LOG_LOCAL0
364         { LOG_LOCAL0, "local0" },
365 #endif
366 #ifdef LOG_LOCAL1
367         { LOG_LOCAL1, "local1" },
368 #endif
369 #ifdef LOG_LOCAL2
370         { LOG_LOCAL2, "local2" },
371 #endif
372 #ifdef LOG_LOCAL3
373         { LOG_LOCAL3, "local3" },
374 #endif
375 #ifdef LOG_LOCAL4
376         { LOG_LOCAL4, "local4" },
377 #endif
378 #ifdef LOG_LOCAL5
379         { LOG_LOCAL5, "local5" },
380 #endif
381 #ifdef LOG_LOCAL6
382         { LOG_LOCAL6, "local6" },
383 #endif
384 #ifdef LOG_LOCAL7
385         { LOG_LOCAL7, "local7" },
386 #endif
387         { -1, NULL }
388 };
389
390 static struct parm_struct parm_table[] =
391 {
392  {"address",           P_STRING, P_GLOBAL,&Vars.g.bind_address,        NULL,0},
393  {"daemon chroot",     P_STRING, P_GLOBAL,&Vars.g.daemon_chroot,       NULL,0},
394  {"daemon gid",        P_STRING, P_GLOBAL,&Vars.g.daemon_gid,          NULL,0},
395  {"daemon uid",        P_STRING, P_GLOBAL,&Vars.g.daemon_uid,          NULL,0},
396  {"listen backlog",    P_INTEGER,P_GLOBAL,&Vars.g.listen_backlog,      NULL,0},
397  {"motd file",         P_STRING, P_GLOBAL,&Vars.g.motd_file,           NULL,0},
398  {"pid file",          P_STRING, P_GLOBAL,&Vars.g.pid_file,            NULL,0},
399  {"port",              P_INTEGER,P_GLOBAL,&Vars.g.rsync_port,          NULL,0},
400  {"socket options",    P_STRING, P_GLOBAL,&Vars.g.socket_options,      NULL,0},
401
402  {"auth users",        P_STRING, P_LOCAL, &Vars.l.auth_users,          NULL,0},
403  {"charset",           P_STRING, P_LOCAL, &Vars.l.charset,             NULL,0},
404  {"comment",           P_STRING, P_LOCAL, &Vars.l.comment,             NULL,0},
405  {"dont compress",     P_STRING, P_LOCAL, &Vars.l.dont_compress,       NULL,0},
406  {"exclude from",      P_STRING, P_LOCAL, &Vars.l.exclude_from,        NULL,0},
407  {"exclude",           P_STRING, P_LOCAL, &Vars.l.exclude,             NULL,0},
408  {"fake super",        P_BOOL,   P_LOCAL, &Vars.l.fake_super,          NULL,0},
409  {"filter",            P_STRING, P_LOCAL, &Vars.l.filter,              NULL,0},
410  {"forward lookup",    P_BOOL,   P_LOCAL, &Vars.l.forward_lookup,      NULL,0},
411  {"gid",               P_STRING, P_LOCAL, &Vars.l.gid,                 NULL,0},
412  {"hosts allow",       P_STRING, P_LOCAL, &Vars.l.hosts_allow,         NULL,0},
413  {"hosts deny",        P_STRING, P_LOCAL, &Vars.l.hosts_deny,          NULL,0},
414  {"ignore errors",     P_BOOL,   P_LOCAL, &Vars.l.ignore_errors,       NULL,0},
415  {"ignore nonreadable",P_BOOL,   P_LOCAL, &Vars.l.ignore_nonreadable,  NULL,0},
416  {"include from",      P_STRING, P_LOCAL, &Vars.l.include_from,        NULL,0},
417  {"include",           P_STRING, P_LOCAL, &Vars.l.include,             NULL,0},
418  {"incoming chmod",    P_STRING, P_LOCAL, &Vars.l.incoming_chmod,      NULL,0},
419  {"list",              P_BOOL,   P_LOCAL, &Vars.l.list,                NULL,0},
420  {"lock file",         P_STRING, P_LOCAL, &Vars.l.lock_file,           NULL,0},
421  {"log file",          P_STRING, P_LOCAL, &Vars.l.log_file,            NULL,0},
422  {"log format",        P_STRING, P_LOCAL, &Vars.l.log_format,          NULL,0},
423  {"max connections",   P_INTEGER,P_LOCAL, &Vars.l.max_connections,     NULL,0},
424  {"max verbosity",     P_INTEGER,P_LOCAL, &Vars.l.max_verbosity,       NULL,0},
425  {"munge symlinks",    P_BOOL,   P_LOCAL, &Vars.l.munge_symlinks,      NULL,0},
426  {"name",              P_STRING, P_LOCAL, &Vars.l.name,                NULL,0},
427  {"numeric ids",       P_BOOL,   P_LOCAL, &Vars.l.numeric_ids,         NULL,0},
428  {"outgoing chmod",    P_STRING, P_LOCAL, &Vars.l.outgoing_chmod,      NULL,0},
429  {"path",              P_PATH,   P_LOCAL, &Vars.l.path,                NULL,0},
430 #ifdef HAVE_PUTENV
431  {"post-xfer exec",    P_STRING, P_LOCAL, &Vars.l.postxfer_exec,       NULL,0},
432  {"pre-xfer exec",     P_STRING, P_LOCAL, &Vars.l.prexfer_exec,        NULL,0},
433 #endif
434  {"read only",         P_BOOL,   P_LOCAL, &Vars.l.read_only,           NULL,0},
435  {"refuse options",    P_STRING, P_LOCAL, &Vars.l.refuse_options,      NULL,0},
436  {"reverse lookup",    P_BOOL,   P_LOCAL, &Vars.l.reverse_lookup,      NULL,0},
437  {"secrets file",      P_STRING, P_LOCAL, &Vars.l.secrets_file,        NULL,0},
438  {"strict modes",      P_BOOL,   P_LOCAL, &Vars.l.strict_modes,        NULL,0},
439  {"syslog facility",   P_ENUM,   P_LOCAL, &Vars.l.syslog_facility,     enum_facilities,0},
440  {"syslog tag",        P_STRING, P_LOCAL, &Vars.l.syslog_tag,          NULL,0},
441  {"temp dir",          P_PATH,   P_LOCAL, &Vars.l.temp_dir,            NULL,0},
442  {"timeout",           P_INTEGER,P_LOCAL, &Vars.l.timeout,             NULL,0},
443  {"transfer logging",  P_BOOL,   P_LOCAL, &Vars.l.transfer_logging,    NULL,0},
444  {"uid",               P_STRING, P_LOCAL, &Vars.l.uid,                 NULL,0},
445  {"use chroot",        P_BOOL,   P_LOCAL, &Vars.l.use_chroot,          NULL,0},
446  {"write only",        P_BOOL,   P_LOCAL, &Vars.l.write_only,          NULL,0},
447  {NULL,                P_BOOL,   P_NONE,  NULL,                        NULL,0}
448 };
449
450 /* Initialise the Default all_vars structure. */
451 void reset_daemon_vars(void)
452 {
453         memcpy(&Vars, &Defaults, sizeof Vars);
454 }
455
456 /* Expand %VAR% references.  Any unknown vars or unrecognized
457  * syntax leaves the raw chars unchanged. */
458 static char *expand_vars(char *str)
459 {
460         char *buf, *t, *f;
461         int bufsize;
462
463         if (!str || !strchr(str, '%'))
464                 return str;
465
466         bufsize = strlen(str) + 2048;
467         if ((buf = new_array(char, bufsize+1)) == NULL) /* +1 for trailing '\0' */
468                 out_of_memory("expand_vars");
469
470         for (t = buf, f = str; bufsize && *f; ) {
471                 if (*f == '%' && *++f != '%') {
472                         char *percent = strchr(f, '%');
473                         if (percent) {
474                                 char *val;
475                                 *percent = '\0';
476                                 val = getenv(f);
477                                 *percent = '%';
478                                 if (val) {
479                                         int len = strlcpy(t, val, bufsize+1);
480                                         if (len > bufsize)
481                                                 break;
482                                         bufsize -= len;
483                                         t += len;
484                                         f = percent + 1;
485                                         continue;
486                                 }
487                         }
488                         f--;
489                 }
490                 *t++ = *f++;
491                 bufsize--;
492         }
493         *t = '\0';
494
495         if (*f) {
496                 rprintf(FLOG, "Overflowed buf in expand_vars() trying to expand: %s\n", str);
497                 exit_cleanup(RERR_MALLOC);
498         }
499
500         if (bufsize && (buf = realloc(buf, t - buf + 1)) == NULL)
501                 out_of_memory("expand_vars");
502
503         return buf;
504 }
505
506 /* NOTE: use this function and all the FN_{GLOBAL,LOCAL} ones WITHOUT a trailing semicolon! */
507 #define RETURN_EXPANDED(val) {if (!val ## _EXP) {val = expand_vars(val); val ## _EXP = True;} return val ? val : "";}
508
509 /* In this section all the functions that are used to access the
510  * parameters from the rest of the program are defined. */
511
512 #define FN_GLOBAL_STRING(fn_name, val) \
513  char *fn_name(void) RETURN_EXPANDED(Vars.g.val)
514 #define FN_GLOBAL_BOOL(fn_name, val) \
515  BOOL fn_name(void) {return Vars.g.val;}
516 #define FN_GLOBAL_CHAR(fn_name, val) \
517  char fn_name(void) {return Vars.g.val;}
518 #define FN_GLOBAL_INTEGER(fn_name, val) \
519  int fn_name(void) {return Vars.g.val;}
520
521 #define FN_LOCAL_STRING(fn_name, val) \
522  char *fn_name(int i) {if (LP_SNUM_OK(i) && iSECTION(i).val) RETURN_EXPANDED(iSECTION(i).val) else RETURN_EXPANDED(Vars.l.val)}
523 #define FN_LOCAL_BOOL(fn_name, val) \
524  BOOL fn_name(int i) {return LP_SNUM_OK(i)? iSECTION(i).val : Vars.l.val;}
525 #define FN_LOCAL_CHAR(fn_name, val) \
526  char fn_name(int i) {return LP_SNUM_OK(i)? iSECTION(i).val : Vars.l.val;}
527 #define FN_LOCAL_INTEGER(fn_name, val) \
528  int fn_name(int i) {return LP_SNUM_OK(i)? iSECTION(i).val : Vars.l.val;}
529
530 FN_GLOBAL_STRING(lp_bind_address, bind_address)
531 FN_GLOBAL_STRING(lp_daemon_chroot, daemon_chroot)
532 FN_GLOBAL_STRING(lp_daemon_gid, daemon_gid)
533 FN_GLOBAL_STRING(lp_daemon_uid, daemon_uid)
534 FN_GLOBAL_STRING(lp_motd_file, motd_file)
535 FN_GLOBAL_STRING(lp_pid_file, pid_file)
536 FN_GLOBAL_STRING(lp_socket_options, socket_options)
537
538 FN_GLOBAL_INTEGER(lp_listen_backlog, listen_backlog)
539 FN_GLOBAL_INTEGER(lp_rsync_port, rsync_port)
540
541 FN_LOCAL_STRING(lp_auth_users, auth_users)
542 FN_LOCAL_STRING(lp_charset, charset)
543 FN_LOCAL_STRING(lp_comment, comment)
544 FN_LOCAL_STRING(lp_dont_compress, dont_compress)
545 FN_LOCAL_STRING(lp_exclude, exclude)
546 FN_LOCAL_STRING(lp_exclude_from, exclude_from)
547 FN_LOCAL_STRING(lp_filter, filter)
548 FN_LOCAL_STRING(lp_gid, gid)
549 FN_LOCAL_STRING(lp_hosts_allow, hosts_allow)
550 FN_LOCAL_STRING(lp_hosts_deny, hosts_deny)
551 FN_LOCAL_STRING(lp_include, include)
552 FN_LOCAL_STRING(lp_include_from, include_from)
553 FN_LOCAL_STRING(lp_incoming_chmod, incoming_chmod)
554 FN_LOCAL_STRING(lp_lock_file, lock_file)
555 FN_LOCAL_STRING(lp_log_file, log_file)
556 FN_LOCAL_STRING(lp_log_format, log_format)
557 FN_LOCAL_STRING(lp_name, name)
558 FN_LOCAL_STRING(lp_outgoing_chmod, outgoing_chmod)
559 FN_LOCAL_STRING(lp_path, path)
560 FN_LOCAL_STRING(lp_postxfer_exec, postxfer_exec)
561 FN_LOCAL_STRING(lp_prexfer_exec, prexfer_exec)
562 FN_LOCAL_STRING(lp_refuse_options, refuse_options)
563 FN_LOCAL_STRING(lp_secrets_file, secrets_file)
564 FN_LOCAL_STRING(lp_syslog_tag, syslog_tag)
565 FN_LOCAL_STRING(lp_temp_dir, temp_dir)
566 FN_LOCAL_STRING(lp_uid, uid)
567
568 FN_LOCAL_INTEGER(lp_max_connections, max_connections)
569 FN_LOCAL_INTEGER(lp_max_verbosity, max_verbosity)
570 FN_LOCAL_INTEGER(lp_syslog_facility, syslog_facility)
571 FN_LOCAL_INTEGER(lp_timeout, timeout)
572
573 FN_LOCAL_BOOL(lp_fake_super, fake_super)
574 FN_LOCAL_BOOL(lp_forward_lookup, forward_lookup)
575 FN_LOCAL_BOOL(lp_ignore_errors, ignore_errors)
576 FN_LOCAL_BOOL(lp_ignore_nonreadable, ignore_nonreadable)
577 FN_LOCAL_BOOL(lp_list, list)
578 FN_LOCAL_BOOL(lp_munge_symlinks, munge_symlinks)
579 FN_LOCAL_BOOL(lp_numeric_ids, numeric_ids)
580 FN_LOCAL_BOOL(lp_read_only, read_only)
581 FN_LOCAL_BOOL(lp_reverse_lookup, reverse_lookup)
582 FN_LOCAL_BOOL(lp_strict_modes, strict_modes)
583 FN_LOCAL_BOOL(lp_transfer_logging, transfer_logging)
584 FN_LOCAL_BOOL(lp_use_chroot, use_chroot)
585 FN_LOCAL_BOOL(lp_write_only, write_only)
586
587 /* Assign a copy of v to *s.  Handles NULL strings.  We don't worry
588  * about overwriting a malloc'd string because the long-running
589  * (port-listening) daemon only loads the config file once, and the
590  * per-job (forked or xinitd-ran) daemon only re-reads the file at
591  * the start, so any lost memory is inconsequential. */
592 static inline void string_set(char **s, const char *v)
593 {
594         if (!v)
595                 *s = NULL;
596         else if (!(*s = strdup(v)))
597                 out_of_memory("string_set");
598 }
599
600 /* Copy local_vars into a new section. No need to strdup since we don't free. */
601 static void copy_section(local_vars *psectionDest, local_vars *psectionSource)
602 {
603         memcpy(psectionDest, psectionSource, sizeof psectionDest[0]);
604 }
605
606 /* Initialise a section to the defaults. */
607 static void init_section(local_vars *psection)
608 {
609         memset(psection, 0, sizeof (local_vars));
610         copy_section(psection, &Vars.l);
611 }
612
613 /* Do a case-insensitive, whitespace-ignoring string compare. */
614 static int strwicmp(char *psz1, char *psz2)
615 {
616         /* if BOTH strings are NULL, return TRUE, if ONE is NULL return */
617         /* appropriate value. */
618         if (psz1 == psz2)
619                 return 0;
620
621         if (psz1 == NULL)
622                 return -1;
623
624         if (psz2 == NULL)
625                 return 1;
626
627         /* sync the strings on first non-whitespace */
628         while (1) {
629                 while (isSpace(psz1))
630                         psz1++;
631                 while (isSpace(psz2))
632                         psz2++;
633                 if (toUpper(psz1) != toUpper(psz2) || *psz1 == '\0' || *psz2 == '\0')
634                         break;
635                 psz1++;
636                 psz2++;
637         }
638         return *psz1 - *psz2;
639 }
640
641 /* Find a section by name. Otherwise works like get_section. */
642 static int getsectionbyname(char *name)
643 {
644         int i;
645
646         for (i = section_list.count - 1; i >= 0; i--) {
647                 if (strwicmp(iSECTION(i).name, name) == 0)
648                         break;
649         }
650
651         return i;
652 }
653
654 /* Add a new section to the sections array w/the default values. */
655 static int add_a_section(char *name)
656 {
657         int i;
658         local_vars *s;
659
660         /* it might already exist */
661         if (name) {
662                 i = getsectionbyname(name);
663                 if (i >= 0)
664                         return i;
665         }
666
667         i = section_list.count;
668         s = EXPAND_ITEM_LIST(&section_list, local_vars, 2);
669
670         init_section(s);
671         if (name)
672                 string_set(&s->name, name);
673
674         return i;
675 }
676
677 /* Map a parameter's string representation to something we can use.
678  * Returns False if the parameter string is not recognised, else TRUE. */
679 static int map_parameter(char *parmname)
680 {
681         int iIndex;
682
683         if (*parmname == '-')
684                 return -1;
685
686         for (iIndex = 0; parm_table[iIndex].label; iIndex++) {
687                 if (strwicmp(parm_table[iIndex].label, parmname) == 0)
688                         return iIndex;
689         }
690
691         rprintf(FLOG, "Unknown Parameter encountered: \"%s\"\n", parmname);
692         return -1;
693 }
694
695 /* Set a boolean variable from the text value stored in the passed string.
696  * Returns True in success, False if the passed string does not correctly
697  * represent a boolean. */
698 static BOOL set_boolean(BOOL *pb, char *parmvalue)
699 {
700         if (strwicmp(parmvalue, "yes") == 0
701          || strwicmp(parmvalue, "true") == 0
702          || strwicmp(parmvalue, "1") == 0)
703                 *pb = True;
704         else if (strwicmp(parmvalue, "no") == 0
705               || strwicmp(parmvalue, "False") == 0
706               || strwicmp(parmvalue, "0") == 0)
707                 *pb = False;
708         else {
709                 rprintf(FLOG, "Badly formed boolean in configuration file: \"%s\".\n", parmvalue);
710                 return False;
711         }
712         return True;
713 }
714
715 /* Process a parameter. */
716 static BOOL do_parameter(char *parmname, char *parmvalue)
717 {
718         int parmnum, i;
719         void *parm_ptr; /* where we are going to store the result */
720         void *def_ptr;
721         char *cp;
722
723         parmnum = map_parameter(parmname);
724
725         if (parmnum < 0) {
726                 rprintf(FLOG, "IGNORING unknown parameter \"%s\"\n", parmname);
727                 return True;
728         }
729
730         def_ptr = parm_table[parmnum].ptr;
731
732         if (bInGlobalSection)
733                 parm_ptr = def_ptr;
734         else {
735                 if (parm_table[parmnum].class == P_GLOBAL) {
736                         rprintf(FLOG, "Global parameter %s found in module section!\n", parmname);
737                         return True;
738                 }
739                 parm_ptr = SECTION_PTR(&iSECTION(iSectionIndex), def_ptr);
740         }
741
742         /* now switch on the type of variable it is */
743         switch (parm_table[parmnum].type) {
744         case P_PATH:
745         case P_STRING:
746                 /* delay expansion of %VAR% strings */
747                 break;
748         default:
749                 /* expand any %VAR% strings now */
750                 parmvalue = expand_vars(parmvalue);
751                 break;
752         }
753
754         switch (parm_table[parmnum].type) {
755         case P_BOOL:
756                 set_boolean(parm_ptr, parmvalue);
757                 break;
758
759         case P_BOOLREV:
760                 set_boolean(parm_ptr, parmvalue);
761                 *(BOOL *)parm_ptr = ! *(BOOL *)parm_ptr;
762                 break;
763
764         case P_INTEGER:
765                 *(int *)parm_ptr = atoi(parmvalue);
766                 break;
767
768         case P_CHAR:
769                 *(char *)parm_ptr = *parmvalue;
770                 break;
771
772         case P_OCTAL:
773                 sscanf(parmvalue, "%o", (int *)parm_ptr);
774                 break;
775
776         case P_PATH:
777                 string_set(parm_ptr, parmvalue);
778                 if ((cp = *(char**)parm_ptr) != NULL) {
779                         int len = strlen(cp);
780                         while (len > 1 && cp[len-1] == '/') len--;
781                         cp[len] = '\0';
782                 }
783                 break;
784
785         case P_STRING:
786                 string_set(parm_ptr, parmvalue);
787                 break;
788
789         case P_ENUM:
790                 for (i=0; parm_table[parmnum].enum_list[i].name; i++) {
791                         if (strequal(parmvalue, parm_table[parmnum].enum_list[i].name)) {
792                                 *(int *)parm_ptr = parm_table[parmnum].enum_list[i].value;
793                                 break;
794                         }
795                 }
796                 if (!parm_table[parmnum].enum_list[i].name) {
797                         if (atoi(parmvalue) > 0)
798                                 *(int *)parm_ptr = atoi(parmvalue);
799                 }
800                 break;
801         }
802
803         return True;
804 }
805
806 /* Process a new section (rsync module).
807  * Returns True on success, False on failure. */
808 static BOOL do_section(char *sectionname)
809 {
810         BOOL isglobal;
811
812         if (*sectionname == ']') { /* A special push/pop/reset directive from params.c */
813                 bInGlobalSection = 1;
814                 if (strcmp(sectionname+1, "push") == 0) {
815                         all_vars *vp = EXPAND_ITEM_LIST(&Vars_stack, all_vars, 2);
816                         memcpy(vp, &Vars, sizeof Vars);
817                 } else if (strcmp(sectionname+1, "pop") == 0
818                  || strcmp(sectionname+1, "reset") == 0) {
819                         all_vars *vp = ((all_vars*)Vars_stack.items) + Vars_stack.count - 1;
820                         if (!Vars_stack.count)
821                                 return False;
822                         memcpy(&Vars, vp, sizeof Vars);
823                         if (sectionname[1] == 'p')
824                                 Vars_stack.count--;
825                 } else
826                         return False;
827                 return True;
828         }
829
830         isglobal = strwicmp(sectionname, GLOBAL_NAME) == 0;
831
832         /* At the end of the global section, add any --dparam items. */
833         if (bInGlobalSection && !isglobal) {
834                 if (!section_list.count)
835                         set_dparams(0);
836         }
837
838         /* if we've just struck a global section, note the fact. */
839         bInGlobalSection = isglobal;
840
841         /* check for multiple global sections */
842         if (bInGlobalSection)
843                 return True;
844
845 #if 0
846         /* If we have a current section, tidy it up before moving on. */
847         if (iSectionIndex >= 0) {
848                 /* Add any tidy work as needed ... */
849                 if (problem)
850                         return False;
851         }
852 #endif
853
854         if (strchr(sectionname, '/') != NULL) {
855                 rprintf(FLOG, "Warning: invalid section name in configuration file: %s\n", sectionname);
856                 return False;
857         }
858
859         if ((iSectionIndex = add_a_section(sectionname)) < 0) {
860                 rprintf(FLOG, "Failed to add a new module\n");
861                 bInGlobalSection = True;
862                 return False;
863         }
864
865         return True;
866 }
867
868 /* Load the modules from the config file. Return True on success,
869  * False on failure. */
870 int lp_load(char *pszFname, int globals_only)
871 {
872         bInGlobalSection = True;
873
874         reset_daemon_vars();
875
876         /* We get sections first, so have to start 'behind' to make up. */
877         iSectionIndex = -1;
878         return pm_process(pszFname, globals_only ? NULL : do_section, do_parameter);
879 }
880
881 BOOL set_dparams(int syntax_check_only)
882 {
883         char *equal, *val, **params = dparam_list.items;
884         unsigned j;
885
886         for (j = 0; j < dparam_list.count; j++) {
887                 equal = strchr(params[j], '='); /* options.c verified this */
888                 *equal = '\0';
889                 if (syntax_check_only) {
890                         if (map_parameter(params[j]) < 0) {
891                                 rprintf(FERROR, "Unknown parameter \"%s\"\n", params[j]);
892                                 *equal = '=';
893                                 return False;
894                         }
895                 } else {
896                         for (val = equal+1; isSpace(val); val++) {}
897                         do_parameter(params[j], val);
898                 }
899                 *equal = '=';
900         }
901
902         return True;
903 }
904
905 /* Return the max number of modules (sections). */
906 int lp_num_modules(void)
907 {
908         return section_list.count;
909 }
910
911 /* Return the number of the module with the given name, or -1 if it doesn't
912  * exist. Note that this is a DIFFERENT ANIMAL from the internal function
913  * getsectionbyname()! This works ONLY if all sections have been loaded,
914  * and does not copy the found section. */
915 int lp_number(char *name)
916 {
917         int i;
918
919         for (i = section_list.count - 1; i >= 0; i--) {
920                 if (strcmp(lp_name(i), name) == 0)
921                         break;
922         }
923
924         return i;
925 }