2 * This program is free software; you can redistribute it and/or modify
3 * it under the terms of the GNU General Public License as published by
4 * the Free Software Foundation; either version 3 of the License, or
5 * (at your option) any later version.
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
12 * You should have received a copy of the GNU General Public License along
13 * with this program; if not, visit the http://fsf.org website.
16 /* This is based on loadparm.c from Samba, written by Andrew Tridgell
17 * and Karl Auer. Some of the changes are:
19 * Copyright (C) 2001, 2002 Martin Pool <mbp@samba.org>
20 * Copyright (C) 2003-2009 Wayne Davison <wayned@samba.org>
25 * This module provides suitable callback functions for the params
26 * module. It builds the internal table of section details which is
27 * then used by the rest of the server.
31 * 1) add it to the global_vars or local_vars structure definition
32 * 2) add it to the parm_table
33 * 3) add it to the list of available functions (eg: using FN_GLOBAL_STRING())
34 * 4) initialise it in the Defaults static stucture
37 * The configuration file is processed sequentially for speed. For this
38 * reason, there is a fair bit of sequence-dependent code here - ie., code
39 * which assumes that certain things happen before others. In particular, the
40 * code which happens at the boundary between sections is delicately poised,
47 extern item_list dparam_list
;
49 #define strequal(a, b) (strcasecmp(a, b)==0)
50 #define BOOLSTR(b) ((b) ? "Yes" : "No")
56 #define DEFAULT_DONT_COMPRESS "*.gz *.zip *.z *.rpm *.deb *.iso *.bz2" \
57 " *.t[gb]z *.7z *.mp[34] *.mov *.avi *.ogg *.jpg *.jpeg *.png" \
58 " *.lzo *.rzip *.lzma *.rar *.ace *.gpg *.xz *.txz *.lz *.tlz"
60 /* the following are used by loadparm for option lists */
62 P_BOOL
, P_BOOLREV
, P_CHAR
, P_INTEGER
,
63 P_OCTAL
, P_PATH
, P_STRING
, P_ENUM
67 P_LOCAL
, P_GLOBAL
, P_NONE
80 struct enum_list
*enum_list
;
85 #define GLOBAL_NAME "global"
88 /* some helpful bits */
89 #define iSECTION(i) ((local_vars*)section_list.items)[i]
90 #define LP_SNUM_OK(i) ((i) >= 0 && (i) < (int)section_list.count)
91 #define SECTION_PTR(s, p) (((char*)(s)) + (ptrdiff_t)(((char*)(p))-(char*)&Vars.l))
93 /* This structure describes global (ie., server-wide) parameters. */
103 /* This structure describes a single section. Their order must match the
104 * initializers below, which you can accomplish by keeping each sub-section
105 * sorted. (e.g. in vim, just visually select each subsection and use !sort.)
106 * NOTE: the char* variables MUST all remain at the start of the stuct! */
120 char *incoming_chmod
;
125 char *outgoing_chmod
;
129 char *refuse_options
;
133 /* NOTE: update this macro if the last char* variable changes! */
134 #define LOCAL_STRING_COUNT() (offsetof(local_vars, uid) / sizeof (char*) + 1)
143 BOOL ignore_nonreadable
;
150 BOOL transfer_logging
;
155 /* This structure describes the global variables (g) as well as the globally
156 * specified values of the local variables (l), which are used when modules
157 * don't specify their own values. */
163 /* The application defaults for all the variables. "Defaults" is
164 * used to re-initialize "Vars" before each config-file read.
166 * In order to keep these sorted in the same way as the structure
167 * above, use the variable name in the leading comment, including a
168 * trailing ';' (to avoid a sorting problem with trailing digits). */
169 static const all_vars Defaults
= {
170 /* ==== global_vars ==== */
172 /* bind_address; */ NULL
,
173 /* motd_file; */ NULL
,
174 /* pid_file; */ NULL
,
175 /* socket_options; */ NULL
,
180 /* ==== local_vars ==== */
182 /* auth_users; */ NULL
,
185 /* dont_compress; */ DEFAULT_DONT_COMPRESS
,
187 /* exclude_from; */ NULL
,
190 /* hosts_allow; */ NULL
,
191 /* hosts_deny; */ NULL
,
193 /* include_from; */ NULL
,
194 /* incoming_chmod; */ NULL
,
195 /* lock_file; */ DEFAULT_LOCK_FILE
,
196 /* log_file; */ NULL
,
197 /* log_format; */ "%o %h [%a] %m (%u) %f %l",
199 /* outgoing_chmod; */ NULL
,
201 /* postxfer_exec; */ NULL
,
202 /* prexfer_exec; */ NULL
,
203 /* refuse_options; */ NULL
,
204 /* secrets_file; */ NULL
,
205 /* temp_dir; */ NULL
,
208 /* max_connections; */ 0,
209 /* max_verbosity; */ 1,
210 /* syslog_facility; */ LOG_DAEMON
,
213 /* fake_super; */ False
,
214 /* ignore_errors; */ False
,
215 /* ignore_nonreadable; */ False
,
217 /* munge_symlinks; */ (BOOL
)-1,
218 /* numeric_ids; */ (BOOL
)-1,
219 /* read_only; */ True
,
220 /* reverse_lookup; */ True
,
221 /* strict_modes; */ True
,
222 /* transfer_logging; */ False
,
223 /* use_chroot; */ True
,
224 /* write_only; */ False
,
228 /* The currently configured values for all the variables. */
229 static all_vars Vars
;
231 /* Stack of "Vars" values used by the &include directive. */
232 static item_list Vars_stack
= EMPTY_ITEM_LIST
;
234 /* The array of section values that holds all the defined modules. */
235 static item_list section_list
= EMPTY_ITEM_LIST
;
237 static int iSectionIndex
= -1;
238 static BOOL bInGlobalSection
= True
;
240 #define NUMPARAMETERS (sizeof (parm_table) / sizeof (struct parm_struct))
242 static struct enum_list enum_facilities
[] = {
244 { LOG_AUTH
, "auth" },
247 { LOG_AUTHPRIV
, "authpriv" },
250 { LOG_CRON
, "cron" },
253 { LOG_DAEMON
, "daemon" },
259 { LOG_KERN
, "kern" },
265 { LOG_MAIL
, "mail" },
268 { LOG_NEWS
, "news" },
271 { LOG_AUTH
, "security" },
274 { LOG_SYSLOG
, "syslog" },
277 { LOG_USER
, "user" },
280 { LOG_UUCP
, "uucp" },
283 { LOG_LOCAL0
, "local0" },
286 { LOG_LOCAL1
, "local1" },
289 { LOG_LOCAL2
, "local2" },
292 { LOG_LOCAL3
, "local3" },
295 { LOG_LOCAL4
, "local4" },
298 { LOG_LOCAL5
, "local5" },
301 { LOG_LOCAL6
, "local6" },
304 { LOG_LOCAL7
, "local7" },
309 static struct parm_struct parm_table
[] =
311 {"address", P_STRING
, P_GLOBAL
,&Vars
.g
.bind_address
, NULL
,0},
312 {"motd file", P_STRING
, P_GLOBAL
,&Vars
.g
.motd_file
, NULL
,0},
313 {"pid file", P_STRING
, P_GLOBAL
,&Vars
.g
.pid_file
, NULL
,0},
314 {"port", P_INTEGER
,P_GLOBAL
,&Vars
.g
.rsync_port
, NULL
,0},
315 {"socket options", P_STRING
, P_GLOBAL
,&Vars
.g
.socket_options
, NULL
,0},
317 {"auth users", P_STRING
, P_LOCAL
, &Vars
.l
.auth_users
, NULL
,0},
318 {"charset", P_STRING
, P_LOCAL
, &Vars
.l
.charset
, NULL
,0},
319 {"comment", P_STRING
, P_LOCAL
, &Vars
.l
.comment
, NULL
,0},
320 {"dont compress", P_STRING
, P_LOCAL
, &Vars
.l
.dont_compress
, NULL
,0},
321 {"exclude from", P_STRING
, P_LOCAL
, &Vars
.l
.exclude_from
, NULL
,0},
322 {"exclude", P_STRING
, P_LOCAL
, &Vars
.l
.exclude
, NULL
,0},
323 {"fake super", P_BOOL
, P_LOCAL
, &Vars
.l
.fake_super
, NULL
,0},
324 {"filter", P_STRING
, P_LOCAL
, &Vars
.l
.filter
, NULL
,0},
325 {"gid", P_STRING
, P_LOCAL
, &Vars
.l
.gid
, NULL
,0},
326 {"hosts allow", P_STRING
, P_LOCAL
, &Vars
.l
.hosts_allow
, NULL
,0},
327 {"hosts deny", P_STRING
, P_LOCAL
, &Vars
.l
.hosts_deny
, NULL
,0},
328 {"ignore errors", P_BOOL
, P_LOCAL
, &Vars
.l
.ignore_errors
, NULL
,0},
329 {"ignore nonreadable",P_BOOL
, P_LOCAL
, &Vars
.l
.ignore_nonreadable
, NULL
,0},
330 {"include from", P_STRING
, P_LOCAL
, &Vars
.l
.include_from
, NULL
,0},
331 {"include", P_STRING
, P_LOCAL
, &Vars
.l
.include
, NULL
,0},
332 {"incoming chmod", P_STRING
, P_LOCAL
, &Vars
.l
.incoming_chmod
, NULL
,0},
333 {"list", P_BOOL
, P_LOCAL
, &Vars
.l
.list
, NULL
,0},
334 {"lock file", P_STRING
, P_LOCAL
, &Vars
.l
.lock_file
, NULL
,0},
335 {"log file", P_STRING
, P_LOCAL
, &Vars
.l
.log_file
, NULL
,0},
336 {"log format", P_STRING
, P_LOCAL
, &Vars
.l
.log_format
, NULL
,0},
337 {"max connections", P_INTEGER
,P_LOCAL
, &Vars
.l
.max_connections
, NULL
,0},
338 {"max verbosity", P_INTEGER
,P_LOCAL
, &Vars
.l
.max_verbosity
, NULL
,0},
339 {"munge symlinks", P_BOOL
, P_LOCAL
, &Vars
.l
.munge_symlinks
, NULL
,0},
340 {"name", P_STRING
, P_LOCAL
, &Vars
.l
.name
, NULL
,0},
341 {"numeric ids", P_BOOL
, P_LOCAL
, &Vars
.l
.numeric_ids
, NULL
,0},
342 {"outgoing chmod", P_STRING
, P_LOCAL
, &Vars
.l
.outgoing_chmod
, NULL
,0},
343 {"path", P_PATH
, P_LOCAL
, &Vars
.l
.path
, NULL
,0},
345 {"post-xfer exec", P_STRING
, P_LOCAL
, &Vars
.l
.postxfer_exec
, NULL
,0},
346 {"pre-xfer exec", P_STRING
, P_LOCAL
, &Vars
.l
.prexfer_exec
, NULL
,0},
348 {"read only", P_BOOL
, P_LOCAL
, &Vars
.l
.read_only
, NULL
,0},
349 {"refuse options", P_STRING
, P_LOCAL
, &Vars
.l
.refuse_options
, NULL
,0},
350 {"reverse lookup", P_BOOL
, P_LOCAL
, &Vars
.l
.reverse_lookup
, NULL
,0},
351 {"secrets file", P_STRING
, P_LOCAL
, &Vars
.l
.secrets_file
, NULL
,0},
352 {"strict modes", P_BOOL
, P_LOCAL
, &Vars
.l
.strict_modes
, NULL
,0},
353 {"syslog facility", P_ENUM
, P_LOCAL
, &Vars
.l
.syslog_facility
, enum_facilities
,0},
354 {"temp dir", P_PATH
, P_LOCAL
, &Vars
.l
.temp_dir
, NULL
,0},
355 {"timeout", P_INTEGER
,P_LOCAL
, &Vars
.l
.timeout
, NULL
,0},
356 {"transfer logging", P_BOOL
, P_LOCAL
, &Vars
.l
.transfer_logging
, NULL
,0},
357 {"uid", P_STRING
, P_LOCAL
, &Vars
.l
.uid
, NULL
,0},
358 {"use chroot", P_BOOL
, P_LOCAL
, &Vars
.l
.use_chroot
, NULL
,0},
359 {"write only", P_BOOL
, P_LOCAL
, &Vars
.l
.write_only
, NULL
,0},
360 {NULL
, P_BOOL
, P_NONE
, NULL
, NULL
,0}
363 /* Initialise the Default all_vars structure. */
364 static void reset_all_vars(void)
366 memcpy(&Vars
, &Defaults
, sizeof Vars
);
369 /* Expand %VAR% references. Any unknown vars or unrecognized
370 * syntax leaves the raw chars unchanged. */
371 static char *expand_vars(char *str
)
376 if (strchr(str
, '%') == NULL
)
379 bufsize
= strlen(str
) + 2048;
380 if ((buf
= new_array(char, bufsize
+1)) == NULL
) /* +1 for trailing '\0' */
381 out_of_memory("expand_vars");
383 for (t
= buf
, f
= str
; bufsize
&& *f
; ) {
384 if (*f
== '%' && *++f
!= '%') {
385 char *percent
= strchr(f
, '%');
392 int len
= strlcpy(t
, val
, bufsize
+1);
409 rprintf(FLOG
, "Overflowed buf in expand_vars() trying to expand: %s\n", str
);
410 exit_cleanup(RERR_MALLOC
);
413 if (bufsize
&& (buf
= realloc(buf
, t
- buf
+ 1)) == NULL
)
414 out_of_memory("expand_vars");
419 /* In this section all the functions that are used to access the
420 * parameters from the rest of the program are defined. */
422 #define FN_GLOBAL_STRING(fn_name, ptr) \
423 char *fn_name(void) {return expand_vars(*(char **)(ptr) ? *(char **)(ptr) : "");}
424 #define FN_GLOBAL_BOOL(fn_name, ptr) \
425 BOOL fn_name(void) {return *(BOOL *)(ptr);}
426 #define FN_GLOBAL_CHAR(fn_name, ptr) \
427 char fn_name(void) {return *(char *)(ptr);}
428 #define FN_GLOBAL_INTEGER(fn_name, ptr) \
429 int fn_name(void) {return *(int *)(ptr);}
431 #define FN_LOCAL_STRING(fn_name, val) \
432 char *fn_name(int i) {return expand_vars(LP_SNUM_OK(i) && iSECTION(i).val ? iSECTION(i).val : Vars.l.val ? Vars.l.val : "");}
433 #define FN_LOCAL_BOOL(fn_name, val) \
434 BOOL fn_name(int i) {return LP_SNUM_OK(i)? iSECTION(i).val : Vars.l.val;}
435 #define FN_LOCAL_CHAR(fn_name, val) \
436 char fn_name(int i) {return LP_SNUM_OK(i)? iSECTION(i).val : Vars.l.val;}
437 #define FN_LOCAL_INTEGER(fn_name, val) \
438 int fn_name(int i) {return LP_SNUM_OK(i)? iSECTION(i).val : Vars.l.val;}
440 FN_GLOBAL_STRING(lp_bind_address
, &Vars
.g
.bind_address
)
441 FN_GLOBAL_STRING(lp_motd_file
, &Vars
.g
.motd_file
)
442 FN_GLOBAL_STRING(lp_pid_file
, &Vars
.g
.pid_file
)
443 FN_GLOBAL_STRING(lp_socket_options
, &Vars
.g
.socket_options
)
445 FN_GLOBAL_INTEGER(lp_rsync_port
, &Vars
.g
.rsync_port
)
447 FN_LOCAL_STRING(lp_auth_users
, auth_users
)
448 FN_LOCAL_STRING(lp_charset
, charset
)
449 FN_LOCAL_STRING(lp_comment
, comment
)
450 FN_LOCAL_STRING(lp_dont_compress
, dont_compress
)
451 FN_LOCAL_STRING(lp_exclude
, exclude
)
452 FN_LOCAL_STRING(lp_exclude_from
, exclude_from
)
453 FN_LOCAL_STRING(lp_filter
, filter
)
454 FN_LOCAL_STRING(lp_gid
, gid
)
455 FN_LOCAL_STRING(lp_hosts_allow
, hosts_allow
)
456 FN_LOCAL_STRING(lp_hosts_deny
, hosts_deny
)
457 FN_LOCAL_STRING(lp_include
, include
)
458 FN_LOCAL_STRING(lp_include_from
, include_from
)
459 FN_LOCAL_STRING(lp_incoming_chmod
, incoming_chmod
)
460 FN_LOCAL_STRING(lp_lock_file
, lock_file
)
461 FN_LOCAL_STRING(lp_log_file
, log_file
)
462 FN_LOCAL_STRING(lp_log_format
, log_format
)
463 FN_LOCAL_STRING(lp_name
, name
)
464 FN_LOCAL_STRING(lp_outgoing_chmod
, outgoing_chmod
)
465 FN_LOCAL_STRING(lp_path
, path
)
466 FN_LOCAL_STRING(lp_postxfer_exec
, postxfer_exec
)
467 FN_LOCAL_STRING(lp_prexfer_exec
, prexfer_exec
)
468 FN_LOCAL_STRING(lp_refuse_options
, refuse_options
)
469 FN_LOCAL_STRING(lp_secrets_file
, secrets_file
)
470 FN_LOCAL_STRING(lp_temp_dir
, temp_dir
)
471 FN_LOCAL_STRING(lp_uid
, uid
)
473 FN_LOCAL_INTEGER(lp_max_connections
, max_connections
)
474 FN_LOCAL_INTEGER(lp_max_verbosity
, max_verbosity
)
475 FN_LOCAL_INTEGER(lp_syslog_facility
, syslog_facility
)
476 FN_LOCAL_INTEGER(lp_timeout
, timeout
)
478 FN_LOCAL_BOOL(lp_fake_super
, fake_super
)
479 FN_LOCAL_BOOL(lp_ignore_errors
, ignore_errors
)
480 FN_LOCAL_BOOL(lp_ignore_nonreadable
, ignore_nonreadable
)
481 FN_LOCAL_BOOL(lp_list
, list
)
482 FN_LOCAL_BOOL(lp_munge_symlinks
, munge_symlinks
)
483 FN_LOCAL_BOOL(lp_numeric_ids
, numeric_ids
)
484 FN_LOCAL_BOOL(lp_read_only
, read_only
)
485 FN_LOCAL_BOOL(lp_reverse_lookup
, reverse_lookup
)
486 FN_LOCAL_BOOL(lp_strict_modes
, strict_modes
)
487 FN_LOCAL_BOOL(lp_transfer_logging
, transfer_logging
)
488 FN_LOCAL_BOOL(lp_use_chroot
, use_chroot
)
489 FN_LOCAL_BOOL(lp_write_only
, write_only
)
491 /* Assign a copy of v to *s. Handles NULL strings. We don't worry
492 * about overwriting a malloc'd string because the long-running
493 * (port-listening) daemon only loads the config file once, and the
494 * per-job (forked or xinitd-ran) daemon only re-reads the file at
495 * the start, so any lost memory is inconsequential. */
496 static inline void string_set(char **s
, const char *v
)
500 else if (!(*s
= strdup(v
)))
501 out_of_memory("string_set");
504 /* Copy the local_vars, strdup'ing any strings. NOTE: this depends on
505 * the structure starting with a contiguous list of the char* variables,
506 * and having an accurate count in the LOCAL_STRING_COUNT() macro. */
507 static void copy_section(local_vars
*psectionDest
, local_vars
*psectionSource
)
509 int count
= LOCAL_STRING_COUNT();
510 char **strings
= (char**)psectionDest
;
512 memcpy(psectionDest
, psectionSource
, sizeof psectionDest
[0]);
514 if (strings
[count
] && !(strings
[count
] = strdup(strings
[count
])))
515 out_of_memory("copy_section");
519 /* Initialise a section to the defaults. */
520 static void init_section(local_vars
*psection
)
522 memset(psection
, 0, sizeof (local_vars
));
523 copy_section(psection
, &Vars
.l
);
526 /* Do a case-insensitive, whitespace-ignoring string compare. */
527 static int strwicmp(char *psz1
, char *psz2
)
529 /* if BOTH strings are NULL, return TRUE, if ONE is NULL return */
530 /* appropriate value. */
540 /* sync the strings on first non-whitespace */
542 while (isSpace(psz1
))
544 while (isSpace(psz2
))
546 if (toUpper(psz1
) != toUpper(psz2
) || *psz1
== '\0' || *psz2
== '\0')
551 return *psz1
- *psz2
;
554 /* Find a section by name. Otherwise works like get_section. */
555 static int getsectionbyname(char *name
)
559 for (i
= section_list
.count
- 1; i
>= 0; i
--) {
560 if (strwicmp(iSECTION(i
).name
, name
) == 0)
567 /* Add a new section to the sections array w/the default values. */
568 static int add_a_section(char *name
)
573 /* it might already exist */
575 i
= getsectionbyname(name
);
580 i
= section_list
.count
;
581 s
= EXPAND_ITEM_LIST(§ion_list
, local_vars
, 2);
585 string_set(&s
->name
, name
);
590 /* Map a parameter's string representation to something we can use.
591 * Returns False if the parameter string is not recognised, else TRUE. */
592 static int map_parameter(char *parmname
)
596 if (*parmname
== '-')
599 for (iIndex
= 0; parm_table
[iIndex
].label
; iIndex
++) {
600 if (strwicmp(parm_table
[iIndex
].label
, parmname
) == 0)
604 rprintf(FLOG
, "Unknown Parameter encountered: \"%s\"\n", parmname
);
608 /* Set a boolean variable from the text value stored in the passed string.
609 * Returns True in success, False if the passed string does not correctly
610 * represent a boolean. */
611 static BOOL
set_boolean(BOOL
*pb
, char *parmvalue
)
613 if (strwicmp(parmvalue
, "yes") == 0
614 || strwicmp(parmvalue
, "true") == 0
615 || strwicmp(parmvalue
, "1") == 0)
617 else if (strwicmp(parmvalue
, "no") == 0
618 || strwicmp(parmvalue
, "False") == 0
619 || strwicmp(parmvalue
, "0") == 0)
622 rprintf(FLOG
, "Badly formed boolean in configuration file: \"%s\".\n", parmvalue
);
628 /* Process a parameter. */
629 static BOOL
do_parameter(char *parmname
, char *parmvalue
)
632 void *parm_ptr
; /* where we are going to store the result */
636 parmnum
= map_parameter(parmname
);
639 rprintf(FLOG
, "IGNORING unknown parameter \"%s\"\n", parmname
);
643 def_ptr
= parm_table
[parmnum
].ptr
;
645 if (bInGlobalSection
)
648 if (parm_table
[parmnum
].class == P_GLOBAL
) {
649 rprintf(FLOG
, "Global parameter %s found in module section!\n", parmname
);
652 parm_ptr
= SECTION_PTR(&iSECTION(iSectionIndex
), def_ptr
);
655 /* now switch on the type of variable it is */
656 switch (parm_table
[parmnum
].type
) {
659 /* delay expansion of vars */
662 /* expand any %VARS% now */
663 parmvalue
= expand_vars(parmvalue
);
667 switch (parm_table
[parmnum
].type
) {
669 set_boolean(parm_ptr
, parmvalue
);
673 set_boolean(parm_ptr
, parmvalue
);
674 *(BOOL
*)parm_ptr
= ! *(BOOL
*)parm_ptr
;
678 *(int *)parm_ptr
= atoi(parmvalue
);
682 *(char *)parm_ptr
= *parmvalue
;
686 sscanf(parmvalue
, "%o", (int *)parm_ptr
);
690 string_set(parm_ptr
, parmvalue
);
691 if ((cp
= *(char**)parm_ptr
) != NULL
) {
692 int len
= strlen(cp
);
693 while (len
> 1 && cp
[len
-1] == '/') len
--;
699 string_set(parm_ptr
, parmvalue
);
703 for (i
=0; parm_table
[parmnum
].enum_list
[i
].name
; i
++) {
704 if (strequal(parmvalue
, parm_table
[parmnum
].enum_list
[i
].name
)) {
705 *(int *)parm_ptr
= parm_table
[parmnum
].enum_list
[i
].value
;
709 if (!parm_table
[parmnum
].enum_list
[i
].name
) {
710 if (atoi(parmvalue
) > 0)
711 *(int *)parm_ptr
= atoi(parmvalue
);
719 /* Process a new section (rsync module).
720 * Returns True on success, False on failure. */
721 static BOOL
do_section(char *sectionname
)
725 if (*sectionname
== ']') { /* A special push/pop/reset directive from params.c */
726 bInGlobalSection
= 1;
727 if (strcmp(sectionname
+1, "push") == 0) {
728 all_vars
*vp
= EXPAND_ITEM_LIST(&Vars_stack
, all_vars
, 2);
729 memcpy(vp
, &Vars
, sizeof Vars
);
730 } else if (strcmp(sectionname
+1, "pop") == 0
731 || strcmp(sectionname
+1, "reset") == 0) {
732 all_vars
*vp
= ((all_vars
*)Vars_stack
.items
) + Vars_stack
.count
- 1;
733 if (!Vars_stack
.count
)
735 memcpy(&Vars
, vp
, sizeof Vars
);
736 if (sectionname
[1] == 'p')
743 isglobal
= strwicmp(sectionname
, GLOBAL_NAME
) == 0;
745 /* At the end of the global section, add any --dparam items. */
746 if (bInGlobalSection
&& !isglobal
) {
747 if (!section_list
.count
)
751 /* if we've just struck a global section, note the fact. */
752 bInGlobalSection
= isglobal
;
754 /* check for multiple global sections */
755 if (bInGlobalSection
)
759 /* If we have a current section, tidy it up before moving on. */
760 if (iSectionIndex
>= 0) {
761 /* Add any tidy work as needed ... */
767 if (strchr(sectionname
, '/') != NULL
) {
768 rprintf(FLOG
, "Warning: invalid section name in configuration file: %s\n", sectionname
);
772 if ((iSectionIndex
= add_a_section(sectionname
)) < 0) {
773 rprintf(FLOG
, "Failed to add a new module\n");
774 bInGlobalSection
= True
;
781 /* Load the modules from the config file. Return True on success,
782 * False on failure. */
783 int lp_load(char *pszFname
, int globals_only
)
785 bInGlobalSection
= True
;
789 /* We get sections first, so have to start 'behind' to make up. */
791 return pm_process(pszFname
, globals_only
? NULL
: do_section
, do_parameter
);
794 BOOL
set_dparams(int syntax_check_only
)
796 char *equal
, *val
, **params
= dparam_list
.items
;
799 for (j
= 0; j
< dparam_list
.count
; j
++) {
800 equal
= strchr(params
[j
], '='); /* options.c verified this */
802 if (syntax_check_only
) {
803 if (map_parameter(params
[j
]) < 0) {
804 rprintf(FERROR
, "Unknown parameter \"%s\"\n", params
[j
]);
809 for (val
= equal
+1; isSpace(val
); val
++) {}
810 do_parameter(params
[j
], val
);
818 /* Return the max number of modules (sections). */
819 int lp_num_modules(void)
821 return section_list
.count
;
824 /* Return the number of the module with the given name, or -1 if it doesn't
825 * exist. Note that this is a DIFFERENT ANIMAL from the internal function
826 * getsectionbyname()! This works ONLY if all sections have been loaded,
827 * and does not copy the found section. */
828 int lp_number(char *name
)
832 for (i
= section_list
.count
- 1; i
>= 0; i
--) {
833 if (strcmp(lp_name(i
), name
) == 0)