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