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