param: remove lp_get_parameter
[Samba.git] / source3 / param / loadparm.c
blobdee62246551951617082b965468e2e227b049ab1
1 /*
2 Unix SMB/CIFS implementation.
3 Parameter loading functions
4 Copyright (C) Karl Auer 1993-1998
6 Largely re-written by Andrew Tridgell, September 1994
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
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.
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.
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/>.
31 * Load parameters.
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.
37 * To add a parameter:
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
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!
56 #include "includes.h"
57 #include "system/filesys.h"
58 #include "util_tdb.h"
59 #include "lib/param/loadparm.h"
60 #include "lib/param/param.h"
61 #include "printing.h"
62 #include "lib/smbconf/smbconf.h"
63 #include "lib/smbconf/smbconf_init.h"
65 #include "ads.h"
66 #include "../librpc/gen_ndr/svcctl.h"
67 #include "intl.h"
68 #include "../libcli/smb/smb_signing.h"
69 #include "dbwrap/dbwrap.h"
70 #include "dbwrap/dbwrap_rbt.h"
71 #include "../lib/util/bitmap.h"
73 #ifdef HAVE_SYS_SYSCTL_H
74 #include <sys/sysctl.h>
75 #endif
77 #ifdef HAVE_HTTPCONNECTENCRYPT
78 #include <cups/http.h>
79 #endif
81 bool bLoaded = false;
83 extern userdom_struct current_user_info;
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
93 static bool in_client = false; /* Not in the client by default */
94 static struct smbconf_csn conf_last_csn;
96 static int config_backend = CONFIG_BACKEND_FILE;
98 /* some helpful bits */
99 #define LP_SNUM_OK(i) (((i) >= 0) && ((i) < iNumServices) && (ServicePtrs != NULL) && ServicePtrs[(i)]->valid)
100 #define VALID(i) (ServicePtrs != NULL && ServicePtrs[i]->valid)
102 #define USERSHARE_VALID 1
103 #define USERSHARE_PENDING_DELETE 2
105 static bool defaults_saved = false;
107 #include "lib/param/param_global.h"
109 static struct loadparm_global Globals;
111 /* This is a default service used to prime a services structure */
112 static struct loadparm_service sDefault =
114 .valid = true,
115 .autoloaded = false,
116 .usershare = 0,
117 .usershare_last_mod = {0, 0},
118 .szService = NULL,
119 .path = NULL,
120 .username = NULL,
121 .invalid_users = NULL,
122 .valid_users = NULL,
123 .admin_users = NULL,
124 .szCopy = NULL,
125 .szInclude = NULL,
126 .preexec = NULL,
127 .postexec = NULL,
128 .root_preexec = NULL,
129 .root_postexec = NULL,
130 .cups_options = NULL,
131 .print_command = NULL,
132 .lpq_command = NULL,
133 .lprm_command = NULL,
134 .lppause_command = NULL,
135 .lpresume_command = NULL,
136 .queuepause_command = NULL,
137 .queueresume_command = NULL,
138 ._printername = NULL,
139 .printjob_username = NULL,
140 .dont_descend = NULL,
141 .hosts_allow = NULL,
142 .hosts_deny = NULL,
143 .magic_script = NULL,
144 .magic_output = NULL,
145 .veto_files = NULL,
146 .hide_files = NULL,
147 .veto_oplock_files = NULL,
148 .comment = NULL,
149 .force_user = NULL,
150 .force_group = NULL,
151 .read_list = NULL,
152 .write_list = NULL,
153 .volume = NULL,
154 .fstype = NULL,
155 .vfs_objects = NULL,
156 .msdfs_proxy = NULL,
157 .aio_write_behind = NULL,
158 .dfree_command = NULL,
159 .min_print_space = 0,
160 .iMaxPrintJobs = 1000,
161 .max_reported_print_jobs = 0,
162 .write_cache_size = 0,
163 .create_mask = 0744,
164 .force_create_mode = 0,
165 .directory_mask = 0755,
166 .force_directory_mode = 0,
167 .max_connections = 0,
168 .default_case = CASE_LOWER,
169 .printing = DEFAULT_PRINTING,
170 .oplock_contention_limit = 2,
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 .bAvailable = true,
186 .read_only = true,
187 .guest_only = false,
188 .administrative_share = false,
189 .guest_ok = false,
190 .printable = false,
191 .print_notify_backchannel = false,
192 .map_system = false,
193 .map_hidden = false,
194 .map_archive = true,
195 .store_dos_attributes = false,
196 .dmapi_support = false,
197 .locking = true,
198 .strict_locking = Auto,
199 .posix_locking = true,
200 .oplocks = true,
201 .kernel_oplocks = false,
202 .level2_oplocks = true,
203 .only_user = false,
204 .mangled_names = true,
205 .bWidelinks = false,
206 .follow_symlinks = true,
207 .sync_always = false,
208 .strict_allocate = false,
209 .strict_sync = false,
210 .mangling_char = '~',
211 .copymap = NULL,
212 .delete_readonly = false,
213 .fake_oplocks = false,
214 .delete_veto_files = false,
215 .dos_filemode = false,
216 .dos_filetimes = true,
217 .dos_filetime_resolution = false,
218 .fake_directory_create_times = false,
219 .blocking_locks = true,
220 .inherit_permissions = false,
221 .inherit_acls = false,
222 .inherit_owner = false,
223 .msdfs_root = false,
224 .use_client_driver = false,
225 .default_devmode = true,
226 .force_printername = false,
227 .nt_acl_support = true,
228 .force_unknown_acl_user = false,
229 ._use_sendfile = false,
230 .profile_acls = false,
231 .map_acl_inherit = false,
232 .afs_share = false,
233 .ea_support = false,
234 .acl_check_permissions = true,
235 .acl_map_full_control = true,
236 .acl_group_control = false,
237 .acl_allow_execute_always = false,
238 .change_notify = true,
239 .kernel_change_notify = true,
240 .allocation_roundup_size = SMB_ROUNDUP_ALLOCATION_SIZE,
241 .aio_read_size = 0,
242 .aio_write_size = 0,
243 .map_readonly = MAP_READONLY_YES,
244 .directory_name_cache_size = 100,
245 .smb_encrypt = SMB_SIGNING_DEFAULT,
246 .kernel_share_modes = true,
247 .durable_handles = true,
248 .param_opt = NULL,
249 .dummy = ""
252 /* local variables */
253 static struct loadparm_service **ServicePtrs = NULL;
254 static int iNumServices = 0;
255 static int iServiceIndex = 0;
256 static struct db_context *ServiceHash;
257 static bool bInGlobalSection = true;
258 static bool bGlobalOnly = false;
259 static struct file_lists *file_lists = NULL;
260 static unsigned int *flags_list = NULL;
262 static void set_allowed_client_auth(void);
264 static bool lp_set_cmdline_helper(const char *pszParmName, const char *pszParmValue);
265 static void free_param_opts(struct parmlist_entry **popts);
267 /* this is used to prevent lots of mallocs of size 1 */
268 static const char null_string[] = "";
271 Free a string value.
274 static void string_free(char **s)
276 if (!s || !(*s))
277 return;
278 if (*s == null_string)
279 *s = NULL;
280 TALLOC_FREE(*s);
284 Set a string value, deallocating any existing space, and allocing the space
285 for the string
288 static bool string_set(TALLOC_CTX *mem_ctx, char **dest,const char *src)
290 string_free(dest);
292 if (!src) {
293 src = "";
296 (*dest) = talloc_strdup(mem_ctx, src);
297 if ((*dest) == NULL) {
298 DEBUG(0,("Out of memory in string_init\n"));
299 return false;
302 return true;
305 bool lp_string_set(char **dest, const char *src) {
306 return string_set(Globals.ctx, dest, src);
310 * Function to return the default value for the maximum number of open
311 * file descriptors permitted. This function tries to consult the
312 * kernel-level (sysctl) and ulimit (getrlimit()) values and goes
313 * the smaller of those.
315 static int max_open_files(void)
317 int sysctl_max = MAX_OPEN_FILES;
318 int rlimit_max = MAX_OPEN_FILES;
320 #ifdef HAVE_SYSCTLBYNAME
322 size_t size = sizeof(sysctl_max);
323 sysctlbyname("kern.maxfilesperproc", &sysctl_max, &size, NULL,
326 #endif
328 #if (defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE))
330 struct rlimit rl;
332 ZERO_STRUCT(rl);
334 if (getrlimit(RLIMIT_NOFILE, &rl) == 0)
335 rlimit_max = rl.rlim_cur;
337 #if defined(RLIM_INFINITY)
338 if(rl.rlim_cur == RLIM_INFINITY)
339 rlimit_max = MAX_OPEN_FILES;
340 #endif
342 #endif
344 if (sysctl_max < MIN_OPEN_FILES_WINDOWS) {
345 DEBUG(2,("max_open_files: increasing sysctl_max (%d) to "
346 "minimum Windows limit (%d)\n",
347 sysctl_max,
348 MIN_OPEN_FILES_WINDOWS));
349 sysctl_max = MIN_OPEN_FILES_WINDOWS;
352 if (rlimit_max < MIN_OPEN_FILES_WINDOWS) {
353 DEBUG(2,("rlimit_max: increasing rlimit_max (%d) to "
354 "minimum Windows limit (%d)\n",
355 rlimit_max,
356 MIN_OPEN_FILES_WINDOWS));
357 rlimit_max = MIN_OPEN_FILES_WINDOWS;
360 return MIN(sysctl_max, rlimit_max);
364 * Common part of freeing allocated data for one parameter.
366 static void free_one_parameter_common(void *parm_ptr,
367 struct parm_struct parm)
369 if ((parm.type == P_STRING) ||
370 (parm.type == P_USTRING))
372 string_free((char**)parm_ptr);
373 } else if (parm.type == P_LIST || parm.type == P_CMDLIST) {
374 TALLOC_FREE(*((char***)parm_ptr));
379 * Free the allocated data for one parameter for a share
380 * given as a service struct.
382 static void free_one_parameter(struct loadparm_service *service,
383 struct parm_struct parm)
385 void *parm_ptr;
387 if (parm.p_class != P_LOCAL) {
388 return;
391 parm_ptr = lp_parm_ptr(service, &parm);
393 free_one_parameter_common(parm_ptr, parm);
397 * Free the allocated parameter data of a share given
398 * as a service struct.
400 static void free_parameters(struct loadparm_service *service)
402 uint32_t i;
404 for (i=0; parm_table[i].label; i++) {
405 free_one_parameter(service, parm_table[i]);
410 * Free the allocated data for one parameter for a given share
411 * specified by an snum.
413 static void free_one_parameter_by_snum(int snum, struct parm_struct parm)
415 void *parm_ptr;
417 if (snum < 0) {
418 parm_ptr = lp_parm_ptr(NULL, &parm);
419 } else if (parm.p_class != P_LOCAL) {
420 return;
421 } else {
422 parm_ptr = lp_parm_ptr(ServicePtrs[snum], &parm);
425 free_one_parameter_common(parm_ptr, parm);
429 * Free the allocated parameter data for a share specified
430 * by an snum.
432 static void free_parameters_by_snum(int snum)
434 uint32_t i;
436 for (i=0; parm_table[i].label; i++) {
437 free_one_parameter_by_snum(snum, parm_table[i]);
442 * Free the allocated global parameters.
444 static void free_global_parameters(void)
446 free_param_opts(&Globals.param_opt);
447 free_parameters_by_snum(GLOBAL_SECTION_SNUM);
448 TALLOC_FREE(Globals.ctx);
451 struct lp_stored_option {
452 struct lp_stored_option *prev, *next;
453 const char *label;
454 const char *value;
457 static struct lp_stored_option *stored_options;
460 save options set by lp_set_cmdline() into a list. This list is
461 re-applied when we do a globals reset, so that cmdline set options
462 are sticky across reloads of smb.conf
464 bool store_lp_set_cmdline(const char *pszParmName, const char *pszParmValue)
466 struct lp_stored_option *entry, *entry_next;
467 for (entry = stored_options; entry != NULL; entry = entry_next) {
468 entry_next = entry->next;
469 if (strcmp(pszParmName, entry->label) == 0) {
470 DLIST_REMOVE(stored_options, entry);
471 talloc_free(entry);
472 break;
476 entry = talloc(NULL, struct lp_stored_option);
477 if (!entry) {
478 return false;
481 entry->label = talloc_strdup(entry, pszParmName);
482 if (!entry->label) {
483 talloc_free(entry);
484 return false;
487 entry->value = talloc_strdup(entry, pszParmValue);
488 if (!entry->value) {
489 talloc_free(entry);
490 return false;
493 DLIST_ADD_END(stored_options, entry, struct lp_stored_option);
495 return true;
498 static bool apply_lp_set_cmdline(void)
500 struct lp_stored_option *entry = NULL;
501 for (entry = stored_options; entry != NULL; entry = entry->next) {
502 if (!lp_set_cmdline_helper(entry->label, entry->value)) {
503 DEBUG(0, ("Failed to re-apply cmdline parameter %s = %s\n",
504 entry->label, entry->value));
505 return false;
508 return true;
511 /***************************************************************************
512 Initialise the global parameter structure.
513 ***************************************************************************/
515 static void init_globals(struct loadparm_context *lp_ctx, bool reinit_globals)
517 static bool done_init = false;
518 char *s = NULL;
519 int i;
521 /* If requested to initialize only once and we've already done it... */
522 if (!reinit_globals && done_init) {
523 /* ... then we have nothing more to do */
524 return;
527 if (!done_init) {
528 /* The logfile can be set before this is invoked. Free it if so. */
529 if (Globals.logfile != NULL) {
530 string_free(&Globals.logfile);
531 Globals.logfile = NULL;
533 done_init = true;
534 } else {
535 free_global_parameters();
538 /* This memset and the free_global_parameters() above will
539 * wipe out smb.conf options set with lp_set_cmdline(). The
540 * apply_lp_set_cmdline() call puts these values back in the
541 * table once the defaults are set */
542 ZERO_STRUCT(Globals);
544 Globals.ctx = talloc_pooled_object(NULL, char, 272, 2048);
546 /* Initialize the flags list if necessary */
547 if (flags_list == NULL) {
548 get_flags();
551 for (i = 0; parm_table[i].label; i++) {
552 if ((parm_table[i].type == P_STRING ||
553 parm_table[i].type == P_USTRING))
555 string_set(Globals.ctx, (char **)lp_parm_ptr(NULL, &parm_table[i]), "");
560 string_set(Globals.ctx, &sDefault.fstype, FSTYPE_STRING);
561 string_set(Globals.ctx, &sDefault.printjob_username, "%U");
563 init_printer_values(lp_ctx, Globals.ctx, &sDefault);
565 sDefault.ntvfs_handler = (const char **)str_list_make_v3(NULL, "unixuid default", NULL);
567 DEBUG(3, ("Initialising global parameters\n"));
569 /* Must manually force to upper case here, as this does not go via the handler */
570 string_set(Globals.ctx, &Globals.netbios_name, myhostname_upper());
572 string_set(Globals.ctx, &Globals.smb_passwd_file, get_dyn_SMB_PASSWD_FILE());
573 string_set(Globals.ctx, &Globals.private_dir, get_dyn_PRIVATE_DIR());
575 /* use the new 'hash2' method by default, with a prefix of 1 */
576 string_set(Globals.ctx, &Globals.mangling_method, "hash2");
577 Globals.mangle_prefix = 1;
579 string_set(Globals.ctx, &Globals.guest_account, GUEST_ACCOUNT);
581 /* using UTF8 by default allows us to support all chars */
582 string_set(Globals.ctx, &Globals.unix_charset, DEFAULT_UNIX_CHARSET);
584 /* Use codepage 850 as a default for the dos character set */
585 string_set(Globals.ctx, &Globals.dos_charset, DEFAULT_DOS_CHARSET);
588 * Allow the default PASSWD_CHAT to be overridden in local.h.
590 string_set(Globals.ctx, &Globals.passwd_chat, DEFAULT_PASSWD_CHAT);
592 string_set(Globals.ctx, &Globals.workgroup, DEFAULT_WORKGROUP);
594 string_set(Globals.ctx, &Globals.passwd_program, "");
595 string_set(Globals.ctx, &Globals.lock_directory, get_dyn_LOCKDIR());
596 string_set(Globals.ctx, &Globals.state_directory, get_dyn_STATEDIR());
597 string_set(Globals.ctx, &Globals.cache_directory, get_dyn_CACHEDIR());
598 string_set(Globals.ctx, &Globals.pid_directory, get_dyn_PIDDIR());
599 string_set(Globals.ctx, &Globals.nbt_client_socket_address, "0.0.0.0");
601 * By default support explicit binding to broadcast
602 * addresses.
604 Globals.nmbd_bind_explicit_broadcast = true;
606 s = talloc_asprintf(talloc_tos(), "Samba %s", samba_version_string());
607 if (s == NULL) {
608 smb_panic("init_globals: ENOMEM");
610 string_set(Globals.ctx, &Globals.server_string, s);
611 TALLOC_FREE(s);
612 #ifdef DEVELOPER
613 string_set(Globals.ctx, &Globals.panic_action, "/bin/sleep 999999999");
614 #endif
616 string_set(Globals.ctx, &Globals.socket_options, DEFAULT_SOCKET_OPTIONS);
618 string_set(Globals.ctx, &Globals.logon_drive, "");
619 /* %N is the NIS auto.home server if -DAUTOHOME is used, else same as %L */
620 string_set(Globals.ctx, &Globals.logon_home, "\\\\%N\\%U");
621 string_set(Globals.ctx, &Globals.logon_path, "\\\\%N\\%U\\profile");
623 Globals.name_resolve_order = (const char **)str_list_make_v3(NULL, "lmhosts wins host bcast", NULL);
624 string_set(Globals.ctx, &Globals.password_server, "*");
626 Globals.algorithmic_rid_base = BASE_RID;
628 Globals.load_printers = true;
629 Globals.printcap_cache_time = 750; /* 12.5 minutes */
631 Globals.config_backend = config_backend;
632 Globals._server_role = ROLE_AUTO;
634 /* Was 65535 (0xFFFF). 0x4101 matches W2K and causes major speed improvements... */
635 /* Discovered by 2 days of pain by Don McCall @ HP :-). */
636 Globals.max_xmit = 0x4104;
637 Globals.max_mux = 50; /* This is *needed* for profile support. */
638 Globals.lpq_cache_time = 30; /* changed to handle large print servers better -- jerry */
639 Globals._disable_spoolss = false;
640 Globals.max_smbd_processes = 0;/* no limit specified */
641 Globals.username_level = 0;
642 Globals.deadtime = 0;
643 Globals.getwd_cache = true;
644 Globals.large_readwrite = true;
645 Globals.max_log_size = 5000;
646 Globals.max_open_files = max_open_files();
647 Globals.server_max_protocol = PROTOCOL_SMB3_00;
648 Globals.server_min_protocol = PROTOCOL_LANMAN1;
649 Globals.client_max_protocol = PROTOCOL_NT1;
650 Globals.client_min_protocol = PROTOCOL_CORE;
651 Globals._security = SEC_AUTO;
652 Globals.encrypt_passwords = true;
653 Globals.client_schannel = Auto;
654 Globals.winbind_sealed_pipes = true;
655 Globals.require_strong_key = true;
656 Globals.server_schannel = Auto;
657 Globals.read_raw = true;
658 Globals.write_raw = true;
659 Globals.null_passwords = false;
660 Globals.old_password_allowed_period = 60;
661 Globals.obey_pam_restrictions = false;
662 Globals.syslog = 1;
663 Globals.syslog_only = false;
664 Globals.timestamp_logs = true;
665 string_set(Globals.ctx, &Globals.log_level, "0");
666 Globals.debug_prefix_timestamp = false;
667 Globals.debug_hires_timestamp = true;
668 Globals.debug_pid = false;
669 Globals.debug_uid = false;
670 Globals.debug_class = false;
671 Globals.enable_core_files = true;
672 Globals.max_ttl = 60 * 60 * 24 * 3; /* 3 days default. */
673 Globals.max_wins_ttl = 60 * 60 * 24 * 6; /* 6 days default. */
674 Globals.min_wins_ttl = 60 * 60 * 6; /* 6 hours default. */
675 Globals.machine_password_timeout = 60 * 60 * 24 * 7; /* 7 days default. */
676 Globals.lm_announce = Auto; /* = Auto: send only if LM clients found */
677 Globals.lm_interval = 60;
678 #if (defined(HAVE_NETGROUP) && defined(WITH_AUTOMOUNT))
679 Globals.nis_homedir = false;
680 #ifdef WITH_NISPLUS_HOME
681 string_set(Globals.ctx, &Globals.homedir_map, "auto_home.org_dir");
682 #else
683 string_set(Globals.ctx, &Globals.homedir_map, "auto.home");
684 #endif
685 #endif
686 Globals.time_server = false;
687 Globals.bind_interfaces_only = false;
688 Globals.unix_password_sync = false;
689 Globals.pam_password_change = false;
690 Globals.passwd_chat_debug = false;
691 Globals.passwd_chat_timeout = 2; /* 2 second default. */
692 Globals.nt_pipe_support = true; /* Do NT pipes by default. */
693 Globals.nt_status_support = true; /* Use NT status by default. */
694 Globals.stat_cache = true; /* use stat cache by default */
695 Globals.max_stat_cache_size = 256; /* 256k by default */
696 Globals.restrict_anonymous = 0;
697 Globals.client_lanman_auth = false; /* Do NOT use the LanMan hash if it is available */
698 Globals.client_plaintext_auth = false; /* Do NOT use a plaintext password even if is requested by the server */
699 Globals.lanman_auth = false; /* Do NOT use the LanMan hash, even if it is supplied */
700 Globals.ntlm_auth = true; /* Do use NTLMv1 if it is supplied by the client (otherwise NTLMv2) */
701 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 */
702 /* Note, that we will also use NTLM2 session security (which is different), if it is available */
704 Globals.map_to_guest = 0; /* By Default, "Never" */
705 Globals.oplock_break_wait_time = 0; /* By Default, 0 msecs. */
706 Globals.enhanced_browsing = true;
707 Globals.lock_spin_time = WINDOWS_MINIMUM_LOCK_TIMEOUT_MS; /* msec. */
708 #ifdef MMAP_BLACKLIST
709 Globals.use_mmap = false;
710 #else
711 Globals.use_mmap = true;
712 #endif
713 Globals.unicode = true;
714 Globals.unix_extensions = true;
715 Globals.reset_on_zero_vc = false;
716 Globals.log_writeable_files_on_exit = false;
717 Globals.create_krb5_conf = true;
718 Globals.winbindMaxDomainConnections = 1;
720 /* hostname lookups can be very expensive and are broken on
721 a large number of sites (tridge) */
722 Globals.hostname_lookups = false;
724 string_set(Globals.ctx, &Globals.passdb_backend, "tdbsam");
725 string_set(Globals.ctx, &Globals.ldap_suffix, "");
726 string_set(Globals.ctx, &Globals.szLdapMachineSuffix, "");
727 string_set(Globals.ctx, &Globals.szLdapUserSuffix, "");
728 string_set(Globals.ctx, &Globals.szLdapGroupSuffix, "");
729 string_set(Globals.ctx, &Globals.szLdapIdmapSuffix, "");
731 string_set(Globals.ctx, &Globals.ldap_admin_dn, "");
732 Globals.ldap_ssl = LDAP_SSL_START_TLS;
733 Globals.ldap_ssl_ads = false;
734 Globals.ldap_deref = -1;
735 Globals.ldap_passwd_sync = LDAP_PASSWD_SYNC_OFF;
736 Globals.ldap_delete_dn = false;
737 Globals.ldap_replication_sleep = 1000; /* wait 1 sec for replication */
738 Globals.ldap_follow_referral = Auto;
739 Globals.ldap_timeout = LDAP_DEFAULT_TIMEOUT;
740 Globals.ldap_connection_timeout = LDAP_CONNECTION_DEFAULT_TIMEOUT;
741 Globals.ldap_page_size = LDAP_PAGE_SIZE;
743 Globals.ldap_debug_level = 0;
744 Globals.ldap_debug_threshold = 10;
746 /* This is what we tell the afs client. in reality we set the token
747 * to never expire, though, when this runs out the afs client will
748 * forget the token. Set to 0 to get NEVERDATE.*/
749 Globals.afs_token_lifetime = 604800;
750 Globals.cups_connection_timeout = CUPS_DEFAULT_CONNECTION_TIMEOUT;
752 /* these parameters are set to defaults that are more appropriate
753 for the increasing samba install base:
755 as a member of the workgroup, that will possibly become a
756 _local_ master browser (lm = true). this is opposed to a forced
757 local master browser startup (pm = true).
759 doesn't provide WINS server service by default (wsupp = false),
760 and doesn't provide domain master browser services by default, either.
764 Globals.show_add_printer_wizard = true;
765 Globals.os_level = 20;
766 Globals.local_master = true;
767 Globals._domain_master = Auto; /* depending on _domain_logons */
768 Globals._domain_logons = false;
769 Globals.browse_list = true;
770 Globals.we_are_a_wins_server = false;
771 Globals.wins_proxy = false;
773 TALLOC_FREE(Globals.init_logon_delayed_hosts);
774 Globals.init_logon_delay = 100; /* 100 ms default delay */
776 Globals.wins_dns_proxy = true;
778 Globals.allow_trusted_domains = true;
779 string_set(Globals.ctx, &Globals.szIdmapBackend, "tdb");
781 string_set(Globals.ctx, &Globals.template_shell, "/bin/false");
782 string_set(Globals.ctx, &Globals.template_homedir, "/home/%D/%U");
783 string_set(Globals.ctx, &Globals.winbind_separator, "\\");
784 string_set(Globals.ctx, &Globals.winbindd_socket_directory, dyn_WINBINDD_SOCKET_DIR);
786 string_set(Globals.ctx, &Globals.cups_server, "");
787 string_set(Globals.ctx, &Globals.iprint_server, "");
789 string_set(Globals.ctx, &Globals._ctdbd_socket, "");
791 Globals.cluster_addresses = NULL;
792 Globals.clustering = false;
793 Globals.ctdb_timeout = 0;
794 Globals.ctdb_locktime_warn_threshold = 0;
796 Globals.winbind_cache_time = 300; /* 5 minutes */
797 Globals.winbind_reconnect_delay = 30; /* 30 seconds */
798 Globals.winbind_request_timeout = 60; /* 60 seconds */
799 Globals.winbind_max_clients = 200;
800 Globals.winbind_enum_users = false;
801 Globals.winbind_enum_groups = false;
802 Globals.winbind_use_default_domain = false;
803 Globals.winbind_trusted_domains_only = false;
804 Globals.winbind_nested_groups = true;
805 Globals.winbind_expand_groups = 1;
806 Globals.winbind_nss_info = (const char **)str_list_make_v3(NULL, "template", NULL);
807 Globals.winbind_refresh_tickets = false;
808 Globals.winbind_offline_logon = false;
810 Globals.idmap_cache_time = 86400 * 7; /* a week by default */
811 Globals.idmap_negative_cache_time = 120; /* 2 minutes by default */
813 Globals.passdb_expand_explicit = false;
815 Globals.name_cache_timeout = 660; /* In seconds */
817 Globals.use_spnego = true;
818 Globals.client_use_spnego = true;
820 Globals.client_signing = SMB_SIGNING_DEFAULT;
821 Globals.server_signing = SMB_SIGNING_DEFAULT;
823 Globals.defer_sharing_violations = true;
824 Globals.smb_ports = (const char **)str_list_make_v3(NULL, SMB_PORTS, NULL);
826 Globals.enable_privileges = true;
827 Globals.host_msdfs = true;
828 Globals.enable_asu_support = false;
830 /* User defined shares. */
831 s = talloc_asprintf(talloc_tos(), "%s/usershares", get_dyn_STATEDIR());
832 if (s == NULL) {
833 smb_panic("init_globals: ENOMEM");
835 string_set(Globals.ctx, &Globals.usershare_path, s);
836 TALLOC_FREE(s);
837 string_set(Globals.ctx, &Globals.usershare_template_share, "");
838 Globals.usershare_max_shares = 0;
839 /* By default disallow sharing of directories not owned by the sharer. */
840 Globals.usershare_owner_only = true;
841 /* By default disallow guest access to usershares. */
842 Globals.usershare_allow_guests = false;
844 Globals.keepalive = DEFAULT_KEEPALIVE;
846 /* By default no shares out of the registry */
847 Globals.registry_shares = false;
849 Globals.iminreceivefile = 0;
851 Globals.map_untrusted_to_domain = false;
852 Globals.multicast_dns_register = true;
854 Globals.smb2_max_read = DEFAULT_SMB2_MAX_READ;
855 Globals.smb2_max_write = DEFAULT_SMB2_MAX_WRITE;
856 Globals.smb2_max_trans = DEFAULT_SMB2_MAX_TRANSACT;
857 Globals.ismb2_max_credits = DEFAULT_SMB2_MAX_CREDITS;
859 string_set(Globals.ctx, &Globals.ncalrpc_dir, get_dyn_NCALRPCDIR());
861 Globals.server_services = (const char **)str_list_make_v3(NULL, "s3fs rpc nbt wrepl ldap cldap kdc drepl winbindd ntp_signd kcc dnsupdate dns", NULL);
863 Globals.dcerpc_endpoint_servers = (const char **)str_list_make_v3(NULL, "epmapper wkssvc rpcecho samr netlogon lsarpc spoolss drsuapi dssetup unixinfo browser eventlog6 backupkey dnsserver", NULL);
865 Globals.tls_enabled = true;
867 string_set(Globals.ctx, &Globals._tls_keyfile, "tls/key.pem");
868 string_set(Globals.ctx, &Globals._tls_certfile, "tls/cert.pem");
869 string_set(Globals.ctx, &Globals._tls_cafile, "tls/ca.pem");
871 string_set(Globals.ctx, &Globals.share_backend, "classic");
873 Globals.iPreferredMaster = Auto;
875 Globals.allow_dns_updates = DNS_UPDATE_SIGNED;
877 string_set(Globals.ctx, &Globals.ntp_signd_socket_directory, get_dyn_NTP_SIGND_SOCKET_DIR());
879 string_set(Globals.ctx, &Globals.winbindd_privileged_socket_directory, get_dyn_WINBINDD_PRIVILEGED_SOCKET_DIR());
881 s = talloc_asprintf(talloc_tos(), "%s/samba_kcc", get_dyn_SCRIPTSBINDIR());
882 if (s == NULL) {
883 smb_panic("init_globals: ENOMEM");
885 Globals.samba_kcc_command = (const char **)str_list_make_v3(NULL, s, NULL);
886 TALLOC_FREE(s);
888 s = talloc_asprintf(talloc_tos(), "%s/samba_dnsupdate", get_dyn_SCRIPTSBINDIR());
889 if (s == NULL) {
890 smb_panic("init_globals: ENOMEM");
892 Globals.dns_update_command = (const char **)str_list_make_v3(NULL, s, NULL);
893 TALLOC_FREE(s);
895 s = talloc_asprintf(talloc_tos(), "%s/samba_spnupdate", get_dyn_SCRIPTSBINDIR());
896 if (s == NULL) {
897 smb_panic("init_globals: ENOMEM");
899 Globals.spn_update_command = (const char **)str_list_make_v3(NULL, s, NULL);
900 TALLOC_FREE(s);
902 Globals.nsupdate_command = (const char **)str_list_make_v3(NULL, "/usr/bin/nsupdate -g", NULL);
904 Globals.rndc_command = (const char **)str_list_make_v3(NULL, "/usr/sbin/rndc", NULL);
906 Globals.cldap_port = 389;
908 Globals.dgram_port = 138;
910 Globals.nbt_port = 137;
912 Globals.krb5_port = 88;
914 Globals.kpasswd_port = 464;
916 Globals.web_port = 901;
918 /* Now put back the settings that were set with lp_set_cmdline() */
919 apply_lp_set_cmdline();
922 /* Convenience routine to setup an lp_context with additional s3 variables */
923 static struct loadparm_context *setup_lp_context(TALLOC_CTX *mem_ctx)
925 struct loadparm_context *lp_ctx;
927 lp_ctx = loadparm_init_s3(mem_ctx,
928 loadparm_s3_helpers());
929 if (lp_ctx == NULL) {
930 DEBUG(0, ("loadparm_init_s3 failed\n"));
931 return NULL;
934 lp_ctx->sDefault = &sDefault;
935 lp_ctx->services = NULL; /* We do not want to access this directly */
936 lp_ctx->bInGlobalSection = bInGlobalSection;
937 lp_ctx->flags = flags_list;
939 return lp_ctx;
942 /*******************************************************************
943 Convenience routine to grab string parameters into talloced memory
944 and run standard_sub_basic on them. The buffers can be written to by
945 callers without affecting the source string.
946 ********************************************************************/
948 char *lp_string(TALLOC_CTX *ctx, const char *s)
950 char *ret;
952 /* The follow debug is useful for tracking down memory problems
953 especially if you have an inner loop that is calling a lp_*()
954 function that returns a string. Perhaps this debug should be
955 present all the time? */
957 #if 0
958 DEBUG(10, ("lp_string(%s)\n", s));
959 #endif
960 if (!s) {
961 return NULL;
964 ret = talloc_sub_basic(ctx,
965 get_current_username(),
966 current_user_info.domain,
968 if (trim_char(ret, '\"', '\"')) {
969 if (strchr(ret,'\"') != NULL) {
970 TALLOC_FREE(ret);
971 ret = talloc_sub_basic(ctx,
972 get_current_username(),
973 current_user_info.domain,
977 return ret;
981 In this section all the functions that are used to access the
982 parameters from the rest of the program are defined
985 #define FN_GLOBAL_STRING(fn_name,ptr) \
986 char *lp_ ## fn_name(TALLOC_CTX *ctx) {return(lp_string((ctx), *(char **)(&Globals.ptr) ? *(char **)(&Globals.ptr) : ""));}
987 #define FN_GLOBAL_CONST_STRING(fn_name,ptr) \
988 const char *lp_ ## fn_name(void) {return(*(const char * const *)(&Globals.ptr) ? *(const char * const *)(&Globals.ptr) : "");}
989 #define FN_GLOBAL_LIST(fn_name,ptr) \
990 const char **lp_ ## fn_name(void) {return(*(const char ***)(&Globals.ptr));}
991 #define FN_GLOBAL_BOOL(fn_name,ptr) \
992 bool lp_ ## fn_name(void) {return(*(bool *)(&Globals.ptr));}
993 #define FN_GLOBAL_CHAR(fn_name,ptr) \
994 char lp_ ## fn_name(void) {return(*(char *)(&Globals.ptr));}
995 #define FN_GLOBAL_INTEGER(fn_name,ptr) \
996 int lp_ ## fn_name(void) {return(*(int *)(&Globals.ptr));}
998 #define FN_LOCAL_STRING(fn_name,val) \
999 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));}
1000 #define FN_LOCAL_CONST_STRING(fn_name,val) \
1001 const char *lp_ ## fn_name(int i) {return (const char *)((LP_SNUM_OK(i) && ServicePtrs[(i)]->val) ? ServicePtrs[(i)]->val : sDefault.val);}
1002 #define FN_LOCAL_LIST(fn_name,val) \
1003 const char **lp_ ## fn_name(int i) {return(const char **)(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
1004 #define FN_LOCAL_BOOL(fn_name,val) \
1005 bool lp_ ## fn_name(int i) {return(bool)(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
1006 #define FN_LOCAL_INTEGER(fn_name,val) \
1007 int lp_ ## fn_name(int i) {return(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
1009 #define FN_LOCAL_PARM_BOOL(fn_name,val) \
1010 bool lp_ ## fn_name(const struct share_params *p) {return(bool)(LP_SNUM_OK(p->service)? ServicePtrs[(p->service)]->val : sDefault.val);}
1011 #define FN_LOCAL_PARM_INTEGER(fn_name,val) \
1012 int lp_ ## fn_name(const struct share_params *p) {return(LP_SNUM_OK(p->service)? ServicePtrs[(p->service)]->val : sDefault.val);}
1013 #define FN_LOCAL_PARM_CHAR(fn_name,val) \
1014 char lp_ ## fn_name(const struct share_params *p) {return(LP_SNUM_OK(p->service)? ServicePtrs[(p->service)]->val : sDefault.val);}
1016 static FN_GLOBAL_INTEGER(winbind_max_domain_connections_int,
1017 winbindMaxDomainConnections)
1019 int lp_winbind_max_domain_connections(void)
1021 if (lp_winbind_offline_logon() &&
1022 lp_winbind_max_domain_connections_int() > 1) {
1023 DEBUG(1, ("offline logons active, restricting max domain "
1024 "connections to 1\n"));
1025 return 1;
1027 return MAX(1, lp_winbind_max_domain_connections_int());
1030 int lp_smb2_max_credits(void)
1032 if (Globals.ismb2_max_credits == 0) {
1033 Globals.ismb2_max_credits = DEFAULT_SMB2_MAX_CREDITS;
1035 return Globals.ismb2_max_credits;
1037 int lp_cups_encrypt(void)
1039 int result = 0;
1040 #ifdef HAVE_HTTPCONNECTENCRYPT
1041 switch (Globals.CupsEncrypt) {
1042 case Auto:
1043 result = HTTP_ENCRYPT_REQUIRED;
1044 break;
1045 case true:
1046 result = HTTP_ENCRYPT_ALWAYS;
1047 break;
1048 case false:
1049 result = HTTP_ENCRYPT_NEVER;
1050 break;
1052 #endif
1053 return result;
1056 /* These functions remain in source3/param for now */
1058 #include "lib/param/param_functions.c"
1060 FN_LOCAL_STRING(servicename, szService)
1061 FN_LOCAL_CONST_STRING(const_servicename, szService)
1063 /* These functions cannot be auto-generated */
1064 FN_LOCAL_BOOL(autoloaded, autoloaded)
1065 FN_GLOBAL_CONST_STRING(dnsdomain, dnsdomain)
1067 /* local prototypes */
1069 static int map_parameter_canonical(const char *pszParmName, bool *inverse);
1070 static const char *get_boolean(bool bool_value);
1071 static bool do_parameter(const char *pszParmName, const char *pszParmValue,
1072 void *userdata);
1073 static bool hash_a_service(const char *name, int number);
1074 static void free_service_byindex(int iService);
1075 static void show_parameter(int parmIndex);
1076 static bool is_synonym_of(int parm1, int parm2, bool *inverse);
1079 * This is a helper function for parametrical options support. It returns a
1080 * pointer to parametrical option value if it exists or NULL otherwise. Actual
1081 * parametrical functions are quite simple
1083 static struct parmlist_entry *get_parametrics(int snum, const char *type,
1084 const char *option)
1086 if (snum >= iNumServices) return NULL;
1088 if (snum < 0) {
1089 return get_parametric_helper(NULL, type, option, Globals.param_opt);
1090 } else {
1091 return get_parametric_helper(ServicePtrs[snum],
1092 type, option, Globals.param_opt);
1097 #define MISSING_PARAMETER(name) \
1098 DEBUG(0, ("%s(): value is NULL or empty!\n", #name))
1100 /*******************************************************************
1101 convenience routine to return enum parameters.
1102 ********************************************************************/
1103 static int lp_enum(const char *s,const struct enum_list *_enum)
1105 int i;
1107 if (!s || !*s || !_enum) {
1108 MISSING_PARAMETER(lp_enum);
1109 return (-1);
1112 for (i=0; _enum[i].name; i++) {
1113 if (strequal(_enum[i].name,s))
1114 return _enum[i].value;
1117 DEBUG(0,("lp_enum(%s,enum): value is not in enum_list!\n",s));
1118 return (-1);
1121 #undef MISSING_PARAMETER
1123 /* Return parametric option from a given service. Type is a part of option before ':' */
1124 /* Parametric option has following syntax: 'Type: option = value' */
1125 char *lp_parm_talloc_string(TALLOC_CTX *ctx, int snum, const char *type, const char *option, const char *def)
1127 struct parmlist_entry *data = get_parametrics(snum, type, option);
1129 if (data == NULL||data->value==NULL) {
1130 if (def) {
1131 return lp_string(ctx, def);
1132 } else {
1133 return NULL;
1137 return lp_string(ctx, data->value);
1140 /* Return parametric option from a given service. Type is a part of option before ':' */
1141 /* Parametric option has following syntax: 'Type: option = value' */
1142 const char *lp_parm_const_string(int snum, const char *type, const char *option, const char *def)
1144 struct parmlist_entry *data = get_parametrics(snum, type, option);
1146 if (data == NULL||data->value==NULL)
1147 return def;
1149 return data->value;
1153 /* Return parametric option from a given service. Type is a part of option before ':' */
1154 /* Parametric option has following syntax: 'Type: option = value' */
1156 const char **lp_parm_string_list(int snum, const char *type, const char *option, const char **def)
1158 struct parmlist_entry *data = get_parametrics(snum, type, option);
1160 if (data == NULL||data->value==NULL)
1161 return (const char **)def;
1163 if (data->list==NULL) {
1164 data->list = str_list_make_v3(NULL, data->value, NULL);
1167 return (const char **)data->list;
1170 /* Return parametric option from a given service. Type is a part of option before ':' */
1171 /* Parametric option has following syntax: 'Type: option = value' */
1173 int lp_parm_int(int snum, const char *type, const char *option, int def)
1175 struct parmlist_entry *data = get_parametrics(snum, type, option);
1177 if (data && data->value && *data->value)
1178 return lp_int(data->value);
1180 return def;
1183 /* Return parametric option from a given service. Type is a part of option before ':' */
1184 /* Parametric option has following syntax: 'Type: option = value' */
1186 unsigned long lp_parm_ulong(int snum, const char *type, const char *option, unsigned long def)
1188 struct parmlist_entry *data = get_parametrics(snum, type, option);
1190 if (data && data->value && *data->value)
1191 return lp_ulong(data->value);
1193 return def;
1196 /* Return parametric option from a given service. Type is a part of option before ':' */
1197 /* Parametric option has following syntax: 'Type: option = value' */
1199 bool lp_parm_bool(int snum, const char *type, const char *option, bool def)
1201 struct parmlist_entry *data = get_parametrics(snum, type, option);
1203 if (data && data->value && *data->value)
1204 return lp_bool(data->value);
1206 return def;
1209 /* Return parametric option from a given service. Type is a part of option before ':' */
1210 /* Parametric option has following syntax: 'Type: option = value' */
1212 int lp_parm_enum(int snum, const char *type, const char *option,
1213 const struct enum_list *_enum, int def)
1215 struct parmlist_entry *data = get_parametrics(snum, type, option);
1217 if (data && data->value && *data->value && _enum)
1218 return lp_enum(data->value, _enum);
1220 return def;
1224 * free a param_opts structure.
1225 * param_opts handling should be moved to talloc;
1226 * then this whole functions reduces to a TALLOC_FREE().
1229 static void free_param_opts(struct parmlist_entry **popts)
1231 struct parmlist_entry *opt, *next_opt;
1233 if (*popts != NULL) {
1234 DEBUG(5, ("Freeing parametrics:\n"));
1236 opt = *popts;
1237 while (opt != NULL) {
1238 string_free(&opt->key);
1239 string_free(&opt->value);
1240 TALLOC_FREE(opt->list);
1241 next_opt = opt->next;
1242 TALLOC_FREE(opt);
1243 opt = next_opt;
1245 *popts = NULL;
1248 /***************************************************************************
1249 Free the dynamically allocated parts of a service struct.
1250 ***************************************************************************/
1252 static void free_service(struct loadparm_service *pservice)
1254 if (!pservice)
1255 return;
1257 if (pservice->szService)
1258 DEBUG(5, ("free_service: Freeing service %s\n",
1259 pservice->szService));
1261 free_parameters(pservice);
1263 string_free(&pservice->szService);
1264 TALLOC_FREE(pservice->copymap);
1266 free_param_opts(&pservice->param_opt);
1268 ZERO_STRUCTP(pservice);
1272 /***************************************************************************
1273 remove a service indexed in the ServicePtrs array from the ServiceHash
1274 and free the dynamically allocated parts
1275 ***************************************************************************/
1277 static void free_service_byindex(int idx)
1279 if ( !LP_SNUM_OK(idx) )
1280 return;
1282 ServicePtrs[idx]->valid = false;
1284 /* we have to cleanup the hash record */
1286 if (ServicePtrs[idx]->szService) {
1287 char *canon_name = canonicalize_servicename(
1288 talloc_tos(),
1289 ServicePtrs[idx]->szService );
1291 dbwrap_delete_bystring(ServiceHash, canon_name );
1292 TALLOC_FREE(canon_name);
1295 free_service(ServicePtrs[idx]);
1296 talloc_free_children(ServicePtrs[idx]);
1299 /***************************************************************************
1300 Add a new service to the services array initialising it with the given
1301 service.
1302 ***************************************************************************/
1304 static int add_a_service(const struct loadparm_service *pservice, const char *name)
1306 int i;
1307 int num_to_alloc = iNumServices + 1;
1308 struct loadparm_service **tsp = NULL;
1310 /* it might already exist */
1311 if (name) {
1312 i = getservicebyname(name, NULL);
1313 if (i >= 0) {
1314 return (i);
1318 /* if not, then create one */
1319 i = iNumServices;
1320 tsp = talloc_realloc(NULL, ServicePtrs, struct loadparm_service *, num_to_alloc);
1321 if (tsp == NULL) {
1322 DEBUG(0,("add_a_service: failed to enlarge ServicePtrs!\n"));
1323 return (-1);
1325 ServicePtrs = tsp;
1326 ServicePtrs[iNumServices] = talloc_zero(NULL, struct loadparm_service);
1327 if (!ServicePtrs[iNumServices]) {
1328 DEBUG(0,("add_a_service: out of memory!\n"));
1329 return (-1);
1331 iNumServices++;
1333 ServicePtrs[i]->valid = true;
1335 copy_service(ServicePtrs[i], pservice, NULL);
1336 if (name)
1337 string_set(ServicePtrs[i], &ServicePtrs[i]->szService, name);
1339 DEBUG(8,("add_a_service: Creating snum = %d for %s\n",
1340 i, ServicePtrs[i]->szService));
1342 if (!hash_a_service(ServicePtrs[i]->szService, i)) {
1343 return (-1);
1346 return (i);
1349 /***************************************************************************
1350 Convert a string to uppercase and remove whitespaces.
1351 ***************************************************************************/
1353 char *canonicalize_servicename(TALLOC_CTX *ctx, const char *src)
1355 char *result;
1357 if ( !src ) {
1358 DEBUG(0,("canonicalize_servicename: NULL source name!\n"));
1359 return NULL;
1362 result = talloc_strdup(ctx, src);
1363 SMB_ASSERT(result != NULL);
1365 if (!strlower_m(result)) {
1366 TALLOC_FREE(result);
1367 return NULL;
1369 return result;
1372 /***************************************************************************
1373 Add a name/index pair for the services array to the hash table.
1374 ***************************************************************************/
1376 static bool hash_a_service(const char *name, int idx)
1378 char *canon_name;
1380 if ( !ServiceHash ) {
1381 DEBUG(10,("hash_a_service: creating servicehash\n"));
1382 ServiceHash = db_open_rbt(NULL);
1383 if ( !ServiceHash ) {
1384 DEBUG(0,("hash_a_service: open tdb servicehash failed!\n"));
1385 return false;
1389 DEBUG(10,("hash_a_service: hashing index %d for service name %s\n",
1390 idx, name));
1392 canon_name = canonicalize_servicename(talloc_tos(), name );
1394 dbwrap_store_bystring(ServiceHash, canon_name,
1395 make_tdb_data((uint8 *)&idx, sizeof(idx)),
1396 TDB_REPLACE);
1398 TALLOC_FREE(canon_name);
1400 return true;
1403 /***************************************************************************
1404 Add a new home service, with the specified home directory, defaults coming
1405 from service ifrom.
1406 ***************************************************************************/
1408 bool lp_add_home(const char *pszHomename, int iDefaultService,
1409 const char *user, const char *pszHomedir)
1411 int i;
1413 if (pszHomename == NULL || user == NULL || pszHomedir == NULL ||
1414 pszHomedir[0] == '\0') {
1415 return false;
1418 i = add_a_service(ServicePtrs[iDefaultService], pszHomename);
1420 if (i < 0)
1421 return false;
1423 if (!(*(ServicePtrs[iDefaultService]->path))
1424 || strequal(ServicePtrs[iDefaultService]->path,
1425 lp_path(talloc_tos(), GLOBAL_SECTION_SNUM))) {
1426 string_set(ServicePtrs[i], &ServicePtrs[i]->path, pszHomedir);
1429 if (!(*(ServicePtrs[i]->comment))) {
1430 char *comment = talloc_asprintf(talloc_tos(), "Home directory of %s", user);
1431 if (comment == NULL) {
1432 return false;
1434 string_set(ServicePtrs[i], &ServicePtrs[i]->comment, comment);
1435 TALLOC_FREE(comment);
1438 /* set the browseable flag from the global default */
1440 ServicePtrs[i]->browseable = sDefault.browseable;
1441 ServicePtrs[i]->access_based_share_enum = sDefault.access_based_share_enum;
1443 ServicePtrs[i]->autoloaded = true;
1445 DEBUG(3, ("adding home's share [%s] for user '%s' at '%s'\n", pszHomename,
1446 user, ServicePtrs[i]->path ));
1448 return true;
1451 /***************************************************************************
1452 Add a new service, based on an old one.
1453 ***************************************************************************/
1455 int lp_add_service(const char *pszService, int iDefaultService)
1457 if (iDefaultService < 0) {
1458 return add_a_service(&sDefault, pszService);
1461 return (add_a_service(ServicePtrs[iDefaultService], pszService));
1464 /***************************************************************************
1465 Add the IPC service.
1466 ***************************************************************************/
1468 static bool lp_add_ipc(const char *ipc_name, bool guest_ok)
1470 char *comment = NULL;
1471 int i = add_a_service(&sDefault, ipc_name);
1473 if (i < 0)
1474 return false;
1476 comment = talloc_asprintf(talloc_tos(), "IPC Service (%s)",
1477 Globals.server_string);
1478 if (comment == NULL) {
1479 return false;
1482 string_set(ServicePtrs[i], &ServicePtrs[i]->path, tmpdir());
1483 string_set(ServicePtrs[i], &ServicePtrs[i]->username, "");
1484 string_set(ServicePtrs[i], &ServicePtrs[i]->comment, comment);
1485 string_set(ServicePtrs[i], &ServicePtrs[i]->fstype, "IPC");
1486 ServicePtrs[i]->max_connections = 0;
1487 ServicePtrs[i]->bAvailable = true;
1488 ServicePtrs[i]->read_only = true;
1489 ServicePtrs[i]->guest_only = false;
1490 ServicePtrs[i]->administrative_share = true;
1491 ServicePtrs[i]->guest_ok = guest_ok;
1492 ServicePtrs[i]->printable = false;
1493 ServicePtrs[i]->browseable = sDefault.browseable;
1495 DEBUG(3, ("adding IPC service\n"));
1497 TALLOC_FREE(comment);
1498 return true;
1501 /***************************************************************************
1502 Add a new printer service, with defaults coming from service iFrom.
1503 ***************************************************************************/
1505 bool lp_add_printer(const char *pszPrintername, int iDefaultService)
1507 const char *comment = "From Printcap";
1508 int i = add_a_service(ServicePtrs[iDefaultService], pszPrintername);
1510 if (i < 0)
1511 return false;
1513 /* note that we do NOT default the availability flag to true - */
1514 /* we take it from the default service passed. This allows all */
1515 /* dynamic printers to be disabled by disabling the [printers] */
1516 /* entry (if/when the 'available' keyword is implemented!). */
1518 /* the printer name is set to the service name. */
1519 string_set(ServicePtrs[i], &ServicePtrs[i]->_printername, pszPrintername);
1520 string_set(ServicePtrs[i], &ServicePtrs[i]->comment, comment);
1522 /* set the browseable flag from the gloabl default */
1523 ServicePtrs[i]->browseable = sDefault.browseable;
1525 /* Printers cannot be read_only. */
1526 ServicePtrs[i]->read_only = false;
1527 /* No oplocks on printer services. */
1528 ServicePtrs[i]->oplocks = false;
1529 /* Printer services must be printable. */
1530 ServicePtrs[i]->printable = true;
1532 DEBUG(3, ("adding printer service %s\n", pszPrintername));
1534 return true;
1538 /***************************************************************************
1539 Check whether the given parameter name is valid.
1540 Parametric options (names containing a colon) are considered valid.
1541 ***************************************************************************/
1543 bool lp_parameter_is_valid(const char *pszParmName)
1545 return ((lpcfg_map_parameter(pszParmName) != -1) ||
1546 (strchr(pszParmName, ':') != NULL));
1549 /***************************************************************************
1550 Check whether the given name is the name of a global parameter.
1551 Returns true for strings belonging to parameters of class
1552 P_GLOBAL, false for all other strings, also for parametric options
1553 and strings not belonging to any option.
1554 ***************************************************************************/
1556 bool lp_parameter_is_global(const char *pszParmName)
1558 int num = lpcfg_map_parameter(pszParmName);
1560 if (num >= 0) {
1561 return (parm_table[num].p_class == P_GLOBAL);
1564 return false;
1567 /**************************************************************************
1568 Check whether the given name is the canonical name of a parameter.
1569 Returns false if it is not a valid parameter Name.
1570 For parametric options, true is returned.
1571 **************************************************************************/
1573 bool lp_parameter_is_canonical(const char *parm_name)
1575 if (!lp_parameter_is_valid(parm_name)) {
1576 return false;
1579 return (lpcfg_map_parameter(parm_name) ==
1580 map_parameter_canonical(parm_name, NULL));
1583 /**************************************************************************
1584 Determine the canonical name for a parameter.
1585 Indicate when it is an inverse (boolean) synonym instead of a
1586 "usual" synonym.
1587 **************************************************************************/
1589 bool lp_canonicalize_parameter(const char *parm_name, const char **canon_parm,
1590 bool *inverse)
1592 int num;
1594 if (!lp_parameter_is_valid(parm_name)) {
1595 *canon_parm = NULL;
1596 return false;
1599 num = map_parameter_canonical(parm_name, inverse);
1600 if (num < 0) {
1601 /* parametric option */
1602 *canon_parm = parm_name;
1603 } else {
1604 *canon_parm = parm_table[num].label;
1607 return true;
1611 /**************************************************************************
1612 Determine the canonical name for a parameter.
1613 Turn the value given into the inverse boolean expression when
1614 the synonym is an invers boolean synonym.
1616 Return true if parm_name is a valid parameter name and
1617 in case it is an invers boolean synonym, if the val string could
1618 successfully be converted to the reverse bool.
1619 Return false in all other cases.
1620 **************************************************************************/
1622 bool lp_canonicalize_parameter_with_value(const char *parm_name,
1623 const char *val,
1624 const char **canon_parm,
1625 const char **canon_val)
1627 int num;
1628 bool inverse;
1630 if (!lp_parameter_is_valid(parm_name)) {
1631 *canon_parm = NULL;
1632 *canon_val = NULL;
1633 return false;
1636 num = map_parameter_canonical(parm_name, &inverse);
1637 if (num < 0) {
1638 /* parametric option */
1639 *canon_parm = parm_name;
1640 *canon_val = val;
1641 } else {
1642 *canon_parm = parm_table[num].label;
1643 if (inverse) {
1644 if (!lp_invert_boolean(val, canon_val)) {
1645 *canon_val = NULL;
1646 return false;
1648 } else {
1649 *canon_val = val;
1653 return true;
1656 /***************************************************************************
1657 Map a parameter's string representation to the index of the canonical
1658 form of the parameter (it might be a synonym).
1659 Returns -1 if the parameter string is not recognised.
1660 ***************************************************************************/
1662 static int map_parameter_canonical(const char *pszParmName, bool *inverse)
1664 int parm_num, canon_num;
1665 bool loc_inverse = false;
1667 parm_num = lpcfg_map_parameter(pszParmName);
1668 if ((parm_num < 0) || !(parm_table[parm_num].flags & FLAG_HIDE)) {
1669 /* invalid, parametric or no canidate for synonyms ... */
1670 goto done;
1673 for (canon_num = 0; parm_table[canon_num].label; canon_num++) {
1674 if (is_synonym_of(parm_num, canon_num, &loc_inverse)) {
1675 parm_num = canon_num;
1676 goto done;
1680 done:
1681 if (inverse != NULL) {
1682 *inverse = loc_inverse;
1684 return parm_num;
1687 /***************************************************************************
1688 return true if parameter number parm1 is a synonym of parameter
1689 number parm2 (parm2 being the principal name).
1690 set inverse to true if parm1 is P_BOOLREV and parm2 is P_BOOL,
1691 false otherwise.
1692 ***************************************************************************/
1694 static bool is_synonym_of(int parm1, int parm2, bool *inverse)
1696 if ((parm_table[parm1].offset == parm_table[parm2].offset) &&
1697 (parm_table[parm1].p_class == parm_table[parm2].p_class) &&
1698 (parm_table[parm1].flags & FLAG_HIDE) &&
1699 !(parm_table[parm2].flags & FLAG_HIDE))
1701 if (inverse != NULL) {
1702 if ((parm_table[parm1].type == P_BOOLREV) &&
1703 (parm_table[parm2].type == P_BOOL))
1705 *inverse = true;
1706 } else {
1707 *inverse = false;
1710 return true;
1712 return false;
1715 /***************************************************************************
1716 Show one parameter's name, type, [values,] and flags.
1717 (helper functions for show_parameter_list)
1718 ***************************************************************************/
1720 static void show_parameter(int parmIndex)
1722 int enumIndex, flagIndex;
1723 int parmIndex2;
1724 bool hadFlag;
1725 bool hadSyn;
1726 bool inverse;
1727 const char *type[] = { "P_BOOL", "P_BOOLREV", "P_CHAR", "P_INTEGER",
1728 "P_OCTAL", "P_LIST", "P_STRING", "P_USTRING",
1729 "P_ENUM", "P_SEP"};
1730 unsigned flags[] = { FLAG_BASIC, FLAG_SHARE, FLAG_PRINT, FLAG_GLOBAL,
1731 FLAG_WIZARD, FLAG_ADVANCED, FLAG_DEVELOPER, FLAG_DEPRECATED,
1732 FLAG_HIDE};
1733 const char *flag_names[] = { "FLAG_BASIC", "FLAG_SHARE", "FLAG_PRINT",
1734 "FLAG_GLOBAL", "FLAG_WIZARD", "FLAG_ADVANCED", "FLAG_DEVELOPER",
1735 "FLAG_DEPRECATED", "FLAG_HIDE", NULL};
1737 printf("%s=%s", parm_table[parmIndex].label,
1738 type[parm_table[parmIndex].type]);
1739 if (parm_table[parmIndex].type == P_ENUM) {
1740 printf(",");
1741 for (enumIndex=0;
1742 parm_table[parmIndex].enum_list[enumIndex].name;
1743 enumIndex++)
1745 printf("%s%s",
1746 enumIndex ? "|" : "",
1747 parm_table[parmIndex].enum_list[enumIndex].name);
1750 printf(",");
1751 hadFlag = false;
1752 for (flagIndex=0; flag_names[flagIndex]; flagIndex++) {
1753 if (parm_table[parmIndex].flags & flags[flagIndex]) {
1754 printf("%s%s",
1755 hadFlag ? "|" : "",
1756 flag_names[flagIndex]);
1757 hadFlag = true;
1761 /* output synonyms */
1762 hadSyn = false;
1763 for (parmIndex2=0; parm_table[parmIndex2].label; parmIndex2++) {
1764 if (is_synonym_of(parmIndex, parmIndex2, &inverse)) {
1765 printf(" (%ssynonym of %s)", inverse ? "inverse " : "",
1766 parm_table[parmIndex2].label);
1767 } else if (is_synonym_of(parmIndex2, parmIndex, &inverse)) {
1768 if (!hadSyn) {
1769 printf(" (synonyms: ");
1770 hadSyn = true;
1771 } else {
1772 printf(", ");
1774 printf("%s%s", parm_table[parmIndex2].label,
1775 inverse ? "[i]" : "");
1778 if (hadSyn) {
1779 printf(")");
1782 printf("\n");
1785 /***************************************************************************
1786 Show all parameter's name, type, [values,] and flags.
1787 ***************************************************************************/
1789 void show_parameter_list(void)
1791 int classIndex, parmIndex;
1792 const char *section_names[] = { "local", "global", NULL};
1794 for (classIndex=0; section_names[classIndex]; classIndex++) {
1795 printf("[%s]\n", section_names[classIndex]);
1796 for (parmIndex = 0; parm_table[parmIndex].label; parmIndex++) {
1797 if (parm_table[parmIndex].p_class == classIndex) {
1798 show_parameter(parmIndex);
1804 /***************************************************************************
1805 Get the standard string representation of a boolean value ("yes" or "no")
1806 ***************************************************************************/
1808 static const char *get_boolean(bool bool_value)
1810 static const char *yes_str = "yes";
1811 static const char *no_str = "no";
1813 return (bool_value ? yes_str : no_str);
1816 /***************************************************************************
1817 Provide the string of the negated boolean value associated to the boolean
1818 given as a string. Returns false if the passed string does not correctly
1819 represent a boolean.
1820 ***************************************************************************/
1822 bool lp_invert_boolean(const char *str, const char **inverse_str)
1824 bool val;
1826 if (!set_boolean(str, &val)) {
1827 return false;
1830 *inverse_str = get_boolean(!val);
1831 return true;
1834 /***************************************************************************
1835 Provide the canonical string representation of a boolean value given
1836 as a string. Return true on success, false if the string given does
1837 not correctly represent a boolean.
1838 ***************************************************************************/
1840 bool lp_canonicalize_boolean(const char *str, const char**canon_str)
1842 bool val;
1844 if (!set_boolean(str, &val)) {
1845 return false;
1848 *canon_str = get_boolean(val);
1849 return true;
1852 /***************************************************************************
1853 Find a service by name. Otherwise works like get_service.
1854 ***************************************************************************/
1856 int getservicebyname(const char *pszServiceName, struct loadparm_service *pserviceDest)
1858 int iService = -1;
1859 char *canon_name;
1860 TDB_DATA data;
1861 NTSTATUS status;
1863 if (ServiceHash == NULL) {
1864 return -1;
1867 canon_name = canonicalize_servicename(talloc_tos(), pszServiceName);
1869 status = dbwrap_fetch_bystring(ServiceHash, canon_name, canon_name,
1870 &data);
1872 if (NT_STATUS_IS_OK(status) &&
1873 (data.dptr != NULL) &&
1874 (data.dsize == sizeof(iService)))
1876 iService = *(int *)data.dptr;
1879 TALLOC_FREE(canon_name);
1881 if ((iService != -1) && (LP_SNUM_OK(iService))
1882 && (pserviceDest != NULL)) {
1883 copy_service(pserviceDest, ServicePtrs[iService], NULL);
1886 return (iService);
1889 /* Return a pointer to a service by name. Unlike getservicebyname, it does not copy the service */
1890 struct loadparm_service *lp_service(const char *pszServiceName)
1892 int iService = getservicebyname(pszServiceName, NULL);
1893 if (iService == -1 || !LP_SNUM_OK(iService)) {
1894 return NULL;
1896 return ServicePtrs[iService];
1899 struct loadparm_service *lp_servicebynum(int snum)
1901 if ((snum == -1) || !LP_SNUM_OK(snum)) {
1902 return NULL;
1904 return ServicePtrs[snum];
1907 struct loadparm_service *lp_default_loadparm_service()
1909 return &sDefault;
1912 static struct smbconf_ctx *lp_smbconf_ctx(void)
1914 sbcErr err;
1915 static struct smbconf_ctx *conf_ctx = NULL;
1917 if (conf_ctx == NULL) {
1918 err = smbconf_init(NULL, &conf_ctx, "registry:");
1919 if (!SBC_ERROR_IS_OK(err)) {
1920 DEBUG(1, ("error initializing registry configuration: "
1921 "%s\n", sbcErrorString(err)));
1922 conf_ctx = NULL;
1926 return conf_ctx;
1929 static bool process_smbconf_service(struct smbconf_service *service)
1931 uint32_t count;
1932 bool ret;
1934 if (service == NULL) {
1935 return false;
1938 ret = lp_do_section(service->name, NULL);
1939 if (ret != true) {
1940 return false;
1942 for (count = 0; count < service->num_params; count++) {
1944 if (!bInGlobalSection && bGlobalOnly) {
1945 ret = true;
1946 } else {
1947 const char *pszParmName = service->param_names[count];
1948 const char *pszParmValue = service->param_values[count];
1950 DEBUGADD(4, ("doing parameter %s = %s\n", pszParmName, pszParmValue));
1952 ret = lp_do_parameter(bInGlobalSection ? -2 : iServiceIndex,
1953 pszParmName, pszParmValue);
1956 if (ret != true) {
1957 return false;
1960 if (iServiceIndex >= 0) {
1961 return lpcfg_service_ok(ServicePtrs[iServiceIndex]);
1963 return true;
1967 * load a service from registry and activate it
1969 bool process_registry_service(const char *service_name)
1971 sbcErr err;
1972 struct smbconf_service *service = NULL;
1973 TALLOC_CTX *mem_ctx = talloc_stackframe();
1974 struct smbconf_ctx *conf_ctx = lp_smbconf_ctx();
1975 bool ret = false;
1977 if (conf_ctx == NULL) {
1978 goto done;
1981 DEBUG(5, ("process_registry_service: service name %s\n", service_name));
1983 if (!smbconf_share_exists(conf_ctx, service_name)) {
1985 * Registry does not contain data for this service (yet),
1986 * but make sure lp_load doesn't return false.
1988 ret = true;
1989 goto done;
1992 err = smbconf_get_share(conf_ctx, mem_ctx, service_name, &service);
1993 if (!SBC_ERROR_IS_OK(err)) {
1994 goto done;
1997 ret = process_smbconf_service(service);
1998 if (!ret) {
1999 goto done;
2002 /* store the csn */
2003 smbconf_changed(conf_ctx, &conf_last_csn, NULL, NULL);
2005 done:
2006 TALLOC_FREE(mem_ctx);
2007 return ret;
2011 * process_registry_globals
2013 static bool process_registry_globals(void)
2015 bool ret;
2017 add_to_file_list(NULL, &file_lists, INCLUDE_REGISTRY_NAME, INCLUDE_REGISTRY_NAME);
2019 if (!bInGlobalSection && bGlobalOnly) {
2020 ret = true;
2021 } else {
2022 const char *pszParmName = "registry shares";
2023 const char *pszParmValue = "yes";
2025 DEBUGADD(4, ("doing parameter %s = %s\n", pszParmName, pszParmValue));
2027 ret = lp_do_parameter(bInGlobalSection ? -2 : iServiceIndex,
2028 pszParmName, pszParmValue);
2031 if (!ret) {
2032 return ret;
2035 return process_registry_service(GLOBAL_NAME);
2038 bool process_registry_shares(void)
2040 sbcErr err;
2041 uint32_t count;
2042 struct smbconf_service **service = NULL;
2043 uint32_t num_shares = 0;
2044 TALLOC_CTX *mem_ctx = talloc_stackframe();
2045 struct smbconf_ctx *conf_ctx = lp_smbconf_ctx();
2046 bool ret = false;
2048 if (conf_ctx == NULL) {
2049 goto done;
2052 err = smbconf_get_config(conf_ctx, mem_ctx, &num_shares, &service);
2053 if (!SBC_ERROR_IS_OK(err)) {
2054 goto done;
2057 ret = true;
2059 for (count = 0; count < num_shares; count++) {
2060 if (strequal(service[count]->name, GLOBAL_NAME)) {
2061 continue;
2063 ret = process_smbconf_service(service[count]);
2064 if (!ret) {
2065 goto done;
2069 /* store the csn */
2070 smbconf_changed(conf_ctx, &conf_last_csn, NULL, NULL);
2072 done:
2073 TALLOC_FREE(mem_ctx);
2074 return ret;
2078 * reload those shares from registry that are already
2079 * activated in the services array.
2081 static bool reload_registry_shares(void)
2083 int i;
2084 bool ret = true;
2086 for (i = 0; i < iNumServices; i++) {
2087 if (!VALID(i)) {
2088 continue;
2091 if (ServicePtrs[i]->usershare == USERSHARE_VALID) {
2092 continue;
2095 ret = process_registry_service(ServicePtrs[i]->szService);
2096 if (!ret) {
2097 goto done;
2101 done:
2102 return ret;
2106 #define MAX_INCLUDE_DEPTH 100
2108 static uint8_t include_depth;
2111 * Free the file lists
2113 static void free_file_list(void)
2115 struct file_lists *f;
2116 struct file_lists *next;
2118 f = file_lists;
2119 while( f ) {
2120 next = f->next;
2121 TALLOC_FREE( f );
2122 f = next;
2124 file_lists = NULL;
2129 * Utility function for outsiders to check if we're running on registry.
2131 bool lp_config_backend_is_registry(void)
2133 return (lp_config_backend() == CONFIG_BACKEND_REGISTRY);
2137 * Utility function to check if the config backend is FILE.
2139 bool lp_config_backend_is_file(void)
2141 return (lp_config_backend() == CONFIG_BACKEND_FILE);
2144 /*******************************************************************
2145 Check if a config file has changed date.
2146 ********************************************************************/
2148 bool lp_file_list_changed(void)
2150 struct file_lists *f = file_lists;
2152 DEBUG(6, ("lp_file_list_changed()\n"));
2154 while (f) {
2155 if (strequal(f->name, INCLUDE_REGISTRY_NAME)) {
2156 struct smbconf_ctx *conf_ctx = lp_smbconf_ctx();
2158 if (conf_ctx == NULL) {
2159 return false;
2161 if (smbconf_changed(conf_ctx, &conf_last_csn, NULL,
2162 NULL))
2164 DEBUGADD(6, ("registry config changed\n"));
2165 return true;
2167 } else {
2168 time_t mod_time;
2169 char *n2 = NULL;
2171 n2 = talloc_sub_basic(talloc_tos(),
2172 get_current_username(),
2173 current_user_info.domain,
2174 f->name);
2175 if (!n2) {
2176 return false;
2178 DEBUGADD(6, ("file %s -> %s last mod_time: %s\n",
2179 f->name, n2, ctime(&f->modtime)));
2181 mod_time = file_modtime(n2);
2183 if (mod_time &&
2184 ((f->modtime != mod_time) ||
2185 (f->subfname == NULL) ||
2186 (strcmp(n2, f->subfname) != 0)))
2188 DEBUGADD(6,
2189 ("file %s modified: %s\n", n2,
2190 ctime(&mod_time)));
2191 f->modtime = mod_time;
2192 TALLOC_FREE(f->subfname);
2193 f->subfname = talloc_strdup(f, n2);
2194 if (f->subfname == NULL) {
2195 smb_panic("talloc_strdup failed");
2197 TALLOC_FREE(n2);
2198 return true;
2200 TALLOC_FREE(n2);
2202 f = f->next;
2204 return false;
2209 * Initialize iconv conversion descriptors.
2211 * This is called the first time it is needed, and also called again
2212 * every time the configuration is reloaded, because the charset or
2213 * codepage might have changed.
2215 static void init_iconv(void)
2217 global_iconv_handle = smb_iconv_handle_reinit(NULL, lp_dos_charset(),
2218 lp_unix_charset(),
2219 true, global_iconv_handle);
2222 /***************************************************************************
2223 Handle the include operation.
2224 ***************************************************************************/
2225 static bool bAllowIncludeRegistry = true;
2227 bool lp_include(struct loadparm_context *lp_ctx, struct loadparm_service *service,
2228 const char *pszParmValue, char **ptr)
2230 char *fname;
2232 if (include_depth >= MAX_INCLUDE_DEPTH) {
2233 DEBUG(0, ("Error: Maximum include depth (%u) exceeded!\n",
2234 include_depth));
2235 return false;
2238 if (strequal(pszParmValue, INCLUDE_REGISTRY_NAME)) {
2239 if (!bAllowIncludeRegistry) {
2240 return true;
2242 if (lp_ctx->bInGlobalSection) {
2243 bool ret;
2244 include_depth++;
2245 ret = process_registry_globals();
2246 include_depth--;
2247 return ret;
2248 } else {
2249 DEBUG(1, ("\"include = registry\" only effective "
2250 "in %s section\n", GLOBAL_NAME));
2251 return false;
2255 fname = talloc_sub_basic(talloc_tos(), get_current_username(),
2256 current_user_info.domain,
2257 pszParmValue);
2259 add_to_file_list(NULL, &file_lists, pszParmValue, fname);
2261 if (service == NULL) {
2262 string_set(Globals.ctx, ptr, fname);
2263 } else {
2264 string_set(service, ptr, fname);
2267 if (file_exist(fname)) {
2268 bool ret;
2269 include_depth++;
2270 ret = pm_process(fname, lp_do_section, do_parameter, lp_ctx);
2271 include_depth--;
2272 TALLOC_FREE(fname);
2273 return ret;
2276 DEBUG(2, ("Can't find include file %s\n", fname));
2277 TALLOC_FREE(fname);
2278 return true;
2281 bool lp_idmap_range(const char *domain_name, uint32_t *low, uint32_t *high)
2283 char *config_option = NULL;
2284 const char *range = NULL;
2285 bool ret = false;
2287 SMB_ASSERT(low != NULL);
2288 SMB_ASSERT(high != NULL);
2290 if ((domain_name == NULL) || (domain_name[0] == '\0')) {
2291 domain_name = "*";
2294 config_option = talloc_asprintf(talloc_tos(), "idmap config %s",
2295 domain_name);
2296 if (config_option == NULL) {
2297 DEBUG(0, ("out of memory\n"));
2298 return false;
2301 range = lp_parm_const_string(-1, config_option, "range", NULL);
2302 if (range == NULL) {
2303 DEBUG(1, ("idmap range not specified for domain '%s'\n", domain_name));
2304 goto done;
2307 if (sscanf(range, "%u - %u", low, high) != 2) {
2308 DEBUG(1, ("error parsing idmap range '%s' for domain '%s'\n",
2309 range, domain_name));
2310 goto done;
2313 ret = true;
2315 done:
2316 talloc_free(config_option);
2317 return ret;
2321 bool lp_idmap_default_range(uint32_t *low, uint32_t *high)
2323 return lp_idmap_range("*", low, high);
2326 const char *lp_idmap_backend(const char *domain_name)
2328 char *config_option = NULL;
2329 const char *backend = NULL;
2331 if ((domain_name == NULL) || (domain_name[0] == '\0')) {
2332 domain_name = "*";
2335 config_option = talloc_asprintf(talloc_tos(), "idmap config %s",
2336 domain_name);
2337 if (config_option == NULL) {
2338 DEBUG(0, ("out of memory\n"));
2339 return false;
2342 backend = lp_parm_const_string(-1, config_option, "backend", NULL);
2343 if (backend == NULL) {
2344 DEBUG(1, ("idmap backend not specified for domain '%s'\n", domain_name));
2345 goto done;
2348 done:
2349 talloc_free(config_option);
2350 return backend;
2353 const char *lp_idmap_default_backend(void)
2355 return lp_idmap_backend("*");
2358 /***************************************************************************
2359 Handle ldap suffixes - default to ldapsuffix if sub-suffixes are not defined.
2360 ***************************************************************************/
2362 static const char *append_ldap_suffix(TALLOC_CTX *ctx, const char *str )
2364 const char *suffix_string;
2366 suffix_string = talloc_asprintf(ctx, "%s,%s", str,
2367 Globals.ldap_suffix );
2368 if ( !suffix_string ) {
2369 DEBUG(0,("append_ldap_suffix: talloc_asprintf() failed!\n"));
2370 return "";
2373 return suffix_string;
2376 const char *lp_ldap_machine_suffix(TALLOC_CTX *ctx)
2378 if (Globals.szLdapMachineSuffix[0])
2379 return append_ldap_suffix(ctx, Globals.szLdapMachineSuffix);
2381 return lp_string(ctx, Globals.ldap_suffix);
2384 const char *lp_ldap_user_suffix(TALLOC_CTX *ctx)
2386 if (Globals.szLdapUserSuffix[0])
2387 return append_ldap_suffix(ctx, Globals.szLdapUserSuffix);
2389 return lp_string(ctx, Globals.ldap_suffix);
2392 const char *lp_ldap_group_suffix(TALLOC_CTX *ctx)
2394 if (Globals.szLdapGroupSuffix[0])
2395 return append_ldap_suffix(ctx, Globals.szLdapGroupSuffix);
2397 return lp_string(ctx, Globals.ldap_suffix);
2400 const char *lp_ldap_idmap_suffix(TALLOC_CTX *ctx)
2402 if (Globals.szLdapIdmapSuffix[0])
2403 return append_ldap_suffix(ctx, Globals.szLdapIdmapSuffix);
2405 return lp_string(ctx, Globals.ldap_suffix);
2409 return the parameter pointer for a parameter
2411 void *lp_parm_ptr(struct loadparm_service *service, struct parm_struct *parm)
2413 if (service == NULL) {
2414 if (parm->p_class == P_LOCAL)
2415 return (void *)(((char *)&sDefault)+parm->offset);
2416 else if (parm->p_class == P_GLOBAL)
2417 return (void *)(((char *)&Globals)+parm->offset);
2418 else return NULL;
2419 } else {
2420 return (void *)(((char *)service) + parm->offset);
2424 /***************************************************************************
2425 Process a parameter for a particular service number. If snum < 0
2426 then assume we are in the globals.
2427 ***************************************************************************/
2429 bool lp_do_parameter(int snum, const char *pszParmName, const char *pszParmValue)
2431 TALLOC_CTX *frame = talloc_stackframe();
2432 struct loadparm_context *lp_ctx;
2433 bool ok;
2435 lp_ctx = setup_lp_context(frame);
2436 if (lp_ctx == NULL) {
2437 TALLOC_FREE(frame);
2438 return false;
2441 if (snum < 0) {
2442 ok = lpcfg_do_global_parameter(lp_ctx, pszParmName, pszParmValue);
2443 } else {
2444 ok = lpcfg_do_service_parameter(lp_ctx, ServicePtrs[snum],
2445 pszParmName, pszParmValue);
2448 TALLOC_FREE(frame);
2450 return ok;
2453 /***************************************************************************
2454 set a parameter, marking it with FLAG_CMDLINE. Parameters marked as
2455 FLAG_CMDLINE won't be overridden by loads from smb.conf.
2456 ***************************************************************************/
2458 static bool lp_set_cmdline_helper(const char *pszParmName, const char *pszParmValue)
2460 int parmnum, i;
2461 parmnum = lpcfg_map_parameter(pszParmName);
2462 if (parmnum >= 0) {
2463 flags_list[parmnum] &= ~FLAG_CMDLINE;
2464 if (!lp_do_parameter(-1, pszParmName, pszParmValue)) {
2465 return false;
2467 flags_list[parmnum] |= FLAG_CMDLINE;
2469 /* we have to also set FLAG_CMDLINE on aliases. Aliases must
2470 * be grouped in the table, so we don't have to search the
2471 * whole table */
2472 for (i=parmnum-1;
2473 i>=0 && parm_table[i].offset == parm_table[parmnum].offset
2474 && parm_table[i].p_class == parm_table[parmnum].p_class;
2475 i--) {
2476 flags_list[i] |= FLAG_CMDLINE;
2478 for (i=parmnum+1;i<num_parameters() && parm_table[i].offset == parm_table[parmnum].offset
2479 && parm_table[i].p_class == parm_table[parmnum].p_class;i++) {
2480 flags_list[i] |= FLAG_CMDLINE;
2483 return true;
2486 /* it might be parametric */
2487 if (strchr(pszParmName, ':') != NULL) {
2488 set_param_opt(NULL, &Globals.param_opt, pszParmName, pszParmValue, FLAG_CMDLINE);
2489 return true;
2492 DEBUG(0, ("Ignoring unknown parameter \"%s\"\n", pszParmName));
2493 return false;
2496 bool lp_set_cmdline(const char *pszParmName, const char *pszParmValue)
2498 bool ret;
2499 TALLOC_CTX *frame = talloc_stackframe();
2500 struct loadparm_context *lp_ctx;
2502 lp_ctx = setup_lp_context(frame);
2503 if (lp_ctx == NULL) {
2504 TALLOC_FREE(frame);
2505 return false;
2508 ret = lpcfg_set_cmdline(lp_ctx, pszParmName, pszParmValue);
2510 TALLOC_FREE(frame);
2511 return ret;
2514 /***************************************************************************
2515 Process a parameter.
2516 ***************************************************************************/
2518 static bool do_parameter(const char *pszParmName, const char *pszParmValue,
2519 void *userdata)
2521 if (!bInGlobalSection && bGlobalOnly)
2522 return true;
2524 DEBUGADD(4, ("doing parameter %s = %s\n", pszParmName, pszParmValue));
2526 if (bInGlobalSection) {
2527 return lpcfg_do_global_parameter(userdata, pszParmName, pszParmValue);
2528 } else {
2529 return lpcfg_do_service_parameter(userdata, ServicePtrs[iServiceIndex],
2530 pszParmName, pszParmValue);
2534 /***************************************************************************
2535 Initialize any local variables in the sDefault table, after parsing a
2536 [globals] section.
2537 ***************************************************************************/
2539 static void init_locals(void)
2542 * We run this check once the [globals] is parsed, to force
2543 * the VFS objects and other per-share settings we need for
2544 * the standard way a AD DC is operated. We may change these
2545 * as our code evolves, which is why we force these settings.
2547 * We can't do this at the end of lp_load_ex(), as by that
2548 * point the services have been loaded and they will already
2549 * have "" as their vfs objects.
2551 if (lp_server_role() == ROLE_ACTIVE_DIRECTORY_DC) {
2552 const char **vfs_objects = lp_vfs_objects(-1);
2553 if (!vfs_objects || !vfs_objects[0]) {
2554 if (lp_parm_const_string(-1, "xattr_tdb", "file", NULL)) {
2555 lp_do_parameter(-1, "vfs objects", "dfs_samba4 acl_xattr xattr_tdb");
2556 } else if (lp_parm_const_string(-1, "posix", "eadb", NULL)) {
2557 lp_do_parameter(-1, "vfs objects", "dfs_samba4 acl_xattr posix_eadb");
2558 } else {
2559 lp_do_parameter(-1, "vfs objects", "dfs_samba4 acl_xattr");
2563 lp_do_parameter(-1, "map hidden", "no");
2564 lp_do_parameter(-1, "map system", "no");
2565 lp_do_parameter(-1, "map readonly", "no");
2566 lp_do_parameter(-1, "map archive", "no");
2567 lp_do_parameter(-1, "store dos attributes", "yes");
2571 /***************************************************************************
2572 Process a new section (service). At this stage all sections are services.
2573 Later we'll have special sections that permit server parameters to be set.
2574 Returns true on success, false on failure.
2575 ***************************************************************************/
2577 bool lp_do_section(const char *pszSectionName, void *userdata)
2579 struct loadparm_context *lp_ctx = (struct loadparm_context *)userdata;
2580 bool bRetval;
2581 bool isglobal = ((strwicmp(pszSectionName, GLOBAL_NAME) == 0) ||
2582 (strwicmp(pszSectionName, GLOBAL_NAME2) == 0));
2583 bRetval = false;
2585 /* if we were in a global section then do the local inits */
2586 if (bInGlobalSection && !isglobal)
2587 init_locals();
2589 /* if we've just struck a global section, note the fact. */
2590 bInGlobalSection = isglobal;
2591 lp_ctx->bInGlobalSection = isglobal;
2593 /* check for multiple global sections */
2594 if (bInGlobalSection) {
2595 DEBUG(3, ("Processing section \"[%s]\"\n", pszSectionName));
2596 return true;
2599 if (!bInGlobalSection && bGlobalOnly)
2600 return true;
2602 /* if we have a current service, tidy it up before moving on */
2603 bRetval = true;
2605 if (iServiceIndex >= 0)
2606 bRetval = lpcfg_service_ok(ServicePtrs[iServiceIndex]);
2608 /* if all is still well, move to the next record in the services array */
2609 if (bRetval) {
2610 /* We put this here to avoid an odd message order if messages are */
2611 /* issued by the post-processing of a previous section. */
2612 DEBUG(2, ("Processing section \"[%s]\"\n", pszSectionName));
2614 iServiceIndex = add_a_service(&sDefault, pszSectionName);
2615 if (iServiceIndex < 0) {
2616 DEBUG(0, ("Failed to add a new service\n"));
2617 return false;
2619 /* Clean all parametric options for service */
2620 /* They will be added during parsing again */
2621 free_param_opts(&ServicePtrs[iServiceIndex]->param_opt);
2624 return bRetval;
2627 /***************************************************************************
2628 Display the contents of a parameter of a single services record.
2629 ***************************************************************************/
2631 bool dump_a_parameter(int snum, char *parm_name, FILE * f, bool isGlobal)
2633 bool result = false;
2634 struct loadparm_context *lp_ctx;
2636 lp_ctx = setup_lp_context(talloc_tos());
2637 if (lp_ctx == NULL) {
2638 return false;
2641 if (isGlobal) {
2642 result = lpcfg_dump_a_parameter(lp_ctx, NULL, parm_name, f);
2643 } else {
2644 result = lpcfg_dump_a_parameter(lp_ctx, ServicePtrs[snum], parm_name, f);
2646 TALLOC_FREE(lp_ctx);
2647 return result;
2650 #if 0
2651 /***************************************************************************
2652 Display the contents of a single copy structure.
2653 ***************************************************************************/
2654 static void dump_copy_map(bool *pcopymap)
2656 int i;
2657 if (!pcopymap)
2658 return;
2660 printf("\n\tNon-Copied parameters:\n");
2662 for (i = 0; parm_table[i].label; i++)
2663 if (parm_table[i].p_class == P_LOCAL &&
2664 parm_table[i].ptr && !pcopymap[i] &&
2665 (i == 0 || (parm_table[i].ptr != parm_table[i - 1].ptr)))
2667 printf("\t\t%s\n", parm_table[i].label);
2670 #endif
2672 /***************************************************************************
2673 Return TRUE if the passed service number is within range.
2674 ***************************************************************************/
2676 bool lp_snum_ok(int iService)
2678 return (LP_SNUM_OK(iService) && ServicePtrs[iService]->bAvailable);
2681 /***************************************************************************
2682 Auto-load some home services.
2683 ***************************************************************************/
2685 static void lp_add_auto_services(char *str)
2687 char *s;
2688 char *p;
2689 int homes;
2690 char *saveptr;
2692 if (!str)
2693 return;
2695 s = talloc_strdup(talloc_tos(), str);
2696 if (!s) {
2697 smb_panic("talloc_strdup failed");
2698 return;
2701 homes = lp_servicenumber(HOMES_NAME);
2703 for (p = strtok_r(s, LIST_SEP, &saveptr); p;
2704 p = strtok_r(NULL, LIST_SEP, &saveptr)) {
2705 char *home;
2707 if (lp_servicenumber(p) >= 0)
2708 continue;
2710 home = get_user_home_dir(talloc_tos(), p);
2712 if (home && home[0] && homes >= 0)
2713 lp_add_home(p, homes, p, home);
2715 TALLOC_FREE(home);
2717 TALLOC_FREE(s);
2720 /***************************************************************************
2721 Auto-load one printer.
2722 ***************************************************************************/
2724 void lp_add_one_printer(const char *name, const char *comment,
2725 const char *location, void *pdata)
2727 int printers = lp_servicenumber(PRINTERS_NAME);
2728 int i;
2730 if (lp_servicenumber(name) < 0) {
2731 lp_add_printer(name, printers);
2732 if ((i = lp_servicenumber(name)) >= 0) {
2733 string_set(ServicePtrs[i], &ServicePtrs[i]->comment, comment);
2734 ServicePtrs[i]->autoloaded = true;
2739 /***************************************************************************
2740 Have we loaded a services file yet?
2741 ***************************************************************************/
2743 bool lp_loaded(void)
2745 return (bLoaded);
2748 /***************************************************************************
2749 Unload unused services.
2750 ***************************************************************************/
2752 void lp_killunused(struct smbd_server_connection *sconn,
2753 bool (*snumused) (struct smbd_server_connection *, int))
2755 int i;
2756 for (i = 0; i < iNumServices; i++) {
2757 if (!VALID(i))
2758 continue;
2760 /* don't kill autoloaded or usershare services */
2761 if ( ServicePtrs[i]->autoloaded ||
2762 ServicePtrs[i]->usershare == USERSHARE_VALID) {
2763 continue;
2766 if (!snumused || !snumused(sconn, i)) {
2767 free_service_byindex(i);
2773 * Kill all except autoloaded and usershare services - convenience wrapper
2775 void lp_kill_all_services(void)
2777 lp_killunused(NULL, NULL);
2780 /***************************************************************************
2781 Unload a service.
2782 ***************************************************************************/
2784 void lp_killservice(int iServiceIn)
2786 if (VALID(iServiceIn)) {
2787 free_service_byindex(iServiceIn);
2791 /***************************************************************************
2792 Save the curent values of all global and sDefault parameters into the
2793 defaults union. This allows testparm to show only the
2794 changed (ie. non-default) parameters.
2795 ***************************************************************************/
2797 static void lp_save_defaults(void)
2799 int i;
2800 struct parmlist_entry * parm;
2801 for (i = 0; parm_table[i].label; i++) {
2802 if (!(flags_list[i] & FLAG_CMDLINE)) {
2803 flags_list[i] |= FLAG_DEFAULT;
2806 if (i > 0 && parm_table[i].offset == parm_table[i - 1].offset
2807 && parm_table[i].p_class == parm_table[i - 1].p_class)
2808 continue;
2809 switch (parm_table[i].type) {
2810 case P_LIST:
2811 case P_CMDLIST:
2812 parm_table[i].def.lvalue = str_list_copy(
2813 NULL, *(const char ***)lp_parm_ptr(NULL, &parm_table[i]));
2814 break;
2815 case P_STRING:
2816 case P_USTRING:
2817 parm_table[i].def.svalue = talloc_strdup(Globals.ctx, *(char **)lp_parm_ptr(NULL, &parm_table[i]));
2818 if (parm_table[i].def.svalue == NULL) {
2819 smb_panic("talloc_strdup failed");
2821 break;
2822 case P_BOOL:
2823 case P_BOOLREV:
2824 parm_table[i].def.bvalue =
2825 *(bool *)lp_parm_ptr(NULL, &parm_table[i]);
2826 break;
2827 case P_CHAR:
2828 parm_table[i].def.cvalue =
2829 *(char *)lp_parm_ptr(NULL, &parm_table[i]);
2830 break;
2831 case P_INTEGER:
2832 case P_OCTAL:
2833 case P_ENUM:
2834 case P_BYTES:
2835 parm_table[i].def.ivalue =
2836 *(int *)lp_parm_ptr(NULL, &parm_table[i]);
2837 break;
2838 case P_SEP:
2839 break;
2843 for (parm=Globals.param_opt; parm; parm=parm->next) {
2844 if (!(parm->priority & FLAG_CMDLINE)) {
2845 parm->priority |= FLAG_DEFAULT;
2849 for (parm=sDefault.param_opt; parm; parm=parm->next) {
2850 if (!(parm->priority & FLAG_CMDLINE)) {
2851 parm->priority |= FLAG_DEFAULT;
2855 defaults_saved = true;
2858 /***********************************************************
2859 If we should send plaintext/LANMAN passwords in the clinet
2860 ************************************************************/
2862 static void set_allowed_client_auth(void)
2864 if (Globals.client_ntlmv2_auth) {
2865 Globals.client_lanman_auth = false;
2867 if (!Globals.client_lanman_auth) {
2868 Globals.client_plaintext_auth = false;
2872 /***************************************************************************
2873 JRA.
2874 The following code allows smbd to read a user defined share file.
2875 Yes, this is my intent. Yes, I'm comfortable with that...
2877 THE FOLLOWING IS SECURITY CRITICAL CODE.
2879 It washes your clothes, it cleans your house, it guards you while you sleep...
2880 Do not f%^k with it....
2881 ***************************************************************************/
2883 #define MAX_USERSHARE_FILE_SIZE (10*1024)
2885 /***************************************************************************
2886 Check allowed stat state of a usershare file.
2887 Ensure we print out who is dicking with us so the admin can
2888 get their sorry ass fired.
2889 ***************************************************************************/
2891 static bool check_usershare_stat(const char *fname,
2892 const SMB_STRUCT_STAT *psbuf)
2894 if (!S_ISREG(psbuf->st_ex_mode)) {
2895 DEBUG(0,("check_usershare_stat: file %s owned by uid %u is "
2896 "not a regular file\n",
2897 fname, (unsigned int)psbuf->st_ex_uid ));
2898 return false;
2901 /* Ensure this doesn't have the other write bit set. */
2902 if (psbuf->st_ex_mode & S_IWOTH) {
2903 DEBUG(0,("check_usershare_stat: file %s owned by uid %u allows "
2904 "public write. Refusing to allow as a usershare file.\n",
2905 fname, (unsigned int)psbuf->st_ex_uid ));
2906 return false;
2909 /* Should be 10k or less. */
2910 if (psbuf->st_ex_size > MAX_USERSHARE_FILE_SIZE) {
2911 DEBUG(0,("check_usershare_stat: file %s owned by uid %u is "
2912 "too large (%u) to be a user share file.\n",
2913 fname, (unsigned int)psbuf->st_ex_uid,
2914 (unsigned int)psbuf->st_ex_size ));
2915 return false;
2918 return true;
2921 /***************************************************************************
2922 Parse the contents of a usershare file.
2923 ***************************************************************************/
2925 enum usershare_err parse_usershare_file(TALLOC_CTX *ctx,
2926 SMB_STRUCT_STAT *psbuf,
2927 const char *servicename,
2928 int snum,
2929 char **lines,
2930 int numlines,
2931 char **pp_sharepath,
2932 char **pp_comment,
2933 char **pp_cp_servicename,
2934 struct security_descriptor **ppsd,
2935 bool *pallow_guest)
2937 const char **prefixallowlist = lp_usershare_prefix_allow_list();
2938 const char **prefixdenylist = lp_usershare_prefix_deny_list();
2939 int us_vers;
2940 DIR *dp;
2941 SMB_STRUCT_STAT sbuf;
2942 char *sharepath = NULL;
2943 char *comment = NULL;
2945 *pp_sharepath = NULL;
2946 *pp_comment = NULL;
2948 *pallow_guest = false;
2950 if (numlines < 4) {
2951 return USERSHARE_MALFORMED_FILE;
2954 if (strcmp(lines[0], "#VERSION 1") == 0) {
2955 us_vers = 1;
2956 } else if (strcmp(lines[0], "#VERSION 2") == 0) {
2957 us_vers = 2;
2958 if (numlines < 5) {
2959 return USERSHARE_MALFORMED_FILE;
2961 } else {
2962 return USERSHARE_BAD_VERSION;
2965 if (strncmp(lines[1], "path=", 5) != 0) {
2966 return USERSHARE_MALFORMED_PATH;
2969 sharepath = talloc_strdup(ctx, &lines[1][5]);
2970 if (!sharepath) {
2971 return USERSHARE_POSIX_ERR;
2973 trim_string(sharepath, " ", " ");
2975 if (strncmp(lines[2], "comment=", 8) != 0) {
2976 return USERSHARE_MALFORMED_COMMENT_DEF;
2979 comment = talloc_strdup(ctx, &lines[2][8]);
2980 if (!comment) {
2981 return USERSHARE_POSIX_ERR;
2983 trim_string(comment, " ", " ");
2984 trim_char(comment, '"', '"');
2986 if (strncmp(lines[3], "usershare_acl=", 14) != 0) {
2987 return USERSHARE_MALFORMED_ACL_DEF;
2990 if (!parse_usershare_acl(ctx, &lines[3][14], ppsd)) {
2991 return USERSHARE_ACL_ERR;
2994 if (us_vers == 2) {
2995 if (strncmp(lines[4], "guest_ok=", 9) != 0) {
2996 return USERSHARE_MALFORMED_ACL_DEF;
2998 if (lines[4][9] == 'y') {
2999 *pallow_guest = true;
3002 /* Backwards compatible extension to file version #2. */
3003 if (numlines > 5) {
3004 if (strncmp(lines[5], "sharename=", 10) != 0) {
3005 return USERSHARE_MALFORMED_SHARENAME_DEF;
3007 if (!strequal(&lines[5][10], servicename)) {
3008 return USERSHARE_BAD_SHARENAME;
3010 *pp_cp_servicename = talloc_strdup(ctx, &lines[5][10]);
3011 if (!*pp_cp_servicename) {
3012 return USERSHARE_POSIX_ERR;
3017 if (*pp_cp_servicename == NULL) {
3018 *pp_cp_servicename = talloc_strdup(ctx, servicename);
3019 if (!*pp_cp_servicename) {
3020 return USERSHARE_POSIX_ERR;
3024 if (snum != -1 && (strcmp(sharepath, ServicePtrs[snum]->path) == 0)) {
3025 /* Path didn't change, no checks needed. */
3026 *pp_sharepath = sharepath;
3027 *pp_comment = comment;
3028 return USERSHARE_OK;
3031 /* The path *must* be absolute. */
3032 if (sharepath[0] != '/') {
3033 DEBUG(2,("parse_usershare_file: share %s: path %s is not an absolute path.\n",
3034 servicename, sharepath));
3035 return USERSHARE_PATH_NOT_ABSOLUTE;
3038 /* If there is a usershare prefix deny list ensure one of these paths
3039 doesn't match the start of the user given path. */
3040 if (prefixdenylist) {
3041 int i;
3042 for ( i=0; prefixdenylist[i]; i++ ) {
3043 DEBUG(10,("parse_usershare_file: share %s : checking prefixdenylist[%d]='%s' against %s\n",
3044 servicename, i, prefixdenylist[i], sharepath ));
3045 if (memcmp( sharepath, prefixdenylist[i], strlen(prefixdenylist[i])) == 0) {
3046 DEBUG(2,("parse_usershare_file: share %s path %s starts with one of the "
3047 "usershare prefix deny list entries.\n",
3048 servicename, sharepath));
3049 return USERSHARE_PATH_IS_DENIED;
3054 /* If there is a usershare prefix allow list ensure one of these paths
3055 does match the start of the user given path. */
3057 if (prefixallowlist) {
3058 int i;
3059 for ( i=0; prefixallowlist[i]; i++ ) {
3060 DEBUG(10,("parse_usershare_file: share %s checking prefixallowlist[%d]='%s' against %s\n",
3061 servicename, i, prefixallowlist[i], sharepath ));
3062 if (memcmp( sharepath, prefixallowlist[i], strlen(prefixallowlist[i])) == 0) {
3063 break;
3066 if (prefixallowlist[i] == NULL) {
3067 DEBUG(2,("parse_usershare_file: share %s path %s doesn't start with one of the "
3068 "usershare prefix allow list entries.\n",
3069 servicename, sharepath));
3070 return USERSHARE_PATH_NOT_ALLOWED;
3074 /* Ensure this is pointing to a directory. */
3075 dp = opendir(sharepath);
3077 if (!dp) {
3078 DEBUG(2,("parse_usershare_file: share %s path %s is not a directory.\n",
3079 servicename, sharepath));
3080 return USERSHARE_PATH_NOT_DIRECTORY;
3083 /* Ensure the owner of the usershare file has permission to share
3084 this directory. */
3086 if (sys_stat(sharepath, &sbuf, false) == -1) {
3087 DEBUG(2,("parse_usershare_file: share %s : stat failed on path %s. %s\n",
3088 servicename, sharepath, strerror(errno) ));
3089 closedir(dp);
3090 return USERSHARE_POSIX_ERR;
3093 closedir(dp);
3095 if (!S_ISDIR(sbuf.st_ex_mode)) {
3096 DEBUG(2,("parse_usershare_file: share %s path %s is not a directory.\n",
3097 servicename, sharepath ));
3098 return USERSHARE_PATH_NOT_DIRECTORY;
3101 /* Check if sharing is restricted to owner-only. */
3102 /* psbuf is the stat of the usershare definition file,
3103 sbuf is the stat of the target directory to be shared. */
3105 if (lp_usershare_owner_only()) {
3106 /* root can share anything. */
3107 if ((psbuf->st_ex_uid != 0) && (sbuf.st_ex_uid != psbuf->st_ex_uid)) {
3108 return USERSHARE_PATH_NOT_ALLOWED;
3112 *pp_sharepath = sharepath;
3113 *pp_comment = comment;
3114 return USERSHARE_OK;
3117 /***************************************************************************
3118 Deal with a usershare file.
3119 Returns:
3120 >= 0 - snum
3121 -1 - Bad name, invalid contents.
3122 - service name already existed and not a usershare, problem
3123 with permissions to share directory etc.
3124 ***************************************************************************/
3126 static int process_usershare_file(const char *dir_name, const char *file_name, int snum_template)
3128 SMB_STRUCT_STAT sbuf;
3129 SMB_STRUCT_STAT lsbuf;
3130 char *fname = NULL;
3131 char *sharepath = NULL;
3132 char *comment = NULL;
3133 char *cp_service_name = NULL;
3134 char **lines = NULL;
3135 int numlines = 0;
3136 int fd = -1;
3137 int iService = -1;
3138 TALLOC_CTX *ctx = talloc_stackframe();
3139 struct security_descriptor *psd = NULL;
3140 bool guest_ok = false;
3141 char *canon_name = NULL;
3142 bool added_service = false;
3143 int ret = -1;
3145 /* Ensure share name doesn't contain invalid characters. */
3146 if (!validate_net_name(file_name, INVALID_SHARENAME_CHARS, strlen(file_name))) {
3147 DEBUG(0,("process_usershare_file: share name %s contains "
3148 "invalid characters (any of %s)\n",
3149 file_name, INVALID_SHARENAME_CHARS ));
3150 goto out;
3153 canon_name = canonicalize_servicename(ctx, file_name);
3154 if (!canon_name) {
3155 goto out;
3158 fname = talloc_asprintf(ctx, "%s/%s", dir_name, file_name);
3159 if (!fname) {
3160 goto out;
3163 /* Minimize the race condition by doing an lstat before we
3164 open and fstat. Ensure this isn't a symlink link. */
3166 if (sys_lstat(fname, &lsbuf, false) != 0) {
3167 DEBUG(0,("process_usershare_file: stat of %s failed. %s\n",
3168 fname, strerror(errno) ));
3169 goto out;
3172 /* This must be a regular file, not a symlink, directory or
3173 other strange filetype. */
3174 if (!check_usershare_stat(fname, &lsbuf)) {
3175 goto out;
3179 TDB_DATA data;
3180 NTSTATUS status;
3182 status = dbwrap_fetch_bystring(ServiceHash, canon_name,
3183 canon_name, &data);
3185 iService = -1;
3187 if (NT_STATUS_IS_OK(status) &&
3188 (data.dptr != NULL) &&
3189 (data.dsize == sizeof(iService))) {
3190 memcpy(&iService, data.dptr, sizeof(iService));
3194 if (iService != -1 &&
3195 timespec_compare(&ServicePtrs[iService]->usershare_last_mod,
3196 &lsbuf.st_ex_mtime) == 0) {
3197 /* Nothing changed - Mark valid and return. */
3198 DEBUG(10,("process_usershare_file: service %s not changed.\n",
3199 canon_name ));
3200 ServicePtrs[iService]->usershare = USERSHARE_VALID;
3201 ret = iService;
3202 goto out;
3205 /* Try and open the file read only - no symlinks allowed. */
3206 #ifdef O_NOFOLLOW
3207 fd = open(fname, O_RDONLY|O_NOFOLLOW, 0);
3208 #else
3209 fd = open(fname, O_RDONLY, 0);
3210 #endif
3212 if (fd == -1) {
3213 DEBUG(0,("process_usershare_file: unable to open %s. %s\n",
3214 fname, strerror(errno) ));
3215 goto out;
3218 /* Now fstat to be *SURE* it's a regular file. */
3219 if (sys_fstat(fd, &sbuf, false) != 0) {
3220 close(fd);
3221 DEBUG(0,("process_usershare_file: fstat of %s failed. %s\n",
3222 fname, strerror(errno) ));
3223 goto out;
3226 /* Is it the same dev/inode as was lstated ? */
3227 if (!check_same_stat(&lsbuf, &sbuf)) {
3228 close(fd);
3229 DEBUG(0,("process_usershare_file: fstat of %s is a different file from lstat. "
3230 "Symlink spoofing going on ?\n", fname ));
3231 goto out;
3234 /* This must be a regular file, not a symlink, directory or
3235 other strange filetype. */
3236 if (!check_usershare_stat(fname, &sbuf)) {
3237 close(fd);
3238 goto out;
3241 lines = fd_lines_load(fd, &numlines, MAX_USERSHARE_FILE_SIZE, NULL);
3243 close(fd);
3244 if (lines == NULL) {
3245 DEBUG(0,("process_usershare_file: loading file %s owned by %u failed.\n",
3246 fname, (unsigned int)sbuf.st_ex_uid ));
3247 goto out;
3250 if (parse_usershare_file(ctx, &sbuf, file_name,
3251 iService, lines, numlines, &sharepath,
3252 &comment, &cp_service_name,
3253 &psd, &guest_ok) != USERSHARE_OK) {
3254 goto out;
3257 /* Everything ok - add the service possibly using a template. */
3258 if (iService < 0) {
3259 const struct loadparm_service *sp = &sDefault;
3260 if (snum_template != -1) {
3261 sp = ServicePtrs[snum_template];
3264 if ((iService = add_a_service(sp, cp_service_name)) < 0) {
3265 DEBUG(0, ("process_usershare_file: Failed to add "
3266 "new service %s\n", cp_service_name));
3267 goto out;
3270 added_service = true;
3272 /* Read only is controlled by usershare ACL below. */
3273 ServicePtrs[iService]->read_only = false;
3276 /* Write the ACL of the new/modified share. */
3277 if (!set_share_security(canon_name, psd)) {
3278 DEBUG(0, ("process_usershare_file: Failed to set share "
3279 "security for user share %s\n",
3280 canon_name ));
3281 goto out;
3284 /* If from a template it may be marked invalid. */
3285 ServicePtrs[iService]->valid = true;
3287 /* Set the service as a valid usershare. */
3288 ServicePtrs[iService]->usershare = USERSHARE_VALID;
3290 /* Set guest access. */
3291 if (lp_usershare_allow_guests()) {
3292 ServicePtrs[iService]->guest_ok = guest_ok;
3295 /* And note when it was loaded. */
3296 ServicePtrs[iService]->usershare_last_mod = sbuf.st_ex_mtime;
3297 string_set(ServicePtrs[iService], &ServicePtrs[iService]->path, sharepath);
3298 string_set(ServicePtrs[iService], &ServicePtrs[iService]->comment, comment);
3300 ret = iService;
3302 out:
3304 if (ret == -1 && iService != -1 && added_service) {
3305 lp_remove_service(iService);
3308 TALLOC_FREE(lines);
3309 TALLOC_FREE(ctx);
3310 return ret;
3313 /***************************************************************************
3314 Checks if a usershare entry has been modified since last load.
3315 ***************************************************************************/
3317 static bool usershare_exists(int iService, struct timespec *last_mod)
3319 SMB_STRUCT_STAT lsbuf;
3320 const char *usersharepath = Globals.usershare_path;
3321 char *fname;
3323 fname = talloc_asprintf(talloc_tos(),
3324 "%s/%s",
3325 usersharepath,
3326 ServicePtrs[iService]->szService);
3327 if (fname == NULL) {
3328 return false;
3331 if (sys_lstat(fname, &lsbuf, false) != 0) {
3332 TALLOC_FREE(fname);
3333 return false;
3336 if (!S_ISREG(lsbuf.st_ex_mode)) {
3337 TALLOC_FREE(fname);
3338 return false;
3341 TALLOC_FREE(fname);
3342 *last_mod = lsbuf.st_ex_mtime;
3343 return true;
3346 /***************************************************************************
3347 Load a usershare service by name. Returns a valid servicenumber or -1.
3348 ***************************************************************************/
3350 int load_usershare_service(const char *servicename)
3352 SMB_STRUCT_STAT sbuf;
3353 const char *usersharepath = Globals.usershare_path;
3354 int max_user_shares = Globals.usershare_max_shares;
3355 int snum_template = -1;
3357 if (*usersharepath == 0 || max_user_shares == 0) {
3358 return -1;
3361 if (sys_stat(usersharepath, &sbuf, false) != 0) {
3362 DEBUG(0,("load_usershare_service: stat of %s failed. %s\n",
3363 usersharepath, strerror(errno) ));
3364 return -1;
3367 if (!S_ISDIR(sbuf.st_ex_mode)) {
3368 DEBUG(0,("load_usershare_service: %s is not a directory.\n",
3369 usersharepath ));
3370 return -1;
3374 * This directory must be owned by root, and have the 't' bit set.
3375 * It also must not be writable by "other".
3378 #ifdef S_ISVTX
3379 if (sbuf.st_ex_uid != 0 || !(sbuf.st_ex_mode & S_ISVTX) || (sbuf.st_ex_mode & S_IWOTH)) {
3380 #else
3381 if (sbuf.st_ex_uid != 0 || (sbuf.st_ex_mode & S_IWOTH)) {
3382 #endif
3383 DEBUG(0,("load_usershare_service: directory %s is not owned by root "
3384 "or does not have the sticky bit 't' set or is writable by anyone.\n",
3385 usersharepath ));
3386 return -1;
3389 /* Ensure the template share exists if it's set. */
3390 if (Globals.usershare_template_share[0]) {
3391 /* We can't use lp_servicenumber here as we are recommending that
3392 template shares have -valid=false set. */
3393 for (snum_template = iNumServices - 1; snum_template >= 0; snum_template--) {
3394 if (ServicePtrs[snum_template]->szService &&
3395 strequal(ServicePtrs[snum_template]->szService,
3396 Globals.usershare_template_share)) {
3397 break;
3401 if (snum_template == -1) {
3402 DEBUG(0,("load_usershare_service: usershare template share %s "
3403 "does not exist.\n",
3404 Globals.usershare_template_share ));
3405 return -1;
3409 return process_usershare_file(usersharepath, servicename, snum_template);
3412 /***************************************************************************
3413 Load all user defined shares from the user share directory.
3414 We only do this if we're enumerating the share list.
3415 This is the function that can delete usershares that have
3416 been removed.
3417 ***************************************************************************/
3419 int load_usershare_shares(struct smbd_server_connection *sconn,
3420 bool (*snumused) (struct smbd_server_connection *, int))
3422 DIR *dp;
3423 SMB_STRUCT_STAT sbuf;
3424 struct dirent *de;
3425 int num_usershares = 0;
3426 int max_user_shares = Globals.usershare_max_shares;
3427 unsigned int num_dir_entries, num_bad_dir_entries, num_tmp_dir_entries;
3428 unsigned int allowed_bad_entries = ((2*max_user_shares)/10);
3429 unsigned int allowed_tmp_entries = ((2*max_user_shares)/10);
3430 int iService;
3431 int snum_template = -1;
3432 const char *usersharepath = Globals.usershare_path;
3433 int ret = lp_numservices();
3434 TALLOC_CTX *tmp_ctx;
3436 if (max_user_shares == 0 || *usersharepath == '\0') {
3437 return lp_numservices();
3440 if (sys_stat(usersharepath, &sbuf, false) != 0) {
3441 DEBUG(0,("load_usershare_shares: stat of %s failed. %s\n",
3442 usersharepath, strerror(errno) ));
3443 return ret;
3447 * This directory must be owned by root, and have the 't' bit set.
3448 * It also must not be writable by "other".
3451 #ifdef S_ISVTX
3452 if (sbuf.st_ex_uid != 0 || !(sbuf.st_ex_mode & S_ISVTX) || (sbuf.st_ex_mode & S_IWOTH)) {
3453 #else
3454 if (sbuf.st_ex_uid != 0 || (sbuf.st_ex_mode & S_IWOTH)) {
3455 #endif
3456 DEBUG(0,("load_usershare_shares: directory %s is not owned by root "
3457 "or does not have the sticky bit 't' set or is writable by anyone.\n",
3458 usersharepath ));
3459 return ret;
3462 /* Ensure the template share exists if it's set. */
3463 if (Globals.usershare_template_share[0]) {
3464 /* We can't use lp_servicenumber here as we are recommending that
3465 template shares have -valid=false set. */
3466 for (snum_template = iNumServices - 1; snum_template >= 0; snum_template--) {
3467 if (ServicePtrs[snum_template]->szService &&
3468 strequal(ServicePtrs[snum_template]->szService,
3469 Globals.usershare_template_share)) {
3470 break;
3474 if (snum_template == -1) {
3475 DEBUG(0,("load_usershare_shares: usershare template share %s "
3476 "does not exist.\n",
3477 Globals.usershare_template_share ));
3478 return ret;
3482 /* Mark all existing usershares as pending delete. */
3483 for (iService = iNumServices - 1; iService >= 0; iService--) {
3484 if (VALID(iService) && ServicePtrs[iService]->usershare) {
3485 ServicePtrs[iService]->usershare = USERSHARE_PENDING_DELETE;
3489 dp = opendir(usersharepath);
3490 if (!dp) {
3491 DEBUG(0,("load_usershare_shares:: failed to open directory %s. %s\n",
3492 usersharepath, strerror(errno) ));
3493 return ret;
3496 for (num_dir_entries = 0, num_bad_dir_entries = 0, num_tmp_dir_entries = 0;
3497 (de = readdir(dp));
3498 num_dir_entries++ ) {
3499 int r;
3500 const char *n = de->d_name;
3502 /* Ignore . and .. */
3503 if (*n == '.') {
3504 if ((n[1] == '\0') || (n[1] == '.' && n[2] == '\0')) {
3505 continue;
3509 if (n[0] == ':') {
3510 /* Temporary file used when creating a share. */
3511 num_tmp_dir_entries++;
3514 /* Allow 20% tmp entries. */
3515 if (num_tmp_dir_entries > allowed_tmp_entries) {
3516 DEBUG(0,("load_usershare_shares: too many temp entries (%u) "
3517 "in directory %s\n",
3518 num_tmp_dir_entries, usersharepath));
3519 break;
3522 r = process_usershare_file(usersharepath, n, snum_template);
3523 if (r == 0) {
3524 /* Update the services count. */
3525 num_usershares++;
3526 if (num_usershares >= max_user_shares) {
3527 DEBUG(0,("load_usershare_shares: max user shares reached "
3528 "on file %s in directory %s\n",
3529 n, usersharepath ));
3530 break;
3532 } else if (r == -1) {
3533 num_bad_dir_entries++;
3536 /* Allow 20% bad entries. */
3537 if (num_bad_dir_entries > allowed_bad_entries) {
3538 DEBUG(0,("load_usershare_shares: too many bad entries (%u) "
3539 "in directory %s\n",
3540 num_bad_dir_entries, usersharepath));
3541 break;
3544 /* Allow 20% bad entries. */
3545 if (num_dir_entries > max_user_shares + allowed_bad_entries) {
3546 DEBUG(0,("load_usershare_shares: too many total entries (%u) "
3547 "in directory %s\n",
3548 num_dir_entries, usersharepath));
3549 break;
3553 closedir(dp);
3555 /* Sweep through and delete any non-refreshed usershares that are
3556 not currently in use. */
3557 tmp_ctx = talloc_stackframe();
3558 for (iService = iNumServices - 1; iService >= 0; iService--) {
3559 if (VALID(iService) && (ServicePtrs[iService]->usershare == USERSHARE_PENDING_DELETE)) {
3560 char *servname;
3562 if (snumused && snumused(sconn, iService)) {
3563 continue;
3566 servname = lp_servicename(tmp_ctx, iService);
3568 /* Remove from the share ACL db. */
3569 DEBUG(10,("load_usershare_shares: Removing deleted usershare %s\n",
3570 servname ));
3571 delete_share_security(servname);
3572 free_service_byindex(iService);
3575 talloc_free(tmp_ctx);
3577 return lp_numservices();
3580 /********************************************************
3581 Destroy global resources allocated in this file
3582 ********************************************************/
3584 void gfree_loadparm(void)
3586 int i;
3588 free_file_list();
3590 /* Free resources allocated to services */
3592 for ( i = 0; i < iNumServices; i++ ) {
3593 if ( VALID(i) ) {
3594 free_service_byindex(i);
3598 TALLOC_FREE( ServicePtrs );
3599 iNumServices = 0;
3601 /* Now release all resources allocated to global
3602 parameters and the default service */
3604 free_global_parameters();
3608 /***************************************************************************
3609 Allow client apps to specify that they are a client
3610 ***************************************************************************/
3611 static void lp_set_in_client(bool b)
3613 in_client = b;
3617 /***************************************************************************
3618 Determine if we're running in a client app
3619 ***************************************************************************/
3620 static bool lp_is_in_client(void)
3622 return in_client;
3625 /***************************************************************************
3626 Load the services array from the services file. Return true on success,
3627 false on failure.
3628 ***************************************************************************/
3630 static bool lp_load_ex(const char *pszFname,
3631 bool global_only,
3632 bool save_defaults,
3633 bool add_ipc,
3634 bool initialize_globals,
3635 bool allow_include_registry,
3636 bool load_all_shares)
3638 char *n2 = NULL;
3639 bool bRetval;
3640 TALLOC_CTX *frame = talloc_stackframe();
3641 struct loadparm_context *lp_ctx;
3643 bRetval = false;
3645 DEBUG(3, ("lp_load_ex: refreshing parameters\n"));
3647 bInGlobalSection = true;
3648 bGlobalOnly = global_only;
3649 bAllowIncludeRegistry = allow_include_registry;
3651 lp_ctx = setup_lp_context(talloc_tos());
3653 init_globals(lp_ctx, initialize_globals);
3655 free_file_list();
3657 if (save_defaults) {
3658 init_locals();
3659 lp_save_defaults();
3662 if (!initialize_globals) {
3663 free_param_opts(&Globals.param_opt);
3664 apply_lp_set_cmdline();
3667 lp_do_parameter(-1, "idmap config * : backend", Globals.szIdmapBackend);
3669 /* We get sections first, so have to start 'behind' to make up */
3670 iServiceIndex = -1;
3672 if (lp_config_backend_is_file()) {
3673 n2 = talloc_sub_basic(talloc_tos(), get_current_username(),
3674 current_user_info.domain,
3675 pszFname);
3676 if (!n2) {
3677 smb_panic("lp_load_ex: out of memory");
3680 add_to_file_list(NULL, &file_lists, pszFname, n2);
3682 bRetval = pm_process(n2, lp_do_section, do_parameter, lp_ctx);
3683 TALLOC_FREE(n2);
3685 /* finish up the last section */
3686 DEBUG(4, ("pm_process() returned %s\n", BOOLSTR(bRetval)));
3687 if (bRetval) {
3688 if (iServiceIndex >= 0) {
3689 bRetval = lpcfg_service_ok(ServicePtrs[iServiceIndex]);
3693 if (lp_config_backend_is_registry()) {
3694 bool ok;
3695 /* config backend changed to registry in config file */
3697 * We need to use this extra global variable here to
3698 * survive restart: init_globals uses this as a default
3699 * for config_backend. Otherwise, init_globals would
3700 * send us into an endless loop here.
3703 config_backend = CONFIG_BACKEND_REGISTRY;
3704 /* start over */
3705 DEBUG(1, ("lp_load_ex: changing to config backend "
3706 "registry\n"));
3707 init_globals(lp_ctx, true);
3709 TALLOC_FREE(lp_ctx);
3711 lp_kill_all_services();
3712 ok = lp_load_ex(pszFname, global_only, save_defaults,
3713 add_ipc, initialize_globals,
3714 allow_include_registry,
3715 load_all_shares);
3716 TALLOC_FREE(frame);
3717 return ok;
3719 } else if (lp_config_backend_is_registry()) {
3720 bRetval = process_registry_globals();
3721 } else {
3722 DEBUG(0, ("Illegal config backend given: %d\n",
3723 lp_config_backend()));
3724 bRetval = false;
3727 if (bRetval && lp_registry_shares()) {
3728 if (load_all_shares) {
3729 bRetval = process_registry_shares();
3730 } else {
3731 bRetval = reload_registry_shares();
3736 char *serv = lp_auto_services(talloc_tos());
3737 lp_add_auto_services(serv);
3738 TALLOC_FREE(serv);
3741 if (add_ipc) {
3742 /* When 'restrict anonymous = 2' guest connections to ipc$
3743 are denied */
3744 lp_add_ipc("IPC$", (lp_restrict_anonymous() < 2));
3745 if ( lp_enable_asu_support() ) {
3746 lp_add_ipc("ADMIN$", false);
3750 set_allowed_client_auth();
3752 if (lp_security() == SEC_ADS && strchr(lp_password_server(), ':')) {
3753 DEBUG(1, ("WARNING: The optional ':port' in password server = %s is deprecated\n",
3754 lp_password_server()));
3757 bLoaded = true;
3759 /* Now we check we_are_a_wins_server and set szWINSserver to 127.0.0.1 */
3760 /* if we_are_a_wins_server is true and we are in the client */
3761 if (lp_is_in_client() && Globals.we_are_a_wins_server) {
3762 lp_do_parameter(GLOBAL_SECTION_SNUM, "wins server", "127.0.0.1");
3765 init_iconv();
3767 fault_configure(smb_panic_s3);
3770 * We run this check once the whole smb.conf is parsed, to
3771 * force some settings for the standard way a AD DC is
3772 * operated. We may changed these as our code evolves, which
3773 * is why we force these settings.
3775 if (lp_server_role() == ROLE_ACTIVE_DIRECTORY_DC) {
3776 lp_do_parameter(-1, "passdb backend", "samba_dsdb");
3778 lp_do_parameter(-1, "winbindd:use external pipes", "true");
3780 lp_do_parameter(-1, "rpc_server:default", "external");
3781 lp_do_parameter(-1, "rpc_server:svcctl", "embedded");
3782 lp_do_parameter(-1, "rpc_server:srvsvc", "embedded");
3783 lp_do_parameter(-1, "rpc_server:eventlog", "embedded");
3784 lp_do_parameter(-1, "rpc_server:ntsvcs", "embedded");
3785 lp_do_parameter(-1, "rpc_server:winreg", "embedded");
3786 lp_do_parameter(-1, "rpc_server:spoolss", "embedded");
3787 lp_do_parameter(-1, "rpc_daemon:spoolssd", "embedded");
3788 lp_do_parameter(-1, "rpc_server:tcpip", "no");
3791 bAllowIncludeRegistry = true;
3793 TALLOC_FREE(frame);
3794 return (bRetval);
3797 bool lp_load(const char *pszFname,
3798 bool global_only,
3799 bool save_defaults,
3800 bool add_ipc,
3801 bool initialize_globals)
3803 return lp_load_ex(pszFname,
3804 global_only,
3805 save_defaults,
3806 add_ipc,
3807 initialize_globals,
3808 true, /* allow_include_registry */
3809 false); /* load_all_shares*/
3812 bool lp_load_initial_only(const char *pszFname)
3814 return lp_load_ex(pszFname,
3815 true, /* global only */
3816 false, /* save_defaults */
3817 false, /* add_ipc */
3818 true, /* initialize_globals */
3819 false, /* allow_include_registry */
3820 false); /* load_all_shares*/
3824 * most common lp_load wrapper, loading only the globals
3826 bool lp_load_global(const char *file_name)
3828 return lp_load_ex(file_name,
3829 true, /* global_only */
3830 false, /* save_defaults */
3831 false, /* add_ipc */
3832 true, /* initialize_globals */
3833 true, /* allow_include_registry */
3834 false); /* load_all_shares*/
3838 * lp_load wrapper, especially for clients
3840 bool lp_load_client(const char *file_name)
3842 lp_set_in_client(true);
3844 return lp_load_global(file_name);
3848 * lp_load wrapper, loading only globals, but intended
3849 * for subsequent calls, not reinitializing the globals
3850 * to default values
3852 bool lp_load_global_no_reinit(const char *file_name)
3854 return lp_load_ex(file_name,
3855 true, /* global_only */
3856 false, /* save_defaults */
3857 false, /* add_ipc */
3858 false, /* initialize_globals */
3859 true, /* allow_include_registry */
3860 false); /* load_all_shares*/
3864 * lp_load wrapper, especially for clients, no reinitialization
3866 bool lp_load_client_no_reinit(const char *file_name)
3868 lp_set_in_client(true);
3870 return lp_load_global_no_reinit(file_name);
3873 bool lp_load_with_registry_shares(const char *pszFname,
3874 bool global_only,
3875 bool save_defaults,
3876 bool add_ipc,
3877 bool initialize_globals)
3879 return lp_load_ex(pszFname,
3880 global_only,
3881 save_defaults,
3882 add_ipc,
3883 initialize_globals,
3884 true, /* allow_include_registry */
3885 true); /* load_all_shares*/
3888 /***************************************************************************
3889 Return the max number of services.
3890 ***************************************************************************/
3892 int lp_numservices(void)
3894 return (iNumServices);
3897 /***************************************************************************
3898 Display the contents of the services array in human-readable form.
3899 ***************************************************************************/
3901 void lp_dump(FILE *f, bool show_defaults, int maxtoprint)
3903 int iService;
3904 struct loadparm_context *lp_ctx;
3906 if (show_defaults)
3907 defaults_saved = false;
3909 lp_ctx = setup_lp_context(talloc_tos());
3910 if (lp_ctx == NULL) {
3911 return;
3914 lpcfg_dump_globals(lp_ctx, f, !defaults_saved);
3916 lpcfg_dump_a_service(&sDefault, &sDefault, f, flags_list, show_defaults);
3918 for (iService = 0; iService < maxtoprint; iService++) {
3919 fprintf(f,"\n");
3920 lp_dump_one(f, show_defaults, iService);
3924 /***************************************************************************
3925 Display the contents of one service in human-readable form.
3926 ***************************************************************************/
3928 void lp_dump_one(FILE * f, bool show_defaults, int snum)
3930 if (VALID(snum)) {
3931 if (ServicePtrs[snum]->szService[0] == '\0')
3932 return;
3933 lpcfg_dump_a_service(ServicePtrs[snum], &sDefault, f,
3934 flags_list, show_defaults);
3938 /***************************************************************************
3939 Return the number of the service with the given name, or -1 if it doesn't
3940 exist. Note that this is a DIFFERENT ANIMAL from the internal function
3941 getservicebyname()! This works ONLY if all services have been loaded, and
3942 does not copy the found service.
3943 ***************************************************************************/
3945 int lp_servicenumber(const char *pszServiceName)
3947 int iService;
3948 fstring serviceName;
3950 if (!pszServiceName) {
3951 return GLOBAL_SECTION_SNUM;
3954 for (iService = iNumServices - 1; iService >= 0; iService--) {
3955 if (VALID(iService) && ServicePtrs[iService]->szService) {
3957 * The substitution here is used to support %U is
3958 * service names
3960 fstrcpy(serviceName, ServicePtrs[iService]->szService);
3961 standard_sub_basic(get_current_username(),
3962 current_user_info.domain,
3963 serviceName,sizeof(serviceName));
3964 if (strequal(serviceName, pszServiceName)) {
3965 break;
3970 if (iService >= 0 && ServicePtrs[iService]->usershare == USERSHARE_VALID) {
3971 struct timespec last_mod;
3973 if (!usershare_exists(iService, &last_mod)) {
3974 /* Remove the share security tdb entry for it. */
3975 delete_share_security(lp_servicename(talloc_tos(), iService));
3976 /* Remove it from the array. */
3977 free_service_byindex(iService);
3978 /* Doesn't exist anymore. */
3979 return GLOBAL_SECTION_SNUM;
3982 /* Has it been modified ? If so delete and reload. */
3983 if (timespec_compare(&ServicePtrs[iService]->usershare_last_mod,
3984 &last_mod) < 0) {
3985 /* Remove it from the array. */
3986 free_service_byindex(iService);
3987 /* and now reload it. */
3988 iService = load_usershare_service(pszServiceName);
3992 if (iService < 0) {
3993 DEBUG(7,("lp_servicenumber: couldn't find %s\n", pszServiceName));
3994 return GLOBAL_SECTION_SNUM;
3997 return (iService);
4000 /*******************************************************************
4001 A useful volume label function.
4002 ********************************************************************/
4004 const char *volume_label(TALLOC_CTX *ctx, int snum)
4006 char *ret;
4007 const char *label = lp_volume(ctx, snum);
4008 if (!*label) {
4009 label = lp_servicename(ctx, snum);
4012 /* This returns a 33 byte guarenteed null terminated string. */
4013 ret = talloc_strndup(ctx, label, 32);
4014 if (!ret) {
4015 return "";
4017 return ret;
4020 /*******************************************************************
4021 Get the default server type we will announce as via nmbd.
4022 ********************************************************************/
4024 int lp_default_server_announce(void)
4026 int default_server_announce = 0;
4027 default_server_announce |= SV_TYPE_WORKSTATION;
4028 default_server_announce |= SV_TYPE_SERVER;
4029 default_server_announce |= SV_TYPE_SERVER_UNIX;
4031 /* note that the flag should be set only if we have a
4032 printer service but nmbd doesn't actually load the
4033 services so we can't tell --jerry */
4035 default_server_announce |= SV_TYPE_PRINTQ_SERVER;
4037 default_server_announce |= SV_TYPE_SERVER_NT;
4038 default_server_announce |= SV_TYPE_NT;
4040 switch (lp_server_role()) {
4041 case ROLE_DOMAIN_MEMBER:
4042 default_server_announce |= SV_TYPE_DOMAIN_MEMBER;
4043 break;
4044 case ROLE_DOMAIN_PDC:
4045 default_server_announce |= SV_TYPE_DOMAIN_CTRL;
4046 break;
4047 case ROLE_DOMAIN_BDC:
4048 default_server_announce |= SV_TYPE_DOMAIN_BAKCTRL;
4049 break;
4050 case ROLE_STANDALONE:
4051 default:
4052 break;
4054 if (lp_time_server())
4055 default_server_announce |= SV_TYPE_TIME_SOURCE;
4057 if (lp_host_msdfs())
4058 default_server_announce |= SV_TYPE_DFS_SERVER;
4060 return default_server_announce;
4063 /***********************************************************
4064 If we are PDC then prefer us as DMB
4065 ************************************************************/
4067 bool lp_domain_master(void)
4069 if (Globals._domain_master == Auto)
4070 return (lp_server_role() == ROLE_DOMAIN_PDC);
4072 return (bool)Globals._domain_master;
4075 /***********************************************************
4076 If we are PDC then prefer us as DMB
4077 ************************************************************/
4079 static bool lp_domain_master_true_or_auto(void)
4081 if (Globals._domain_master) /* auto or yes */
4082 return true;
4084 return false;
4087 /***********************************************************
4088 If we are DMB then prefer us as LMB
4089 ************************************************************/
4091 bool lp_preferred_master(void)
4093 if (Globals.iPreferredMaster == Auto)
4094 return (lp_local_master() && lp_domain_master());
4096 return (bool)Globals.iPreferredMaster;
4099 /*******************************************************************
4100 Remove a service.
4101 ********************************************************************/
4103 void lp_remove_service(int snum)
4105 ServicePtrs[snum]->valid = false;
4108 const char *lp_printername(TALLOC_CTX *ctx, int snum)
4110 const char *ret = lp__printername(ctx, snum);
4111 if (ret == NULL || *ret == '\0') {
4112 ret = lp_const_servicename(snum);
4115 return ret;
4119 /***********************************************************
4120 Allow daemons such as winbindd to fix their logfile name.
4121 ************************************************************/
4123 void lp_set_logfile(const char *name)
4125 string_set(Globals.ctx, &Globals.logfile, name);
4126 debug_set_logfile(name);
4129 /*******************************************************************
4130 Return the max print jobs per queue.
4131 ********************************************************************/
4133 int lp_maxprintjobs(int snum)
4135 int maxjobs = LP_SNUM_OK(snum) ? ServicePtrs[snum]->iMaxPrintJobs : sDefault.iMaxPrintJobs;
4136 if (maxjobs <= 0 || maxjobs >= PRINT_MAX_JOBID)
4137 maxjobs = PRINT_MAX_JOBID - 1;
4139 return maxjobs;
4142 const char *lp_printcapname(void)
4144 if ((Globals.szPrintcapname != NULL) &&
4145 (Globals.szPrintcapname[0] != '\0'))
4146 return Globals.szPrintcapname;
4148 if (sDefault.printing == PRINT_CUPS) {
4149 return "cups";
4152 if (sDefault.printing == PRINT_BSD)
4153 return "/etc/printcap";
4155 return PRINTCAP_NAME;
4158 static uint32 spoolss_state;
4160 bool lp_disable_spoolss( void )
4162 if ( spoolss_state == SVCCTL_STATE_UNKNOWN )
4163 spoolss_state = lp__disable_spoolss() ? SVCCTL_STOPPED : SVCCTL_RUNNING;
4165 return spoolss_state == SVCCTL_STOPPED ? true : false;
4168 void lp_set_spoolss_state( uint32 state )
4170 SMB_ASSERT( (state == SVCCTL_STOPPED) || (state == SVCCTL_RUNNING) );
4172 spoolss_state = state;
4175 uint32 lp_get_spoolss_state( void )
4177 return lp_disable_spoolss() ? SVCCTL_STOPPED : SVCCTL_RUNNING;
4180 /*******************************************************************
4181 Ensure we don't use sendfile if server smb signing is active.
4182 ********************************************************************/
4184 bool lp_use_sendfile(int snum, struct smb_signing_state *signing_state)
4186 bool sign_active = false;
4188 /* Using sendfile blows the brains out of any DOS or Win9x TCP stack... JRA. */
4189 if (get_Protocol() < PROTOCOL_NT1) {
4190 return false;
4192 if (signing_state) {
4193 sign_active = smb_signing_is_active(signing_state);
4195 return (lp__use_sendfile(snum) &&
4196 (get_remote_arch() != RA_WIN95) &&
4197 !sign_active);
4200 /*******************************************************************
4201 Turn off sendfile if we find the underlying OS doesn't support it.
4202 ********************************************************************/
4204 void set_use_sendfile(int snum, bool val)
4206 if (LP_SNUM_OK(snum))
4207 ServicePtrs[snum]->_use_sendfile = val;
4208 else
4209 sDefault._use_sendfile = val;
4212 /*******************************************************************
4213 Turn off storing DOS attributes if this share doesn't support it.
4214 ********************************************************************/
4216 void set_store_dos_attributes(int snum, bool val)
4218 if (!LP_SNUM_OK(snum))
4219 return;
4220 ServicePtrs[(snum)]->store_dos_attributes = val;
4223 void lp_set_mangling_method(const char *new_method)
4225 string_set(Globals.ctx, &Globals.mangling_method, new_method);
4228 /*******************************************************************
4229 Global state for POSIX pathname processing.
4230 ********************************************************************/
4232 static bool posix_pathnames;
4234 bool lp_posix_pathnames(void)
4236 return posix_pathnames;
4239 /*******************************************************************
4240 Change everything needed to ensure POSIX pathname processing (currently
4241 not much).
4242 ********************************************************************/
4244 void lp_set_posix_pathnames(void)
4246 posix_pathnames = true;
4249 /*******************************************************************
4250 Global state for POSIX lock processing - CIFS unix extensions.
4251 ********************************************************************/
4253 bool posix_default_lock_was_set;
4254 static enum brl_flavour posix_cifsx_locktype; /* By default 0 == WINDOWS_LOCK */
4256 enum brl_flavour lp_posix_cifsu_locktype(files_struct *fsp)
4258 if (posix_default_lock_was_set) {
4259 return posix_cifsx_locktype;
4260 } else {
4261 return fsp->posix_open ? POSIX_LOCK : WINDOWS_LOCK;
4265 /*******************************************************************
4266 ********************************************************************/
4268 void lp_set_posix_default_cifsx_readwrite_locktype(enum brl_flavour val)
4270 posix_default_lock_was_set = true;
4271 posix_cifsx_locktype = val;
4274 int lp_min_receive_file_size(void)
4276 if (Globals.iminreceivefile < 0) {
4277 return 0;
4279 return Globals.iminreceivefile;
4282 /*******************************************************************
4283 Safe wide links checks.
4284 This helper function always verify the validity of wide links,
4285 even after a configuration file reload.
4286 ********************************************************************/
4288 static bool lp_widelinks_internal(int snum)
4290 return (bool)(LP_SNUM_OK(snum)? ServicePtrs[(snum)]->bWidelinks :
4291 sDefault.bWidelinks);
4294 void widelinks_warning(int snum)
4296 if (lp_allow_insecure_wide_links()) {
4297 return;
4300 if (lp_unix_extensions() && lp_widelinks_internal(snum)) {
4301 DEBUG(0,("Share '%s' has wide links and unix extensions enabled. "
4302 "These parameters are incompatible. "
4303 "Wide links will be disabled for this share.\n",
4304 lp_servicename(talloc_tos(), snum) ));
4308 bool lp_widelinks(int snum)
4310 /* wide links is always incompatible with unix extensions */
4311 if (lp_unix_extensions()) {
4313 * Unless we have "allow insecure widelinks"
4314 * turned on.
4316 if (!lp_allow_insecure_wide_links()) {
4317 return false;
4321 return lp_widelinks_internal(snum);
4324 int lp_server_role(void)
4326 return lp_find_server_role(lp__server_role(),
4327 lp__security(),
4328 lp__domain_logons(),
4329 lp_domain_master_true_or_auto());
4332 int lp_security(void)
4334 return lp_find_security(lp__server_role(),
4335 lp__security());
4338 struct loadparm_global * get_globals(void)
4340 return &Globals;
4343 unsigned int * get_flags(void)
4345 if (flags_list == NULL) {
4346 flags_list = talloc_zero_array(NULL, unsigned int, num_parameters());
4349 return flags_list;