Fixed a problem in a couple OS's sys_acl_get_access_bits() functions.
[rsync/rsync.git] / loadparm.c
CommitLineData
0b76cd63
AT
1/* This is based on loadparm.c from Samba, written by Andrew Tridgell
2 and Karl Auer */
3
0f78b815
WD
4/*
5 * This program is free software; you can redistribute it and/or modify
ba2133d6
WD
6 * it under the terms of the GNU General Public License version 2 as
7 * published by the Free Software Foundation.
0f78b815
WD
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
3d2e458a 13 *
e7c67065
WD
14 * You should have received a copy of the GNU General Public License along
15 * with this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA.
3d2e458a
MP
17 */
18
0f78b815
WD
19/* some fixes
20 *
21 * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
22 */
0b76cd63
AT
23
24/*
25 * Load parameters.
26 *
27 * This module provides suitable callback functions for the params
28 * module. It builds the internal table of service details which is
29 * then used by the rest of the server.
30 *
31 * To add a parameter:
32 *
33 * 1) add it to the global or service structure definition
34 * 2) add it to the parm_table
35 * 3) add it to the list of available functions (eg: using FN_GLOBAL_STRING())
36 * 4) If it's a global then initialise it in init_globals. If a local
37 * (ie. service) parameter then initialise it in the sDefault structure
6464bdbe 38 *
0b76cd63
AT
39 *
40 * Notes:
41 * The configuration file is processed sequentially for speed. It is NOT
42 * accessed randomly as happens in 'real' Windows. For this reason, there
43 * is a fair bit of sequence-dependent code here - ie., code which assumes
44 * that certain things happen before others. In particular, the code which
45 * happens at the boundary between sections is delicately poised, so be
46 * careful!
47 *
48 */
49
94f34ca1
MP
50/* TODO: Parameter to set debug level on server. */
51
0b76cd63 52#include "rsync.h"
0b76cd63
AT
53#define PTR_DIFF(p1,p2) ((ptrdiff_t)(((char *)(p1)) - (char *)(p2)))
54#define strequal(a,b) (strcasecmp(a,b)==0)
55#define BOOLSTR(b) ((b) ? "Yes" : "No")
56typedef char pstring[1024];
37f9805d 57#define pstrcpy(a,b) strlcpy(a,b,sizeof(pstring))
0b76cd63 58
d20ce6e1
WD
59#ifndef LOG_DAEMON
60#define LOG_DAEMON 0
61#endif
62
0b76cd63
AT
63/* the following are used by loadparm for option lists */
64typedef enum
65{
31593dd6 66 P_BOOL,P_BOOLREV,P_CHAR,P_INTEGER,P_OCTAL,
459a83c9 67 P_PATH,P_STRING,P_GSTRING,P_ENUM,P_SEP
0b76cd63
AT
68} parm_type;
69
70typedef enum
71{
31593dd6 72 P_LOCAL,P_GLOBAL,P_SEPARATOR,P_NONE
0b76cd63
AT
73} parm_class;
74
75struct enum_list {
76 int value;
77 char *name;
78};
79
80struct parm_struct
81{
82 char *label;
83 parm_type type;
84 parm_class class;
85 void *ptr;
86 struct enum_list *enum_list;
87 unsigned flags;
88};
89
0b76cd63
AT
90#ifndef GLOBAL_NAME
91#define GLOBAL_NAME "global"
92#endif
93
94/* some helpful bits */
95#define pSERVICE(i) ServicePtrs[i]
96#define iSERVICE(i) (*pSERVICE(i))
97#define LP_SNUM_OK(iService) (((iService) >= 0) && ((iService) < iNumServices))
98
6464bdbe 99/*
0b76cd63
AT
100 * This structure describes global (ie., server-wide) parameters.
101 */
102typedef struct
103{
d17c9a44 104 char *bind_address;
d17c9a44 105 char *motd_file;
8638dd48 106 char *pid_file;
a6801c39 107 char *socket_options;
d17c9a44 108
0c56b1ad 109 int rsync_port;
0b76cd63
AT
110} global;
111
112static global Globals;
113
114
6464bdbe 115/*
d17c9a44
WD
116 * This structure describes a single service. Their order must match the
117 * initializers below, which you can accomplish by keeping each sub-section
e0a18ce3 118 * sorted. (e.g. in vim, just visually select each subsection and use !sort.)
0b76cd63
AT
119 */
120typedef struct
121{
d17c9a44 122 char *auth_users;
0b76cd63 123 char *comment;
d17c9a44
WD
124 char *dont_compress;
125 char *exclude;
126 char *exclude_from;
127 char *filter;
8ef4ffd6 128 char *gid;
56c473b7
AT
129 char *hosts_allow;
130 char *hosts_deny;
cd64343a
DD
131 char *include;
132 char *include_from;
882d8c1c 133 char *incoming_chmod;
d17c9a44 134 char *lock_file;
d20ce6e1 135 char *log_file;
e08bfe12 136 char *log_format;
d17c9a44 137 char *name;
aaccaa88 138 char *outgoing_chmod;
d17c9a44 139 char *path;
bec617b9 140 char *postxfer_exec;
d17c9a44
WD
141 char *prexfer_exec;
142 char *refuse_options;
143 char *secrets_file;
18cad449 144 char *temp_dir;
d17c9a44
WD
145 char *uid;
146
5e71c444 147 int max_connections;
59b0e7a8 148 int max_verbosity;
d20ce6e1 149 int syslog_facility;
d17c9a44
WD
150 int timeout;
151
9439c0cb 152 BOOL fake_super;
d17c9a44 153 BOOL ignore_errors;
60cb2f90 154 BOOL ignore_nonreadable;
d17c9a44
WD
155 BOOL list;
156 BOOL read_only;
157 BOOL strict_modes;
158 BOOL transfer_logging;
159 BOOL use_chroot;
160 BOOL write_only;
0b76cd63
AT
161} service;
162
163
e0a18ce3
WD
164/* This is a default service used to prime a services structure. In order
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). */
6464bdbe 168static service sDefault =
0b76cd63 169{
e0a18ce3
WD
170 /* auth_users; */ NULL,
171 /* comment; */ NULL,
172 /* dont_compress; */ "*.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz",
173 /* exclude; */ NULL,
174 /* exclude_from; */ NULL,
175 /* filter; */ NULL,
176 /* gid; */ NOBODY_GROUP,
177 /* hosts_allow; */ NULL,
178 /* hosts_deny; */ NULL,
179 /* include; */ NULL,
180 /* include_from; */ NULL,
882d8c1c 181 /* incoming_chmod; */ NULL,
e0a18ce3 182 /* lock_file; */ DEFAULT_LOCK_FILE,
d20ce6e1 183 /* log_file; */ NULL,
e0a18ce3
WD
184 /* log_format; */ "%o %h [%a] %m (%u) %f %l",
185 /* name; */ NULL,
aaccaa88 186 /* outgoing_chmod; */ NULL,
e0a18ce3
WD
187 /* path; */ NULL,
188 /* postxfer_exec; */ NULL,
189 /* prexfer_exec; */ NULL,
190 /* refuse_options; */ NULL,
191 /* secrets_file; */ NULL,
192 /* temp_dir; */ NULL,
193 /* uid; */ NOBODY_USER,
194
195 /* max_connections; */ 0,
196 /* max_verbosity; */ 1,
d20ce6e1 197 /* syslog_facility; */ LOG_DAEMON,
e0a18ce3
WD
198 /* timeout; */ 0,
199
9439c0cb 200 /* fake_super; */ False,
e0a18ce3
WD
201 /* ignore_errors; */ False,
202 /* ignore_nonreadable; */ False,
203 /* list; */ True,
204 /* read_only; */ True,
205 /* strict_modes; */ True,
206 /* transfer_logging; */ False,
207 /* use_chroot; */ True,
208 /* write_only; */ False,
0b76cd63
AT
209};
210
211
212
213/* local variables */
214static service **ServicePtrs = NULL;
215static int iNumServices = 0;
216static int iServiceIndex = 0;
217static BOOL bInGlobalSection = True;
218
219#define NUMPARAMETERS (sizeof(parm_table) / sizeof(struct parm_struct))
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
285 { -1, NULL }};
286
0b76cd63
AT
287
288/* note that we do not initialise the defaults union - it is not allowed in ANSI C */
289static struct parm_struct parm_table[] =
290{
d17c9a44 291 {"address", P_STRING, P_GLOBAL,&Globals.bind_address, NULL,0},
d17c9a44
WD
292 {"motd file", P_STRING, P_GLOBAL,&Globals.motd_file, NULL,0},
293 {"pid file", P_STRING, P_GLOBAL,&Globals.pid_file, NULL,0},
294 {"port", P_INTEGER,P_GLOBAL,&Globals.rsync_port, NULL,0},
295 {"socket options", P_STRING, P_GLOBAL,&Globals.socket_options, NULL,0},
d17c9a44
WD
296
297 {"auth users", P_STRING, P_LOCAL, &sDefault.auth_users, NULL,0},
298 {"comment", P_STRING, P_LOCAL, &sDefault.comment, NULL,0},
299 {"dont compress", P_STRING, P_LOCAL, &sDefault.dont_compress, NULL,0},
300 {"exclude from", P_STRING, P_LOCAL, &sDefault.exclude_from, NULL,0},
301 {"exclude", P_STRING, P_LOCAL, &sDefault.exclude, NULL,0},
9439c0cb 302 {"fake super", P_BOOL, P_LOCAL, &sDefault.fake_super, NULL,0},
d17c9a44
WD
303 {"filter", P_STRING, P_LOCAL, &sDefault.filter, NULL,0},
304 {"gid", P_STRING, P_LOCAL, &sDefault.gid, NULL,0},
305 {"hosts allow", P_STRING, P_LOCAL, &sDefault.hosts_allow, NULL,0},
306 {"hosts deny", P_STRING, P_LOCAL, &sDefault.hosts_deny, NULL,0},
307 {"ignore errors", P_BOOL, P_LOCAL, &sDefault.ignore_errors, NULL,0},
308 {"ignore nonreadable",P_BOOL, P_LOCAL, &sDefault.ignore_nonreadable,NULL,0},
309 {"include from", P_STRING, P_LOCAL, &sDefault.include_from, NULL,0},
310 {"include", P_STRING, P_LOCAL, &sDefault.include, NULL,0},
882d8c1c 311 {"incoming chmod", P_STRING, P_LOCAL, &sDefault.incoming_chmod, NULL,0},
d17c9a44
WD
312 {"list", P_BOOL, P_LOCAL, &sDefault.list, NULL,0},
313 {"lock file", P_STRING, P_LOCAL, &sDefault.lock_file, NULL,0},
d20ce6e1 314 {"log file", P_STRING, P_LOCAL, &sDefault.log_file, NULL,0},
d17c9a44
WD
315 {"log format", P_STRING, P_LOCAL, &sDefault.log_format, NULL,0},
316 {"max connections", P_INTEGER,P_LOCAL, &sDefault.max_connections, NULL,0},
317 {"max verbosity", P_INTEGER,P_LOCAL, &sDefault.max_verbosity, NULL,0},
318 {"name", P_STRING, P_LOCAL, &sDefault.name, NULL,0},
aaccaa88 319 {"outgoing chmod", P_STRING, P_LOCAL, &sDefault.outgoing_chmod, NULL,0},
d17c9a44 320 {"path", P_PATH, P_LOCAL, &sDefault.path, NULL,0},
bec617b9 321#ifdef HAVE_PUTENV
d17c9a44
WD
322 {"post-xfer exec", P_STRING, P_LOCAL, &sDefault.postxfer_exec, NULL,0},
323 {"pre-xfer exec", P_STRING, P_LOCAL, &sDefault.prexfer_exec, NULL,0},
bec617b9 324#endif
d17c9a44
WD
325 {"read only", P_BOOL, P_LOCAL, &sDefault.read_only, NULL,0},
326 {"refuse options", P_STRING, P_LOCAL, &sDefault.refuse_options, NULL,0},
327 {"secrets file", P_STRING, P_LOCAL, &sDefault.secrets_file, NULL,0},
328 {"strict modes", P_BOOL, P_LOCAL, &sDefault.strict_modes, NULL,0},
d20ce6e1 329 {"syslog facility", P_ENUM, P_LOCAL, &sDefault.syslog_facility,enum_facilities,0},
18cad449 330 {"temp dir", P_PATH, P_LOCAL, &sDefault.temp_dir, NULL,0},
d17c9a44
WD
331 {"timeout", P_INTEGER,P_LOCAL, &sDefault.timeout, NULL,0},
332 {"transfer logging", P_BOOL, P_LOCAL, &sDefault.transfer_logging, NULL,0},
333 {"uid", P_STRING, P_LOCAL, &sDefault.uid, NULL,0},
334 {"use chroot", P_BOOL, P_LOCAL, &sDefault.use_chroot, NULL,0},
335 {"write only", P_BOOL, P_LOCAL, &sDefault.write_only, NULL,0},
336 {NULL, P_BOOL, P_NONE, NULL, NULL,0}
0b76cd63
AT
337};
338
339
340/***************************************************************************
6105464b 341* Initialise the global parameter structure.
0b76cd63
AT
342***************************************************************************/
343static void init_globals(void)
344{
46f7dc3b 345 memset(&Globals, 0, sizeof Globals);
0b76cd63
AT
346}
347
348/***************************************************************************
6105464b 349* Initialise the sDefault parameter structure.
0b76cd63
AT
350***************************************************************************/
351static void init_locals(void)
352{
353}
354
355
356/*
6464bdbe
WD
357 In this section all the functions that are used to access the
358 parameters from the rest of the program are defined
0b76cd63
AT
359*/
360
361#define FN_GLOBAL_STRING(fn_name,ptr) \
362 char *fn_name(void) {return(*(char **)(ptr) ? *(char **)(ptr) : "");}
363#define FN_GLOBAL_BOOL(fn_name,ptr) \
364 BOOL fn_name(void) {return(*(BOOL *)(ptr));}
365#define FN_GLOBAL_CHAR(fn_name,ptr) \
366 char fn_name(void) {return(*(char *)(ptr));}
367#define FN_GLOBAL_INTEGER(fn_name,ptr) \
368 int fn_name(void) {return(*(int *)(ptr));}
369
370#define FN_LOCAL_STRING(fn_name,val) \
371 char *fn_name(int i) {return((LP_SNUM_OK(i)&&pSERVICE(i)->val)?pSERVICE(i)->val : (sDefault.val?sDefault.val:""));}
372#define FN_LOCAL_BOOL(fn_name,val) \
373 BOOL fn_name(int i) {return(LP_SNUM_OK(i)? pSERVICE(i)->val : sDefault.val);}
374#define FN_LOCAL_CHAR(fn_name,val) \
375 char fn_name(int i) {return(LP_SNUM_OK(i)? pSERVICE(i)->val : sDefault.val);}
376#define FN_LOCAL_INTEGER(fn_name,val) \
377 int fn_name(int i) {return(LP_SNUM_OK(i)? pSERVICE(i)->val : sDefault.val);}
378
379
d17c9a44 380FN_GLOBAL_STRING(lp_bind_address, &Globals.bind_address)
d17c9a44 381FN_GLOBAL_STRING(lp_motd_file, &Globals.motd_file)
8638dd48 382FN_GLOBAL_STRING(lp_pid_file, &Globals.pid_file)
a6801c39 383FN_GLOBAL_STRING(lp_socket_options, &Globals.socket_options)
d17c9a44 384
0c56b1ad 385FN_GLOBAL_INTEGER(lp_rsync_port, &Globals.rsync_port)
a6801c39 386
d17c9a44 387FN_LOCAL_STRING(lp_auth_users, auth_users)
0b76cd63 388FN_LOCAL_STRING(lp_comment, comment)
d17c9a44
WD
389FN_LOCAL_STRING(lp_dont_compress, dont_compress)
390FN_LOCAL_STRING(lp_exclude, exclude)
391FN_LOCAL_STRING(lp_exclude_from, exclude_from)
392FN_LOCAL_STRING(lp_filter, filter)
8ef4ffd6 393FN_LOCAL_STRING(lp_gid, gid)
56c473b7
AT
394FN_LOCAL_STRING(lp_hosts_allow, hosts_allow)
395FN_LOCAL_STRING(lp_hosts_deny, hosts_deny)
cd64343a
DD
396FN_LOCAL_STRING(lp_include, include)
397FN_LOCAL_STRING(lp_include_from, include_from)
882d8c1c 398FN_LOCAL_STRING(lp_incoming_chmod, incoming_chmod)
d17c9a44 399FN_LOCAL_STRING(lp_lock_file, lock_file)
d20ce6e1 400FN_LOCAL_STRING(lp_log_file, log_file)
e08bfe12 401FN_LOCAL_STRING(lp_log_format, log_format)
d17c9a44 402FN_LOCAL_STRING(lp_name, name)
aaccaa88 403FN_LOCAL_STRING(lp_outgoing_chmod, outgoing_chmod)
d17c9a44 404FN_LOCAL_STRING(lp_path, path)
bec617b9 405FN_LOCAL_STRING(lp_postxfer_exec, postxfer_exec)
d17c9a44
WD
406FN_LOCAL_STRING(lp_prexfer_exec, prexfer_exec)
407FN_LOCAL_STRING(lp_refuse_options, refuse_options)
408FN_LOCAL_STRING(lp_secrets_file, secrets_file)
d20ce6e1 409FN_LOCAL_INTEGER(lp_syslog_facility, syslog_facility)
18cad449 410FN_LOCAL_STRING(lp_temp_dir, temp_dir)
d17c9a44
WD
411FN_LOCAL_STRING(lp_uid, uid)
412
5e71c444 413FN_LOCAL_INTEGER(lp_max_connections, max_connections)
59b0e7a8 414FN_LOCAL_INTEGER(lp_max_verbosity, max_verbosity)
d17c9a44
WD
415FN_LOCAL_INTEGER(lp_timeout, timeout)
416
9439c0cb 417FN_LOCAL_BOOL(lp_fake_super, fake_super)
d17c9a44
WD
418FN_LOCAL_BOOL(lp_ignore_errors, ignore_errors)
419FN_LOCAL_BOOL(lp_ignore_nonreadable, ignore_nonreadable)
420FN_LOCAL_BOOL(lp_list, list)
421FN_LOCAL_BOOL(lp_read_only, read_only)
422FN_LOCAL_BOOL(lp_strict_modes, strict_modes)
423FN_LOCAL_BOOL(lp_transfer_logging, transfer_logging)
424FN_LOCAL_BOOL(lp_use_chroot, use_chroot)
425FN_LOCAL_BOOL(lp_write_only, write_only)
0b76cd63
AT
426
427/* local prototypes */
6464bdbe
WD
428static int strwicmp(char *psz1, char *psz2);
429static int map_parameter(char *parmname);
430static BOOL set_boolean(BOOL *pb, char *parmvalue);
0b76cd63 431static int getservicebyname(char *name, service *pserviceDest);
6464bdbe 432static void copy_service(service *pserviceDest, service *pserviceSource);
0b76cd63
AT
433static BOOL do_parameter(char *parmname, char *parmvalue);
434static BOOL do_section(char *sectionname);
435
436
437/***************************************************************************
6105464b 438* initialise a service to the defaults
0b76cd63
AT
439***************************************************************************/
440static void init_service(service *pservice)
441{
f5780433 442 memset((char *)pservice,0,sizeof(service));
45ccc5c0 443 copy_service(pservice,&sDefault);
0b76cd63
AT
444}
445
3d2e458a
MP
446
447/**
1179355d
MP
448 * Assign a copy of @p v to @p *s. Handles NULL strings. @p *v must
449 * be initialized when this is called, either to NULL or a malloc'd
450 * string.
451 *
452 * @fixme There is a small leak here in that sometimes the existing
453 * value will be dynamically allocated, and the old copy is lost.
454 * However, we can't always deallocate the old value, because in the
455 * case of sDefault, it points to a static string. It would be nice
456 * to have either all-strdup'd values, or to never need to free
457 * memory.
3d2e458a
MP
458 **/
459static void string_set(char **s, const char *v)
0b76cd63 460{
0b76cd63
AT
461 if (!v) {
462 *s = NULL;
463 return;
464 }
465 *s = strdup(v);
3d2e458a
MP
466 if (!*s)
467 exit_cleanup(RERR_MALLOC);
0b76cd63
AT
468}
469
470
471/***************************************************************************
6105464b
WD
472* add a new service to the services array initialising it with the given
473* service
0b76cd63
AT
474***************************************************************************/
475static int add_a_service(service *pservice, char *name)
476{
477 int i;
478 service tservice;
479 int num_to_alloc = iNumServices+1;
480
481 tservice = *pservice;
482
483 /* it might already exist */
6464bdbe 484 if (name)
0b76cd63
AT
485 {
486 i = getservicebyname(name,NULL);
487 if (i >= 0)
488 return(i);
489 }
490
491 i = iNumServices;
492
58cadc86 493 ServicePtrs = realloc_array(ServicePtrs, service *, num_to_alloc);
6cdc6b13 494
0b76cd63 495 if (ServicePtrs)
58cadc86 496 pSERVICE(iNumServices) = new(service);
0b76cd63
AT
497
498 if (!ServicePtrs || !pSERVICE(iNumServices))
499 return(-1);
500
501 iNumServices++;
502
503 init_service(pSERVICE(i));
504 copy_service(pSERVICE(i),&tservice);
505 if (name)
6464bdbe 506 string_set(&iSERVICE(i).name,name);
0b76cd63
AT
507
508 return(i);
509}
510
511/***************************************************************************
6105464b 512* Do a case-insensitive, whitespace-ignoring string compare.
0b76cd63
AT
513***************************************************************************/
514static int strwicmp(char *psz1, char *psz2)
515{
516 /* if BOTH strings are NULL, return TRUE, if ONE is NULL return */
517 /* appropriate value. */
518 if (psz1 == psz2)
519 return (0);
520 else
521 if (psz1 == NULL)
522 return (-1);
523 else
524 if (psz2 == NULL)
525 return (1);
526
527 /* sync the strings on first non-whitespace */
528 while (1)
529 {
2dc7b8bd 530 while (isSpace(psz1))
0b76cd63 531 psz1++;
2dc7b8bd 532 while (isSpace(psz2))
0b76cd63 533 psz2++;
2dc7b8bd 534 if (toUpper(psz1) != toUpper(psz2) || *psz1 == '\0' || *psz2 == '\0')
0b76cd63
AT
535 break;
536 psz1++;
537 psz2++;
538 }
539 return (*psz1 - *psz2);
540}
541
542/***************************************************************************
6105464b
WD
543* Map a parameter's string representation to something we can use.
544* Returns False if the parameter string is not recognised, else TRUE.
0b76cd63
AT
545***************************************************************************/
546static int map_parameter(char *parmname)
547{
548 int iIndex;
549
550 if (*parmname == '-')
551 return(-1);
552
6464bdbe 553 for (iIndex = 0; parm_table[iIndex].label; iIndex++)
0b76cd63
AT
554 if (strwicmp(parm_table[iIndex].label, parmname) == 0)
555 return(iIndex);
556
cd64343a 557 rprintf(FERROR, "Unknown Parameter encountered: \"%s\"\n", parmname);
0b76cd63
AT
558 return(-1);
559}
560
561
562/***************************************************************************
6105464b
WD
563* Set a boolean variable from the text value stored in the passed string.
564* Returns True in success, False if the passed string does not correctly
565* represent a boolean.
0b76cd63
AT
566***************************************************************************/
567static BOOL set_boolean(BOOL *pb, char *parmvalue)
568{
569 BOOL bRetval;
570
571 bRetval = True;
572 if (strwicmp(parmvalue, "yes") == 0 ||
573 strwicmp(parmvalue, "true") == 0 ||
574 strwicmp(parmvalue, "1") == 0)
575 *pb = True;
576 else
577 if (strwicmp(parmvalue, "no") == 0 ||
578 strwicmp(parmvalue, "False") == 0 ||
579 strwicmp(parmvalue, "0") == 0)
580 *pb = False;
581 else
582 {
583 rprintf(FERROR, "Badly formed boolean in configuration file: \"%s\".\n",
584 parmvalue);
585 bRetval = False;
586 }
587 return (bRetval);
588}
589
590/***************************************************************************
6105464b 591* Find a service by name. Otherwise works like get_service.
0b76cd63
AT
592***************************************************************************/
593static int getservicebyname(char *name, service *pserviceDest)
594{
595 int iService;
596
597 for (iService = iNumServices - 1; iService >= 0; iService--)
6464bdbe 598 if (strwicmp(iSERVICE(iService).name, name) == 0)
0b76cd63
AT
599 {
600 if (pserviceDest != NULL)
601 copy_service(pserviceDest, pSERVICE(iService));
602 break;
603 }
604
605 return (iService);
606}
607
608
609
610/***************************************************************************
6105464b 611* Copy a service structure to another
0b76cd63 612***************************************************************************/
6464bdbe 613static void copy_service(service *pserviceDest,
0b76cd63
AT
614 service *pserviceSource)
615{
616 int i;
617
618 for (i=0;parm_table[i].label;i++)
619 if (parm_table[i].ptr && parm_table[i].class == P_LOCAL) {
620 void *def_ptr = parm_table[i].ptr;
6464bdbe 621 void *src_ptr =
0b76cd63 622 ((char *)pserviceSource) + PTR_DIFF(def_ptr,&sDefault);
6464bdbe 623 void *dest_ptr =
0b76cd63
AT
624 ((char *)pserviceDest) + PTR_DIFF(def_ptr,&sDefault);
625
626 switch (parm_table[i].type)
627 {
628 case P_BOOL:
629 case P_BOOLREV:
630 *(BOOL *)dest_ptr = *(BOOL *)src_ptr;
631 break;
632
633 case P_INTEGER:
634 case P_ENUM:
635 case P_OCTAL:
636 *(int *)dest_ptr = *(int *)src_ptr;
637 break;
638
639 case P_CHAR:
640 *(char *)dest_ptr = *(char *)src_ptr;
641 break;
642
459a83c9 643 case P_PATH:
0b76cd63
AT
644 case P_STRING:
645 string_set(dest_ptr,*(char **)src_ptr);
646 break;
647
648 default:
649 break;
650 }
651 }
652}
653
654
655/***************************************************************************
6105464b
WD
656* Process a parameter for a particular service number. If snum < 0
657* then assume we are in the globals
0b76cd63
AT
658***************************************************************************/
659static BOOL lp_do_parameter(int snum, char *parmname, char *parmvalue)
660{
661 int parmnum, i;
662 void *parm_ptr=NULL; /* where we are going to store the result */
663 void *def_ptr=NULL;
459a83c9 664 char *cp;
0b76cd63
AT
665
666 parmnum = map_parameter(parmname);
667
668 if (parmnum < 0)
669 {
cd64343a 670 rprintf(FERROR, "IGNORING unknown parameter \"%s\"\n", parmname);
0b76cd63
AT
671 return(True);
672 }
673
674 def_ptr = parm_table[parmnum].ptr;
675
676 /* we might point at a service, the default service or a global */
677 if (snum < 0) {
678 parm_ptr = def_ptr;
679 } else {
680 if (parm_table[parmnum].class == P_GLOBAL) {
681 rprintf(FERROR, "Global parameter %s found in service section!\n",parmname);
682 return(True);
683 }
684 parm_ptr = ((char *)pSERVICE(snum)) + PTR_DIFF(def_ptr,&sDefault);
685 }
686
687 /* now switch on the type of variable it is */
688 switch (parm_table[parmnum].type)
689 {
690 case P_BOOL:
691 set_boolean(parm_ptr,parmvalue);
692 break;
693
694 case P_BOOLREV:
695 set_boolean(parm_ptr,parmvalue);
696 *(BOOL *)parm_ptr = ! *(BOOL *)parm_ptr;
697 break;
698
699 case P_INTEGER:
700 *(int *)parm_ptr = atoi(parmvalue);
701 break;
702
703 case P_CHAR:
704 *(char *)parm_ptr = *parmvalue;
705 break;
706
707 case P_OCTAL:
708 sscanf(parmvalue,"%o",(int *)parm_ptr);
709 break;
710
459a83c9
WD
711 case P_PATH:
712 string_set(parm_ptr,parmvalue);
713 if ((cp = *(char**)parm_ptr) != NULL) {
714 int len = strlen(cp);
15089022
WD
715 while (len > 1 && cp[len-1] == '/') len--;
716 cp[len] = '\0';
459a83c9
WD
717 }
718 break;
719
0b76cd63
AT
720 case P_STRING:
721 string_set(parm_ptr,parmvalue);
722 break;
723
724 case P_GSTRING:
37f9805d 725 strlcpy((char *)parm_ptr,parmvalue,sizeof(pstring));
0b76cd63
AT
726 break;
727
728 case P_ENUM:
729 for (i=0;parm_table[parmnum].enum_list[i].name;i++) {
730 if (strequal(parmvalue, parm_table[parmnum].enum_list[i].name)) {
731 *(int *)parm_ptr = parm_table[parmnum].enum_list[i].value;
732 break;
733 }
734 }
fabf5ea7 735 if (!parm_table[parmnum].enum_list[i].name) {
41059f75
AT
736 if (atoi(parmvalue) > 0)
737 *(int *)parm_ptr = atoi(parmvalue);
fabf5ea7 738 }
0b76cd63
AT
739 break;
740 case P_SEP:
741 break;
742 }
743
744 return(True);
745}
746
747/***************************************************************************
6105464b 748* Process a parameter.
0b76cd63
AT
749***************************************************************************/
750static BOOL do_parameter(char *parmname, char *parmvalue)
751{
752 return lp_do_parameter(bInGlobalSection?-2:iServiceIndex, parmname, parmvalue);
753}
754
755/***************************************************************************
6105464b
WD
756* Process a new section (service). At this stage all sections are services.
757* Later we'll have special sections that permit server parameters to be set.
758* Returns True on success, False on failure.
0b76cd63
AT
759***************************************************************************/
760static BOOL do_section(char *sectionname)
761{
762 BOOL bRetval;
763 BOOL isglobal = (strwicmp(sectionname, GLOBAL_NAME) == 0);
764 bRetval = False;
765
766 /* if we were in a global section then do the local inits */
767 if (bInGlobalSection && !isglobal)
768 init_locals();
769
770 /* if we've just struck a global section, note the fact. */
6464bdbe 771 bInGlobalSection = isglobal;
0b76cd63
AT
772
773 /* check for multiple global sections */
774 if (bInGlobalSection)
775 {
776 return(True);
777 }
778
779 /* if we have a current service, tidy it up before moving on */
780 bRetval = True;
781
782 if (iServiceIndex >= 0)
783 bRetval = True;
784
785 /* if all is still well, move to the next record in the services array */
786 if (bRetval)
787 {
788 /* We put this here to avoid an odd message order if messages are */
789 /* issued by the post-processing of a previous section. */
790
791 if ((iServiceIndex=add_a_service(&sDefault,sectionname)) < 0)
792 {
793 rprintf(FERROR,"Failed to add a new service\n");
794 return(False);
795 }
796 }
797
798 return (bRetval);
799}
800
801
802/***************************************************************************
6105464b
WD
803* Load the services array from the services file. Return True on success,
804* False on failure.
0b76cd63 805***************************************************************************/
f9e940ef 806BOOL lp_load(char *pszFname, int globals_only)
0b76cd63 807{
30e8c8e1 808 extern int am_server;
30e8c8e1 809 extern int am_root;
f9e940ef
AT
810 pstring n2;
811 BOOL bRetval;
6464bdbe 812
f9e940ef 813 bRetval = False;
0b76cd63 814
f9e940ef 815 bInGlobalSection = True;
6464bdbe 816
f9e940ef 817 init_globals();
0b76cd63 818
30e8c8e1
DD
819 if (pszFname)
820 pstrcpy(n2,pszFname);
9439c0cb 821 else if (am_server && am_root <= 0)
30e8c8e1
DD
822 pstrcpy(n2,RSYNCD_USERCONF);
823 else
824 pstrcpy(n2,RSYNCD_SYSCONF);
0b76cd63 825
f9e940ef
AT
826 /* We get sections first, so have to start 'behind' to make up */
827 iServiceIndex = -1;
828 bRetval = pm_process(n2, globals_only?NULL:do_section, do_parameter);
6464bdbe 829
f9e940ef 830 return (bRetval);
0b76cd63
AT
831}
832
833
834/***************************************************************************
6105464b 835* return the max number of services
0b76cd63
AT
836***************************************************************************/
837int lp_numservices(void)
838{
839 return(iNumServices);
840}
841
842/***************************************************************************
6105464b
WD
843* Return the number of the service with the given name, or -1 if it doesn't
844* exist. Note that this is a DIFFERENT ANIMAL from the internal function
845* getservicebyname()! This works ONLY if all services have been loaded, and
846* does not copy the found service.
0b76cd63
AT
847***************************************************************************/
848int lp_number(char *name)
849{
850 int iService;
851
852 for (iService = iNumServices - 1; iService >= 0; iService--)
8b6ad019 853 if (strcmp(lp_name(iService), name) == 0)
0b76cd63
AT
854 break;
855
856 return (iService);
857}
858