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