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