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