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