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