Note about mkdir bug.
[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
3d2e458a
MP
4/* some fixes
5 *
4366275b 6 * Copyright (C) 2001, 2002 by Martin Pool <mbp@samba.org>
3d2e458a
MP
7 */
8
0b76cd63
AT
9/*
10 This program is free software; you can redistribute it and/or modify
11 it under the terms of the GNU General Public License as published by
12 the Free Software Foundation; either version 2 of the License, or
13 (at your option) any later version.
14
15 This program is distributed in the hope that it will be useful,
16 but WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 GNU General Public License for more details.
19
20 You should have received a copy of the GNU General Public License
21 along with this program; if not, write to the Free Software
22 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
23*/
24
25/*
26 * Load parameters.
27 *
28 * This module provides suitable callback functions for the params
29 * module. It builds the internal table of service details which is
30 * then used by the rest of the server.
31 *
32 * To add a parameter:
33 *
34 * 1) add it to the global or service structure definition
35 * 2) add it to the parm_table
36 * 3) add it to the list of available functions (eg: using FN_GLOBAL_STRING())
37 * 4) If it's a global then initialise it in init_globals. If a local
38 * (ie. service) parameter then initialise it in the sDefault structure
39 *
40 *
41 * Notes:
42 * The configuration file is processed sequentially for speed. It is NOT
43 * accessed randomly as happens in 'real' Windows. For this reason, there
44 * is a fair bit of sequence-dependent code here - ie., code which assumes
45 * that certain things happen before others. In particular, the code which
46 * happens at the boundary between sections is delicately poised, so be
47 * careful!
48 *
49 */
50
51#include "rsync.h"
0b76cd63
AT
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")
55typedef char pstring[1024];
37f9805d 56#define pstrcpy(a,b) strlcpy(a,b,sizeof(pstring))
0b76cd63
AT
57
58/* the following are used by loadparm for option lists */
59typedef enum
60{
31593dd6
AT
61 P_BOOL,P_BOOLREV,P_CHAR,P_INTEGER,P_OCTAL,
62 P_STRING,P_GSTRING,P_ENUM,P_SEP
0b76cd63
AT
63} parm_type;
64
65typedef enum
66{
31593dd6 67 P_LOCAL,P_GLOBAL,P_SEPARATOR,P_NONE
0b76cd63
AT
68} parm_class;
69
70struct enum_list {
71 int value;
72 char *name;
73};
74
75struct parm_struct
76{
77 char *label;
78 parm_type type;
79 parm_class class;
80 void *ptr;
81 struct enum_list *enum_list;
82 unsigned flags;
83};
84
0b76cd63
AT
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;
4f6325c3 100 char *log_file;
8638dd48 101 char *pid_file;
851dbdb7 102 int syslog_facility;
a6801c39 103 char *socket_options;
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;
5e71c444 118 char *lock_file;
0b76cd63
AT
119 BOOL read_only;
120 BOOL list;
8638dd48 121 BOOL use_chroot;
11a5a3c7 122 BOOL transfer_logging;
cda2ae84 123 BOOL ignore_errors;
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;
3ca8e68f 130 BOOL strict_modes;
8f3a2d54
AT
131 char *exclude;
132 char *exclude_from;
cd64343a
DD
133 char *include;
134 char *include_from;
e08bfe12 135 char *log_format;
cd8185f2 136 char *refuse_options;
83fff1aa 137 char *dont_compress;
81791cfc 138 int timeout;
5e71c444 139 int max_connections;
60cb2f90 140 BOOL ignore_nonreadable;
0b76cd63
AT
141} service;
142
143
144/* This is a default service used to prime a services structure */
145static service sDefault =
146{
147 NULL, /* name */
148 NULL, /* path */
149 NULL, /* comment */
5e71c444 150 DEFAULT_LOCK_FILE, /* lock file */
0b76cd63
AT
151 True, /* read only */
152 True, /* list */
8638dd48 153 True, /* use chroot */
11a5a3c7 154 False, /* transfer logging */
cda2ae84 155 False, /* ignore errors */
8ef4ffd6 156 "nobody",/* uid */
4366275b
MP
157
158 /* TODO: This causes problems on Debian, where it is called
159 * "nogroup". Debian patch this in their version of the
160 * package, but it would be nice to be consistent. Possibly
161 * other systems are different again.
162 *
163 * What is the best behaviour? Perhaps always using (gid_t)
164 * -2? */
8ef4ffd6 165 "nobody",/* gid */
4366275b 166
56c473b7
AT
167 NULL, /* hosts allow */
168 NULL, /* hosts deny */
31593dd6
AT
169 NULL, /* auth users */
170 NULL, /* secrets file */
3ca8e68f 171 True, /* strict modes */
8f3a2d54
AT
172 NULL, /* exclude */
173 NULL, /* exclude from */
cd64343a
DD
174 NULL, /* include */
175 NULL, /* include from */
2c51d5de 176 "%o %h [%a] %m (%u) %f %l", /* log format */
cd8185f2 177 NULL, /* refuse options */
69c65227 178 "*.gz *.tgz *.zip *.z *.rpm *.deb *.iso *.bz2 *.tbz", /* dont compress */
5e71c444 179 0, /* timeout */
60cb2f90
AT
180 0, /* max connections */
181 False /* ignore nonreadable */
0b76cd63
AT
182};
183
184
185
186/* local variables */
187static service **ServicePtrs = NULL;
188static int iNumServices = 0;
189static int iServiceIndex = 0;
190static BOOL bInGlobalSection = True;
191
192#define NUMPARAMETERS (sizeof(parm_table) / sizeof(struct parm_struct))
193
09e13ae2
AT
194static struct enum_list enum_facilities[] = {
195#ifdef LOG_AUTH
196 { LOG_AUTH, "auth" },
197#endif
198#ifdef LOG_AUTHPRIV
199 { LOG_AUTHPRIV, "authpriv" },
200#endif
201#ifdef LOG_CRON
202 { LOG_CRON, "cron" },
203#endif
204#ifdef LOG_DAEMON
205 { LOG_DAEMON, "daemon" },
206#endif
207#ifdef LOG_FTP
208 { LOG_FTP, "ftp" },
209#endif
210#ifdef LOG_KERN
211 { LOG_KERN, "kern" },
212#endif
213#ifdef LOG_LPR
214 { LOG_LPR, "lpr" },
215#endif
216#ifdef LOG_MAIL
217 { LOG_MAIL, "mail" },
218#endif
219#ifdef LOG_NEWS
220 { LOG_NEWS, "news" },
221#endif
222#ifdef LOG_AUTH
223 { LOG_AUTH, "security" },
224#endif
225#ifdef LOG_SYSLOG
226 { LOG_SYSLOG, "syslog" },
227#endif
228#ifdef LOG_USER
229 { LOG_USER, "user" },
230#endif
231#ifdef LOG_UUCP
232 { LOG_UUCP, "uucp" },
233#endif
234#ifdef LOG_LOCAL0
235 { LOG_LOCAL0, "local0" },
236#endif
237#ifdef LOG_LOCAL1
238 { LOG_LOCAL1, "local1" },
239#endif
240#ifdef LOG_LOCAL2
241 { LOG_LOCAL2, "local2" },
242#endif
243#ifdef LOG_LOCAL3
244 { LOG_LOCAL3, "local3" },
245#endif
246#ifdef LOG_LOCAL4
247 { LOG_LOCAL4, "local4" },
248#endif
249#ifdef LOG_LOCAL5
250 { LOG_LOCAL5, "local5" },
251#endif
252#ifdef LOG_LOCAL6
253 { LOG_LOCAL6, "local6" },
254#endif
255#ifdef LOG_LOCAL7
256 { LOG_LOCAL7, "local7" },
257#endif
258 { -1, NULL }};
259
0b76cd63
AT
260
261/* note that we do not initialise the defaults union - it is not allowed in ANSI C */
262static struct parm_struct parm_table[] =
263{
264 {"motd file", P_STRING, P_GLOBAL, &Globals.motd_file, NULL, 0},
09e13ae2 265 {"syslog facility", P_ENUM, P_GLOBAL, &Globals.syslog_facility, enum_facilities,0},
a6801c39 266 {"socket options", P_STRING, P_GLOBAL, &Globals.socket_options,NULL, 0},
4f6325c3 267 {"log file", P_STRING, P_GLOBAL, &Globals.log_file, NULL, 0},
8638dd48 268 {"pid file", P_STRING, P_GLOBAL, &Globals.pid_file, NULL, 0},
41059f75 269
81791cfc 270 {"timeout", P_INTEGER, P_LOCAL, &sDefault.timeout, NULL, 0},
5e71c444 271 {"max connections", P_INTEGER, P_LOCAL, &sDefault.max_connections,NULL, 0},
0b76cd63
AT
272 {"name", P_STRING, P_LOCAL, &sDefault.name, NULL, 0},
273 {"comment", P_STRING, P_LOCAL, &sDefault.comment, NULL, 0},
5e71c444 274 {"lock file", P_STRING, P_LOCAL, &sDefault.lock_file, NULL, 0},
0b76cd63
AT
275 {"path", P_STRING, P_LOCAL, &sDefault.path, NULL, 0},
276 {"read only", P_BOOL, P_LOCAL, &sDefault.read_only, NULL, 0},
277 {"list", P_BOOL, P_LOCAL, &sDefault.list, NULL, 0},
8638dd48 278 {"use chroot", P_BOOL, P_LOCAL, &sDefault.use_chroot, NULL, 0},
60cb2f90 279 {"ignore nonreadable",P_BOOL, P_LOCAL, &sDefault.ignore_nonreadable, NULL, 0},
8ef4ffd6
AT
280 {"uid", P_STRING, P_LOCAL, &sDefault.uid, NULL, 0},
281 {"gid", P_STRING, P_LOCAL, &sDefault.gid, NULL, 0},
56c473b7
AT
282 {"hosts allow", P_STRING, P_LOCAL, &sDefault.hosts_allow, NULL, 0},
283 {"hosts deny", P_STRING, P_LOCAL, &sDefault.hosts_deny, NULL, 0},
31593dd6
AT
284 {"auth users", P_STRING, P_LOCAL, &sDefault.auth_users, NULL, 0},
285 {"secrets file", P_STRING, P_LOCAL, &sDefault.secrets_file,NULL, 0},
3ca8e68f 286 {"strict modes", P_BOOL, P_LOCAL, &sDefault.strict_modes,NULL, 0},
8f3a2d54
AT
287 {"exclude", P_STRING, P_LOCAL, &sDefault.exclude, NULL, 0},
288 {"exclude from", P_STRING, P_LOCAL, &sDefault.exclude_from,NULL, 0},
cd64343a
DD
289 {"include", P_STRING, P_LOCAL, &sDefault.include, NULL, 0},
290 {"include from", P_STRING, P_LOCAL, &sDefault.include_from,NULL, 0},
11a5a3c7 291 {"transfer logging", P_BOOL, P_LOCAL, &sDefault.transfer_logging,NULL,0},
cda2ae84 292 {"ignore errors", P_BOOL, P_LOCAL, &sDefault.ignore_errors,NULL,0},
e08bfe12 293 {"log format", P_STRING, P_LOCAL, &sDefault.log_format, NULL, 0},
cd8185f2 294 {"refuse options", P_STRING, P_LOCAL, &sDefault.refuse_options,NULL, 0},
83fff1aa 295 {"dont compress", P_STRING, P_LOCAL, &sDefault.dont_compress,NULL, 0},
0b76cd63
AT
296 {NULL, P_BOOL, P_NONE, NULL, NULL, 0}
297};
298
299
300/***************************************************************************
301Initialise the global parameter structure.
302***************************************************************************/
303static void init_globals(void)
304{
f9e940ef 305 memset(&Globals, 0, sizeof(Globals));
851dbdb7
AT
306#ifdef LOG_DAEMON
307 Globals.syslog_facility = LOG_DAEMON;
308#endif
0b76cd63
AT
309}
310
311/***************************************************************************
312Initialise the sDefault parameter structure.
313***************************************************************************/
314static void init_locals(void)
315{
316}
317
318
319/*
320 In this section all the functions that are used to access the
321 parameters from the rest of the program are defined
322*/
323
324#define FN_GLOBAL_STRING(fn_name,ptr) \
325 char *fn_name(void) {return(*(char **)(ptr) ? *(char **)(ptr) : "");}
326#define FN_GLOBAL_BOOL(fn_name,ptr) \
327 BOOL fn_name(void) {return(*(BOOL *)(ptr));}
328#define FN_GLOBAL_CHAR(fn_name,ptr) \
329 char fn_name(void) {return(*(char *)(ptr));}
330#define FN_GLOBAL_INTEGER(fn_name,ptr) \
331 int fn_name(void) {return(*(int *)(ptr));}
332
333#define FN_LOCAL_STRING(fn_name,val) \
334 char *fn_name(int i) {return((LP_SNUM_OK(i)&&pSERVICE(i)->val)?pSERVICE(i)->val : (sDefault.val?sDefault.val:""));}
335#define FN_LOCAL_BOOL(fn_name,val) \
336 BOOL fn_name(int i) {return(LP_SNUM_OK(i)? pSERVICE(i)->val : sDefault.val);}
337#define FN_LOCAL_CHAR(fn_name,val) \
338 char fn_name(int i) {return(LP_SNUM_OK(i)? pSERVICE(i)->val : sDefault.val);}
339#define FN_LOCAL_INTEGER(fn_name,val) \
340 int fn_name(int i) {return(LP_SNUM_OK(i)? pSERVICE(i)->val : sDefault.val);}
341
342
343FN_GLOBAL_STRING(lp_motd_file, &Globals.motd_file)
4f6325c3 344FN_GLOBAL_STRING(lp_log_file, &Globals.log_file)
8638dd48 345FN_GLOBAL_STRING(lp_pid_file, &Globals.pid_file)
a6801c39 346FN_GLOBAL_STRING(lp_socket_options, &Globals.socket_options)
851dbdb7 347FN_GLOBAL_INTEGER(lp_syslog_facility, &Globals.syslog_facility)
a6801c39 348
0b76cd63
AT
349FN_LOCAL_STRING(lp_name, name)
350FN_LOCAL_STRING(lp_comment, comment)
351FN_LOCAL_STRING(lp_path, path)
5e71c444 352FN_LOCAL_STRING(lp_lock_file, lock_file)
0b76cd63
AT
353FN_LOCAL_BOOL(lp_read_only, read_only)
354FN_LOCAL_BOOL(lp_list, list)
8638dd48 355FN_LOCAL_BOOL(lp_use_chroot, use_chroot)
11a5a3c7 356FN_LOCAL_BOOL(lp_transfer_logging, transfer_logging)
cda2ae84 357FN_LOCAL_BOOL(lp_ignore_errors, ignore_errors)
60cb2f90 358FN_LOCAL_BOOL(lp_ignore_nonreadable, ignore_nonreadable)
8ef4ffd6
AT
359FN_LOCAL_STRING(lp_uid, uid)
360FN_LOCAL_STRING(lp_gid, gid)
56c473b7
AT
361FN_LOCAL_STRING(lp_hosts_allow, hosts_allow)
362FN_LOCAL_STRING(lp_hosts_deny, hosts_deny)
31593dd6
AT
363FN_LOCAL_STRING(lp_auth_users, auth_users)
364FN_LOCAL_STRING(lp_secrets_file, secrets_file)
3ca8e68f 365FN_LOCAL_BOOL(lp_strict_modes, strict_modes)
8f3a2d54
AT
366FN_LOCAL_STRING(lp_exclude, exclude)
367FN_LOCAL_STRING(lp_exclude_from, exclude_from)
cd64343a
DD
368FN_LOCAL_STRING(lp_include, include)
369FN_LOCAL_STRING(lp_include_from, include_from)
e08bfe12 370FN_LOCAL_STRING(lp_log_format, log_format)
cd8185f2 371FN_LOCAL_STRING(lp_refuse_options, refuse_options)
83fff1aa 372FN_LOCAL_STRING(lp_dont_compress, dont_compress)
81791cfc 373FN_LOCAL_INTEGER(lp_timeout, timeout)
5e71c444 374FN_LOCAL_INTEGER(lp_max_connections, max_connections)
0b76cd63
AT
375
376/* local prototypes */
377static int strwicmp( char *psz1, char *psz2 );
378static int map_parameter( char *parmname);
379static BOOL set_boolean( BOOL *pb, char *parmvalue );
380static int getservicebyname(char *name, service *pserviceDest);
381static void copy_service( service *pserviceDest,
382 service *pserviceSource);
383static BOOL do_parameter(char *parmname, char *parmvalue);
384static BOOL do_section(char *sectionname);
385
386
387/***************************************************************************
388initialise a service to the defaults
389***************************************************************************/
390static void init_service(service *pservice)
391{
f5780433 392 memset((char *)pservice,0,sizeof(service));
45ccc5c0 393 copy_service(pservice,&sDefault);
0b76cd63
AT
394}
395
3d2e458a
MP
396
397/**
1179355d
MP
398 * Assign a copy of @p v to @p *s. Handles NULL strings. @p *v must
399 * be initialized when this is called, either to NULL or a malloc'd
400 * string.
401 *
402 * @fixme There is a small leak here in that sometimes the existing
403 * value will be dynamically allocated, and the old copy is lost.
404 * However, we can't always deallocate the old value, because in the
405 * case of sDefault, it points to a static string. It would be nice
406 * to have either all-strdup'd values, or to never need to free
407 * memory.
3d2e458a
MP
408 **/
409static void string_set(char **s, const char *v)
0b76cd63 410{
0b76cd63
AT
411 if (!v) {
412 *s = NULL;
413 return;
414 }
415 *s = strdup(v);
3d2e458a
MP
416 if (!*s)
417 exit_cleanup(RERR_MALLOC);
0b76cd63
AT
418}
419
420
421/***************************************************************************
422add a new service to the services array initialising it with the given
423service
424***************************************************************************/
425static int add_a_service(service *pservice, char *name)
426{
427 int i;
428 service tservice;
429 int num_to_alloc = iNumServices+1;
430
431 tservice = *pservice;
432
433 /* it might already exist */
434 if (name)
435 {
436 i = getservicebyname(name,NULL);
437 if (i >= 0)
438 return(i);
439 }
440
441 i = iNumServices;
442
fe8c0a98 443 ServicePtrs = (service **)Realloc(ServicePtrs,sizeof(service *)*num_to_alloc);
6cdc6b13 444
0b76cd63
AT
445 if (ServicePtrs)
446 pSERVICE(iNumServices) = (service *)malloc(sizeof(service));
447
448 if (!ServicePtrs || !pSERVICE(iNumServices))
449 return(-1);
450
451 iNumServices++;
452
453 init_service(pSERVICE(i));
454 copy_service(pSERVICE(i),&tservice);
455 if (name)
456 string_set(&iSERVICE(i).name,name);
457
458 return(i);
459}
460
461/***************************************************************************
462Do a case-insensitive, whitespace-ignoring string compare.
463***************************************************************************/
464static int strwicmp(char *psz1, char *psz2)
465{
466 /* if BOTH strings are NULL, return TRUE, if ONE is NULL return */
467 /* appropriate value. */
468 if (psz1 == psz2)
469 return (0);
470 else
471 if (psz1 == NULL)
472 return (-1);
473 else
474 if (psz2 == NULL)
475 return (1);
476
477 /* sync the strings on first non-whitespace */
478 while (1)
479 {
480 while (isspace(*psz1))
481 psz1++;
482 while (isspace(*psz2))
483 psz2++;
484 if (toupper(*psz1) != toupper(*psz2) || *psz1 == '\0' || *psz2 == '\0')
485 break;
486 psz1++;
487 psz2++;
488 }
489 return (*psz1 - *psz2);
490}
491
492/***************************************************************************
493Map a parameter's string representation to something we can use.
494Returns False if the parameter string is not recognised, else TRUE.
495***************************************************************************/
496static int map_parameter(char *parmname)
497{
498 int iIndex;
499
500 if (*parmname == '-')
501 return(-1);
502
503 for (iIndex = 0; parm_table[iIndex].label; iIndex++)
504 if (strwicmp(parm_table[iIndex].label, parmname) == 0)
505 return(iIndex);
506
cd64343a 507 rprintf(FERROR, "Unknown Parameter encountered: \"%s\"\n", parmname);
0b76cd63
AT
508 return(-1);
509}
510
511
512/***************************************************************************
513Set a boolean variable from the text value stored in the passed string.
514Returns True in success, False if the passed string does not correctly
515represent a boolean.
516***************************************************************************/
517static BOOL set_boolean(BOOL *pb, char *parmvalue)
518{
519 BOOL bRetval;
520
521 bRetval = True;
522 if (strwicmp(parmvalue, "yes") == 0 ||
523 strwicmp(parmvalue, "true") == 0 ||
524 strwicmp(parmvalue, "1") == 0)
525 *pb = True;
526 else
527 if (strwicmp(parmvalue, "no") == 0 ||
528 strwicmp(parmvalue, "False") == 0 ||
529 strwicmp(parmvalue, "0") == 0)
530 *pb = False;
531 else
532 {
533 rprintf(FERROR, "Badly formed boolean in configuration file: \"%s\".\n",
534 parmvalue);
535 bRetval = False;
536 }
537 return (bRetval);
538}
539
540/***************************************************************************
541Find a service by name. Otherwise works like get_service.
542***************************************************************************/
543static int getservicebyname(char *name, service *pserviceDest)
544{
545 int iService;
546
547 for (iService = iNumServices - 1; iService >= 0; iService--)
548 if (strwicmp(iSERVICE(iService).name, name) == 0)
549 {
550 if (pserviceDest != NULL)
551 copy_service(pserviceDest, pSERVICE(iService));
552 break;
553 }
554
555 return (iService);
556}
557
558
559
560/***************************************************************************
561Copy a service structure to another
562
563***************************************************************************/
564static void copy_service(service *pserviceDest,
565 service *pserviceSource)
566{
567 int i;
568
569 for (i=0;parm_table[i].label;i++)
570 if (parm_table[i].ptr && parm_table[i].class == P_LOCAL) {
571 void *def_ptr = parm_table[i].ptr;
572 void *src_ptr =
573 ((char *)pserviceSource) + PTR_DIFF(def_ptr,&sDefault);
574 void *dest_ptr =
575 ((char *)pserviceDest) + PTR_DIFF(def_ptr,&sDefault);
576
577 switch (parm_table[i].type)
578 {
579 case P_BOOL:
580 case P_BOOLREV:
581 *(BOOL *)dest_ptr = *(BOOL *)src_ptr;
582 break;
583
584 case P_INTEGER:
585 case P_ENUM:
586 case P_OCTAL:
587 *(int *)dest_ptr = *(int *)src_ptr;
588 break;
589
590 case P_CHAR:
591 *(char *)dest_ptr = *(char *)src_ptr;
592 break;
593
594 case P_STRING:
595 string_set(dest_ptr,*(char **)src_ptr);
596 break;
597
598 default:
599 break;
600 }
601 }
602}
603
604
605/***************************************************************************
606Process a parameter for a particular service number. If snum < 0
607then assume we are in the globals
608***************************************************************************/
609static BOOL lp_do_parameter(int snum, char *parmname, char *parmvalue)
610{
611 int parmnum, i;
612 void *parm_ptr=NULL; /* where we are going to store the result */
613 void *def_ptr=NULL;
614
615 parmnum = map_parameter(parmname);
616
617 if (parmnum < 0)
618 {
cd64343a 619 rprintf(FERROR, "IGNORING unknown parameter \"%s\"\n", parmname);
0b76cd63
AT
620 return(True);
621 }
622
623 def_ptr = parm_table[parmnum].ptr;
624
625 /* we might point at a service, the default service or a global */
626 if (snum < 0) {
627 parm_ptr = def_ptr;
628 } else {
629 if (parm_table[parmnum].class == P_GLOBAL) {
630 rprintf(FERROR, "Global parameter %s found in service section!\n",parmname);
631 return(True);
632 }
633 parm_ptr = ((char *)pSERVICE(snum)) + PTR_DIFF(def_ptr,&sDefault);
634 }
635
636 /* now switch on the type of variable it is */
637 switch (parm_table[parmnum].type)
638 {
639 case P_BOOL:
640 set_boolean(parm_ptr,parmvalue);
641 break;
642
643 case P_BOOLREV:
644 set_boolean(parm_ptr,parmvalue);
645 *(BOOL *)parm_ptr = ! *(BOOL *)parm_ptr;
646 break;
647
648 case P_INTEGER:
649 *(int *)parm_ptr = atoi(parmvalue);
650 break;
651
652 case P_CHAR:
653 *(char *)parm_ptr = *parmvalue;
654 break;
655
656 case P_OCTAL:
657 sscanf(parmvalue,"%o",(int *)parm_ptr);
658 break;
659
660 case P_STRING:
661 string_set(parm_ptr,parmvalue);
662 break;
663
664 case P_GSTRING:
37f9805d 665 strlcpy((char *)parm_ptr,parmvalue,sizeof(pstring));
0b76cd63
AT
666 break;
667
668 case P_ENUM:
669 for (i=0;parm_table[parmnum].enum_list[i].name;i++) {
670 if (strequal(parmvalue, parm_table[parmnum].enum_list[i].name)) {
671 *(int *)parm_ptr = parm_table[parmnum].enum_list[i].value;
672 break;
673 }
674 }
fabf5ea7 675 if (!parm_table[parmnum].enum_list[i].name) {
41059f75
AT
676 if (atoi(parmvalue) > 0)
677 *(int *)parm_ptr = atoi(parmvalue);
fabf5ea7 678 }
0b76cd63
AT
679 break;
680 case P_SEP:
681 break;
682 }
683
684 return(True);
685}
686
687/***************************************************************************
688Process a parameter.
689***************************************************************************/
690static BOOL do_parameter(char *parmname, char *parmvalue)
691{
692 return lp_do_parameter(bInGlobalSection?-2:iServiceIndex, parmname, parmvalue);
693}
694
695/***************************************************************************
696Process a new section (service). At this stage all sections are services.
697Later we'll have special sections that permit server parameters to be set.
698Returns True on success, False on failure.
699***************************************************************************/
700static BOOL do_section(char *sectionname)
701{
702 BOOL bRetval;
703 BOOL isglobal = (strwicmp(sectionname, GLOBAL_NAME) == 0);
704 bRetval = False;
705
706 /* if we were in a global section then do the local inits */
707 if (bInGlobalSection && !isglobal)
708 init_locals();
709
710 /* if we've just struck a global section, note the fact. */
711 bInGlobalSection = isglobal;
712
713 /* check for multiple global sections */
714 if (bInGlobalSection)
715 {
716 return(True);
717 }
718
719 /* if we have a current service, tidy it up before moving on */
720 bRetval = True;
721
722 if (iServiceIndex >= 0)
723 bRetval = True;
724
725 /* if all is still well, move to the next record in the services array */
726 if (bRetval)
727 {
728 /* We put this here to avoid an odd message order if messages are */
729 /* issued by the post-processing of a previous section. */
730
731 if ((iServiceIndex=add_a_service(&sDefault,sectionname)) < 0)
732 {
733 rprintf(FERROR,"Failed to add a new service\n");
734 return(False);
735 }
736 }
737
738 return (bRetval);
739}
740
741
742/***************************************************************************
743Load the services array from the services file. Return True on success,
744False on failure.
745***************************************************************************/
f9e940ef 746BOOL lp_load(char *pszFname, int globals_only)
0b76cd63 747{
f9e940ef
AT
748 pstring n2;
749 BOOL bRetval;
0b76cd63 750
f9e940ef 751 bRetval = False;
0b76cd63 752
f9e940ef 753 bInGlobalSection = True;
0b76cd63 754
f9e940ef 755 init_globals();
0b76cd63 756
f9e940ef 757 pstrcpy(n2,pszFname);
0b76cd63 758
f9e940ef
AT
759 /* We get sections first, so have to start 'behind' to make up */
760 iServiceIndex = -1;
761 bRetval = pm_process(n2, globals_only?NULL:do_section, do_parameter);
0b76cd63 762
f9e940ef 763 return (bRetval);
0b76cd63
AT
764}
765
766
767/***************************************************************************
768return the max number of services
769***************************************************************************/
770int lp_numservices(void)
771{
772 return(iNumServices);
773}
774
775/***************************************************************************
776Return the number of the service with the given name, or -1 if it doesn't
777exist. Note that this is a DIFFERENT ANIMAL from the internal function
778getservicebyname()! This works ONLY if all services have been loaded, and
779does not copy the found service.
780***************************************************************************/
781int lp_number(char *name)
782{
783 int iService;
784
785 for (iService = iNumServices - 1; iService >= 0; iService--)
786 if (strequal(lp_name(iService), name))
787 break;
788
789 return (iService);
790}
791