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