Since the loadparm.c file is changing, I'm reformatting it to use the
[rsync/rsync.git] / loadparm.c
CommitLineData
0f78b815
WD
1/*
2 * This program is free software; you can redistribute it and/or modify
8e41b68e
WD
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 3 of the License, or
5 * (at your option) any later version.
0f78b815
WD
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
3d2e458a 11 *
e7c67065 12 * You should have received a copy of the GNU General Public License along
4fd842f9 13 * with this program; if not, visit the http://fsf.org website.
3d2e458a
MP
14 */
15
8880d8ec
WD
16/* This is based on loadparm.c from Samba, written by Andrew Tridgell
17 * and Karl Auer. Some of the changes are:
0f78b815
WD
18 *
19 * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
8880d8ec 20 * Copyright (C) 2003-2008 Wayne Davison <wayned@samba.org>
0f78b815 21 */
0b76cd63 22
8880d8ec 23/* Load parameters.
0b76cd63
AT
24 *
25 * This module provides suitable callback functions for the params
26 * module. It builds the internal table of service details which is
27 * then used by the rest of the server.
28 *
29 * To add a parameter:
30 *
31 * 1) add it to the global or service structure definition
32 * 2) add it to the parm_table
33 * 3) add it to the list of available functions (eg: using FN_GLOBAL_STRING())
34 * 4) If it's a global then initialise it in init_globals. If a local
35 * (ie. service) parameter then initialise it in the sDefault structure
6464bdbe 36 *
0b76cd63
AT
37 *
38 * Notes:
8880d8ec
WD
39 * The configuration file is processed sequentially for speed. For this
40 * reason, there is a fair bit of sequence-dependent code here - ie., code
41 * which assumes that certain things happen before others. In particular, the
42 * code which happens at the boundary between sections is delicately poised,
43 * so be careful!
0b76cd63
AT
44 */
45
46#include "rsync.h"
1b42f628 47#include "ifuncs.h"
8880d8ec
WD
48#define PTR_DIFF(p1, p2) ((ptrdiff_t)(((char *)(p1)) - (char *)(p2)))
49#define strequal(a, b) (strcasecmp(a, b)==0)
0b76cd63
AT
50#define BOOLSTR(b) ((b) ? "Yes" : "No")
51typedef char pstring[1024];
8880d8ec 52#define pstrcpy(a, b) strlcpy((a), (b), sizeof (pstring))
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
WD
62typedef enum {
63 P_BOOL, P_BOOLREV, P_CHAR, P_INTEGER, P_OCTAL,
64 P_PATH, P_STRING, P_GSTRING, P_ENUM, P_SEP
0b76cd63
AT
65} parm_type;
66
8880d8ec
WD
67typedef enum {
68 P_LOCAL, P_GLOBAL, P_SEPARATOR, 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 */
90#define pSERVICE(i) ServicePtrs[i]
91#define iSERVICE(i) (*pSERVICE(i))
92#define LP_SNUM_OK(iService) (((iService) >= 0) && ((iService) < iNumServices))
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/*
d17c9a44
WD
109 * This structure describes a single service. Their order must match the
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
WD
151 BOOL read_only;
152 BOOL strict_modes;
153 BOOL transfer_logging;
154 BOOL use_chroot;
155 BOOL write_only;
0b76cd63
AT
156} service;
157
e0a18ce3
WD
158/* This is a default service used to prime a services structure. In order
159 * to make these easy to keep sorted in the same way as the variables
160 * above, use the variable name in the leading comment, including a
161 * trailing ';' (to avoid a sorting problem with trailing digits). */
8880d8ec 162static service sDefault = {
e0a18ce3 163 /* auth_users; */ NULL,
0b52f94d
WD
164 /* charset; */ NULL,
165 /* comment; */ NULL,
4319cc56 166 /* dont_compress; */ DEFAULT_DONT_COMPRESS,
e0a18ce3
WD
167 /* exclude; */ NULL,
168 /* exclude_from; */ NULL,
169 /* filter; */ NULL,
170 /* gid; */ NOBODY_GROUP,
171 /* hosts_allow; */ NULL,
172 /* hosts_deny; */ NULL,
173 /* include; */ NULL,
174 /* include_from; */ NULL,
882d8c1c 175 /* incoming_chmod; */ NULL,
e0a18ce3 176 /* lock_file; */ DEFAULT_LOCK_FILE,
d20ce6e1 177 /* log_file; */ NULL,
e0a18ce3
WD
178 /* log_format; */ "%o %h [%a] %m (%u) %f %l",
179 /* name; */ NULL,
aaccaa88 180 /* outgoing_chmod; */ NULL,
e0a18ce3
WD
181 /* path; */ NULL,
182 /* postxfer_exec; */ NULL,
183 /* prexfer_exec; */ NULL,
184 /* refuse_options; */ NULL,
185 /* secrets_file; */ NULL,
186 /* temp_dir; */ NULL,
187 /* uid; */ NOBODY_USER,
188
189 /* max_connections; */ 0,
190 /* max_verbosity; */ 1,
d20ce6e1 191 /* syslog_facility; */ LOG_DAEMON,
e0a18ce3
WD
192 /* timeout; */ 0,
193
9439c0cb 194 /* fake_super; */ False,
e0a18ce3
WD
195 /* ignore_errors; */ False,
196 /* ignore_nonreadable; */ False,
197 /* list; */ True,
9585b276 198 /* munge_symlinks; */ (BOOL)-1,
0b52f94d 199 /* numeric_ids; */ (BOOL)-1,
e0a18ce3
WD
200 /* read_only; */ True,
201 /* strict_modes; */ True,
202 /* transfer_logging; */ False,
203 /* use_chroot; */ True,
204 /* write_only; */ False,
0b76cd63
AT
205};
206
0b76cd63
AT
207/* local variables */
208static service **ServicePtrs = NULL;
209static int iNumServices = 0;
210static int iServiceIndex = 0;
211static BOOL bInGlobalSection = True;
212
8880d8ec 213#define NUMPARAMETERS (sizeof (parm_table) / sizeof (struct parm_struct))
0b76cd63 214
09e13ae2
AT
215static struct enum_list enum_facilities[] = {
216#ifdef LOG_AUTH
217 { LOG_AUTH, "auth" },
218#endif
219#ifdef LOG_AUTHPRIV
220 { LOG_AUTHPRIV, "authpriv" },
221#endif
222#ifdef LOG_CRON
223 { LOG_CRON, "cron" },
224#endif
225#ifdef LOG_DAEMON
226 { LOG_DAEMON, "daemon" },
227#endif
228#ifdef LOG_FTP
229 { LOG_FTP, "ftp" },
230#endif
231#ifdef LOG_KERN
232 { LOG_KERN, "kern" },
233#endif
234#ifdef LOG_LPR
235 { LOG_LPR, "lpr" },
236#endif
237#ifdef LOG_MAIL
238 { LOG_MAIL, "mail" },
239#endif
240#ifdef LOG_NEWS
241 { LOG_NEWS, "news" },
242#endif
243#ifdef LOG_AUTH
6464bdbe 244 { LOG_AUTH, "security" },
09e13ae2
AT
245#endif
246#ifdef LOG_SYSLOG
247 { LOG_SYSLOG, "syslog" },
248#endif
249#ifdef LOG_USER
250 { LOG_USER, "user" },
251#endif
252#ifdef LOG_UUCP
253 { LOG_UUCP, "uucp" },
254#endif
255#ifdef LOG_LOCAL0
256 { LOG_LOCAL0, "local0" },
257#endif
258#ifdef LOG_LOCAL1
259 { LOG_LOCAL1, "local1" },
260#endif
261#ifdef LOG_LOCAL2
262 { LOG_LOCAL2, "local2" },
263#endif
264#ifdef LOG_LOCAL3
265 { LOG_LOCAL3, "local3" },
266#endif
267#ifdef LOG_LOCAL4
268 { LOG_LOCAL4, "local4" },
269#endif
270#ifdef LOG_LOCAL5
271 { LOG_LOCAL5, "local5" },
272#endif
273#ifdef LOG_LOCAL6
274 { LOG_LOCAL6, "local6" },
275#endif
276#ifdef LOG_LOCAL7
277 { LOG_LOCAL7, "local7" },
278#endif
8880d8ec
WD
279 { -1, NULL }
280};
09e13ae2 281
0b76cd63
AT
282
283/* note that we do not initialise the defaults union - it is not allowed in ANSI C */
284static struct parm_struct parm_table[] =
285{
d17c9a44 286 {"address", P_STRING, P_GLOBAL,&Globals.bind_address, NULL,0},
d17c9a44
WD
287 {"motd file", P_STRING, P_GLOBAL,&Globals.motd_file, NULL,0},
288 {"pid file", P_STRING, P_GLOBAL,&Globals.pid_file, NULL,0},
289 {"port", P_INTEGER,P_GLOBAL,&Globals.rsync_port, NULL,0},
290 {"socket options", P_STRING, P_GLOBAL,&Globals.socket_options, NULL,0},
d17c9a44
WD
291
292 {"auth users", P_STRING, P_LOCAL, &sDefault.auth_users, NULL,0},
0b52f94d 293 {"charset", P_STRING, P_LOCAL, &sDefault.charset, NULL,0},
d17c9a44
WD
294 {"comment", P_STRING, P_LOCAL, &sDefault.comment, NULL,0},
295 {"dont compress", P_STRING, P_LOCAL, &sDefault.dont_compress, NULL,0},
296 {"exclude from", P_STRING, P_LOCAL, &sDefault.exclude_from, NULL,0},
297 {"exclude", P_STRING, P_LOCAL, &sDefault.exclude, NULL,0},
9439c0cb 298 {"fake super", P_BOOL, P_LOCAL, &sDefault.fake_super, NULL,0},
d17c9a44
WD
299 {"filter", P_STRING, P_LOCAL, &sDefault.filter, NULL,0},
300 {"gid", P_STRING, P_LOCAL, &sDefault.gid, NULL,0},
301 {"hosts allow", P_STRING, P_LOCAL, &sDefault.hosts_allow, NULL,0},
302 {"hosts deny", P_STRING, P_LOCAL, &sDefault.hosts_deny, NULL,0},
303 {"ignore errors", P_BOOL, P_LOCAL, &sDefault.ignore_errors, NULL,0},
304 {"ignore nonreadable",P_BOOL, P_LOCAL, &sDefault.ignore_nonreadable,NULL,0},
305 {"include from", P_STRING, P_LOCAL, &sDefault.include_from, NULL,0},
306 {"include", P_STRING, P_LOCAL, &sDefault.include, NULL,0},
882d8c1c 307 {"incoming chmod", P_STRING, P_LOCAL, &sDefault.incoming_chmod, NULL,0},
d17c9a44
WD
308 {"list", P_BOOL, P_LOCAL, &sDefault.list, NULL,0},
309 {"lock file", P_STRING, P_LOCAL, &sDefault.lock_file, NULL,0},
d20ce6e1 310 {"log file", P_STRING, P_LOCAL, &sDefault.log_file, NULL,0},
d17c9a44
WD
311 {"log format", P_STRING, P_LOCAL, &sDefault.log_format, NULL,0},
312 {"max connections", P_INTEGER,P_LOCAL, &sDefault.max_connections, NULL,0},
313 {"max verbosity", P_INTEGER,P_LOCAL, &sDefault.max_verbosity, NULL,0},
9585b276 314 {"munge symlinks", P_BOOL, P_LOCAL, &sDefault.munge_symlinks, NULL,0},
d17c9a44 315 {"name", P_STRING, P_LOCAL, &sDefault.name, NULL,0},
beef86d0 316 {"numeric ids", P_BOOL, P_LOCAL, &sDefault.numeric_ids, NULL,0},
aaccaa88 317 {"outgoing chmod", P_STRING, P_LOCAL, &sDefault.outgoing_chmod, NULL,0},
d17c9a44 318 {"path", P_PATH, P_LOCAL, &sDefault.path, NULL,0},
bec617b9 319#ifdef HAVE_PUTENV
d17c9a44
WD
320 {"post-xfer exec", P_STRING, P_LOCAL, &sDefault.postxfer_exec, NULL,0},
321 {"pre-xfer exec", P_STRING, P_LOCAL, &sDefault.prexfer_exec, NULL,0},
bec617b9 322#endif
d17c9a44
WD
323 {"read only", P_BOOL, P_LOCAL, &sDefault.read_only, NULL,0},
324 {"refuse options", P_STRING, P_LOCAL, &sDefault.refuse_options, NULL,0},
325 {"secrets file", P_STRING, P_LOCAL, &sDefault.secrets_file, NULL,0},
326 {"strict modes", P_BOOL, P_LOCAL, &sDefault.strict_modes, NULL,0},
d20ce6e1 327 {"syslog facility", P_ENUM, P_LOCAL, &sDefault.syslog_facility,enum_facilities,0},
18cad449 328 {"temp dir", P_PATH, P_LOCAL, &sDefault.temp_dir, NULL,0},
d17c9a44
WD
329 {"timeout", P_INTEGER,P_LOCAL, &sDefault.timeout, NULL,0},
330 {"transfer logging", P_BOOL, P_LOCAL, &sDefault.transfer_logging, NULL,0},
331 {"uid", P_STRING, P_LOCAL, &sDefault.uid, NULL,0},
332 {"use chroot", P_BOOL, P_LOCAL, &sDefault.use_chroot, NULL,0},
333 {"write only", P_BOOL, P_LOCAL, &sDefault.write_only, NULL,0},
334 {NULL, P_BOOL, P_NONE, NULL, NULL,0}
0b76cd63
AT
335};
336
8880d8ec 337/* Initialise the global parameter structure. */
0b76cd63
AT
338static void init_globals(void)
339{
46f7dc3b 340 memset(&Globals, 0, sizeof Globals);
0b76cd63
AT
341}
342
8880d8ec 343/* Initialise the sDefault parameter structure. */
0b76cd63
AT
344static void init_locals(void)
345{
8880d8ec 346 /* Nothing needed yet... */
0b76cd63
AT
347}
348
8880d8ec
WD
349/* In this section all the functions that are used to access the
350 * parameters from the rest of the program are defined. */
351
352#define FN_GLOBAL_STRING(fn_name, ptr) \
353 char *fn_name(void) {return *(char **)(ptr) ? *(char **)(ptr) : "";}
354#define FN_GLOBAL_BOOL(fn_name, ptr) \
355 BOOL fn_name(void) {return *(BOOL *)(ptr);}
356#define FN_GLOBAL_CHAR(fn_name, ptr) \
357 char fn_name(void) {return *(char *)(ptr);}
358#define FN_GLOBAL_INTEGER(fn_name, ptr) \
359 int fn_name(void) {return *(int *)(ptr);}
360
361#define FN_LOCAL_STRING(fn_name, val) \
362 char *fn_name(int i) {return LP_SNUM_OK(i) && pSERVICE(i)->val? pSERVICE(i)->val : (sDefault.val? sDefault.val : "");}
363#define FN_LOCAL_BOOL(fn_name, val) \
364 BOOL fn_name(int i) {return LP_SNUM_OK(i)? pSERVICE(i)->val : sDefault.val;}
365#define FN_LOCAL_CHAR(fn_name, val) \
366 char fn_name(int i) {return LP_SNUM_OK(i)? pSERVICE(i)->val : sDefault.val;}
367#define FN_LOCAL_INTEGER(fn_name, val) \
368 int fn_name(int i) {return LP_SNUM_OK(i)? pSERVICE(i)->val : sDefault.val;}
0b76cd63 369
d17c9a44 370FN_GLOBAL_STRING(lp_bind_address, &Globals.bind_address)
d17c9a44 371FN_GLOBAL_STRING(lp_motd_file, &Globals.motd_file)
8638dd48 372FN_GLOBAL_STRING(lp_pid_file, &Globals.pid_file)
a6801c39 373FN_GLOBAL_STRING(lp_socket_options, &Globals.socket_options)
d17c9a44 374
0c56b1ad 375FN_GLOBAL_INTEGER(lp_rsync_port, &Globals.rsync_port)
a6801c39 376
d17c9a44 377FN_LOCAL_STRING(lp_auth_users, auth_users)
0b52f94d 378FN_LOCAL_STRING(lp_charset, charset)
0b76cd63 379FN_LOCAL_STRING(lp_comment, comment)
d17c9a44
WD
380FN_LOCAL_STRING(lp_dont_compress, dont_compress)
381FN_LOCAL_STRING(lp_exclude, exclude)
382FN_LOCAL_STRING(lp_exclude_from, exclude_from)
383FN_LOCAL_STRING(lp_filter, filter)
8ef4ffd6 384FN_LOCAL_STRING(lp_gid, gid)
56c473b7
AT
385FN_LOCAL_STRING(lp_hosts_allow, hosts_allow)
386FN_LOCAL_STRING(lp_hosts_deny, hosts_deny)
cd64343a
DD
387FN_LOCAL_STRING(lp_include, include)
388FN_LOCAL_STRING(lp_include_from, include_from)
882d8c1c 389FN_LOCAL_STRING(lp_incoming_chmod, incoming_chmod)
d17c9a44 390FN_LOCAL_STRING(lp_lock_file, lock_file)
d20ce6e1 391FN_LOCAL_STRING(lp_log_file, log_file)
e08bfe12 392FN_LOCAL_STRING(lp_log_format, log_format)
d17c9a44 393FN_LOCAL_STRING(lp_name, name)
aaccaa88 394FN_LOCAL_STRING(lp_outgoing_chmod, outgoing_chmod)
d17c9a44 395FN_LOCAL_STRING(lp_path, path)
bec617b9 396FN_LOCAL_STRING(lp_postxfer_exec, postxfer_exec)
d17c9a44
WD
397FN_LOCAL_STRING(lp_prexfer_exec, prexfer_exec)
398FN_LOCAL_STRING(lp_refuse_options, refuse_options)
399FN_LOCAL_STRING(lp_secrets_file, secrets_file)
18cad449 400FN_LOCAL_STRING(lp_temp_dir, temp_dir)
d17c9a44
WD
401FN_LOCAL_STRING(lp_uid, uid)
402
5e71c444 403FN_LOCAL_INTEGER(lp_max_connections, max_connections)
59b0e7a8 404FN_LOCAL_INTEGER(lp_max_verbosity, max_verbosity)
0b52f94d 405FN_LOCAL_INTEGER(lp_syslog_facility, syslog_facility)
d17c9a44
WD
406FN_LOCAL_INTEGER(lp_timeout, timeout)
407
9439c0cb 408FN_LOCAL_BOOL(lp_fake_super, fake_super)
d17c9a44
WD
409FN_LOCAL_BOOL(lp_ignore_errors, ignore_errors)
410FN_LOCAL_BOOL(lp_ignore_nonreadable, ignore_nonreadable)
411FN_LOCAL_BOOL(lp_list, list)
9585b276 412FN_LOCAL_BOOL(lp_munge_symlinks, munge_symlinks)
0b52f94d 413FN_LOCAL_BOOL(lp_numeric_ids, numeric_ids)
d17c9a44
WD
414FN_LOCAL_BOOL(lp_read_only, read_only)
415FN_LOCAL_BOOL(lp_strict_modes, strict_modes)
416FN_LOCAL_BOOL(lp_transfer_logging, transfer_logging)
417FN_LOCAL_BOOL(lp_use_chroot, use_chroot)
418FN_LOCAL_BOOL(lp_write_only, write_only)
0b76cd63
AT
419
420/* local prototypes */
6464bdbe
WD
421static int strwicmp(char *psz1, char *psz2);
422static int map_parameter(char *parmname);
423static BOOL set_boolean(BOOL *pb, char *parmvalue);
0b76cd63 424static int getservicebyname(char *name, service *pserviceDest);
6464bdbe 425static void copy_service(service *pserviceDest, service *pserviceSource);
0b76cd63
AT
426static BOOL do_parameter(char *parmname, char *parmvalue);
427static BOOL do_section(char *sectionname);
428
8880d8ec 429/* Initialise a service to the defaults. */
0b76cd63
AT
430static void init_service(service *pservice)
431{
8880d8ec
WD
432 memset((char *)pservice, 0, sizeof (service));
433 copy_service(pservice, &sDefault);
0b76cd63
AT
434}
435
8880d8ec 436/* Assign a copy of v to *s. Handles NULL strings. *v must
1179355d
MP
437 * be initialized when this is called, either to NULL or a malloc'd
438 * string.
439 *
8880d8ec 440 * FIXME There is a small leak here in that sometimes the existing
1179355d
MP
441 * value will be dynamically allocated, and the old copy is lost.
442 * However, we can't always deallocate the old value, because in the
443 * case of sDefault, it points to a static string. It would be nice
444 * to have either all-strdup'd values, or to never need to free
8880d8ec 445 * memory. */
3d2e458a 446static void string_set(char **s, const char *v)
0b76cd63 447{
0b76cd63
AT
448 if (!v) {
449 *s = NULL;
450 return;
451 }
8880d8ec 452 if (!(*s = strdup(v)))
3d2e458a 453 exit_cleanup(RERR_MALLOC);
0b76cd63
AT
454}
455
8880d8ec 456/* Add a new service to the services array, with defaults set. */
0b76cd63
AT
457static int add_a_service(service *pservice, char *name)
458{
8880d8ec
WD
459 int i;
460 service tservice;
461 int num_to_alloc = iNumServices+1;
0b76cd63 462
8880d8ec 463 tservice = *pservice;
0b76cd63 464
8880d8ec
WD
465 /* it might already exist */
466 if (name) {
467 i = getservicebyname(name, NULL);
468 if (i >= 0)
469 return i;
470 }
0b76cd63 471
8880d8ec
WD
472 i = iNumServices;
473 ServicePtrs = realloc_array(ServicePtrs, service *, num_to_alloc);
6cdc6b13 474
8880d8ec
WD
475 if (ServicePtrs)
476 pSERVICE(iNumServices) = new(service);
0b76cd63 477
8880d8ec
WD
478 if (!ServicePtrs || !pSERVICE(iNumServices))
479 return -1;
0b76cd63 480
8880d8ec 481 iNumServices++;
0b76cd63 482
8880d8ec
WD
483 init_service(pSERVICE(i));
484 copy_service(pSERVICE(i), &tservice);
485 if (name)
486 string_set(&iSERVICE(i).name, name);
0b76cd63 487
8880d8ec 488 return i;
0b76cd63
AT
489}
490
8880d8ec 491/* Do a case-insensitive, whitespace-ignoring string compare. */
0b76cd63
AT
492static int strwicmp(char *psz1, char *psz2)
493{
8880d8ec
WD
494 /* if BOTH strings are NULL, return TRUE, if ONE is NULL return */
495 /* appropriate value. */
496 if (psz1 == psz2)
497 return 0;
498
499 if (psz1 == NULL)
500 return -1;
501
502 if (psz2 == NULL)
503 return 1;
504
505 /* sync the strings on first non-whitespace */
506 while (1) {
507 while (isSpace(psz1))
508 psz1++;
509 while (isSpace(psz2))
510 psz2++;
511 if (toUpper(psz1) != toUpper(psz2) || *psz1 == '\0' || *psz2 == '\0')
512 break;
513 psz1++;
514 psz2++;
515 }
516 return *psz1 - *psz2;
0b76cd63
AT
517}
518
8880d8ec
WD
519/* Map a parameter's string representation to something we can use.
520 * Returns False if the parameter string is not recognised, else TRUE. */
0b76cd63
AT
521static int map_parameter(char *parmname)
522{
8880d8ec 523 int iIndex;
0b76cd63 524
8880d8ec
WD
525 if (*parmname == '-')
526 return -1;
0b76cd63 527
8880d8ec
WD
528 for (iIndex = 0; parm_table[iIndex].label; iIndex++) {
529 if (strwicmp(parm_table[iIndex].label, parmname) == 0)
530 return iIndex;
531 }
0b76cd63 532
8880d8ec
WD
533 rprintf(FLOG, "Unknown Parameter encountered: \"%s\"\n", parmname);
534 return -1;
0b76cd63
AT
535}
536
8880d8ec
WD
537/* Set a boolean variable from the text value stored in the passed string.
538 * Returns True in success, False if the passed string does not correctly
539 * represent a boolean. */
0b76cd63
AT
540static BOOL set_boolean(BOOL *pb, char *parmvalue)
541{
8880d8ec
WD
542 if (strwicmp(parmvalue, "yes") == 0
543 || strwicmp(parmvalue, "true") == 0
544 || strwicmp(parmvalue, "1") == 0)
545 *pb = True;
546 else if (strwicmp(parmvalue, "no") == 0
547 || strwicmp(parmvalue, "False") == 0
548 || strwicmp(parmvalue, "0") == 0)
549 *pb = False;
550 else {
551 rprintf(FLOG, "Badly formed boolean in configuration file: \"%s\".\n", parmvalue);
552 return False;
553 }
554 return True;
0b76cd63
AT
555}
556
8880d8ec 557/* Find a service by name. Otherwise works like get_service. */
0b76cd63
AT
558static int getservicebyname(char *name, service *pserviceDest)
559{
8880d8ec
WD
560 int i;
561
562 for (i = iNumServices - 1; i >= 0; i--) {
563 if (strwicmp(iSERVICE(i).name, name) == 0) {
564 if (pserviceDest != NULL)
565 copy_service(pserviceDest, pSERVICE(i));
566 break;
567 }
568 }
0b76cd63 569
8880d8ec 570 return i;
0b76cd63
AT
571}
572
8880d8ec
WD
573/* Copy a service structure to another. */
574static void copy_service(service *pserviceDest, service *pserviceSource)
0b76cd63 575{
8880d8ec
WD
576 int i;
577
578 for (i = 0; parm_table[i].label; i++) {
579 if (parm_table[i].ptr && parm_table[i].class == P_LOCAL) {
580 void *def_ptr = parm_table[i].ptr;
581 void *src_ptr = ((char *)pserviceSource) + PTR_DIFF(def_ptr, &sDefault);
582 void *dest_ptr = ((char *)pserviceDest) + PTR_DIFF(def_ptr, &sDefault);
583
584 switch (parm_table[i].type) {
585 case P_BOOL:
586 case P_BOOLREV:
587 *(BOOL *)dest_ptr = *(BOOL *)src_ptr;
588 break;
589
590 case P_INTEGER:
591 case P_ENUM:
592 case P_OCTAL:
593 *(int *)dest_ptr = *(int *)src_ptr;
594 break;
595
596 case P_CHAR:
597 *(char *)dest_ptr = *(char *)src_ptr;
598 break;
599
600 case P_PATH:
601 case P_STRING:
602 string_set(dest_ptr, *(char **)src_ptr);
603 break;
604
605 default:
606 break;
607 }
608 }
609 }
0b76cd63
AT
610}
611
8880d8ec 612/* Process a parameter. */
0b76cd63
AT
613static BOOL lp_do_parameter(int snum, char *parmname, char *parmvalue)
614{
8880d8ec
WD
615 int parmnum, i;
616 void *parm_ptr=NULL; /* where we are going to store the result */
617 void *def_ptr=NULL;
618 char *cp;
619
620 parmnum = map_parameter(parmname);
621
622 if (parmnum < 0) {
623 rprintf(FLOG, "IGNORING unknown parameter \"%s\"\n", parmname);
624 return True;
625 }
626
627 def_ptr = parm_table[parmnum].ptr;
628
629 /* we might point at a service, the default service or a global */
630 if (snum < 0)
631 parm_ptr = def_ptr;
632 else {
633 if (parm_table[parmnum].class == P_GLOBAL) {
634 rprintf(FLOG, "Global parameter %s found in service section!\n", parmname);
635 return True;
636 }
637 parm_ptr = ((char *)pSERVICE(snum)) + PTR_DIFF(def_ptr, &sDefault);
638 }
639
640 /* now switch on the type of variable it is */
641 switch (parm_table[parmnum].type) {
642 case P_BOOL:
643 set_boolean(parm_ptr, parmvalue);
644 break;
645
646 case P_BOOLREV:
647 set_boolean(parm_ptr, parmvalue);
648 *(BOOL *)parm_ptr = ! *(BOOL *)parm_ptr;
649 break;
650
651 case P_INTEGER:
652 *(int *)parm_ptr = atoi(parmvalue);
653 break;
654
655 case P_CHAR:
656 *(char *)parm_ptr = *parmvalue;
657 break;
658
659 case P_OCTAL:
660 sscanf(parmvalue, "%o", (int *)parm_ptr);
661 break;
662
663 case P_PATH:
664 string_set(parm_ptr, parmvalue);
665 if ((cp = *(char**)parm_ptr) != NULL) {
666 int len = strlen(cp);
667 while (len > 1 && cp[len-1] == '/') len--;
668 cp[len] = '\0';
669 }
670 break;
671
672 case P_STRING:
673 string_set(parm_ptr, parmvalue);
674 break;
675
676 case P_GSTRING:
677 strlcpy((char *)parm_ptr, parmvalue, sizeof (pstring));
678 break;
679
680 case P_ENUM:
681 for (i=0;parm_table[parmnum].enum_list[i].name;i++) {
682 if (strequal(parmvalue, parm_table[parmnum].enum_list[i].name)) {
683 *(int *)parm_ptr = parm_table[parmnum].enum_list[i].value;
684 break;
685 }
686 }
687 if (!parm_table[parmnum].enum_list[i].name) {
688 if (atoi(parmvalue) > 0)
689 *(int *)parm_ptr = atoi(parmvalue);
690 }
691 break;
692 case P_SEP:
693 break;
694 }
695
696 return True;
0b76cd63
AT
697}
698
8880d8ec 699/* Process a parameter. */
0b76cd63
AT
700static BOOL do_parameter(char *parmname, char *parmvalue)
701{
8880d8ec 702 return lp_do_parameter(bInGlobalSection?-2:iServiceIndex, parmname, parmvalue);
0b76cd63
AT
703}
704
8880d8ec
WD
705/* Process a new section (rsync module).
706 * Returns True on success, False on failure. */
0b76cd63
AT
707static BOOL do_section(char *sectionname)
708{
8880d8ec
WD
709 BOOL isglobal = strwicmp(sectionname, GLOBAL_NAME) == 0;
710
711 /* if we were in a global section then do the local inits */
712 if (bInGlobalSection && !isglobal)
713 init_locals();
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
723 /* If we have a current service, tidy it up before moving on. */
724 if (iServiceIndex >= 0) {
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
736 if ((iServiceIndex = add_a_service(&sDefault, sectionname)) < 0) {
737 rprintf(FLOG, "Failed to add a new module\n");
738 return False;
739 }
740
741 return True;
742}
743
744/* Load the services array from the services file. Return True on success,
745 * False on failure. */
f9e940ef 746BOOL lp_load(char *pszFname, int globals_only)
0b76cd63 747{
f9e940ef 748 pstring n2;
0b76cd63 749
f9e940ef 750 bInGlobalSection = True;
6464bdbe 751
f9e940ef 752 init_globals();
0b76cd63 753
d4eba300 754 pstrcpy(n2, pszFname);
0b76cd63 755
f9e940ef
AT
756 /* We get sections first, so have to start 'behind' to make up */
757 iServiceIndex = -1;
8880d8ec 758 return pm_process(n2, globals_only ? NULL : do_section, do_parameter);
0b76cd63
AT
759}
760
8880d8ec 761/* Return the max number of services. */
0b76cd63
AT
762int lp_numservices(void)
763{
8880d8ec 764 return iNumServices;
0b76cd63
AT
765}
766
8880d8ec
WD
767/* Return the number of the service with the given name, or -1 if it doesn't
768 * exist. Note that this is a DIFFERENT ANIMAL from the internal function
769 * getservicebyname()! This works ONLY if all services have been loaded,
770 * and does not copy the found service. */
0b76cd63
AT
771int lp_number(char *name)
772{
8880d8ec 773 int i;
0b76cd63 774
8880d8ec
WD
775 for (i = iNumServices - 1; i >= 0; i--) {
776 if (strcmp(lp_name(i), name) == 0)
777 break;
778 }
0b76cd63 779
8880d8ec 780 return i;
0b76cd63 781}