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