param: remove now unused FN_GLOBAL_STRING macro
[samba.git] / source3 / 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) Michael Adam 2008
13    Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
14    Copyright (C) Andrew Bartlett 2011
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 #define LOADPARM_SUBSTITUTION_INTERNALS 1
57 #include "includes.h"
58 #include "system/filesys.h"
59 #include "util_tdb.h"
60 #include "lib/param/loadparm.h"
61 #include "lib/param/param.h"
62 #include "printing.h"
63 #include "lib/smbconf/smbconf.h"
64 #include "lib/smbconf/smbconf_init.h"
65
66 #include "ads.h"
67 #include "../librpc/gen_ndr/svcctl.h"
68 #include "intl.h"
69 #include "../libcli/smb/smb_signing.h"
70 #include "dbwrap/dbwrap.h"
71 #include "dbwrap/dbwrap_rbt.h"
72 #include "../lib/util/bitmap.h"
73 #include "librpc/gen_ndr/nbt.h"
74 #include "source4/lib/tls/tls.h"
75 #include "libcli/auth/ntlm_check.h"
76
77 #ifdef HAVE_SYS_SYSCTL_H
78 #include <sys/sysctl.h>
79 #endif
80
81 bool bLoaded = false;
82
83 extern userdom_struct current_user_info;
84
85 /* the special value for the include parameter
86  * to be interpreted not as a file name but to
87  * trigger loading of the global smb.conf options
88  * from registry. */
89 #ifndef INCLUDE_REGISTRY_NAME
90 #define INCLUDE_REGISTRY_NAME "registry"
91 #endif
92
93 static bool in_client = false;          /* Not in the client by default */
94 static struct smbconf_csn conf_last_csn;
95
96 static int config_backend = CONFIG_BACKEND_FILE;
97
98 /* some helpful bits */
99 #define LP_SNUM_OK(i) (((i) >= 0) && ((i) < iNumServices) && \
100                        (ServicePtrs != NULL) && \
101                        (ServicePtrs[(i)] != NULL) && ServicePtrs[(i)]->valid)
102 #define VALID(i) ((ServicePtrs != NULL) && (ServicePtrs[i]!= NULL) && \
103                   ServicePtrs[i]->valid)
104
105 #define USERSHARE_VALID 1
106 #define USERSHARE_PENDING_DELETE 2
107
108 static bool defaults_saved = false;
109
110 #include "lib/param/param_global.h"
111
112 static struct loadparm_global Globals;
113
114 /* This is a default service used to prime a services structure */
115 static const struct loadparm_service _sDefault =
116 {
117         .valid = true,
118         .autoloaded = false,
119         .usershare = 0,
120         .usershare_last_mod = {0, 0},
121         .szService = NULL,
122         .path = NULL,
123         .invalid_users = NULL,
124         .valid_users = NULL,
125         .admin_users = NULL,
126         .copy = NULL,
127         .include = NULL,
128         .preexec = NULL,
129         .postexec = NULL,
130         .root_preexec = NULL,
131         .root_postexec = NULL,
132         .cups_options = NULL,
133         .print_command = NULL,
134         .lpq_command = NULL,
135         .lprm_command = NULL,
136         .lppause_command = NULL,
137         .lpresume_command = NULL,
138         .queuepause_command = NULL,
139         .queueresume_command = NULL,
140         ._printername = NULL,
141         .printjob_username = NULL,
142         .dont_descend = NULL,
143         .hosts_allow = NULL,
144         .hosts_deny = NULL,
145         .magic_script = NULL,
146         .magic_output = NULL,
147         .veto_files = NULL,
148         .hide_files = NULL,
149         .veto_oplock_files = NULL,
150         .comment = NULL,
151         .force_user = NULL,
152         .force_group = NULL,
153         .read_list = NULL,
154         .write_list = NULL,
155         .volume = NULL,
156         .fstype = NULL,
157         .vfs_objects = NULL,
158         .msdfs_proxy = NULL,
159         .aio_write_behind = NULL,
160         .dfree_command = NULL,
161         .min_print_space = 0,
162         .max_print_jobs = 1000,
163         .max_reported_print_jobs = 0,
164         .create_mask = 0744,
165         .force_create_mode = 0,
166         .directory_mask = 0755,
167         .force_directory_mode = 0,
168         .max_connections = 0,
169         .default_case = CASE_LOWER,
170         .printing = DEFAULT_PRINTING,
171         .csc_policy = 0,
172         .block_size = 1024,
173         .dfree_cache_time = 0,
174         .preexec_close = false,
175         .root_preexec_close = false,
176         .case_sensitive = Auto,
177         .preserve_case = true,
178         .short_preserve_case = true,
179         .hide_dot_files = true,
180         .hide_special_files = false,
181         .hide_unreadable = false,
182         .hide_unwriteable_files = false,
183         .browseable = true,
184         .access_based_share_enum = false,
185         .available = true,
186         .read_only = true,
187         .spotlight = false,
188         .guest_only = false,
189         .administrative_share = false,
190         .guest_ok = false,
191         .printable = false,
192         .print_notify_backchannel = false,
193         .map_system = false,
194         .map_hidden = false,
195         .map_archive = true,
196         .store_dos_attributes = true,
197         .dmapi_support = false,
198         .locking = true,
199         .strict_locking = Auto,
200         .posix_locking = true,
201         .oplocks = true,
202         .kernel_oplocks = false,
203         .level2_oplocks = true,
204         .mangled_names = MANGLED_NAMES_ILLEGAL,
205         .wide_links = false,
206         .follow_symlinks = true,
207         .sync_always = false,
208         .strict_allocate = false,
209         .strict_rename = false,
210         .strict_sync = true,
211         .mangling_char = '~',
212         .copymap = NULL,
213         .delete_readonly = false,
214         .fake_oplocks = false,
215         .delete_veto_files = false,
216         .dos_filemode = false,
217         .dos_filetimes = true,
218         .dos_filetime_resolution = false,
219         .fake_directory_create_times = false,
220         .blocking_locks = true,
221         .inherit_permissions = false,
222         .inherit_acls = false,
223         .inherit_owner = false,
224         .msdfs_root = false,
225         .msdfs_shuffle_referrals = false,
226         .use_client_driver = false,
227         .default_devmode = true,
228         .force_printername = false,
229         .nt_acl_support = true,
230         .force_unknown_acl_user = false,
231         ._use_sendfile = false,
232         .map_acl_inherit = false,
233         .afs_share = false,
234         .ea_support = true,
235         .acl_check_permissions = true,
236         .acl_map_full_control = true,
237         .acl_group_control = false,
238         .acl_allow_execute_always = false,
239         .aio_read_size = 1,
240         .aio_write_size = 1,
241         .map_readonly = MAP_READONLY_NO,
242         .directory_name_cache_size = 100,
243         .smb_encrypt = SMB_SIGNING_DEFAULT,
244         .kernel_share_modes = true,
245         .durable_handles = true,
246         .check_parent_directory_delete_on_close = false,
247         .param_opt = NULL,
248         .smbd_search_ask_sharemode = true,
249         .smbd_getinfo_ask_sharemode = true,
250         .spotlight_backend = SPOTLIGHT_BACKEND_NOINDEX,
251         .dummy = ""
252 };
253
254 /*
255  * This is a copy of the default service structure. Service options in the
256  * global section would otherwise overwrite the initial default values.
257  */
258 static struct loadparm_service sDefault;
259
260 /* local variables */
261 static struct loadparm_service **ServicePtrs = NULL;
262 static int iNumServices = 0;
263 static int iServiceIndex = 0;
264 static struct db_context *ServiceHash;
265 static bool bInGlobalSection = true;
266 static bool bGlobalOnly = false;
267 static struct file_lists *file_lists = NULL;
268 static unsigned int *flags_list = NULL;
269
270 static void set_allowed_client_auth(void);
271
272 static bool lp_set_cmdline_helper(const char *pszParmName, const char *pszParmValue);
273 static void free_param_opts(struct parmlist_entry **popts);
274
275 /**
276  *  Function to return the default value for the maximum number of open
277  *  file descriptors permitted.  This function tries to consult the
278  *  kernel-level (sysctl) and ulimit (getrlimit()) values and goes
279  *  the smaller of those.
280  */
281 static int max_open_files(void)
282 {
283         int sysctl_max = MAX_OPEN_FILES;
284         int rlimit_max = MAX_OPEN_FILES;
285
286 #ifdef HAVE_SYSCTLBYNAME
287         {
288                 size_t size = sizeof(sysctl_max);
289                 sysctlbyname("kern.maxfilesperproc", &sysctl_max, &size, NULL,
290                              0);
291         }
292 #endif
293
294 #if (defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE))
295         {
296                 struct rlimit rl;
297
298                 ZERO_STRUCT(rl);
299
300                 if (getrlimit(RLIMIT_NOFILE, &rl) == 0)
301                         rlimit_max = rl.rlim_cur;
302
303 #if defined(RLIM_INFINITY)
304                 if(rl.rlim_cur == RLIM_INFINITY)
305                         rlimit_max = MAX_OPEN_FILES;
306 #endif
307         }
308 #endif
309
310         if (sysctl_max < MIN_OPEN_FILES_WINDOWS) {
311                 DEBUG(2,("max_open_files: increasing sysctl_max (%d) to "
312                         "minimum Windows limit (%d)\n",
313                         sysctl_max,
314                         MIN_OPEN_FILES_WINDOWS));
315                 sysctl_max = MIN_OPEN_FILES_WINDOWS;
316         }
317
318         if (rlimit_max < MIN_OPEN_FILES_WINDOWS) {
319                 DEBUG(2,("rlimit_max: increasing rlimit_max (%d) to "
320                         "minimum Windows limit (%d)\n",
321                         rlimit_max,
322                         MIN_OPEN_FILES_WINDOWS));
323                 rlimit_max = MIN_OPEN_FILES_WINDOWS;
324         }
325
326         return MIN(sysctl_max, rlimit_max);
327 }
328
329 /**
330  * Common part of freeing allocated data for one parameter.
331  */
332 static void free_one_parameter_common(void *parm_ptr,
333                                       struct parm_struct parm)
334 {
335         if ((parm.type == P_STRING) ||
336             (parm.type == P_USTRING))
337         {
338                 lpcfg_string_free((char**)parm_ptr);
339         } else if (parm.type == P_LIST || parm.type == P_CMDLIST) {
340                 TALLOC_FREE(*((char***)parm_ptr));
341         }
342 }
343
344 /**
345  * Free the allocated data for one parameter for a share
346  * given as a service struct.
347  */
348 static void free_one_parameter(struct loadparm_service *service,
349                                struct parm_struct parm)
350 {
351         void *parm_ptr;
352
353         if (parm.p_class != P_LOCAL) {
354                 return;
355         }
356
357         parm_ptr = lp_parm_ptr(service, &parm);
358
359         free_one_parameter_common(parm_ptr, parm);
360 }
361
362 /**
363  * Free the allocated parameter data of a share given
364  * as a service struct.
365  */
366 static void free_parameters(struct loadparm_service *service)
367 {
368         uint32_t i;
369
370         for (i=0; parm_table[i].label; i++) {
371                 free_one_parameter(service, parm_table[i]);
372         }
373 }
374
375 /**
376  * Free the allocated data for one parameter for a given share
377  * specified by an snum.
378  */
379 static void free_one_parameter_by_snum(int snum, struct parm_struct parm)
380 {
381         void *parm_ptr;
382
383         if (snum < 0) {
384                 parm_ptr = lp_parm_ptr(NULL, &parm);
385         } else if (parm.p_class != P_LOCAL) {
386                 return;
387         } else {
388                 parm_ptr = lp_parm_ptr(ServicePtrs[snum], &parm);
389         }
390
391         free_one_parameter_common(parm_ptr, parm);
392 }
393
394 /**
395  * Free the allocated parameter data for a share specified
396  * by an snum.
397  */
398 static void free_parameters_by_snum(int snum)
399 {
400         uint32_t i;
401
402         for (i=0; parm_table[i].label; i++) {
403                 free_one_parameter_by_snum(snum, parm_table[i]);
404         }
405 }
406
407 /**
408  * Free the allocated global parameters.
409  */
410 static void free_global_parameters(void)
411 {
412         uint32_t i;
413         struct parm_struct *parm;
414
415         free_param_opts(&Globals.param_opt);
416         free_parameters_by_snum(GLOBAL_SECTION_SNUM);
417
418         /* Reset references in the defaults because the context is going to be freed */
419         for (i=0; parm_table[i].label; i++) {
420                 parm = &parm_table[i];
421                 if ((parm->type == P_STRING) ||
422                     (parm->type == P_USTRING)) {
423                         if ((parm->def.svalue != NULL) &&
424                             (*(parm->def.svalue) != '\0')) {
425                                 if (talloc_parent(parm->def.svalue) == Globals.ctx) {
426                                         parm->def.svalue = NULL;
427                                 }
428                         }
429                 }
430         }
431         TALLOC_FREE(Globals.ctx);
432 }
433
434 struct lp_stored_option {
435         struct lp_stored_option *prev, *next;
436         const char *label;
437         const char *value;
438 };
439
440 static struct lp_stored_option *stored_options;
441
442 /*
443   save options set by lp_set_cmdline() into a list. This list is
444   re-applied when we do a globals reset, so that cmdline set options
445   are sticky across reloads of smb.conf
446  */
447 bool store_lp_set_cmdline(const char *pszParmName, const char *pszParmValue)
448 {
449         struct lp_stored_option *entry, *entry_next;
450         for (entry = stored_options; entry != NULL; entry = entry_next) {
451                 entry_next = entry->next;
452                 if (strcmp(pszParmName, entry->label) == 0) {
453                         DLIST_REMOVE(stored_options, entry);
454                         talloc_free(entry);
455                         break;
456                 }
457         }
458
459         entry = talloc(NULL, struct lp_stored_option);
460         if (!entry) {
461                 return false;
462         }
463
464         entry->label = talloc_strdup(entry, pszParmName);
465         if (!entry->label) {
466                 talloc_free(entry);
467                 return false;
468         }
469
470         entry->value = talloc_strdup(entry, pszParmValue);
471         if (!entry->value) {
472                 talloc_free(entry);
473                 return false;
474         }
475
476         DLIST_ADD_END(stored_options, entry);
477
478         return true;
479 }
480
481 static bool apply_lp_set_cmdline(void)
482 {
483         struct lp_stored_option *entry = NULL;
484         for (entry = stored_options; entry != NULL; entry = entry->next) {
485                 if (!lp_set_cmdline_helper(entry->label, entry->value)) {
486                         DEBUG(0, ("Failed to re-apply cmdline parameter %s = %s\n",
487                                   entry->label, entry->value));
488                         return false;
489                 }
490         }
491         return true;
492 }
493
494 /***************************************************************************
495  Initialise the global parameter structure.
496 ***************************************************************************/
497
498 static void init_globals(struct loadparm_context *lp_ctx, bool reinit_globals)
499 {
500         static bool done_init = false;
501         char *s = NULL;
502         int i;
503
504         /* If requested to initialize only once and we've already done it... */
505         if (!reinit_globals && done_init) {
506                 /* ... then we have nothing more to do */
507                 return;
508         }
509
510         if (!done_init) {
511                 /* The logfile can be set before this is invoked. Free it if so. */
512                 lpcfg_string_free(&Globals.logfile);
513                 done_init = true;
514         } else {
515                 free_global_parameters();
516         }
517
518         /* This memset and the free_global_parameters() above will
519          * wipe out smb.conf options set with lp_set_cmdline().  The
520          * apply_lp_set_cmdline() call puts these values back in the
521          * table once the defaults are set */
522         ZERO_STRUCT(Globals);
523
524         Globals.ctx = talloc_pooled_object(NULL, char, 272, 2048);
525
526         /* Initialize the flags list if necessary */
527         if (flags_list == NULL) {
528                 get_flags();
529         }
530
531         for (i = 0; parm_table[i].label; i++) {
532                 if ((parm_table[i].type == P_STRING ||
533                      parm_table[i].type == P_USTRING))
534                 {
535                         lpcfg_string_set(
536                                 Globals.ctx,
537                                 (char **)lp_parm_ptr(NULL, &parm_table[i]),
538                                 "");
539                 }
540         }
541
542
543         lpcfg_string_set(Globals.ctx, &sDefault.fstype, FSTYPE_STRING);
544         lpcfg_string_set(Globals.ctx, &sDefault.printjob_username, "%U");
545
546         init_printer_values(lp_ctx, Globals.ctx, &sDefault);
547
548         sDefault.ntvfs_handler = str_list_make_v3_const(Globals.ctx, "unixuid default", NULL);
549
550         DEBUG(3, ("Initialising global parameters\n"));
551
552         /* Must manually force to upper case here, as this does not go via the handler */
553         lpcfg_string_set(Globals.ctx, &Globals.netbios_name,
554                          myhostname_upper());
555
556         lpcfg_string_set(Globals.ctx, &Globals.smb_passwd_file,
557                          get_dyn_SMB_PASSWD_FILE());
558         lpcfg_string_set(Globals.ctx, &Globals.private_dir,
559                          get_dyn_PRIVATE_DIR());
560         lpcfg_string_set(Globals.ctx, &Globals.binddns_dir,
561                          get_dyn_BINDDNS_DIR());
562
563         /* use the new 'hash2' method by default, with a prefix of 1 */
564         lpcfg_string_set(Globals.ctx, &Globals.mangling_method, "hash2");
565         Globals.mangle_prefix = 1;
566
567         lpcfg_string_set(Globals.ctx, &Globals.guest_account, GUEST_ACCOUNT);
568
569         /* using UTF8 by default allows us to support all chars */
570         lpcfg_string_set(Globals.ctx, &Globals.unix_charset,
571                          DEFAULT_UNIX_CHARSET);
572
573         /* Use codepage 850 as a default for the dos character set */
574         lpcfg_string_set(Globals.ctx, &Globals.dos_charset,
575                          DEFAULT_DOS_CHARSET);
576
577         /*
578          * Allow the default PASSWD_CHAT to be overridden in local.h.
579          */
580         lpcfg_string_set(Globals.ctx, &Globals.passwd_chat,
581                          DEFAULT_PASSWD_CHAT);
582
583         lpcfg_string_set(Globals.ctx, &Globals.workgroup, DEFAULT_WORKGROUP);
584
585         lpcfg_string_set(Globals.ctx, &Globals.passwd_program, "");
586         lpcfg_string_set(Globals.ctx, &Globals.lock_directory,
587                          get_dyn_LOCKDIR());
588         lpcfg_string_set(Globals.ctx, &Globals.state_directory,
589                          get_dyn_STATEDIR());
590         lpcfg_string_set(Globals.ctx, &Globals.cache_directory,
591                          get_dyn_CACHEDIR());
592         lpcfg_string_set(Globals.ctx, &Globals.pid_directory,
593                          get_dyn_PIDDIR());
594         lpcfg_string_set(Globals.ctx, &Globals.nbt_client_socket_address,
595                          "0.0.0.0");
596         /*
597          * By default support explicit binding to broadcast
598          * addresses.
599          */
600         Globals.nmbd_bind_explicit_broadcast = true;
601
602         s = talloc_asprintf(talloc_tos(), "Samba %s", samba_version_string());
603         if (s == NULL) {
604                 smb_panic("init_globals: ENOMEM");
605         }
606         lpcfg_string_set(Globals.ctx, &Globals.server_string, s);
607         TALLOC_FREE(s);
608 #ifdef DEVELOPER
609         lpcfg_string_set(Globals.ctx, &Globals.panic_action,
610                          "/bin/sleep 999999999");
611 #endif
612
613         lpcfg_string_set(Globals.ctx, &Globals.socket_options,
614                          DEFAULT_SOCKET_OPTIONS);
615
616         lpcfg_string_set(Globals.ctx, &Globals.logon_drive, "");
617         /* %N is the NIS auto.home server if -DAUTOHOME is used, else same as %L */
618         lpcfg_string_set(Globals.ctx, &Globals.logon_home, "\\\\%N\\%U");
619         lpcfg_string_set(Globals.ctx, &Globals.logon_path,
620                          "\\\\%N\\%U\\profile");
621
622         Globals.name_resolve_order =
623                         str_list_make_v3_const(Globals.ctx,
624                                                DEFAULT_NAME_RESOLVE_ORDER,
625                                                NULL);
626         lpcfg_string_set(Globals.ctx, &Globals.password_server, "*");
627
628         Globals.algorithmic_rid_base = BASE_RID;
629
630         Globals.load_printers = true;
631         Globals.printcap_cache_time = 750;      /* 12.5 minutes */
632
633         Globals.config_backend = config_backend;
634         Globals._server_role = ROLE_AUTO;
635
636         /* Was 65535 (0xFFFF). 0x4101 matches W2K and causes major speed improvements... */
637         /* Discovered by 2 days of pain by Don McCall @ HP :-). */
638         Globals.max_xmit = 0x4104;
639         Globals.max_mux = 50;   /* This is *needed* for profile support. */
640         Globals.lpq_cache_time = 30;    /* changed to handle large print servers better -- jerry */
641         Globals._disable_spoolss = false;
642         Globals.max_smbd_processes = 0;/* no limit specified */
643         Globals.username_level = 0;
644         Globals.deadtime = 10080;
645         Globals.getwd_cache = true;
646         Globals.large_readwrite = true;
647         Globals.max_log_size = 5000;
648         Globals.max_open_files = max_open_files();
649         Globals.server_max_protocol = PROTOCOL_SMB3_11;
650         Globals.server_min_protocol = PROTOCOL_SMB2_02;
651         Globals._client_max_protocol = PROTOCOL_DEFAULT;
652         Globals.client_min_protocol = PROTOCOL_SMB2_02;
653         Globals._client_ipc_max_protocol = PROTOCOL_DEFAULT;
654         Globals._client_ipc_min_protocol = PROTOCOL_DEFAULT;
655         Globals._security = SEC_AUTO;
656         Globals.encrypt_passwords = true;
657         Globals.client_schannel = true;
658         Globals.winbind_sealed_pipes = true;
659         Globals.require_strong_key = true;
660         Globals.server_schannel = true;
661         Globals.read_raw = true;
662         Globals.write_raw = true;
663         Globals.null_passwords = false;
664         Globals.old_password_allowed_period = 60;
665         Globals.obey_pam_restrictions = false;
666         Globals.syslog = 1;
667         Globals.syslog_only = false;
668         Globals.timestamp_logs = true;
669         lpcfg_string_set(Globals.ctx, &Globals.log_level, "0");
670         Globals.debug_prefix_timestamp = false;
671         Globals.debug_hires_timestamp = true;
672         Globals.debug_pid = false;
673         Globals.debug_uid = false;
674         Globals.debug_class = false;
675         Globals.enable_core_files = true;
676         Globals.max_ttl = 60 * 60 * 24 * 3;     /* 3 days default. */
677         Globals.max_wins_ttl = 60 * 60 * 24 * 6;        /* 6 days default. */
678         Globals.min_wins_ttl = 60 * 60 * 6;     /* 6 hours default. */
679         Globals.machine_password_timeout = 60 * 60 * 24 * 7;    /* 7 days default. */
680         Globals.lm_announce = Auto;     /* = Auto: send only if LM clients found */
681         Globals.lm_interval = 60;
682 #if (defined(HAVE_NETGROUP) && defined(WITH_AUTOMOUNT))
683         Globals.nis_homedir = false;
684 #ifdef WITH_NISPLUS_HOME
685         lpcfg_string_set(Globals.ctx, &Globals.homedir_map,
686                          "auto_home.org_dir");
687 #else
688         lpcfg_string_set(Globals.ctx, &Globals.homedir_map, "auto.home");
689 #endif
690 #endif
691         Globals.time_server = false;
692         Globals.bind_interfaces_only = false;
693         Globals.unix_password_sync = false;
694         Globals.pam_password_change = false;
695         Globals.passwd_chat_debug = false;
696         Globals.passwd_chat_timeout = 2; /* 2 second default. */
697         Globals.nt_pipe_support = true; /* Do NT pipes by default. */
698         Globals.nt_status_support = true; /* Use NT status by default. */
699         Globals.smbd_profiling_level = 0;
700         Globals.stat_cache = true;      /* use stat cache by default */
701         Globals.max_stat_cache_size = 512; /* 512k by default */
702         Globals.restrict_anonymous = 0;
703         Globals.client_lanman_auth = false;     /* Do NOT use the LanMan hash if it is available */
704         Globals.client_plaintext_auth = false;  /* Do NOT use a plaintext password even if is requested by the server */
705         Globals._lanman_auth = false;   /* Do NOT use the LanMan hash, even if it is supplied */
706         Globals.ntlm_auth = NTLM_AUTH_NTLMV2_ONLY;      /* Do NOT use NTLMv1 if it is supplied by the client (otherwise NTLMv2) */
707         Globals.raw_ntlmv2_auth = false; /* Reject NTLMv2 without NTLMSSP */
708         Globals.client_ntlmv2_auth = true; /* Client should always use use NTLMv2, as we can't tell that the server supports it, but most modern servers do */
709         /* Note, that we will also use NTLM2 session security (which is different), if it is available */
710
711         Globals.allow_dcerpc_auth_level_connect = false; /* we don't allow this by default */
712
713         Globals.map_to_guest = 0;       /* By Default, "Never" */
714         Globals.oplock_break_wait_time = 0;     /* By Default, 0 msecs. */
715         Globals.enhanced_browsing = true;
716         Globals.lock_spin_time = WINDOWS_MINIMUM_LOCK_TIMEOUT_MS; /* msec. */
717         Globals.use_mmap = true;
718         Globals.unicode = true;
719         Globals.unix_extensions = true;
720         Globals.reset_on_zero_vc = false;
721         Globals.log_writeable_files_on_exit = false;
722         Globals.create_krb5_conf = true;
723         Globals.include_system_krb5_conf = true;
724         Globals._winbind_max_domain_connections = 1;
725
726         /* hostname lookups can be very expensive and are broken on
727            a large number of sites (tridge) */
728         Globals.hostname_lookups = false;
729
730         Globals.change_notify = true,
731         Globals.kernel_change_notify = true,
732
733         lpcfg_string_set(Globals.ctx, &Globals.passdb_backend, "tdbsam");
734         lpcfg_string_set(Globals.ctx, &Globals.ldap_suffix, "");
735         lpcfg_string_set(Globals.ctx, &Globals._ldap_machine_suffix, "");
736         lpcfg_string_set(Globals.ctx, &Globals._ldap_user_suffix, "");
737         lpcfg_string_set(Globals.ctx, &Globals._ldap_group_suffix, "");
738         lpcfg_string_set(Globals.ctx, &Globals._ldap_idmap_suffix, "");
739
740         lpcfg_string_set(Globals.ctx, &Globals.ldap_admin_dn, "");
741         Globals.ldap_ssl = LDAP_SSL_START_TLS;
742         Globals.ldap_ssl_ads = false;
743         Globals.ldap_deref = -1;
744         Globals.ldap_passwd_sync = LDAP_PASSWD_SYNC_OFF;
745         Globals.ldap_delete_dn = false;
746         Globals.ldap_replication_sleep = 1000; /* wait 1 sec for replication */
747         Globals.ldap_follow_referral = Auto;
748         Globals.ldap_timeout = LDAP_DEFAULT_TIMEOUT;
749         Globals.ldap_connection_timeout = LDAP_CONNECTION_DEFAULT_TIMEOUT;
750         Globals.ldap_page_size = LDAP_PAGE_SIZE;
751
752         Globals.ldap_debug_level = 0;
753         Globals.ldap_debug_threshold = 10;
754
755         Globals.client_ldap_sasl_wrapping = ADS_AUTH_SASL_SIGN;
756
757         Globals.ldap_server_require_strong_auth =
758                 LDAP_SERVER_REQUIRE_STRONG_AUTH_YES;
759
760         /* This is what we tell the afs client. in reality we set the token 
761          * to never expire, though, when this runs out the afs client will 
762          * forget the token. Set to 0 to get NEVERDATE.*/
763         Globals.afs_token_lifetime = 604800;
764         Globals.cups_connection_timeout = CUPS_DEFAULT_CONNECTION_TIMEOUT;
765
766 /* these parameters are set to defaults that are more appropriate
767    for the increasing samba install base:
768
769    as a member of the workgroup, that will possibly become a
770    _local_ master browser (lm = true).  this is opposed to a forced
771    local master browser startup (pm = true).
772
773    doesn't provide WINS server service by default (wsupp = false),
774    and doesn't provide domain master browser services by default, either.
775
776 */
777
778         Globals.show_add_printer_wizard = true;
779         Globals.os_level = 20;
780         Globals.local_master = true;
781         Globals._domain_master = Auto;  /* depending on _domain_logons */
782         Globals._domain_logons = false;
783         Globals.browse_list = true;
784         Globals.we_are_a_wins_server = false;
785         Globals.wins_proxy = false;
786
787         TALLOC_FREE(Globals.init_logon_delayed_hosts);
788         Globals.init_logon_delay = 100; /* 100 ms default delay */
789
790         Globals.wins_dns_proxy = true;
791
792         Globals.allow_trusted_domains = true;
793         lpcfg_string_set(Globals.ctx, &Globals.idmap_backend, "tdb");
794
795         lpcfg_string_set(Globals.ctx, &Globals.template_shell, "/bin/false");
796         lpcfg_string_set(Globals.ctx, &Globals.template_homedir,
797                          "/home/%D/%U");
798         lpcfg_string_set(Globals.ctx, &Globals.winbind_separator, "\\");
799         lpcfg_string_set(Globals.ctx, &Globals.winbindd_socket_directory,
800                          dyn_WINBINDD_SOCKET_DIR);
801
802         lpcfg_string_set(Globals.ctx, &Globals.cups_server, "");
803         lpcfg_string_set(Globals.ctx, &Globals.iprint_server, "");
804
805         lpcfg_string_set(Globals.ctx, &Globals._ctdbd_socket, "");
806
807         Globals.cluster_addresses = NULL;
808         Globals.clustering = false;
809         Globals.ctdb_timeout = 0;
810         Globals.ctdb_locktime_warn_threshold = 0;
811
812         Globals.winbind_cache_time = 300;       /* 5 minutes */
813         Globals.winbind_reconnect_delay = 30;   /* 30 seconds */
814         Globals.winbind_request_timeout = 60;   /* 60 seconds */
815         Globals.winbind_max_clients = 200;
816         Globals.winbind_enum_users = false;
817         Globals.winbind_enum_groups = false;
818         Globals.winbind_use_default_domain = false;
819         Globals.winbind_nested_groups = true;
820         Globals.winbind_expand_groups = 0;
821         Globals.winbind_nss_info = str_list_make_v3_const(NULL, "template", NULL);
822         Globals.winbind_refresh_tickets = false;
823         Globals.winbind_offline_logon = false;
824         Globals.winbind_scan_trusted_domains = true;
825
826         Globals.idmap_cache_time = 86400 * 7; /* a week by default */
827         Globals.idmap_negative_cache_time = 120; /* 2 minutes by default */
828
829         Globals.passdb_expand_explicit = false;
830
831         Globals.name_cache_timeout = 660; /* In seconds */
832
833         Globals.client_use_spnego = true;
834
835         Globals.client_signing = SMB_SIGNING_DEFAULT;
836         Globals._client_ipc_signing = SMB_SIGNING_DEFAULT;
837         Globals.server_signing = SMB_SIGNING_DEFAULT;
838
839         Globals.defer_sharing_violations = true;
840         Globals.smb_ports = str_list_make_v3_const(NULL, SMB_PORTS, NULL);
841
842         Globals.enable_privileges = true;
843         Globals.host_msdfs        = true;
844         Globals.enable_asu_support       = false;
845
846         /* User defined shares. */
847         s = talloc_asprintf(talloc_tos(), "%s/usershares", get_dyn_STATEDIR());
848         if (s == NULL) {
849                 smb_panic("init_globals: ENOMEM");
850         }
851         lpcfg_string_set(Globals.ctx, &Globals.usershare_path, s);
852         TALLOC_FREE(s);
853         lpcfg_string_set(Globals.ctx, &Globals.usershare_template_share, "");
854         Globals.usershare_max_shares = 0;
855         /* By default disallow sharing of directories not owned by the sharer. */
856         Globals.usershare_owner_only = true;
857         /* By default disallow guest access to usershares. */
858         Globals.usershare_allow_guests = false;
859
860         Globals.keepalive = DEFAULT_KEEPALIVE;
861
862         /* By default no shares out of the registry */
863         Globals.registry_shares = false;
864
865         Globals.min_receivefile_size = 0;
866
867         Globals.multicast_dns_register = true;
868
869         Globals.smb2_max_read = DEFAULT_SMB2_MAX_READ;
870         Globals.smb2_max_write = DEFAULT_SMB2_MAX_WRITE;
871         Globals.smb2_max_trans = DEFAULT_SMB2_MAX_TRANSACT;
872         Globals.smb2_max_credits = DEFAULT_SMB2_MAX_CREDITS;
873         Globals.smb2_leases = true;
874
875         lpcfg_string_set(Globals.ctx, &Globals.ncalrpc_dir,
876                          get_dyn_NCALRPCDIR());
877
878         Globals.server_services = str_list_make_v3_const(NULL, "s3fs rpc nbt wrepl ldap cldap kdc drepl winbindd ntp_signd kcc dnsupdate dns", NULL);
879
880         Globals.dcerpc_endpoint_servers = str_list_make_v3_const(NULL, "epmapper wkssvc rpcecho samr netlogon lsarpc drsuapi dssetup unixinfo browser eventlog6 backupkey dnsserver", NULL);
881
882         Globals.tls_enabled = true;
883         Globals.tls_verify_peer = TLS_VERIFY_PEER_AS_STRICT_AS_POSSIBLE;
884
885         lpcfg_string_set(Globals.ctx, &Globals._tls_keyfile, "tls/key.pem");
886         lpcfg_string_set(Globals.ctx, &Globals._tls_certfile, "tls/cert.pem");
887         lpcfg_string_set(Globals.ctx, &Globals._tls_cafile, "tls/ca.pem");
888         lpcfg_string_set(Globals.ctx, &Globals.tls_priority,
889                          "NORMAL:-VERS-SSL3.0");
890
891         lpcfg_string_set(Globals.ctx, &Globals.share_backend, "classic");
892
893         Globals._preferred_master = Auto;
894
895         Globals.allow_dns_updates = DNS_UPDATE_SIGNED;
896         Globals.dns_zone_scavenging = false;
897
898         lpcfg_string_set(Globals.ctx, &Globals.ntp_signd_socket_directory,
899                          get_dyn_NTP_SIGND_SOCKET_DIR());
900
901         s = talloc_asprintf(talloc_tos(), "%s/samba_kcc", get_dyn_SCRIPTSBINDIR());
902         if (s == NULL) {
903                 smb_panic("init_globals: ENOMEM");
904         }
905         Globals.samba_kcc_command = str_list_make_v3_const(NULL, s, NULL);
906         TALLOC_FREE(s);
907
908 #ifdef MIT_KDC_PATH
909         Globals.mit_kdc_command = str_list_make_v3_const(NULL, MIT_KDC_PATH, NULL);
910 #endif
911
912         s = talloc_asprintf(talloc_tos(), "%s/samba_dnsupdate", get_dyn_SCRIPTSBINDIR());
913         if (s == NULL) {
914                 smb_panic("init_globals: ENOMEM");
915         }
916         Globals.dns_update_command = str_list_make_v3_const(NULL, s, NULL);
917         TALLOC_FREE(s);
918
919         s = talloc_asprintf(talloc_tos(), "%s/samba-gpupdate", get_dyn_SCRIPTSBINDIR());
920         if (s == NULL) {
921                 smb_panic("init_globals: ENOMEM");
922         }
923         Globals.gpo_update_command = str_list_make_v3_const(NULL, s, NULL);
924         TALLOC_FREE(s);
925
926         Globals.apply_group_policies = false;
927
928         s = talloc_asprintf(talloc_tos(), "%s/samba_spnupdate", get_dyn_SCRIPTSBINDIR());
929         if (s == NULL) {
930                 smb_panic("init_globals: ENOMEM");
931         }
932         Globals.spn_update_command = str_list_make_v3_const(NULL, s, NULL);
933         TALLOC_FREE(s);
934
935         Globals.nsupdate_command = str_list_make_v3_const(NULL, "/usr/bin/nsupdate -g", NULL);
936
937         Globals.cldap_port = 389;
938
939         Globals.dgram_port = NBT_DGRAM_SERVICE_PORT;
940
941         Globals.nbt_port = NBT_NAME_SERVICE_PORT;
942
943         Globals.krb5_port = 88;
944
945         Globals.kpasswd_port = 464;
946
947         Globals.aio_max_threads = 100;
948
949         lpcfg_string_set(Globals.ctx,
950                          &Globals.rpc_server_dynamic_port_range,
951                          "49152-65535");
952         Globals.rpc_low_port = SERVER_TCP_LOW_PORT;
953         Globals.rpc_high_port = SERVER_TCP_HIGH_PORT;
954         Globals.prefork_children = 4;
955         Globals.prefork_backoff_increment = 10;
956         Globals.prefork_maximum_backoff = 120;
957
958         /* Now put back the settings that were set with lp_set_cmdline() */
959         apply_lp_set_cmdline();
960 }
961
962 /* Convenience routine to setup an lp_context with additional s3 variables */
963 static struct loadparm_context *setup_lp_context(TALLOC_CTX *mem_ctx)
964 {
965         struct loadparm_context *lp_ctx;
966
967         lp_ctx = loadparm_init_s3(mem_ctx,
968                                   loadparm_s3_helpers());
969         if (lp_ctx == NULL) {
970                 DEBUG(0, ("loadparm_init_s3 failed\n"));
971                 return NULL;
972         }
973
974         lp_ctx->sDefault = talloc_zero(lp_ctx, struct loadparm_service);
975         if (lp_ctx->sDefault == NULL) {
976                 DBG_ERR("talloc_zero failed\n");
977                 TALLOC_FREE(lp_ctx);
978                 return NULL;
979         }
980
981         *lp_ctx->sDefault = _sDefault;
982         lp_ctx->services = NULL; /* We do not want to access this directly */
983         lp_ctx->bInGlobalSection = bInGlobalSection;
984         lp_ctx->flags = flags_list;
985
986         return lp_ctx;
987 }
988
989 /*******************************************************************
990  Convenience routine to grab string parameters into talloced memory
991  and run standard_sub_basic on them. The buffers can be written to by
992  callers without affecting the source string.
993 ********************************************************************/
994
995 static char *loadparm_s3_global_substitution_fn(
996                         TALLOC_CTX *mem_ctx,
997                         const struct loadparm_substitution *lp_sub,
998                         const char *s,
999                         void *private_data)
1000 {
1001         char *ret;
1002
1003         /* The follow debug is useful for tracking down memory problems
1004            especially if you have an inner loop that is calling a lp_*()
1005            function that returns a string.  Perhaps this debug should be
1006            present all the time? */
1007
1008 #if 0
1009         DEBUG(10, ("lp_string(%s)\n", s));
1010 #endif
1011         if (!s) {
1012                 return NULL;
1013         }
1014
1015         ret = talloc_sub_basic(mem_ctx,
1016                         get_current_username(),
1017                         current_user_info.domain,
1018                         s);
1019         if (trim_char(ret, '\"', '\"')) {
1020                 if (strchr(ret,'\"') != NULL) {
1021                         TALLOC_FREE(ret);
1022                         ret = talloc_sub_basic(mem_ctx,
1023                                         get_current_username(),
1024                                         current_user_info.domain,
1025                                         s);
1026                 }
1027         }
1028         return ret;
1029 }
1030
1031 static const struct loadparm_substitution s3_global_substitution = {
1032         .substituted_string_fn = loadparm_s3_global_substitution_fn,
1033 };
1034
1035 const struct loadparm_substitution *loadparm_s3_global_substitution(void)
1036 {
1037         return &s3_global_substitution;
1038 }
1039
1040 char *lp_string(TALLOC_CTX *ctx, const char *s)
1041 {
1042         return lpcfg_substituted_string(ctx, &s3_global_substitution, s);
1043 }
1044
1045 /*
1046    In this section all the functions that are used to access the
1047    parameters from the rest of the program are defined
1048 */
1049
1050 #define FN_GLOBAL_SUBSTITUTED_STRING(fn_name,ptr) \
1051 char *lp_ ## fn_name(TALLOC_CTX *ctx, const struct loadparm_substitution *lp_sub) \
1052  {return lpcfg_substituted_string(ctx, lp_sub, *(char **)(&Globals.ptr) ? *(char **)(&Globals.ptr) : "");}
1053 #define FN_GLOBAL_CONST_STRING(fn_name,ptr) \
1054  const char *lp_ ## fn_name(void) {return(*(const char * const *)(&Globals.ptr) ? *(const char * const *)(&Globals.ptr) : "");}
1055 #define FN_GLOBAL_LIST(fn_name,ptr) \
1056  const char **lp_ ## fn_name(void) {return(*(const char ***)(&Globals.ptr));}
1057 #define FN_GLOBAL_BOOL(fn_name,ptr) \
1058  bool lp_ ## fn_name(void) {return(*(bool *)(&Globals.ptr));}
1059 #define FN_GLOBAL_CHAR(fn_name,ptr) \
1060  char lp_ ## fn_name(void) {return(*(char *)(&Globals.ptr));}
1061 #define FN_GLOBAL_INTEGER(fn_name,ptr) \
1062  int lp_ ## fn_name(void) {return(*(int *)(&Globals.ptr));}
1063
1064 #define FN_LOCAL_STRING(fn_name,val) \
1065 char *lp_ ## fn_name(TALLOC_CTX *ctx,int i) {return(lp_string((ctx), (LP_SNUM_OK(i) && ServicePtrs[(i)]->val) ? ServicePtrs[(i)]->val : sDefault.val));}
1066 #define FN_LOCAL_SUBSTITUTED_STRING(fn_name,val) \
1067 char *lp_ ## fn_name(TALLOC_CTX *ctx, const struct loadparm_substitution *lp_sub, int i) \
1068  {return lpcfg_substituted_string((ctx), lp_sub, (LP_SNUM_OK(i) && ServicePtrs[(i)]->val) ? ServicePtrs[(i)]->val : sDefault.val);}
1069 #define FN_LOCAL_CONST_STRING(fn_name,val) \
1070  const char *lp_ ## fn_name(int i) {return (const char *)((LP_SNUM_OK(i) && ServicePtrs[(i)]->val) ? ServicePtrs[(i)]->val : sDefault.val);}
1071 #define FN_LOCAL_LIST(fn_name,val) \
1072  const char **lp_ ## fn_name(int i) {return(const char **)(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
1073 #define FN_LOCAL_BOOL(fn_name,val) \
1074  bool lp_ ## fn_name(int i) {return(bool)(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
1075 #define FN_LOCAL_INTEGER(fn_name,val) \
1076  int lp_ ## fn_name(int i) {return(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
1077
1078 #define FN_LOCAL_PARM_BOOL(fn_name,val) \
1079  bool lp_ ## fn_name(const struct share_params *p) {return(bool)(LP_SNUM_OK(p->service)? ServicePtrs[(p->service)]->val : sDefault.val);}
1080 #define FN_LOCAL_PARM_INTEGER(fn_name,val) \
1081  int lp_ ## fn_name(const struct share_params *p) {return(LP_SNUM_OK(p->service)? ServicePtrs[(p->service)]->val : sDefault.val);}
1082 #define FN_LOCAL_PARM_CHAR(fn_name,val) \
1083  char lp_ ## fn_name(const struct share_params *p) {return(LP_SNUM_OK(p->service)? ServicePtrs[(p->service)]->val : sDefault.val);}
1084
1085 int lp_winbind_max_domain_connections(void)
1086 {
1087         if (lp_winbind_offline_logon() &&
1088             lp__winbind_max_domain_connections() > 1) {
1089                 DEBUG(1, ("offline logons active, restricting max domain "
1090                           "connections to 1\n"));
1091                 return 1;
1092         }
1093         return MAX(1, lp__winbind_max_domain_connections());
1094 }
1095
1096 /* These functions remain in source3/param for now */
1097
1098 #include "lib/param/param_functions.c"
1099
1100 FN_LOCAL_STRING(servicename, szService)
1101 FN_LOCAL_CONST_STRING(const_servicename, szService)
1102
1103 /* These functions cannot be auto-generated */
1104 FN_LOCAL_BOOL(autoloaded, autoloaded)
1105 FN_GLOBAL_CONST_STRING(dnsdomain, dnsdomain)
1106
1107 /* local prototypes */
1108
1109 static int map_parameter_canonical(const char *pszParmName, bool *inverse);
1110 static const char *get_boolean(bool bool_value);
1111 static bool do_parameter(const char *pszParmName, const char *pszParmValue,
1112                          void *userdata);
1113 static bool hash_a_service(const char *name, int number);
1114 static void free_service_byindex(int iService);
1115 static void show_parameter(int parmIndex);
1116 static bool is_synonym_of(int parm1, int parm2, bool *inverse);
1117 static bool lp_parameter_value_is_valid(const char *parm_name, const char *val);
1118
1119 /*
1120  * This is a helper function for parametrical options support.  It returns a
1121  * pointer to parametrical option value if it exists or NULL otherwise. Actual
1122  * parametrical functions are quite simple
1123  */
1124 static struct parmlist_entry *get_parametrics(int snum, const char *type,
1125                                                 const char *option)
1126 {
1127         if (snum >= iNumServices) return NULL;
1128
1129         if (snum < 0) {
1130                 return get_parametric_helper(NULL, type, option, Globals.param_opt);
1131         } else {
1132                 return get_parametric_helper(ServicePtrs[snum],
1133                                              type, option, Globals.param_opt);
1134         }
1135 }
1136
1137 static void discard_whitespace(char *str)
1138 {
1139         size_t len = strlen(str);
1140         size_t i = 0;
1141
1142         while (i < len) {
1143                 if (isspace(str[i])) {
1144                         memmove(&str[i], &str[i+1], len-i);
1145                         len -= 1;
1146                         continue;
1147                 }
1148                 i += 1;
1149         }
1150 }
1151
1152 /**
1153  * @brief Go through all global parametric parameters
1154  *
1155  * @param regex_str     A regular expression to scan param for
1156  * @param max_matches   Max number of submatches the regexp expects
1157  * @param cb            Function to call on match. Should return true
1158  *                      when it wants wi_scan_global_parametrics to stop
1159  *                      scanning
1160  * @param private_data  Anonymous pointer passed to cb
1161  *
1162  * @return              0: success, regcomp/regexec return value on error.
1163  *                      See "man regexec" for possible errors
1164  */
1165
1166 int lp_wi_scan_global_parametrics(
1167         const char *regex_str, size_t max_matches,
1168         bool (*cb)(const char *string, regmatch_t matches[],
1169                    void *private_data),
1170         void *private_data)
1171 {
1172         struct parmlist_entry *data;
1173         regex_t regex;
1174         int ret;
1175
1176         ret = regcomp(&regex, regex_str, REG_ICASE);
1177         if (ret != 0) {
1178                 return ret;
1179         }
1180
1181         for (data = Globals.param_opt; data != NULL; data = data->next) {
1182                 size_t keylen = strlen(data->key);
1183                 char key[keylen+1];
1184                 regmatch_t matches[max_matches];
1185                 bool stop;
1186
1187                 memcpy(key, data->key, sizeof(key));
1188                 discard_whitespace(key);
1189
1190                 ret = regexec(&regex, key, max_matches, matches, 0);
1191                 if (ret == REG_NOMATCH) {
1192                         continue;
1193                 }
1194                 if (ret != 0) {
1195                         goto fail;
1196                 }
1197
1198                 stop = cb(key, matches, private_data);
1199                 if (stop) {
1200                         break;
1201                 }
1202         }
1203
1204         ret = 0;
1205 fail:
1206         regfree(&regex);
1207         return ret;
1208 }
1209
1210
1211 #define MISSING_PARAMETER(name) \
1212     DEBUG(0, ("%s(): value is NULL or empty!\n", #name))
1213
1214 /*******************************************************************
1215 convenience routine to return enum parameters.
1216 ********************************************************************/
1217 static int lp_enum(const char *s,const struct enum_list *_enum)
1218 {
1219         int i;
1220
1221         if (!s || !*s || !_enum) {
1222                 MISSING_PARAMETER(lp_enum);
1223                 return (-1);
1224         }
1225
1226         for (i=0; _enum[i].name; i++) {
1227                 if (strequal(_enum[i].name,s))
1228                         return _enum[i].value;
1229         }
1230
1231         DEBUG(0,("lp_enum(%s,enum): value is not in enum_list!\n",s));
1232         return (-1);
1233 }
1234
1235 #undef MISSING_PARAMETER
1236
1237 /* Return parametric option from a given service. Type is a part of option before ':' */
1238 /* Parametric option has following syntax: 'Type: option = value' */
1239 char *lp_parm_substituted_string(TALLOC_CTX *mem_ctx,
1240                                  const struct loadparm_substitution *lp_sub,
1241                                  int snum,
1242                                  const char *type,
1243                                  const char *option,
1244                                  const char *def)
1245 {
1246         struct parmlist_entry *data = get_parametrics(snum, type, option);
1247
1248         SMB_ASSERT(lp_sub != NULL);
1249
1250         if (data == NULL||data->value==NULL) {
1251                 if (def) {
1252                         return lpcfg_substituted_string(mem_ctx, lp_sub, def);
1253                 } else {
1254                         return NULL;
1255                 }
1256         }
1257
1258         return lpcfg_substituted_string(mem_ctx, lp_sub, data->value);
1259 }
1260
1261 /* Return parametric option from a given service. Type is a part of option before ':' */
1262 /* Parametric option has following syntax: 'Type: option = value' */
1263 const char *lp_parm_const_string(int snum, const char *type, const char *option, const char *def)
1264 {
1265         struct parmlist_entry *data = get_parametrics(snum, type, option);
1266
1267         if (data == NULL||data->value==NULL)
1268                 return def;
1269
1270         return data->value;
1271 }
1272
1273
1274 /* Return parametric option from a given service. Type is a part of option before ':' */
1275 /* Parametric option has following syntax: 'Type: option = value' */
1276
1277 const char **lp_parm_string_list(int snum, const char *type, const char *option, const char **def)
1278 {
1279         struct parmlist_entry *data = get_parametrics(snum, type, option);
1280
1281         if (data == NULL||data->value==NULL)
1282                 return (const char **)def;
1283
1284         if (data->list==NULL) {
1285                 data->list = str_list_make_v3(NULL, data->value, NULL);
1286         }
1287
1288         return discard_const_p(const char *, data->list);
1289 }
1290
1291 /* Return parametric option from a given service. Type is a part of option before ':' */
1292 /* Parametric option has following syntax: 'Type: option = value' */
1293
1294 int lp_parm_int(int snum, const char *type, const char *option, int def)
1295 {
1296         struct parmlist_entry *data = get_parametrics(snum, type, option);
1297
1298         if (data && data->value && *data->value)
1299                 return lp_int(data->value);
1300
1301         return def;
1302 }
1303
1304 /* Return parametric option from a given service. Type is a part of option before ':' */
1305 /* Parametric option has following syntax: 'Type: option = value' */
1306
1307 unsigned long lp_parm_ulong(int snum, const char *type, const char *option, unsigned long def)
1308 {
1309         struct parmlist_entry *data = get_parametrics(snum, type, option);
1310
1311         if (data && data->value && *data->value)
1312                 return lp_ulong(data->value);
1313
1314         return def;
1315 }
1316
1317 /* Return parametric option from a given service. Type is a part of option before ':' */
1318 /* Parametric option has following syntax: 'Type: option = value' */
1319
1320 unsigned long long lp_parm_ulonglong(int snum, const char *type,
1321                                      const char *option, unsigned long long def)
1322 {
1323         struct parmlist_entry *data = get_parametrics(snum, type, option);
1324
1325         if (data && data->value && *data->value) {
1326                 return lp_ulonglong(data->value);
1327         }
1328
1329         return def;
1330 }
1331
1332 /* Return parametric option from a given service. Type is a part of option
1333  * before ':' */
1334 /* Parametric option has following syntax: 'Type: option = value' */
1335
1336 bool lp_parm_bool(int snum, const char *type, const char *option, bool def)
1337 {
1338         struct parmlist_entry *data = get_parametrics(snum, type, option);
1339
1340         if (data && data->value && *data->value)
1341                 return lp_bool(data->value);
1342
1343         return def;
1344 }
1345
1346 /* Return parametric option from a given service. Type is a part of option before ':' */
1347 /* Parametric option has following syntax: 'Type: option = value' */
1348
1349 int lp_parm_enum(int snum, const char *type, const char *option,
1350                  const struct enum_list *_enum, int def)
1351 {
1352         struct parmlist_entry *data = get_parametrics(snum, type, option);
1353
1354         if (data && data->value && *data->value && _enum)
1355                 return lp_enum(data->value, _enum);
1356
1357         return def;
1358 }
1359
1360 /**
1361  * free a param_opts structure.
1362  * param_opts handling should be moved to talloc;
1363  * then this whole functions reduces to a TALLOC_FREE().
1364  */
1365
1366 static void free_param_opts(struct parmlist_entry **popts)
1367 {
1368         struct parmlist_entry *opt, *next_opt;
1369
1370         if (*popts != NULL) {
1371                 DEBUG(5, ("Freeing parametrics:\n"));
1372         }
1373         opt = *popts;
1374         while (opt != NULL) {
1375                 lpcfg_string_free(&opt->key);
1376                 lpcfg_string_free(&opt->value);
1377                 TALLOC_FREE(opt->list);
1378                 next_opt = opt->next;
1379                 TALLOC_FREE(opt);
1380                 opt = next_opt;
1381         }
1382         *popts = NULL;
1383 }
1384
1385 /***************************************************************************
1386  Free the dynamically allocated parts of a service struct.
1387 ***************************************************************************/
1388
1389 static void free_service(struct loadparm_service *pservice)
1390 {
1391         if (!pservice)
1392                 return;
1393
1394         if (pservice->szService)
1395                 DEBUG(5, ("free_service: Freeing service %s\n",
1396                        pservice->szService));
1397
1398         free_parameters(pservice);
1399
1400         lpcfg_string_free(&pservice->szService);
1401         TALLOC_FREE(pservice->copymap);
1402
1403         free_param_opts(&pservice->param_opt);
1404
1405         ZERO_STRUCTP(pservice);
1406 }
1407
1408
1409 /***************************************************************************
1410  remove a service indexed in the ServicePtrs array from the ServiceHash
1411  and free the dynamically allocated parts
1412 ***************************************************************************/
1413
1414 static void free_service_byindex(int idx)
1415 {
1416         if ( !LP_SNUM_OK(idx) ) 
1417                 return;
1418
1419         ServicePtrs[idx]->valid = false;
1420
1421         /* we have to cleanup the hash record */
1422
1423         if (ServicePtrs[idx]->szService) {
1424                 char *canon_name = canonicalize_servicename(
1425                         talloc_tos(),
1426                         ServicePtrs[idx]->szService );
1427
1428                 dbwrap_delete_bystring(ServiceHash, canon_name );
1429                 TALLOC_FREE(canon_name);
1430         }
1431
1432         free_service(ServicePtrs[idx]);
1433         TALLOC_FREE(ServicePtrs[idx]);
1434 }
1435
1436 /***************************************************************************
1437  Add a new service to the services array initialising it with the given 
1438  service. 
1439 ***************************************************************************/
1440
1441 static int add_a_service(const struct loadparm_service *pservice, const char *name)
1442 {
1443         int i;
1444         struct loadparm_service **tsp = NULL;
1445
1446         /* it might already exist */
1447         if (name) {
1448                 i = getservicebyname(name, NULL);
1449                 if (i >= 0) {
1450                         return (i);
1451                 }
1452         }
1453
1454         /* Re use empty slots if any before allocating new one.*/
1455         for (i=0; i < iNumServices; i++) {
1456                 if (ServicePtrs[i] == NULL) {
1457                         break;
1458                 }
1459         }
1460         if (i == iNumServices) {
1461                 /* if not, then create one */
1462                 tsp = talloc_realloc(NULL, ServicePtrs,
1463                                      struct loadparm_service *,
1464                                      iNumServices + 1);
1465                 if (tsp == NULL) {
1466                         DEBUG(0, ("add_a_service: failed to enlarge "
1467                                   "ServicePtrs!\n"));
1468                         return (-1);
1469                 }
1470                 ServicePtrs = tsp;
1471                 iNumServices++;
1472         }
1473         ServicePtrs[i] = talloc_zero(ServicePtrs, struct loadparm_service);
1474         if (!ServicePtrs[i]) {
1475                 DEBUG(0,("add_a_service: out of memory!\n"));
1476                 return (-1);
1477         }
1478
1479         ServicePtrs[i]->valid = true;
1480
1481         copy_service(ServicePtrs[i], pservice, NULL);
1482         if (name)
1483                 lpcfg_string_set(ServicePtrs[i], &ServicePtrs[i]->szService,
1484                                  name);
1485
1486         DEBUG(8,("add_a_service: Creating snum = %d for %s\n", 
1487                 i, ServicePtrs[i]->szService));
1488
1489         if (!hash_a_service(ServicePtrs[i]->szService, i)) {
1490                 return (-1);
1491         }
1492
1493         return (i);
1494 }
1495
1496 /***************************************************************************
1497   Convert a string to uppercase and remove whitespaces.
1498 ***************************************************************************/
1499
1500 char *canonicalize_servicename(TALLOC_CTX *ctx, const char *src)
1501 {
1502         char *result;
1503
1504         if ( !src ) {
1505                 DEBUG(0,("canonicalize_servicename: NULL source name!\n"));
1506                 return NULL;
1507         }
1508
1509         result = talloc_strdup(ctx, src);
1510         SMB_ASSERT(result != NULL);
1511
1512         if (!strlower_m(result)) {
1513                 TALLOC_FREE(result);
1514                 return NULL;
1515         }
1516         return result;
1517 }
1518
1519 /***************************************************************************
1520   Add a name/index pair for the services array to the hash table.
1521 ***************************************************************************/
1522
1523 static bool hash_a_service(const char *name, int idx)
1524 {
1525         char *canon_name;
1526
1527         if ( !ServiceHash ) {
1528                 DEBUG(10,("hash_a_service: creating servicehash\n"));
1529                 ServiceHash = db_open_rbt(NULL);
1530                 if ( !ServiceHash ) {
1531                         DEBUG(0,("hash_a_service: open tdb servicehash failed!\n"));
1532                         return false;
1533                 }
1534         }
1535
1536         DEBUG(10,("hash_a_service: hashing index %d for service name %s\n",
1537                 idx, name));
1538
1539         canon_name = canonicalize_servicename(talloc_tos(), name );
1540
1541         dbwrap_store_bystring(ServiceHash, canon_name,
1542                               make_tdb_data((uint8_t *)&idx, sizeof(idx)),
1543                               TDB_REPLACE);
1544
1545         TALLOC_FREE(canon_name);
1546
1547         return true;
1548 }
1549
1550 /***************************************************************************
1551  Add a new home service, with the specified home directory, defaults coming
1552  from service ifrom.
1553 ***************************************************************************/
1554
1555 bool lp_add_home(const char *pszHomename, int iDefaultService,
1556                  const char *user, const char *pszHomedir)
1557 {
1558         const struct loadparm_substitution *lp_sub =
1559                 loadparm_s3_global_substitution();
1560         int i;
1561         char *global_path;
1562
1563         if (pszHomename == NULL || user == NULL || pszHomedir == NULL ||
1564                         pszHomedir[0] == '\0') {
1565                 return false;
1566         }
1567
1568         i = add_a_service(ServicePtrs[iDefaultService], pszHomename);
1569
1570         if (i < 0)
1571                 return false;
1572
1573         global_path = lp_path(talloc_tos(), lp_sub, GLOBAL_SECTION_SNUM);
1574         if (!(*(ServicePtrs[iDefaultService]->path))
1575             || strequal(ServicePtrs[iDefaultService]->path, global_path)) {
1576                 lpcfg_string_set(ServicePtrs[i], &ServicePtrs[i]->path,
1577                                  pszHomedir);
1578         }
1579         TALLOC_FREE(global_path);
1580
1581         if (!(*(ServicePtrs[i]->comment))) {
1582                 char *comment = talloc_asprintf(talloc_tos(), "Home directory of %s", user);
1583                 if (comment == NULL) {
1584                         return false;
1585                 }
1586                 lpcfg_string_set(ServicePtrs[i], &ServicePtrs[i]->comment,
1587                                  comment);
1588                 TALLOC_FREE(comment);
1589         }
1590
1591         /* set the browseable flag from the global default */
1592
1593         ServicePtrs[i]->browseable = sDefault.browseable;
1594         ServicePtrs[i]->access_based_share_enum = sDefault.access_based_share_enum;
1595
1596         ServicePtrs[i]->autoloaded = true;
1597
1598         DEBUG(3, ("adding home's share [%s] for user '%s' at '%s'\n", pszHomename, 
1599                user, ServicePtrs[i]->path ));
1600
1601         return true;
1602 }
1603
1604 /***************************************************************************
1605  Add a new service, based on an old one.
1606 ***************************************************************************/
1607
1608 int lp_add_service(const char *pszService, int iDefaultService)
1609 {
1610         if (iDefaultService < 0) {
1611                 return add_a_service(&sDefault, pszService);
1612         }
1613
1614         return (add_a_service(ServicePtrs[iDefaultService], pszService));
1615 }
1616
1617 /***************************************************************************
1618  Add the IPC service.
1619 ***************************************************************************/
1620
1621 static bool lp_add_ipc(const char *ipc_name, bool guest_ok)
1622 {
1623         char *comment = NULL;
1624         int i = add_a_service(&sDefault, ipc_name);
1625
1626         if (i < 0)
1627                 return false;
1628
1629         comment = talloc_asprintf(talloc_tos(), "IPC Service (%s)",
1630                                   Globals.server_string);
1631         if (comment == NULL) {
1632                 return false;
1633         }
1634
1635         lpcfg_string_set(ServicePtrs[i], &ServicePtrs[i]->path, tmpdir());
1636         lpcfg_string_set(ServicePtrs[i], &ServicePtrs[i]->comment, comment);
1637         lpcfg_string_set(ServicePtrs[i], &ServicePtrs[i]->fstype, "IPC");
1638         ServicePtrs[i]->max_connections = 0;
1639         ServicePtrs[i]->available = true;
1640         ServicePtrs[i]->read_only = true;
1641         ServicePtrs[i]->guest_only = false;
1642         ServicePtrs[i]->administrative_share = true;
1643         ServicePtrs[i]->guest_ok = guest_ok;
1644         ServicePtrs[i]->printable = false;
1645         ServicePtrs[i]->browseable = sDefault.browseable;
1646         ServicePtrs[i]->autoloaded = false;
1647
1648         DEBUG(3, ("adding IPC service\n"));
1649
1650         TALLOC_FREE(comment);
1651         return true;
1652 }
1653
1654 /***************************************************************************
1655  Add a new printer service, with defaults coming from service iFrom.
1656 ***************************************************************************/
1657
1658 bool lp_add_printer(const char *pszPrintername, int iDefaultService)
1659 {
1660         const char *comment = "From Printcap";
1661         int i = add_a_service(ServicePtrs[iDefaultService], pszPrintername);
1662
1663         if (i < 0)
1664                 return false;
1665
1666         /* note that we do NOT default the availability flag to true - */
1667         /* we take it from the default service passed. This allows all */
1668         /* dynamic printers to be disabled by disabling the [printers] */
1669         /* entry (if/when the 'available' keyword is implemented!).    */
1670
1671         /* the printer name is set to the service name. */
1672         lpcfg_string_set(ServicePtrs[i], &ServicePtrs[i]->_printername,
1673                          pszPrintername);
1674         lpcfg_string_set(ServicePtrs[i], &ServicePtrs[i]->comment, comment);
1675
1676         /* set the browseable flag from the gloabl default */
1677         ServicePtrs[i]->browseable = sDefault.browseable;
1678
1679         /* Printers cannot be read_only. */
1680         ServicePtrs[i]->read_only = false;
1681         /* No oplocks on printer services. */
1682         ServicePtrs[i]->oplocks = false;
1683         /* Printer services must be printable. */
1684         ServicePtrs[i]->printable = true;
1685
1686         DEBUG(3, ("adding printer service %s\n", pszPrintername));
1687
1688         return true;
1689 }
1690
1691
1692 /***************************************************************************
1693  Check whether the given parameter name is valid.
1694  Parametric options (names containing a colon) are considered valid.
1695 ***************************************************************************/
1696
1697 bool lp_parameter_is_valid(const char *pszParmName)
1698 {
1699         return ((lpcfg_map_parameter(pszParmName) != -1) ||
1700                 (strchr(pszParmName, ':') != NULL));
1701 }
1702
1703 /***************************************************************************
1704  Check whether the given name is the name of a global parameter.
1705  Returns true for strings belonging to parameters of class
1706  P_GLOBAL, false for all other strings, also for parametric options
1707  and strings not belonging to any option.
1708 ***************************************************************************/
1709
1710 bool lp_parameter_is_global(const char *pszParmName)
1711 {
1712         int num = lpcfg_map_parameter(pszParmName);
1713
1714         if (num >= 0) {
1715                 return (parm_table[num].p_class == P_GLOBAL);
1716         }
1717
1718         return false;
1719 }
1720
1721 /**************************************************************************
1722  Determine the canonical name for a parameter.
1723  Indicate when it is an inverse (boolean) synonym instead of a
1724  "usual" synonym.
1725 **************************************************************************/
1726
1727 bool lp_canonicalize_parameter(const char *parm_name, const char **canon_parm,
1728                                bool *inverse)
1729 {
1730         int num;
1731
1732         if (!lp_parameter_is_valid(parm_name)) {
1733                 *canon_parm = NULL;
1734                 return false;
1735         }
1736
1737         num = map_parameter_canonical(parm_name, inverse);
1738         if (num < 0) {
1739                 /* parametric option */
1740                 *canon_parm = parm_name;
1741         } else {
1742                 *canon_parm = parm_table[num].label;
1743         }
1744
1745         return true;
1746
1747 }
1748
1749 /**************************************************************************
1750  Determine the canonical name for a parameter.
1751  Turn the value given into the inverse boolean expression when
1752  the synonym is an invers boolean synonym.
1753
1754  Return true if
1755  - parm_name is a valid parameter name and
1756  - val is a valid value for this parameter and
1757  - in case the parameter is an inverse boolean synonym, if the val
1758    string could successfully be converted to the reverse bool.
1759  Return false in all other cases.
1760 **************************************************************************/
1761
1762 bool lp_canonicalize_parameter_with_value(const char *parm_name,
1763                                           const char *val,
1764                                           const char **canon_parm,
1765                                           const char **canon_val)
1766 {
1767         int num;
1768         bool inverse;
1769         bool ret;
1770
1771         if (!lp_parameter_is_valid(parm_name)) {
1772                 *canon_parm = NULL;
1773                 *canon_val = NULL;
1774                 return false;
1775         }
1776
1777         num = map_parameter_canonical(parm_name, &inverse);
1778         if (num < 0) {
1779                 /* parametric option */
1780                 *canon_parm = parm_name;
1781                 *canon_val = val;
1782                 return true;
1783         }
1784
1785         *canon_parm = parm_table[num].label;
1786         if (inverse) {
1787                 if (!lp_invert_boolean(val, canon_val)) {
1788                         *canon_val = NULL;
1789                         return false;
1790                 }
1791         } else {
1792                 *canon_val = val;
1793         }
1794
1795         ret = lp_parameter_value_is_valid(*canon_parm, *canon_val);
1796
1797         return ret;
1798 }
1799
1800 /***************************************************************************
1801  Map a parameter's string representation to the index of the canonical
1802  form of the parameter (it might be a synonym).
1803  Returns -1 if the parameter string is not recognised.
1804 ***************************************************************************/
1805
1806 static int map_parameter_canonical(const char *pszParmName, bool *inverse)
1807 {
1808         int parm_num, canon_num;
1809         bool loc_inverse = false;
1810
1811         parm_num = lpcfg_map_parameter(pszParmName);
1812         if ((parm_num < 0) || !(parm_table[parm_num].flags & FLAG_SYNONYM)) {
1813                 /* invalid, parametric or no canidate for synonyms ... */
1814                 goto done;
1815         }
1816
1817         for (canon_num = 0; parm_table[canon_num].label; canon_num++) {
1818                 if (is_synonym_of(parm_num, canon_num, &loc_inverse)) {
1819                         parm_num = canon_num;
1820                         goto done;
1821                 }
1822         }
1823
1824 done:
1825         if (inverse != NULL) {
1826                 *inverse = loc_inverse;
1827         }
1828         return parm_num;
1829 }
1830
1831 /***************************************************************************
1832  return true if parameter number parm1 is a synonym of parameter
1833  number parm2 (parm2 being the principal name).
1834  set inverse to true if parm1 is P_BOOLREV and parm2 is P_BOOL,
1835  false otherwise.
1836 ***************************************************************************/
1837
1838 static bool is_synonym_of(int parm1, int parm2, bool *inverse)
1839 {
1840         if ((parm_table[parm1].offset == parm_table[parm2].offset) &&
1841             (parm_table[parm1].p_class == parm_table[parm2].p_class) &&
1842             (parm_table[parm1].flags & FLAG_SYNONYM) &&
1843             !(parm_table[parm2].flags & FLAG_SYNONYM))
1844         {
1845                 if (inverse != NULL) {
1846                         if ((parm_table[parm1].type == P_BOOLREV) &&
1847                             (parm_table[parm2].type == P_BOOL))
1848                         {
1849                                 *inverse = true;
1850                         } else {
1851                                 *inverse = false;
1852                         }
1853                 }
1854                 return true;
1855         }
1856         return false;
1857 }
1858
1859 /***************************************************************************
1860  Show one parameter's name, type, [values,] and flags.
1861  (helper functions for show_parameter_list)
1862 ***************************************************************************/
1863
1864 static void show_parameter(int parmIndex)
1865 {
1866         size_t enumIndex, flagIndex;
1867         size_t parmIndex2;
1868         bool hadFlag;
1869         bool hadSyn;
1870         bool inverse;
1871         const char *type[] = { "P_BOOL", "P_BOOLREV", "P_CHAR", "P_INTEGER",
1872                 "P_OCTAL", "P_LIST", "P_STRING", "P_USTRING",
1873                 "P_ENUM", "P_BYTES", "P_CMDLIST" };
1874         unsigned flags[] = { FLAG_DEPRECATED, FLAG_SYNONYM };
1875         const char *flag_names[] = { "FLAG_DEPRECATED", "FLAG_SYNONYM", NULL};
1876
1877         printf("%s=%s", parm_table[parmIndex].label,
1878                type[parm_table[parmIndex].type]);
1879         if (parm_table[parmIndex].type == P_ENUM) {
1880                 printf(",");
1881                 for (enumIndex=0;
1882                      parm_table[parmIndex].enum_list[enumIndex].name;
1883                      enumIndex++)
1884                 {
1885                         printf("%s%s",
1886                                enumIndex ? "|" : "",
1887                                parm_table[parmIndex].enum_list[enumIndex].name);
1888                 }
1889         }
1890         printf(",");
1891         hadFlag = false;
1892         for (flagIndex=0; flag_names[flagIndex]; flagIndex++) {
1893                 if (parm_table[parmIndex].flags & flags[flagIndex]) {
1894                         printf("%s%s",
1895                                 hadFlag ? "|" : "",
1896                                 flag_names[flagIndex]);
1897                         hadFlag = true;
1898                 }
1899         }
1900
1901         /* output synonyms */
1902         hadSyn = false;
1903         for (parmIndex2=0; parm_table[parmIndex2].label; parmIndex2++) {
1904                 if (is_synonym_of(parmIndex, parmIndex2, &inverse)) {
1905                         printf(" (%ssynonym of %s)", inverse ? "inverse " : "",
1906                                parm_table[parmIndex2].label);
1907                 } else if (is_synonym_of(parmIndex2, parmIndex, &inverse)) {
1908                         if (!hadSyn) {
1909                                 printf(" (synonyms: ");
1910                                 hadSyn = true;
1911                         } else {
1912                                 printf(", ");
1913                         }
1914                         printf("%s%s", parm_table[parmIndex2].label,
1915                                inverse ? "[i]" : "");
1916                 }
1917         }
1918         if (hadSyn) {
1919                 printf(")");
1920         }
1921
1922         printf("\n");
1923 }
1924
1925 /*
1926  * Check the value for a P_ENUM
1927  */
1928 static bool check_enum_parameter(struct parm_struct *parm, const char *value)
1929 {
1930         int i;
1931
1932         for (i = 0; parm->enum_list[i].name; i++) {
1933                 if (strwicmp(value, parm->enum_list[i].name) == 0) {
1934                         return true;
1935                 }
1936         }
1937         return false;
1938 }
1939
1940 /**************************************************************************
1941  Check whether the given value is valid for the given parameter name.
1942 **************************************************************************/
1943
1944 static bool lp_parameter_value_is_valid(const char *parm_name, const char *val)
1945 {
1946         bool ret = false, tmp_bool;
1947         int num = lpcfg_map_parameter(parm_name), tmp_int;
1948         uint64_t tmp_int64 = 0;
1949         struct parm_struct *parm;
1950
1951         /* parametric options (parameter names containing a colon) cannot
1952            be checked and are therefore considered valid. */
1953         if (strchr(parm_name, ':') != NULL) {
1954                 return true;
1955         }
1956
1957         if (num >= 0) {
1958                 parm = &parm_table[num];
1959                 switch (parm->type) {
1960                         case P_BOOL:
1961                         case P_BOOLREV:
1962                                 ret = set_boolean(val, &tmp_bool);
1963                                 break;
1964
1965                         case P_INTEGER:
1966                                 ret = (sscanf(val, "%d", &tmp_int) == 1);
1967                                 break;
1968
1969                         case P_OCTAL:
1970                                 ret = (sscanf(val, "%o", &tmp_int) == 1);
1971                                 break;
1972
1973                         case P_ENUM:
1974                                 ret = check_enum_parameter(parm, val);
1975                                 break;
1976
1977                         case P_BYTES:
1978                                 if (conv_str_size_error(val, &tmp_int64) &&
1979                                     tmp_int64 <= INT_MAX) {
1980                                         ret = true;
1981                                 }
1982                                 break;
1983
1984                         case P_CHAR:
1985                         case P_LIST:
1986                         case P_STRING:
1987                         case P_USTRING:
1988                         case P_CMDLIST:
1989                                 ret = true;
1990                                 break;
1991                 }
1992         }
1993         return ret;
1994 }
1995
1996 /***************************************************************************
1997  Show all parameter's name, type, [values,] and flags.
1998 ***************************************************************************/
1999
2000 void show_parameter_list(void)
2001 {
2002         int classIndex, parmIndex;
2003         const char *section_names[] = { "local", "global", NULL};
2004
2005         for (classIndex=0; section_names[classIndex]; classIndex++) {
2006                 printf("[%s]\n", section_names[classIndex]);
2007                 for (parmIndex = 0; parm_table[parmIndex].label; parmIndex++) {
2008                         if (parm_table[parmIndex].p_class == classIndex) {
2009                                 show_parameter(parmIndex);
2010                         }
2011                 }
2012         }
2013 }
2014
2015 /***************************************************************************
2016  Get the standard string representation of a boolean value ("yes" or "no")
2017 ***************************************************************************/
2018
2019 static const char *get_boolean(bool bool_value)
2020 {
2021         static const char *yes_str = "yes";
2022         static const char *no_str = "no";
2023
2024         return (bool_value ? yes_str : no_str);
2025 }
2026
2027 /***************************************************************************
2028  Provide the string of the negated boolean value associated to the boolean
2029  given as a string. Returns false if the passed string does not correctly
2030  represent a boolean.
2031 ***************************************************************************/
2032
2033 bool lp_invert_boolean(const char *str, const char **inverse_str)
2034 {
2035         bool val;
2036
2037         if (!set_boolean(str, &val)) {
2038                 return false;
2039         }
2040
2041         *inverse_str = get_boolean(!val);
2042         return true;
2043 }
2044
2045 /***************************************************************************
2046  Provide the canonical string representation of a boolean value given
2047  as a string. Return true on success, false if the string given does
2048  not correctly represent a boolean.
2049 ***************************************************************************/
2050
2051 bool lp_canonicalize_boolean(const char *str, const char**canon_str)
2052 {
2053         bool val;
2054
2055         if (!set_boolean(str, &val)) {
2056                 return false;
2057         }
2058
2059         *canon_str = get_boolean(val);
2060         return true;
2061 }
2062
2063 /***************************************************************************
2064 Find a service by name. Otherwise works like get_service.
2065 ***************************************************************************/
2066
2067 int getservicebyname(const char *pszServiceName, struct loadparm_service *pserviceDest)
2068 {
2069         int iService = -1;
2070         char *canon_name;
2071         TDB_DATA data;
2072         NTSTATUS status;
2073
2074         if (ServiceHash == NULL) {
2075                 return -1;
2076         }
2077
2078         canon_name = canonicalize_servicename(talloc_tos(), pszServiceName);
2079
2080         status = dbwrap_fetch_bystring(ServiceHash, canon_name, canon_name,
2081                                        &data);
2082
2083         if (NT_STATUS_IS_OK(status) &&
2084             (data.dptr != NULL) &&
2085             (data.dsize == sizeof(iService)))
2086         {
2087                 memcpy(&iService, data.dptr, sizeof(iService));
2088         }
2089
2090         TALLOC_FREE(canon_name);
2091
2092         if ((iService != -1) && (LP_SNUM_OK(iService))
2093             && (pserviceDest != NULL)) {
2094                 copy_service(pserviceDest, ServicePtrs[iService], NULL);
2095         }
2096
2097         return (iService);
2098 }
2099
2100 /* Return a pointer to a service by name.  Unlike getservicebyname, it does not copy the service */
2101 struct loadparm_service *lp_service(const char *pszServiceName)
2102 {
2103         int iService = getservicebyname(pszServiceName, NULL);
2104         if (iService == -1 || !LP_SNUM_OK(iService)) {
2105                 return NULL;
2106         }
2107         return ServicePtrs[iService];
2108 }
2109
2110 struct loadparm_service *lp_servicebynum(int snum)
2111 {
2112         if ((snum == -1) || !LP_SNUM_OK(snum)) {
2113                 return NULL;
2114         }
2115         return ServicePtrs[snum];
2116 }
2117
2118 struct loadparm_service *lp_default_loadparm_service()
2119 {
2120         return &sDefault;
2121 }
2122
2123 static struct smbconf_ctx *lp_smbconf_ctx(void)
2124 {
2125         sbcErr err;
2126         static struct smbconf_ctx *conf_ctx = NULL;
2127
2128         if (conf_ctx == NULL) {
2129                 err = smbconf_init(NULL, &conf_ctx, "registry:");
2130                 if (!SBC_ERROR_IS_OK(err)) {
2131                         DEBUG(1, ("error initializing registry configuration: "
2132                                   "%s\n", sbcErrorString(err)));
2133                         conf_ctx = NULL;
2134                 }
2135         }
2136
2137         return conf_ctx;
2138 }
2139
2140 static bool process_smbconf_service(struct smbconf_service *service)
2141 {
2142         uint32_t count;
2143         bool ret;
2144
2145         if (service == NULL) {
2146                 return false;
2147         }
2148
2149         ret = lp_do_section(service->name, NULL);
2150         if (ret != true) {
2151                 return false;
2152         }
2153         for (count = 0; count < service->num_params; count++) {
2154
2155                 if (!bInGlobalSection && bGlobalOnly) {
2156                         ret = true;
2157                 } else {
2158                         const char *pszParmName = service->param_names[count];
2159                         const char *pszParmValue = service->param_values[count];
2160
2161                         DEBUGADD(4, ("doing parameter %s = %s\n", pszParmName, pszParmValue));
2162
2163                         ret = lp_do_parameter(bInGlobalSection ? -2 : iServiceIndex,
2164                                               pszParmName, pszParmValue);
2165                 }
2166
2167                 if (ret != true) {
2168                         return false;
2169                 }
2170         }
2171         if (iServiceIndex >= 0) {
2172                 return lpcfg_service_ok(ServicePtrs[iServiceIndex]);
2173         }
2174         return true;
2175 }
2176
2177 /**
2178  * load a service from registry and activate it
2179  */
2180 bool process_registry_service(const char *service_name)
2181 {
2182         sbcErr err;
2183         struct smbconf_service *service = NULL;
2184         TALLOC_CTX *mem_ctx = talloc_stackframe();
2185         struct smbconf_ctx *conf_ctx = lp_smbconf_ctx();
2186         bool ret = false;
2187
2188         if (conf_ctx == NULL) {
2189                 goto done;
2190         }
2191
2192         DEBUG(5, ("process_registry_service: service name %s\n", service_name));
2193
2194         if (!smbconf_share_exists(conf_ctx, service_name)) {
2195                 /*
2196                  * Registry does not contain data for this service (yet),
2197                  * but make sure lp_load doesn't return false.
2198                  */
2199                 ret = true;
2200                 goto done;
2201         }
2202
2203         err = smbconf_get_share(conf_ctx, mem_ctx, service_name, &service);
2204         if (!SBC_ERROR_IS_OK(err)) {
2205                 goto done;
2206         }
2207
2208         ret = process_smbconf_service(service);
2209         if (!ret) {
2210                 goto done;
2211         }
2212
2213         /* store the csn */
2214         smbconf_changed(conf_ctx, &conf_last_csn, NULL, NULL);
2215
2216 done:
2217         TALLOC_FREE(mem_ctx);
2218         return ret;
2219 }
2220
2221 /*
2222  * process_registry_globals
2223  */
2224 static bool process_registry_globals(void)
2225 {
2226         bool ret;
2227
2228         add_to_file_list(NULL, &file_lists, INCLUDE_REGISTRY_NAME, INCLUDE_REGISTRY_NAME);
2229
2230         if (!bInGlobalSection && bGlobalOnly) {
2231                 ret = true;
2232         } else {
2233                 const char *pszParmName = "registry shares";
2234                 const char *pszParmValue = "yes";
2235
2236                 DEBUGADD(4, ("doing parameter %s = %s\n", pszParmName, pszParmValue));
2237
2238                 ret = lp_do_parameter(bInGlobalSection ? -2 : iServiceIndex,
2239                                       pszParmName, pszParmValue);
2240         }
2241
2242         if (!ret) {
2243                 return ret;
2244         }
2245
2246         return process_registry_service(GLOBAL_NAME);
2247 }
2248
2249 bool process_registry_shares(void)
2250 {
2251         sbcErr err;
2252         uint32_t count;
2253         struct smbconf_service **service = NULL;
2254         uint32_t num_shares = 0;
2255         TALLOC_CTX *mem_ctx = talloc_stackframe();
2256         struct smbconf_ctx *conf_ctx = lp_smbconf_ctx();
2257         bool ret = false;
2258
2259         if (conf_ctx == NULL) {
2260                 goto done;
2261         }
2262
2263         err = smbconf_get_config(conf_ctx, mem_ctx, &num_shares, &service);
2264         if (!SBC_ERROR_IS_OK(err)) {
2265                 goto done;
2266         }
2267
2268         ret = true;
2269
2270         for (count = 0; count < num_shares; count++) {
2271                 if (strequal(service[count]->name, GLOBAL_NAME)) {
2272                         continue;
2273                 }
2274                 ret = process_smbconf_service(service[count]);
2275                 if (!ret) {
2276                         goto done;
2277                 }
2278         }
2279
2280         /* store the csn */
2281         smbconf_changed(conf_ctx, &conf_last_csn, NULL, NULL);
2282
2283 done:
2284         TALLOC_FREE(mem_ctx);
2285         return ret;
2286 }
2287
2288 /**
2289  * reload those shares from registry that are already
2290  * activated in the services array.
2291  */
2292 static bool reload_registry_shares(void)
2293 {
2294         int i;
2295         bool ret = true;
2296
2297         for (i = 0; i < iNumServices; i++) {
2298                 if (!VALID(i)) {
2299                         continue;
2300                 }
2301
2302                 if (ServicePtrs[i]->usershare == USERSHARE_VALID) {
2303                         continue;
2304                 }
2305
2306                 ret = process_registry_service(ServicePtrs[i]->szService);
2307                 if (!ret) {
2308                         goto done;
2309                 }
2310         }
2311
2312 done:
2313         return ret;
2314 }
2315
2316
2317 #define MAX_INCLUDE_DEPTH 100
2318
2319 static uint8_t include_depth;
2320
2321 /**
2322  * Free the file lists
2323  */
2324 static void free_file_list(void)
2325 {
2326         struct file_lists *f;
2327         struct file_lists *next;
2328
2329         f = file_lists;
2330         while( f ) {
2331                 next = f->next;
2332                 TALLOC_FREE( f );
2333                 f = next;
2334         }
2335         file_lists = NULL;
2336 }
2337
2338
2339 /**
2340  * Utility function for outsiders to check if we're running on registry.
2341  */
2342 bool lp_config_backend_is_registry(void)
2343 {
2344         return (lp_config_backend() == CONFIG_BACKEND_REGISTRY);
2345 }
2346
2347 /**
2348  * Utility function to check if the config backend is FILE.
2349  */
2350 bool lp_config_backend_is_file(void)
2351 {
2352         return (lp_config_backend() == CONFIG_BACKEND_FILE);
2353 }
2354
2355 /*******************************************************************
2356  Check if a config file has changed date.
2357 ********************************************************************/
2358
2359 bool lp_file_list_changed(void)
2360 {
2361         struct file_lists *f = file_lists;
2362
2363         DEBUG(6, ("lp_file_list_changed()\n"));
2364
2365         while (f) {
2366                 if (strequal(f->name, INCLUDE_REGISTRY_NAME)) {
2367                         struct smbconf_ctx *conf_ctx = lp_smbconf_ctx();
2368
2369                         if (conf_ctx == NULL) {
2370                                 return false;
2371                         }
2372                         if (smbconf_changed(conf_ctx, &conf_last_csn, NULL,
2373                                             NULL))
2374                         {
2375                                 DEBUGADD(6, ("registry config changed\n"));
2376                                 return true;
2377                         }
2378                 } else {
2379                         time_t mod_time;
2380                         char *n2 = NULL;
2381
2382                         n2 = talloc_sub_basic(talloc_tos(),
2383                                               get_current_username(),
2384                                               current_user_info.domain,
2385                                               f->name);
2386                         if (!n2) {
2387                                 return false;
2388                         }
2389                         DEBUGADD(6, ("file %s -> %s  last mod_time: %s\n",
2390                                      f->name, n2, ctime(&f->modtime)));
2391
2392                         mod_time = file_modtime(n2);
2393
2394                         if (mod_time &&
2395                             ((f->modtime != mod_time) ||
2396                              (f->subfname == NULL) ||
2397                              (strcmp(n2, f->subfname) != 0)))
2398                         {
2399                                 DEBUGADD(6,
2400                                          ("file %s modified: %s\n", n2,
2401                                           ctime(&mod_time)));
2402                                 f->modtime = mod_time;
2403                                 TALLOC_FREE(f->subfname);
2404                                 f->subfname = talloc_strdup(f, n2);
2405                                 if (f->subfname == NULL) {
2406                                         smb_panic("talloc_strdup failed");
2407                                 }
2408                                 TALLOC_FREE(n2);
2409                                 return true;
2410                         }
2411                         TALLOC_FREE(n2);
2412                 }
2413                 f = f->next;
2414         }
2415         return false;
2416 }
2417
2418
2419 /**
2420  * Initialize iconv conversion descriptors.
2421  *
2422  * This is called the first time it is needed, and also called again
2423  * every time the configuration is reloaded, because the charset or
2424  * codepage might have changed.
2425  **/
2426 static void init_iconv(void)
2427 {
2428         struct smb_iconv_handle *ret = NULL;
2429
2430         ret = reinit_iconv_handle(NULL,
2431                                   lp_dos_charset(),
2432                                   lp_unix_charset());
2433         if (ret == NULL) {
2434                 smb_panic("reinit_iconv_handle failed");
2435         }
2436 }
2437
2438 /***************************************************************************
2439  Handle the include operation.
2440 ***************************************************************************/
2441 static bool bAllowIncludeRegistry = true;
2442
2443 bool lp_include(struct loadparm_context *lp_ctx, struct loadparm_service *service,
2444                 const char *pszParmValue, char **ptr)
2445 {
2446         char *fname;
2447
2448         if (include_depth >= MAX_INCLUDE_DEPTH) {
2449                 DEBUG(0, ("Error: Maximum include depth (%u) exceeded!\n",
2450                           include_depth));
2451                 return false;
2452         }
2453
2454         if (strequal(pszParmValue, INCLUDE_REGISTRY_NAME)) {
2455                 if (!bAllowIncludeRegistry) {
2456                         return true;
2457                 }
2458                 if (lp_ctx->bInGlobalSection) {
2459                         bool ret;
2460                         include_depth++;
2461                         ret = process_registry_globals();
2462                         include_depth--;
2463                         return ret;
2464                 } else {
2465                         DEBUG(1, ("\"include = registry\" only effective "
2466                                   "in %s section\n", GLOBAL_NAME));
2467                         return false;
2468                 }
2469         }
2470
2471         fname = talloc_sub_basic(talloc_tos(), get_current_username(),
2472                                  current_user_info.domain,
2473                                  pszParmValue);
2474
2475         add_to_file_list(NULL, &file_lists, pszParmValue, fname);
2476
2477         if (service == NULL) {
2478                 lpcfg_string_set(Globals.ctx, ptr, fname);
2479         } else {
2480                 lpcfg_string_set(service, ptr, fname);
2481         }
2482
2483         if (file_exist(fname)) {
2484                 bool ret;
2485                 include_depth++;
2486                 ret = pm_process(fname, lp_do_section, do_parameter, lp_ctx);
2487                 include_depth--;
2488                 TALLOC_FREE(fname);
2489                 return ret;
2490         }
2491
2492         DEBUG(2, ("Can't find include file %s\n", fname));
2493         TALLOC_FREE(fname);
2494         return true;
2495 }
2496
2497 bool lp_idmap_range(const char *domain_name, uint32_t *low, uint32_t *high)
2498 {
2499         char *config_option = NULL;
2500         const char *range = NULL;
2501         bool ret = false;
2502
2503         SMB_ASSERT(low != NULL);
2504         SMB_ASSERT(high != NULL);
2505
2506         if ((domain_name == NULL) || (domain_name[0] == '\0')) {
2507                 domain_name = "*";
2508         }
2509
2510         config_option = talloc_asprintf(talloc_tos(), "idmap config %s",
2511                                         domain_name);
2512         if (config_option == NULL) {
2513                 DEBUG(0, ("out of memory\n"));
2514                 return false;
2515         }
2516
2517         range = lp_parm_const_string(-1, config_option, "range", NULL);
2518         if (range == NULL) {
2519                 DEBUG(1, ("idmap range not specified for domain '%s'\n", domain_name));
2520                 goto done;
2521         }
2522
2523         if (sscanf(range, "%u - %u", low, high) != 2) {
2524                 DEBUG(1, ("error parsing idmap range '%s' for domain '%s'\n",
2525                           range, domain_name));
2526                 goto done;
2527         }
2528
2529         ret = true;
2530
2531 done:
2532         talloc_free(config_option);
2533         return ret;
2534
2535 }
2536
2537 bool lp_idmap_default_range(uint32_t *low, uint32_t *high)
2538 {
2539         return lp_idmap_range("*", low, high);
2540 }
2541
2542 const char *lp_idmap_backend(const char *domain_name)
2543 {
2544         char *config_option = NULL;
2545         const char *backend = NULL;
2546
2547         if ((domain_name == NULL) || (domain_name[0] == '\0')) {
2548                 domain_name = "*";
2549         }
2550
2551         config_option = talloc_asprintf(talloc_tos(), "idmap config %s",
2552                                         domain_name);
2553         if (config_option == NULL) {
2554                 DEBUG(0, ("out of memory\n"));
2555                 return false;
2556         }
2557
2558         backend = lp_parm_const_string(-1, config_option, "backend", NULL);
2559         if (backend == NULL) {
2560                 DEBUG(1, ("idmap backend not specified for domain '%s'\n", domain_name));
2561                 goto done;
2562         }
2563
2564 done:
2565         talloc_free(config_option);
2566         return backend;
2567 }
2568
2569 const char *lp_idmap_default_backend(void)
2570 {
2571         return lp_idmap_backend("*");
2572 }
2573
2574 /***************************************************************************
2575  Handle ldap suffixes - default to ldapsuffix if sub-suffixes are not defined.
2576 ***************************************************************************/
2577
2578 static const char *append_ldap_suffix(TALLOC_CTX *ctx, const char *str )
2579 {
2580         const char *suffix_string;
2581
2582         suffix_string = talloc_asprintf(ctx, "%s,%s", str,
2583                                         Globals.ldap_suffix );
2584         if ( !suffix_string ) {
2585                 DEBUG(0,("append_ldap_suffix: talloc_asprintf() failed!\n"));
2586                 return "";
2587         }
2588
2589         return suffix_string;
2590 }
2591
2592 const char *lp_ldap_machine_suffix(TALLOC_CTX *ctx)
2593 {
2594         if (Globals._ldap_machine_suffix[0])
2595                 return append_ldap_suffix(ctx, Globals._ldap_machine_suffix);
2596
2597         return talloc_strdup(ctx, Globals.ldap_suffix);
2598 }
2599
2600 const char *lp_ldap_user_suffix(TALLOC_CTX *ctx)
2601 {
2602         if (Globals._ldap_user_suffix[0])
2603                 return append_ldap_suffix(ctx, Globals._ldap_user_suffix);
2604
2605         return talloc_strdup(ctx, Globals.ldap_suffix);
2606 }
2607
2608 const char *lp_ldap_group_suffix(TALLOC_CTX *ctx)
2609 {
2610         if (Globals._ldap_group_suffix[0])
2611                 return append_ldap_suffix(ctx, Globals._ldap_group_suffix);
2612
2613         return talloc_strdup(ctx, Globals.ldap_suffix);
2614 }
2615
2616 const char *lp_ldap_idmap_suffix(TALLOC_CTX *ctx)
2617 {
2618         if (Globals._ldap_idmap_suffix[0])
2619                 return append_ldap_suffix(ctx, Globals._ldap_idmap_suffix);
2620
2621         return talloc_strdup(ctx, Globals.ldap_suffix);
2622 }
2623
2624 /**
2625   return the parameter pointer for a parameter
2626 */
2627 void *lp_parm_ptr(struct loadparm_service *service, struct parm_struct *parm)
2628 {
2629         if (service == NULL) {
2630                 if (parm->p_class == P_LOCAL)
2631                         return (void *)(((char *)&sDefault)+parm->offset);
2632                 else if (parm->p_class == P_GLOBAL)
2633                         return (void *)(((char *)&Globals)+parm->offset);
2634                 else return NULL;
2635         } else {
2636                 return (void *)(((char *)service) + parm->offset);
2637         }
2638 }
2639
2640 /***************************************************************************
2641  Process a parameter for a particular service number. If snum < 0
2642  then assume we are in the globals.
2643 ***************************************************************************/
2644
2645 bool lp_do_parameter(int snum, const char *pszParmName, const char *pszParmValue)
2646 {
2647         TALLOC_CTX *frame = talloc_stackframe();
2648         struct loadparm_context *lp_ctx;
2649         bool ok;
2650
2651         lp_ctx = setup_lp_context(frame);
2652         if (lp_ctx == NULL) {
2653                 TALLOC_FREE(frame);
2654                 return false;
2655         }
2656
2657         if (snum < 0) {
2658                 ok = lpcfg_do_global_parameter(lp_ctx, pszParmName, pszParmValue);
2659         } else {
2660                 ok = lpcfg_do_service_parameter(lp_ctx, ServicePtrs[snum],
2661                                                 pszParmName, pszParmValue);
2662         }
2663
2664         TALLOC_FREE(frame);
2665
2666         return ok;
2667 }
2668
2669 /***************************************************************************
2670 set a parameter, marking it with FLAG_CMDLINE. Parameters marked as
2671 FLAG_CMDLINE won't be overridden by loads from smb.conf.
2672 ***************************************************************************/
2673
2674 static bool lp_set_cmdline_helper(const char *pszParmName, const char *pszParmValue)
2675 {
2676         int parmnum, i;
2677         parmnum = lpcfg_map_parameter(pszParmName);
2678         if (parmnum >= 0) {
2679                 flags_list[parmnum] &= ~FLAG_CMDLINE;
2680                 if (!lp_do_parameter(-1, pszParmName, pszParmValue)) {
2681                         return false;
2682                 }
2683                 flags_list[parmnum] |= FLAG_CMDLINE;
2684
2685                 /* we have to also set FLAG_CMDLINE on aliases.  Aliases must
2686                  * be grouped in the table, so we don't have to search the
2687                  * whole table */
2688                 for (i=parmnum-1;
2689                      i>=0 && parm_table[i].offset == parm_table[parmnum].offset
2690                              && parm_table[i].p_class == parm_table[parmnum].p_class;
2691                      i--) {
2692                         flags_list[i] |= FLAG_CMDLINE;
2693                 }
2694                 for (i=parmnum+1;i<num_parameters() && parm_table[i].offset == parm_table[parmnum].offset
2695                              && parm_table[i].p_class == parm_table[parmnum].p_class;i++) {
2696                         flags_list[i] |= FLAG_CMDLINE;
2697                 }
2698
2699                 return true;
2700         }
2701
2702         /* it might be parametric */
2703         if (strchr(pszParmName, ':') != NULL) {
2704                 set_param_opt(NULL, &Globals.param_opt, pszParmName, pszParmValue, FLAG_CMDLINE);
2705                 return true;
2706         }
2707
2708         DEBUG(0, ("Ignoring unknown parameter \"%s\"\n",  pszParmName));
2709         return false;
2710 }
2711
2712 bool lp_set_cmdline(const char *pszParmName, const char *pszParmValue)
2713 {
2714         bool ret;
2715         TALLOC_CTX *frame = talloc_stackframe();
2716         struct loadparm_context *lp_ctx;
2717
2718         lp_ctx = setup_lp_context(frame);
2719         if (lp_ctx == NULL) {
2720                 TALLOC_FREE(frame);
2721                 return false;
2722         }
2723
2724         ret = lpcfg_set_cmdline(lp_ctx, pszParmName, pszParmValue);
2725
2726         TALLOC_FREE(frame);
2727         return ret;
2728 }
2729
2730 /***************************************************************************
2731  Process a parameter.
2732 ***************************************************************************/
2733
2734 static bool do_parameter(const char *pszParmName, const char *pszParmValue,
2735                          void *userdata)
2736 {
2737         if (!bInGlobalSection && bGlobalOnly)
2738                 return true;
2739
2740         DEBUGADD(4, ("doing parameter %s = %s\n", pszParmName, pszParmValue));
2741
2742         if (bInGlobalSection) {
2743                 return lpcfg_do_global_parameter(userdata, pszParmName, pszParmValue);
2744         } else {
2745                 return lpcfg_do_service_parameter(userdata, ServicePtrs[iServiceIndex],
2746                                                   pszParmName, pszParmValue);
2747         }
2748 }
2749
2750 /***************************************************************************
2751  Initialize any local variables in the sDefault table, after parsing a
2752  [globals] section.
2753 ***************************************************************************/
2754
2755 static void init_locals(void)
2756 {
2757         /*
2758          * We run this check once the [globals] is parsed, to force
2759          * the VFS objects and other per-share settings we need for
2760          * the standard way a AD DC is operated.  We may change these
2761          * as our code evolves, which is why we force these settings.
2762          *
2763          * We can't do this at the end of lp_load_ex(), as by that
2764          * point the services have been loaded and they will already
2765          * have "" as their vfs objects.
2766          */
2767         if (lp_server_role() == ROLE_ACTIVE_DIRECTORY_DC) {
2768                 const char **vfs_objects = lp_vfs_objects(-1);
2769                 if (!vfs_objects || !vfs_objects[0]) {
2770                         if (lp_parm_const_string(-1, "xattr_tdb", "file", NULL)) {
2771                                 lp_do_parameter(-1, "vfs objects", "dfs_samba4 acl_xattr xattr_tdb");
2772                         } else if (lp_parm_const_string(-1, "posix", "eadb", NULL)) {
2773                                 lp_do_parameter(-1, "vfs objects", "dfs_samba4 acl_xattr posix_eadb");
2774                         } else {
2775                                 lp_do_parameter(-1, "vfs objects", "dfs_samba4 acl_xattr");
2776                         }
2777                 }
2778
2779                 lp_do_parameter(-1, "map hidden", "no");
2780                 lp_do_parameter(-1, "map system", "no");
2781                 lp_do_parameter(-1, "map readonly", "no");
2782                 lp_do_parameter(-1, "map archive", "no");
2783                 lp_do_parameter(-1, "store dos attributes", "yes");
2784         }
2785 }
2786
2787 /***************************************************************************
2788  Process a new section (service). At this stage all sections are services.
2789  Later we'll have special sections that permit server parameters to be set.
2790  Returns true on success, false on failure.
2791 ***************************************************************************/
2792
2793 bool lp_do_section(const char *pszSectionName, void *userdata)
2794 {
2795         struct loadparm_context *lp_ctx = (struct loadparm_context *)userdata;
2796         bool bRetval;
2797         bool isglobal = ((strwicmp(pszSectionName, GLOBAL_NAME) == 0) ||
2798                          (strwicmp(pszSectionName, GLOBAL_NAME2) == 0));
2799
2800         /* if we were in a global section then do the local inits */
2801         if (bInGlobalSection && !isglobal)
2802                 init_locals();
2803
2804         /* if we've just struck a global section, note the fact. */
2805         bInGlobalSection = isglobal;
2806         if (lp_ctx != NULL) {
2807                 lp_ctx->bInGlobalSection = isglobal;
2808         }
2809
2810         /* check for multiple global sections */
2811         if (bInGlobalSection) {
2812                 DEBUG(3, ("Processing section \"[%s]\"\n", pszSectionName));
2813                 return true;
2814         }
2815
2816         if (!bInGlobalSection && bGlobalOnly)
2817                 return true;
2818
2819         /* if we have a current service, tidy it up before moving on */
2820         bRetval = true;
2821
2822         if (iServiceIndex >= 0)
2823                 bRetval = lpcfg_service_ok(ServicePtrs[iServiceIndex]);
2824
2825         /* if all is still well, move to the next record in the services array */
2826         if (bRetval) {
2827                 /* We put this here to avoid an odd message order if messages are */
2828                 /* issued by the post-processing of a previous section. */
2829                 DEBUG(2, ("Processing section \"[%s]\"\n", pszSectionName));
2830
2831                 iServiceIndex = add_a_service(&sDefault, pszSectionName);
2832                 if (iServiceIndex < 0) {
2833                         DEBUG(0, ("Failed to add a new service\n"));
2834                         return false;
2835                 }
2836                 /* Clean all parametric options for service */
2837                 /* They will be added during parsing again */
2838                 free_param_opts(&ServicePtrs[iServiceIndex]->param_opt);
2839         }
2840
2841         return bRetval;
2842 }
2843
2844 /***************************************************************************
2845  Display the contents of a parameter of a single services record.
2846 ***************************************************************************/
2847
2848 bool dump_a_parameter(int snum, char *parm_name, FILE * f, bool isGlobal)
2849 {
2850         bool result = false;
2851         struct loadparm_context *lp_ctx;
2852
2853         lp_ctx = setup_lp_context(talloc_tos());
2854         if (lp_ctx == NULL) {
2855                 return false;
2856         }
2857
2858         if (isGlobal) {
2859                 result = lpcfg_dump_a_parameter(lp_ctx, NULL, parm_name, f);
2860         } else {
2861                 result = lpcfg_dump_a_parameter(lp_ctx, ServicePtrs[snum], parm_name, f);
2862         }
2863         TALLOC_FREE(lp_ctx);
2864         return result;
2865 }
2866
2867 #if 0
2868 /***************************************************************************
2869  Display the contents of a single copy structure.
2870 ***************************************************************************/
2871 static void dump_copy_map(bool *pcopymap)
2872 {
2873         int i;
2874         if (!pcopymap)
2875                 return;
2876
2877         printf("\n\tNon-Copied parameters:\n");
2878
2879         for (i = 0; parm_table[i].label; i++)
2880                 if (parm_table[i].p_class == P_LOCAL &&
2881                     parm_table[i].ptr && !pcopymap[i] &&
2882                     (i == 0 || (parm_table[i].ptr != parm_table[i - 1].ptr)))
2883                 {
2884                         printf("\t\t%s\n", parm_table[i].label);
2885                 }
2886 }
2887 #endif
2888
2889 /***************************************************************************
2890  Return TRUE if the passed service number is within range.
2891 ***************************************************************************/
2892
2893 bool lp_snum_ok(int iService)
2894 {
2895         return (LP_SNUM_OK(iService) && ServicePtrs[iService]->available);
2896 }
2897
2898 /***************************************************************************
2899  Auto-load some home services.
2900 ***************************************************************************/
2901
2902 static void lp_add_auto_services(const char *str)
2903 {
2904         char *s;
2905         char *p;
2906         int homes;
2907         char *saveptr;
2908
2909         if (!str)
2910                 return;
2911
2912         s = talloc_strdup(talloc_tos(), str);
2913         if (!s) {
2914                 smb_panic("talloc_strdup failed");
2915                 return;
2916         }
2917
2918         homes = lp_servicenumber(HOMES_NAME);
2919
2920         for (p = strtok_r(s, LIST_SEP, &saveptr); p;
2921              p = strtok_r(NULL, LIST_SEP, &saveptr)) {
2922                 char *home;
2923
2924                 if (lp_servicenumber(p) >= 0)
2925                         continue;
2926
2927                 home = get_user_home_dir(talloc_tos(), p);
2928
2929                 if (home && home[0] && homes >= 0)
2930                         lp_add_home(p, homes, p, home);
2931
2932                 TALLOC_FREE(home);
2933         }
2934         TALLOC_FREE(s);
2935 }
2936
2937 /***************************************************************************
2938  Auto-load one printer.
2939 ***************************************************************************/
2940
2941 void lp_add_one_printer(const char *name, const char *comment,
2942                         const char *location, void *pdata)
2943 {
2944         int printers = lp_servicenumber(PRINTERS_NAME);
2945         int i;
2946
2947         if (lp_servicenumber(name) < 0) {
2948                 lp_add_printer(name, printers);
2949                 if ((i = lp_servicenumber(name)) >= 0) {
2950                         lpcfg_string_set(ServicePtrs[i],
2951                                          &ServicePtrs[i]->comment, comment);
2952                         ServicePtrs[i]->autoloaded = true;
2953                 }
2954         }
2955 }
2956
2957 /***************************************************************************
2958  Have we loaded a services file yet?
2959 ***************************************************************************/
2960
2961 bool lp_loaded(void)
2962 {
2963         return (bLoaded);
2964 }
2965
2966 /***************************************************************************
2967  Unload unused services.
2968 ***************************************************************************/
2969
2970 void lp_killunused(struct smbd_server_connection *sconn,
2971                    bool (*snumused) (struct smbd_server_connection *, int))
2972 {
2973         int i;
2974         for (i = 0; i < iNumServices; i++) {
2975                 if (!VALID(i))
2976                         continue;
2977
2978                 /* don't kill autoloaded or usershare services */
2979                 if ( ServicePtrs[i]->autoloaded ||
2980                                 ServicePtrs[i]->usershare == USERSHARE_VALID) {
2981                         continue;
2982                 }
2983
2984                 if (!snumused || !snumused(sconn, i)) {
2985                         free_service_byindex(i);
2986                 }
2987         }
2988 }
2989
2990 /**
2991  * Kill all except autoloaded and usershare services - convenience wrapper
2992  */
2993 void lp_kill_all_services(void)
2994 {
2995         lp_killunused(NULL, NULL);
2996 }
2997
2998 /***************************************************************************
2999  Unload a service.
3000 ***************************************************************************/
3001
3002 void lp_killservice(int iServiceIn)
3003 {
3004         if (VALID(iServiceIn)) {
3005                 free_service_byindex(iServiceIn);
3006         }
3007 }
3008
3009 /***************************************************************************
3010  Save the curent values of all global and sDefault parameters into the 
3011  defaults union. This allows testparm to show only the
3012  changed (ie. non-default) parameters.
3013 ***************************************************************************/
3014
3015 static void lp_save_defaults(void)
3016 {
3017         int i;
3018         struct parmlist_entry * parm;
3019         for (i = 0; parm_table[i].label; i++) {
3020                 if (!(flags_list[i] & FLAG_CMDLINE)) {
3021                         flags_list[i] |= FLAG_DEFAULT;
3022                 }
3023
3024                 if (i > 0 && parm_table[i].offset == parm_table[i - 1].offset
3025                     && parm_table[i].p_class == parm_table[i - 1].p_class)
3026                         continue;
3027                 switch (parm_table[i].type) {
3028                         case P_LIST:
3029                         case P_CMDLIST:
3030                                 parm_table[i].def.lvalue = str_list_copy(
3031                                         NULL, *(const char ***)lp_parm_ptr(NULL, &parm_table[i]));
3032                                 break;
3033                         case P_STRING:
3034                         case P_USTRING:
3035                                 lpcfg_string_set(
3036                                         Globals.ctx,
3037                                         &parm_table[i].def.svalue,
3038                                         *(char **)lp_parm_ptr(
3039                                                 NULL, &parm_table[i]));
3040                                 if (parm_table[i].def.svalue == NULL) {
3041                                         smb_panic("lpcfg_string_set() failed");
3042                                 }
3043                                 break;
3044                         case P_BOOL:
3045                         case P_BOOLREV:
3046                                 parm_table[i].def.bvalue =
3047                                         *(bool *)lp_parm_ptr(NULL, &parm_table[i]);
3048                                 break;
3049                         case P_CHAR:
3050                                 parm_table[i].def.cvalue =
3051                                         *(char *)lp_parm_ptr(NULL, &parm_table[i]);
3052                                 break;
3053                         case P_INTEGER:
3054                         case P_OCTAL:
3055                         case P_ENUM:
3056                         case P_BYTES:
3057                                 parm_table[i].def.ivalue =
3058                                         *(int *)lp_parm_ptr(NULL, &parm_table[i]);
3059                                 break;
3060                 }
3061         }
3062
3063         for (parm=Globals.param_opt; parm; parm=parm->next) {
3064                 if (!(parm->priority & FLAG_CMDLINE)) {
3065                         parm->priority |= FLAG_DEFAULT;
3066                 }
3067         }
3068
3069         for (parm=sDefault.param_opt; parm; parm=parm->next) {
3070                 if (!(parm->priority & FLAG_CMDLINE)) {
3071                         parm->priority |= FLAG_DEFAULT;
3072                 }
3073         }
3074
3075         defaults_saved = true;
3076 }
3077
3078 /***********************************************************
3079  If we should send plaintext/LANMAN passwords in the clinet
3080 ************************************************************/
3081
3082 static void set_allowed_client_auth(void)
3083 {
3084         if (Globals.client_ntlmv2_auth) {
3085                 Globals.client_lanman_auth = false;
3086         }
3087         if (!Globals.client_lanman_auth) {
3088                 Globals.client_plaintext_auth = false;
3089         }
3090 }
3091
3092 /***************************************************************************
3093  JRA.
3094  The following code allows smbd to read a user defined share file.
3095  Yes, this is my intent. Yes, I'm comfortable with that...
3096
3097  THE FOLLOWING IS SECURITY CRITICAL CODE.
3098
3099  It washes your clothes, it cleans your house, it guards you while you sleep...
3100  Do not f%^k with it....
3101 ***************************************************************************/
3102
3103 #define MAX_USERSHARE_FILE_SIZE (10*1024)
3104
3105 /***************************************************************************
3106  Check allowed stat state of a usershare file.
3107  Ensure we print out who is dicking with us so the admin can
3108  get their sorry ass fired.
3109 ***************************************************************************/
3110
3111 static bool check_usershare_stat(const char *fname,
3112                                  const SMB_STRUCT_STAT *psbuf)
3113 {
3114         if (!S_ISREG(psbuf->st_ex_mode)) {
3115                 DEBUG(0,("check_usershare_stat: file %s owned by uid %u is "
3116                         "not a regular file\n",
3117                         fname, (unsigned int)psbuf->st_ex_uid ));
3118                 return false;
3119         }
3120
3121         /* Ensure this doesn't have the other write bit set. */
3122         if (psbuf->st_ex_mode & S_IWOTH) {
3123                 DEBUG(0,("check_usershare_stat: file %s owned by uid %u allows "
3124                         "public write. Refusing to allow as a usershare file.\n",
3125                         fname, (unsigned int)psbuf->st_ex_uid ));
3126                 return false;
3127         }
3128
3129         /* Should be 10k or less. */
3130         if (psbuf->st_ex_size > MAX_USERSHARE_FILE_SIZE) {
3131                 DEBUG(0,("check_usershare_stat: file %s owned by uid %u is "
3132                         "too large (%u) to be a user share file.\n",
3133                         fname, (unsigned int)psbuf->st_ex_uid,
3134                         (unsigned int)psbuf->st_ex_size ));
3135                 return false;
3136         }
3137
3138         return true;
3139 }
3140
3141 /***************************************************************************
3142  Parse the contents of a usershare file.
3143 ***************************************************************************/
3144
3145 enum usershare_err parse_usershare_file(TALLOC_CTX *ctx,
3146                         SMB_STRUCT_STAT *psbuf,
3147                         const char *servicename,
3148                         int snum,
3149                         char **lines,
3150                         int numlines,
3151                         char **pp_sharepath,
3152                         char **pp_comment,
3153                         char **pp_cp_servicename,
3154                         struct security_descriptor **ppsd,
3155                         bool *pallow_guest)
3156 {
3157         const char **prefixallowlist = lp_usershare_prefix_allow_list();
3158         const char **prefixdenylist = lp_usershare_prefix_deny_list();
3159         int us_vers;
3160         DIR *dp;
3161         SMB_STRUCT_STAT sbuf;
3162         char *sharepath = NULL;
3163         char *comment = NULL;
3164
3165         *pp_sharepath = NULL;
3166         *pp_comment = NULL;
3167
3168         *pallow_guest = false;
3169
3170         if (numlines < 4) {
3171                 return USERSHARE_MALFORMED_FILE;
3172         }
3173
3174         if (strcmp(lines[0], "#VERSION 1") == 0) {
3175                 us_vers = 1;
3176         } else if (strcmp(lines[0], "#VERSION 2") == 0) {
3177                 us_vers = 2;
3178                 if (numlines < 5) {
3179                         return USERSHARE_MALFORMED_FILE;
3180                 }
3181         } else {
3182                 return USERSHARE_BAD_VERSION;
3183         }
3184
3185         if (strncmp(lines[1], "path=", 5) != 0) {
3186                 return USERSHARE_MALFORMED_PATH;
3187         }
3188
3189         sharepath = talloc_strdup(ctx, &lines[1][5]);
3190         if (!sharepath) {
3191                 return USERSHARE_POSIX_ERR;
3192         }
3193         trim_string(sharepath, " ", " ");
3194
3195         if (strncmp(lines[2], "comment=", 8) != 0) {
3196                 return USERSHARE_MALFORMED_COMMENT_DEF;
3197         }
3198
3199         comment = talloc_strdup(ctx, &lines[2][8]);
3200         if (!comment) {
3201                 return USERSHARE_POSIX_ERR;
3202         }
3203         trim_string(comment, " ", " ");
3204         trim_char(comment, '"', '"');
3205
3206         if (strncmp(lines[3], "usershare_acl=", 14) != 0) {
3207                 return USERSHARE_MALFORMED_ACL_DEF;
3208         }
3209
3210         if (!parse_usershare_acl(ctx, &lines[3][14], ppsd)) {
3211                 return USERSHARE_ACL_ERR;
3212         }
3213
3214         if (us_vers == 2) {
3215                 if (strncmp(lines[4], "guest_ok=", 9) != 0) {
3216                         return USERSHARE_MALFORMED_ACL_DEF;
3217                 }
3218                 if (lines[4][9] == 'y') {
3219                         *pallow_guest = true;
3220                 }
3221
3222                 /* Backwards compatible extension to file version #2. */
3223                 if (numlines > 5) {
3224                         if (strncmp(lines[5], "sharename=", 10) != 0) {
3225                                 return USERSHARE_MALFORMED_SHARENAME_DEF;
3226                         }
3227                         if (!strequal(&lines[5][10], servicename)) {
3228                                 return USERSHARE_BAD_SHARENAME;
3229                         }
3230                         *pp_cp_servicename = talloc_strdup(ctx, &lines[5][10]);
3231                         if (!*pp_cp_servicename) {
3232                                 return USERSHARE_POSIX_ERR;
3233                         }
3234                 }
3235         }
3236
3237         if (*pp_cp_servicename == NULL) {
3238                 *pp_cp_servicename = talloc_strdup(ctx, servicename);
3239                 if (!*pp_cp_servicename) {
3240                         return USERSHARE_POSIX_ERR;
3241                 }
3242         }
3243
3244         if (snum != -1 && (strcmp(sharepath, ServicePtrs[snum]->path) == 0)) {
3245                 /* Path didn't change, no checks needed. */
3246                 *pp_sharepath = sharepath;
3247                 *pp_comment = comment;
3248                 return USERSHARE_OK;
3249         }
3250
3251         /* The path *must* be absolute. */
3252         if (sharepath[0] != '/') {
3253                 DEBUG(2,("parse_usershare_file: share %s: path %s is not an absolute path.\n",
3254                         servicename, sharepath));
3255                 return USERSHARE_PATH_NOT_ABSOLUTE;
3256         }
3257
3258         /* If there is a usershare prefix deny list ensure one of these paths
3259            doesn't match the start of the user given path. */
3260         if (prefixdenylist) {
3261                 int i;
3262                 for ( i=0; prefixdenylist[i]; i++ ) {
3263                         DEBUG(10,("parse_usershare_file: share %s : checking prefixdenylist[%d]='%s' against %s\n",
3264                                 servicename, i, prefixdenylist[i], sharepath ));
3265                         if (memcmp( sharepath, prefixdenylist[i], strlen(prefixdenylist[i])) == 0) {
3266                                 DEBUG(2,("parse_usershare_file: share %s path %s starts with one of the "
3267                                         "usershare prefix deny list entries.\n",
3268                                         servicename, sharepath));
3269                                 return USERSHARE_PATH_IS_DENIED;
3270                         }
3271                 }
3272         }
3273
3274         /* If there is a usershare prefix allow list ensure one of these paths
3275            does match the start of the user given path. */
3276
3277         if (prefixallowlist) {
3278                 int i;
3279                 for ( i=0; prefixallowlist[i]; i++ ) {
3280                         DEBUG(10,("parse_usershare_file: share %s checking prefixallowlist[%d]='%s' against %s\n",
3281                                 servicename, i, prefixallowlist[i], sharepath ));
3282                         if (memcmp( sharepath, prefixallowlist[i], strlen(prefixallowlist[i])) == 0) {
3283                                 break;
3284                         }
3285                 }
3286                 if (prefixallowlist[i] == NULL) {
3287                         DEBUG(2,("parse_usershare_file: share %s path %s doesn't start with one of the "
3288                                 "usershare prefix allow list entries.\n",
3289                                 servicename, sharepath));
3290                         return USERSHARE_PATH_NOT_ALLOWED;
3291                 }
3292         }
3293
3294         /* Ensure this is pointing to a directory. */
3295         dp = opendir(sharepath);
3296
3297         if (!dp) {
3298                 DEBUG(2,("parse_usershare_file: share %s path %s is not a directory.\n",
3299                         servicename, sharepath));
3300                 return USERSHARE_PATH_NOT_DIRECTORY;
3301         }
3302
3303         /* Ensure the owner of the usershare file has permission to share
3304            this directory. */
3305
3306         if (sys_stat(sharepath, &sbuf, false) == -1) {
3307                 DEBUG(2,("parse_usershare_file: share %s : stat failed on path %s. %s\n",
3308                         servicename, sharepath, strerror(errno) ));
3309                 closedir(dp);
3310                 return USERSHARE_POSIX_ERR;
3311         }
3312
3313         closedir(dp);
3314
3315         if (!S_ISDIR(sbuf.st_ex_mode)) {
3316                 DEBUG(2,("parse_usershare_file: share %s path %s is not a directory.\n",
3317                         servicename, sharepath ));
3318                 return USERSHARE_PATH_NOT_DIRECTORY;
3319         }
3320
3321         /* Check if sharing is restricted to owner-only. */
3322         /* psbuf is the stat of the usershare definition file,
3323            sbuf is the stat of the target directory to be shared. */
3324
3325         if (lp_usershare_owner_only()) {
3326                 /* root can share anything. */
3327                 if ((psbuf->st_ex_uid != 0) && (sbuf.st_ex_uid != psbuf->st_ex_uid)) {
3328                         return USERSHARE_PATH_NOT_ALLOWED;
3329                 }
3330         }
3331
3332         *pp_sharepath = sharepath;
3333         *pp_comment = comment;
3334         return USERSHARE_OK;
3335 }
3336
3337 /***************************************************************************
3338  Deal with a usershare file.
3339  Returns:
3340         >= 0 - snum
3341         -1 - Bad name, invalid contents.
3342            - service name already existed and not a usershare, problem
3343             with permissions to share directory etc.
3344 ***************************************************************************/
3345
3346 static int process_usershare_file(const char *dir_name, const char *file_name, int snum_template)
3347 {
3348         SMB_STRUCT_STAT sbuf;
3349         SMB_STRUCT_STAT lsbuf;
3350         char *fname = NULL;
3351         char *sharepath = NULL;
3352         char *comment = NULL;
3353         char *cp_service_name = NULL;
3354         char **lines = NULL;
3355         int numlines = 0;
3356         int fd = -1;
3357         int iService = -1;
3358         TALLOC_CTX *ctx = talloc_stackframe();
3359         struct security_descriptor *psd = NULL;
3360         bool guest_ok = false;
3361         char *canon_name = NULL;
3362         bool added_service = false;
3363         int ret = -1;
3364         NTSTATUS status;
3365
3366         /* Ensure share name doesn't contain invalid characters. */
3367         if (!validate_net_name(file_name, INVALID_SHARENAME_CHARS, strlen(file_name))) {
3368                 DEBUG(0,("process_usershare_file: share name %s contains "
3369                         "invalid characters (any of %s)\n",
3370                         file_name, INVALID_SHARENAME_CHARS ));
3371                 goto out;
3372         }
3373
3374         canon_name = canonicalize_servicename(ctx, file_name);
3375         if (!canon_name) {
3376                 goto out;
3377         }
3378
3379         fname = talloc_asprintf(ctx, "%s/%s", dir_name, file_name);
3380         if (!fname) {
3381                 goto out;
3382         }
3383
3384         /* Minimize the race condition by doing an lstat before we
3385            open and fstat. Ensure this isn't a symlink link. */
3386
3387         if (sys_lstat(fname, &lsbuf, false) != 0) {
3388                 DEBUG(0,("process_usershare_file: stat of %s failed. %s\n",
3389                         fname, strerror(errno) ));
3390                 goto out;
3391         }
3392
3393         /* This must be a regular file, not a symlink, directory or
3394            other strange filetype. */
3395         if (!check_usershare_stat(fname, &lsbuf)) {
3396                 goto out;
3397         }
3398
3399         {
3400                 TDB_DATA data;
3401
3402                 status = dbwrap_fetch_bystring(ServiceHash, canon_name,
3403                                                canon_name, &data);
3404
3405                 iService = -1;
3406
3407                 if (NT_STATUS_IS_OK(status) &&
3408                     (data.dptr != NULL) &&
3409                     (data.dsize == sizeof(iService))) {
3410                         memcpy(&iService, data.dptr, sizeof(iService));
3411                 }
3412         }
3413
3414         if (iService != -1 &&
3415             timespec_compare(&ServicePtrs[iService]->usershare_last_mod,
3416                              &lsbuf.st_ex_mtime) == 0) {
3417                 /* Nothing changed - Mark valid and return. */
3418                 DEBUG(10,("process_usershare_file: service %s not changed.\n",
3419                         canon_name ));
3420                 ServicePtrs[iService]->usershare = USERSHARE_VALID;
3421                 ret = iService;
3422                 goto out;
3423         }
3424
3425         /* Try and open the file read only - no symlinks allowed. */
3426 #ifdef O_NOFOLLOW
3427         fd = open(fname, O_RDONLY|O_NOFOLLOW, 0);
3428 #else
3429         fd = open(fname, O_RDONLY, 0);
3430 #endif
3431
3432         if (fd == -1) {
3433                 DEBUG(0,("process_usershare_file: unable to open %s. %s\n",
3434                         fname, strerror(errno) ));
3435                 goto out;
3436         }
3437
3438         /* Now fstat to be *SURE* it's a regular file. */
3439         if (sys_fstat(fd, &sbuf, false) != 0) {
3440                 close(fd);
3441                 DEBUG(0,("process_usershare_file: fstat of %s failed. %s\n",
3442                         fname, strerror(errno) ));
3443                 goto out;
3444         }
3445
3446         /* Is it the same dev/inode as was lstated ? */
3447         if (!check_same_stat(&lsbuf, &sbuf)) {
3448                 close(fd);
3449                 DEBUG(0,("process_usershare_file: fstat of %s is a different file from lstat. "
3450                         "Symlink spoofing going on ?\n", fname ));
3451                 goto out;
3452         }
3453
3454         /* This must be a regular file, not a symlink, directory or
3455            other strange filetype. */
3456         if (!check_usershare_stat(fname, &sbuf)) {
3457                 close(fd);
3458                 goto out;
3459         }
3460
3461         lines = fd_lines_load(fd, &numlines, MAX_USERSHARE_FILE_SIZE, NULL);
3462
3463         close(fd);
3464         if (lines == NULL) {
3465                 DEBUG(0,("process_usershare_file: loading file %s owned by %u failed.\n",
3466                         fname, (unsigned int)sbuf.st_ex_uid ));
3467                 goto out;
3468         }
3469
3470         if (parse_usershare_file(ctx, &sbuf, file_name,
3471                         iService, lines, numlines, &sharepath,
3472                         &comment, &cp_service_name,
3473                         &psd, &guest_ok) != USERSHARE_OK) {
3474                 goto out;
3475         }
3476
3477         /* Everything ok - add the service possibly using a template. */
3478         if (iService < 0) {
3479                 const struct loadparm_service *sp = &sDefault;
3480                 if (snum_template != -1) {
3481                         sp = ServicePtrs[snum_template];
3482                 }
3483
3484                 if ((iService = add_a_service(sp, cp_service_name)) < 0) {
3485                         DEBUG(0, ("process_usershare_file: Failed to add "
3486                                 "new service %s\n", cp_service_name));
3487                         goto out;
3488                 }
3489
3490                 added_service = true;
3491
3492                 /* Read only is controlled by usershare ACL below. */
3493                 ServicePtrs[iService]->read_only = false;
3494         }
3495
3496         /* Write the ACL of the new/modified share. */
3497         status = set_share_security(canon_name, psd);
3498         if (!NT_STATUS_IS_OK(status)) {
3499                  DEBUG(0, ("process_usershare_file: Failed to set share "
3500                         "security for user share %s\n",
3501                         canon_name ));
3502                 goto out;
3503         }
3504
3505         /* If from a template it may be marked invalid. */
3506         ServicePtrs[iService]->valid = true;
3507
3508         /* Set the service as a valid usershare. */
3509         ServicePtrs[iService]->usershare = USERSHARE_VALID;
3510
3511         /* Set guest access. */
3512         if (lp_usershare_allow_guests()) {
3513                 ServicePtrs[iService]->guest_ok = guest_ok;
3514         }
3515
3516         /* And note when it was loaded. */
3517         ServicePtrs[iService]->usershare_last_mod = sbuf.st_ex_mtime;
3518         lpcfg_string_set(ServicePtrs[iService], &ServicePtrs[iService]->path,
3519                          sharepath);
3520         lpcfg_string_set(ServicePtrs[iService],
3521                          &ServicePtrs[iService]->comment, comment);
3522
3523         ret = iService;
3524
3525   out:
3526
3527         if (ret == -1 && iService != -1 && added_service) {
3528                 lp_remove_service(iService);
3529         }
3530
3531         TALLOC_FREE(lines);
3532         TALLOC_FREE(ctx);
3533         return ret;
3534 }
3535
3536 /***************************************************************************
3537  Checks if a usershare entry has been modified since last load.
3538 ***************************************************************************/
3539
3540 static bool usershare_exists(int iService, struct timespec *last_mod)
3541 {
3542         SMB_STRUCT_STAT lsbuf;
3543         const char *usersharepath = Globals.usershare_path;
3544         char *fname;
3545
3546         fname = talloc_asprintf(talloc_tos(),
3547                                 "%s/%s",
3548                                 usersharepath,
3549                                 ServicePtrs[iService]->szService);
3550         if (fname == NULL) {
3551                 return false;
3552         }
3553
3554         if (sys_lstat(fname, &lsbuf, false) != 0) {
3555                 TALLOC_FREE(fname);
3556                 return false;
3557         }
3558
3559         if (!S_ISREG(lsbuf.st_ex_mode)) {
3560                 TALLOC_FREE(fname);
3561                 return false;
3562         }
3563
3564         TALLOC_FREE(fname);
3565         *last_mod = lsbuf.st_ex_mtime;
3566         return true;
3567 }
3568
3569 static bool usershare_directory_is_root(uid_t uid)
3570 {
3571         if (uid == 0) {
3572                 return true;
3573         }
3574
3575         if (uid_wrapper_enabled()) {
3576                 return true;
3577         }
3578
3579         return false;
3580 }
3581
3582 /***************************************************************************
3583  Load a usershare service by name. Returns a valid servicenumber or -1.
3584 ***************************************************************************/
3585
3586 int load_usershare_service(const char *servicename)
3587 {
3588         SMB_STRUCT_STAT sbuf;
3589         const char *usersharepath = Globals.usershare_path;
3590         int max_user_shares = Globals.usershare_max_shares;
3591         int snum_template = -1;
3592
3593         if (*usersharepath == 0 ||  max_user_shares == 0) {
3594                 return -1;
3595         }
3596
3597         if (sys_stat(usersharepath, &sbuf, false) != 0) {
3598                 DEBUG(0,("load_usershare_service: stat of %s failed. %s\n",
3599                         usersharepath, strerror(errno) ));
3600                 return -1;
3601         }
3602
3603         if (!S_ISDIR(sbuf.st_ex_mode)) {
3604                 DEBUG(0,("load_usershare_service: %s is not a directory.\n",
3605                         usersharepath ));
3606                 return -1;
3607         }
3608
3609         /*
3610          * This directory must be owned by root, and have the 't' bit set.
3611          * It also must not be writable by "other".
3612          */
3613
3614 #ifdef S_ISVTX
3615         if (!usershare_directory_is_root(sbuf.st_ex_uid) ||
3616             !(sbuf.st_ex_mode & S_ISVTX) || (sbuf.st_ex_mode & S_IWOTH)) {
3617 #else
3618         if (!usershare_directory_is_root(sbuf.st_ex_uid) ||
3619             (sbuf.st_ex_mode & S_IWOTH)) {
3620 #endif
3621                 DEBUG(0,("load_usershare_service: directory %s is not owned by root "
3622                         "or does not have the sticky bit 't' set or is writable by anyone.\n",
3623                         usersharepath ));
3624                 return -1;
3625         }
3626
3627         /* Ensure the template share exists if it's set. */
3628         if (Globals.usershare_template_share[0]) {
3629                 /* We can't use lp_servicenumber here as we are recommending that
3630                    template shares have -valid=false set. */
3631                 for (snum_template = iNumServices - 1; snum_template >= 0; snum_template--) {
3632                         if (ServicePtrs[snum_template]->szService &&
3633                                         strequal(ServicePtrs[snum_template]->szService,
3634                                                 Globals.usershare_template_share)) {
3635                                 break;
3636                         }
3637                 }
3638
3639                 if (snum_template == -1) {
3640                         DEBUG(0,("load_usershare_service: usershare template share %s "
3641                                 "does not exist.\n",
3642                                 Globals.usershare_template_share ));
3643                         return -1;
3644                 }
3645         }
3646
3647         return process_usershare_file(usersharepath, servicename, snum_template);
3648 }
3649
3650 /***************************************************************************
3651  Load all user defined shares from the user share directory.
3652  We only do this if we're enumerating the share list.
3653  This is the function that can delete usershares that have
3654  been removed.
3655 ***************************************************************************/
3656
3657 int load_usershare_shares(struct smbd_server_connection *sconn,
3658                           bool (*snumused) (struct smbd_server_connection *, int))
3659 {
3660         DIR *dp;
3661         SMB_STRUCT_STAT sbuf;
3662         struct dirent *de;
3663         int num_usershares = 0;
3664         int max_user_shares = Globals.usershare_max_shares;
3665         unsigned int num_dir_entries, num_bad_dir_entries, num_tmp_dir_entries;
3666         unsigned int allowed_bad_entries = ((2*max_user_shares)/10);
3667         unsigned int allowed_tmp_entries = ((2*max_user_shares)/10);
3668         int iService;
3669         int snum_template = -1;
3670         const char *usersharepath = Globals.usershare_path;
3671         int ret = lp_numservices();
3672         TALLOC_CTX *tmp_ctx;
3673
3674         if (max_user_shares == 0 || *usersharepath == '\0') {
3675                 return lp_numservices();
3676         }
3677
3678         if (sys_stat(usersharepath, &sbuf, false) != 0) {
3679                 DEBUG(0,("load_usershare_shares: stat of %s failed. %s\n",
3680                         usersharepath, strerror(errno) ));
3681                 return ret;
3682         }
3683
3684         /*
3685          * This directory must be owned by root, and have the 't' bit set.
3686          * It also must not be writable by "other".
3687          */
3688
3689 #ifdef S_ISVTX
3690         if (sbuf.st_ex_uid != 0 || !(sbuf.st_ex_mode & S_ISVTX) || (sbuf.st_ex_mode & S_IWOTH)) {
3691 #else
3692         if (sbuf.st_ex_uid != 0 || (sbuf.st_ex_mode & S_IWOTH)) {
3693 #endif
3694                 DEBUG(0,("load_usershare_shares: directory %s is not owned by root "
3695                         "or does not have the sticky bit 't' set or is writable by anyone.\n",
3696                         usersharepath ));
3697                 return ret;
3698         }
3699
3700         /* Ensure the template share exists if it's set. */
3701         if (Globals.usershare_template_share[0]) {
3702                 /* We can't use lp_servicenumber here as we are recommending that
3703                    template shares have -valid=false set. */
3704                 for (snum_template = iNumServices - 1; snum_template >= 0; snum_template--) {
3705                         if (ServicePtrs[snum_template]->szService &&
3706                                         strequal(ServicePtrs[snum_template]->szService,
3707                                                 Globals.usershare_template_share)) {
3708                                 break;
3709                         }
3710                 }
3711
3712                 if (snum_template == -1) {
3713                         DEBUG(0,("load_usershare_shares: usershare template share %s "
3714                                 "does not exist.\n",
3715                                 Globals.usershare_template_share ));
3716                         return ret;
3717                 }
3718         }
3719
3720         /* Mark all existing usershares as pending delete. */
3721         for (iService = iNumServices - 1; iService >= 0; iService--) {
3722                 if (VALID(iService) && ServicePtrs[iService]->usershare) {
3723                         ServicePtrs[iService]->usershare = USERSHARE_PENDING_DELETE;
3724                 }
3725         }
3726
3727         dp = opendir(usersharepath);
3728         if (!dp) {
3729                 DEBUG(0,("load_usershare_shares:: failed to open directory %s. %s\n",
3730                         usersharepath, strerror(errno) ));
3731                 return ret;
3732         }
3733
3734         for (num_dir_entries = 0, num_bad_dir_entries = 0, num_tmp_dir_entries = 0;
3735                         (de = readdir(dp));
3736                         num_dir_entries++ ) {
3737                 int r;
3738                 const char *n = de->d_name;
3739
3740                 /* Ignore . and .. */
3741                 if (*n == '.') {
3742                         if ((n[1] == '\0') || (n[1] == '.' && n[2] == '\0')) {
3743                                 continue;
3744                         }
3745                 }
3746
3747                 if (n[0] == ':') {
3748                         /* Temporary file used when creating a share. */
3749                         num_tmp_dir_entries++;
3750                 }
3751
3752                 /* Allow 20% tmp entries. */
3753                 if (num_tmp_dir_entries > allowed_tmp_entries) {
3754                         DEBUG(0,("load_usershare_shares: too many temp entries (%u) "
3755                                 "in directory %s\n",
3756                                 num_tmp_dir_entries, usersharepath));
3757                         break;
3758                 }
3759
3760                 r = process_usershare_file(usersharepath, n, snum_template);
3761                 if (r == 0) {
3762                         /* Update the services count. */
3763                         num_usershares++;
3764                         if (num_usershares >= max_user_shares) {
3765                                 DEBUG(0,("load_usershare_shares: max user shares reached "
3766                                         "on file %s in directory %s\n",
3767                                         n, usersharepath ));
3768                                 break;
3769                         }
3770                 } else if (r == -1) {
3771                         num_bad_dir_entries++;
3772                 }
3773
3774                 /* Allow 20% bad entries. */
3775                 if (num_bad_dir_entries > allowed_bad_entries) {
3776                         DEBUG(0,("load_usershare_shares: too many bad entries (%u) "
3777                                 "in directory %s\n",
3778                                 num_bad_dir_entries, usersharepath));
3779                         break;
3780                 }
3781
3782                 /* Allow 20% bad entries. */
3783                 if (num_dir_entries > max_user_shares + allowed_bad_entries) {
3784                         DEBUG(0,("load_usershare_shares: too many total entries (%u) "
3785                         "in directory %s\n",
3786                         num_dir_entries, usersharepath));
3787                         break;
3788                 }
3789         }
3790
3791         closedir(dp);
3792
3793         /* Sweep through and delete any non-refreshed usershares that are
3794            not currently in use. */
3795         tmp_ctx = talloc_stackframe();
3796         for (iService = iNumServices - 1; iService >= 0; iService--) {
3797                 if (VALID(iService) && (ServicePtrs[iService]->usershare == USERSHARE_PENDING_DELETE)) {
3798                         char *servname;
3799
3800                         if (snumused && snumused(sconn, iService)) {
3801                                 continue;
3802                         }
3803
3804                         servname = lp_servicename(tmp_ctx, iService);
3805
3806                         /* Remove from the share ACL db. */
3807                         DEBUG(10,("load_usershare_shares: Removing deleted usershare %s\n",
3808                                   servname ));
3809                         delete_share_security(servname);
3810                         free_service_byindex(iService);
3811                 }
3812         }
3813         talloc_free(tmp_ctx);
3814
3815         return lp_numservices();
3816 }
3817
3818 /********************************************************
3819  Destroy global resources allocated in this file
3820 ********************************************************/
3821
3822 void gfree_loadparm(void)
3823 {
3824         int i;
3825
3826         free_file_list();
3827
3828         /* Free resources allocated to services */
3829
3830         for ( i = 0; i < iNumServices; i++ ) {
3831                 if ( VALID(i) ) {
3832                         free_service_byindex(i);
3833                 }
3834         }
3835
3836         TALLOC_FREE( ServicePtrs );
3837         iNumServices = 0;
3838
3839         /* Now release all resources allocated to global
3840            parameters and the default service */
3841
3842         free_global_parameters();
3843 }
3844
3845
3846 /***************************************************************************
3847  Allow client apps to specify that they are a client
3848 ***************************************************************************/
3849 static void lp_set_in_client(bool b)
3850 {
3851     in_client = b;
3852 }
3853
3854
3855 /***************************************************************************
3856  Determine if we're running in a client app
3857 ***************************************************************************/
3858 static bool lp_is_in_client(void)
3859 {
3860     return in_client;
3861 }
3862
3863 static void lp_enforce_ad_dc_settings(void)
3864 {
3865         lp_do_parameter(GLOBAL_SECTION_SNUM, "passdb backend", "samba_dsdb");
3866         lp_do_parameter(GLOBAL_SECTION_SNUM,
3867                         "winbindd:use external pipes", "true");
3868         lp_do_parameter(GLOBAL_SECTION_SNUM, "rpc_server:default", "external");
3869         lp_do_parameter(GLOBAL_SECTION_SNUM, "rpc_server:svcctl", "embedded");
3870         lp_do_parameter(GLOBAL_SECTION_SNUM, "rpc_server:srvsvc", "embedded");
3871         lp_do_parameter(GLOBAL_SECTION_SNUM, "rpc_server:eventlog", "embedded");
3872         lp_do_parameter(GLOBAL_SECTION_SNUM, "rpc_server:ntsvcs", "embedded");
3873         lp_do_parameter(GLOBAL_SECTION_SNUM, "rpc_server:winreg", "embedded");
3874         lp_do_parameter(GLOBAL_SECTION_SNUM, "rpc_server:spoolss", "embedded");
3875         lp_do_parameter(GLOBAL_SECTION_SNUM, "rpc_daemon:spoolssd", "embedded");
3876         lp_do_parameter(GLOBAL_SECTION_SNUM, "rpc_server:tcpip", "no");
3877 }
3878
3879 /***************************************************************************
3880  Load the services array from the services file. Return true on success,
3881  false on failure.
3882 ***************************************************************************/
3883
3884 static bool lp_load_ex(const char *pszFname,
3885                        bool global_only,
3886                        bool save_defaults,
3887                        bool add_ipc,
3888                        bool reinit_globals,
3889                        bool allow_include_registry,
3890                        bool load_all_shares)
3891 {
3892         char *n2 = NULL;
3893         bool bRetval;
3894         TALLOC_CTX *frame = talloc_stackframe();
3895         struct loadparm_context *lp_ctx;
3896         int max_protocol, min_protocol;
3897
3898         DEBUG(3, ("lp_load_ex: refreshing parameters\n"));
3899
3900         bInGlobalSection = true;
3901         bGlobalOnly = global_only;
3902         bAllowIncludeRegistry = allow_include_registry;
3903         sDefault = _sDefault;
3904
3905         lp_ctx = setup_lp_context(talloc_tos());
3906
3907         init_globals(lp_ctx, reinit_globals);
3908
3909         free_file_list();
3910
3911         if (save_defaults) {
3912                 init_locals();
3913                 lp_save_defaults();
3914         }
3915
3916         if (!reinit_globals) {
3917                 free_param_opts(&Globals.param_opt);
3918                 apply_lp_set_cmdline();
3919         }
3920
3921         lp_do_parameter(-1, "idmap config * : backend", Globals.idmap_backend);
3922
3923         /* We get sections first, so have to start 'behind' to make up */
3924         iServiceIndex = -1;
3925
3926         if (lp_config_backend_is_file()) {
3927                 n2 = talloc_sub_basic(talloc_tos(), get_current_username(),
3928                                         current_user_info.domain,
3929                                         pszFname);
3930                 if (!n2) {
3931                         smb_panic("lp_load_ex: out of memory");
3932                 }
3933
3934                 add_to_file_list(NULL, &file_lists, pszFname, n2);
3935
3936                 bRetval = pm_process(n2, lp_do_section, do_parameter, lp_ctx);
3937                 TALLOC_FREE(n2);
3938
3939                 /* finish up the last section */
3940                 DEBUG(4, ("pm_process() returned %s\n", BOOLSTR(bRetval)));
3941                 if (bRetval) {
3942                         if (iServiceIndex >= 0) {
3943                                 bRetval = lpcfg_service_ok(ServicePtrs[iServiceIndex]);
3944                         }
3945                 }
3946
3947                 if (lp_config_backend_is_registry()) {
3948                         bool ok;
3949                         /* config backend changed to registry in config file */
3950                         /*
3951                          * We need to use this extra global variable here to
3952                          * survive restart: init_globals uses this as a default
3953                          * for config_backend. Otherwise, init_globals would
3954                          *  send us into an endless loop here.
3955                          */
3956
3957                         config_backend = CONFIG_BACKEND_REGISTRY;
3958                         /* start over */
3959                         DEBUG(1, ("lp_load_ex: changing to config backend "
3960                                   "registry\n"));
3961                         init_globals(lp_ctx, true);
3962
3963                         TALLOC_FREE(lp_ctx);
3964
3965                         lp_kill_all_services();
3966                         ok = lp_load_ex(pszFname, global_only, save_defaults,
3967                                         add_ipc, reinit_globals,
3968                                         allow_include_registry,
3969                                         load_all_shares);
3970                         TALLOC_FREE(frame);
3971                         return ok;
3972                 }
3973         } else if (lp_config_backend_is_registry()) {
3974                 bRetval = process_registry_globals();
3975         } else {
3976                 DEBUG(0, ("Illegal config  backend given: %d\n",
3977                           lp_config_backend()));
3978                 bRetval = false;
3979         }
3980
3981         if (bRetval && lp_registry_shares()) {
3982                 if (load_all_shares) {
3983                         bRetval = process_registry_shares();
3984                 } else {
3985                         bRetval = reload_registry_shares();
3986                 }
3987         }
3988
3989         {
3990                 const struct loadparm_substitution *lp_sub =
3991                         loadparm_s3_global_substitution();
3992                 char *serv = lp_auto_services(talloc_tos(), lp_sub);
3993                 lp_add_auto_services(serv);
3994                 TALLOC_FREE(serv);
3995         }
3996
3997         if (add_ipc) {
3998                 /* When 'restrict anonymous = 2' guest connections to ipc$
3999                    are denied */
4000                 lp_add_ipc("IPC$", (lp_restrict_anonymous() < 2));
4001                 if ( lp_enable_asu_support() ) {
4002                         lp_add_ipc("ADMIN$", false);
4003                 }
4004         }
4005
4006         set_allowed_client_auth();
4007
4008         if (lp_security() == SEC_ADS && strchr(lp_password_server(), ':')) {
4009                 DEBUG(1, ("WARNING: The optional ':port' in password server = %s is deprecated\n",
4010                           lp_password_server()));
4011         }
4012
4013         bLoaded = true;
4014
4015         /* Now we check we_are_a_wins_server and set szWINSserver to 127.0.0.1 */
4016         /* if we_are_a_wins_server is true and we are in the client            */
4017         if (lp_is_in_client() && Globals.we_are_a_wins_server) {
4018                 lp_do_parameter(GLOBAL_SECTION_SNUM, "wins server", "127.0.0.1");
4019         }
4020
4021         init_iconv();
4022
4023         fault_configure(smb_panic_s3);
4024
4025         /*
4026          * We run this check once the whole smb.conf is parsed, to
4027          * force some settings for the standard way a AD DC is
4028          * operated.  We may change these as our code evolves, which
4029          * is why we force these settings.
4030          */
4031         if (lp_server_role() == ROLE_ACTIVE_DIRECTORY_DC) {
4032                 lp_enforce_ad_dc_settings();
4033         }
4034
4035         bAllowIncludeRegistry = true;
4036
4037         /* Check if command line max protocol < min protocol, if so
4038          * report a warning to the user.
4039          */
4040         max_protocol = lp_client_max_protocol();
4041         min_protocol = lp_client_min_protocol();
4042         if (max_protocol < min_protocol) {
4043                 const char *max_protocolp, *min_protocolp;
4044                 max_protocolp = lpcfg_get_smb_protocol(max_protocol);
4045                 min_protocolp = lpcfg_get_smb_protocol(min_protocol);
4046                 DBG_ERR("Max protocol %s is less than min protocol %s.\n",
4047                         max_protocolp, min_protocolp);
4048         }
4049
4050         TALLOC_FREE(frame);
4051         return (bRetval);
4052 }
4053
4054 static bool lp_load(const char *pszFname,
4055                     bool global_only,
4056                     bool save_defaults,
4057                     bool add_ipc,
4058                     bool reinit_globals)
4059 {
4060         return lp_load_ex(pszFname,
4061                           global_only,
4062                           save_defaults,
4063                           add_ipc,
4064                           reinit_globals,
4065                           true,   /* allow_include_registry */
4066                           false); /* load_all_shares*/
4067 }
4068
4069 bool lp_load_initial_only(const char *pszFname)
4070 {
4071         return lp_load_ex(pszFname,
4072                           true,   /* global only */
4073                           true,   /* save_defaults */
4074                           false,  /* add_ipc */
4075                           true,   /* reinit_globals */
4076                           false,  /* allow_include_registry */
4077                           false); /* load_all_shares*/
4078 }
4079
4080 /**
4081  * most common lp_load wrapper, loading only the globals
4082  *
4083  * If this is used in a daemon or client utility it should be called
4084  * after processing popt.
4085  */
4086 bool lp_load_global(const char *file_name)
4087 {
4088         return lp_load(file_name,
4089                        true,   /* global_only */
4090                        false,  /* save_defaults */
4091                        false,  /* add_ipc */
4092                        true);  /* reinit_globals */
4093 }
4094
4095 /**
4096  * The typical lp_load wrapper with shares, loads global and
4097  * shares, including IPC, but does not force immediate
4098  * loading of all shares from registry.
4099  */
4100 bool lp_load_with_shares(const char *file_name)
4101 {
4102         return lp_load(file_name,
4103                        false,  /* global_only */
4104                        false,  /* save_defaults */
4105                        true,   /* add_ipc */
4106                        true);  /* reinit_globals */
4107 }
4108
4109 /**
4110  * lp_load wrapper, especially for clients
4111  */
4112 bool lp_load_client(const char *file_name)
4113 {
4114         lp_set_in_client(true);
4115
4116         return lp_load_global(file_name);
4117 }
4118
4119 /**
4120  * lp_load wrapper, loading only globals, but intended
4121  * for subsequent calls, not reinitializing the globals
4122  * to default values
4123  */
4124 bool lp_load_global_no_reinit(const char *file_name)
4125 {
4126         return lp_load(file_name,
4127                        true,   /* global_only */
4128                        false,  /* save_defaults */
4129                        false,  /* add_ipc */
4130                        false); /* reinit_globals */
4131 }
4132
4133 /**
4134  * lp_load wrapper, loading globals and shares,
4135  * intended for subsequent calls, i.e. not reinitializing
4136  * the globals to default values.
4137  */
4138 bool lp_load_no_reinit(const char *file_name)
4139 {
4140         return lp_load(file_name,
4141                        false,  /* global_only */
4142                        false,  /* save_defaults */
4143                        false,  /* add_ipc */
4144                        false); /* reinit_globals */
4145 }
4146
4147
4148 /**
4149  * lp_load wrapper, especially for clients, no reinitialization
4150  */
4151 bool lp_load_client_no_reinit(const char *file_name)
4152 {
4153         lp_set_in_client(true);
4154
4155         return lp_load_global_no_reinit(file_name);
4156 }
4157
4158 bool lp_load_with_registry_shares(const char *pszFname)
4159 {
4160         return lp_load_ex(pszFname,
4161                           false, /* global_only */
4162                           true,  /* save_defaults */
4163                           false, /* add_ipc */
4164                           true, /* reinit_globals */
4165                           true,  /* allow_include_registry */
4166                           true); /* load_all_shares*/
4167 }
4168
4169 /***************************************************************************
4170  Return the max number of services.
4171 ***************************************************************************/
4172
4173 int lp_numservices(void)
4174 {
4175         return (iNumServices);
4176 }
4177
4178 /***************************************************************************
4179 Display the contents of the services array in human-readable form.
4180 ***************************************************************************/
4181
4182 void lp_dump(FILE *f, bool show_defaults, int maxtoprint)
4183 {
4184         int iService;
4185         struct loadparm_context *lp_ctx;
4186
4187         if (show_defaults)
4188                 defaults_saved = false;
4189
4190         lp_ctx = setup_lp_context(talloc_tos());
4191         if (lp_ctx == NULL) {
4192                 return;
4193         }
4194
4195         lpcfg_dump_globals(lp_ctx, f, !defaults_saved);
4196
4197         lpcfg_dump_a_service(&sDefault, &sDefault, f, flags_list, show_defaults);
4198
4199         for (iService = 0; iService < maxtoprint; iService++) {
4200                 fprintf(f,"\n");
4201                 lp_dump_one(f, show_defaults, iService);
4202         }
4203         TALLOC_FREE(lp_ctx);
4204 }
4205
4206 /***************************************************************************
4207 Display the contents of one service in human-readable form.
4208 ***************************************************************************/
4209
4210 void lp_dump_one(FILE * f, bool show_defaults, int snum)
4211 {
4212         if (VALID(snum)) {
4213                 if (ServicePtrs[snum]->szService[0] == '\0')
4214                         return;
4215                 lpcfg_dump_a_service(ServicePtrs[snum], &sDefault, f,
4216                                      flags_list, show_defaults);
4217         }
4218 }
4219
4220 /***************************************************************************
4221 Return the number of the service with the given name, or -1 if it doesn't
4222 exist. Note that this is a DIFFERENT ANIMAL from the internal function
4223 getservicebyname()! This works ONLY if all services have been loaded, and
4224 does not copy the found service.
4225 ***************************************************************************/
4226
4227 int lp_servicenumber(const char *pszServiceName)
4228 {
4229         int iService;
4230         fstring serviceName;
4231
4232         if (!pszServiceName) {
4233                 return GLOBAL_SECTION_SNUM;
4234         }
4235
4236         for (iService = iNumServices - 1; iService >= 0; iService--) {
4237                 if (VALID(iService) && ServicePtrs[iService]->szService) {
4238                         /*
4239                          * The substitution here is used to support %U in
4240                          * service names
4241                          */
4242                         fstrcpy(serviceName, ServicePtrs[iService]->szService);
4243                         standard_sub_basic(get_current_username(),
4244                                            current_user_info.domain,
4245                                            serviceName,sizeof(serviceName));
4246                         if (strequal(serviceName, pszServiceName)) {
4247                                 break;
4248                         }
4249                 }
4250         }
4251
4252         if (iService >= 0 && ServicePtrs[iService]->usershare == USERSHARE_VALID) {
4253                 struct timespec last_mod;
4254
4255                 if (!usershare_exists(iService, &last_mod)) {
4256                         /* Remove the share security tdb entry for it. */
4257                         delete_share_security(lp_const_servicename(iService));
4258                         /* Remove it from the array. */
4259                         free_service_byindex(iService);
4260                         /* Doesn't exist anymore. */
4261                         return GLOBAL_SECTION_SNUM;
4262                 }
4263
4264                 /* Has it been modified ? If so delete and reload. */
4265                 if (timespec_compare(&ServicePtrs[iService]->usershare_last_mod,
4266                                      &last_mod) < 0) {
4267                         /* Remove it from the array. */
4268                         free_service_byindex(iService);
4269                         /* and now reload it. */
4270                         iService = load_usershare_service(pszServiceName);
4271                 }
4272         }
4273
4274         if (iService < 0) {
4275                 DEBUG(7,("lp_servicenumber: couldn't find %s\n", pszServiceName));
4276                 return GLOBAL_SECTION_SNUM;
4277         }
4278
4279         return (iService);
4280 }
4281
4282 /*******************************************************************
4283  A useful volume label function. 
4284 ********************************************************************/
4285
4286 const char *volume_label(TALLOC_CTX *ctx, int snum)
4287 {
4288         const struct loadparm_substitution *lp_sub =
4289                 loadparm_s3_global_substitution();
4290         char *ret;
4291         const char *label = lp_volume(ctx, lp_sub, snum);
4292         size_t end = 32;
4293
4294         if (!*label) {
4295                 label = lp_servicename(ctx, snum);
4296         }
4297
4298         /*
4299          * Volume label can be a max of 32 bytes. Make sure to truncate
4300          * it at a codepoint boundary if it's longer than 32 and contains
4301          * multibyte characters. Windows insists on a volume label being
4302          * a valid mb sequence, and errors out if not.
4303          */
4304         if (strlen(label) > 32) {
4305                 /*
4306                  * A MB char can be a max of 5 bytes, thus
4307                  * we should have a valid mb character at a
4308                  * minimum position of (32-5) = 27.
4309                  */
4310                 while (end >= 27) {
4311                         /*
4312                          * Check if a codepoint starting from next byte
4313                          * is valid. If yes, then the current byte is the
4314                          * end of a MB or ascii sequence and the label can
4315                          * be safely truncated here. If not, keep going
4316                          * backwards till a valid codepoint is found.
4317                          */
4318                         size_t len = 0;
4319                         const char *s = &label[end];
4320                         codepoint_t c = next_codepoint(s, &len);
4321                         if (c != INVALID_CODEPOINT) {
4322                                 break;
4323                         }
4324                         end--;
4325                 }
4326         }
4327
4328         /* This returns a max of 33 byte guarenteed null terminated string. */
4329         ret = talloc_strndup(ctx, label, end);
4330         if (!ret) {
4331                 return "";
4332         }
4333         return ret;
4334 }
4335
4336 /*******************************************************************
4337  Get the default server type we will announce as via nmbd.
4338 ********************************************************************/
4339
4340 int lp_default_server_announce(void)
4341 {
4342         int default_server_announce = 0;
4343         default_server_announce |= SV_TYPE_WORKSTATION;
4344         default_server_announce |= SV_TYPE_SERVER;
4345         default_server_announce |= SV_TYPE_SERVER_UNIX;
4346
4347         /* note that the flag should be set only if we have a 
4348            printer service but nmbd doesn't actually load the 
4349            services so we can't tell   --jerry */
4350
4351         default_server_announce |= SV_TYPE_PRINTQ_SERVER;
4352
4353         default_server_announce |= SV_TYPE_SERVER_NT;
4354         default_server_announce |= SV_TYPE_NT;
4355
4356         switch (lp_server_role()) {
4357                 case ROLE_DOMAIN_MEMBER:
4358                         default_server_announce |= SV_TYPE_DOMAIN_MEMBER;
4359                         break;
4360                 case ROLE_DOMAIN_PDC:
4361                         default_server_announce |= SV_TYPE_DOMAIN_CTRL;
4362                         break;
4363                 case ROLE_DOMAIN_BDC:
4364                         default_server_announce |= SV_TYPE_DOMAIN_BAKCTRL;
4365                         break;
4366                 case ROLE_STANDALONE:
4367                 default:
4368                         break;
4369         }
4370         if (lp_time_server())
4371                 default_server_announce |= SV_TYPE_TIME_SOURCE;
4372
4373         if (lp_host_msdfs())
4374                 default_server_announce |= SV_TYPE_DFS_SERVER;
4375
4376         return default_server_announce;
4377 }
4378
4379 /***********************************************************
4380  If we are PDC then prefer us as DMB
4381 ************************************************************/
4382
4383 bool lp_domain_master(void)
4384 {
4385         if (Globals._domain_master == Auto)
4386                 return (lp_server_role() == ROLE_DOMAIN_PDC);
4387
4388         return (bool)Globals._domain_master;
4389 }
4390
4391 /***********************************************************
4392  If we are PDC then prefer us as DMB
4393 ************************************************************/
4394
4395 static bool lp_domain_master_true_or_auto(void)
4396 {
4397         if (Globals._domain_master) /* auto or yes */
4398                 return true;
4399
4400         return false;
4401 }
4402
4403 /***********************************************************
4404  If we are DMB then prefer us as LMB
4405 ************************************************************/
4406
4407 bool lp_preferred_master(void)
4408 {
4409         int preferred_master = lp__preferred_master();
4410
4411         if (preferred_master == Auto)
4412                 return (lp_local_master() && lp_domain_master());
4413
4414         return (bool)preferred_master;
4415 }
4416
4417 /*******************************************************************
4418  Remove a service.
4419 ********************************************************************/
4420
4421 void lp_remove_service(int snum)
4422 {
4423         ServicePtrs[snum]->valid = false;
4424 }
4425
4426 const char *lp_printername(TALLOC_CTX *ctx,
4427                            const struct loadparm_substitution *lp_sub,
4428                            int snum)
4429 {
4430         const char *ret = lp__printername(ctx, lp_sub, snum);
4431
4432         if (ret == NULL || *ret == '\0') {
4433                 ret = lp_const_servicename(snum);
4434         }
4435
4436         return ret;
4437 }
4438
4439
4440 /***********************************************************
4441  Allow daemons such as winbindd to fix their logfile name.
4442 ************************************************************/
4443
4444 void lp_set_logfile(const char *name)
4445 {
4446         lpcfg_string_set(Globals.ctx, &Globals.logfile, name);
4447         debug_set_logfile(name);
4448 }
4449
4450 /*******************************************************************
4451  Return the max print jobs per queue.
4452 ********************************************************************/
4453
4454 int lp_maxprintjobs(int snum)
4455 {
4456         int maxjobs = lp_max_print_jobs(snum);
4457
4458         if (maxjobs <= 0 || maxjobs >= PRINT_MAX_JOBID)
4459                 maxjobs = PRINT_MAX_JOBID - 1;
4460
4461         return maxjobs;
4462 }
4463
4464 const char *lp_printcapname(void)
4465 {
4466         const char *printcap_name = lp_printcap_name();
4467
4468         if ((printcap_name != NULL) &&
4469             (printcap_name[0] != '\0'))
4470                 return printcap_name;
4471
4472         if (sDefault.printing == PRINT_CUPS) {
4473                 return "cups";
4474         }
4475
4476         if (sDefault.printing == PRINT_BSD)
4477                 return "/etc/printcap";
4478
4479         return PRINTCAP_NAME;
4480 }
4481
4482 static uint32_t spoolss_state;
4483
4484 bool lp_disable_spoolss( void )
4485 {
4486         if ( spoolss_state == SVCCTL_STATE_UNKNOWN )
4487                 spoolss_state = lp__disable_spoolss() ? SVCCTL_STOPPED : SVCCTL_RUNNING;
4488
4489         return spoolss_state == SVCCTL_STOPPED ? true : false;
4490 }
4491
4492 void lp_set_spoolss_state( uint32_t state )
4493 {
4494         SMB_ASSERT( (state == SVCCTL_STOPPED) || (state == SVCCTL_RUNNING) );
4495
4496         spoolss_state = state;
4497 }
4498
4499 uint32_t lp_get_spoolss_state( void )
4500 {
4501         return lp_disable_spoolss() ? SVCCTL_STOPPED : SVCCTL_RUNNING;
4502 }
4503
4504 /*******************************************************************
4505  Ensure we don't use sendfile if server smb signing is active.
4506 ********************************************************************/
4507
4508 bool lp_use_sendfile(int snum, struct smb_signing_state *signing_state)
4509 {
4510         bool sign_active = false;
4511
4512         /* Using sendfile blows the brains out of any DOS or Win9x TCP stack... JRA. */
4513         if (get_Protocol() < PROTOCOL_NT1) {
4514                 return false;
4515         }
4516         if (signing_state) {
4517                 sign_active = smb_signing_is_active(signing_state);
4518         }
4519         return (lp__use_sendfile(snum) &&
4520                         (get_remote_arch() != RA_WIN95) &&
4521                         !sign_active);
4522 }
4523
4524 /*******************************************************************
4525  Turn off sendfile if we find the underlying OS doesn't support it.
4526 ********************************************************************/
4527
4528 void set_use_sendfile(int snum, bool val)
4529 {
4530         if (LP_SNUM_OK(snum))
4531                 ServicePtrs[snum]->_use_sendfile = val;
4532         else
4533                 sDefault._use_sendfile = val;
4534 }
4535
4536 void lp_set_mangling_method(const char *new_method)
4537 {
4538         lpcfg_string_set(Globals.ctx, &Globals.mangling_method, new_method);
4539 }
4540
4541 /*******************************************************************
4542  Global state for POSIX pathname processing.
4543 ********************************************************************/
4544
4545 static bool posix_pathnames;
4546
4547 bool lp_posix_pathnames(void)
4548 {
4549         return posix_pathnames;
4550 }
4551
4552 /*******************************************************************
4553  Change everything needed to ensure POSIX pathname processing (currently
4554  not much).
4555 ********************************************************************/
4556
4557 void lp_set_posix_pathnames(void)
4558 {
4559         posix_pathnames = true;
4560 }
4561
4562 /*******************************************************************
4563  Global state for POSIX lock processing - CIFS unix extensions.
4564 ********************************************************************/
4565
4566 bool posix_default_lock_was_set;
4567 static enum brl_flavour posix_cifsx_locktype; /* By default 0 == WINDOWS_LOCK */
4568
4569 enum brl_flavour lp_posix_cifsu_locktype(files_struct *fsp)
4570 {
4571         if (posix_default_lock_was_set) {
4572                 return posix_cifsx_locktype;
4573         } else {
4574                 return (fsp->posix_flags & FSP_POSIX_FLAGS_OPEN) ?
4575                         POSIX_LOCK : WINDOWS_LOCK;
4576         }
4577 }
4578
4579 /*******************************************************************
4580 ********************************************************************/
4581
4582 void lp_set_posix_default_cifsx_readwrite_locktype(enum brl_flavour val)
4583 {
4584         posix_default_lock_was_set = true;
4585         posix_cifsx_locktype = val;
4586 }
4587
4588 int lp_min_receive_file_size(void)
4589 {
4590         int min_receivefile_size = lp_min_receivefile_size();
4591
4592         if (min_receivefile_size < 0) {
4593                 return 0;
4594         }
4595         return min_receivefile_size;
4596 }
4597
4598 /*******************************************************************
4599  Safe wide links checks.
4600  This helper function always verify the validity of wide links,
4601  even after a configuration file reload.
4602 ********************************************************************/
4603
4604 void widelinks_warning(int snum)
4605 {
4606         if (lp_allow_insecure_wide_links()) {
4607                 return;
4608         }
4609
4610         if (lp_unix_extensions() && lp_wide_links(snum)) {
4611                 DBG_ERR("Share '%s' has wide links and unix extensions enabled. "
4612                         "These parameters are incompatible. "
4613                         "Wide links will be disabled for this share.\n",
4614                          lp_const_servicename(snum));
4615         }
4616 }
4617
4618 bool lp_widelinks(int snum)
4619 {
4620         /* wide links is always incompatible with unix extensions */
4621         if (lp_unix_extensions()) {
4622                 /*
4623                  * Unless we have "allow insecure widelinks"
4624                  * turned on.
4625                  */
4626                 if (!lp_allow_insecure_wide_links()) {
4627                         return false;
4628                 }
4629         }
4630
4631         return lp_wide_links(snum);
4632 }
4633
4634 int lp_server_role(void)
4635 {
4636         return lp_find_server_role(lp__server_role(),
4637                                    lp__security(),
4638                                    lp__domain_logons(),
4639                                    lp_domain_master_true_or_auto());
4640 }
4641
4642 int lp_security(void)
4643 {
4644         return lp_find_security(lp__server_role(),
4645                                 lp__security());
4646 }
4647
4648 int lp_client_max_protocol(void)
4649 {
4650         int client_max_protocol = lp__client_max_protocol();
4651         if (client_max_protocol == PROTOCOL_DEFAULT) {
4652                 return PROTOCOL_LATEST;
4653         }
4654         return client_max_protocol;
4655 }
4656
4657 int lp_client_ipc_min_protocol(void)
4658 {
4659         int client_ipc_min_protocol = lp__client_ipc_min_protocol();
4660         if (client_ipc_min_protocol == PROTOCOL_DEFAULT) {
4661                 client_ipc_min_protocol = lp_client_min_protocol();
4662         }
4663         if (client_ipc_min_protocol < PROTOCOL_NT1) {
4664                 return PROTOCOL_NT1;
4665         }
4666         return client_ipc_min_protocol;
4667 }
4668
4669 int lp_client_ipc_max_protocol(void)
4670 {
4671         int client_ipc_max_protocol = lp__client_ipc_max_protocol();
4672         if (client_ipc_max_protocol == PROTOCOL_DEFAULT) {
4673                 return PROTOCOL_LATEST;
4674         }
4675         if (client_ipc_max_protocol < PROTOCOL_NT1) {
4676                 return PROTOCOL_NT1;
4677         }
4678         return client_ipc_max_protocol;
4679 }
4680
4681 int lp_client_ipc_signing(void)
4682 {
4683         int client_ipc_signing = lp__client_ipc_signing();
4684         if (client_ipc_signing == SMB_SIGNING_DEFAULT) {
4685                 return SMB_SIGNING_REQUIRED;
4686         }
4687         return client_ipc_signing;
4688 }
4689
4690 int lp_rpc_low_port(void)
4691 {
4692         return Globals.rpc_low_port;
4693 }
4694
4695 int lp_rpc_high_port(void)
4696 {
4697         return Globals.rpc_high_port;
4698 }
4699
4700 /*
4701  * Do not allow LanMan auth if unless NTLMv1 is also allowed
4702  *
4703  * This also ensures it is disabled if NTLM is totally disabled
4704  */
4705 bool lp_lanman_auth(void)
4706 {
4707         enum ntlm_auth_level ntlm_auth_level = lp_ntlm_auth();
4708
4709         if (ntlm_auth_level == NTLM_AUTH_ON) {
4710                 return lp__lanman_auth();
4711         } else {
4712                 return false;
4713         }
4714 }
4715
4716 struct loadparm_global * get_globals(void)
4717 {
4718         return &Globals;
4719 }
4720
4721 unsigned int * get_flags(void)
4722 {
4723         if (flags_list == NULL) {
4724                 flags_list = talloc_zero_array(NULL, unsigned int, num_parameters());
4725         }
4726
4727         return flags_list;
4728 }