Switching to GPL 3.
[rsync/rsync.git] / loadparm.c
1 /* This is based on loadparm.c from Samba, written by Andrew Tridgell
2    and Karl Auer */
3
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 version 3 as
7  * published by the Free Software Foundation.
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.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, visit the http://fsf.org website.
16  */
17
18 /* some fixes
19  *
20  * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
21  */
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
37  *
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
49 /* TODO: Parameter to set debug level on server. */
50
51 #include "rsync.h"
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")
55 typedef char pstring[1024];
56 #define pstrcpy(a,b) strlcpy(a,b,sizeof(pstring))
57
58 #ifndef LOG_DAEMON
59 #define LOG_DAEMON 0
60 #endif
61
62 /* the following are used by loadparm for option lists */
63 typedef enum
64 {
65         P_BOOL,P_BOOLREV,P_CHAR,P_INTEGER,P_OCTAL,
66         P_PATH,P_STRING,P_GSTRING,P_ENUM,P_SEP
67 } parm_type;
68
69 typedef enum
70 {
71         P_LOCAL,P_GLOBAL,P_SEPARATOR,P_NONE
72 } parm_class;
73
74 struct enum_list {
75         int value;
76         char *name;
77 };
78
79 struct 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
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
98 /*
99  * This structure describes global (ie., server-wide) parameters.
100  */
101 typedef struct
102 {
103         char *bind_address;
104         char *motd_file;
105         char *pid_file;
106         char *socket_options;
107
108         int rsync_port;
109 } global;
110
111 static global Globals;
112
113
114 /*
115  * This structure describes a single service.  Their order must match the
116  * initializers below, which you can accomplish by keeping each sub-section
117  * sorted.  (e.g. in vim, just visually select each subsection and use !sort.)
118  */
119 typedef struct
120 {
121         char *auth_users;
122         char *comment;
123         char *dont_compress;
124         char *exclude;
125         char *exclude_from;
126         char *filter;
127         char *gid;
128         char *hosts_allow;
129         char *hosts_deny;
130         char *include;
131         char *include_from;
132         char *incoming_chmod;
133         char *lock_file;
134         char *log_file;
135         char *log_format;
136         char *name;
137         char *outgoing_chmod;
138         char *path;
139         char *postxfer_exec;
140         char *prexfer_exec;
141         char *refuse_options;
142         char *secrets_file;
143         char *temp_dir;
144         char *uid;
145
146         int max_connections;
147         int max_verbosity;
148         int syslog_facility;
149         int timeout;
150
151         BOOL fake_super;
152         BOOL ignore_errors;
153         BOOL ignore_nonreadable;
154         BOOL list;
155         BOOL read_only;
156         BOOL strict_modes;
157         BOOL transfer_logging;
158         BOOL use_chroot;
159         BOOL write_only;
160 } service;
161
162
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). */
167 static service sDefault =
168 {
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,
180  /* incoming_chmod; */          NULL,
181  /* lock_file; */               DEFAULT_LOCK_FILE,
182  /* log_file; */                NULL,
183  /* log_format; */              "%o %h [%a] %m (%u) %f %l",
184  /* name; */                    NULL,
185  /* outgoing_chmod; */          NULL,
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,
196  /* syslog_facility; */         LOG_DAEMON,
197  /* timeout; */                 0,
198
199  /* fake_super; */              False,
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,
208 };
209
210
211
212 /* local variables */
213 static service **ServicePtrs = NULL;
214 static int iNumServices = 0;
215 static int iServiceIndex = 0;
216 static BOOL bInGlobalSection = True;
217
218 #define NUMPARAMETERS (sizeof(parm_table) / sizeof(struct parm_struct))
219
220 static 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
249         { LOG_AUTH, "security" },
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
286
287 /* note that we do not initialise the defaults union - it is not allowed in ANSI C */
288 static struct parm_struct parm_table[] =
289 {
290  {"address",           P_STRING, P_GLOBAL,&Globals.bind_address,       NULL,0},
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},
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  {"fake super",        P_BOOL,   P_LOCAL, &sDefault.fake_super,        NULL,0},
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},
310  {"incoming chmod",    P_STRING, P_LOCAL, &sDefault.incoming_chmod,    NULL,0},
311  {"list",              P_BOOL,   P_LOCAL, &sDefault.list,              NULL,0},
312  {"lock file",         P_STRING, P_LOCAL, &sDefault.lock_file,         NULL,0},
313  {"log file",          P_STRING, P_LOCAL, &sDefault.log_file,          NULL,0},
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},
318  {"outgoing chmod",    P_STRING, P_LOCAL, &sDefault.outgoing_chmod,    NULL,0},
319  {"path",              P_PATH,   P_LOCAL, &sDefault.path,              NULL,0},
320 #ifdef HAVE_PUTENV
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},
323 #endif
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},
328  {"syslog facility",   P_ENUM,   P_LOCAL, &sDefault.syslog_facility,enum_facilities,0},
329  {"temp dir",          P_PATH,   P_LOCAL, &sDefault.temp_dir,          NULL,0},
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}
336 };
337
338
339 /***************************************************************************
340 * Initialise the global parameter structure.
341 ***************************************************************************/
342 static void init_globals(void)
343 {
344         memset(&Globals, 0, sizeof Globals);
345 }
346
347 /***************************************************************************
348 * Initialise the sDefault parameter structure.
349 ***************************************************************************/
350 static void init_locals(void)
351 {
352 }
353
354
355 /*
356    In this section all the functions that are used to access the
357    parameters from the rest of the program are defined
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
379 FN_GLOBAL_STRING(lp_bind_address, &Globals.bind_address)
380 FN_GLOBAL_STRING(lp_motd_file, &Globals.motd_file)
381 FN_GLOBAL_STRING(lp_pid_file, &Globals.pid_file)
382 FN_GLOBAL_STRING(lp_socket_options, &Globals.socket_options)
383
384 FN_GLOBAL_INTEGER(lp_rsync_port, &Globals.rsync_port)
385
386 FN_LOCAL_STRING(lp_auth_users, auth_users)
387 FN_LOCAL_STRING(lp_comment, comment)
388 FN_LOCAL_STRING(lp_dont_compress, dont_compress)
389 FN_LOCAL_STRING(lp_exclude, exclude)
390 FN_LOCAL_STRING(lp_exclude_from, exclude_from)
391 FN_LOCAL_STRING(lp_filter, filter)
392 FN_LOCAL_STRING(lp_gid, gid)
393 FN_LOCAL_STRING(lp_hosts_allow, hosts_allow)
394 FN_LOCAL_STRING(lp_hosts_deny, hosts_deny)
395 FN_LOCAL_STRING(lp_include, include)
396 FN_LOCAL_STRING(lp_include_from, include_from)
397 FN_LOCAL_STRING(lp_incoming_chmod, incoming_chmod)
398 FN_LOCAL_STRING(lp_lock_file, lock_file)
399 FN_LOCAL_STRING(lp_log_file, log_file)
400 FN_LOCAL_STRING(lp_log_format, log_format)
401 FN_LOCAL_STRING(lp_name, name)
402 FN_LOCAL_STRING(lp_outgoing_chmod, outgoing_chmod)
403 FN_LOCAL_STRING(lp_path, path)
404 FN_LOCAL_STRING(lp_postxfer_exec, postxfer_exec)
405 FN_LOCAL_STRING(lp_prexfer_exec, prexfer_exec)
406 FN_LOCAL_STRING(lp_refuse_options, refuse_options)
407 FN_LOCAL_STRING(lp_secrets_file, secrets_file)
408 FN_LOCAL_INTEGER(lp_syslog_facility, syslog_facility)
409 FN_LOCAL_STRING(lp_temp_dir, temp_dir)
410 FN_LOCAL_STRING(lp_uid, uid)
411
412 FN_LOCAL_INTEGER(lp_max_connections, max_connections)
413 FN_LOCAL_INTEGER(lp_max_verbosity, max_verbosity)
414 FN_LOCAL_INTEGER(lp_timeout, timeout)
415
416 FN_LOCAL_BOOL(lp_fake_super, fake_super)
417 FN_LOCAL_BOOL(lp_ignore_errors, ignore_errors)
418 FN_LOCAL_BOOL(lp_ignore_nonreadable, ignore_nonreadable)
419 FN_LOCAL_BOOL(lp_list, list)
420 FN_LOCAL_BOOL(lp_read_only, read_only)
421 FN_LOCAL_BOOL(lp_strict_modes, strict_modes)
422 FN_LOCAL_BOOL(lp_transfer_logging, transfer_logging)
423 FN_LOCAL_BOOL(lp_use_chroot, use_chroot)
424 FN_LOCAL_BOOL(lp_write_only, write_only)
425
426 /* local prototypes */
427 static int    strwicmp(char *psz1, char *psz2);
428 static int    map_parameter(char *parmname);
429 static BOOL   set_boolean(BOOL *pb, char *parmvalue);
430 static int    getservicebyname(char *name, service *pserviceDest);
431 static void   copy_service(service *pserviceDest, service *pserviceSource);
432 static BOOL   do_parameter(char *parmname, char *parmvalue);
433 static BOOL   do_section(char *sectionname);
434
435
436 /***************************************************************************
437 * initialise a service to the defaults
438 ***************************************************************************/
439 static void init_service(service *pservice)
440 {
441         memset((char *)pservice,0,sizeof(service));
442         copy_service(pservice,&sDefault);
443 }
444
445
446 /**
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.
457  **/
458 static void string_set(char **s, const char *v)
459 {
460         if (!v) {
461                 *s = NULL;
462                 return;
463         }
464         *s = strdup(v);
465         if (!*s)
466                 exit_cleanup(RERR_MALLOC);
467 }
468
469
470 /***************************************************************************
471 * add a new service to the services array initialising it with the given
472 * service
473 ***************************************************************************/
474 static 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 */
483   if (name)
484     {
485       i = getservicebyname(name,NULL);
486       if (i >= 0)
487         return(i);
488     }
489
490   i = iNumServices;
491
492   ServicePtrs = realloc_array(ServicePtrs, service *, num_to_alloc);
493
494   if (ServicePtrs)
495           pSERVICE(iNumServices) = new(service);
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)
505     string_set(&iSERVICE(i).name,name);
506
507   return(i);
508 }
509
510 /***************************************************************************
511 * Do a case-insensitive, whitespace-ignoring string compare.
512 ***************************************************************************/
513 static 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    {
529       while (isSpace(psz1))
530          psz1++;
531       while (isSpace(psz2))
532          psz2++;
533       if (toUpper(psz1) != toUpper(psz2) || *psz1 == '\0' || *psz2 == '\0')
534          break;
535       psz1++;
536       psz2++;
537    }
538    return (*psz1 - *psz2);
539 }
540
541 /***************************************************************************
542 * Map a parameter's string representation to something we can use.
543 * Returns False if the parameter string is not recognised, else TRUE.
544 ***************************************************************************/
545 static int map_parameter(char *parmname)
546 {
547    int iIndex;
548
549    if (*parmname == '-')
550      return(-1);
551
552    for (iIndex = 0; parm_table[iIndex].label; iIndex++)
553       if (strwicmp(parm_table[iIndex].label, parmname) == 0)
554          return(iIndex);
555
556    rprintf(FERROR, "Unknown Parameter encountered: \"%s\"\n", parmname);
557    return(-1);
558 }
559
560
561 /***************************************************************************
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.
565 ***************************************************************************/
566 static 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 /***************************************************************************
590 * Find a service by name. Otherwise works like get_service.
591 ***************************************************************************/
592 static int getservicebyname(char *name, service *pserviceDest)
593 {
594    int iService;
595
596    for (iService = iNumServices - 1; iService >= 0; iService--)
597       if (strwicmp(iSERVICE(iService).name, name) == 0)
598       {
599          if (pserviceDest != NULL)
600            copy_service(pserviceDest, pSERVICE(iService));
601          break;
602       }
603
604    return (iService);
605 }
606
607
608
609 /***************************************************************************
610 * Copy a service structure to another
611 ***************************************************************************/
612 static void copy_service(service *pserviceDest,
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;
620         void *src_ptr =
621           ((char *)pserviceSource) + PTR_DIFF(def_ptr,&sDefault);
622         void *dest_ptr =
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
642           case P_PATH:
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 /***************************************************************************
655 * Process a parameter for a particular service number. If snum < 0
656 * then assume we are in the globals
657 ***************************************************************************/
658 static 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;
663    char *cp;
664
665    parmnum = map_parameter(parmname);
666
667    if (parmnum < 0)
668      {
669        rprintf(FERROR, "IGNORING unknown parameter \"%s\"\n", parmname);
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
710      case P_PATH:
711        string_set(parm_ptr,parmvalue);
712        if ((cp = *(char**)parm_ptr) != NULL) {
713            int len = strlen(cp);
714            while (len > 1 && cp[len-1] == '/') len--;
715            cp[len] = '\0';
716        }
717        break;
718
719      case P_STRING:
720        string_set(parm_ptr,parmvalue);
721        break;
722
723      case P_GSTRING:
724        strlcpy((char *)parm_ptr,parmvalue,sizeof(pstring));
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              }
734              if (!parm_table[parmnum].enum_list[i].name) {
735                      if (atoi(parmvalue) > 0)
736                              *(int *)parm_ptr = atoi(parmvalue);
737              }
738              break;
739      case P_SEP:
740              break;
741      }
742
743    return(True);
744 }
745
746 /***************************************************************************
747 * Process a parameter.
748 ***************************************************************************/
749 static BOOL do_parameter(char *parmname, char *parmvalue)
750 {
751    return lp_do_parameter(bInGlobalSection?-2:iServiceIndex, parmname, parmvalue);
752 }
753
754 /***************************************************************************
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.
758 ***************************************************************************/
759 static 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. */
770    bInGlobalSection = isglobal;
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 /***************************************************************************
802 * Load the services array from the services file. Return True on success,
803 * False on failure.
804 ***************************************************************************/
805 BOOL lp_load(char *pszFname, int globals_only)
806 {
807         extern int am_server;
808         extern int am_root;
809         pstring n2;
810         BOOL bRetval;
811
812         bRetval = False;
813
814         bInGlobalSection = True;
815
816         init_globals();
817
818         if (pszFname)
819             pstrcpy(n2,pszFname);
820         else if (am_server && am_root <= 0)
821             pstrcpy(n2,RSYNCD_USERCONF);
822         else
823             pstrcpy(n2,RSYNCD_SYSCONF);
824
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);
828
829         return (bRetval);
830 }
831
832
833 /***************************************************************************
834 * return the max number of services
835 ***************************************************************************/
836 int lp_numservices(void)
837 {
838   return(iNumServices);
839 }
840
841 /***************************************************************************
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.
846 ***************************************************************************/
847 int lp_number(char *name)
848 {
849    int iService;
850
851    for (iService = iNumServices - 1; iService >= 0; iService--)
852       if (strcmp(lp_name(iService), name) == 0)
853          break;
854
855    return (iService);
856 }
857