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