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