changed "syslog facility" to an enumerated type so the string name is
[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
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.
14
15 You should have received a copy of the GNU General Public License
16 along with this program; if not, write to the Free Software
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18*/
19
20/*
21 * Load parameters.
22 *
23 * This module provides suitable callback functions for the params
24 * module. It builds the internal table of service details which is
25 * then used by the rest of the server.
26 *
27 * To add a parameter:
28 *
29 * 1) add it to the global or service structure definition
30 * 2) add it to the parm_table
31 * 3) add it to the list of available functions (eg: using FN_GLOBAL_STRING())
32 * 4) If it's a global then initialise it in init_globals. If a local
33 * (ie. service) parameter then initialise it in the sDefault structure
34 *
35 *
36 * Notes:
37 * The configuration file is processed sequentially for speed. It is NOT
38 * accessed randomly as happens in 'real' Windows. For this reason, there
39 * is a fair bit of sequence-dependent code here - ie., code which assumes
40 * that certain things happen before others. In particular, the code which
41 * happens at the boundary between sections is delicately poised, so be
42 * careful!
43 *
44 */
45
46#include "rsync.h"
47#define BOOL int
48#define False 0
49#define True 1
50#define Realloc realloc
51#define PTR_DIFF(p1,p2) ((ptrdiff_t)(((char *)(p1)) - (char *)(p2)))
52#define strequal(a,b) (strcasecmp(a,b)==0)
53#define BOOLSTR(b) ((b) ? "Yes" : "No")
54typedef char pstring[1024];
e45e0093 55#define pstrcpy(a,b) strlcpy(a,b,sizeof(pstring)-1)
0b76cd63
AT
56
57/* the following are used by loadparm for option lists */
58typedef enum
59{
31593dd6
AT
60 P_BOOL,P_BOOLREV,P_CHAR,P_INTEGER,P_OCTAL,
61 P_STRING,P_GSTRING,P_ENUM,P_SEP
0b76cd63
AT
62} parm_type;
63
64typedef enum
65{
31593dd6 66 P_LOCAL,P_GLOBAL,P_SEPARATOR,P_NONE
0b76cd63
AT
67} parm_class;
68
69struct enum_list {
70 int value;
71 char *name;
72};
73
74struct parm_struct
75{
76 char *label;
77 parm_type type;
78 parm_class class;
79 void *ptr;
80 struct enum_list *enum_list;
81 unsigned flags;
82};
83
84static BOOL bLoaded = False;
85
86#ifndef GLOBAL_NAME
87#define GLOBAL_NAME "global"
88#endif
89
90/* some helpful bits */
91#define pSERVICE(i) ServicePtrs[i]
92#define iSERVICE(i) (*pSERVICE(i))
93#define LP_SNUM_OK(iService) (((iService) >= 0) && ((iService) < iNumServices))
94
95/*
96 * This structure describes global (ie., server-wide) parameters.
97 */
98typedef struct
99{
100 char *motd_file;
0c515f17 101 char *lock_file;
851dbdb7 102 int syslog_facility;
0c515f17 103 int max_connections;
0b76cd63
AT
104} global;
105
106static global Globals;
107
108
109
110/*
111 * This structure describes a single service.
112 */
113typedef struct
114{
115 char *name;
116 char *path;
117 char *comment;
118 BOOL read_only;
119 BOOL list;
8ef4ffd6
AT
120 char *uid;
121 char *gid;
56c473b7
AT
122 char *hosts_allow;
123 char *hosts_deny;
31593dd6
AT
124 char *auth_users;
125 char *secrets_file;
0b76cd63
AT
126} service;
127
128
129/* This is a default service used to prime a services structure */
130static service sDefault =
131{
132 NULL, /* name */
133 NULL, /* path */
134 NULL, /* comment */
135 True, /* read only */
136 True, /* list */
8ef4ffd6
AT
137 "nobody",/* uid */
138 "nobody",/* gid */
56c473b7
AT
139 NULL, /* hosts allow */
140 NULL, /* hosts deny */
31593dd6
AT
141 NULL, /* auth users */
142 NULL, /* secrets file */
0b76cd63
AT
143};
144
145
146
147/* local variables */
148static service **ServicePtrs = NULL;
149static int iNumServices = 0;
150static int iServiceIndex = 0;
151static BOOL bInGlobalSection = True;
152
153#define NUMPARAMETERS (sizeof(parm_table) / sizeof(struct parm_struct))
154
09e13ae2
AT
155static struct enum_list enum_facilities[] = {
156#ifdef LOG_AUTH
157 { LOG_AUTH, "auth" },
158#endif
159#ifdef LOG_AUTHPRIV
160 { LOG_AUTHPRIV, "authpriv" },
161#endif
162#ifdef LOG_CRON
163 { LOG_CRON, "cron" },
164#endif
165#ifdef LOG_DAEMON
166 { LOG_DAEMON, "daemon" },
167#endif
168#ifdef LOG_FTP
169 { LOG_FTP, "ftp" },
170#endif
171#ifdef LOG_KERN
172 { LOG_KERN, "kern" },
173#endif
174#ifdef LOG_LPR
175 { LOG_LPR, "lpr" },
176#endif
177#ifdef LOG_MAIL
178 { LOG_MAIL, "mail" },
179#endif
180#ifdef LOG_NEWS
181 { LOG_NEWS, "news" },
182#endif
183#ifdef LOG_AUTH
184 { LOG_AUTH, "security" },
185#endif
186#ifdef LOG_SYSLOG
187 { LOG_SYSLOG, "syslog" },
188#endif
189#ifdef LOG_USER
190 { LOG_USER, "user" },
191#endif
192#ifdef LOG_UUCP
193 { LOG_UUCP, "uucp" },
194#endif
195#ifdef LOG_LOCAL0
196 { LOG_LOCAL0, "local0" },
197#endif
198#ifdef LOG_LOCAL1
199 { LOG_LOCAL1, "local1" },
200#endif
201#ifdef LOG_LOCAL2
202 { LOG_LOCAL2, "local2" },
203#endif
204#ifdef LOG_LOCAL3
205 { LOG_LOCAL3, "local3" },
206#endif
207#ifdef LOG_LOCAL4
208 { LOG_LOCAL4, "local4" },
209#endif
210#ifdef LOG_LOCAL5
211 { LOG_LOCAL5, "local5" },
212#endif
213#ifdef LOG_LOCAL6
214 { LOG_LOCAL6, "local6" },
215#endif
216#ifdef LOG_LOCAL7
217 { LOG_LOCAL7, "local7" },
218#endif
219 { -1, NULL }};
220
0b76cd63
AT
221
222/* note that we do not initialise the defaults union - it is not allowed in ANSI C */
223static struct parm_struct parm_table[] =
224{
0c515f17 225 {"max connections", P_INTEGER, P_GLOBAL, &Globals.max_connections,NULL, 0},
0b76cd63 226 {"motd file", P_STRING, P_GLOBAL, &Globals.motd_file, NULL, 0},
0c515f17 227 {"lock file", P_STRING, P_GLOBAL, &Globals.lock_file, NULL, 0},
09e13ae2 228 {"syslog facility", P_ENUM, P_GLOBAL, &Globals.syslog_facility, enum_facilities,0},
0b76cd63
AT
229 {"name", P_STRING, P_LOCAL, &sDefault.name, NULL, 0},
230 {"comment", P_STRING, P_LOCAL, &sDefault.comment, NULL, 0},
231 {"path", P_STRING, P_LOCAL, &sDefault.path, NULL, 0},
232 {"read only", P_BOOL, P_LOCAL, &sDefault.read_only, NULL, 0},
233 {"list", P_BOOL, P_LOCAL, &sDefault.list, NULL, 0},
8ef4ffd6
AT
234 {"uid", P_STRING, P_LOCAL, &sDefault.uid, NULL, 0},
235 {"gid", P_STRING, P_LOCAL, &sDefault.gid, NULL, 0},
56c473b7
AT
236 {"hosts allow", P_STRING, P_LOCAL, &sDefault.hosts_allow, NULL, 0},
237 {"hosts deny", P_STRING, P_LOCAL, &sDefault.hosts_deny, NULL, 0},
31593dd6
AT
238 {"auth users", P_STRING, P_LOCAL, &sDefault.auth_users, NULL, 0},
239 {"secrets file", P_STRING, P_LOCAL, &sDefault.secrets_file,NULL, 0},
0b76cd63
AT
240 {NULL, P_BOOL, P_NONE, NULL, NULL, 0}
241};
242
243
244/***************************************************************************
245Initialise the global parameter structure.
246***************************************************************************/
247static void init_globals(void)
248{
851dbdb7
AT
249#ifdef LOG_DAEMON
250 Globals.syslog_facility = LOG_DAEMON;
251#endif
0c515f17 252 Globals.lock_file = "/var/run/rsyncd.lock";
0b76cd63
AT
253}
254
255/***************************************************************************
256Initialise the sDefault parameter structure.
257***************************************************************************/
258static void init_locals(void)
259{
260}
261
262
263/*
264 In this section all the functions that are used to access the
265 parameters from the rest of the program are defined
266*/
267
268#define FN_GLOBAL_STRING(fn_name,ptr) \
269 char *fn_name(void) {return(*(char **)(ptr) ? *(char **)(ptr) : "");}
270#define FN_GLOBAL_BOOL(fn_name,ptr) \
271 BOOL fn_name(void) {return(*(BOOL *)(ptr));}
272#define FN_GLOBAL_CHAR(fn_name,ptr) \
273 char fn_name(void) {return(*(char *)(ptr));}
274#define FN_GLOBAL_INTEGER(fn_name,ptr) \
275 int fn_name(void) {return(*(int *)(ptr));}
276
277#define FN_LOCAL_STRING(fn_name,val) \
278 char *fn_name(int i) {return((LP_SNUM_OK(i)&&pSERVICE(i)->val)?pSERVICE(i)->val : (sDefault.val?sDefault.val:""));}
279#define FN_LOCAL_BOOL(fn_name,val) \
280 BOOL fn_name(int i) {return(LP_SNUM_OK(i)? pSERVICE(i)->val : sDefault.val);}
281#define FN_LOCAL_CHAR(fn_name,val) \
282 char fn_name(int i) {return(LP_SNUM_OK(i)? pSERVICE(i)->val : sDefault.val);}
283#define FN_LOCAL_INTEGER(fn_name,val) \
284 int fn_name(int i) {return(LP_SNUM_OK(i)? pSERVICE(i)->val : sDefault.val);}
285
286
287FN_GLOBAL_STRING(lp_motd_file, &Globals.motd_file)
0c515f17
AT
288FN_GLOBAL_STRING(lp_lock_file, &Globals.lock_file)
289FN_GLOBAL_INTEGER(lp_max_connections, &Globals.max_connections)
851dbdb7 290FN_GLOBAL_INTEGER(lp_syslog_facility, &Globals.syslog_facility)
0b76cd63
AT
291FN_LOCAL_STRING(lp_name, name)
292FN_LOCAL_STRING(lp_comment, comment)
293FN_LOCAL_STRING(lp_path, path)
294FN_LOCAL_BOOL(lp_read_only, read_only)
295FN_LOCAL_BOOL(lp_list, list)
8ef4ffd6
AT
296FN_LOCAL_STRING(lp_uid, uid)
297FN_LOCAL_STRING(lp_gid, gid)
56c473b7
AT
298FN_LOCAL_STRING(lp_hosts_allow, hosts_allow)
299FN_LOCAL_STRING(lp_hosts_deny, hosts_deny)
31593dd6
AT
300FN_LOCAL_STRING(lp_auth_users, auth_users)
301FN_LOCAL_STRING(lp_secrets_file, secrets_file)
0b76cd63
AT
302
303/* local prototypes */
304static int strwicmp( char *psz1, char *psz2 );
305static int map_parameter( char *parmname);
306static BOOL set_boolean( BOOL *pb, char *parmvalue );
307static int getservicebyname(char *name, service *pserviceDest);
308static void copy_service( service *pserviceDest,
309 service *pserviceSource);
310static BOOL do_parameter(char *parmname, char *parmvalue);
311static BOOL do_section(char *sectionname);
312
313
314/***************************************************************************
315initialise a service to the defaults
316***************************************************************************/
317static void init_service(service *pservice)
318{
45ccc5c0
AT
319 bzero((char *)pservice,sizeof(service));
320 copy_service(pservice,&sDefault);
0b76cd63
AT
321}
322
323static void string_set(char **s, char *v)
324{
0b76cd63
AT
325 if (!v) {
326 *s = NULL;
327 return;
328 }
329 *s = strdup(v);
330 if (!*s) exit_cleanup(1);
331}
332
333
334/***************************************************************************
335add a new service to the services array initialising it with the given
336service
337***************************************************************************/
338static int add_a_service(service *pservice, char *name)
339{
340 int i;
341 service tservice;
342 int num_to_alloc = iNumServices+1;
343
344 tservice = *pservice;
345
346 /* it might already exist */
347 if (name)
348 {
349 i = getservicebyname(name,NULL);
350 if (i >= 0)
351 return(i);
352 }
353
354 i = iNumServices;
355
356 ServicePtrs = (service **)Realloc(ServicePtrs,sizeof(service *)*num_to_alloc);
357 if (ServicePtrs)
358 pSERVICE(iNumServices) = (service *)malloc(sizeof(service));
359
360 if (!ServicePtrs || !pSERVICE(iNumServices))
361 return(-1);
362
363 iNumServices++;
364
365 init_service(pSERVICE(i));
366 copy_service(pSERVICE(i),&tservice);
367 if (name)
368 string_set(&iSERVICE(i).name,name);
369
370 return(i);
371}
372
373/***************************************************************************
374Do a case-insensitive, whitespace-ignoring string compare.
375***************************************************************************/
376static int strwicmp(char *psz1, char *psz2)
377{
378 /* if BOTH strings are NULL, return TRUE, if ONE is NULL return */
379 /* appropriate value. */
380 if (psz1 == psz2)
381 return (0);
382 else
383 if (psz1 == NULL)
384 return (-1);
385 else
386 if (psz2 == NULL)
387 return (1);
388
389 /* sync the strings on first non-whitespace */
390 while (1)
391 {
392 while (isspace(*psz1))
393 psz1++;
394 while (isspace(*psz2))
395 psz2++;
396 if (toupper(*psz1) != toupper(*psz2) || *psz1 == '\0' || *psz2 == '\0')
397 break;
398 psz1++;
399 psz2++;
400 }
401 return (*psz1 - *psz2);
402}
403
404/***************************************************************************
405Map a parameter's string representation to something we can use.
406Returns False if the parameter string is not recognised, else TRUE.
407***************************************************************************/
408static int map_parameter(char *parmname)
409{
410 int iIndex;
411
412 if (*parmname == '-')
413 return(-1);
414
415 for (iIndex = 0; parm_table[iIndex].label; iIndex++)
416 if (strwicmp(parm_table[iIndex].label, parmname) == 0)
417 return(iIndex);
418
419 rprintf(FERROR, "Unknown parameter encountered: \"%s\"\n", parmname);
420 return(-1);
421}
422
423
424/***************************************************************************
425Set a boolean variable from the text value stored in the passed string.
426Returns True in success, False if the passed string does not correctly
427represent a boolean.
428***************************************************************************/
429static BOOL set_boolean(BOOL *pb, char *parmvalue)
430{
431 BOOL bRetval;
432
433 bRetval = True;
434 if (strwicmp(parmvalue, "yes") == 0 ||
435 strwicmp(parmvalue, "true") == 0 ||
436 strwicmp(parmvalue, "1") == 0)
437 *pb = True;
438 else
439 if (strwicmp(parmvalue, "no") == 0 ||
440 strwicmp(parmvalue, "False") == 0 ||
441 strwicmp(parmvalue, "0") == 0)
442 *pb = False;
443 else
444 {
445 rprintf(FERROR, "Badly formed boolean in configuration file: \"%s\".\n",
446 parmvalue);
447 bRetval = False;
448 }
449 return (bRetval);
450}
451
452/***************************************************************************
453Find a service by name. Otherwise works like get_service.
454***************************************************************************/
455static int getservicebyname(char *name, service *pserviceDest)
456{
457 int iService;
458
459 for (iService = iNumServices - 1; iService >= 0; iService--)
460 if (strwicmp(iSERVICE(iService).name, name) == 0)
461 {
462 if (pserviceDest != NULL)
463 copy_service(pserviceDest, pSERVICE(iService));
464 break;
465 }
466
467 return (iService);
468}
469
470
471
472/***************************************************************************
473Copy a service structure to another
474
475***************************************************************************/
476static void copy_service(service *pserviceDest,
477 service *pserviceSource)
478{
479 int i;
480
481 for (i=0;parm_table[i].label;i++)
482 if (parm_table[i].ptr && parm_table[i].class == P_LOCAL) {
483 void *def_ptr = parm_table[i].ptr;
484 void *src_ptr =
485 ((char *)pserviceSource) + PTR_DIFF(def_ptr,&sDefault);
486 void *dest_ptr =
487 ((char *)pserviceDest) + PTR_DIFF(def_ptr,&sDefault);
488
489 switch (parm_table[i].type)
490 {
491 case P_BOOL:
492 case P_BOOLREV:
493 *(BOOL *)dest_ptr = *(BOOL *)src_ptr;
494 break;
495
496 case P_INTEGER:
497 case P_ENUM:
498 case P_OCTAL:
499 *(int *)dest_ptr = *(int *)src_ptr;
500 break;
501
502 case P_CHAR:
503 *(char *)dest_ptr = *(char *)src_ptr;
504 break;
505
506 case P_STRING:
507 string_set(dest_ptr,*(char **)src_ptr);
508 break;
509
510 default:
511 break;
512 }
513 }
514}
515
516
517/***************************************************************************
518Process a parameter for a particular service number. If snum < 0
519then assume we are in the globals
520***************************************************************************/
521static BOOL lp_do_parameter(int snum, char *parmname, char *parmvalue)
522{
523 int parmnum, i;
524 void *parm_ptr=NULL; /* where we are going to store the result */
525 void *def_ptr=NULL;
526
527 parmnum = map_parameter(parmname);
528
529 if (parmnum < 0)
530 {
531 rprintf(FERROR, "Ignoring unknown parameter \"%s\"\n", parmname);
532 return(True);
533 }
534
535 def_ptr = parm_table[parmnum].ptr;
536
537 /* we might point at a service, the default service or a global */
538 if (snum < 0) {
539 parm_ptr = def_ptr;
540 } else {
541 if (parm_table[parmnum].class == P_GLOBAL) {
542 rprintf(FERROR, "Global parameter %s found in service section!\n",parmname);
543 return(True);
544 }
545 parm_ptr = ((char *)pSERVICE(snum)) + PTR_DIFF(def_ptr,&sDefault);
546 }
547
548 /* now switch on the type of variable it is */
549 switch (parm_table[parmnum].type)
550 {
551 case P_BOOL:
552 set_boolean(parm_ptr,parmvalue);
553 break;
554
555 case P_BOOLREV:
556 set_boolean(parm_ptr,parmvalue);
557 *(BOOL *)parm_ptr = ! *(BOOL *)parm_ptr;
558 break;
559
560 case P_INTEGER:
561 *(int *)parm_ptr = atoi(parmvalue);
562 break;
563
564 case P_CHAR:
565 *(char *)parm_ptr = *parmvalue;
566 break;
567
568 case P_OCTAL:
569 sscanf(parmvalue,"%o",(int *)parm_ptr);
570 break;
571
572 case P_STRING:
573 string_set(parm_ptr,parmvalue);
574 break;
575
576 case P_GSTRING:
577 strcpy((char *)parm_ptr,parmvalue);
578 break;
579
580 case P_ENUM:
581 for (i=0;parm_table[parmnum].enum_list[i].name;i++) {
582 if (strequal(parmvalue, parm_table[parmnum].enum_list[i].name)) {
583 *(int *)parm_ptr = parm_table[parmnum].enum_list[i].value;
584 break;
585 }
586 }
587 break;
588 case P_SEP:
589 break;
590 }
591
592 return(True);
593}
594
595/***************************************************************************
596Process a parameter.
597***************************************************************************/
598static BOOL do_parameter(char *parmname, char *parmvalue)
599{
600 return lp_do_parameter(bInGlobalSection?-2:iServiceIndex, parmname, parmvalue);
601}
602
603/***************************************************************************
604Process a new section (service). At this stage all sections are services.
605Later we'll have special sections that permit server parameters to be set.
606Returns True on success, False on failure.
607***************************************************************************/
608static BOOL do_section(char *sectionname)
609{
610 BOOL bRetval;
611 BOOL isglobal = (strwicmp(sectionname, GLOBAL_NAME) == 0);
612 bRetval = False;
613
614 /* if we were in a global section then do the local inits */
615 if (bInGlobalSection && !isglobal)
616 init_locals();
617
618 /* if we've just struck a global section, note the fact. */
619 bInGlobalSection = isglobal;
620
621 /* check for multiple global sections */
622 if (bInGlobalSection)
623 {
624 return(True);
625 }
626
627 /* if we have a current service, tidy it up before moving on */
628 bRetval = True;
629
630 if (iServiceIndex >= 0)
631 bRetval = True;
632
633 /* if all is still well, move to the next record in the services array */
634 if (bRetval)
635 {
636 /* We put this here to avoid an odd message order if messages are */
637 /* issued by the post-processing of a previous section. */
638
639 if ((iServiceIndex=add_a_service(&sDefault,sectionname)) < 0)
640 {
641 rprintf(FERROR,"Failed to add a new service\n");
642 return(False);
643 }
644 }
645
646 return (bRetval);
647}
648
649
650/***************************************************************************
651Load the services array from the services file. Return True on success,
652False on failure.
653***************************************************************************/
654BOOL lp_load(char *pszFname)
655{
656 pstring n2;
657 BOOL bRetval;
658
659 bRetval = False;
660
661 bInGlobalSection = True;
662
663 init_globals();
664
665 pstrcpy(n2,pszFname);
666
667 /* We get sections first, so have to start 'behind' to make up */
668 iServiceIndex = -1;
669 bRetval = pm_process(n2, do_section, do_parameter);
670
671 bLoaded = True;
672
673 return (bRetval);
674}
675
676
677/***************************************************************************
678return the max number of services
679***************************************************************************/
680int lp_numservices(void)
681{
682 return(iNumServices);
683}
684
685/***************************************************************************
686Return the number of the service with the given name, or -1 if it doesn't
687exist. Note that this is a DIFFERENT ANIMAL from the internal function
688getservicebyname()! This works ONLY if all services have been loaded, and
689does not copy the found service.
690***************************************************************************/
691int lp_number(char *name)
692{
693 int iService;
694
695 for (iService = iNumServices - 1; iService >= 0; iService--)
696 if (strequal(lp_name(iService), name))
697 break;
698
699 return (iService);
700}
701