Changed the module array to use an item_list structure.
[rsync/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
16 /* This is based on loadparm.c from Samba, written by Andrew Tridgell
17  * and Karl Auer.  Some of the changes are:
18  *
19  * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
20  * Copyright (C) 2003-2008 Wayne Davison <wayned@samba.org>
21  */
22
23 /* Load parameters.
24  *
25  *  This module provides suitable callback functions for the params
26  *  module. It builds the internal table of section details which is
27  *  then used by the rest of the server.
28  *
29  * To add a parameter:
30  *
31  * 1) add it to the global or section structure definition
32  * 2) add it to the parm_table
33  * 3) add it to the list of available functions (eg: using FN_GLOBAL_STRING())
34  * 4) If it's a global then initialise it in init_globals. If a local module
35  *    (ie. section) parameter then initialise it in the sDefault structure
36  *
37  *
38  * Notes:
39  *   The configuration file is processed sequentially for speed. For this
40  *   reason, there is a fair bit of sequence-dependent code here - ie., code
41  *   which assumes that certain things happen before others. In particular, the
42  *   code which happens at the boundary between sections is delicately poised,
43  *   so be careful!
44  */
45
46 #include "rsync.h"
47 #include "ifuncs.h"
48 #define PTR_DIFF(p1, p2) ((ptrdiff_t)(((char *)(p1)) - (char *)(p2)))
49 #define strequal(a, b) (strcasecmp(a, b)==0)
50 #define BOOLSTR(b) ((b) ? "Yes" : "No")
51 typedef char pstring[1024];
52 #define pstrcpy(a, b) strlcpy((a), (b), sizeof (pstring))
53
54 #ifndef LOG_DAEMON
55 #define LOG_DAEMON 0
56 #endif
57
58 #define DEFAULT_DONT_COMPRESS "*.gz *.zip *.z *.rpm *.deb *.iso *.bz2" \
59         " *.t[gb]z *.7z *.mp[34] *.mov *.avi *.ogg *.jpg *.jpeg"
60
61 /* the following are used by loadparm for option lists */
62 typedef enum {
63         P_BOOL, P_BOOLREV, P_CHAR, P_INTEGER, P_OCTAL,
64         P_PATH, P_STRING, P_GSTRING, P_ENUM, P_SEP
65 } parm_type;
66
67 typedef enum {
68         P_LOCAL, P_GLOBAL, P_SEPARATOR, P_NONE
69 } parm_class;
70
71 struct enum_list {
72         int value;
73         char *name;
74 };
75
76 struct parm_struct {
77         char *label;
78         parm_type type;
79         parm_class class;
80         void *ptr;
81         struct enum_list *enum_list;
82         unsigned flags;
83 };
84
85 #ifndef GLOBAL_NAME
86 #define GLOBAL_NAME "global"
87 #endif
88
89 /* some helpful bits */
90 #define iSECTION(i) ((section*)section_list.items)[i]
91 #define LP_SNUM_OK(i) ((i) >= 0 && (i) < (int)section_list.count)
92
93 /*
94  * This structure describes global (ie., server-wide) parameters.
95  */
96 typedef struct {
97         char *bind_address;
98         char *motd_file;
99         char *pid_file;
100         char *socket_options;
101
102         int rsync_port;
103 } global;
104
105 static global Globals;
106
107 /*
108  * This structure describes a single section.  Their order must match the
109  * initializers below, which you can accomplish by keeping each sub-section
110  * sorted.  (e.g. in vim, just visually select each subsection and use !sort.)
111  */
112 typedef struct {
113         char *auth_users;
114         char *charset;
115         char *comment;
116         char *dont_compress;
117         char *exclude;
118         char *exclude_from;
119         char *filter;
120         char *gid;
121         char *hosts_allow;
122         char *hosts_deny;
123         char *include;
124         char *include_from;
125         char *incoming_chmod;
126         char *lock_file;
127         char *log_file;
128         char *log_format;
129         char *name;
130         char *outgoing_chmod;
131         char *path;
132         char *postxfer_exec;
133         char *prexfer_exec;
134         char *refuse_options;
135         char *secrets_file;
136         char *temp_dir;
137         char *uid;
138
139         int max_connections;
140         int max_verbosity;
141         int syslog_facility;
142         int timeout;
143
144         BOOL fake_super;
145         BOOL ignore_errors;
146         BOOL ignore_nonreadable;
147         BOOL list;
148         BOOL munge_symlinks;
149         BOOL numeric_ids;
150         BOOL read_only;
151         BOOL strict_modes;
152         BOOL transfer_logging;
153         BOOL use_chroot;
154         BOOL write_only;
155 } section;
156
157 /* This is a default section used to prime a sections structure.  In order
158  * to make these easy to keep sorted in the same way as the variables
159  * above, use the variable name in the leading comment, including a
160  * trailing ';' (to avoid a sorting problem with trailing digits). */
161 static section sDefault = {
162  /* auth_users; */              NULL,
163  /* charset; */                 NULL,
164  /* comment; */                 NULL,
165  /* dont_compress; */           DEFAULT_DONT_COMPRESS,
166  /* exclude; */                 NULL,
167  /* exclude_from; */            NULL,
168  /* filter; */                  NULL,
169  /* gid; */                     NOBODY_GROUP,
170  /* hosts_allow; */             NULL,
171  /* hosts_deny; */              NULL,
172  /* include; */                 NULL,
173  /* include_from; */            NULL,
174  /* incoming_chmod; */          NULL,
175  /* lock_file; */               DEFAULT_LOCK_FILE,
176  /* log_file; */                NULL,
177  /* log_format; */              "%o %h [%a] %m (%u) %f %l",
178  /* name; */                    NULL,
179  /* outgoing_chmod; */          NULL,
180  /* path; */                    NULL,
181  /* postxfer_exec; */           NULL,
182  /* prexfer_exec; */            NULL,
183  /* refuse_options; */          NULL,
184  /* secrets_file; */            NULL,
185  /* temp_dir; */                NULL,
186  /* uid; */                     NOBODY_USER,
187
188  /* max_connections; */         0,
189  /* max_verbosity; */           1,
190  /* syslog_facility; */         LOG_DAEMON,
191  /* timeout; */                 0,
192
193  /* fake_super; */              False,
194  /* ignore_errors; */           False,
195  /* ignore_nonreadable; */      False,
196  /* list; */                    True,
197  /* munge_symlinks; */          (BOOL)-1,
198  /* numeric_ids; */             (BOOL)-1,
199  /* read_only; */               True,
200  /* strict_modes; */            True,
201  /* transfer_logging; */        False,
202  /* use_chroot; */              True,
203  /* write_only; */              False,
204 };
205
206 /* local variables */
207 static item_list section_list = EMPTY_ITEM_LIST;
208 static int iSectionIndex = -1;
209 static BOOL bInGlobalSection = True;
210
211 #define NUMPARAMETERS (sizeof (parm_table) / sizeof (struct parm_struct))
212
213 static struct enum_list enum_facilities[] = {
214 #ifdef LOG_AUTH
215         { LOG_AUTH, "auth" },
216 #endif
217 #ifdef LOG_AUTHPRIV
218         { LOG_AUTHPRIV, "authpriv" },
219 #endif
220 #ifdef LOG_CRON
221         { LOG_CRON, "cron" },
222 #endif
223 #ifdef LOG_DAEMON
224         { LOG_DAEMON, "daemon" },
225 #endif
226 #ifdef LOG_FTP
227         { LOG_FTP, "ftp" },
228 #endif
229 #ifdef LOG_KERN
230         { LOG_KERN, "kern" },
231 #endif
232 #ifdef LOG_LPR
233         { LOG_LPR, "lpr" },
234 #endif
235 #ifdef LOG_MAIL
236         { LOG_MAIL, "mail" },
237 #endif
238 #ifdef LOG_NEWS
239         { LOG_NEWS, "news" },
240 #endif
241 #ifdef LOG_AUTH
242         { LOG_AUTH, "security" },
243 #endif
244 #ifdef LOG_SYSLOG
245         { LOG_SYSLOG, "syslog" },
246 #endif
247 #ifdef LOG_USER
248         { LOG_USER, "user" },
249 #endif
250 #ifdef LOG_UUCP
251         { LOG_UUCP, "uucp" },
252 #endif
253 #ifdef LOG_LOCAL0
254         { LOG_LOCAL0, "local0" },
255 #endif
256 #ifdef LOG_LOCAL1
257         { LOG_LOCAL1, "local1" },
258 #endif
259 #ifdef LOG_LOCAL2
260         { LOG_LOCAL2, "local2" },
261 #endif
262 #ifdef LOG_LOCAL3
263         { LOG_LOCAL3, "local3" },
264 #endif
265 #ifdef LOG_LOCAL4
266         { LOG_LOCAL4, "local4" },
267 #endif
268 #ifdef LOG_LOCAL5
269         { LOG_LOCAL5, "local5" },
270 #endif
271 #ifdef LOG_LOCAL6
272         { LOG_LOCAL6, "local6" },
273 #endif
274 #ifdef LOG_LOCAL7
275         { LOG_LOCAL7, "local7" },
276 #endif
277         { -1, NULL }
278 };
279
280
281 /* note that we do not initialise the defaults union - it is not allowed in ANSI C */
282 static struct parm_struct parm_table[] =
283 {
284  {"address",           P_STRING, P_GLOBAL,&Globals.bind_address,       NULL,0},
285  {"motd file",         P_STRING, P_GLOBAL,&Globals.motd_file,          NULL,0},
286  {"pid file",          P_STRING, P_GLOBAL,&Globals.pid_file,           NULL,0},
287  {"port",              P_INTEGER,P_GLOBAL,&Globals.rsync_port,         NULL,0},
288  {"socket options",    P_STRING, P_GLOBAL,&Globals.socket_options,     NULL,0},
289
290  {"auth users",        P_STRING, P_LOCAL, &sDefault.auth_users,        NULL,0},
291  {"charset",           P_STRING, P_LOCAL, &sDefault.charset,           NULL,0},
292  {"comment",           P_STRING, P_LOCAL, &sDefault.comment,           NULL,0},
293  {"dont compress",     P_STRING, P_LOCAL, &sDefault.dont_compress,     NULL,0},
294  {"exclude from",      P_STRING, P_LOCAL, &sDefault.exclude_from,      NULL,0},
295  {"exclude",           P_STRING, P_LOCAL, &sDefault.exclude,           NULL,0},
296  {"fake super",        P_BOOL,   P_LOCAL, &sDefault.fake_super,        NULL,0},
297  {"filter",            P_STRING, P_LOCAL, &sDefault.filter,            NULL,0},
298  {"gid",               P_STRING, P_LOCAL, &sDefault.gid,               NULL,0},
299  {"hosts allow",       P_STRING, P_LOCAL, &sDefault.hosts_allow,       NULL,0},
300  {"hosts deny",        P_STRING, P_LOCAL, &sDefault.hosts_deny,        NULL,0},
301  {"ignore errors",     P_BOOL,   P_LOCAL, &sDefault.ignore_errors,     NULL,0},
302  {"ignore nonreadable",P_BOOL,   P_LOCAL, &sDefault.ignore_nonreadable,NULL,0},
303  {"include from",      P_STRING, P_LOCAL, &sDefault.include_from,      NULL,0},
304  {"include",           P_STRING, P_LOCAL, &sDefault.include,           NULL,0},
305  {"incoming chmod",    P_STRING, P_LOCAL, &sDefault.incoming_chmod,    NULL,0},
306  {"list",              P_BOOL,   P_LOCAL, &sDefault.list,              NULL,0},
307  {"lock file",         P_STRING, P_LOCAL, &sDefault.lock_file,         NULL,0},
308  {"log file",          P_STRING, P_LOCAL, &sDefault.log_file,          NULL,0},
309  {"log format",        P_STRING, P_LOCAL, &sDefault.log_format,        NULL,0},
310  {"max connections",   P_INTEGER,P_LOCAL, &sDefault.max_connections,   NULL,0},
311  {"max verbosity",     P_INTEGER,P_LOCAL, &sDefault.max_verbosity,     NULL,0},
312  {"munge symlinks",    P_BOOL,   P_LOCAL, &sDefault.munge_symlinks,    NULL,0},
313  {"name",              P_STRING, P_LOCAL, &sDefault.name,              NULL,0},
314  {"numeric ids",       P_BOOL,   P_LOCAL, &sDefault.numeric_ids,       NULL,0},
315  {"outgoing chmod",    P_STRING, P_LOCAL, &sDefault.outgoing_chmod,    NULL,0},
316  {"path",              P_PATH,   P_LOCAL, &sDefault.path,              NULL,0},
317 #ifdef HAVE_PUTENV
318  {"post-xfer exec",    P_STRING, P_LOCAL, &sDefault.postxfer_exec,     NULL,0},
319  {"pre-xfer exec",     P_STRING, P_LOCAL, &sDefault.prexfer_exec,      NULL,0},
320 #endif
321  {"read only",         P_BOOL,   P_LOCAL, &sDefault.read_only,         NULL,0},
322  {"refuse options",    P_STRING, P_LOCAL, &sDefault.refuse_options,    NULL,0},
323  {"secrets file",      P_STRING, P_LOCAL, &sDefault.secrets_file,      NULL,0},
324  {"strict modes",      P_BOOL,   P_LOCAL, &sDefault.strict_modes,      NULL,0},
325  {"syslog facility",   P_ENUM,   P_LOCAL, &sDefault.syslog_facility,enum_facilities,0},
326  {"temp dir",          P_PATH,   P_LOCAL, &sDefault.temp_dir,          NULL,0},
327  {"timeout",           P_INTEGER,P_LOCAL, &sDefault.timeout,           NULL,0},
328  {"transfer logging",  P_BOOL,   P_LOCAL, &sDefault.transfer_logging,  NULL,0},
329  {"uid",               P_STRING, P_LOCAL, &sDefault.uid,               NULL,0},
330  {"use chroot",        P_BOOL,   P_LOCAL, &sDefault.use_chroot,        NULL,0},
331  {"write only",        P_BOOL,   P_LOCAL, &sDefault.write_only,        NULL,0},
332  {NULL,                P_BOOL,   P_NONE,  NULL,                        NULL,0}
333 };
334
335 /* Initialise the global parameter structure. */
336 static void init_globals(void)
337 {
338         memset(&Globals, 0, sizeof Globals);
339 }
340
341 /* Initialise the sDefault parameter structure. */
342 static void init_locals(void)
343 {
344         /* Nothing needed yet... */
345 }
346
347 /* In this section all the functions that are used to access the
348  * parameters from the rest of the program are defined. */
349
350 #define FN_GLOBAL_STRING(fn_name, ptr) \
351  char *fn_name(void) {return *(char **)(ptr) ? *(char **)(ptr) : "";}
352 #define FN_GLOBAL_BOOL(fn_name, ptr) \
353  BOOL fn_name(void) {return *(BOOL *)(ptr);}
354 #define FN_GLOBAL_CHAR(fn_name, ptr) \
355  char fn_name(void) {return *(char *)(ptr);}
356 #define FN_GLOBAL_INTEGER(fn_name, ptr) \
357  int fn_name(void) {return *(int *)(ptr);}
358
359 #define FN_LOCAL_STRING(fn_name, val) \
360  char *fn_name(int i) {return LP_SNUM_OK(i) && iSECTION(i).val? iSECTION(i).val : (sDefault.val? sDefault.val : "");}
361 #define FN_LOCAL_BOOL(fn_name, val) \
362  BOOL fn_name(int i) {return LP_SNUM_OK(i)? iSECTION(i).val : sDefault.val;}
363 #define FN_LOCAL_CHAR(fn_name, val) \
364  char fn_name(int i) {return LP_SNUM_OK(i)? iSECTION(i).val : sDefault.val;}
365 #define FN_LOCAL_INTEGER(fn_name, val) \
366  int fn_name(int i) {return LP_SNUM_OK(i)? iSECTION(i).val : sDefault.val;}
367
368 FN_GLOBAL_STRING(lp_bind_address, &Globals.bind_address)
369 FN_GLOBAL_STRING(lp_motd_file, &Globals.motd_file)
370 FN_GLOBAL_STRING(lp_pid_file, &Globals.pid_file)
371 FN_GLOBAL_STRING(lp_socket_options, &Globals.socket_options)
372
373 FN_GLOBAL_INTEGER(lp_rsync_port, &Globals.rsync_port)
374
375 FN_LOCAL_STRING(lp_auth_users, auth_users)
376 FN_LOCAL_STRING(lp_charset, charset)
377 FN_LOCAL_STRING(lp_comment, comment)
378 FN_LOCAL_STRING(lp_dont_compress, dont_compress)
379 FN_LOCAL_STRING(lp_exclude, exclude)
380 FN_LOCAL_STRING(lp_exclude_from, exclude_from)
381 FN_LOCAL_STRING(lp_filter, filter)
382 FN_LOCAL_STRING(lp_gid, gid)
383 FN_LOCAL_STRING(lp_hosts_allow, hosts_allow)
384 FN_LOCAL_STRING(lp_hosts_deny, hosts_deny)
385 FN_LOCAL_STRING(lp_include, include)
386 FN_LOCAL_STRING(lp_include_from, include_from)
387 FN_LOCAL_STRING(lp_incoming_chmod, incoming_chmod)
388 FN_LOCAL_STRING(lp_lock_file, lock_file)
389 FN_LOCAL_STRING(lp_log_file, log_file)
390 FN_LOCAL_STRING(lp_log_format, log_format)
391 FN_LOCAL_STRING(lp_name, name)
392 FN_LOCAL_STRING(lp_outgoing_chmod, outgoing_chmod)
393 FN_LOCAL_STRING(lp_path, path)
394 FN_LOCAL_STRING(lp_postxfer_exec, postxfer_exec)
395 FN_LOCAL_STRING(lp_prexfer_exec, prexfer_exec)
396 FN_LOCAL_STRING(lp_refuse_options, refuse_options)
397 FN_LOCAL_STRING(lp_secrets_file, secrets_file)
398 FN_LOCAL_STRING(lp_temp_dir, temp_dir)
399 FN_LOCAL_STRING(lp_uid, uid)
400
401 FN_LOCAL_INTEGER(lp_max_connections, max_connections)
402 FN_LOCAL_INTEGER(lp_max_verbosity, max_verbosity)
403 FN_LOCAL_INTEGER(lp_syslog_facility, syslog_facility)
404 FN_LOCAL_INTEGER(lp_timeout, timeout)
405
406 FN_LOCAL_BOOL(lp_fake_super, fake_super)
407 FN_LOCAL_BOOL(lp_ignore_errors, ignore_errors)
408 FN_LOCAL_BOOL(lp_ignore_nonreadable, ignore_nonreadable)
409 FN_LOCAL_BOOL(lp_list, list)
410 FN_LOCAL_BOOL(lp_munge_symlinks, munge_symlinks)
411 FN_LOCAL_BOOL(lp_numeric_ids, numeric_ids)
412 FN_LOCAL_BOOL(lp_read_only, read_only)
413 FN_LOCAL_BOOL(lp_strict_modes, strict_modes)
414 FN_LOCAL_BOOL(lp_transfer_logging, transfer_logging)
415 FN_LOCAL_BOOL(lp_use_chroot, use_chroot)
416 FN_LOCAL_BOOL(lp_write_only, write_only)
417
418 /* Assign a copy of v to *s.  Handles NULL strings.  *v must
419  * be initialized when this is called, either to NULL or a malloc'd
420  * string.
421  *
422  * FIXME There is a small leak here in that sometimes the existing
423  * value will be dynamically allocated, and the old copy is lost.
424  * However, we can't always deallocate the old value, because in the
425  * case of sDefault, it points to a static string.  It would be nice
426  * to have either all-strdup'd values, or to never need to free
427  * memory. */
428 static void string_set(char **s, const char *v)
429 {
430         if (!v) {
431                 *s = NULL;
432                 return;
433         }
434         if (!(*s = strdup(v)))
435                 exit_cleanup(RERR_MALLOC);
436 }
437
438 /* Copy a section structure to another. */
439 static void copy_section(section *psectionDest, section *psectionSource)
440 {
441         int i;
442
443         for (i = 0; parm_table[i].label; i++) {
444                 if (parm_table[i].ptr && parm_table[i].class == P_LOCAL) {
445                         void *def_ptr = parm_table[i].ptr;
446                         void *src_ptr = ((char *)psectionSource) + PTR_DIFF(def_ptr, &sDefault);
447                         void *dest_ptr = ((char *)psectionDest) + PTR_DIFF(def_ptr, &sDefault);
448
449                         switch (parm_table[i].type) {
450                         case P_BOOL:
451                         case P_BOOLREV:
452                                 *(BOOL *)dest_ptr = *(BOOL *)src_ptr;
453                                 break;
454
455                         case P_INTEGER:
456                         case P_ENUM:
457                         case P_OCTAL:
458                                 *(int *)dest_ptr = *(int *)src_ptr;
459                                 break;
460
461                         case P_CHAR:
462                                 *(char *)dest_ptr = *(char *)src_ptr;
463                                 break;
464
465                         case P_PATH:
466                         case P_STRING:
467                                 string_set(dest_ptr, *(char **)src_ptr);
468                                 break;
469
470                         default:
471                                 break;
472                         }
473                 }
474         }
475 }
476
477 /* Initialise a section to the defaults. */
478 static void init_section(section *psection)
479 {
480         memset((char *)psection, 0, sizeof (section));
481         copy_section(psection, &sDefault);
482 }
483
484 /* Do a case-insensitive, whitespace-ignoring string compare. */
485 static int strwicmp(char *psz1, char *psz2)
486 {
487         /* if BOTH strings are NULL, return TRUE, if ONE is NULL return */
488         /* appropriate value. */
489         if (psz1 == psz2)
490                 return 0;
491
492         if (psz1 == NULL)
493                 return -1;
494
495         if (psz2 == NULL)
496                 return 1;
497
498         /* sync the strings on first non-whitespace */
499         while (1) {
500                 while (isSpace(psz1))
501                         psz1++;
502                 while (isSpace(psz2))
503                         psz2++;
504                 if (toUpper(psz1) != toUpper(psz2) || *psz1 == '\0' || *psz2 == '\0')
505                         break;
506                 psz1++;
507                 psz2++;
508         }
509         return *psz1 - *psz2;
510 }
511
512 /* Find a section by name. Otherwise works like get_section. */
513 static int getsectionbyname(char *name, section *psectionDest)
514 {
515         int i;
516
517         for (i = section_list.count - 1; i >= 0; i--) {
518                 if (strwicmp(iSECTION(i).name, name) == 0) {
519                         if (psectionDest != NULL)
520                                 copy_section(psectionDest, &iSECTION(i));
521                         break;
522                 }
523         }
524
525         return i;
526 }
527
528 /* Add a new section to the sections array w/the default values. */
529 static int add_a_section(char *name)
530 {
531         int i;
532         section *s;
533
534         /* it might already exist */
535         if (name) {
536                 i = getsectionbyname(name, NULL);
537                 if (i >= 0)
538                         return i;
539         }
540
541         i = section_list.count;
542         s = EXPAND_ITEM_LIST(&section_list, section, 2);
543
544         init_section(s);
545         if (name)
546                 string_set(&s->name, name);
547
548         return i;
549 }
550
551 /* Map a parameter's string representation to something we can use.
552  * Returns False if the parameter string is not recognised, else TRUE. */
553 static int map_parameter(char *parmname)
554 {
555         int iIndex;
556
557         if (*parmname == '-')
558                 return -1;
559
560         for (iIndex = 0; parm_table[iIndex].label; iIndex++) {
561                 if (strwicmp(parm_table[iIndex].label, parmname) == 0)
562                         return iIndex;
563         }
564
565         rprintf(FLOG, "Unknown Parameter encountered: \"%s\"\n", parmname);
566         return -1;
567 }
568
569 /* Set a boolean variable from the text value stored in the passed string.
570  * Returns True in success, False if the passed string does not correctly
571  * represent a boolean. */
572 static BOOL set_boolean(BOOL *pb, char *parmvalue)
573 {
574         if (strwicmp(parmvalue, "yes") == 0
575          || strwicmp(parmvalue, "true") == 0
576          || strwicmp(parmvalue, "1") == 0)
577                 *pb = True;
578         else if (strwicmp(parmvalue, "no") == 0
579               || strwicmp(parmvalue, "False") == 0
580               || strwicmp(parmvalue, "0") == 0)
581                 *pb = False;
582         else {
583                 rprintf(FLOG, "Badly formed boolean in configuration file: \"%s\".\n", parmvalue);
584                 return False;
585         }
586         return True;
587 }
588
589 /* Process a parameter. */
590 static BOOL do_parameter(char *parmname, char *parmvalue)
591 {
592         int parmnum, i;
593         void *parm_ptr=NULL; /* where we are going to store the result */
594         void *def_ptr=NULL;
595         char *cp;
596
597         parmnum = map_parameter(parmname);
598
599         if (parmnum < 0) {
600                 rprintf(FLOG, "IGNORING unknown parameter \"%s\"\n", parmname);
601                 return True;
602         }
603
604         def_ptr = parm_table[parmnum].ptr;
605
606         if (bInGlobalSection)
607                 parm_ptr = def_ptr;
608         else {
609                 if (parm_table[parmnum].class == P_GLOBAL) {
610                         rprintf(FLOG, "Global parameter %s found in module section!\n", parmname);
611                         return True;
612                 }
613                 parm_ptr = ((char *)&iSECTION(iSectionIndex)) + PTR_DIFF(def_ptr, &sDefault);
614         }
615
616         /* now switch on the type of variable it is */
617         switch (parm_table[parmnum].type) {
618         case P_BOOL:
619                 set_boolean(parm_ptr, parmvalue);
620                 break;
621
622         case P_BOOLREV:
623                 set_boolean(parm_ptr, parmvalue);
624                 *(BOOL *)parm_ptr = ! *(BOOL *)parm_ptr;
625                 break;
626
627         case P_INTEGER:
628                 *(int *)parm_ptr = atoi(parmvalue);
629                 break;
630
631         case P_CHAR:
632                 *(char *)parm_ptr = *parmvalue;
633                 break;
634
635         case P_OCTAL:
636                 sscanf(parmvalue, "%o", (int *)parm_ptr);
637                 break;
638
639         case P_PATH:
640                 string_set(parm_ptr, parmvalue);
641                 if ((cp = *(char**)parm_ptr) != NULL) {
642                         int len = strlen(cp);
643                         while (len > 1 && cp[len-1] == '/') len--;
644                         cp[len] = '\0';
645                 }
646                 break;
647
648         case P_STRING:
649                 string_set(parm_ptr, parmvalue);
650                 break;
651
652         case P_GSTRING:
653                 strlcpy((char *)parm_ptr, parmvalue, sizeof (pstring));
654                 break;
655
656         case P_ENUM:
657                 for (i=0;parm_table[parmnum].enum_list[i].name;i++) {
658                         if (strequal(parmvalue, parm_table[parmnum].enum_list[i].name)) {
659                                 *(int *)parm_ptr = parm_table[parmnum].enum_list[i].value;
660                                 break;
661                         }
662                 }
663                 if (!parm_table[parmnum].enum_list[i].name) {
664                         if (atoi(parmvalue) > 0)
665                                 *(int *)parm_ptr = atoi(parmvalue);
666                 }
667                 break;
668         case P_SEP:
669                 break;
670         }
671
672         return True;
673 }
674
675 /* Process a new section (rsync module).
676  * Returns True on success, False on failure. */
677 static BOOL do_section(char *sectionname)
678 {
679         BOOL isglobal = strwicmp(sectionname, GLOBAL_NAME) == 0;
680
681         /* if we were in a global section then do the local inits */
682         if (bInGlobalSection && !isglobal)
683                 init_locals();
684
685         /* if we've just struck a global section, note the fact. */
686         bInGlobalSection = isglobal;
687
688         /* check for multiple global sections */
689         if (bInGlobalSection)
690                 return True;
691
692 #if 0
693         /* If we have a current section, tidy it up before moving on. */
694         if (iSectionIndex >= 0) {
695                 /* Add any tidy work as needed ... */
696                 if (problem)
697                         return False;
698         }
699 #endif
700
701         if (strchr(sectionname, '/') != NULL) {
702                 rprintf(FLOG, "Warning: invalid section name in configuration file: %s\n", sectionname);
703                 return False;
704         }
705
706         if ((iSectionIndex = add_a_section(sectionname)) < 0) {
707                 rprintf(FLOG, "Failed to add a new module\n");
708                 bInGlobalSection = True;
709                 return False;
710         }
711
712         return True;
713 }
714
715 /* Load the modules from the config file. Return True on success,
716  * False on failure. */
717 BOOL lp_load(char *pszFname, int globals_only)
718 {
719         pstring n2;
720
721         bInGlobalSection = True;
722
723         init_globals();
724
725         pstrcpy(n2, pszFname);
726
727         /* We get sections first, so have to start 'behind' to make up. */
728         iSectionIndex = -1;
729         return pm_process(n2, globals_only ? NULL : do_section, do_parameter);
730 }
731
732 /* Return the max number of modules (sections). */
733 int lp_num_modules(void)
734 {
735         return section_list.count;
736 }
737
738 /* Return the number of the module with the given name, or -1 if it doesn't
739  * exist. Note that this is a DIFFERENT ANIMAL from the internal function
740  * getsectionbyname()! This works ONLY if all sections have been loaded,
741  * and does not copy the found section. */
742 int lp_number(char *name)
743 {
744         int i;
745
746         for (i = section_list.count - 1; i >= 0; i--) {
747                 if (strcmp(lp_name(i), name) == 0)
748                         break;
749         }
750
751         return i;
752 }