param: move init_printer_values to lib/param
[sfrench/samba-autobuild/.git] / lib / param / loadparm.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Parameter loading functions
4    Copyright (C) Karl Auer 1993-1998
5
6    Largely re-written by Andrew Tridgell, September 1994
7
8    Copyright (C) Simo Sorce 2001
9    Copyright (C) Alexander Bokovoy 2002
10    Copyright (C) Stefan (metze) Metzmacher 2002
11    Copyright (C) Jim McDonough (jmcd@us.ibm.com)  2003.
12    Copyright (C) James Myers 2003 <myersjj@samba.org>
13    Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
14    Copyright (C) Andrew Bartlett 2011-2012
15
16    This program is free software; you can redistribute it and/or modify
17    it under the terms of the GNU General Public License as published by
18    the Free Software Foundation; either version 3 of the License, or
19    (at your option) any later version.
20
21    This program is distributed in the hope that it will be useful,
22    but WITHOUT ANY WARRANTY; without even the implied warranty of
23    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
24    GNU General Public License for more details.
25
26    You should have received a copy of the GNU General Public License
27    along with this program.  If not, see <http://www.gnu.org/licenses/>.
28 */
29
30 /*
31  *  Load parameters.
32  *
33  *  This module provides suitable callback functions for the params
34  *  module. It builds the internal table of service details which is
35  *  then used by the rest of the server.
36  *
37  * To add a parameter:
38  *
39  * 1) add it to the global or service structure definition
40  * 2) add it to the parm_table
41  * 3) add it to the list of available functions (eg: using FN_GLOBAL_STRING())
42  * 4) If it's a global then initialise it in init_globals. If a local
43  *    (ie. service) parameter then initialise it in the sDefault structure
44  *
45  *
46  * Notes:
47  *   The configuration file is processed sequentially for speed. It is NOT
48  *   accessed randomly as happens in 'real' Windows. For this reason, there
49  *   is a fair bit of sequence-dependent code here - ie., code which assumes
50  *   that certain things happen before others. In particular, the code which
51  *   happens at the boundary between sections is delicately poised, so be
52  *   careful!
53  *
54  */
55
56 #include "includes.h"
57 #include "version.h"
58 #include "dynconfig/dynconfig.h"
59 #include "system/time.h"
60 #include "system/locale.h"
61 #include "system/network.h" /* needed for TCP_NODELAY */
62 #include "../lib/util/dlinklist.h"
63 #include "lib/param/param.h"
64 #include "lib/param/loadparm.h"
65 #include "auth/gensec/gensec.h"
66 #include "lib/param/s3_param.h"
67 #include "lib/util/bitmap.h"
68 #include "libcli/smb/smb_constants.h"
69 #include "tdb.h"
70
71 #define standard_sub_basic talloc_strdup
72
73 #include "lib/param/param_global.h"
74
75 struct loadparm_service *lpcfg_default_service(struct loadparm_context *lp_ctx)
76 {
77         if (lp_ctx->s3_fns) {
78                 return lp_ctx->s3_fns->get_default_loadparm_service();
79         }
80         return lp_ctx->sDefault;
81 }
82
83 /**
84  * Convenience routine to grab string parameters into temporary memory
85  * and run standard_sub_basic on them.
86  *
87  * The buffers can be written to by
88  * callers without affecting the source string.
89  */
90
91 static const char *lpcfg_string(const char *s)
92 {
93 #if 0  /* until REWRITE done to make thread-safe */
94         size_t len = s ? strlen(s) : 0;
95         char *ret;
96 #endif
97
98         /* The follow debug is useful for tracking down memory problems
99            especially if you have an inner loop that is calling a lp_*()
100            function that returns a string.  Perhaps this debug should be
101            present all the time? */
102
103 #if 0
104         DEBUG(10, ("lpcfg_string(%s)\n", s));
105 #endif
106
107 #if 0  /* until REWRITE done to make thread-safe */
108         if (!lp_talloc)
109                 lp_talloc = talloc_init("lp_talloc");
110
111         ret = talloc_array(lp_talloc, char, len + 100); /* leave room for substitution */
112
113         if (!ret)
114                 return NULL;
115
116         if (!s)
117                 *ret = 0;
118         else
119                 strlcpy(ret, s, len);
120
121         if (trim_string(ret, "\"", "\"")) {
122                 if (strchr(ret,'"') != NULL)
123                         strlcpy(ret, s, len);
124         }
125
126         standard_sub_basic(ret,len+100);
127         return (ret);
128 #endif
129         return s;
130 }
131
132 /*
133    In this section all the functions that are used to access the
134    parameters from the rest of the program are defined
135 */
136
137 /*
138  * the creation of separate lpcfg_*() and lp_*() functions is to allow
139  * for code compatibility between existing Samba4 and Samba3 code.
140  */
141
142 /* this global context supports the lp_*() function varients */
143 static struct loadparm_context *global_loadparm_context;
144
145 #define lpcfg_default_service global_loadparm_context->sDefault
146 #define lpcfg_global_service(i) global_loadparm_context->services[i]
147
148 #define FN_GLOBAL_STRING(fn_name,var_name) \
149  _PUBLIC_ char *lpcfg_ ## fn_name(struct loadparm_context *lp_ctx, TALLOC_CTX *ctx) {\
150          if (lp_ctx == NULL) return NULL;                               \
151          if (lp_ctx->s3_fns) {                                          \
152                  return lp_ctx->globals->var_name ? lp_ctx->s3_fns->lp_string(ctx, lp_ctx->globals->var_name) : talloc_strdup(ctx, ""); \
153          }                                                              \
154          return lp_ctx->globals->var_name ? talloc_strdup(ctx, lpcfg_string(lp_ctx->globals->var_name)) : talloc_strdup(ctx, ""); \
155 }
156
157 #define FN_GLOBAL_CONST_STRING(fn_name,var_name)                                \
158  _PUBLIC_ const char *lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) { \
159         if (lp_ctx == NULL) return NULL;                                \
160         return lp_ctx->globals->var_name ? lpcfg_string(lp_ctx->globals->var_name) : ""; \
161 }
162
163 #define FN_GLOBAL_LIST(fn_name,var_name)                                \
164  _PUBLIC_ const char **lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) { \
165          if (lp_ctx == NULL) return NULL;                               \
166          return lp_ctx->globals->var_name;                              \
167  }
168
169 #define FN_GLOBAL_BOOL(fn_name,var_name) \
170  _PUBLIC_ bool lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) {\
171          if (lp_ctx == NULL) return false;                              \
172          return lp_ctx->globals->var_name;                              \
173 }
174
175 #define FN_GLOBAL_INTEGER(fn_name,var_name) \
176  _PUBLIC_ int lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) { \
177          return lp_ctx->globals->var_name;                              \
178  }
179
180 /* Local parameters don't need the ->s3_fns because the struct
181  * loadparm_service is shared and lpcfg_service() checks the ->s3_fns
182  * hook */
183 #define FN_LOCAL_STRING(fn_name,val) \
184  _PUBLIC_ char *lpcfg_ ## fn_name(struct loadparm_service *service, \
185                                         struct loadparm_service *sDefault, TALLOC_CTX *ctx) { \
186          return(talloc_strdup(ctx, lpcfg_string((const char *)((service != NULL && service->val != NULL) ? service->val : sDefault->val)))); \
187  }
188
189 #define FN_LOCAL_CONST_STRING(fn_name,val) \
190  _PUBLIC_ const char *lpcfg_ ## fn_name(struct loadparm_service *service, \
191                                         struct loadparm_service *sDefault) { \
192          return((const char *)((service != NULL && service->val != NULL) ? service->val : sDefault->val)); \
193  }
194
195 #define FN_LOCAL_LIST(fn_name,val) \
196  _PUBLIC_ const char **lpcfg_ ## fn_name(struct loadparm_service *service, \
197                                          struct loadparm_service *sDefault) {\
198          return(const char **)(service != NULL && service->val != NULL? service->val : sDefault->val); \
199  }
200
201 #define FN_LOCAL_PARM_BOOL(fn_name, val) FN_LOCAL_BOOL(fn_name, val)
202
203 #define FN_LOCAL_BOOL(fn_name,val) \
204  _PUBLIC_ bool lpcfg_ ## fn_name(struct loadparm_service *service, \
205                                  struct loadparm_service *sDefault) {   \
206          return((service != NULL)? service->val : sDefault->val); \
207  }
208
209 #define FN_LOCAL_INTEGER(fn_name,val) \
210  _PUBLIC_ int lpcfg_ ## fn_name(struct loadparm_service *service, \
211                                 struct loadparm_service *sDefault) {    \
212          return((service != NULL)? service->val : sDefault->val); \
213  }
214
215 #define FN_LOCAL_PARM_INTEGER(fn_name, val) FN_LOCAL_INTEGER(fn_name, val)
216
217 #define FN_LOCAL_PARM_CHAR(fn_name,val) \
218  _PUBLIC_ char lpcfg_ ## fn_name(struct loadparm_service *service, \
219                                 struct loadparm_service *sDefault) {    \
220          return((service != NULL)? service->val : sDefault->val); \
221  }
222
223 #include "lib/param/param_functions.c"
224
225 /* These functions cannot be auto-generated */
226 FN_LOCAL_BOOL(autoloaded, autoloaded)
227 FN_GLOBAL_CONST_STRING(dnsdomain, dnsdomain)
228
229 /* local prototypes */
230 static struct loadparm_service *lpcfg_getservicebyname(struct loadparm_context *lp_ctx,
231                                         const char *pszServiceName);
232 static bool do_section(const char *pszSectionName, void *);
233 static bool set_variable_helper(TALLOC_CTX *mem_ctx, int parmnum, void *parm_ptr,
234                                 const char *pszParmName, const char *pszParmValue);
235 static bool lp_do_parameter_parametric(struct loadparm_context *lp_ctx,
236                                        struct loadparm_service *service,
237                                        const char *pszParmName,
238                                        const char *pszParmValue, int flags);
239
240 /* The following are helper functions for parametrical options support. */
241 /* It returns a pointer to parametrical option value if it exists or NULL otherwise */
242 /* Actual parametrical functions are quite simple */
243 struct parmlist_entry *get_parametric_helper(struct loadparm_service *service,
244                                              const char *type, const char *option,
245                                              struct parmlist_entry *global_opts)
246 {
247         char* param_key;
248         struct parmlist_entry *data = NULL;
249         TALLOC_CTX *mem_ctx = talloc_stackframe();
250
251         param_key = talloc_asprintf(mem_ctx, "%s:%s", type, option);
252         if (param_key == NULL) {
253                 DEBUG(0,("asprintf failed!\n"));
254                 TALLOC_FREE(mem_ctx);
255                 return NULL;
256         }
257
258         /*
259          * Try to fetch the option from the data.
260          */
261         if (service != NULL) {
262                 data = service->param_opt;
263                 while (data != NULL) {
264                         if (strwicmp(data->key, param_key) == 0) {
265                                 TALLOC_FREE(mem_ctx);
266                                 return data;
267                         }
268                         data = data->next;
269                 }
270         }
271
272         /*
273          * Fall back to fetching from the globals.
274          */
275         data = global_opts;
276         while (data != NULL) {
277                 if (strwicmp(data->key, param_key) == 0) {
278                         TALLOC_FREE(mem_ctx);
279                         return data;
280                 }
281                 data = data->next;
282         }
283
284
285         TALLOC_FREE(mem_ctx);
286
287         return NULL;
288
289
290 }
291
292 const char *lpcfg_get_parametric(struct loadparm_context *lp_ctx,
293                               struct loadparm_service *service,
294                               const char *type, const char *option)
295 {
296         struct parmlist_entry *data;
297
298         if (lp_ctx == NULL)
299                 return NULL;
300
301         data = get_parametric_helper(service,
302                                      type, option, lp_ctx->globals->param_opt);
303
304         if (data == NULL) {
305                 return NULL;
306         } else {
307                 return data->value;
308         }
309 }
310
311
312 /**
313  * convenience routine to return int parameters.
314  */
315 int lp_int(const char *s)
316 {
317
318         if (!s || !*s) {
319                 DEBUG(0,("lp_int(%s): is called with NULL!\n",s));
320                 return -1;
321         }
322
323         return strtol(s, NULL, 0);
324 }
325
326 /**
327  * convenience routine to return unsigned long parameters.
328  */
329 unsigned long lp_ulong(const char *s)
330 {
331
332         if (!s || !*s) {
333                 DEBUG(0,("lp_ulong(%s): is called with NULL!\n",s));
334                 return -1;
335         }
336
337         return strtoul(s, NULL, 0);
338 }
339
340 /**
341  * convenience routine to return unsigned long parameters.
342  */
343 static long lp_long(const char *s)
344 {
345
346         if (!s) {
347                 DEBUG(0,("lp_long(%s): is called with NULL!\n",s));
348                 return -1;
349         }
350
351         return strtol(s, NULL, 0);
352 }
353
354 /**
355  * convenience routine to return unsigned long parameters.
356  */
357 static double lp_double(const char *s)
358 {
359
360         if (!s) {
361                 DEBUG(0,("lp_double(%s): is called with NULL!\n",s));
362                 return -1;
363         }
364
365         return strtod(s, NULL);
366 }
367
368 /**
369  * convenience routine to return boolean parameters.
370  */
371 bool lp_bool(const char *s)
372 {
373         bool ret = false;
374
375         if (!s || !*s) {
376                 DEBUG(0,("lp_bool(%s): is called with NULL!\n",s));
377                 return false;
378         }
379
380         if (!set_boolean(s, &ret)) {
381                 DEBUG(0,("lp_bool(%s): value is not boolean!\n",s));
382                 return false;
383         }
384
385         return ret;
386 }
387
388 /**
389  * Return parametric option from a given service. Type is a part of option before ':'
390  * Parametric option has following syntax: 'Type: option = value'
391  * Returned value is allocated in 'lp_talloc' context
392  */
393
394 const char *lpcfg_parm_string(struct loadparm_context *lp_ctx,
395                               struct loadparm_service *service, const char *type,
396                               const char *option)
397 {
398         const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
399
400         if (value)
401                 return lpcfg_string(value);
402
403         return NULL;
404 }
405
406 /**
407  * Return parametric option from a given service. Type is a part of option before ':'
408  * Parametric option has following syntax: 'Type: option = value'
409  * Returned value is allocated in 'lp_talloc' context
410  */
411
412 const char **lpcfg_parm_string_list(TALLOC_CTX *mem_ctx,
413                                     struct loadparm_context *lp_ctx,
414                                     struct loadparm_service *service,
415                                     const char *type,
416                                     const char *option, const char *separator)
417 {
418         const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
419
420         if (value != NULL)
421                 return (const char **)str_list_make(mem_ctx, value, separator);
422
423         return NULL;
424 }
425
426 /**
427  * Return parametric option from a given service. Type is a part of option before ':'
428  * Parametric option has following syntax: 'Type: option = value'
429  */
430
431 int lpcfg_parm_int(struct loadparm_context *lp_ctx,
432                    struct loadparm_service *service, const char *type,
433                    const char *option, int default_v)
434 {
435         const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
436
437         if (value)
438                 return lp_int(value);
439
440         return default_v;
441 }
442
443 /**
444  * Return parametric option from a given service. Type is a part of
445  * option before ':'.
446  * Parametric option has following syntax: 'Type: option = value'.
447  */
448
449 int lpcfg_parm_bytes(struct loadparm_context *lp_ctx,
450                   struct loadparm_service *service, const char *type,
451                   const char *option, int default_v)
452 {
453         uint64_t bval;
454
455         const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
456
457         if (value && conv_str_size_error(value, &bval)) {
458                 if (bval <= INT_MAX) {
459                         return (int)bval;
460                 }
461         }
462
463         return default_v;
464 }
465
466 /**
467  * Return parametric option from a given service.
468  * Type is a part of option before ':'
469  * Parametric option has following syntax: 'Type: option = value'
470  */
471 unsigned long lpcfg_parm_ulong(struct loadparm_context *lp_ctx,
472                             struct loadparm_service *service, const char *type,
473                             const char *option, unsigned long default_v)
474 {
475         const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
476
477         if (value)
478                 return lp_ulong(value);
479
480         return default_v;
481 }
482
483 long lpcfg_parm_long(struct loadparm_context *lp_ctx,
484                      struct loadparm_service *service, const char *type,
485                      const char *option, long default_v)
486 {
487         const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
488
489         if (value)
490                 return lp_long(value);
491
492         return default_v;
493 }
494
495 double lpcfg_parm_double(struct loadparm_context *lp_ctx,
496                       struct loadparm_service *service, const char *type,
497                       const char *option, double default_v)
498 {
499         const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
500
501         if (value != NULL)
502                 return lp_double(value);
503
504         return default_v;
505 }
506
507 /**
508  * Return parametric option from a given service. Type is a part of option before ':'
509  * Parametric option has following syntax: 'Type: option = value'
510  */
511
512 bool lpcfg_parm_bool(struct loadparm_context *lp_ctx,
513                      struct loadparm_service *service, const char *type,
514                      const char *option, bool default_v)
515 {
516         const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
517
518         if (value != NULL)
519                 return lp_bool(value);
520
521         return default_v;
522 }
523
524
525 /**
526  * Set a string value, deallocating any existing space, and allocing the space
527  * for the string
528  */
529 bool lpcfg_string_set(TALLOC_CTX *mem_ctx, char **dest, const char *src)
530 {
531         talloc_free(*dest);
532
533         if (src == NULL)
534                 src = "";
535
536         *dest = talloc_strdup(mem_ctx, src);
537         if ((*dest) == NULL) {
538                 DEBUG(0,("Out of memory in string_set\n"));
539                 return false;
540         }
541
542         return true;
543 }
544
545 /**
546  * Set a string value, deallocating any existing space, and allocing the space
547  * for the string
548  */
549 bool lpcfg_string_set_upper(TALLOC_CTX *mem_ctx, char **dest, const char *src)
550 {
551         talloc_free(*dest);
552
553         if (src == NULL)
554                 src = "";
555
556         *dest = strupper_talloc(mem_ctx, src);
557         if ((*dest) == NULL) {
558                 DEBUG(0,("Out of memory in string_set_upper\n"));
559                 return false;
560         }
561
562         return true;
563 }
564
565
566
567 /**
568  * Add a new service to the services array initialising it with the given
569  * service.
570  */
571
572 struct loadparm_service *lpcfg_add_service(struct loadparm_context *lp_ctx,
573                                            const struct loadparm_service *pservice,
574                                            const char *name)
575 {
576         int i;
577         int num_to_alloc = lp_ctx->iNumServices + 1;
578         struct parmlist_entry *data, *pdata;
579
580         if (pservice == NULL) {
581                 pservice = lp_ctx->sDefault;
582         }
583
584         /* it might already exist */
585         if (name) {
586                 struct loadparm_service *service = lpcfg_getservicebyname(lp_ctx,
587                                                                     name);
588                 if (service != NULL) {
589                         /* Clean all parametric options for service */
590                         /* They will be added during parsing again */
591                         data = service->param_opt;
592                         while (data) {
593                                 pdata = data->next;
594                                 talloc_free(data);
595                                 data = pdata;
596                         }
597                         service->param_opt = NULL;
598                         return service;
599                 }
600         }
601
602         /* find an invalid one */
603         for (i = 0; i < lp_ctx->iNumServices; i++)
604                 if (lp_ctx->services[i] == NULL)
605                         break;
606
607         /* if not, then create one */
608         if (i == lp_ctx->iNumServices) {
609                 struct loadparm_service **tsp;
610
611                 tsp = talloc_realloc(lp_ctx, lp_ctx->services, struct loadparm_service *, num_to_alloc);
612
613                 if (!tsp) {
614                         DEBUG(0,("lpcfg_add_service: failed to enlarge services!\n"));
615                         return NULL;
616                 } else {
617                         lp_ctx->services = tsp;
618                         lp_ctx->services[lp_ctx->iNumServices] = NULL;
619                 }
620
621                 lp_ctx->iNumServices++;
622         }
623
624         lp_ctx->services[i] = talloc_zero(lp_ctx->services, struct loadparm_service);
625         if (lp_ctx->services[i] == NULL) {
626                 DEBUG(0,("lpcfg_add_service: out of memory!\n"));
627                 return NULL;
628         }
629         copy_service(lp_ctx->services[i], pservice, NULL);
630         if (name != NULL)
631                 lpcfg_string_set(lp_ctx->services[i], &lp_ctx->services[i]->szService, name);
632         return lp_ctx->services[i];
633 }
634
635 /**
636  * Add a new home service, with the specified home directory, defaults coming
637  * from service ifrom.
638  */
639
640 bool lpcfg_add_home(struct loadparm_context *lp_ctx,
641                  const char *pszHomename,
642                  struct loadparm_service *default_service,
643                  const char *user, const char *pszHomedir)
644 {
645         struct loadparm_service *service;
646
647         service = lpcfg_add_service(lp_ctx, default_service, pszHomename);
648
649         if (service == NULL)
650                 return false;
651
652         if (!(*(default_service->path))
653             || strequal(default_service->path, lp_ctx->sDefault->path)) {
654                 service->path = talloc_strdup(service, pszHomedir);
655         } else {
656                 service->path = string_sub_talloc(service, lpcfg_path(default_service, lp_ctx->sDefault, service), "%H", pszHomedir);
657         }
658
659         if (!(*(service->comment))) {
660                 service->comment = talloc_asprintf(service, "Home directory of %s", user);
661         }
662         service->bAvailable = default_service->bAvailable;
663         service->browseable = default_service->browseable;
664
665         DEBUG(3, ("adding home's share [%s] for user '%s' at '%s'\n",
666                   pszHomename, user, service->path));
667
668         return true;
669 }
670
671 /**
672  * Add a new printer service, with defaults coming from service iFrom.
673  */
674
675 bool lpcfg_add_printer(struct loadparm_context *lp_ctx,
676                        const char *pszPrintername,
677                        struct loadparm_service *default_service)
678 {
679         const char *comment = "From Printcap";
680         struct loadparm_service *service;
681         service = lpcfg_add_service(lp_ctx, default_service, pszPrintername);
682
683         if (service == NULL)
684                 return false;
685
686         /* note that we do NOT default the availability flag to True - */
687         /* we take it from the default service passed. This allows all */
688         /* dynamic printers to be disabled by disabling the [printers] */
689         /* entry (if/when the 'available' keyword is implemented!).    */
690
691         /* the printer name is set to the service name. */
692         lpcfg_string_set(service, &service->_printername, pszPrintername);
693         lpcfg_string_set(service, &service->comment, comment);
694         service->browseable = default_service->browseable;
695         /* Printers cannot be read_only. */
696         service->read_only = false;
697         /* Printer services must be printable. */
698         service->printable = true;
699
700         DEBUG(3, ("adding printer service %s\n", pszPrintername));
701
702         return true;
703 }
704
705 /**
706  * Map a parameter's string representation to something we can use.
707  * Returns False if the parameter string is not recognised, else TRUE.
708  */
709
710 int lpcfg_map_parameter(const char *pszParmName)
711 {
712         int iIndex;
713
714         for (iIndex = 0; parm_table[iIndex].label; iIndex++)
715                 if (strwicmp(parm_table[iIndex].label, pszParmName) == 0)
716                         return iIndex;
717
718         /* Warn only if it isn't parametric option */
719         if (strchr(pszParmName, ':') == NULL)
720                 DEBUG(0, ("Unknown parameter encountered: \"%s\"\n", pszParmName));
721         /* We do return 'fail' for parametric options as well because they are
722            stored in different storage
723          */
724         return -1;
725 }
726
727
728 /**
729   return the parameter structure for a parameter
730 */
731 struct parm_struct *lpcfg_parm_struct(struct loadparm_context *lp_ctx, const char *name)
732 {
733         int parmnum;
734
735         if (lp_ctx->s3_fns) {
736                 return lp_ctx->s3_fns->get_parm_struct(name);
737         }
738
739         parmnum = lpcfg_map_parameter(name);
740         if (parmnum == -1) return NULL;
741         return &parm_table[parmnum];
742 }
743
744 /**
745   return the parameter pointer for a parameter
746 */
747 void *lpcfg_parm_ptr(struct loadparm_context *lp_ctx,
748                   struct loadparm_service *service, struct parm_struct *parm)
749 {
750         if (lp_ctx->s3_fns) {
751                 return lp_ctx->s3_fns->get_parm_ptr(service, parm);
752         }
753
754         if (service == NULL) {
755                 if (parm->p_class == P_LOCAL)
756                         return ((char *)lp_ctx->sDefault)+parm->offset;
757                 else if (parm->p_class == P_GLOBAL)
758                         return ((char *)lp_ctx->globals)+parm->offset;
759                 else return NULL;
760         } else {
761                 return ((char *)service) + parm->offset;
762         }
763 }
764
765 /**
766   return the parameter pointer for a parameter
767 */
768 bool lpcfg_parm_is_cmdline(struct loadparm_context *lp_ctx, const char *name)
769 {
770         int parmnum;
771
772         parmnum = lpcfg_map_parameter(name);
773         if (parmnum == -1) return false;
774
775         return lp_ctx->flags[parmnum] & FLAG_CMDLINE;
776 }
777
778 /**
779  * Find a service by name. Otherwise works like get_service.
780  */
781
782 static struct loadparm_service *lpcfg_getservicebyname(struct loadparm_context *lp_ctx,
783                                         const char *pszServiceName)
784 {
785         int iService;
786
787         if (lp_ctx->s3_fns) {
788                 return lp_ctx->s3_fns->get_service(pszServiceName);
789         }
790
791         for (iService = lp_ctx->iNumServices - 1; iService >= 0; iService--)
792                 if (lp_ctx->services[iService] != NULL &&
793                     strwicmp(lp_ctx->services[iService]->szService, pszServiceName) == 0) {
794                         return lp_ctx->services[iService];
795                 }
796
797         return NULL;
798 }
799
800 /**
801  * Add a parametric option to a parmlist_entry,
802  * replacing old value, if already present.
803  */
804 void set_param_opt(TALLOC_CTX *mem_ctx,
805                    struct parmlist_entry **opt_list,
806                    const char *opt_name,
807                    const char *opt_value,
808                    unsigned priority)
809 {
810         struct parmlist_entry *new_opt, *opt;
811         bool not_added;
812
813         opt = *opt_list;
814         not_added = true;
815
816         /* Traverse destination */
817         while (opt) {
818                 /* If we already have same option, override it */
819                 if (strwicmp(opt->key, opt_name) == 0) {
820                         if ((opt->priority & FLAG_CMDLINE) &&
821                             !(priority & FLAG_CMDLINE)) {
822                                 /* it's been marked as not to be
823                                    overridden */
824                                 return;
825                         }
826                         TALLOC_FREE(opt->value);
827                         TALLOC_FREE(opt->list);
828                         opt->value = talloc_strdup(opt, opt_value);
829                         opt->priority = priority;
830                         not_added = false;
831                         break;
832                 }
833                 opt = opt->next;
834         }
835         if (not_added) {
836                 new_opt = talloc(mem_ctx, struct parmlist_entry);
837                 if (new_opt == NULL) {
838                         smb_panic("OOM");
839                 }
840
841                 new_opt->key = talloc_strdup(new_opt, opt_name);
842                 if (new_opt->key == NULL) {
843                         smb_panic("talloc_strdup failed");
844                 }
845
846                 new_opt->value = talloc_strdup(new_opt, opt_value);
847                 if (new_opt->value == NULL) {
848                         smb_panic("talloc_strdup failed");
849                 }
850
851                 new_opt->list = NULL;
852                 new_opt->priority = priority;
853                 DLIST_ADD(*opt_list, new_opt);
854         }
855 }
856
857 /**
858  * Copy a service structure to another.
859  * If pcopymapDest is NULL then copy all fields
860  */
861
862 void copy_service(struct loadparm_service *pserviceDest,
863                   const struct loadparm_service *pserviceSource,
864                   struct bitmap *pcopymapDest)
865 {
866         int i;
867         bool bcopyall = (pcopymapDest == NULL);
868         struct parmlist_entry *data;
869
870         for (i = 0; parm_table[i].label; i++)
871                 if (parm_table[i].p_class == P_LOCAL &&
872                     (bcopyall || bitmap_query(pcopymapDest, i))) {
873                         const void *src_ptr =
874                                 ((const char *)pserviceSource) + parm_table[i].offset;
875                         void *dest_ptr =
876                                 ((char *)pserviceDest) + parm_table[i].offset;
877
878                         switch (parm_table[i].type) {
879                                 case P_BOOL:
880                                 case P_BOOLREV:
881                                         *(bool *)dest_ptr = *(const bool *)src_ptr;
882                                         break;
883
884                                 case P_INTEGER:
885                                 case P_BYTES:
886                                 case P_OCTAL:
887                                 case P_ENUM:
888                                         *(int *)dest_ptr = *(const int *)src_ptr;
889                                         break;
890
891                                 case P_CHAR:
892                                         *(char *)dest_ptr = *(const char *)src_ptr;
893                                         break;
894
895                                 case P_STRING:
896                                         lpcfg_string_set(pserviceDest,
897                                                    (char **)dest_ptr,
898                                                    *(const char * const *)src_ptr);
899                                         break;
900
901                                 case P_USTRING:
902                                         lpcfg_string_set_upper(pserviceDest,
903                                                          (char **)dest_ptr,
904                                                          *(const char * const *)src_ptr);
905                                         break;
906                                 case P_CMDLIST:
907                                 case P_LIST:
908                                         TALLOC_FREE(*((char ***)dest_ptr));
909                                         *(const char * const **)dest_ptr = (const char * const *)str_list_copy(pserviceDest,
910                                                                                   *(const char * * const *)src_ptr);
911                                         break;
912                                 default:
913                                         break;
914                         }
915                 }
916
917         if (bcopyall) {
918                 init_copymap(pserviceDest);
919                 if (pserviceSource->copymap)
920                         bitmap_copy(pserviceDest->copymap,
921                                     pserviceSource->copymap);
922         }
923
924         for (data = pserviceSource->param_opt; data != NULL; data = data->next) {
925                 set_param_opt(pserviceDest, &pserviceDest->param_opt,
926                               data->key, data->value, data->priority);
927         }
928 }
929
930 /**
931  * Check a service for consistency. Return False if the service is in any way
932  * incomplete or faulty, else True.
933  */
934 bool lpcfg_service_ok(struct loadparm_service *service)
935 {
936         bool bRetval;
937
938         bRetval = true;
939         if (service->szService[0] == '\0') {
940                 DEBUG(0, ("The following message indicates an internal error:\n"));
941                 DEBUG(0, ("No service name in service entry.\n"));
942                 bRetval = false;
943         }
944
945         /* The [printers] entry MUST be printable. I'm all for flexibility, but */
946         /* I can't see why you'd want a non-printable printer service...        */
947         if (strwicmp(service->szService, PRINTERS_NAME) == 0) {
948                 if (!service->printable) {
949                         DEBUG(0, ("WARNING: [%s] service MUST be printable!\n",
950                                service->szService));
951                         service->printable = true;
952                 }
953                 /* [printers] service must also be non-browsable. */
954                 if (service->browseable)
955                         service->browseable = false;
956         }
957
958         if (service->path[0] == '\0' &&
959             strwicmp(service->szService, HOMES_NAME) != 0 &&
960             service->msdfs_proxy[0] == '\0')
961         {
962                 DEBUG(0, ("WARNING: No path in service %s - making it unavailable!\n",
963                         service->szService));
964                 service->bAvailable = false;
965         }
966
967         /* If a service is flagged unavailable, log the fact at level 0. */
968         if (!service->bAvailable)
969                 DEBUG(1, ("NOTE: Service %s is flagged unavailable.\n",
970                           service->szService));
971
972         return bRetval;
973 }
974
975
976 /*******************************************************************
977  Keep a linked list of all config files so we know when one has changed
978  it's date and needs to be reloaded.
979 ********************************************************************/
980
981 void add_to_file_list(TALLOC_CTX *mem_ctx, struct file_lists **list,
982                              const char *fname, const char *subfname)
983 {
984         struct file_lists *f = *list;
985
986         while (f) {
987                 if (f->name && !strcmp(f->name, fname))
988                         break;
989                 f = f->next;
990         }
991
992         if (!f) {
993                 f = talloc(mem_ctx, struct file_lists);
994                 if (!f)
995                         goto fail;
996                 f->next = *list;
997                 f->name = talloc_strdup(f, fname);
998                 if (!f->name) {
999                         TALLOC_FREE(f);
1000                         goto fail;
1001                 }
1002                 f->subfname = talloc_strdup(f, subfname);
1003                 if (!f->subfname) {
1004                         TALLOC_FREE(f);
1005                         goto fail;
1006                 }
1007                 *list = f;
1008                 f->modtime = file_modtime(subfname);
1009         } else {
1010                 time_t t = file_modtime(subfname);
1011                 if (t)
1012                         f->modtime = t;
1013         }
1014         return;
1015
1016 fail:
1017         DEBUG(0, ("Unable to add file to file list: %s\n", fname));
1018
1019 }
1020
1021 /*******************************************************************
1022  Check if a config file has changed date.
1023 ********************************************************************/
1024 bool lpcfg_file_list_changed(struct loadparm_context *lp_ctx)
1025 {
1026         struct file_lists *f;
1027         DEBUG(6, ("lpcfg_file_list_changed()\n"));
1028
1029         for (f = lp_ctx->file_lists; f != NULL; f = f->next) {
1030                 char *n2;
1031                 time_t mod_time;
1032
1033                 n2 = standard_sub_basic(lp_ctx, f->name);
1034
1035                 DEBUGADD(6, ("file %s -> %s  last mod_time: %s\n",
1036                              f->name, n2, ctime(&f->modtime)));
1037
1038                 mod_time = file_modtime(n2);
1039
1040                 if (mod_time && ((f->modtime != mod_time) || (f->subfname == NULL) || (strcmp(n2, f->subfname) != 0))) {
1041                         DEBUGADD(6, ("file %s modified: %s\n", n2,
1042                                   ctime(&mod_time)));
1043                         f->modtime = mod_time;
1044                         talloc_free(f->subfname);
1045                         f->subfname = talloc_strdup(f, n2);
1046                         TALLOC_FREE(n2);
1047                         return true;
1048                 }
1049                 TALLOC_FREE(n2);
1050         }
1051         return false;
1052 }
1053
1054 /*
1055  * set the value for a P_ENUM
1056  */
1057 bool lp_set_enum_parm( struct parm_struct *parm, const char *pszParmValue,
1058                               int *ptr )
1059 {
1060         int i;
1061
1062         for (i = 0; parm->enum_list[i].name; i++) {
1063                 if ( strequal(pszParmValue, parm->enum_list[i].name)) {
1064                         *ptr = parm->enum_list[i].value;
1065                         return true;
1066                 }
1067         }
1068         DEBUG(0, ("WARNING: Ignoring invalid value '%s' for parameter '%s'\n",
1069                   pszParmValue, parm->label));
1070         return false;
1071 }
1072
1073
1074 /***************************************************************************
1075  Handle the "realm" parameter
1076 ***************************************************************************/
1077
1078 bool handle_realm(struct loadparm_context *lp_ctx, struct loadparm_service *service,
1079                   const char *pszParmValue, char **ptr)
1080 {
1081         char *upper;
1082         char *lower;
1083
1084         upper = strupper_talloc(lp_ctx, pszParmValue);
1085         if (upper == NULL) {
1086                 return false;
1087         }
1088
1089         lower = strlower_talloc(lp_ctx, pszParmValue);
1090         if (lower == NULL) {
1091                 TALLOC_FREE(upper);
1092                 return false;
1093         }
1094
1095         lpcfg_string_set(lp_ctx->globals->ctx, ptr, pszParmValue);
1096         lpcfg_string_set(lp_ctx->globals->ctx, &lp_ctx->globals->realm, upper);
1097         lpcfg_string_set(lp_ctx->globals->ctx, &lp_ctx->globals->dnsdomain, lower);
1098
1099         return true;
1100 }
1101
1102 /***************************************************************************
1103  Handle the include operation.
1104 ***************************************************************************/
1105
1106 bool handle_include(struct loadparm_context *lp_ctx, struct loadparm_service *service,
1107                            const char *pszParmValue, char **ptr)
1108 {
1109         char *fname;
1110
1111         if (lp_ctx->s3_fns) {
1112                 return lp_ctx->s3_fns->lp_include(lp_ctx, service, pszParmValue, ptr);
1113         }
1114
1115         fname = standard_sub_basic(lp_ctx, pszParmValue);
1116
1117         add_to_file_list(lp_ctx, &lp_ctx->file_lists, pszParmValue, fname);
1118
1119         lpcfg_string_set(lp_ctx, ptr, fname);
1120
1121         if (file_exist(fname))
1122                 return pm_process(fname, do_section, lpcfg_do_parameter, lp_ctx);
1123
1124         DEBUG(2, ("Can't find include file %s\n", fname));
1125
1126         return false;
1127 }
1128
1129 /***************************************************************************
1130  Handle the interpretation of the copy parameter.
1131 ***************************************************************************/
1132
1133 bool handle_copy(struct loadparm_context *lp_ctx, struct loadparm_service *service,
1134                         const char *pszParmValue, char **ptr)
1135 {
1136         bool bRetval;
1137         struct loadparm_service *serviceTemp = NULL;
1138
1139         bRetval = false;
1140
1141         DEBUG(3, ("Copying service from service %s\n", pszParmValue));
1142
1143         serviceTemp = lpcfg_getservicebyname(lp_ctx, pszParmValue);
1144
1145         if (service == NULL) {
1146                 DEBUG(0, ("Unable to copy service - invalid service destination.\n"));
1147                 return false;
1148         }
1149
1150         if (serviceTemp != NULL) {
1151                 if (serviceTemp == service) {
1152                         DEBUG(0, ("Can't copy service %s - unable to copy self!\n", pszParmValue));
1153                 } else {
1154                         copy_service(service,
1155                                      serviceTemp,
1156                                      service->copymap);
1157                         lpcfg_string_set(service, ptr, pszParmValue);
1158
1159                         bRetval = true;
1160                 }
1161         } else {
1162                 DEBUG(0, ("Unable to copy service - source not found: %s\n",
1163                           pszParmValue));
1164                 bRetval = false;
1165         }
1166
1167         return bRetval;
1168 }
1169
1170 bool handle_debug_list(struct loadparm_context *lp_ctx, struct loadparm_service *service,
1171                         const char *pszParmValue, char **ptr)
1172 {
1173         lpcfg_string_set(lp_ctx->globals->ctx, ptr, pszParmValue);
1174
1175         return debug_parse_levels(pszParmValue);
1176 }
1177
1178 bool handle_logfile(struct loadparm_context *lp_ctx, struct loadparm_service *service,
1179                     const char *pszParmValue, char **ptr)
1180 {
1181         if (lp_ctx->s3_fns == NULL) {
1182                 debug_set_logfile(pszParmValue);
1183         }
1184
1185         lpcfg_string_set(lp_ctx->globals->ctx, ptr, pszParmValue);
1186
1187         return true;
1188 }
1189
1190 /*
1191  * These special charset handling methods only run in the source3 code.
1192  */
1193
1194 bool handle_charset(struct loadparm_context *lp_ctx, struct loadparm_service *service,
1195                         const char *pszParmValue, char **ptr)
1196 {
1197         if (lp_ctx->s3_fns) {
1198                 if (*ptr == NULL || strcmp(*ptr, pszParmValue) != 0) {
1199                         global_iconv_handle = smb_iconv_handle_reinit(NULL,
1200                                                         lpcfg_dos_charset(lp_ctx),
1201                                                         lpcfg_unix_charset(lp_ctx),
1202                                                         true, global_iconv_handle);
1203                 }
1204
1205         }
1206         return lpcfg_string_set(lp_ctx->globals->ctx, ptr, pszParmValue);
1207
1208 }
1209
1210 bool handle_dos_charset(struct loadparm_context *lp_ctx, struct loadparm_service *service,
1211                         const char *pszParmValue, char **ptr)
1212 {
1213         bool is_utf8 = false;
1214         size_t len = strlen(pszParmValue);
1215
1216         if (lp_ctx->s3_fns) {
1217                 if (len == 4 || len == 5) {
1218                         /* Don't use StrCaseCmp here as we don't want to
1219                            initialize iconv. */
1220                         if ((toupper_m(pszParmValue[0]) == 'U') &&
1221                             (toupper_m(pszParmValue[1]) == 'T') &&
1222                             (toupper_m(pszParmValue[2]) == 'F')) {
1223                                 if (len == 4) {
1224                                         if (pszParmValue[3] == '8') {
1225                                                 is_utf8 = true;
1226                                         }
1227                                 } else {
1228                                         if (pszParmValue[3] == '-' &&
1229                                             pszParmValue[4] == '8') {
1230                                                 is_utf8 = true;
1231                                         }
1232                                 }
1233                         }
1234                 }
1235
1236                 if (*ptr == NULL || strcmp(*ptr, pszParmValue) != 0) {
1237                         if (is_utf8) {
1238                                 DEBUG(0,("ERROR: invalid DOS charset: 'dos charset' must not "
1239                                         "be UTF8, using (default value) %s instead.\n",
1240                                         DEFAULT_DOS_CHARSET));
1241                                 pszParmValue = DEFAULT_DOS_CHARSET;
1242                         }
1243                         global_iconv_handle = smb_iconv_handle_reinit(NULL,
1244                                                         lpcfg_dos_charset(lp_ctx),
1245                                                         lpcfg_unix_charset(lp_ctx),
1246                                                         true, global_iconv_handle);
1247                 }
1248         }
1249
1250         return lpcfg_string_set(lp_ctx->globals->ctx, ptr, pszParmValue);
1251 }
1252
1253 bool handle_printing(struct loadparm_context *lp_ctx, struct loadparm_service *service,
1254                             const char *pszParmValue, char **ptr)
1255 {
1256         static int parm_num = -1;
1257         struct loadparm_service *s;
1258
1259         if (parm_num == -1) {
1260                 parm_num = lpcfg_map_parameter("printing");
1261         }
1262
1263         if (!lp_set_enum_parm(&parm_table[parm_num], pszParmValue, (int*)ptr)) {
1264                 return false;
1265         }
1266
1267         if (lp_ctx->s3_fns) {
1268                 if (service == NULL) {
1269                         s = lp_ctx->sDefault;
1270                         lp_ctx->s3_fns->init_printer_values(lp_ctx, lp_ctx->globals->ctx, s);
1271                 } else {
1272                         s = service;
1273                         lp_ctx->s3_fns->init_printer_values(lp_ctx, s, s);
1274                 }
1275         }
1276
1277         return true;
1278 }
1279
1280 bool handle_ldap_debug_level(struct loadparm_context *lp_ctx, struct loadparm_service *service,
1281                              const char *pszParmValue, char **ptr)
1282 {
1283         lp_ctx->globals->ldap_debug_level = lp_int(pszParmValue);
1284
1285         if (lp_ctx->s3_fns) {
1286                 lp_ctx->s3_fns->init_ldap_debugging();
1287         }
1288         return true;
1289 }
1290
1291 bool handle_netbios_aliases(struct loadparm_context *lp_ctx, struct loadparm_service *service,
1292                             const char *pszParmValue, char **ptr)
1293 {
1294         TALLOC_FREE(lp_ctx->globals->netbios_aliases);
1295         lp_ctx->globals->netbios_aliases = (const char **)str_list_make_v3(lp_ctx->globals->ctx,
1296                                                                            pszParmValue, NULL);
1297
1298         if (lp_ctx->s3_fns) {
1299                 return lp_ctx->s3_fns->set_netbios_aliases(lp_ctx->globals->netbios_aliases);
1300         }
1301         return true;
1302 }
1303
1304 /*
1305  * idmap related parameters
1306  */
1307
1308 bool handle_idmap_backend(struct loadparm_context *lp_ctx, struct loadparm_service *service,
1309                           const char *pszParmValue, char **ptr)
1310 {
1311         if (lp_ctx->s3_fns) {
1312                 lp_do_parameter_parametric(lp_ctx, service, "idmap config * : backend",
1313                                            pszParmValue, 0);
1314         }
1315
1316         return lpcfg_string_set(lp_ctx->globals->ctx, ptr, pszParmValue);
1317 }
1318
1319 bool handle_idmap_uid(struct loadparm_context *lp_ctx, struct loadparm_service *service,
1320                       const char *pszParmValue, char **ptr)
1321 {
1322         if (lp_ctx->s3_fns) {
1323                 lp_do_parameter_parametric(lp_ctx, service, "idmap config * : range",
1324                                            pszParmValue, 0);
1325         }
1326
1327         return lpcfg_string_set(lp_ctx->globals->ctx, ptr, pszParmValue);
1328 }
1329
1330 bool handle_idmap_gid(struct loadparm_context *lp_ctx, struct loadparm_service *service,
1331                       const char *pszParmValue, char **ptr)
1332 {
1333         if (lp_ctx->s3_fns) {
1334                 lp_do_parameter_parametric(lp_ctx, service, "idmap config * : range",
1335                                            pszParmValue, 0);
1336         }
1337
1338         return lpcfg_string_set(lp_ctx->globals->ctx, ptr, pszParmValue);
1339 }
1340
1341 bool handle_smb_ports(struct loadparm_context *lp_ctx, struct loadparm_service *service,
1342                       const char *pszParmValue, char **ptr)
1343 {
1344         static int parm_num = -1;
1345         int i;
1346         const char **list;
1347
1348         if (!pszParmValue || !*pszParmValue) {
1349                 return false;
1350         }
1351
1352         if (parm_num == -1) {
1353                 parm_num = lpcfg_map_parameter("smb ports");
1354         }
1355
1356         if(!set_variable_helper(lp_ctx->globals->ctx, parm_num, ptr, "smb ports",
1357                                 pszParmValue)) {
1358                 return false;
1359         }
1360
1361         list = lp_ctx->globals->smb_ports;
1362         if (list == NULL) {
1363                 return false;
1364         }
1365
1366         /* Check that each port is a valid integer and within range */
1367         for (i = 0; list[i] != NULL; i++) {
1368                 char *end = NULL;
1369                 int port = 0;
1370                 port = strtol(list[i], &end, 10);
1371                 if (*end != '\0' || port <= 0 || port > 65535) {
1372                         TALLOC_FREE(list);
1373                         return false;
1374                 }
1375         }
1376
1377         return true;
1378 }
1379
1380 /***************************************************************************
1381  Initialise a copymap.
1382 ***************************************************************************/
1383
1384 void init_copymap(struct loadparm_service *pservice)
1385 {
1386         int i;
1387
1388         TALLOC_FREE(pservice->copymap);
1389
1390         pservice->copymap = bitmap_talloc(NULL, num_parameters());
1391         if (!pservice->copymap)
1392                 DEBUG(0,
1393                       ("Couldn't allocate copymap!! (size %d)\n",
1394                        (int)num_parameters()));
1395         else
1396                 for (i = 0; i < num_parameters(); i++)
1397                         bitmap_set(pservice->copymap, i);
1398 }
1399
1400 /**
1401  * Process a parametric option
1402  */
1403 static bool lp_do_parameter_parametric(struct loadparm_context *lp_ctx,
1404                                        struct loadparm_service *service,
1405                                        const char *pszParmName,
1406                                        const char *pszParmValue, int flags)
1407 {
1408         struct parmlist_entry **data;
1409         char *name;
1410         TALLOC_CTX *mem_ctx;
1411
1412         while (isspace((unsigned char)*pszParmName)) {
1413                 pszParmName++;
1414         }
1415
1416         name = strlower_talloc(lp_ctx, pszParmName);
1417         if (!name) return false;
1418
1419         if (service == NULL) {
1420                 data = &lp_ctx->globals->param_opt;
1421                 /**
1422                  * s3 code cannot deal with parametric options stored on the globals ctx.
1423                  */
1424                 if (lp_ctx->s3_fns != NULL) {
1425                         mem_ctx = NULL;
1426                 } else {
1427                         mem_ctx = lp_ctx->globals->ctx;
1428                 }
1429         } else {
1430                 data = &service->param_opt;
1431                 mem_ctx = service;
1432         }
1433
1434         set_param_opt(mem_ctx, data, name, pszParmValue, flags);
1435
1436         talloc_free(name);
1437
1438         return true;
1439 }
1440
1441 static bool set_variable_helper(TALLOC_CTX *mem_ctx, int parmnum, void *parm_ptr,
1442                          const char *pszParmName, const char *pszParmValue)
1443 {
1444         int i;
1445
1446         /* switch on the type of variable it is */
1447         switch (parm_table[parmnum].type)
1448         {
1449                 case P_BOOL: {
1450                         bool b;
1451                         if (!set_boolean(pszParmValue, &b)) {
1452                                 DEBUG(0, ("set_variable_helper(%s): value is not "
1453                                           "boolean!\n", pszParmValue));
1454                                 return false;
1455                         }
1456                         *(bool *)parm_ptr = b;
1457                         }
1458                         break;
1459
1460                 case P_BOOLREV: {
1461                         bool b;
1462                         if (!set_boolean(pszParmValue, &b)) {
1463                                 DEBUG(0, ("set_variable_helper(%s): value is not "
1464                                           "boolean!\n", pszParmValue));
1465                                 return false;
1466                         }
1467                         *(bool *)parm_ptr = !b;
1468                         }
1469                         break;
1470
1471                 case P_INTEGER:
1472                         *(int *)parm_ptr = lp_int(pszParmValue);
1473                         break;
1474
1475                 case P_CHAR:
1476                         *(char *)parm_ptr = *pszParmValue;
1477                         break;
1478
1479                 case P_OCTAL:
1480                         i = sscanf(pszParmValue, "%o", (int *)parm_ptr);
1481                         if ( i != 1 ) {
1482                                 DEBUG ( 0, ("Invalid octal number %s\n", pszParmName ));
1483                                 return false;
1484                         }
1485                         break;
1486
1487                 case P_BYTES:
1488                 {
1489                         uint64_t val;
1490                         if (conv_str_size_error(pszParmValue, &val)) {
1491                                 if (val <= INT_MAX) {
1492                                         *(int *)parm_ptr = (int)val;
1493                                         break;
1494                                 }
1495                         }
1496
1497                         DEBUG(0, ("set_variable_helper(%s): value is not "
1498                                   "a valid size specifier!\n", pszParmValue));
1499                         return false;
1500                 }
1501
1502                 case P_CMDLIST:
1503                         TALLOC_FREE(*(char ***)parm_ptr);
1504                         *(const char * const **)parm_ptr
1505                                 = (const char * const *)str_list_make_v3(mem_ctx,
1506                                                                          pszParmValue, NULL);
1507                         break;
1508
1509                 case P_LIST:
1510                 {
1511                         char **new_list = str_list_make_v3(mem_ctx,
1512                                                         pszParmValue, NULL);
1513                         if (new_list == NULL) {
1514                                 break;
1515                         }
1516
1517                         for (i=0; new_list[i]; i++) {
1518                                 if (*(const char ***)parm_ptr != NULL &&
1519                                     new_list[i][0] == '+' &&
1520                                     new_list[i][1])
1521                                 {
1522                                         if (!str_list_check(*(const char ***)parm_ptr,
1523                                                             &new_list[i][1])) {
1524                                                 *(const char ***)parm_ptr = str_list_add(*(const char ***)parm_ptr,
1525                                                                                          &new_list[i][1]);
1526                                         }
1527                                 } else if (*(const char ***)parm_ptr != NULL &&
1528                                            new_list[i][0] == '-' &&
1529                                            new_list[i][1])
1530                                 {
1531                                         str_list_remove(*(const char ***)parm_ptr,
1532                                                         &new_list[i][1]);
1533                                 } else {
1534                                         if (i != 0) {
1535                                                 DEBUG(0, ("Unsupported list syntax for: %s = %s\n",
1536                                                           pszParmName, pszParmValue));
1537                                                 return false;
1538                                         }
1539                                         *(const char * const **)parm_ptr = (const char * const *) new_list;
1540                                         break;
1541                                 }
1542                         }
1543                         break;
1544                 }
1545
1546                 case P_STRING:
1547                         lpcfg_string_set(mem_ctx, (char **)parm_ptr, pszParmValue);
1548                         break;
1549
1550                 case P_USTRING:
1551                         lpcfg_string_set_upper(mem_ctx, (char **)parm_ptr, pszParmValue);
1552                         break;
1553
1554                 case P_ENUM:
1555                         if (!lp_set_enum_parm(&parm_table[parmnum], pszParmValue, (int*)parm_ptr)) {
1556                                 return false;
1557                         }
1558                         break;
1559
1560                 case P_SEP:
1561                         break;
1562         }
1563
1564         return true;
1565
1566 }
1567
1568 bool set_variable(TALLOC_CTX *mem_ctx, struct loadparm_service *service, int parmnum, void *parm_ptr,
1569                          const char *pszParmName, const char *pszParmValue,
1570                          struct loadparm_context *lp_ctx, bool on_globals)
1571 {
1572         int i;
1573         bool ok;
1574
1575         /* if it is a special case then go ahead */
1576         if (parm_table[parmnum].special) {
1577                 ok = parm_table[parmnum].special(lp_ctx, service, pszParmValue,
1578                                                   (char **)parm_ptr);
1579                 if (!ok) {
1580                         return false;
1581                 }
1582                 goto mark_non_default;
1583         }
1584
1585         ok = set_variable_helper(mem_ctx, parmnum, parm_ptr, pszParmName, pszParmValue);
1586
1587         if (!ok) {
1588                 return false;
1589         }
1590
1591 mark_non_default:
1592         if (on_globals && (lp_ctx->flags[parmnum] & FLAG_DEFAULT)) {
1593                 lp_ctx->flags[parmnum] &= ~FLAG_DEFAULT;
1594                 /* we have to also unset FLAG_DEFAULT on aliases */
1595                 for (i=parmnum-1;i>=0 && parm_table[i].offset == parm_table[parmnum].offset;i--) {
1596                         lp_ctx->flags[i] &= ~FLAG_DEFAULT;
1597                 }
1598                 for (i=parmnum+1;i<num_parameters() && parm_table[i].offset == parm_table[parmnum].offset;i++) {
1599                         lp_ctx->flags[i] &= ~FLAG_DEFAULT;
1600                 }
1601         }
1602         return true;
1603 }
1604
1605
1606 bool lpcfg_do_global_parameter(struct loadparm_context *lp_ctx,
1607                                const char *pszParmName, const char *pszParmValue)
1608 {
1609         int parmnum = lpcfg_map_parameter(pszParmName);
1610         void *parm_ptr;
1611
1612         if (parmnum < 0) {
1613                 if (strchr(pszParmName, ':')) {
1614                         return lp_do_parameter_parametric(lp_ctx, NULL, pszParmName, pszParmValue, 0);
1615                 }
1616                 DEBUG(0, ("Ignoring unknown parameter \"%s\"\n", pszParmName));
1617                 return true;
1618         }
1619
1620         /* if the flag has been set on the command line, then don't allow override,
1621            but don't report an error */
1622         if (lp_ctx->flags[parmnum] & FLAG_CMDLINE) {
1623                 return true;
1624         }
1625
1626         if (parm_table[parmnum].flags & FLAG_DEPRECATED) {
1627                 DEBUG(1, ("WARNING: The \"%s\" option is deprecated\n",
1628                           pszParmName));
1629         }
1630
1631         parm_ptr = lpcfg_parm_ptr(lp_ctx, NULL, &parm_table[parmnum]);
1632
1633         return set_variable(lp_ctx->globals->ctx, NULL, parmnum, parm_ptr,
1634                             pszParmName, pszParmValue, lp_ctx, true);
1635 }
1636
1637 bool lpcfg_do_service_parameter(struct loadparm_context *lp_ctx,
1638                                 struct loadparm_service *service,
1639                                 const char *pszParmName, const char *pszParmValue)
1640 {
1641         void *parm_ptr;
1642         int i;
1643         int parmnum = lpcfg_map_parameter(pszParmName);
1644
1645         if (parmnum < 0) {
1646                 if (strchr(pszParmName, ':')) {
1647                         return lp_do_parameter_parametric(lp_ctx, service, pszParmName, pszParmValue, 0);
1648                 }
1649                 DEBUG(0, ("Ignoring unknown parameter \"%s\"\n", pszParmName));
1650                 return true;
1651         }
1652
1653         /* if the flag has been set on the command line, then don't allow override,
1654            but don't report an error */
1655         if (lp_ctx->flags[parmnum] & FLAG_CMDLINE) {
1656                 return true;
1657         }
1658
1659         if (parm_table[parmnum].flags & FLAG_DEPRECATED) {
1660                 DEBUG(1, ("WARNING: The \"%s\" option is deprecated\n",
1661                           pszParmName));
1662         }
1663
1664         if (parm_table[parmnum].p_class == P_GLOBAL) {
1665                 DEBUG(0,
1666                       ("Global parameter %s found in service section!\n",
1667                        pszParmName));
1668                 return true;
1669         }
1670         parm_ptr = ((char *)service) + parm_table[parmnum].offset;
1671
1672         if (!service->copymap)
1673                 init_copymap(service);
1674
1675         /* this handles the aliases - set the copymap for other
1676          * entries with the same data pointer */
1677         for (i = 0; parm_table[i].label; i++)
1678                 if (parm_table[i].offset == parm_table[parmnum].offset &&
1679                     parm_table[i].p_class == parm_table[parmnum].p_class)
1680                         bitmap_clear(service->copymap, i);
1681
1682         return set_variable(service, service, parmnum, parm_ptr, pszParmName,
1683                             pszParmValue, lp_ctx, false);
1684 }
1685
1686 /**
1687  * Process a parameter.
1688  */
1689
1690 bool lpcfg_do_parameter(const char *pszParmName, const char *pszParmValue,
1691                          void *userdata)
1692 {
1693         struct loadparm_context *lp_ctx = (struct loadparm_context *)userdata;
1694
1695         if (lp_ctx->bInGlobalSection)
1696                 return lpcfg_do_global_parameter(lp_ctx, pszParmName,
1697                                               pszParmValue);
1698         else
1699                 return lpcfg_do_service_parameter(lp_ctx, lp_ctx->currentService,
1700                                                   pszParmName, pszParmValue);
1701 }
1702
1703 /*
1704   variable argument do parameter
1705 */
1706 bool lpcfg_do_global_parameter_var(struct loadparm_context *lp_ctx, const char *pszParmName, const char *fmt, ...) PRINTF_ATTRIBUTE(3, 4);
1707 bool lpcfg_do_global_parameter_var(struct loadparm_context *lp_ctx,
1708                                 const char *pszParmName, const char *fmt, ...)
1709 {
1710         char *s;
1711         bool ret;
1712         va_list ap;
1713
1714         va_start(ap, fmt);
1715         s = talloc_vasprintf(NULL, fmt, ap);
1716         va_end(ap);
1717         ret = lpcfg_do_global_parameter(lp_ctx, pszParmName, s);
1718         talloc_free(s);
1719         return ret;
1720 }
1721
1722
1723 /*
1724   set a parameter from the commandline - this is called from command line parameter
1725   parsing code. It sets the parameter then marks the parameter as unable to be modified
1726   by smb.conf processing
1727 */
1728 bool lpcfg_set_cmdline(struct loadparm_context *lp_ctx, const char *pszParmName,
1729                        const char *pszParmValue)
1730 {
1731         int parmnum;
1732         int i;
1733
1734         while (isspace((unsigned char)*pszParmValue)) pszParmValue++;
1735
1736         parmnum = lpcfg_map_parameter(pszParmName);
1737
1738         if (parmnum < 0 && strchr(pszParmName, ':')) {
1739                 /* set a parametric option */
1740                 bool ok;
1741                 ok = lp_do_parameter_parametric(lp_ctx, NULL, pszParmName,
1742                                                 pszParmValue, FLAG_CMDLINE);
1743                 if (lp_ctx->s3_fns != NULL) {
1744                         if (ok) {
1745                                 lp_ctx->s3_fns->store_cmdline(pszParmName, pszParmValue);
1746                         }
1747                 }
1748                 return ok;
1749         }
1750
1751         if (parmnum < 0) {
1752                 DEBUG(0,("Unknown option '%s'\n", pszParmName));
1753                 return false;
1754         }
1755
1756         /* reset the CMDLINE flag in case this has been called before */
1757         lp_ctx->flags[parmnum] &= ~FLAG_CMDLINE;
1758
1759         if (lp_ctx->s3_fns != NULL) {
1760                 if (!lp_ctx->s3_fns->lp_do_parameter(-1, pszParmName, pszParmValue)) {
1761                         return false;
1762                 }
1763         } else {
1764                 if (!lpcfg_do_global_parameter(lp_ctx, pszParmName, pszParmValue)) {
1765                         return false;
1766                 }
1767         }
1768
1769         lp_ctx->flags[parmnum] |= FLAG_CMDLINE;
1770
1771         /* we have to also set FLAG_CMDLINE on aliases */
1772         for (i=parmnum-1;
1773              i>=0 && parm_table[i].p_class == parm_table[parmnum].p_class &&
1774              parm_table[i].offset == parm_table[parmnum].offset;
1775              i--) {
1776                 lp_ctx->flags[i] |= FLAG_CMDLINE;
1777         }
1778         for (i=parmnum+1;
1779              i<num_parameters() &&
1780              parm_table[i].p_class == parm_table[parmnum].p_class &&
1781              parm_table[i].offset == parm_table[parmnum].offset;
1782              i++) {
1783                 lp_ctx->flags[i] |= FLAG_CMDLINE;
1784         }
1785
1786         if (lp_ctx->s3_fns != NULL) {
1787                 lp_ctx->s3_fns->store_cmdline(pszParmName, pszParmValue);
1788         }
1789
1790         return true;
1791 }
1792
1793 /*
1794   set a option from the commandline in 'a=b' format. Use to support --option
1795 */
1796 bool lpcfg_set_option(struct loadparm_context *lp_ctx, const char *option)
1797 {
1798         char *p, *s;
1799         bool ret;
1800
1801         s = talloc_strdup(NULL, option);
1802         if (!s) {
1803                 return false;
1804         }
1805
1806         p = strchr(s, '=');
1807         if (!p) {
1808                 talloc_free(s);
1809                 return false;
1810         }
1811
1812         *p = 0;
1813
1814         ret = lpcfg_set_cmdline(lp_ctx, s, p+1);
1815         talloc_free(s);
1816         return ret;
1817 }
1818
1819
1820 #define BOOLSTR(b) ((b) ? "Yes" : "No")
1821
1822 /**
1823  * Print a parameter of the specified type.
1824  */
1825
1826 void lpcfg_print_parameter(struct parm_struct *p, void *ptr, FILE * f)
1827 {
1828         /* For the seperation of lists values that we print below */
1829         const char *list_sep = ", ";
1830         int i;
1831         switch (p->type)
1832         {
1833                 case P_ENUM:
1834                         for (i = 0; p->enum_list[i].name; i++) {
1835                                 if (*(int *)ptr == p->enum_list[i].value) {
1836                                         fprintf(f, "%s",
1837                                                 p->enum_list[i].name);
1838                                         break;
1839                                 }
1840                         }
1841                         break;
1842
1843                 case P_BOOL:
1844                         fprintf(f, "%s", BOOLSTR(*(bool *)ptr));
1845                         break;
1846
1847                 case P_BOOLREV:
1848                         fprintf(f, "%s", BOOLSTR(!*(bool *)ptr));
1849                         break;
1850
1851                 case P_INTEGER:
1852                 case P_BYTES:
1853                         fprintf(f, "%d", *(int *)ptr);
1854                         break;
1855
1856                 case P_CHAR:
1857                         fprintf(f, "%c", *(char *)ptr);
1858                         break;
1859
1860                 case P_OCTAL: {
1861                         int val = *(int *)ptr; 
1862                         if (val == -1) {
1863                                 fprintf(f, "-1");
1864                         } else {
1865                                 fprintf(f, "0%03o", val);
1866                         }
1867                         break;
1868                 }
1869
1870                 case P_CMDLIST:
1871                         list_sep = " ";
1872                         /* fall through */
1873                 case P_LIST:
1874                         if ((char ***)ptr && *(char ***)ptr) {
1875                                 char **list = *(char ***)ptr;
1876                                 for (; *list; list++) {
1877                                         /* surround strings with whitespace in double quotes */
1878                                         if (*(list+1) == NULL) {
1879                                                 /* last item, no extra separator */
1880                                                 list_sep = "";
1881                                         }
1882                                         if ( strchr_m( *list, ' ' ) ) {
1883                                                 fprintf(f, "\"%s\"%s", *list, list_sep);
1884                                         } else {
1885                                                 fprintf(f, "%s%s", *list, list_sep);
1886                                         }
1887                                 }
1888                         }
1889                         break;
1890
1891                 case P_STRING:
1892                 case P_USTRING:
1893                         if (*(char **)ptr) {
1894                                 fprintf(f, "%s", *(char **)ptr);
1895                         }
1896                         break;
1897                 case P_SEP:
1898                         break;
1899         }
1900 }
1901
1902 /**
1903  * Check if two parameters are equal.
1904  */
1905
1906 static bool lpcfg_equal_parameter(parm_type type, void *ptr1, void *ptr2)
1907 {
1908         switch (type) {
1909                 case P_BOOL:
1910                 case P_BOOLREV:
1911                         return (*((bool *)ptr1) == *((bool *)ptr2));
1912
1913                 case P_INTEGER:
1914                 case P_ENUM:
1915                 case P_OCTAL:
1916                 case P_BYTES:
1917                         return (*((int *)ptr1) == *((int *)ptr2));
1918
1919                 case P_CHAR:
1920                         return (*((char *)ptr1) == *((char *)ptr2));
1921
1922                 case P_LIST:
1923                 case P_CMDLIST:
1924                         return str_list_equal(*(const char ***)ptr1, *(const char ***)ptr2);
1925
1926                 case P_STRING:
1927                 case P_USTRING:
1928                 {
1929                         char *p1 = *(char **)ptr1, *p2 = *(char **)ptr2;
1930                         if (p1 && !*p1)
1931                                 p1 = NULL;
1932                         if (p2 && !*p2)
1933                                 p2 = NULL;
1934                         return (p1 == p2 || strequal(p1, p2));
1935                 }
1936                 case P_SEP:
1937                         break;
1938         }
1939         return false;
1940 }
1941
1942 /**
1943  * Process a new section (service).
1944  *
1945  * At this stage all sections are services.
1946  * Later we'll have special sections that permit server parameters to be set.
1947  * Returns True on success, False on failure.
1948  */
1949
1950 static bool do_section(const char *pszSectionName, void *userdata)
1951 {
1952         struct loadparm_context *lp_ctx = (struct loadparm_context *)userdata;
1953         bool bRetval;
1954         bool isglobal;
1955
1956         if (lp_ctx->s3_fns != NULL) {
1957                 return lp_ctx->s3_fns->do_section(pszSectionName, lp_ctx);
1958         }
1959
1960         isglobal = ((strwicmp(pszSectionName, GLOBAL_NAME) == 0) ||
1961                          (strwicmp(pszSectionName, GLOBAL_NAME2) == 0));
1962
1963         bRetval = false;
1964
1965         /* if we've just struck a global section, note the fact. */
1966         lp_ctx->bInGlobalSection = isglobal;
1967
1968         /* check for multiple global sections */
1969         if (lp_ctx->bInGlobalSection) {
1970                 DEBUG(4, ("Processing section \"[%s]\"\n", pszSectionName));
1971                 return true;
1972         }
1973
1974         /* if we have a current service, tidy it up before moving on */
1975         bRetval = true;
1976
1977         if (lp_ctx->currentService != NULL)
1978                 bRetval = lpcfg_service_ok(lp_ctx->currentService);
1979
1980         /* if all is still well, move to the next record in the services array */
1981         if (bRetval) {
1982                 /* We put this here to avoid an odd message order if messages are */
1983                 /* issued by the post-processing of a previous section. */
1984                 DEBUG(4, ("Processing section \"[%s]\"\n", pszSectionName));
1985
1986                 if ((lp_ctx->currentService = lpcfg_add_service(lp_ctx, lp_ctx->sDefault,
1987                                                                    pszSectionName))
1988                     == NULL) {
1989                         DEBUG(0, ("Failed to add a new service\n"));
1990                         return false;
1991                 }
1992         }
1993
1994         return bRetval;
1995 }
1996
1997
1998 /**
1999  * Determine if a particular base parameter is currently set to the default value.
2000  */
2001
2002 static bool is_default(void *base_structure, int i)
2003 {
2004         void *def_ptr = ((char *)base_structure) + parm_table[i].offset;
2005         switch (parm_table[i].type) {
2006                 case P_CMDLIST:
2007                 case P_LIST:
2008                         return str_list_equal((const char * const *)parm_table[i].def.lvalue,
2009                                               *(const char ***)def_ptr);
2010                 case P_STRING:
2011                 case P_USTRING:
2012                         return strequal(parm_table[i].def.svalue,
2013                                         *(char **)def_ptr);
2014                 case P_BOOL:
2015                 case P_BOOLREV:
2016                         return parm_table[i].def.bvalue ==
2017                                 *(bool *)def_ptr;
2018                 case P_INTEGER:
2019                 case P_CHAR:
2020                 case P_OCTAL:
2021                 case P_BYTES:
2022                 case P_ENUM:
2023                         return parm_table[i].def.ivalue ==
2024                                 *(int *)def_ptr;
2025                 case P_SEP:
2026                         break;
2027         }
2028         return false;
2029 }
2030
2031 /**
2032  *Display the contents of the global structure.
2033  */
2034
2035 void lpcfg_dump_globals(struct loadparm_context *lp_ctx, FILE *f,
2036                          bool show_defaults)
2037 {
2038         int i;
2039         struct parmlist_entry *data;
2040
2041         fprintf(f, "# Global parameters\n[global]\n");
2042
2043         for (i = 0; parm_table[i].label; i++)
2044                 if (parm_table[i].p_class == P_GLOBAL &&
2045                     (i == 0 || (parm_table[i].offset != parm_table[i - 1].offset))) {
2046                         if (!show_defaults) {
2047                                 if (lp_ctx->flags && (lp_ctx->flags[i] & FLAG_DEFAULT)) {
2048                                         continue;
2049                                 }
2050
2051                                 if (is_default(lp_ctx->globals, i)) {
2052                                         continue;
2053                                 }
2054                         }
2055
2056                         fprintf(f, "\t%s = ", parm_table[i].label);
2057                         lpcfg_print_parameter(&parm_table[i], lpcfg_parm_ptr(lp_ctx, NULL, &parm_table[i]), f);
2058                         fprintf(f, "\n");
2059         }
2060         if (lp_ctx->globals->param_opt != NULL) {
2061                 for (data = lp_ctx->globals->param_opt; data;
2062                      data = data->next) {
2063                         if (!show_defaults && (data->priority & FLAG_DEFAULT)) {
2064                                 continue;
2065                         }
2066                         fprintf(f, "\t%s = %s\n", data->key, data->value);
2067                 }
2068         }
2069
2070 }
2071
2072 /**
2073  * Display the contents of a single services record.
2074  */
2075
2076 void lpcfg_dump_a_service(struct loadparm_service * pService, struct loadparm_service *sDefault, FILE * f,
2077                           unsigned int *flags, bool show_defaults)
2078 {
2079         int i;
2080         struct parmlist_entry *data;
2081
2082         if (pService != sDefault)
2083                 fprintf(f, "\n[%s]\n", pService->szService);
2084
2085         for (i = 0; parm_table[i].label; i++) {
2086                 if (parm_table[i].p_class == P_LOCAL &&
2087                     (*parm_table[i].label != '-') &&
2088                     (i == 0 || (parm_table[i].offset != parm_table[i - 1].offset)))
2089                 {
2090                         if (pService == sDefault) {
2091                                 if (flags && (flags[i] & FLAG_DEFAULT)) {
2092                                         continue;
2093                                 }
2094                                 if (!show_defaults) {
2095                                         if (is_default(sDefault, i)) {
2096                                                 continue;
2097                                         }
2098                                 }
2099                         } else {
2100                                 if (lpcfg_equal_parameter(parm_table[i].type,
2101                                                           ((char *)pService) +
2102                                                           parm_table[i].offset,
2103                                                           ((char *)sDefault) +
2104                                                           parm_table[i].offset))
2105                                         continue;
2106                         }
2107
2108                         fprintf(f, "\t%s = ", parm_table[i].label);
2109                         lpcfg_print_parameter(&parm_table[i],
2110                                         ((char *)pService) + parm_table[i].offset, f);
2111                         fprintf(f, "\n");
2112                 }
2113         }
2114         if (pService->param_opt != NULL) {
2115                 for (data = pService->param_opt; data; data = data->next) {
2116                         if (!show_defaults && (data->priority & FLAG_DEFAULT)) {
2117                                 continue;
2118                         }
2119                         fprintf(f, "\t%s = %s\n", data->key, data->value);
2120                 }
2121         }
2122 }
2123
2124 bool lpcfg_dump_a_parameter(struct loadparm_context *lp_ctx,
2125                             struct loadparm_service *service,
2126                             const char *parm_name, FILE * f)
2127 {
2128         struct parm_struct *parm;
2129         void *ptr;
2130         char *local_parm_name;
2131         char *parm_opt;
2132         const char *parm_opt_value;
2133
2134         /* check for parametrical option */
2135         local_parm_name = talloc_strdup(lp_ctx, parm_name);
2136         if (local_parm_name == NULL) {
2137                 return false;
2138         }
2139
2140         parm_opt = strchr( local_parm_name, ':');
2141
2142         if (parm_opt) {
2143                 *parm_opt = '\0';
2144                 parm_opt++;
2145                 if (strlen(parm_opt)) {
2146                         parm_opt_value = lpcfg_parm_string(lp_ctx, service,
2147                                 local_parm_name, parm_opt);
2148                         if (parm_opt_value) {
2149                                 fprintf(f, "%s\n", parm_opt_value);
2150                                 return true;
2151                         }
2152                 }
2153                 return false;
2154         }
2155
2156         /* parameter is not parametric, search the table */
2157         parm = lpcfg_parm_struct(lp_ctx, parm_name);
2158         if (!parm) {
2159                 return false;
2160         }
2161
2162         if (service != NULL && parm->p_class == P_GLOBAL) {
2163                 return false;
2164         }
2165
2166         ptr = lpcfg_parm_ptr(lp_ctx, service,parm);
2167
2168         lpcfg_print_parameter(parm, ptr, f);
2169         fprintf(f, "\n");
2170         return true;
2171 }
2172
2173 /**
2174  * Auto-load some home services.
2175  */
2176 static void lpcfg_add_auto_services(struct loadparm_context *lp_ctx,
2177                                     const char *str)
2178 {
2179         return;
2180 }
2181
2182 /***************************************************************************
2183  Initialise the sDefault parameter structure for the printer values.
2184 ***************************************************************************/
2185
2186 void init_printer_values(struct loadparm_context *lp_ctx, TALLOC_CTX *ctx,
2187                          struct loadparm_service *pService)
2188 {
2189         /* choose defaults depending on the type of printing */
2190         switch (pService->printing) {
2191                 case PRINT_BSD:
2192                 case PRINT_AIX:
2193                 case PRINT_LPRNT:
2194                 case PRINT_LPROS2:
2195                         lpcfg_string_set(ctx, &pService->lpq_command, "lpq -P'%p'");
2196                         lpcfg_string_set(ctx, &pService->lprm_command, "lprm -P'%p' %j");
2197                         lpcfg_string_set(ctx, &pService->print_command, "lpr -r -P'%p' %s");
2198                         break;
2199
2200                 case PRINT_LPRNG:
2201                 case PRINT_PLP:
2202                         lpcfg_string_set(ctx, &pService->lpq_command, "lpq -P'%p'");
2203                         lpcfg_string_set(ctx, &pService->lprm_command, "lprm -P'%p' %j");
2204                         lpcfg_string_set(ctx, &pService->print_command, "lpr -r -P'%p' %s");
2205                         lpcfg_string_set(ctx, &pService->queuepause_command, "lpc stop '%p'");
2206                         lpcfg_string_set(ctx, &pService->queueresume_command, "lpc start '%p'");
2207                         lpcfg_string_set(ctx, &pService->lppause_command, "lpc hold '%p' %j");
2208                         lpcfg_string_set(ctx, &pService->lpresume_command, "lpc release '%p' %j");
2209                         break;
2210
2211                 case PRINT_CUPS:
2212                 case PRINT_IPRINT:
2213                         /* set the lpq command to contain the destination printer
2214                            name only.  This is used by cups_queue_get() */
2215                         lpcfg_string_set(ctx, &pService->lpq_command, "%p");
2216                         lpcfg_string_set(ctx, &pService->lprm_command, "");
2217                         lpcfg_string_set(ctx, &pService->print_command, "");
2218                         lpcfg_string_set(ctx, &pService->lppause_command, "");
2219                         lpcfg_string_set(ctx, &pService->lpresume_command, "");
2220                         lpcfg_string_set(ctx, &pService->queuepause_command, "");
2221                         lpcfg_string_set(ctx, &pService->queueresume_command, "");
2222                         break;
2223
2224                 case PRINT_SYSV:
2225                 case PRINT_HPUX:
2226                         lpcfg_string_set(ctx, &pService->lpq_command, "lpstat -o%p");
2227                         lpcfg_string_set(ctx, &pService->lprm_command, "cancel %p-%j");
2228                         lpcfg_string_set(ctx, &pService->print_command, "lp -c -d%p %s; rm %s");
2229                         lpcfg_string_set(ctx, &pService->queuepause_command, "disable %p");
2230                         lpcfg_string_set(ctx, &pService->queueresume_command, "enable %p");
2231 #ifndef HPUX
2232                         lpcfg_string_set(ctx, &pService->lppause_command, "lp -i %p-%j -H hold");
2233                         lpcfg_string_set(ctx, &pService->lpresume_command, "lp -i %p-%j -H resume");
2234 #endif /* HPUX */
2235                         break;
2236
2237                 case PRINT_QNX:
2238                         lpcfg_string_set(ctx, &pService->lpq_command, "lpq -P%p");
2239                         lpcfg_string_set(ctx, &pService->lprm_command, "lprm -P%p %j");
2240                         lpcfg_string_set(ctx, &pService->print_command, "lp -r -P%p %s");
2241                         break;
2242
2243 #if defined(DEVELOPER) || defined(ENABLE_SELFTEST)
2244
2245         case PRINT_TEST:
2246         case PRINT_VLP: {
2247                 const char *tdbfile;
2248                 TALLOC_CTX *tmp_ctx = talloc_new(ctx);
2249                 const char *tmp;
2250
2251                 tmp = lpcfg_parm_string(lp_ctx, NULL, "vlp", "tdbfile");
2252                 if (tmp == NULL) {
2253                         tmp = "/tmp/vlp.tdb";
2254                 }
2255
2256                 tdbfile = talloc_asprintf(tmp_ctx, "tdbfile=%s", tmp);
2257                 if (tdbfile == NULL) {
2258                         tdbfile="tdbfile=/tmp/vlp.tdb";
2259                 }
2260
2261                 tmp = talloc_asprintf(tmp_ctx, "vlp %s print %%p %%s",
2262                                       tdbfile);
2263                 lpcfg_string_set(ctx, &pService->print_command,
2264                            tmp ? tmp : "vlp print %p %s");
2265
2266                 tmp = talloc_asprintf(tmp_ctx, "vlp %s lpq %%p",
2267                                       tdbfile);
2268                 lpcfg_string_set(ctx, &pService->lpq_command,
2269                            tmp ? tmp : "vlp lpq %p");
2270
2271                 tmp = talloc_asprintf(tmp_ctx, "vlp %s lprm %%p %%j",
2272                                       tdbfile);
2273                 lpcfg_string_set(ctx, &pService->lprm_command,
2274                            tmp ? tmp : "vlp lprm %p %j");
2275
2276                 tmp = talloc_asprintf(tmp_ctx, "vlp %s lppause %%p %%j",
2277                                       tdbfile);
2278                 lpcfg_string_set(ctx, &pService->lppause_command,
2279                            tmp ? tmp : "vlp lppause %p %j");
2280
2281                 tmp = talloc_asprintf(tmp_ctx, "vlp %s lpresume %%p %%j",
2282                                       tdbfile);
2283                 lpcfg_string_set(ctx, &pService->lpresume_command,
2284                            tmp ? tmp : "vlp lpresume %p %j");
2285
2286                 tmp = talloc_asprintf(tmp_ctx, "vlp %s queuepause %%p",
2287                                       tdbfile);
2288                 lpcfg_string_set(ctx, &pService->queuepause_command,
2289                            tmp ? tmp : "vlp queuepause %p");
2290
2291                 tmp = talloc_asprintf(tmp_ctx, "vlp %s queueresume %%p",
2292                                       tdbfile);
2293                 lpcfg_string_set(ctx, &pService->queueresume_command,
2294                            tmp ? tmp : "vlp queueresume %p");
2295                 TALLOC_FREE(tmp_ctx);
2296
2297                 break;
2298         }
2299 #endif /* DEVELOPER */
2300
2301         }
2302 }
2303
2304 /**
2305  * Unload unused services.
2306  */
2307
2308 void lpcfg_killunused(struct loadparm_context *lp_ctx,
2309                    struct smbsrv_connection *smb,
2310                    bool (*snumused) (struct smbsrv_connection *, int))
2311 {
2312         int i;
2313         for (i = 0; i < lp_ctx->iNumServices; i++) {
2314                 if (lp_ctx->services[i] == NULL)
2315                         continue;
2316
2317                 if (!snumused || !snumused(smb, i)) {
2318                         talloc_free(lp_ctx->services[i]);
2319                         lp_ctx->services[i] = NULL;
2320                 }
2321         }
2322 }
2323
2324
2325 static int lpcfg_destructor(struct loadparm_context *lp_ctx)
2326 {
2327         struct parmlist_entry *data;
2328
2329         if (lp_ctx->refuse_free) {
2330                 /* someone is trying to free the
2331                    global_loadparm_context.
2332                    We can't allow that. */
2333                 return -1;
2334         }
2335
2336         if (lp_ctx->globals->param_opt != NULL) {
2337                 struct parmlist_entry *next;
2338                 for (data = lp_ctx->globals->param_opt; data; data=next) {
2339                         next = data->next;
2340                         if (data->priority & FLAG_CMDLINE) continue;
2341                         DLIST_REMOVE(lp_ctx->globals->param_opt, data);
2342                         talloc_free(data);
2343                 }
2344         }
2345
2346         return 0;
2347 }
2348
2349 /**
2350  * Initialise the global parameter structure.
2351  *
2352  * Note that most callers should use loadparm_init_global() instead
2353  */
2354 struct loadparm_context *loadparm_init(TALLOC_CTX *mem_ctx)
2355 {
2356         int i;
2357         char *myname;
2358         struct loadparm_context *lp_ctx;
2359         struct parmlist_entry *parm;
2360         char *logfile;
2361
2362         lp_ctx = talloc_zero(mem_ctx, struct loadparm_context);
2363         if (lp_ctx == NULL)
2364                 return NULL;
2365
2366         talloc_set_destructor(lp_ctx, lpcfg_destructor);
2367         lp_ctx->bInGlobalSection = true;
2368         lp_ctx->globals = talloc_zero(lp_ctx, struct loadparm_global);
2369         /* This appears odd, but globals in s3 isn't a pointer */
2370         lp_ctx->globals->ctx = lp_ctx->globals;
2371         lp_ctx->sDefault = talloc_zero(lp_ctx, struct loadparm_service);
2372         lp_ctx->flags = talloc_zero_array(lp_ctx, unsigned int, num_parameters());
2373
2374         lp_ctx->sDefault->iMaxPrintJobs = 1000;
2375         lp_ctx->sDefault->bAvailable = true;
2376         lp_ctx->sDefault->browseable = true;
2377         lp_ctx->sDefault->read_only = true;
2378         lp_ctx->sDefault->map_archive = true;
2379         lp_ctx->sDefault->strict_locking = true;
2380         lp_ctx->sDefault->oplocks = true;
2381         lp_ctx->sDefault->create_mask = 0744;
2382         lp_ctx->sDefault->force_create_mode = 0000;
2383         lp_ctx->sDefault->directory_mask = 0755;
2384         lp_ctx->sDefault->force_directory_mode = 0000;
2385
2386         DEBUG(3, ("Initialising global parameters\n"));
2387
2388         for (i = 0; parm_table[i].label; i++) {
2389                 if ((parm_table[i].type == P_STRING ||
2390                      parm_table[i].type == P_USTRING) &&
2391                     !(lp_ctx->flags[i] & FLAG_CMDLINE)) {
2392                         char **r;
2393                         if (parm_table[i].p_class == P_LOCAL) {
2394                                 r = (char **)(((char *)lp_ctx->sDefault) + parm_table[i].offset);
2395                         } else {
2396                                 r = (char **)(((char *)lp_ctx->globals) + parm_table[i].offset);
2397                         }
2398                         *r = talloc_strdup(lp_ctx, "");
2399                 }
2400         }
2401
2402         logfile = talloc_asprintf(lp_ctx, "%s/log.samba", dyn_LOGFILEBASE);
2403         lpcfg_do_global_parameter(lp_ctx, "log file", logfile);
2404         talloc_free(logfile);
2405
2406         lpcfg_do_global_parameter(lp_ctx, "log level", "0");
2407
2408         lpcfg_do_global_parameter(lp_ctx, "syslog", "1");
2409         lpcfg_do_global_parameter(lp_ctx, "syslog only", "No");
2410         lpcfg_do_global_parameter(lp_ctx, "debug timestamp", "Yes");
2411         lpcfg_do_global_parameter(lp_ctx, "debug prefix timestamp", "No");
2412         lpcfg_do_global_parameter(lp_ctx, "debug hires timestamp", "Yes");
2413         lpcfg_do_global_parameter(lp_ctx, "debug pid", "No");
2414         lpcfg_do_global_parameter(lp_ctx, "debug uid", "No");
2415         lpcfg_do_global_parameter(lp_ctx, "debug class", "No");
2416
2417         lpcfg_do_global_parameter(lp_ctx, "share backend", "classic");
2418
2419         lpcfg_do_global_parameter(lp_ctx, "server role", "auto");
2420         lpcfg_do_global_parameter(lp_ctx, "domain logons", "No");
2421         lpcfg_do_global_parameter(lp_ctx, "domain master", "Auto");
2422
2423         /* options that can be set on the command line must be initialised via
2424            the slower lpcfg_do_global_parameter() to ensure that FLAG_CMDLINE is obeyed */
2425 #ifdef TCP_NODELAY
2426         lpcfg_do_global_parameter(lp_ctx, "socket options", "TCP_NODELAY");
2427 #endif
2428         lpcfg_do_global_parameter(lp_ctx, "workgroup", DEFAULT_WORKGROUP);
2429         myname = get_myname(lp_ctx);
2430         lpcfg_do_global_parameter(lp_ctx, "netbios name", myname);
2431         talloc_free(myname);
2432         lpcfg_do_global_parameter(lp_ctx, "name resolve order", "lmhosts wins host bcast");
2433
2434         lpcfg_do_global_parameter(lp_ctx, "fstype", "NTFS");
2435
2436         lpcfg_do_global_parameter(lp_ctx, "ntvfs handler", "unixuid default");
2437         lpcfg_do_global_parameter(lp_ctx, "max connections", "0");
2438
2439         lpcfg_do_global_parameter(lp_ctx, "dcerpc endpoint servers", "epmapper wkssvc rpcecho samr netlogon lsarpc spoolss drsuapi dssetup unixinfo browser eventlog6 backupkey dnsserver");
2440         lpcfg_do_global_parameter(lp_ctx, "server services", "s3fs rpc nbt wrepl ldap cldap kdc drepl winbindd ntp_signd kcc dnsupdate dns");
2441         lpcfg_do_global_parameter(lp_ctx, "kccsrv:samba_kcc", "true");
2442         /* the winbind method for domain controllers is for both RODC
2443            auth forwarding and for trusted domains */
2444         lpcfg_do_global_parameter(lp_ctx, "private dir", dyn_PRIVATE_DIR);
2445         lpcfg_do_global_parameter(lp_ctx, "registry:HKEY_LOCAL_MACHINE", "hklm.ldb");
2446
2447         /* This hive should be dynamically generated by Samba using
2448            data from the sam, but for the moment leave it in a tdb to
2449            keep regedt32 from popping up an annoying dialog. */
2450         lpcfg_do_global_parameter(lp_ctx, "registry:HKEY_USERS", "hku.ldb");
2451
2452         /* using UTF8 by default allows us to support all chars */
2453         lpcfg_do_global_parameter(lp_ctx, "unix charset", "UTF-8");
2454
2455         /* Use codepage 850 as a default for the dos character set */
2456         lpcfg_do_global_parameter(lp_ctx, "dos charset", "CP850");
2457
2458         /*
2459          * Allow the default PASSWD_CHAT to be overridden in local.h.
2460          */
2461         lpcfg_do_global_parameter(lp_ctx, "passwd chat", DEFAULT_PASSWD_CHAT);
2462
2463         lpcfg_do_global_parameter(lp_ctx, "pid directory", dyn_PIDDIR);
2464         lpcfg_do_global_parameter(lp_ctx, "lock dir", dyn_LOCKDIR);
2465         lpcfg_do_global_parameter(lp_ctx, "state directory", dyn_STATEDIR);
2466         lpcfg_do_global_parameter(lp_ctx, "cache directory", dyn_CACHEDIR);
2467         lpcfg_do_global_parameter(lp_ctx, "ncalrpc dir", dyn_NCALRPCDIR);
2468
2469         lpcfg_do_global_parameter(lp_ctx, "nbt client socket address", "0.0.0.0");
2470         lpcfg_do_global_parameter_var(lp_ctx, "server string",
2471                                    "Samba %s", SAMBA_VERSION_STRING);
2472
2473         lpcfg_do_global_parameter(lp_ctx, "password server", "*");
2474
2475         lpcfg_do_global_parameter(lp_ctx, "max mux", "50");
2476         lpcfg_do_global_parameter(lp_ctx, "max xmit", "16644");
2477         lpcfg_do_global_parameter(lp_ctx, "host msdfs", "true");
2478
2479         lpcfg_do_global_parameter(lp_ctx, "LargeReadwrite", "True");
2480         lpcfg_do_global_parameter(lp_ctx, "server min protocol", "LANMAN1");
2481         lpcfg_do_global_parameter(lp_ctx, "server max protocol", "SMB3");
2482         lpcfg_do_global_parameter(lp_ctx, "client min protocol", "CORE");
2483         lpcfg_do_global_parameter(lp_ctx, "client max protocol", "NT1");
2484         lpcfg_do_global_parameter(lp_ctx, "security", "AUTO");
2485         lpcfg_do_global_parameter(lp_ctx, "EncryptPasswords", "True");
2486         lpcfg_do_global_parameter(lp_ctx, "ReadRaw", "True");
2487         lpcfg_do_global_parameter(lp_ctx, "WriteRaw", "True");
2488         lpcfg_do_global_parameter(lp_ctx, "NullPasswords", "False");
2489         lpcfg_do_global_parameter(lp_ctx, "old password allowed period", "60");
2490         lpcfg_do_global_parameter(lp_ctx, "ObeyPamRestrictions", "False");
2491
2492         lpcfg_do_global_parameter(lp_ctx, "TimeServer", "False");
2493         lpcfg_do_global_parameter(lp_ctx, "BindInterfacesOnly", "False");
2494         lpcfg_do_global_parameter(lp_ctx, "Unicode", "True");
2495         lpcfg_do_global_parameter(lp_ctx, "ClientLanManAuth", "False");
2496         lpcfg_do_global_parameter(lp_ctx, "ClientNTLMv2Auth", "True");
2497         lpcfg_do_global_parameter(lp_ctx, "LanmanAuth", "False");
2498         lpcfg_do_global_parameter(lp_ctx, "NTLMAuth", "True");
2499         lpcfg_do_global_parameter(lp_ctx, "client use spnego principal", "False");
2500
2501         lpcfg_do_global_parameter(lp_ctx, "UnixExtensions", "True");
2502
2503         lpcfg_do_global_parameter(lp_ctx, "PreferredMaster", "Auto");
2504         lpcfg_do_global_parameter(lp_ctx, "LocalMaster", "True");
2505
2506         lpcfg_do_global_parameter(lp_ctx, "wins support", "False");
2507         lpcfg_do_global_parameter(lp_ctx, "dns proxy", "True");
2508
2509         lpcfg_do_global_parameter(lp_ctx, "winbind separator", "\\");
2510         lpcfg_do_global_parameter(lp_ctx, "winbind sealed pipes", "True");
2511         lpcfg_do_global_parameter(lp_ctx, "require strong key", "True");
2512         lpcfg_do_global_parameter(lp_ctx, "winbindd socket directory", dyn_WINBINDD_SOCKET_DIR);
2513         lpcfg_do_global_parameter(lp_ctx, "winbindd privileged socket directory", dyn_WINBINDD_PRIVILEGED_SOCKET_DIR);
2514         lpcfg_do_global_parameter(lp_ctx, "ntp signd socket directory", dyn_NTP_SIGND_SOCKET_DIR);
2515         lpcfg_do_global_parameter_var(lp_ctx, "dns update command", "%s/samba_dnsupdate", dyn_SCRIPTSBINDIR);
2516         lpcfg_do_global_parameter_var(lp_ctx, "spn update command", "%s/samba_spnupdate", dyn_SCRIPTSBINDIR);
2517         lpcfg_do_global_parameter_var(lp_ctx, "samba kcc command",
2518                                         "%s/samba_kcc", dyn_SCRIPTSBINDIR);
2519         lpcfg_do_global_parameter(lp_ctx, "template shell", "/bin/false");
2520         lpcfg_do_global_parameter(lp_ctx, "template homedir", "/home/%D/%U");
2521
2522         lpcfg_do_global_parameter(lp_ctx, "client signing", "default");
2523         lpcfg_do_global_parameter(lp_ctx, "server signing", "default");
2524
2525         lpcfg_do_global_parameter(lp_ctx, "use spnego", "True");
2526
2527         lpcfg_do_global_parameter(lp_ctx, "use mmap", "True");
2528
2529         lpcfg_do_global_parameter(lp_ctx, "smb ports", "445 139");
2530         lpcfg_do_global_parameter(lp_ctx, "nbt port", "137");
2531         lpcfg_do_global_parameter(lp_ctx, "dgram port", "138");
2532         lpcfg_do_global_parameter(lp_ctx, "cldap port", "389");
2533         lpcfg_do_global_parameter(lp_ctx, "krb5 port", "88");
2534         lpcfg_do_global_parameter(lp_ctx, "kpasswd port", "464");
2535         lpcfg_do_global_parameter(lp_ctx, "web port", "901");
2536
2537         lpcfg_do_global_parameter(lp_ctx, "nt status support", "True");
2538
2539         lpcfg_do_global_parameter(lp_ctx, "max wins ttl", "518400"); /* 6 days */
2540         lpcfg_do_global_parameter(lp_ctx, "min wins ttl", "21600");
2541
2542         lpcfg_do_global_parameter(lp_ctx, "tls enabled", "True");
2543         lpcfg_do_global_parameter(lp_ctx, "tls keyfile", "tls/key.pem");
2544         lpcfg_do_global_parameter(lp_ctx, "tls certfile", "tls/cert.pem");
2545         lpcfg_do_global_parameter(lp_ctx, "tls cafile", "tls/ca.pem");
2546         lpcfg_do_global_parameter(lp_ctx, "prefork children:smb", "4");
2547
2548         lpcfg_do_global_parameter(lp_ctx, "rndc command", "/usr/sbin/rndc");
2549         lpcfg_do_global_parameter(lp_ctx, "nsupdate command", "/usr/bin/nsupdate -g");
2550
2551         lpcfg_do_global_parameter(lp_ctx, "allow dns updates", "secure only");
2552         lpcfg_do_global_parameter(lp_ctx, "dns forwarder", "");
2553
2554         lpcfg_do_global_parameter(lp_ctx, "algorithmic rid base", "1000");
2555
2556         lpcfg_do_global_parameter(lp_ctx, "enhanced browsing", "True");
2557
2558         lpcfg_do_global_parameter(lp_ctx, "winbind nss info", "template");
2559
2560         lpcfg_do_global_parameter(lp_ctx, "server schannel", "Auto");
2561
2562         lpcfg_do_global_parameter(lp_ctx, "short preserve case", "True");
2563
2564         lpcfg_do_global_parameter(lp_ctx, "max open files", "16384");
2565
2566         lpcfg_do_global_parameter(lp_ctx, "cups connection timeout", "30");
2567
2568         lpcfg_do_global_parameter(lp_ctx, "locking", "True");
2569
2570         lpcfg_do_global_parameter(lp_ctx, "block size", "1024");
2571
2572         lpcfg_do_global_parameter(lp_ctx, "client use spnego", "True");
2573
2574         lpcfg_do_global_parameter(lp_ctx, "change notify", "True");
2575
2576         lpcfg_do_global_parameter(lp_ctx, "name cache timeout", "660");
2577
2578         lpcfg_do_global_parameter(lp_ctx, "defer sharing violations", "True");
2579
2580         lpcfg_do_global_parameter(lp_ctx, "ldap replication sleep", "1000");
2581
2582         lpcfg_do_global_parameter(lp_ctx, "idmap backend", "tdb");
2583
2584         lpcfg_do_global_parameter(lp_ctx, "enable privileges", "True");
2585
2586         lpcfg_do_global_parameter_var(lp_ctx, "smb2 max write", "%u", DEFAULT_SMB2_MAX_WRITE);
2587
2588         lpcfg_do_global_parameter(lp_ctx, "passdb backend", "tdbsam");
2589
2590         lpcfg_do_global_parameter(lp_ctx, "getwd cache", "True");
2591
2592         lpcfg_do_global_parameter(lp_ctx, "winbind nested groups", "True");
2593
2594         lpcfg_do_global_parameter(lp_ctx, "mangled names", "True");
2595
2596         lpcfg_do_global_parameter_var(lp_ctx, "smb2 max credits", "%u", DEFAULT_SMB2_MAX_CREDITS);
2597
2598         lpcfg_do_global_parameter(lp_ctx, "ldap ssl", "start tls");
2599
2600         lpcfg_do_global_parameter(lp_ctx, "ldap deref", "auto");
2601
2602         lpcfg_do_global_parameter(lp_ctx, "lm interval", "60");
2603
2604         lpcfg_do_global_parameter(lp_ctx, "mangling method", "hash2");
2605
2606         lpcfg_do_global_parameter(lp_ctx, "hide dot files", "True");
2607
2608         lpcfg_do_global_parameter(lp_ctx, "browse list", "True");
2609
2610         lpcfg_do_global_parameter(lp_ctx, "passwd chat timeout", "2");
2611
2612         lpcfg_do_global_parameter(lp_ctx, "guest account", GUEST_ACCOUNT);
2613
2614         lpcfg_do_global_parameter(lp_ctx, "client schannel", "auto");
2615
2616         lpcfg_do_global_parameter(lp_ctx, "smb encrypt", "default");
2617
2618         lpcfg_do_global_parameter(lp_ctx, "max log size", "5000");
2619
2620         lpcfg_do_global_parameter(lp_ctx, "idmap negative cache time", "120");
2621
2622         lpcfg_do_global_parameter(lp_ctx, "ldap follow referral", "auto");
2623
2624         lpcfg_do_global_parameter(lp_ctx, "multicast dns register", "yes");
2625
2626         lpcfg_do_global_parameter(lp_ctx, "winbind reconnect delay", "30");
2627
2628         lpcfg_do_global_parameter(lp_ctx, "winbind request timeout", "60");
2629
2630         lpcfg_do_global_parameter(lp_ctx, "nt acl support", "yes");
2631
2632         lpcfg_do_global_parameter(lp_ctx, "acl check permissions", "yes");
2633
2634         lpcfg_do_global_parameter(lp_ctx, "keepalive", "300");
2635
2636         lpcfg_do_global_parameter(lp_ctx, "winbind cache time", "300");
2637
2638         lpcfg_do_global_parameter(lp_ctx, "level2 oplocks", "yes");
2639
2640         lpcfg_do_global_parameter(lp_ctx, "show add printer wizard", "yes");
2641
2642         lpcfg_do_global_parameter(lp_ctx, "allocation roundup size", "1048576");
2643
2644         lpcfg_do_global_parameter(lp_ctx, "ldap page size", "1024");
2645
2646         lpcfg_do_global_parameter(lp_ctx, "kernel share modes", "yes");
2647
2648         lpcfg_do_global_parameter(lp_ctx, "strict locking", "Auto");
2649
2650         lpcfg_do_global_parameter(lp_ctx, "map readonly", "yes");
2651
2652         lpcfg_do_global_parameter(lp_ctx, "allow trusted domains", "yes");
2653
2654         lpcfg_do_global_parameter(lp_ctx, "default devmode", "yes");
2655
2656         lpcfg_do_global_parameter(lp_ctx, "os level", "20");
2657
2658         lpcfg_do_global_parameter(lp_ctx, "dos filetimes", "yes");
2659
2660         lpcfg_do_global_parameter(lp_ctx, "mangling char", "~");
2661
2662         lpcfg_do_global_parameter(lp_ctx, "printcap cache time", "750");
2663
2664         lpcfg_do_global_parameter(lp_ctx, "create krb5 conf", "yes");
2665
2666         lpcfg_do_global_parameter(lp_ctx, "winbind max clients", "200");
2667
2668         lpcfg_do_global_parameter(lp_ctx, "acl map full control", "yes");
2669
2670         lpcfg_do_global_parameter(lp_ctx, "nt pipe support", "yes");
2671
2672         lpcfg_do_global_parameter(lp_ctx, "ldap debug threshold", "10");
2673
2674         lpcfg_do_global_parameter(lp_ctx, "follow symlinks", "yes");
2675
2676         lpcfg_do_global_parameter(lp_ctx, "machine password timeout", "604800");
2677
2678         lpcfg_do_global_parameter(lp_ctx, "ldap connection timeout", "2");
2679
2680         lpcfg_do_global_parameter(lp_ctx, "winbind expand groups", "1");
2681
2682         lpcfg_do_global_parameter(lp_ctx, "stat cache", "yes");
2683
2684         lpcfg_do_global_parameter(lp_ctx, "lpq cache time", "30");
2685
2686         lpcfg_do_global_parameter_var(lp_ctx, "smb2 max trans", "%u", DEFAULT_SMB2_MAX_TRANSACT);
2687
2688         lpcfg_do_global_parameter_var(lp_ctx, "smb2 max read", "%u", DEFAULT_SMB2_MAX_READ);
2689
2690         lpcfg_do_global_parameter(lp_ctx, "durable handles", "yes");
2691
2692         lpcfg_do_global_parameter(lp_ctx, "max stat cache size", "256");
2693
2694         lpcfg_do_global_parameter(lp_ctx, "ldap passwd sync", "no");
2695
2696         lpcfg_do_global_parameter(lp_ctx, "kernel change notify", "yes");
2697
2698         lpcfg_do_global_parameter(lp_ctx, "max ttl", "259200");
2699
2700         lpcfg_do_global_parameter(lp_ctx, "blocking locks", "yes");
2701
2702         lpcfg_do_global_parameter(lp_ctx, "oplock contention limit", "2");
2703
2704         lpcfg_do_global_parameter(lp_ctx, "load printers", "yes");
2705
2706         lpcfg_do_global_parameter(lp_ctx, "idmap cache time", "604800");
2707
2708         lpcfg_do_global_parameter(lp_ctx, "preserve case", "yes");
2709
2710         lpcfg_do_global_parameter(lp_ctx, "lm announce", "auto");
2711
2712         lpcfg_do_global_parameter(lp_ctx, "afs token lifetime", "604800");
2713
2714         lpcfg_do_global_parameter(lp_ctx, "enable core files", "yes");
2715
2716         lpcfg_do_global_parameter(lp_ctx, "winbind max domain connections", "1");
2717
2718         lpcfg_do_global_parameter(lp_ctx, "case sensitive", "auto");
2719
2720         lpcfg_do_global_parameter(lp_ctx, "ldap timeout", "15");
2721
2722         lpcfg_do_global_parameter(lp_ctx, "mangle prefix", "1");
2723
2724         lpcfg_do_global_parameter(lp_ctx, "posix locking", "yes");
2725
2726         lpcfg_do_global_parameter(lp_ctx, "lock spin time", "200");
2727
2728         lpcfg_do_global_parameter(lp_ctx, "directory name cache size", "100");
2729
2730         lpcfg_do_global_parameter(lp_ctx, "nmbd bind explicit broadcast", "yes");
2731
2732         lpcfg_do_global_parameter(lp_ctx, "init logon delay", "100");
2733
2734         lpcfg_do_global_parameter(lp_ctx, "usershare owner only", "yes");
2735
2736         lpcfg_do_global_parameter(lp_ctx, "-valid", "yes");
2737
2738         lpcfg_do_global_parameter_var(lp_ctx, "usershare path", "%s/usershares", get_dyn_STATEDIR());
2739
2740 #ifdef DEVELOPER
2741         lpcfg_do_global_parameter_var(lp_ctx, "panic action", "/bin/sleep 999999999");
2742 #endif
2743
2744         lpcfg_do_global_parameter(lp_ctx, "smb passwd file", get_dyn_SMB_PASSWD_FILE());
2745
2746         lpcfg_do_global_parameter(lp_ctx, "logon home", "\\\\%N\\%U");
2747
2748         lpcfg_do_global_parameter(lp_ctx, "logon path", "\\\\%N\\%U\\profile");
2749
2750         lpcfg_do_global_parameter(lp_ctx, "printjob username", "%U");
2751
2752         for (i = 0; parm_table[i].label; i++) {
2753                 if (!(lp_ctx->flags[i] & FLAG_CMDLINE)) {
2754                         lp_ctx->flags[i] |= FLAG_DEFAULT;
2755                 }
2756         }
2757
2758         for (parm=lp_ctx->globals->param_opt; parm; parm=parm->next) {
2759                 if (!(parm->priority & FLAG_CMDLINE)) {
2760                         parm->priority |= FLAG_DEFAULT;
2761                 }
2762         }
2763
2764         for (parm=lp_ctx->sDefault->param_opt; parm; parm=parm->next) {
2765                 if (!(parm->priority & FLAG_CMDLINE)) {
2766                         parm->priority |= FLAG_DEFAULT;
2767                 }
2768         }
2769
2770
2771         return lp_ctx;
2772 }
2773
2774 /**
2775  * Initialise the global parameter structure.
2776  */
2777 struct loadparm_context *loadparm_init_global(bool load_default)
2778 {
2779         if (global_loadparm_context == NULL) {
2780                 global_loadparm_context = loadparm_init(NULL);
2781         }
2782         if (global_loadparm_context == NULL) {
2783                 return NULL;
2784         }
2785         global_loadparm_context->global = true;
2786         if (load_default && !global_loadparm_context->loaded) {
2787                 lpcfg_load_default(global_loadparm_context);
2788         }
2789         global_loadparm_context->refuse_free = true;
2790         return global_loadparm_context;
2791 }
2792
2793 /**
2794  * Initialise the global parameter structure.
2795  */
2796 struct loadparm_context *loadparm_init_s3(TALLOC_CTX *mem_ctx, 
2797                                           const struct loadparm_s3_helpers *s3_fns)
2798 {
2799         struct loadparm_context *loadparm_context = talloc_zero(mem_ctx, struct loadparm_context);
2800         if (!loadparm_context) {
2801                 return NULL;
2802         }
2803         loadparm_context->s3_fns = s3_fns;
2804         loadparm_context->globals = s3_fns->globals;
2805         loadparm_context->flags = s3_fns->flags;
2806
2807         return loadparm_context;
2808 }
2809
2810 const char *lpcfg_configfile(struct loadparm_context *lp_ctx)
2811 {
2812         return lp_ctx->szConfigFile;
2813 }
2814
2815 const char *lp_default_path(void)
2816 {
2817     if (getenv("SMB_CONF_PATH"))
2818         return getenv("SMB_CONF_PATH");
2819     else
2820         return dyn_CONFIGFILE;
2821 }
2822
2823 /**
2824  * Update the internal state of a loadparm context after settings 
2825  * have changed.
2826  */
2827 static bool lpcfg_update(struct loadparm_context *lp_ctx)
2828 {
2829         struct debug_settings settings;
2830         TALLOC_CTX *tmp_ctx;
2831
2832         tmp_ctx = talloc_new(lp_ctx);
2833         if (tmp_ctx == NULL) {
2834                 return false;
2835         }
2836
2837         lpcfg_add_auto_services(lp_ctx, lpcfg_auto_services(lp_ctx, tmp_ctx));
2838
2839         if (!lp_ctx->globals->wins_server_list && lp_ctx->globals->we_are_a_wins_server) {
2840                 lpcfg_do_global_parameter(lp_ctx, "wins server", "127.0.0.1");
2841         }
2842
2843         if (!lp_ctx->global) {
2844                 TALLOC_FREE(tmp_ctx);
2845                 return true;
2846         }
2847
2848         panic_action = lp_ctx->globals->panic_action;
2849
2850         reload_charcnv(lp_ctx);
2851
2852         ZERO_STRUCT(settings);
2853         /* Add any more debug-related smb.conf parameters created in
2854          * future here */
2855         settings.syslog = lp_ctx->globals->syslog;
2856         settings.syslog_only = lp_ctx->globals->syslog_only;
2857         settings.timestamp_logs = lp_ctx->globals->timestamp_logs;
2858         settings.debug_prefix_timestamp = lp_ctx->globals->debug_prefix_timestamp;
2859         settings.debug_hires_timestamp = lp_ctx->globals->debug_hires_timestamp;
2860         settings.debug_pid = lp_ctx->globals->debug_pid;
2861         settings.debug_uid = lp_ctx->globals->debug_uid;
2862         settings.debug_class = lp_ctx->globals->debug_class;
2863         debug_set_settings(&settings);
2864
2865         /* FIXME: This is a bit of a hack, but we can't use a global, since 
2866          * not everything that uses lp also uses the socket library */
2867         if (lpcfg_parm_bool(lp_ctx, NULL, "socket", "testnonblock", false)) {
2868                 setenv("SOCKET_TESTNONBLOCK", "1", 1);
2869         } else {
2870                 unsetenv("SOCKET_TESTNONBLOCK");
2871         }
2872
2873         TALLOC_FREE(tmp_ctx);
2874         return true;
2875 }
2876
2877 bool lpcfg_load_default(struct loadparm_context *lp_ctx)
2878 {
2879     const char *path;
2880
2881     path = lp_default_path();
2882
2883     if (!file_exist(path)) {
2884             /* We allow the default smb.conf file to not exist, 
2885              * basically the equivalent of an empty file. */
2886             return lpcfg_update(lp_ctx);
2887     }
2888
2889     return lpcfg_load(lp_ctx, path);
2890 }
2891
2892 /**
2893  * Load the services array from the services file.
2894  *
2895  * Return True on success, False on failure.
2896  */
2897 bool lpcfg_load(struct loadparm_context *lp_ctx, const char *filename)
2898 {
2899         char *n2;
2900         bool bRetval;
2901
2902         filename = talloc_strdup(lp_ctx, filename);
2903
2904         lp_ctx->szConfigFile = filename;
2905
2906         if (lp_ctx->s3_fns) {
2907                 return lp_ctx->s3_fns->load(filename);
2908         }
2909
2910         lp_ctx->bInGlobalSection = true;
2911         n2 = standard_sub_basic(lp_ctx, lp_ctx->szConfigFile);
2912         DEBUG(2, ("lpcfg_load: refreshing parameters from %s\n", n2));
2913
2914         add_to_file_list(lp_ctx, &lp_ctx->file_lists, lp_ctx->szConfigFile, n2);
2915
2916         /* We get sections first, so have to start 'behind' to make up */
2917         lp_ctx->currentService = NULL;
2918         bRetval = pm_process(n2, do_section, lpcfg_do_parameter, lp_ctx);
2919
2920         /* finish up the last section */
2921         DEBUG(4, ("pm_process() returned %s\n", BOOLSTR(bRetval)));
2922         if (bRetval)
2923                 if (lp_ctx->currentService != NULL)
2924                         bRetval = lpcfg_service_ok(lp_ctx->currentService);
2925
2926         bRetval = bRetval && lpcfg_update(lp_ctx);
2927
2928         /* we do this unconditionally, so that it happens even
2929            for a missing smb.conf */
2930         reload_charcnv(lp_ctx);
2931
2932         if (bRetval == true) {
2933                 /* set this up so that any child python tasks will
2934                    find the right smb.conf */
2935                 setenv("SMB_CONF_PATH", filename, 1);
2936
2937                 /* set the context used by the lp_*() function
2938                    varients */
2939                 global_loadparm_context = lp_ctx;
2940                 lp_ctx->loaded = true;
2941         }
2942
2943         return bRetval;
2944 }
2945
2946 /**
2947  * Return the max number of services.
2948  */
2949
2950 int lpcfg_numservices(struct loadparm_context *lp_ctx)
2951 {
2952         if (lp_ctx->s3_fns) {
2953                 return lp_ctx->s3_fns->get_numservices();
2954         }
2955
2956         return lp_ctx->iNumServices;
2957 }
2958
2959 /**
2960  * Display the contents of the services array in human-readable form.
2961  */
2962
2963 void lpcfg_dump(struct loadparm_context *lp_ctx, FILE *f, bool show_defaults,
2964              int maxtoprint)
2965 {
2966         int iService;
2967
2968         if (lp_ctx->s3_fns) {
2969                 lp_ctx->s3_fns->dump(f, show_defaults, maxtoprint);
2970                 return;
2971         }
2972
2973         lpcfg_dump_globals(lp_ctx, f, show_defaults);
2974
2975         lpcfg_dump_a_service(lp_ctx->sDefault, lp_ctx->sDefault, f, lp_ctx->flags, show_defaults);
2976
2977         for (iService = 0; iService < maxtoprint; iService++)
2978                 lpcfg_dump_one(f, show_defaults, lp_ctx->services[iService], lp_ctx->sDefault);
2979 }
2980
2981 /**
2982  * Display the contents of one service in human-readable form.
2983  */
2984 void lpcfg_dump_one(FILE *f, bool show_defaults, struct loadparm_service *service, struct loadparm_service *sDefault)
2985 {
2986         if (service != NULL) {
2987                 if (service->szService[0] == '\0')
2988                         return;
2989                 lpcfg_dump_a_service(service, sDefault, f, NULL, show_defaults);
2990         }
2991 }
2992
2993 struct loadparm_service *lpcfg_servicebynum(struct loadparm_context *lp_ctx,
2994                                             int snum)
2995 {
2996         if (lp_ctx->s3_fns) {
2997                 return lp_ctx->s3_fns->get_servicebynum(snum);
2998         }
2999
3000         return lp_ctx->services[snum];
3001 }
3002
3003 struct loadparm_service *lpcfg_service(struct loadparm_context *lp_ctx,
3004                                     const char *service_name)
3005 {
3006         int iService;
3007         char *serviceName;
3008
3009         if (lp_ctx->s3_fns) {
3010                 return lp_ctx->s3_fns->get_service(service_name);
3011         }
3012
3013         for (iService = lp_ctx->iNumServices - 1; iService >= 0; iService--) {
3014                 if (lp_ctx->services[iService] &&
3015                     lp_ctx->services[iService]->szService) {
3016                         /*
3017                          * The substitution here is used to support %U is
3018                          * service names
3019                          */
3020                         serviceName = standard_sub_basic(
3021                                         lp_ctx->services[iService],
3022                                         lp_ctx->services[iService]->szService);
3023                         if (strequal(serviceName, service_name)) {
3024                                 talloc_free(serviceName);
3025                                 return lp_ctx->services[iService];
3026                         }
3027                         talloc_free(serviceName);
3028                 }
3029         }
3030
3031         DEBUG(7,("lpcfg_servicenumber: couldn't find %s\n", service_name));
3032         return NULL;
3033 }
3034
3035 const char *lpcfg_servicename(const struct loadparm_service *service)
3036 {
3037         return lpcfg_string((const char *)service->szService);
3038 }
3039
3040 /**
3041  * A useful volume label function.
3042  */
3043 const char *lpcfg_volume_label(struct loadparm_service *service, struct loadparm_service *sDefault)
3044 {
3045         const char *ret;
3046         ret = lpcfg_string((const char *)((service != NULL && service->volume != NULL) ?
3047                                        service->volume : sDefault->volume));
3048         if (!*ret)
3049                 return lpcfg_servicename(service);
3050         return ret;
3051 }
3052
3053 /**
3054  * Return the correct printer name.
3055  */
3056 const char *lpcfg_printername(struct loadparm_service *service, struct loadparm_service *sDefault)
3057 {
3058         const char *ret;
3059         ret = lpcfg_string((const char *)((service != NULL && service->_printername != NULL) ?
3060                                        service->_printername : sDefault->_printername));
3061         if (ret == NULL || (ret != NULL && *ret == '\0'))
3062                 ret = lpcfg_servicename(service);
3063
3064         return ret;
3065 }
3066
3067
3068 /**
3069  * Return the max print jobs per queue.
3070  */
3071 int lpcfg_maxprintjobs(struct loadparm_service *service, struct loadparm_service *sDefault)
3072 {
3073         int maxjobs = (service != NULL) ? service->iMaxPrintJobs : sDefault->iMaxPrintJobs;
3074         if (maxjobs <= 0 || maxjobs >= PRINT_MAX_JOBID)
3075                 maxjobs = PRINT_MAX_JOBID - 1;
3076
3077         return maxjobs;
3078 }
3079
3080 struct smb_iconv_handle *lpcfg_iconv_handle(struct loadparm_context *lp_ctx)
3081 {
3082         if (lp_ctx == NULL) {
3083                 return get_iconv_handle();
3084         }
3085         return lp_ctx->iconv_handle;
3086 }
3087
3088 _PUBLIC_ void reload_charcnv(struct loadparm_context *lp_ctx)
3089 {
3090         struct smb_iconv_handle *old_ic = lp_ctx->iconv_handle;
3091         if (!lp_ctx->global) {
3092                 return;
3093         }
3094
3095         if (old_ic == NULL) {
3096                 old_ic = global_iconv_handle;
3097         }
3098         lp_ctx->iconv_handle = smb_iconv_handle_reinit_lp(lp_ctx, lp_ctx, old_ic);
3099         global_iconv_handle = lp_ctx->iconv_handle;
3100 }
3101
3102 _PUBLIC_ char *lpcfg_tls_keyfile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3103 {
3104         return lpcfg_private_path(mem_ctx, lp_ctx, lpcfg__tls_keyfile(lp_ctx));
3105 }
3106
3107 _PUBLIC_ char *lpcfg_tls_certfile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3108 {
3109         return lpcfg_private_path(mem_ctx, lp_ctx, lpcfg__tls_certfile(lp_ctx));
3110 }
3111
3112 _PUBLIC_ char *lpcfg_tls_cafile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3113 {
3114         return lpcfg_private_path(mem_ctx, lp_ctx, lpcfg__tls_cafile(lp_ctx));
3115 }
3116
3117 _PUBLIC_ char *lpcfg_tls_crlfile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3118 {
3119         return lpcfg_private_path(mem_ctx, lp_ctx, lpcfg__tls_crlfile(lp_ctx));
3120 }
3121
3122 _PUBLIC_ char *lpcfg_tls_dhpfile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3123 {
3124         return lpcfg_private_path(mem_ctx, lp_ctx, lpcfg__tls_dhpfile(lp_ctx));
3125 }
3126
3127 struct gensec_settings *lpcfg_gensec_settings(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3128 {
3129         struct gensec_settings *settings = talloc_zero(mem_ctx, struct gensec_settings);
3130         if (settings == NULL)
3131                 return NULL;
3132         SMB_ASSERT(lp_ctx != NULL);
3133         settings->lp_ctx = talloc_reference(settings, lp_ctx);
3134         settings->target_hostname = lpcfg_parm_string(lp_ctx, NULL, "gensec", "target_hostname");
3135         return settings;
3136 }
3137
3138 int lpcfg_server_role(struct loadparm_context *lp_ctx)
3139 {
3140         int domain_master = lpcfg__domain_master(lp_ctx);
3141
3142         return lp_find_server_role(lpcfg__server_role(lp_ctx),
3143                                    lpcfg__security(lp_ctx),
3144                                    lpcfg__domain_logons(lp_ctx),
3145                                    (domain_master == true) ||
3146                                    (domain_master == Auto));
3147 }
3148
3149 int lpcfg_security(struct loadparm_context *lp_ctx)
3150 {
3151         return lp_find_security(lpcfg__server_role(lp_ctx),
3152                                 lpcfg__security(lp_ctx));
3153 }
3154
3155 bool lpcfg_server_signing_allowed(struct loadparm_context *lp_ctx, bool *mandatory)
3156 {
3157         bool allowed = true;
3158         enum smb_signing_setting signing_setting = lpcfg_server_signing(lp_ctx);
3159
3160         *mandatory = false;
3161
3162         if (signing_setting == SMB_SIGNING_DEFAULT) {
3163                 /*
3164                  * If we are a domain controller, SMB signing is
3165                  * really important, as it can prevent a number of
3166                  * attacks on communications between us and the
3167                  * clients
3168                  *
3169                  * However, it really sucks (no sendfile, CPU
3170                  * overhead) performance-wise when used on a
3171                  * file server, so disable it by default
3172                  * on non-DCs
3173                  */
3174
3175                 if (lpcfg_server_role(lp_ctx) >= ROLE_ACTIVE_DIRECTORY_DC) {
3176                         signing_setting = SMB_SIGNING_REQUIRED;
3177                 } else {
3178                         signing_setting = SMB_SIGNING_OFF;
3179                 }
3180         }
3181
3182         switch (signing_setting) {
3183         case SMB_SIGNING_REQUIRED:
3184                 *mandatory = true;
3185                 break;
3186         case SMB_SIGNING_IF_REQUIRED:
3187                 break;
3188         case SMB_SIGNING_DEFAULT:
3189         case SMB_SIGNING_OFF:
3190                 allowed = false;
3191                 break;
3192         }
3193
3194         return allowed;
3195 }
3196
3197 int lpcfg_tdb_hash_size(struct loadparm_context *lp_ctx, const char *name)
3198 {
3199         const char *base;
3200
3201         if (name == NULL) {
3202                 return 0;
3203         }
3204
3205         base = strrchr_m(name, '/');
3206         if (base != NULL) {
3207                 base += 1;
3208         } else {
3209                 base = name;
3210         }
3211         return lpcfg_parm_int(lp_ctx, NULL, "tdb_hashsize", base, 0);
3212
3213 }
3214
3215 int lpcfg_tdb_flags(struct loadparm_context *lp_ctx, int tdb_flags)
3216 {
3217         if (!lpcfg_use_mmap(lp_ctx)) {
3218                 tdb_flags |= TDB_NOMMAP;
3219         }
3220         return tdb_flags;
3221 }