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