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