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/>.
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.
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
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
56 #define LOADPARM_SUBSTITUTION_INTERNALS 1
58 #include "system/filesys.h"
60 #include "lib/param/loadparm.h"
61 #include "lib/param/param.h"
63 #include "lib/smbconf/smbconf.h"
64 #include "lib/smbconf/smbconf_init.h"
66 #include "include/smb_ldap.h"
67 #include "../librpc/gen_ndr/svcctl.h"
69 #include "../libcli/smb/smb_signing.h"
70 #include "dbwrap/dbwrap.h"
71 #include "dbwrap/dbwrap_rbt.h"
72 #include "../lib/util/bitmap.h"
73 #include "librpc/gen_ndr/nbt.h"
74 #include "source4/lib/tls/tls.h"
75 #include "libcli/auth/ntlm_check.h"
76 #include "lib/crypto/gnutls_helpers.h"
77 #include "lib/util/string_wrappers.h"
78 #include "auth/credentials/credentials.h"
79 #include "source3/lib/substitute.h"
81 #ifdef HAVE_SYS_SYSCTL_H
82 #include <sys/sysctl.h>
87 extern userdom_struct current_user_info
;
89 /* the special value for the include parameter
90 * to be interpreted not as a file name but to
91 * trigger loading of the global smb.conf options
93 #ifndef INCLUDE_REGISTRY_NAME
94 #define INCLUDE_REGISTRY_NAME "registry"
97 static bool in_client
= false; /* Not in the client by default */
98 static struct smbconf_csn conf_last_csn
;
100 static int config_backend
= CONFIG_BACKEND_FILE
;
102 /* some helpful bits */
103 #define LP_SNUM_OK(i) (((i) >= 0) && ((i) < iNumServices) && \
104 (ServicePtrs != NULL) && \
105 (ServicePtrs[(i)] != NULL) && ServicePtrs[(i)]->valid)
106 #define VALID(i) ((ServicePtrs != NULL) && (ServicePtrs[i]!= NULL) && \
107 ServicePtrs[i]->valid)
109 #define USERSHARE_VALID 1
110 #define USERSHARE_PENDING_DELETE 2
112 static bool defaults_saved
= false;
114 #include "lib/param/param_global.h"
116 static struct loadparm_global Globals
;
118 /* This is a default service used to prime a services structure */
119 static const struct loadparm_service _sDefault
=
124 .usershare_last_mod
= {0, 0},
127 .invalid_users
= NULL
,
134 .root_preexec
= NULL
,
135 .root_postexec
= NULL
,
136 .cups_options
= NULL
,
137 .print_command
= NULL
,
139 .lprm_command
= NULL
,
140 .lppause_command
= NULL
,
141 .lpresume_command
= NULL
,
142 .queuepause_command
= NULL
,
143 .queueresume_command
= NULL
,
144 ._printername
= NULL
,
145 .printjob_username
= NULL
,
146 .dont_descend
= NULL
,
149 .magic_script
= NULL
,
150 .magic_output
= NULL
,
153 .veto_oplock_files
= NULL
,
163 .aio_write_behind
= NULL
,
164 .dfree_command
= NULL
,
165 .min_print_space
= 0,
166 .max_print_jobs
= 1000,
167 .max_reported_print_jobs
= 0,
169 .force_create_mode
= 0,
170 .directory_mask
= 0755,
171 .force_directory_mode
= 0,
172 .max_connections
= 0,
173 .default_case
= CASE_LOWER
,
174 .printing
= DEFAULT_PRINTING
,
177 .dfree_cache_time
= 0,
178 .preexec_close
= false,
179 .root_preexec_close
= false,
180 .case_sensitive
= Auto
,
181 .preserve_case
= true,
182 .short_preserve_case
= true,
183 .hide_dot_files
= true,
184 .hide_special_files
= false,
185 .hide_unreadable
= false,
186 .hide_unwriteable_files
= false,
188 .access_based_share_enum
= false,
193 .administrative_share
= false,
196 .print_notify_backchannel
= false,
200 .store_dos_attributes
= true,
201 .smbd_max_xattr_size
= 65536,
202 .dmapi_support
= false,
204 .strict_locking
= Auto
,
205 .posix_locking
= true,
207 .kernel_oplocks
= false,
208 .level2_oplocks
= true,
209 .mangled_names
= MANGLED_NAMES_ILLEGAL
,
211 .follow_symlinks
= true,
212 .sync_always
= false,
213 .strict_allocate
= false,
214 .strict_rename
= false,
216 .mangling_char
= '~',
218 .delete_readonly
= false,
219 .fake_oplocks
= false,
220 .delete_veto_files
= false,
221 .dos_filemode
= false,
222 .dos_filetimes
= true,
223 .dos_filetime_resolution
= false,
224 .fake_directory_create_times
= false,
225 .blocking_locks
= true,
226 .inherit_permissions
= false,
227 .inherit_acls
= false,
228 .inherit_owner
= false,
230 .msdfs_shuffle_referrals
= false,
231 .use_client_driver
= false,
232 .default_devmode
= true,
233 .force_printername
= false,
234 .nt_acl_support
= true,
235 .force_unknown_acl_user
= false,
236 ._use_sendfile
= false,
237 .map_acl_inherit
= false,
240 .acl_check_permissions
= true,
241 .acl_map_full_control
= true,
242 .acl_group_control
= false,
243 .acl_allow_execute_always
= false,
244 .acl_flag_inherited_canonicalization
= true,
247 .map_readonly
= MAP_READONLY_NO
,
248 .directory_name_cache_size
= 100,
249 .server_smb_encrypt
= SMB_ENCRYPTION_DEFAULT
,
250 .kernel_share_modes
= false,
251 .durable_handles
= true,
252 .check_parent_directory_delete_on_close
= false,
254 .smbd_search_ask_sharemode
= true,
255 .smbd_getinfo_ask_sharemode
= true,
256 .spotlight_backend
= SPOTLIGHT_BACKEND_NOINDEX
,
257 .honor_change_notify_privilege
= false,
262 * This is a copy of the default service structure. Service options in the
263 * global section would otherwise overwrite the initial default values.
265 static struct loadparm_service sDefault
;
267 /* local variables */
268 static struct loadparm_service
**ServicePtrs
= NULL
;
269 static int iNumServices
= 0;
270 static int iServiceIndex
= 0;
271 static struct db_context
*ServiceHash
;
272 static bool bInGlobalSection
= true;
273 static bool bGlobalOnly
= false;
274 static struct file_lists
*file_lists
= NULL
;
275 static unsigned int *flags_list
= NULL
;
277 static void set_allowed_client_auth(void);
279 static bool lp_set_cmdline_helper(const char *pszParmName
, const char *pszParmValue
);
280 static void free_param_opts(struct parmlist_entry
**popts
);
283 * Function to return the default value for the maximum number of open
284 * file descriptors permitted. This function tries to consult the
285 * kernel-level (sysctl) and ulimit (getrlimit()) values and goes
286 * the smaller of those.
288 static int max_open_files(void)
290 int sysctl_max
= MAX_OPEN_FILES
;
291 int rlimit_max
= MAX_OPEN_FILES
;
293 #ifdef HAVE_SYSCTLBYNAME
295 size_t size
= sizeof(sysctl_max
);
296 sysctlbyname("kern.maxfilesperproc", &sysctl_max
, &size
, NULL
,
301 #if (defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE))
307 if (getrlimit(RLIMIT_NOFILE
, &rl
) == 0)
308 rlimit_max
= rl
.rlim_cur
;
310 #if defined(RLIM_INFINITY)
311 if(rl
.rlim_cur
== RLIM_INFINITY
)
312 rlimit_max
= MAX_OPEN_FILES
;
317 if (sysctl_max
< MIN_OPEN_FILES_WINDOWS
) {
318 DEBUG(2,("max_open_files: increasing sysctl_max (%d) to "
319 "minimum Windows limit (%d)\n",
321 MIN_OPEN_FILES_WINDOWS
));
322 sysctl_max
= MIN_OPEN_FILES_WINDOWS
;
325 if (rlimit_max
< MIN_OPEN_FILES_WINDOWS
) {
326 DEBUG(2,("rlimit_max: increasing rlimit_max (%d) to "
327 "minimum Windows limit (%d)\n",
329 MIN_OPEN_FILES_WINDOWS
));
330 rlimit_max
= MIN_OPEN_FILES_WINDOWS
;
333 return MIN(sysctl_max
, rlimit_max
);
337 * Common part of freeing allocated data for one parameter.
339 static void free_one_parameter_common(void *parm_ptr
,
340 struct parm_struct parm
)
342 if ((parm
.type
== P_STRING
) ||
343 (parm
.type
== P_USTRING
))
345 lpcfg_string_free((char**)parm_ptr
);
346 } else if (parm
.type
== P_LIST
|| parm
.type
== P_CMDLIST
) {
347 TALLOC_FREE(*((char***)parm_ptr
));
352 * Free the allocated data for one parameter for a share
353 * given as a service struct.
355 static void free_one_parameter(struct loadparm_service
*service
,
356 struct parm_struct parm
)
360 if (parm
.p_class
!= P_LOCAL
) {
364 parm_ptr
= lp_parm_ptr(service
, &parm
);
366 free_one_parameter_common(parm_ptr
, parm
);
370 * Free the allocated parameter data of a share given
371 * as a service struct.
373 static void free_parameters(struct loadparm_service
*service
)
377 for (i
=0; parm_table
[i
].label
; i
++) {
378 free_one_parameter(service
, parm_table
[i
]);
383 * Free the allocated data for one parameter for a given share
384 * specified by an snum.
386 static void free_one_parameter_by_snum(int snum
, struct parm_struct parm
)
391 parm_ptr
= lp_parm_ptr(NULL
, &parm
);
392 } else if (parm
.p_class
!= P_LOCAL
) {
395 parm_ptr
= lp_parm_ptr(ServicePtrs
[snum
], &parm
);
398 free_one_parameter_common(parm_ptr
, parm
);
402 * Free the allocated parameter data for a share specified
405 static void free_parameters_by_snum(int snum
)
409 for (i
=0; parm_table
[i
].label
; i
++) {
410 free_one_parameter_by_snum(snum
, parm_table
[i
]);
415 * Free the allocated global parameters.
417 static void free_global_parameters(void)
420 struct parm_struct
*parm
;
422 free_param_opts(&Globals
.param_opt
);
423 free_parameters_by_snum(GLOBAL_SECTION_SNUM
);
425 /* Reset references in the defaults because the context is going to be freed */
426 for (i
=0; parm_table
[i
].label
; i
++) {
427 parm
= &parm_table
[i
];
428 if ((parm
->type
== P_STRING
) ||
429 (parm
->type
== P_USTRING
)) {
430 if ((parm
->def
.svalue
!= NULL
) &&
431 (*(parm
->def
.svalue
) != '\0')) {
432 if (talloc_parent(parm
->def
.svalue
) == Globals
.ctx
) {
433 parm
->def
.svalue
= NULL
;
438 TALLOC_FREE(Globals
.ctx
);
441 struct lp_stored_option
{
442 struct lp_stored_option
*prev
, *next
;
447 static struct lp_stored_option
*stored_options
;
450 save options set by lp_set_cmdline() into a list. This list is
451 re-applied when we do a globals reset, so that cmdline set options
452 are sticky across reloads of smb.conf
454 bool store_lp_set_cmdline(const char *pszParmName
, const char *pszParmValue
)
456 struct lp_stored_option
*entry
, *entry_next
;
457 for (entry
= stored_options
; entry
!= NULL
; entry
= entry_next
) {
458 entry_next
= entry
->next
;
459 if (strcmp(pszParmName
, entry
->label
) == 0) {
460 DLIST_REMOVE(stored_options
, entry
);
466 entry
= talloc(NULL
, struct lp_stored_option
);
471 entry
->label
= talloc_strdup(entry
, pszParmName
);
477 entry
->value
= talloc_strdup(entry
, pszParmValue
);
483 DLIST_ADD_END(stored_options
, entry
);
488 static bool apply_lp_set_cmdline(void)
490 struct lp_stored_option
*entry
= NULL
;
491 for (entry
= stored_options
; entry
!= NULL
; entry
= entry
->next
) {
492 if (!lp_set_cmdline_helper(entry
->label
, entry
->value
)) {
493 DEBUG(0, ("Failed to re-apply cmdline parameter %s = %s\n",
494 entry
->label
, entry
->value
));
501 /***************************************************************************
502 Initialise the global parameter structure.
503 ***************************************************************************/
505 static void init_globals(struct loadparm_context
*lp_ctx
, bool reinit_globals
)
507 static bool done_init
= false;
511 /* If requested to initialize only once and we've already done it... */
512 if (!reinit_globals
&& done_init
) {
513 /* ... then we have nothing more to do */
518 /* The logfile can be set before this is invoked. Free it if so. */
519 lpcfg_string_free(&Globals
.logfile
);
522 free_global_parameters();
525 /* This memset and the free_global_parameters() above will
526 * wipe out smb.conf options set with lp_set_cmdline(). The
527 * apply_lp_set_cmdline() call puts these values back in the
528 * table once the defaults are set */
529 ZERO_STRUCT(Globals
);
531 Globals
.ctx
= talloc_pooled_object(NULL
, char, 272, 2048);
533 /* Initialize the flags list if necessary */
534 if (flags_list
== NULL
) {
538 for (i
= 0; parm_table
[i
].label
; i
++) {
539 if ((parm_table
[i
].type
== P_STRING
||
540 parm_table
[i
].type
== P_USTRING
))
544 (char **)lp_parm_ptr(NULL
, &parm_table
[i
]),
550 lpcfg_string_set(Globals
.ctx
, &sDefault
.fstype
, FSTYPE_STRING
);
551 lpcfg_string_set(Globals
.ctx
, &sDefault
.printjob_username
, "%U");
553 init_printer_values(lp_ctx
, Globals
.ctx
, &sDefault
);
555 sDefault
.ntvfs_handler
= str_list_make_v3_const(Globals
.ctx
, "unixuid default", NULL
);
557 DEBUG(3, ("Initialising global parameters\n"));
559 /* Must manually force to upper case here, as this does not go via the handler */
560 lpcfg_string_set(Globals
.ctx
, &Globals
.netbios_name
,
563 lpcfg_string_set(Globals
.ctx
, &Globals
.smb_passwd_file
,
564 get_dyn_SMB_PASSWD_FILE());
565 lpcfg_string_set(Globals
.ctx
, &Globals
.private_dir
,
566 get_dyn_PRIVATE_DIR());
567 lpcfg_string_set(Globals
.ctx
, &Globals
.binddns_dir
,
568 get_dyn_BINDDNS_DIR());
570 /* use the new 'hash2' method by default, with a prefix of 1 */
571 lpcfg_string_set(Globals
.ctx
, &Globals
.mangling_method
, "hash2");
572 Globals
.mangle_prefix
= 1;
574 lpcfg_string_set(Globals
.ctx
, &Globals
.guest_account
, GUEST_ACCOUNT
);
576 /* using UTF8 by default allows us to support all chars */
577 lpcfg_string_set(Globals
.ctx
, &Globals
.unix_charset
,
578 DEFAULT_UNIX_CHARSET
);
580 /* Use codepage 850 as a default for the dos character set */
581 lpcfg_string_set(Globals
.ctx
, &Globals
.dos_charset
,
582 DEFAULT_DOS_CHARSET
);
585 * Allow the default PASSWD_CHAT to be overridden in local.h.
587 lpcfg_string_set(Globals
.ctx
, &Globals
.passwd_chat
,
588 DEFAULT_PASSWD_CHAT
);
590 lpcfg_string_set(Globals
.ctx
, &Globals
.workgroup
, DEFAULT_WORKGROUP
);
592 lpcfg_string_set(Globals
.ctx
, &Globals
.passwd_program
, "");
593 lpcfg_string_set(Globals
.ctx
, &Globals
.lock_directory
,
595 lpcfg_string_set(Globals
.ctx
, &Globals
.state_directory
,
597 lpcfg_string_set(Globals
.ctx
, &Globals
.cache_directory
,
599 lpcfg_string_set(Globals
.ctx
, &Globals
.pid_directory
,
601 lpcfg_string_set(Globals
.ctx
, &Globals
.nbt_client_socket_address
,
604 * By default support explicit binding to broadcast
607 Globals
.nmbd_bind_explicit_broadcast
= true;
609 s
= talloc_asprintf(talloc_tos(), "Samba %s", samba_version_string());
611 smb_panic("init_globals: ENOMEM");
613 lpcfg_string_set(Globals
.ctx
, &Globals
.server_string
, s
);
616 lpcfg_string_set(Globals
.ctx
, &Globals
.panic_action
,
617 "/bin/sleep 999999999");
620 lpcfg_string_set(Globals
.ctx
, &Globals
.socket_options
,
621 DEFAULT_SOCKET_OPTIONS
);
623 lpcfg_string_set(Globals
.ctx
, &Globals
.logon_drive
, "");
624 /* %N is the NIS auto.home server if -DAUTOHOME is used, else same as %L */
625 lpcfg_string_set(Globals
.ctx
, &Globals
.logon_home
, "\\\\%N\\%U");
626 lpcfg_string_set(Globals
.ctx
, &Globals
.logon_path
,
627 "\\\\%N\\%U\\profile");
629 Globals
.name_resolve_order
=
630 str_list_make_v3_const(Globals
.ctx
,
631 DEFAULT_NAME_RESOLVE_ORDER
,
633 lpcfg_string_set(Globals
.ctx
, &Globals
.password_server
, "*");
635 Globals
.algorithmic_rid_base
= BASE_RID
;
637 Globals
.load_printers
= true;
638 Globals
.printcap_cache_time
= 750; /* 12.5 minutes */
640 Globals
.config_backend
= config_backend
;
641 Globals
._server_role
= ROLE_AUTO
;
643 /* Was 65535 (0xFFFF). 0x4101 matches W2K and causes major speed improvements... */
644 /* Discovered by 2 days of pain by Don McCall @ HP :-). */
645 Globals
.max_xmit
= 0x4104;
646 Globals
.max_mux
= 50; /* This is *needed* for profile support. */
647 Globals
.lpq_cache_time
= 30; /* changed to handle large print servers better -- jerry */
648 Globals
._disable_spoolss
= false;
649 Globals
.max_smbd_processes
= 0;/* no limit specified */
650 Globals
.username_level
= 0;
651 Globals
.deadtime
= 10080;
652 Globals
.getwd_cache
= true;
653 Globals
.large_readwrite
= true;
654 Globals
.max_log_size
= 5000;
655 Globals
.max_open_files
= max_open_files();
656 Globals
.server_max_protocol
= PROTOCOL_SMB3_11
;
657 Globals
.server_min_protocol
= PROTOCOL_SMB2_02
;
658 Globals
._client_max_protocol
= PROTOCOL_DEFAULT
;
659 Globals
.client_min_protocol
= PROTOCOL_SMB2_02
;
660 Globals
._client_ipc_max_protocol
= PROTOCOL_DEFAULT
;
661 Globals
._client_ipc_min_protocol
= PROTOCOL_DEFAULT
;
662 Globals
._security
= SEC_AUTO
;
663 Globals
.encrypt_passwords
= true;
664 Globals
.client_schannel
= true;
665 Globals
.winbind_sealed_pipes
= true;
666 Globals
.require_strong_key
= true;
667 Globals
.reject_md5_servers
= true;
668 Globals
.server_schannel
= true;
669 Globals
.server_schannel_require_seal
= true;
670 Globals
.reject_md5_clients
= true;
671 Globals
.read_raw
= true;
672 Globals
.write_raw
= true;
673 Globals
.null_passwords
= false;
674 Globals
.old_password_allowed_period
= 60;
675 Globals
.obey_pam_restrictions
= false;
677 Globals
.syslog_only
= false;
678 Globals
.timestamp_logs
= true;
679 lpcfg_string_set(Globals
.ctx
, &Globals
.log_level
, "0");
680 Globals
.debug_prefix_timestamp
= false;
681 Globals
.debug_hires_timestamp
= true;
682 Globals
.debug_syslog_format
= false;
683 Globals
.debug_pid
= false;
684 Globals
.debug_uid
= false;
685 Globals
.debug_class
= false;
686 Globals
.enable_core_files
= true;
687 Globals
.max_ttl
= 60 * 60 * 24 * 3; /* 3 days default. */
688 Globals
.max_wins_ttl
= 60 * 60 * 24 * 6; /* 6 days default. */
689 Globals
.min_wins_ttl
= 60 * 60 * 6; /* 6 hours default. */
690 Globals
.machine_password_timeout
= 60 * 60 * 24 * 7; /* 7 days default. */
691 Globals
.lm_announce
= Auto
; /* = Auto: send only if LM clients found */
692 Globals
.lm_interval
= 60;
693 Globals
.time_server
= false;
694 Globals
.bind_interfaces_only
= false;
695 Globals
.unix_password_sync
= false;
696 Globals
.pam_password_change
= false;
697 Globals
.passwd_chat_debug
= false;
698 Globals
.passwd_chat_timeout
= 2; /* 2 second default. */
699 Globals
.nt_pipe_support
= true; /* Do NT pipes by default. */
700 Globals
.nt_status_support
= true; /* Use NT status by default. */
701 Globals
.smbd_profiling_level
= 0;
702 Globals
.stat_cache
= true; /* use stat cache by default */
703 Globals
.max_stat_cache_size
= 512; /* 512k by default */
704 Globals
.restrict_anonymous
= 0;
705 Globals
.client_lanman_auth
= false; /* Do NOT use the LanMan hash if it is available */
706 Globals
.client_plaintext_auth
= false; /* Do NOT use a plaintext password even if is requested by the server */
707 Globals
._lanman_auth
= false; /* Do NOT use the LanMan hash, even if it is supplied */
708 Globals
.ntlm_auth
= NTLM_AUTH_NTLMV2_ONLY
; /* Do NOT use NTLMv1 if it is supplied by the client (otherwise NTLMv2) */
709 Globals
.raw_ntlmv2_auth
= false; /* Reject NTLMv2 without NTLMSSP */
710 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 */
711 /* Note, that we will also use NTLM2 session security (which is different), if it is available */
713 Globals
.allow_dcerpc_auth_level_connect
= false; /* we don't allow this by default */
715 Globals
.map_to_guest
= 0; /* By Default, "Never" */
716 Globals
.oplock_break_wait_time
= 0; /* By Default, 0 msecs. */
717 Globals
.enhanced_browsing
= true;
718 Globals
.lock_spin_time
= WINDOWS_MINIMUM_LOCK_TIMEOUT_MS
; /* msec. */
719 Globals
.use_mmap
= true;
720 Globals
.unicode
= true;
721 Globals
.unix_extensions
= true;
722 Globals
.reset_on_zero_vc
= false;
723 Globals
.log_writeable_files_on_exit
= false;
724 Globals
.create_krb5_conf
= true;
725 Globals
.include_system_krb5_conf
= true;
726 Globals
._winbind_max_domain_connections
= 1;
728 /* hostname lookups can be very expensive and are broken on
729 a large number of sites (tridge) */
730 Globals
.hostname_lookups
= false;
732 Globals
.change_notify
= true,
733 Globals
.kernel_change_notify
= true,
735 lpcfg_string_set(Globals
.ctx
, &Globals
.passdb_backend
, "tdbsam");
736 lpcfg_string_set(Globals
.ctx
, &Globals
.ldap_suffix
, "");
737 lpcfg_string_set(Globals
.ctx
, &Globals
._ldap_machine_suffix
, "");
738 lpcfg_string_set(Globals
.ctx
, &Globals
._ldap_user_suffix
, "");
739 lpcfg_string_set(Globals
.ctx
, &Globals
._ldap_group_suffix
, "");
740 lpcfg_string_set(Globals
.ctx
, &Globals
._ldap_idmap_suffix
, "");
742 lpcfg_string_set(Globals
.ctx
, &Globals
.ldap_admin_dn
, "");
743 Globals
.ldap_ssl
= LDAP_SSL_START_TLS
;
744 Globals
.ldap_deref
= -1;
745 Globals
.ldap_passwd_sync
= LDAP_PASSWD_SYNC_OFF
;
746 Globals
.ldap_delete_dn
= false;
747 Globals
.ldap_replication_sleep
= 1000; /* wait 1 sec for replication */
748 Globals
.ldap_follow_referral
= Auto
;
749 Globals
.ldap_timeout
= LDAP_DEFAULT_TIMEOUT
;
750 Globals
.ldap_connection_timeout
= LDAP_CONNECTION_DEFAULT_TIMEOUT
;
751 Globals
.ldap_page_size
= LDAP_PAGE_SIZE
;
753 Globals
.ldap_debug_level
= 0;
754 Globals
.ldap_debug_threshold
= 10;
756 Globals
.client_ldap_sasl_wrapping
= ADS_AUTH_SASL_SIGN
;
758 Globals
.ldap_server_require_strong_auth
=
759 LDAP_SERVER_REQUIRE_STRONG_AUTH_YES
;
761 /* This is what we tell the afs client. in reality we set the token
762 * to never expire, though, when this runs out the afs client will
763 * forget the token. Set to 0 to get NEVERDATE.*/
764 Globals
.afs_token_lifetime
= 604800;
765 Globals
.cups_connection_timeout
= CUPS_DEFAULT_CONNECTION_TIMEOUT
;
767 /* these parameters are set to defaults that are more appropriate
768 for the increasing samba install base:
770 as a member of the workgroup, that will possibly become a
771 _local_ master browser (lm = true). this is opposed to a forced
772 local master browser startup (pm = true).
774 doesn't provide WINS server service by default (wsupp = false),
775 and doesn't provide domain master browser services by default, either.
779 Globals
.show_add_printer_wizard
= true;
780 Globals
.os_level
= 20;
781 Globals
.local_master
= true;
782 Globals
._domain_master
= Auto
; /* depending on _domain_logons */
783 Globals
._domain_logons
= false;
784 Globals
.browse_list
= true;
785 Globals
.we_are_a_wins_server
= false;
786 Globals
.wins_proxy
= false;
788 TALLOC_FREE(Globals
.init_logon_delayed_hosts
);
789 Globals
.init_logon_delay
= 100; /* 100 ms default delay */
791 Globals
.wins_dns_proxy
= true;
793 Globals
.allow_trusted_domains
= true;
794 lpcfg_string_set(Globals
.ctx
, &Globals
.idmap_backend
, "tdb");
796 lpcfg_string_set(Globals
.ctx
, &Globals
.template_shell
, "/bin/false");
797 lpcfg_string_set(Globals
.ctx
, &Globals
.template_homedir
,
799 lpcfg_string_set(Globals
.ctx
, &Globals
.winbind_separator
, "\\");
800 lpcfg_string_set(Globals
.ctx
, &Globals
.winbindd_socket_directory
,
801 dyn_WINBINDD_SOCKET_DIR
);
803 lpcfg_string_set(Globals
.ctx
, &Globals
.cups_server
, "");
804 lpcfg_string_set(Globals
.ctx
, &Globals
.iprint_server
, "");
806 lpcfg_string_set(Globals
.ctx
, &Globals
._ctdbd_socket
, "");
808 Globals
.cluster_addresses
= NULL
;
809 Globals
.clustering
= false;
810 Globals
.ctdb_timeout
= 0;
811 Globals
.ctdb_locktime_warn_threshold
= 0;
813 Globals
.winbind_cache_time
= 300; /* 5 minutes */
814 Globals
.winbind_reconnect_delay
= 30; /* 30 seconds */
815 Globals
.winbind_request_timeout
= 60; /* 60 seconds */
816 Globals
.winbind_max_clients
= 200;
817 Globals
.winbind_enum_users
= false;
818 Globals
.winbind_enum_groups
= false;
819 Globals
.winbind_use_default_domain
= false;
820 Globals
.winbind_nested_groups
= true;
821 Globals
.winbind_expand_groups
= 0;
822 Globals
.winbind_nss_info
= str_list_make_v3_const(NULL
, "template", NULL
);
823 Globals
.winbind_refresh_tickets
= false;
824 Globals
.winbind_offline_logon
= false;
825 Globals
.winbind_scan_trusted_domains
= false;
827 Globals
.idmap_cache_time
= 86400 * 7; /* a week by default */
828 Globals
.idmap_negative_cache_time
= 120; /* 2 minutes by default */
830 Globals
.passdb_expand_explicit
= false;
832 Globals
.name_cache_timeout
= 660; /* In seconds */
834 Globals
.client_use_spnego
= true;
836 Globals
.client_signing
= SMB_SIGNING_DEFAULT
;
837 Globals
._client_ipc_signing
= SMB_SIGNING_DEFAULT
;
838 Globals
.server_signing
= SMB_SIGNING_DEFAULT
;
840 Globals
.defer_sharing_violations
= true;
841 Globals
.smb_ports
= str_list_make_v3_const(NULL
, SMB_PORTS
, NULL
);
843 Globals
.enable_privileges
= true;
844 Globals
.host_msdfs
= true;
845 Globals
.enable_asu_support
= false;
847 /* User defined shares. */
848 s
= talloc_asprintf(talloc_tos(), "%s/usershares", get_dyn_STATEDIR());
850 smb_panic("init_globals: ENOMEM");
852 lpcfg_string_set(Globals
.ctx
, &Globals
.usershare_path
, s
);
854 lpcfg_string_set(Globals
.ctx
, &Globals
.usershare_template_share
, "");
855 Globals
.usershare_max_shares
= 0;
856 /* By default disallow sharing of directories not owned by the sharer. */
857 Globals
.usershare_owner_only
= true;
858 /* By default disallow guest access to usershares. */
859 Globals
.usershare_allow_guests
= false;
861 Globals
.keepalive
= DEFAULT_KEEPALIVE
;
863 /* By default no shares out of the registry */
864 Globals
.registry_shares
= false;
866 Globals
.min_receivefile_size
= 0;
868 Globals
.multicast_dns_register
= true;
870 Globals
.smb2_max_read
= DEFAULT_SMB2_MAX_READ
;
871 Globals
.smb2_max_write
= DEFAULT_SMB2_MAX_WRITE
;
872 Globals
.smb2_max_trans
= DEFAULT_SMB2_MAX_TRANSACT
;
873 Globals
.smb2_max_credits
= DEFAULT_SMB2_MAX_CREDITS
;
874 Globals
.smb2_leases
= true;
875 Globals
.server_multi_channel_support
= true;
877 lpcfg_string_set(Globals
.ctx
, &Globals
.ncalrpc_dir
,
878 get_dyn_NCALRPCDIR());
880 Globals
.server_services
= str_list_make_v3_const(NULL
, "s3fs rpc nbt wrepl ldap cldap kdc drepl winbindd ntp_signd kcc dnsupdate dns", NULL
);
882 Globals
.dcerpc_endpoint_servers
= str_list_make_v3_const(NULL
, "epmapper wkssvc rpcecho samr netlogon lsarpc drsuapi dssetup unixinfo browser eventlog6 backupkey dnsserver", NULL
);
884 Globals
.tls_enabled
= true;
885 Globals
.tls_verify_peer
= TLS_VERIFY_PEER_AS_STRICT_AS_POSSIBLE
;
887 lpcfg_string_set(Globals
.ctx
, &Globals
._tls_keyfile
, "tls/key.pem");
888 lpcfg_string_set(Globals
.ctx
, &Globals
._tls_certfile
, "tls/cert.pem");
889 lpcfg_string_set(Globals
.ctx
, &Globals
._tls_cafile
, "tls/ca.pem");
890 lpcfg_string_set(Globals
.ctx
,
891 &Globals
.tls_priority
,
892 "NORMAL:-VERS-SSL3.0");
894 Globals
._preferred_master
= Auto
;
896 Globals
.allow_dns_updates
= DNS_UPDATE_SIGNED
;
897 Globals
.dns_zone_scavenging
= false;
899 lpcfg_string_set(Globals
.ctx
, &Globals
.ntp_signd_socket_directory
,
900 get_dyn_NTP_SIGND_SOCKET_DIR());
902 s
= talloc_asprintf(talloc_tos(), "%s/samba_kcc", get_dyn_SCRIPTSBINDIR());
904 smb_panic("init_globals: ENOMEM");
906 Globals
.samba_kcc_command
= str_list_make_v3_const(NULL
, s
, NULL
);
910 Globals
.mit_kdc_command
= str_list_make_v3_const(NULL
, MIT_KDC_PATH
, NULL
);
913 s
= talloc_asprintf(talloc_tos(), "%s/samba_dnsupdate", get_dyn_SCRIPTSBINDIR());
915 smb_panic("init_globals: ENOMEM");
917 Globals
.dns_update_command
= str_list_make_v3_const(NULL
, s
, NULL
);
920 s
= talloc_asprintf(talloc_tos(), "%s/samba-gpupdate", get_dyn_SCRIPTSBINDIR());
922 smb_panic("init_globals: ENOMEM");
924 Globals
.gpo_update_command
= str_list_make_v3_const(NULL
, s
, NULL
);
927 Globals
.apply_group_policies
= false;
929 s
= talloc_asprintf(talloc_tos(), "%s/samba_spnupdate", get_dyn_SCRIPTSBINDIR());
931 smb_panic("init_globals: ENOMEM");
933 Globals
.spn_update_command
= str_list_make_v3_const(NULL
, s
, NULL
);
936 Globals
.nsupdate_command
= str_list_make_v3_const(NULL
, "/usr/bin/nsupdate -g", NULL
);
938 Globals
.cldap_port
= 389;
940 Globals
.dgram_port
= NBT_DGRAM_SERVICE_PORT
;
942 Globals
.nbt_port
= NBT_NAME_SERVICE_PORT
;
944 Globals
.krb5_port
= 88;
946 Globals
.kpasswd_port
= 464;
948 Globals
.kdc_enable_fast
= true;
950 Globals
.aio_max_threads
= 100;
952 lpcfg_string_set(Globals
.ctx
,
953 &Globals
.rpc_server_dynamic_port_range
,
955 Globals
.rpc_low_port
= SERVER_TCP_LOW_PORT
;
956 Globals
.rpc_high_port
= SERVER_TCP_HIGH_PORT
;
957 Globals
.prefork_children
= 4;
958 Globals
.prefork_backoff_increment
= 10;
959 Globals
.prefork_maximum_backoff
= 120;
961 Globals
.ldap_max_anonymous_request_size
= 256000;
962 Globals
.ldap_max_authenticated_request_size
= 16777216;
963 Globals
.ldap_max_search_request_size
= 256000;
965 /* Async DNS query timeout (in seconds). */
966 Globals
.async_dns_timeout
= 10;
968 Globals
.client_smb_encrypt
= SMB_ENCRYPTION_DEFAULT
;
970 Globals
._client_use_kerberos
= CRED_USE_KERBEROS_DESIRED
;
972 Globals
.client_protection
= CRED_CLIENT_PROTECTION_DEFAULT
;
974 Globals
.winbind_use_krb5_enterprise_principals
= true;
976 Globals
.client_smb3_signing_algorithms
=
977 str_list_make_v3_const(NULL
, DEFAULT_SMB3_SIGNING_ALGORITHMS
, NULL
);
978 Globals
.server_smb3_signing_algorithms
=
979 str_list_make_v3_const(NULL
, DEFAULT_SMB3_SIGNING_ALGORITHMS
, NULL
);
981 Globals
.client_smb3_encryption_algorithms
=
982 str_list_make_v3_const(NULL
, DEFAULT_SMB3_ENCRYPTION_ALGORITHMS
, NULL
);
983 Globals
.server_smb3_encryption_algorithms
=
984 str_list_make_v3_const(NULL
, DEFAULT_SMB3_ENCRYPTION_ALGORITHMS
, NULL
);
986 Globals
.min_domain_uid
= 1000;
989 * By default allow smbd and winbindd to start samba-dcerpcd as
990 * a named-pipe helper.
992 Globals
.rpc_start_on_demand_helpers
= true;
994 /* Now put back the settings that were set with lp_set_cmdline() */
995 apply_lp_set_cmdline();
998 /* Convenience routine to setup an lp_context with additional s3 variables */
999 static struct loadparm_context
*setup_lp_context(TALLOC_CTX
*mem_ctx
)
1001 struct loadparm_context
*lp_ctx
;
1003 lp_ctx
= loadparm_init_s3(mem_ctx
,
1004 loadparm_s3_helpers());
1005 if (lp_ctx
== NULL
) {
1006 DEBUG(0, ("loadparm_init_s3 failed\n"));
1010 lp_ctx
->sDefault
= talloc_zero(lp_ctx
, struct loadparm_service
);
1011 if (lp_ctx
->sDefault
== NULL
) {
1012 DBG_ERR("talloc_zero failed\n");
1013 TALLOC_FREE(lp_ctx
);
1017 *lp_ctx
->sDefault
= _sDefault
;
1018 lp_ctx
->services
= NULL
; /* We do not want to access this directly */
1019 lp_ctx
->bInGlobalSection
= bInGlobalSection
;
1020 lp_ctx
->flags
= flags_list
;
1025 /*******************************************************************
1026 Convenience routine to grab string parameters into talloced memory
1027 and run standard_sub_basic on them. The buffers can be written to by
1028 callers without affecting the source string.
1029 ********************************************************************/
1031 static char *loadparm_s3_global_substitution_fn(
1032 TALLOC_CTX
*mem_ctx
,
1033 const struct loadparm_substitution
*lp_sub
,
1039 /* The follow debug is useful for tracking down memory problems
1040 especially if you have an inner loop that is calling a lp_*()
1041 function that returns a string. Perhaps this debug should be
1042 present all the time? */
1045 DEBUG(10, ("lp_string(%s)\n", s
));
1051 ret
= talloc_sub_basic(mem_ctx
,
1052 get_current_username(),
1053 current_user_info
.domain
,
1055 if (trim_char(ret
, '\"', '\"')) {
1056 if (strchr(ret
,'\"') != NULL
) {
1058 ret
= talloc_sub_basic(mem_ctx
,
1059 get_current_username(),
1060 current_user_info
.domain
,
1067 static const struct loadparm_substitution s3_global_substitution
= {
1068 .substituted_string_fn
= loadparm_s3_global_substitution_fn
,
1071 const struct loadparm_substitution
*loadparm_s3_global_substitution(void)
1073 return &s3_global_substitution
;
1077 In this section all the functions that are used to access the
1078 parameters from the rest of the program are defined
1081 #define FN_GLOBAL_SUBSTITUTED_STRING(fn_name,ptr) \
1082 char *lp_ ## fn_name(TALLOC_CTX *ctx, const struct loadparm_substitution *lp_sub) \
1083 {return lpcfg_substituted_string(ctx, lp_sub, *(char **)(&Globals.ptr) ? *(char **)(&Globals.ptr) : "");}
1084 #define FN_GLOBAL_CONST_STRING(fn_name,ptr) \
1085 const char *lp_ ## fn_name(void) {return(*(const char * const *)(&Globals.ptr) ? *(const char * const *)(&Globals.ptr) : "");}
1086 #define FN_GLOBAL_LIST(fn_name,ptr) \
1087 const char **lp_ ## fn_name(void) {return(*(const char ***)(&Globals.ptr));}
1088 #define FN_GLOBAL_BOOL(fn_name,ptr) \
1089 bool lp_ ## fn_name(void) {return(*(bool *)(&Globals.ptr));}
1090 #define FN_GLOBAL_CHAR(fn_name,ptr) \
1091 char lp_ ## fn_name(void) {return(*(char *)(&Globals.ptr));}
1092 #define FN_GLOBAL_INTEGER(fn_name,ptr) \
1093 int lp_ ## fn_name(void) {return(*(int *)(&Globals.ptr));}
1095 #define FN_LOCAL_SUBSTITUTED_STRING(fn_name,val) \
1096 char *lp_ ## fn_name(TALLOC_CTX *ctx, const struct loadparm_substitution *lp_sub, int i) \
1097 {return lpcfg_substituted_string((ctx), lp_sub, (LP_SNUM_OK(i) && ServicePtrs[(i)]->val) ? ServicePtrs[(i)]->val : sDefault.val);}
1098 #define FN_LOCAL_CONST_STRING(fn_name,val) \
1099 const char *lp_ ## fn_name(int i) {return (const char *)((LP_SNUM_OK(i) && ServicePtrs[(i)]->val) ? ServicePtrs[(i)]->val : sDefault.val);}
1100 #define FN_LOCAL_LIST(fn_name,val) \
1101 const char **lp_ ## fn_name(int i) {return(const char **)(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
1102 #define FN_LOCAL_BOOL(fn_name,val) \
1103 bool lp_ ## fn_name(int i) {return(bool)(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
1104 #define FN_LOCAL_INTEGER(fn_name,val) \
1105 int lp_ ## fn_name(int i) {return(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
1107 #define FN_LOCAL_PARM_BOOL(fn_name,val) \
1108 bool lp_ ## fn_name(const struct share_params *p) {return(bool)(LP_SNUM_OK(p->service)? ServicePtrs[(p->service)]->val : sDefault.val);}
1109 #define FN_LOCAL_PARM_INTEGER(fn_name,val) \
1110 int lp_ ## fn_name(const struct share_params *p) {return(LP_SNUM_OK(p->service)? ServicePtrs[(p->service)]->val : sDefault.val);}
1111 #define FN_LOCAL_PARM_CHAR(fn_name,val) \
1112 char lp_ ## fn_name(const struct share_params *p) {return(LP_SNUM_OK(p->service)? ServicePtrs[(p->service)]->val : sDefault.val);}
1114 int lp_winbind_max_domain_connections(void)
1116 if (lp_winbind_offline_logon() &&
1117 lp__winbind_max_domain_connections() > 1) {
1118 DEBUG(1, ("offline logons active, restricting max domain "
1119 "connections to 1\n"));
1122 return MAX(1, lp__winbind_max_domain_connections());
1125 /* These functions remain in source3/param for now */
1127 #include "lib/param/param_functions.c"
1129 FN_LOCAL_SUBSTITUTED_STRING(servicename
, szService
)
1130 FN_LOCAL_CONST_STRING(const_servicename
, szService
)
1132 /* These functions cannot be auto-generated */
1133 FN_LOCAL_BOOL(autoloaded
, autoloaded
)
1134 FN_GLOBAL_CONST_STRING(dnsdomain
, dnsdomain
)
1136 /* local prototypes */
1138 static int map_parameter_canonical(const char *pszParmName
, bool *inverse
);
1139 static const char *get_boolean(bool bool_value
);
1140 static bool do_parameter(const char *pszParmName
, const char *pszParmValue
,
1142 static bool hash_a_service(const char *name
, int number
);
1143 static void free_service_byindex(int iService
);
1144 static void show_parameter(int parmIndex
);
1145 static bool is_synonym_of(int parm1
, int parm2
, bool *inverse
);
1146 static bool lp_parameter_value_is_valid(const char *parm_name
, const char *val
);
1149 * This is a helper function for parametrical options support. It returns a
1150 * pointer to parametrical option value if it exists or NULL otherwise. Actual
1151 * parametrical functions are quite simple
1153 static struct parmlist_entry
*get_parametrics(int snum
, const char *type
,
1156 if (snum
>= iNumServices
) return NULL
;
1159 return get_parametric_helper(NULL
, type
, option
, Globals
.param_opt
);
1161 return get_parametric_helper(ServicePtrs
[snum
],
1162 type
, option
, Globals
.param_opt
);
1166 static void discard_whitespace(char *str
)
1168 size_t len
= strlen(str
);
1172 if (isspace(str
[i
])) {
1173 memmove(&str
[i
], &str
[i
+1], len
-i
);
1182 * @brief Go through all global parametric parameters
1184 * @param regex_str A regular expression to scan param for
1185 * @param max_matches Max number of submatches the regexp expects
1186 * @param cb Function to call on match. Should return true
1187 * when it wants wi_scan_global_parametrics to stop
1189 * @param private_data Anonymous pointer passed to cb
1191 * @return 0: success, regcomp/regexec return value on error.
1192 * See "man regexec" for possible errors
1195 int lp_wi_scan_global_parametrics(
1196 const char *regex_str
, size_t max_matches
,
1197 bool (*cb
)(const char *string
, regmatch_t matches
[],
1198 void *private_data
),
1201 struct parmlist_entry
*data
;
1205 ret
= regcomp(®ex
, regex_str
, REG_ICASE
);
1210 for (data
= Globals
.param_opt
; data
!= NULL
; data
= data
->next
) {
1211 size_t keylen
= strlen(data
->key
);
1213 regmatch_t matches
[max_matches
];
1216 memcpy(key
, data
->key
, sizeof(key
));
1217 discard_whitespace(key
);
1219 ret
= regexec(®ex
, key
, max_matches
, matches
, 0);
1220 if (ret
== REG_NOMATCH
) {
1227 stop
= cb(key
, matches
, private_data
);
1240 #define MISSING_PARAMETER(name) \
1241 DEBUG(0, ("%s(): value is NULL or empty!\n", #name))
1243 /*******************************************************************
1244 convenience routine to return enum parameters.
1245 ********************************************************************/
1246 static int lp_enum(const char *s
,const struct enum_list
*_enum
)
1250 if (!s
|| !*s
|| !_enum
) {
1251 MISSING_PARAMETER(lp_enum
);
1255 for (i
=0; _enum
[i
].name
; i
++) {
1256 if (strequal(_enum
[i
].name
,s
))
1257 return _enum
[i
].value
;
1260 DEBUG(0,("lp_enum(%s,enum): value is not in enum_list!\n",s
));
1264 #undef MISSING_PARAMETER
1266 /* Return parametric option from a given service. Type is a part of option before ':' */
1267 /* Parametric option has following syntax: 'Type: option = value' */
1268 char *lp_parm_substituted_string(TALLOC_CTX
*mem_ctx
,
1269 const struct loadparm_substitution
*lp_sub
,
1275 struct parmlist_entry
*data
= get_parametrics(snum
, type
, option
);
1277 SMB_ASSERT(lp_sub
!= NULL
);
1279 if (data
== NULL
||data
->value
==NULL
) {
1281 return lpcfg_substituted_string(mem_ctx
, lp_sub
, def
);
1287 return lpcfg_substituted_string(mem_ctx
, lp_sub
, data
->value
);
1290 /* Return parametric option from a given service. Type is a part of option before ':' */
1291 /* Parametric option has following syntax: 'Type: option = value' */
1292 const char *lp_parm_const_string(int snum
, const char *type
, const char *option
, const char *def
)
1294 struct parmlist_entry
*data
= get_parametrics(snum
, type
, option
);
1296 if (data
== NULL
||data
->value
==NULL
)
1303 /* Return parametric option from a given service. Type is a part of option before ':' */
1304 /* Parametric option has following syntax: 'Type: option = value' */
1306 const char **lp_parm_string_list(int snum
, const char *type
, const char *option
, const char **def
)
1308 struct parmlist_entry
*data
= get_parametrics(snum
, type
, option
);
1310 if (data
== NULL
||data
->value
==NULL
)
1311 return (const char **)def
;
1313 if (data
->list
==NULL
) {
1314 data
->list
= str_list_make_v3(NULL
, data
->value
, NULL
);
1317 return discard_const_p(const char *, data
->list
);
1320 /* Return parametric option from a given service. Type is a part of option before ':' */
1321 /* Parametric option has following syntax: 'Type: option = value' */
1323 int lp_parm_int(int snum
, const char *type
, const char *option
, int def
)
1325 struct parmlist_entry
*data
= get_parametrics(snum
, type
, option
);
1327 if (data
&& data
->value
&& *data
->value
)
1328 return lp_int(data
->value
);
1333 /* Return parametric option from a given service. Type is a part of option before ':' */
1334 /* Parametric option has following syntax: 'Type: option = value' */
1336 unsigned long lp_parm_ulong(int snum
, const char *type
, const char *option
, unsigned long def
)
1338 struct parmlist_entry
*data
= get_parametrics(snum
, type
, option
);
1340 if (data
&& data
->value
&& *data
->value
)
1341 return lp_ulong(data
->value
);
1346 /* Return parametric option from a given service. Type is a part of option before ':' */
1347 /* Parametric option has following syntax: 'Type: option = value' */
1349 unsigned long long lp_parm_ulonglong(int snum
, const char *type
,
1350 const char *option
, unsigned long long def
)
1352 struct parmlist_entry
*data
= get_parametrics(snum
, type
, option
);
1354 if (data
&& data
->value
&& *data
->value
) {
1355 return lp_ulonglong(data
->value
);
1361 /* Return parametric option from a given service. Type is a part of option
1363 /* Parametric option has following syntax: 'Type: option = value' */
1365 bool lp_parm_bool(int snum
, const char *type
, const char *option
, bool def
)
1367 struct parmlist_entry
*data
= get_parametrics(snum
, type
, option
);
1369 if (data
&& data
->value
&& *data
->value
)
1370 return lp_bool(data
->value
);
1375 /* Return parametric option from a given service. Type is a part of option before ':' */
1376 /* Parametric option has following syntax: 'Type: option = value' */
1378 int lp_parm_enum(int snum
, const char *type
, const char *option
,
1379 const struct enum_list
*_enum
, int def
)
1381 struct parmlist_entry
*data
= get_parametrics(snum
, type
, option
);
1383 if (data
&& data
->value
&& *data
->value
&& _enum
)
1384 return lp_enum(data
->value
, _enum
);
1390 * free a param_opts structure.
1391 * param_opts handling should be moved to talloc;
1392 * then this whole functions reduces to a TALLOC_FREE().
1395 static void free_param_opts(struct parmlist_entry
**popts
)
1397 struct parmlist_entry
*opt
, *next_opt
;
1399 if (*popts
!= NULL
) {
1400 DEBUG(5, ("Freeing parametrics:\n"));
1403 while (opt
!= NULL
) {
1404 lpcfg_string_free(&opt
->key
);
1405 lpcfg_string_free(&opt
->value
);
1406 TALLOC_FREE(opt
->list
);
1407 next_opt
= opt
->next
;
1414 /***************************************************************************
1415 Free the dynamically allocated parts of a service struct.
1416 ***************************************************************************/
1418 static void free_service(struct loadparm_service
*pservice
)
1423 if (pservice
->szService
)
1424 DEBUG(5, ("free_service: Freeing service %s\n",
1425 pservice
->szService
));
1427 free_parameters(pservice
);
1429 lpcfg_string_free(&pservice
->szService
);
1430 TALLOC_FREE(pservice
->copymap
);
1432 free_param_opts(&pservice
->param_opt
);
1434 ZERO_STRUCTP(pservice
);
1438 /***************************************************************************
1439 remove a service indexed in the ServicePtrs array from the ServiceHash
1440 and free the dynamically allocated parts
1441 ***************************************************************************/
1443 static void free_service_byindex(int idx
)
1445 if ( !LP_SNUM_OK(idx
) )
1448 ServicePtrs
[idx
]->valid
= false;
1450 /* we have to cleanup the hash record */
1452 if (ServicePtrs
[idx
]->szService
) {
1453 char *canon_name
= canonicalize_servicename(
1455 ServicePtrs
[idx
]->szService
);
1457 dbwrap_delete_bystring(ServiceHash
, canon_name
);
1458 TALLOC_FREE(canon_name
);
1461 free_service(ServicePtrs
[idx
]);
1462 TALLOC_FREE(ServicePtrs
[idx
]);
1465 /***************************************************************************
1466 Add a new service to the services array initialising it with the given
1468 ***************************************************************************/
1470 static int add_a_service(const struct loadparm_service
*pservice
, const char *name
)
1473 struct loadparm_service
**tsp
= NULL
;
1475 /* it might already exist */
1477 i
= getservicebyname(name
, NULL
);
1483 /* Re use empty slots if any before allocating new one.*/
1484 for (i
=0; i
< iNumServices
; i
++) {
1485 if (ServicePtrs
[i
] == NULL
) {
1489 if (i
== iNumServices
) {
1490 /* if not, then create one */
1491 tsp
= talloc_realloc(NULL
, ServicePtrs
,
1492 struct loadparm_service
*,
1495 DEBUG(0, ("add_a_service: failed to enlarge "
1502 ServicePtrs
[i
] = talloc_zero(ServicePtrs
, struct loadparm_service
);
1503 if (!ServicePtrs
[i
]) {
1504 DEBUG(0,("add_a_service: out of memory!\n"));
1508 ServicePtrs
[i
]->valid
= true;
1510 copy_service(ServicePtrs
[i
], pservice
, NULL
);
1512 lpcfg_string_set(ServicePtrs
[i
], &ServicePtrs
[i
]->szService
,
1515 DEBUG(8,("add_a_service: Creating snum = %d for %s\n",
1516 i
, ServicePtrs
[i
]->szService
));
1518 if (!hash_a_service(ServicePtrs
[i
]->szService
, i
)) {
1525 /***************************************************************************
1526 Convert a string to uppercase and remove whitespaces.
1527 ***************************************************************************/
1529 char *canonicalize_servicename(TALLOC_CTX
*ctx
, const char *src
)
1534 DEBUG(0,("canonicalize_servicename: NULL source name!\n"));
1538 result
= talloc_strdup(ctx
, src
);
1539 SMB_ASSERT(result
!= NULL
);
1541 if (!strlower_m(result
)) {
1542 TALLOC_FREE(result
);
1548 /***************************************************************************
1549 Add a name/index pair for the services array to the hash table.
1550 ***************************************************************************/
1552 static bool hash_a_service(const char *name
, int idx
)
1556 if ( !ServiceHash
) {
1557 DEBUG(10,("hash_a_service: creating servicehash\n"));
1558 ServiceHash
= db_open_rbt(NULL
);
1559 if ( !ServiceHash
) {
1560 DEBUG(0,("hash_a_service: open tdb servicehash failed!\n"));
1565 DEBUG(10,("hash_a_service: hashing index %d for service name %s\n",
1568 canon_name
= canonicalize_servicename(talloc_tos(), name
);
1570 dbwrap_store_bystring(ServiceHash
, canon_name
,
1571 make_tdb_data((uint8_t *)&idx
, sizeof(idx
)),
1574 TALLOC_FREE(canon_name
);
1579 /***************************************************************************
1580 Add a new home service, with the specified home directory, defaults coming
1582 ***************************************************************************/
1584 bool lp_add_home(const char *pszHomename
, int iDefaultService
,
1585 const char *user
, const char *pszHomedir
)
1587 const struct loadparm_substitution
*lp_sub
=
1588 loadparm_s3_global_substitution();
1592 if (pszHomename
== NULL
|| user
== NULL
|| pszHomedir
== NULL
||
1593 pszHomedir
[0] == '\0') {
1597 i
= add_a_service(ServicePtrs
[iDefaultService
], pszHomename
);
1602 global_path
= lp_path(talloc_tos(), lp_sub
, GLOBAL_SECTION_SNUM
);
1603 if (!(*(ServicePtrs
[iDefaultService
]->path
))
1604 || strequal(ServicePtrs
[iDefaultService
]->path
, global_path
)) {
1605 lpcfg_string_set(ServicePtrs
[i
], &ServicePtrs
[i
]->path
,
1608 TALLOC_FREE(global_path
);
1610 if (!(*(ServicePtrs
[i
]->comment
))) {
1611 char *comment
= talloc_asprintf(talloc_tos(), "Home directory of %s", user
);
1612 if (comment
== NULL
) {
1615 lpcfg_string_set(ServicePtrs
[i
], &ServicePtrs
[i
]->comment
,
1617 TALLOC_FREE(comment
);
1620 /* set the browseable flag from the global default */
1622 ServicePtrs
[i
]->browseable
= sDefault
.browseable
;
1623 ServicePtrs
[i
]->access_based_share_enum
= sDefault
.access_based_share_enum
;
1625 ServicePtrs
[i
]->autoloaded
= true;
1627 DEBUG(3, ("adding home's share [%s] for user '%s' at '%s'\n", pszHomename
,
1628 user
, ServicePtrs
[i
]->path
));
1633 /***************************************************************************
1634 Add a new service, based on an old one.
1635 ***************************************************************************/
1637 int lp_add_service(const char *pszService
, int iDefaultService
)
1639 if (iDefaultService
< 0) {
1640 return add_a_service(&sDefault
, pszService
);
1643 return (add_a_service(ServicePtrs
[iDefaultService
], pszService
));
1646 /***************************************************************************
1647 Add the IPC service.
1648 ***************************************************************************/
1650 static bool lp_add_ipc(const char *ipc_name
, bool guest_ok
)
1652 char *comment
= NULL
;
1653 int i
= add_a_service(&sDefault
, ipc_name
);
1658 comment
= talloc_asprintf(talloc_tos(), "IPC Service (%s)",
1659 Globals
.server_string
);
1660 if (comment
== NULL
) {
1664 lpcfg_string_set(ServicePtrs
[i
], &ServicePtrs
[i
]->path
, tmpdir());
1665 lpcfg_string_set(ServicePtrs
[i
], &ServicePtrs
[i
]->comment
, comment
);
1666 lpcfg_string_set(ServicePtrs
[i
], &ServicePtrs
[i
]->fstype
, "IPC");
1667 ServicePtrs
[i
]->max_connections
= 0;
1668 ServicePtrs
[i
]->available
= true;
1669 ServicePtrs
[i
]->read_only
= true;
1670 ServicePtrs
[i
]->guest_only
= false;
1671 ServicePtrs
[i
]->administrative_share
= true;
1672 ServicePtrs
[i
]->guest_ok
= guest_ok
;
1673 ServicePtrs
[i
]->printable
= false;
1674 ServicePtrs
[i
]->browseable
= sDefault
.browseable
;
1675 ServicePtrs
[i
]->autoloaded
= false;
1677 DEBUG(3, ("adding IPC service\n"));
1679 TALLOC_FREE(comment
);
1683 /***************************************************************************
1684 Add a new printer service, with defaults coming from service iFrom.
1685 ***************************************************************************/
1687 bool lp_add_printer(const char *pszPrintername
, int iDefaultService
)
1689 const char *comment
= "From Printcap";
1690 int i
= add_a_service(ServicePtrs
[iDefaultService
], pszPrintername
);
1695 /* note that we do NOT default the availability flag to true - */
1696 /* we take it from the default service passed. This allows all */
1697 /* dynamic printers to be disabled by disabling the [printers] */
1698 /* entry (if/when the 'available' keyword is implemented!). */
1700 /* the printer name is set to the service name. */
1701 lpcfg_string_set(ServicePtrs
[i
], &ServicePtrs
[i
]->_printername
,
1703 lpcfg_string_set(ServicePtrs
[i
], &ServicePtrs
[i
]->comment
, comment
);
1705 /* set the browseable flag from the gloabl default */
1706 ServicePtrs
[i
]->browseable
= sDefault
.browseable
;
1708 /* Printers cannot be read_only. */
1709 ServicePtrs
[i
]->read_only
= false;
1710 /* No oplocks on printer services. */
1711 ServicePtrs
[i
]->oplocks
= false;
1712 /* Printer services must be printable. */
1713 ServicePtrs
[i
]->printable
= true;
1715 DEBUG(3, ("adding printer service %s\n", pszPrintername
));
1721 /***************************************************************************
1722 Check whether the given parameter name is valid.
1723 Parametric options (names containing a colon) are considered valid.
1724 ***************************************************************************/
1726 bool lp_parameter_is_valid(const char *pszParmName
)
1728 return ((lpcfg_map_parameter(pszParmName
) != -1) ||
1729 (strchr(pszParmName
, ':') != NULL
));
1732 /***************************************************************************
1733 Check whether the given name is the name of a global parameter.
1734 Returns true for strings belonging to parameters of class
1735 P_GLOBAL, false for all other strings, also for parametric options
1736 and strings not belonging to any option.
1737 ***************************************************************************/
1739 bool lp_parameter_is_global(const char *pszParmName
)
1741 int num
= lpcfg_map_parameter(pszParmName
);
1744 return (parm_table
[num
].p_class
== P_GLOBAL
);
1750 /**************************************************************************
1751 Determine the canonical name for a parameter.
1752 Indicate when it is an inverse (boolean) synonym instead of a
1754 **************************************************************************/
1756 bool lp_canonicalize_parameter(const char *parm_name
, const char **canon_parm
,
1761 if (!lp_parameter_is_valid(parm_name
)) {
1766 num
= map_parameter_canonical(parm_name
, inverse
);
1768 /* parametric option */
1769 *canon_parm
= parm_name
;
1771 *canon_parm
= parm_table
[num
].label
;
1778 /**************************************************************************
1779 Determine the canonical name for a parameter.
1780 Turn the value given into the inverse boolean expression when
1781 the synonym is an invers boolean synonym.
1784 - parm_name is a valid parameter name and
1785 - val is a valid value for this parameter and
1786 - in case the parameter is an inverse boolean synonym, if the val
1787 string could successfully be converted to the reverse bool.
1788 Return false in all other cases.
1789 **************************************************************************/
1791 bool lp_canonicalize_parameter_with_value(const char *parm_name
,
1793 const char **canon_parm
,
1794 const char **canon_val
)
1800 if (!lp_parameter_is_valid(parm_name
)) {
1806 num
= map_parameter_canonical(parm_name
, &inverse
);
1808 /* parametric option */
1809 *canon_parm
= parm_name
;
1814 *canon_parm
= parm_table
[num
].label
;
1816 if (!lp_invert_boolean(val
, canon_val
)) {
1824 ret
= lp_parameter_value_is_valid(*canon_parm
, *canon_val
);
1829 /***************************************************************************
1830 Map a parameter's string representation to the index of the canonical
1831 form of the parameter (it might be a synonym).
1832 Returns -1 if the parameter string is not recognised.
1833 ***************************************************************************/
1835 static int map_parameter_canonical(const char *pszParmName
, bool *inverse
)
1837 int parm_num
, canon_num
;
1838 bool loc_inverse
= false;
1840 parm_num
= lpcfg_map_parameter(pszParmName
);
1841 if ((parm_num
< 0) || !(parm_table
[parm_num
].flags
& FLAG_SYNONYM
)) {
1842 /* invalid, parametric or no canidate for synonyms ... */
1846 for (canon_num
= 0; parm_table
[canon_num
].label
; canon_num
++) {
1847 if (is_synonym_of(parm_num
, canon_num
, &loc_inverse
)) {
1848 parm_num
= canon_num
;
1854 if (inverse
!= NULL
) {
1855 *inverse
= loc_inverse
;
1860 /***************************************************************************
1861 return true if parameter number parm1 is a synonym of parameter
1862 number parm2 (parm2 being the principal name).
1863 set inverse to true if parm1 is P_BOOLREV and parm2 is P_BOOL,
1865 ***************************************************************************/
1867 static bool is_synonym_of(int parm1
, int parm2
, bool *inverse
)
1869 if ((parm_table
[parm1
].offset
== parm_table
[parm2
].offset
) &&
1870 (parm_table
[parm1
].p_class
== parm_table
[parm2
].p_class
) &&
1871 (parm_table
[parm1
].flags
& FLAG_SYNONYM
) &&
1872 !(parm_table
[parm2
].flags
& FLAG_SYNONYM
))
1874 if (inverse
!= NULL
) {
1875 if ((parm_table
[parm1
].type
== P_BOOLREV
) &&
1876 (parm_table
[parm2
].type
== P_BOOL
))
1888 /***************************************************************************
1889 Show one parameter's name, type, [values,] and flags.
1890 (helper functions for show_parameter_list)
1891 ***************************************************************************/
1893 static void show_parameter(int parmIndex
)
1895 size_t enumIndex
, flagIndex
;
1900 const char *type
[] = { "P_BOOL", "P_BOOLREV", "P_CHAR", "P_INTEGER",
1901 "P_OCTAL", "P_LIST", "P_STRING", "P_USTRING",
1902 "P_ENUM", "P_BYTES", "P_CMDLIST" };
1903 unsigned flags
[] = { FLAG_DEPRECATED
, FLAG_SYNONYM
};
1904 const char *flag_names
[] = { "FLAG_DEPRECATED", "FLAG_SYNONYM", NULL
};
1906 printf("%s=%s", parm_table
[parmIndex
].label
,
1907 type
[parm_table
[parmIndex
].type
]);
1908 if (parm_table
[parmIndex
].type
== P_ENUM
) {
1911 parm_table
[parmIndex
].enum_list
[enumIndex
].name
;
1915 enumIndex
? "|" : "",
1916 parm_table
[parmIndex
].enum_list
[enumIndex
].name
);
1921 for (flagIndex
=0; flag_names
[flagIndex
]; flagIndex
++) {
1922 if (parm_table
[parmIndex
].flags
& flags
[flagIndex
]) {
1925 flag_names
[flagIndex
]);
1930 /* output synonyms */
1932 for (parmIndex2
=0; parm_table
[parmIndex2
].label
; parmIndex2
++) {
1933 if (is_synonym_of(parmIndex
, parmIndex2
, &inverse
)) {
1934 printf(" (%ssynonym of %s)", inverse
? "inverse " : "",
1935 parm_table
[parmIndex2
].label
);
1936 } else if (is_synonym_of(parmIndex2
, parmIndex
, &inverse
)) {
1938 printf(" (synonyms: ");
1943 printf("%s%s", parm_table
[parmIndex2
].label
,
1944 inverse
? "[i]" : "");
1955 * Check the value for a P_ENUM
1957 static bool check_enum_parameter(struct parm_struct
*parm
, const char *value
)
1961 for (i
= 0; parm
->enum_list
[i
].name
; i
++) {
1962 if (strwicmp(value
, parm
->enum_list
[i
].name
) == 0) {
1969 /**************************************************************************
1970 Check whether the given value is valid for the given parameter name.
1971 **************************************************************************/
1973 static bool lp_parameter_value_is_valid(const char *parm_name
, const char *val
)
1975 bool ret
= false, tmp_bool
;
1976 int num
= lpcfg_map_parameter(parm_name
), tmp_int
;
1977 uint64_t tmp_int64
= 0;
1978 struct parm_struct
*parm
;
1980 /* parametric options (parameter names containing a colon) cannot
1981 be checked and are therefore considered valid. */
1982 if (strchr(parm_name
, ':') != NULL
) {
1987 parm
= &parm_table
[num
];
1988 switch (parm
->type
) {
1991 ret
= set_boolean(val
, &tmp_bool
);
1995 ret
= (sscanf(val
, "%d", &tmp_int
) == 1);
1999 ret
= (sscanf(val
, "%o", &tmp_int
) == 1);
2003 ret
= check_enum_parameter(parm
, val
);
2007 if (conv_str_size_error(val
, &tmp_int64
) &&
2008 tmp_int64
<= INT_MAX
) {
2025 /***************************************************************************
2026 Show all parameter's name, type, [values,] and flags.
2027 ***************************************************************************/
2029 void show_parameter_list(void)
2031 int classIndex
, parmIndex
;
2032 const char *section_names
[] = { "local", "global", NULL
};
2034 for (classIndex
=0; section_names
[classIndex
]; classIndex
++) {
2035 printf("[%s]\n", section_names
[classIndex
]);
2036 for (parmIndex
= 0; parm_table
[parmIndex
].label
; parmIndex
++) {
2037 if (parm_table
[parmIndex
].p_class
== classIndex
) {
2038 show_parameter(parmIndex
);
2044 /***************************************************************************
2045 Get the standard string representation of a boolean value ("yes" or "no")
2046 ***************************************************************************/
2048 static const char *get_boolean(bool bool_value
)
2050 static const char *yes_str
= "yes";
2051 static const char *no_str
= "no";
2053 return (bool_value
? yes_str
: no_str
);
2056 /***************************************************************************
2057 Provide the string of the negated boolean value associated to the boolean
2058 given as a string. Returns false if the passed string does not correctly
2059 represent a boolean.
2060 ***************************************************************************/
2062 bool lp_invert_boolean(const char *str
, const char **inverse_str
)
2066 if (!set_boolean(str
, &val
)) {
2070 *inverse_str
= get_boolean(!val
);
2074 /***************************************************************************
2075 Provide the canonical string representation of a boolean value given
2076 as a string. Return true on success, false if the string given does
2077 not correctly represent a boolean.
2078 ***************************************************************************/
2080 bool lp_canonicalize_boolean(const char *str
, const char**canon_str
)
2084 if (!set_boolean(str
, &val
)) {
2088 *canon_str
= get_boolean(val
);
2092 /***************************************************************************
2093 Find a service by name. Otherwise works like get_service.
2094 ***************************************************************************/
2096 int getservicebyname(const char *pszServiceName
, struct loadparm_service
*pserviceDest
)
2103 if (ServiceHash
== NULL
) {
2107 canon_name
= canonicalize_servicename(talloc_tos(), pszServiceName
);
2109 status
= dbwrap_fetch_bystring(ServiceHash
, canon_name
, canon_name
,
2112 if (NT_STATUS_IS_OK(status
) &&
2113 (data
.dptr
!= NULL
) &&
2114 (data
.dsize
== sizeof(iService
)))
2116 memcpy(&iService
, data
.dptr
, sizeof(iService
));
2119 TALLOC_FREE(canon_name
);
2121 if ((iService
!= -1) && (LP_SNUM_OK(iService
))
2122 && (pserviceDest
!= NULL
)) {
2123 copy_service(pserviceDest
, ServicePtrs
[iService
], NULL
);
2129 /* Return a pointer to a service by name. Unlike getservicebyname, it does not copy the service */
2130 struct loadparm_service
*lp_service(const char *pszServiceName
)
2132 int iService
= getservicebyname(pszServiceName
, NULL
);
2133 if (iService
== -1 || !LP_SNUM_OK(iService
)) {
2136 return ServicePtrs
[iService
];
2139 struct loadparm_service
*lp_servicebynum(int snum
)
2141 if ((snum
== -1) || !LP_SNUM_OK(snum
)) {
2144 return ServicePtrs
[snum
];
2147 struct loadparm_service
*lp_default_loadparm_service(void)
2152 static struct smbconf_ctx
*lp_smbconf_ctx(void)
2155 static struct smbconf_ctx
*conf_ctx
= NULL
;
2157 if (conf_ctx
== NULL
) {
2158 err
= smbconf_init(NULL
, &conf_ctx
, "registry:");
2159 if (!SBC_ERROR_IS_OK(err
)) {
2160 DEBUG(1, ("error initializing registry configuration: "
2161 "%s\n", sbcErrorString(err
)));
2169 static bool process_smbconf_service(struct smbconf_service
*service
)
2174 if (service
== NULL
) {
2178 ret
= lp_do_section(service
->name
, NULL
);
2182 for (count
= 0; count
< service
->num_params
; count
++) {
2184 if (!bInGlobalSection
&& bGlobalOnly
) {
2187 const char *pszParmName
= service
->param_names
[count
];
2188 const char *pszParmValue
= service
->param_values
[count
];
2190 DEBUGADD(4, ("doing parameter %s = %s\n", pszParmName
, pszParmValue
));
2192 ret
= lp_do_parameter(bInGlobalSection
? -2 : iServiceIndex
,
2193 pszParmName
, pszParmValue
);
2200 if (iServiceIndex
>= 0) {
2201 return lpcfg_service_ok(ServicePtrs
[iServiceIndex
]);
2207 * load a service from registry and activate it
2209 bool process_registry_service(const char *service_name
)
2212 struct smbconf_service
*service
= NULL
;
2213 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
2214 struct smbconf_ctx
*conf_ctx
= lp_smbconf_ctx();
2217 if (conf_ctx
== NULL
) {
2221 DEBUG(5, ("process_registry_service: service name %s\n", service_name
));
2223 if (!smbconf_share_exists(conf_ctx
, service_name
)) {
2225 * Registry does not contain data for this service (yet),
2226 * but make sure lp_load doesn't return false.
2232 err
= smbconf_get_share(conf_ctx
, mem_ctx
, service_name
, &service
);
2233 if (!SBC_ERROR_IS_OK(err
)) {
2237 ret
= process_smbconf_service(service
);
2243 smbconf_changed(conf_ctx
, &conf_last_csn
, NULL
, NULL
);
2246 TALLOC_FREE(mem_ctx
);
2251 * process_registry_globals
2253 static bool process_registry_globals(void)
2257 add_to_file_list(NULL
, &file_lists
, INCLUDE_REGISTRY_NAME
, INCLUDE_REGISTRY_NAME
);
2259 if (!bInGlobalSection
&& bGlobalOnly
) {
2262 const char *pszParmName
= "registry shares";
2263 const char *pszParmValue
= "yes";
2265 DEBUGADD(4, ("doing parameter %s = %s\n", pszParmName
, pszParmValue
));
2267 ret
= lp_do_parameter(bInGlobalSection
? -2 : iServiceIndex
,
2268 pszParmName
, pszParmValue
);
2275 return process_registry_service(GLOBAL_NAME
);
2278 bool process_registry_shares(void)
2282 struct smbconf_service
**service
= NULL
;
2283 uint32_t num_shares
= 0;
2284 TALLOC_CTX
*mem_ctx
= talloc_stackframe();
2285 struct smbconf_ctx
*conf_ctx
= lp_smbconf_ctx();
2288 if (conf_ctx
== NULL
) {
2292 err
= smbconf_get_config(conf_ctx
, mem_ctx
, &num_shares
, &service
);
2293 if (!SBC_ERROR_IS_OK(err
)) {
2299 for (count
= 0; count
< num_shares
; count
++) {
2300 if (strequal(service
[count
]->name
, GLOBAL_NAME
)) {
2303 ret
= process_smbconf_service(service
[count
]);
2310 smbconf_changed(conf_ctx
, &conf_last_csn
, NULL
, NULL
);
2313 TALLOC_FREE(mem_ctx
);
2318 * reload those shares from registry that are already
2319 * activated in the services array.
2321 static bool reload_registry_shares(void)
2326 for (i
= 0; i
< iNumServices
; i
++) {
2331 if (ServicePtrs
[i
]->usershare
== USERSHARE_VALID
) {
2335 ret
= process_registry_service(ServicePtrs
[i
]->szService
);
2346 #define MAX_INCLUDE_DEPTH 100
2348 static uint8_t include_depth
;
2351 * Free the file lists
2353 static void free_file_list(void)
2355 struct file_lists
*f
;
2356 struct file_lists
*next
;
2369 * Utility function for outsiders to check if we're running on registry.
2371 bool lp_config_backend_is_registry(void)
2373 return (lp_config_backend() == CONFIG_BACKEND_REGISTRY
);
2377 * Utility function to check if the config backend is FILE.
2379 bool lp_config_backend_is_file(void)
2381 return (lp_config_backend() == CONFIG_BACKEND_FILE
);
2384 /*******************************************************************
2385 Check if a config file has changed date.
2386 ********************************************************************/
2388 bool lp_file_list_changed(void)
2390 struct file_lists
*f
= file_lists
;
2392 DEBUG(6, ("lp_file_list_changed()\n"));
2395 if (strequal(f
->name
, INCLUDE_REGISTRY_NAME
)) {
2396 struct smbconf_ctx
*conf_ctx
= lp_smbconf_ctx();
2398 if (conf_ctx
== NULL
) {
2401 if (smbconf_changed(conf_ctx
, &conf_last_csn
, NULL
,
2404 DEBUGADD(6, ("registry config changed\n"));
2411 n2
= talloc_sub_basic(talloc_tos(),
2412 get_current_username(),
2413 current_user_info
.domain
,
2418 DEBUGADD(6, ("file %s -> %s last mod_time: %s\n",
2419 f
->name
, n2
, ctime(&f
->modtime
)));
2421 mod_time
= file_modtime(n2
);
2424 ((f
->modtime
!= mod_time
) ||
2425 (f
->subfname
== NULL
) ||
2426 (strcmp(n2
, f
->subfname
) != 0)))
2429 ("file %s modified: %s\n", n2
,
2431 f
->modtime
= mod_time
;
2432 TALLOC_FREE(f
->subfname
);
2433 f
->subfname
= talloc_strdup(f
, n2
);
2434 if (f
->subfname
== NULL
) {
2435 smb_panic("talloc_strdup failed");
2449 * Initialize iconv conversion descriptors.
2451 * This is called the first time it is needed, and also called again
2452 * every time the configuration is reloaded, because the charset or
2453 * codepage might have changed.
2455 static void init_iconv(void)
2457 struct smb_iconv_handle
*ret
= NULL
;
2459 ret
= reinit_iconv_handle(NULL
,
2463 smb_panic("reinit_iconv_handle failed");
2467 /***************************************************************************
2468 Handle the include operation.
2469 ***************************************************************************/
2470 static bool bAllowIncludeRegistry
= true;
2472 bool lp_include(struct loadparm_context
*lp_ctx
, struct loadparm_service
*service
,
2473 const char *pszParmValue
, char **ptr
)
2477 if (include_depth
>= MAX_INCLUDE_DEPTH
) {
2478 DEBUG(0, ("Error: Maximum include depth (%u) exceeded!\n",
2483 if (strequal(pszParmValue
, INCLUDE_REGISTRY_NAME
)) {
2484 if (!bAllowIncludeRegistry
) {
2487 if (lp_ctx
->bInGlobalSection
) {
2490 ret
= process_registry_globals();
2494 DEBUG(1, ("\"include = registry\" only effective "
2495 "in %s section\n", GLOBAL_NAME
));
2500 fname
= talloc_sub_basic(talloc_tos(), get_current_username(),
2501 current_user_info
.domain
,
2504 add_to_file_list(NULL
, &file_lists
, pszParmValue
, fname
);
2506 if (service
== NULL
) {
2507 lpcfg_string_set(Globals
.ctx
, ptr
, fname
);
2509 lpcfg_string_set(service
, ptr
, fname
);
2512 if (file_exist(fname
)) {
2515 ret
= pm_process(fname
, lp_do_section
, do_parameter
, lp_ctx
);
2521 DEBUG(2, ("Can't find include file %s\n", fname
));
2526 bool lp_idmap_range(const char *domain_name
, uint32_t *low
, uint32_t *high
)
2528 char *config_option
= NULL
;
2529 const char *range
= NULL
;
2532 SMB_ASSERT(low
!= NULL
);
2533 SMB_ASSERT(high
!= NULL
);
2535 if ((domain_name
== NULL
) || (domain_name
[0] == '\0')) {
2539 config_option
= talloc_asprintf(talloc_tos(), "idmap config %s",
2541 if (config_option
== NULL
) {
2542 DEBUG(0, ("out of memory\n"));
2546 range
= lp_parm_const_string(-1, config_option
, "range", NULL
);
2547 if (range
== NULL
) {
2548 DEBUG(1, ("idmap range not specified for domain '%s'\n", domain_name
));
2552 if (sscanf(range
, "%u - %u", low
, high
) != 2) {
2553 DEBUG(1, ("error parsing idmap range '%s' for domain '%s'\n",
2554 range
, domain_name
));
2561 talloc_free(config_option
);
2566 bool lp_idmap_default_range(uint32_t *low
, uint32_t *high
)
2568 return lp_idmap_range("*", low
, high
);
2571 const char *lp_idmap_backend(const char *domain_name
)
2573 char *config_option
= NULL
;
2574 const char *backend
= NULL
;
2576 if ((domain_name
== NULL
) || (domain_name
[0] == '\0')) {
2580 config_option
= talloc_asprintf(talloc_tos(), "idmap config %s",
2582 if (config_option
== NULL
) {
2583 DEBUG(0, ("out of memory\n"));
2587 backend
= lp_parm_const_string(-1, config_option
, "backend", NULL
);
2588 if (backend
== NULL
) {
2589 DEBUG(1, ("idmap backend not specified for domain '%s'\n", domain_name
));
2594 talloc_free(config_option
);
2598 const char *lp_idmap_default_backend(void)
2600 return lp_idmap_backend("*");
2603 /***************************************************************************
2604 Handle ldap suffixes - default to ldapsuffix if sub-suffixes are not defined.
2605 ***************************************************************************/
2607 static const char *append_ldap_suffix(TALLOC_CTX
*ctx
, const char *str
)
2609 const char *suffix_string
;
2611 suffix_string
= talloc_asprintf(ctx
, "%s,%s", str
,
2612 Globals
.ldap_suffix
);
2613 if ( !suffix_string
) {
2614 DEBUG(0,("append_ldap_suffix: talloc_asprintf() failed!\n"));
2618 return suffix_string
;
2621 const char *lp_ldap_machine_suffix(TALLOC_CTX
*ctx
)
2623 if (Globals
._ldap_machine_suffix
[0])
2624 return append_ldap_suffix(ctx
, Globals
._ldap_machine_suffix
);
2626 return talloc_strdup(ctx
, Globals
.ldap_suffix
);
2629 const char *lp_ldap_user_suffix(TALLOC_CTX
*ctx
)
2631 if (Globals
._ldap_user_suffix
[0])
2632 return append_ldap_suffix(ctx
, Globals
._ldap_user_suffix
);
2634 return talloc_strdup(ctx
, Globals
.ldap_suffix
);
2637 const char *lp_ldap_group_suffix(TALLOC_CTX
*ctx
)
2639 if (Globals
._ldap_group_suffix
[0])
2640 return append_ldap_suffix(ctx
, Globals
._ldap_group_suffix
);
2642 return talloc_strdup(ctx
, Globals
.ldap_suffix
);
2645 const char *lp_ldap_idmap_suffix(TALLOC_CTX
*ctx
)
2647 if (Globals
._ldap_idmap_suffix
[0])
2648 return append_ldap_suffix(ctx
, Globals
._ldap_idmap_suffix
);
2650 return talloc_strdup(ctx
, Globals
.ldap_suffix
);
2654 return the parameter pointer for a parameter
2656 void *lp_parm_ptr(struct loadparm_service
*service
, struct parm_struct
*parm
)
2658 if (service
== NULL
) {
2659 if (parm
->p_class
== P_LOCAL
)
2660 return (void *)(((char *)&sDefault
)+parm
->offset
);
2661 else if (parm
->p_class
== P_GLOBAL
)
2662 return (void *)(((char *)&Globals
)+parm
->offset
);
2665 return (void *)(((char *)service
) + parm
->offset
);
2669 /***************************************************************************
2670 Process a parameter for a particular service number. If snum < 0
2671 then assume we are in the globals.
2672 ***************************************************************************/
2674 bool lp_do_parameter(int snum
, const char *pszParmName
, const char *pszParmValue
)
2676 TALLOC_CTX
*frame
= talloc_stackframe();
2677 struct loadparm_context
*lp_ctx
;
2680 lp_ctx
= setup_lp_context(frame
);
2681 if (lp_ctx
== NULL
) {
2687 ok
= lpcfg_do_global_parameter(lp_ctx
, pszParmName
, pszParmValue
);
2689 ok
= lpcfg_do_service_parameter(lp_ctx
, ServicePtrs
[snum
],
2690 pszParmName
, pszParmValue
);
2698 /***************************************************************************
2699 set a parameter, marking it with FLAG_CMDLINE. Parameters marked as
2700 FLAG_CMDLINE won't be overridden by loads from smb.conf.
2701 ***************************************************************************/
2703 static bool lp_set_cmdline_helper(const char *pszParmName
, const char *pszParmValue
)
2706 parmnum
= lpcfg_map_parameter(pszParmName
);
2708 flags_list
[parmnum
] &= ~FLAG_CMDLINE
;
2709 if (!lp_do_parameter(-1, pszParmName
, pszParmValue
)) {
2712 flags_list
[parmnum
] |= FLAG_CMDLINE
;
2714 /* we have to also set FLAG_CMDLINE on aliases. Aliases must
2715 * be grouped in the table, so we don't have to search the
2718 i
>=0 && parm_table
[i
].offset
== parm_table
[parmnum
].offset
2719 && parm_table
[i
].p_class
== parm_table
[parmnum
].p_class
;
2721 flags_list
[i
] |= FLAG_CMDLINE
;
2723 for (i
=parmnum
+1;i
<num_parameters() && parm_table
[i
].offset
== parm_table
[parmnum
].offset
2724 && parm_table
[i
].p_class
== parm_table
[parmnum
].p_class
;i
++) {
2725 flags_list
[i
] |= FLAG_CMDLINE
;
2731 /* it might be parametric */
2732 if (strchr(pszParmName
, ':') != NULL
) {
2733 set_param_opt(NULL
, &Globals
.param_opt
, pszParmName
, pszParmValue
, FLAG_CMDLINE
);
2737 DEBUG(0, ("Ignoring unknown parameter \"%s\"\n", pszParmName
));
2741 bool lp_set_cmdline(const char *pszParmName
, const char *pszParmValue
)
2744 TALLOC_CTX
*frame
= talloc_stackframe();
2745 struct loadparm_context
*lp_ctx
;
2747 lp_ctx
= setup_lp_context(frame
);
2748 if (lp_ctx
== NULL
) {
2753 ret
= lpcfg_set_cmdline(lp_ctx
, pszParmName
, pszParmValue
);
2759 /***************************************************************************
2760 Process a parameter.
2761 ***************************************************************************/
2763 static bool do_parameter(const char *pszParmName
, const char *pszParmValue
,
2766 if (!bInGlobalSection
&& bGlobalOnly
)
2769 DEBUGADD(4, ("doing parameter %s = %s\n", pszParmName
, pszParmValue
));
2771 if (bInGlobalSection
) {
2772 return lpcfg_do_global_parameter(userdata
, pszParmName
, pszParmValue
);
2774 return lpcfg_do_service_parameter(userdata
, ServicePtrs
[iServiceIndex
],
2775 pszParmName
, pszParmValue
);
2780 static const char *ad_dc_req_vfs_mods
[] = {"dfs_samba4", "acl_xattr", NULL
};
2783 * check that @vfs_objects includes all vfs modules required by an AD DC.
2785 static bool check_ad_dc_required_mods(const char **vfs_objects
)
2791 for (i
= 0; ad_dc_req_vfs_mods
[i
] != NULL
; i
++) {
2793 for (j
= 0; vfs_objects
[j
] != NULL
; j
++) {
2794 if (!strwicmp(ad_dc_req_vfs_mods
[i
], vfs_objects
[j
])) {
2800 DEBUG(0, ("vfs objects specified without required AD "
2801 "DC module: %s\n", ad_dc_req_vfs_mods
[i
]));
2806 DEBUG(6, ("vfs objects specified with all required AD DC modules\n"));
2811 /***************************************************************************
2812 Initialize any local variables in the sDefault table, after parsing a
2814 ***************************************************************************/
2816 static void init_locals(void)
2819 * We run this check once the [globals] is parsed, to force
2820 * the VFS objects and other per-share settings we need for
2821 * the standard way a AD DC is operated. We may change these
2822 * as our code evolves, which is why we force these settings.
2824 * We can't do this at the end of lp_load_ex(), as by that
2825 * point the services have been loaded and they will already
2826 * have "" as their vfs objects.
2828 if (lp_server_role() == ROLE_ACTIVE_DIRECTORY_DC
) {
2829 const char **vfs_objects
= lp_vfs_objects(-1);
2830 if (vfs_objects
!= NULL
) {
2831 /* ignore return, only warn if modules are missing */
2832 check_ad_dc_required_mods(vfs_objects
);
2834 if (lp_parm_const_string(-1, "xattr_tdb", "file", NULL
)) {
2835 lp_do_parameter(-1, "vfs objects", "dfs_samba4 acl_xattr xattr_tdb");
2836 } else if (lp_parm_const_string(-1, "posix", "eadb", NULL
)) {
2837 lp_do_parameter(-1, "vfs objects", "dfs_samba4 acl_xattr posix_eadb");
2839 lp_do_parameter(-1, "vfs objects", "dfs_samba4 acl_xattr");
2843 lp_do_parameter(-1, "map hidden", "no");
2844 lp_do_parameter(-1, "map system", "no");
2845 lp_do_parameter(-1, "map readonly", "no");
2846 lp_do_parameter(-1, "map archive", "no");
2847 lp_do_parameter(-1, "store dos attributes", "yes");
2851 /***************************************************************************
2852 Process a new section (service). At this stage all sections are services.
2853 Later we'll have special sections that permit server parameters to be set.
2854 Returns true on success, false on failure.
2855 ***************************************************************************/
2857 bool lp_do_section(const char *pszSectionName
, void *userdata
)
2859 struct loadparm_context
*lp_ctx
= (struct loadparm_context
*)userdata
;
2861 bool isglobal
= ((strwicmp(pszSectionName
, GLOBAL_NAME
) == 0) ||
2862 (strwicmp(pszSectionName
, GLOBAL_NAME2
) == 0));
2864 /* if we were in a global section then do the local inits */
2865 if (bInGlobalSection
&& !isglobal
)
2868 /* if we've just struck a global section, note the fact. */
2869 bInGlobalSection
= isglobal
;
2870 if (lp_ctx
!= NULL
) {
2871 lp_ctx
->bInGlobalSection
= isglobal
;
2874 /* check for multiple global sections */
2875 if (bInGlobalSection
) {
2876 DEBUG(3, ("Processing section \"[%s]\"\n", pszSectionName
));
2880 if (!bInGlobalSection
&& bGlobalOnly
)
2883 /* if we have a current service, tidy it up before moving on */
2886 if ((iServiceIndex
>= 0) && (ServicePtrs
[iServiceIndex
] != NULL
))
2887 bRetval
= lpcfg_service_ok(ServicePtrs
[iServiceIndex
]);
2889 /* if all is still well, move to the next record in the services array */
2891 /* We put this here to avoid an odd message order if messages are */
2892 /* issued by the post-processing of a previous section. */
2893 DEBUG(2, ("Processing section \"[%s]\"\n", pszSectionName
));
2895 iServiceIndex
= add_a_service(&sDefault
, pszSectionName
);
2896 if (iServiceIndex
< 0) {
2897 DEBUG(0, ("Failed to add a new service\n"));
2900 /* Clean all parametric options for service */
2901 /* They will be added during parsing again */
2902 free_param_opts(&ServicePtrs
[iServiceIndex
]->param_opt
);
2908 /***************************************************************************
2909 Display the contents of a parameter of a single services record.
2910 ***************************************************************************/
2912 bool dump_a_parameter(int snum
, char *parm_name
, FILE * f
, bool isGlobal
)
2914 bool result
= false;
2915 struct loadparm_context
*lp_ctx
;
2917 lp_ctx
= setup_lp_context(talloc_tos());
2918 if (lp_ctx
== NULL
) {
2923 result
= lpcfg_dump_a_parameter(lp_ctx
, NULL
, parm_name
, f
);
2925 result
= lpcfg_dump_a_parameter(lp_ctx
, ServicePtrs
[snum
], parm_name
, f
);
2927 TALLOC_FREE(lp_ctx
);
2932 /***************************************************************************
2933 Display the contents of a single copy structure.
2934 ***************************************************************************/
2935 static void dump_copy_map(bool *pcopymap
)
2941 printf("\n\tNon-Copied parameters:\n");
2943 for (i
= 0; parm_table
[i
].label
; i
++)
2944 if (parm_table
[i
].p_class
== P_LOCAL
&&
2945 parm_table
[i
].ptr
&& !pcopymap
[i
] &&
2946 (i
== 0 || (parm_table
[i
].ptr
!= parm_table
[i
- 1].ptr
)))
2948 printf("\t\t%s\n", parm_table
[i
].label
);
2953 /***************************************************************************
2954 Return TRUE if the passed service number is within range.
2955 ***************************************************************************/
2957 bool lp_snum_ok(int iService
)
2959 return (LP_SNUM_OK(iService
) && ServicePtrs
[iService
]->available
);
2962 /***************************************************************************
2963 Auto-load some home services.
2964 ***************************************************************************/
2966 static void lp_add_auto_services(const char *str
)
2976 s
= talloc_strdup(talloc_tos(), str
);
2978 smb_panic("talloc_strdup failed");
2982 homes
= lp_servicenumber(HOMES_NAME
);
2984 for (p
= strtok_r(s
, LIST_SEP
, &saveptr
); p
;
2985 p
= strtok_r(NULL
, LIST_SEP
, &saveptr
)) {
2988 if (lp_servicenumber(p
) >= 0)
2991 home
= get_user_home_dir(talloc_tos(), p
);
2993 if (home
&& home
[0] && homes
>= 0)
2994 lp_add_home(p
, homes
, p
, home
);
3001 /***************************************************************************
3002 Auto-load one printer.
3003 ***************************************************************************/
3005 void lp_add_one_printer(const char *name
, const char *comment
,
3006 const char *location
, void *pdata
)
3008 int printers
= lp_servicenumber(PRINTERS_NAME
);
3011 if (lp_servicenumber(name
) < 0) {
3012 lp_add_printer(name
, printers
);
3013 if ((i
= lp_servicenumber(name
)) >= 0) {
3014 lpcfg_string_set(ServicePtrs
[i
],
3015 &ServicePtrs
[i
]->comment
, comment
);
3016 ServicePtrs
[i
]->autoloaded
= true;
3021 /***************************************************************************
3022 Have we loaded a services file yet?
3023 ***************************************************************************/
3025 bool lp_loaded(void)
3030 /***************************************************************************
3031 Unload unused services.
3032 ***************************************************************************/
3034 void lp_killunused(struct smbd_server_connection
*sconn
,
3035 bool (*snumused
) (struct smbd_server_connection
*, int))
3038 for (i
= 0; i
< iNumServices
; i
++) {
3042 /* don't kill autoloaded or usershare services */
3043 if ( ServicePtrs
[i
]->autoloaded
||
3044 ServicePtrs
[i
]->usershare
== USERSHARE_VALID
) {
3048 if (!snumused
|| !snumused(sconn
, i
)) {
3049 free_service_byindex(i
);
3055 * Kill all except autoloaded and usershare services - convenience wrapper
3057 void lp_kill_all_services(void)
3059 lp_killunused(NULL
, NULL
);
3062 /***************************************************************************
3064 ***************************************************************************/
3066 void lp_killservice(int iServiceIn
)
3068 if (VALID(iServiceIn
)) {
3069 free_service_byindex(iServiceIn
);
3073 /***************************************************************************
3074 Save the curent values of all global and sDefault parameters into the
3075 defaults union. This allows testparm to show only the
3076 changed (ie. non-default) parameters.
3077 ***************************************************************************/
3079 static void lp_save_defaults(void)
3082 struct parmlist_entry
* parm
;
3083 for (i
= 0; parm_table
[i
].label
; i
++) {
3084 if (!(flags_list
[i
] & FLAG_CMDLINE
)) {
3085 flags_list
[i
] |= FLAG_DEFAULT
;
3088 if (i
> 0 && parm_table
[i
].offset
== parm_table
[i
- 1].offset
3089 && parm_table
[i
].p_class
== parm_table
[i
- 1].p_class
)
3091 switch (parm_table
[i
].type
) {
3094 parm_table
[i
].def
.lvalue
= str_list_copy(
3095 NULL
, *(const char ***)lp_parm_ptr(NULL
, &parm_table
[i
]));
3101 &parm_table
[i
].def
.svalue
,
3102 *(char **)lp_parm_ptr(
3103 NULL
, &parm_table
[i
]));
3104 if (parm_table
[i
].def
.svalue
== NULL
) {
3105 smb_panic("lpcfg_string_set() failed");
3110 parm_table
[i
].def
.bvalue
=
3111 *(bool *)lp_parm_ptr(NULL
, &parm_table
[i
]);
3114 parm_table
[i
].def
.cvalue
=
3115 *(char *)lp_parm_ptr(NULL
, &parm_table
[i
]);
3121 parm_table
[i
].def
.ivalue
=
3122 *(int *)lp_parm_ptr(NULL
, &parm_table
[i
]);
3127 for (parm
=Globals
.param_opt
; parm
; parm
=parm
->next
) {
3128 if (!(parm
->priority
& FLAG_CMDLINE
)) {
3129 parm
->priority
|= FLAG_DEFAULT
;
3133 for (parm
=sDefault
.param_opt
; parm
; parm
=parm
->next
) {
3134 if (!(parm
->priority
& FLAG_CMDLINE
)) {
3135 parm
->priority
|= FLAG_DEFAULT
;
3139 defaults_saved
= true;
3142 /***********************************************************
3143 If we should send plaintext/LANMAN passwords in the clinet
3144 ************************************************************/
3146 static void set_allowed_client_auth(void)
3148 if (Globals
.client_ntlmv2_auth
) {
3149 Globals
.client_lanman_auth
= false;
3151 if (!Globals
.client_lanman_auth
) {
3152 Globals
.client_plaintext_auth
= false;
3156 /***************************************************************************
3158 The following code allows smbd to read a user defined share file.
3159 Yes, this is my intent. Yes, I'm comfortable with that...
3161 THE FOLLOWING IS SECURITY CRITICAL CODE.
3163 It washes your clothes, it cleans your house, it guards you while you sleep...
3164 Do not f%^k with it....
3165 ***************************************************************************/
3167 #define MAX_USERSHARE_FILE_SIZE (10*1024)
3169 /***************************************************************************
3170 Check allowed stat state of a usershare file.
3171 Ensure we print out who is dicking with us so the admin can
3172 get their sorry ass fired.
3173 ***************************************************************************/
3175 static bool check_usershare_stat(const char *fname
,
3176 const SMB_STRUCT_STAT
*psbuf
)
3178 if (!S_ISREG(psbuf
->st_ex_mode
)) {
3179 DEBUG(0,("check_usershare_stat: file %s owned by uid %u is "
3180 "not a regular file\n",
3181 fname
, (unsigned int)psbuf
->st_ex_uid
));
3185 /* Ensure this doesn't have the other write bit set. */
3186 if (psbuf
->st_ex_mode
& S_IWOTH
) {
3187 DEBUG(0,("check_usershare_stat: file %s owned by uid %u allows "
3188 "public write. Refusing to allow as a usershare file.\n",
3189 fname
, (unsigned int)psbuf
->st_ex_uid
));
3193 /* Should be 10k or less. */
3194 if (psbuf
->st_ex_size
> MAX_USERSHARE_FILE_SIZE
) {
3195 DEBUG(0,("check_usershare_stat: file %s owned by uid %u is "
3196 "too large (%u) to be a user share file.\n",
3197 fname
, (unsigned int)psbuf
->st_ex_uid
,
3198 (unsigned int)psbuf
->st_ex_size
));
3205 /***************************************************************************
3206 Parse the contents of a usershare file.
3207 ***************************************************************************/
3209 enum usershare_err
parse_usershare_file(TALLOC_CTX
*ctx
,
3210 SMB_STRUCT_STAT
*psbuf
,
3211 const char *servicename
,
3215 char **pp_sharepath
,
3217 char **pp_cp_servicename
,
3218 struct security_descriptor
**ppsd
,
3221 const char **prefixallowlist
= lp_usershare_prefix_allow_list();
3222 const char **prefixdenylist
= lp_usershare_prefix_deny_list();
3225 SMB_STRUCT_STAT sbuf
;
3226 char *sharepath
= NULL
;
3227 char *comment
= NULL
;
3229 *pp_sharepath
= NULL
;
3232 *pallow_guest
= false;
3235 return USERSHARE_MALFORMED_FILE
;
3238 if (strcmp(lines
[0], "#VERSION 1") == 0) {
3240 } else if (strcmp(lines
[0], "#VERSION 2") == 0) {
3243 return USERSHARE_MALFORMED_FILE
;
3246 return USERSHARE_BAD_VERSION
;
3249 if (strncmp(lines
[1], "path=", 5) != 0) {
3250 return USERSHARE_MALFORMED_PATH
;
3253 sharepath
= talloc_strdup(ctx
, &lines
[1][5]);
3255 return USERSHARE_POSIX_ERR
;
3257 trim_string(sharepath
, " ", " ");
3259 if (strncmp(lines
[2], "comment=", 8) != 0) {
3260 return USERSHARE_MALFORMED_COMMENT_DEF
;
3263 comment
= talloc_strdup(ctx
, &lines
[2][8]);
3265 return USERSHARE_POSIX_ERR
;
3267 trim_string(comment
, " ", " ");
3268 trim_char(comment
, '"', '"');
3270 if (strncmp(lines
[3], "usershare_acl=", 14) != 0) {
3271 return USERSHARE_MALFORMED_ACL_DEF
;
3274 if (!parse_usershare_acl(ctx
, &lines
[3][14], ppsd
)) {
3275 return USERSHARE_ACL_ERR
;
3279 if (strncmp(lines
[4], "guest_ok=", 9) != 0) {
3280 return USERSHARE_MALFORMED_ACL_DEF
;
3282 if (lines
[4][9] == 'y') {
3283 *pallow_guest
= true;
3286 /* Backwards compatible extension to file version #2. */
3288 if (strncmp(lines
[5], "sharename=", 10) != 0) {
3289 return USERSHARE_MALFORMED_SHARENAME_DEF
;
3291 if (!strequal(&lines
[5][10], servicename
)) {
3292 return USERSHARE_BAD_SHARENAME
;
3294 *pp_cp_servicename
= talloc_strdup(ctx
, &lines
[5][10]);
3295 if (!*pp_cp_servicename
) {
3296 return USERSHARE_POSIX_ERR
;
3301 if (*pp_cp_servicename
== NULL
) {
3302 *pp_cp_servicename
= talloc_strdup(ctx
, servicename
);
3303 if (!*pp_cp_servicename
) {
3304 return USERSHARE_POSIX_ERR
;
3308 if (snum
!= -1 && (strcmp(sharepath
, ServicePtrs
[snum
]->path
) == 0)) {
3309 /* Path didn't change, no checks needed. */
3310 *pp_sharepath
= sharepath
;
3311 *pp_comment
= comment
;
3312 return USERSHARE_OK
;
3315 /* The path *must* be absolute. */
3316 if (sharepath
[0] != '/') {
3317 DEBUG(2,("parse_usershare_file: share %s: path %s is not an absolute path.\n",
3318 servicename
, sharepath
));
3319 return USERSHARE_PATH_NOT_ABSOLUTE
;
3322 /* If there is a usershare prefix deny list ensure one of these paths
3323 doesn't match the start of the user given path. */
3324 if (prefixdenylist
) {
3326 for ( i
=0; prefixdenylist
[i
]; i
++ ) {
3327 DEBUG(10,("parse_usershare_file: share %s : checking prefixdenylist[%d]='%s' against %s\n",
3328 servicename
, i
, prefixdenylist
[i
], sharepath
));
3329 if (memcmp( sharepath
, prefixdenylist
[i
], strlen(prefixdenylist
[i
])) == 0) {
3330 DEBUG(2,("parse_usershare_file: share %s path %s starts with one of the "
3331 "usershare prefix deny list entries.\n",
3332 servicename
, sharepath
));
3333 return USERSHARE_PATH_IS_DENIED
;
3338 /* If there is a usershare prefix allow list ensure one of these paths
3339 does match the start of the user given path. */
3341 if (prefixallowlist
) {
3343 for ( i
=0; prefixallowlist
[i
]; i
++ ) {
3344 DEBUG(10,("parse_usershare_file: share %s checking prefixallowlist[%d]='%s' against %s\n",
3345 servicename
, i
, prefixallowlist
[i
], sharepath
));
3346 if (memcmp( sharepath
, prefixallowlist
[i
], strlen(prefixallowlist
[i
])) == 0) {
3350 if (prefixallowlist
[i
] == NULL
) {
3351 DEBUG(2,("parse_usershare_file: share %s path %s doesn't start with one of the "
3352 "usershare prefix allow list entries.\n",
3353 servicename
, sharepath
));
3354 return USERSHARE_PATH_NOT_ALLOWED
;
3358 /* Ensure this is pointing to a directory. */
3359 dp
= opendir(sharepath
);
3362 DEBUG(2,("parse_usershare_file: share %s path %s is not a directory.\n",
3363 servicename
, sharepath
));
3364 return USERSHARE_PATH_NOT_DIRECTORY
;
3367 /* Ensure the owner of the usershare file has permission to share
3370 if (sys_stat(sharepath
, &sbuf
, false) == -1) {
3371 DEBUG(2,("parse_usershare_file: share %s : stat failed on path %s. %s\n",
3372 servicename
, sharepath
, strerror(errno
) ));
3374 return USERSHARE_POSIX_ERR
;
3379 if (!S_ISDIR(sbuf
.st_ex_mode
)) {
3380 DEBUG(2,("parse_usershare_file: share %s path %s is not a directory.\n",
3381 servicename
, sharepath
));
3382 return USERSHARE_PATH_NOT_DIRECTORY
;
3385 /* Check if sharing is restricted to owner-only. */
3386 /* psbuf is the stat of the usershare definition file,
3387 sbuf is the stat of the target directory to be shared. */
3389 if (lp_usershare_owner_only()) {
3390 /* root can share anything. */
3391 if ((psbuf
->st_ex_uid
!= 0) && (sbuf
.st_ex_uid
!= psbuf
->st_ex_uid
)) {
3392 return USERSHARE_PATH_NOT_ALLOWED
;
3396 *pp_sharepath
= sharepath
;
3397 *pp_comment
= comment
;
3398 return USERSHARE_OK
;
3401 /***************************************************************************
3402 Deal with a usershare file.
3405 -1 - Bad name, invalid contents.
3406 - service name already existed and not a usershare, problem
3407 with permissions to share directory etc.
3408 ***************************************************************************/
3410 static int process_usershare_file(const char *dir_name
, const char *file_name
, int snum_template
)
3412 SMB_STRUCT_STAT sbuf
;
3413 SMB_STRUCT_STAT lsbuf
;
3415 char *sharepath
= NULL
;
3416 char *comment
= NULL
;
3417 char *cp_service_name
= NULL
;
3418 char **lines
= NULL
;
3422 TALLOC_CTX
*ctx
= talloc_stackframe();
3423 struct security_descriptor
*psd
= NULL
;
3424 bool guest_ok
= false;
3425 char *canon_name
= NULL
;
3426 bool added_service
= false;
3430 /* Ensure share name doesn't contain invalid characters. */
3431 if (!validate_net_name(file_name
, INVALID_SHARENAME_CHARS
, strlen(file_name
))) {
3432 DEBUG(0,("process_usershare_file: share name %s contains "
3433 "invalid characters (any of %s)\n",
3434 file_name
, INVALID_SHARENAME_CHARS
));
3438 canon_name
= canonicalize_servicename(ctx
, file_name
);
3443 fname
= talloc_asprintf(ctx
, "%s/%s", dir_name
, file_name
);
3448 /* Minimize the race condition by doing an lstat before we
3449 open and fstat. Ensure this isn't a symlink link. */
3451 if (sys_lstat(fname
, &lsbuf
, false) != 0) {
3452 if (errno
== ENOENT
) {
3453 /* Unknown share requested. Just ignore. */
3456 /* Only log messages for meaningful problems. */
3457 DEBUG(0,("process_usershare_file: stat of %s failed. %s\n",
3458 fname
, strerror(errno
) ));
3462 /* This must be a regular file, not a symlink, directory or
3463 other strange filetype. */
3464 if (!check_usershare_stat(fname
, &lsbuf
)) {
3471 status
= dbwrap_fetch_bystring(ServiceHash
, canon_name
,
3476 if (NT_STATUS_IS_OK(status
) &&
3477 (data
.dptr
!= NULL
) &&
3478 (data
.dsize
== sizeof(iService
))) {
3479 memcpy(&iService
, data
.dptr
, sizeof(iService
));
3483 if (iService
!= -1 &&
3484 timespec_compare(&ServicePtrs
[iService
]->usershare_last_mod
,
3485 &lsbuf
.st_ex_mtime
) == 0) {
3486 /* Nothing changed - Mark valid and return. */
3487 DEBUG(10,("process_usershare_file: service %s not changed.\n",
3489 ServicePtrs
[iService
]->usershare
= USERSHARE_VALID
;
3494 /* Try and open the file read only - no symlinks allowed. */
3496 fd
= open(fname
, O_RDONLY
|O_NOFOLLOW
, 0);
3498 fd
= open(fname
, O_RDONLY
, 0);
3502 DEBUG(0,("process_usershare_file: unable to open %s. %s\n",
3503 fname
, strerror(errno
) ));
3507 /* Now fstat to be *SURE* it's a regular file. */
3508 if (sys_fstat(fd
, &sbuf
, false) != 0) {
3510 DEBUG(0,("process_usershare_file: fstat of %s failed. %s\n",
3511 fname
, strerror(errno
) ));
3515 /* Is it the same dev/inode as was lstated ? */
3516 if (!check_same_stat(&lsbuf
, &sbuf
)) {
3518 DEBUG(0,("process_usershare_file: fstat of %s is a different file from lstat. "
3519 "Symlink spoofing going on ?\n", fname
));
3523 /* This must be a regular file, not a symlink, directory or
3524 other strange filetype. */
3525 if (!check_usershare_stat(fname
, &sbuf
)) {
3530 lines
= fd_lines_load(fd
, &numlines
, MAX_USERSHARE_FILE_SIZE
, NULL
);
3533 if (lines
== NULL
) {
3534 DEBUG(0,("process_usershare_file: loading file %s owned by %u failed.\n",
3535 fname
, (unsigned int)sbuf
.st_ex_uid
));
3539 if (parse_usershare_file(ctx
, &sbuf
, file_name
,
3540 iService
, lines
, numlines
, &sharepath
,
3541 &comment
, &cp_service_name
,
3542 &psd
, &guest_ok
) != USERSHARE_OK
) {
3546 /* Everything ok - add the service possibly using a template. */
3548 const struct loadparm_service
*sp
= &sDefault
;
3549 if (snum_template
!= -1) {
3550 sp
= ServicePtrs
[snum_template
];
3553 if ((iService
= add_a_service(sp
, cp_service_name
)) < 0) {
3554 DEBUG(0, ("process_usershare_file: Failed to add "
3555 "new service %s\n", cp_service_name
));
3559 added_service
= true;
3561 /* Read only is controlled by usershare ACL below. */
3562 ServicePtrs
[iService
]->read_only
= false;
3565 /* Write the ACL of the new/modified share. */
3566 status
= set_share_security(canon_name
, psd
);
3567 if (!NT_STATUS_IS_OK(status
)) {
3568 DEBUG(0, ("process_usershare_file: Failed to set share "
3569 "security for user share %s\n",
3574 /* If from a template it may be marked invalid. */
3575 ServicePtrs
[iService
]->valid
= true;
3577 /* Set the service as a valid usershare. */
3578 ServicePtrs
[iService
]->usershare
= USERSHARE_VALID
;
3580 /* Set guest access. */
3581 if (lp_usershare_allow_guests()) {
3582 ServicePtrs
[iService
]->guest_ok
= guest_ok
;
3585 /* And note when it was loaded. */
3586 ServicePtrs
[iService
]->usershare_last_mod
= sbuf
.st_ex_mtime
;
3587 lpcfg_string_set(ServicePtrs
[iService
], &ServicePtrs
[iService
]->path
,
3589 lpcfg_string_set(ServicePtrs
[iService
],
3590 &ServicePtrs
[iService
]->comment
, comment
);
3596 if (ret
== -1 && iService
!= -1 && added_service
) {
3597 lp_remove_service(iService
);
3605 /***************************************************************************
3606 Checks if a usershare entry has been modified since last load.
3607 ***************************************************************************/
3609 static bool usershare_exists(int iService
, struct timespec
*last_mod
)
3611 SMB_STRUCT_STAT lsbuf
;
3612 const char *usersharepath
= Globals
.usershare_path
;
3615 fname
= talloc_asprintf(talloc_tos(),
3618 ServicePtrs
[iService
]->szService
);
3619 if (fname
== NULL
) {
3623 if (sys_lstat(fname
, &lsbuf
, false) != 0) {
3628 if (!S_ISREG(lsbuf
.st_ex_mode
)) {
3634 *last_mod
= lsbuf
.st_ex_mtime
;
3638 static bool usershare_directory_is_root(uid_t uid
)
3644 if (uid_wrapper_enabled()) {
3651 /***************************************************************************
3652 Load a usershare service by name. Returns a valid servicenumber or -1.
3653 ***************************************************************************/
3655 int load_usershare_service(const char *servicename
)
3657 SMB_STRUCT_STAT sbuf
;
3658 const char *usersharepath
= Globals
.usershare_path
;
3659 int max_user_shares
= Globals
.usershare_max_shares
;
3660 int snum_template
= -1;
3662 if (servicename
[0] == '\0') {
3663 /* Invalid service name. */
3667 if (*usersharepath
== 0 || max_user_shares
== 0) {
3671 if (sys_stat(usersharepath
, &sbuf
, false) != 0) {
3672 DEBUG(0,("load_usershare_service: stat of %s failed. %s\n",
3673 usersharepath
, strerror(errno
) ));
3677 if (!S_ISDIR(sbuf
.st_ex_mode
)) {
3678 DEBUG(0,("load_usershare_service: %s is not a directory.\n",
3684 * This directory must be owned by root, and have the 't' bit set.
3685 * It also must not be writable by "other".
3689 if (!usershare_directory_is_root(sbuf
.st_ex_uid
) ||
3690 !(sbuf
.st_ex_mode
& S_ISVTX
) || (sbuf
.st_ex_mode
& S_IWOTH
)) {
3692 if (!usershare_directory_is_root(sbuf
.st_ex_uid
) ||
3693 (sbuf
.st_ex_mode
& S_IWOTH
)) {
3695 DEBUG(0,("load_usershare_service: directory %s is not owned by root "
3696 "or does not have the sticky bit 't' set or is writable by anyone.\n",
3701 /* Ensure the template share exists if it's set. */
3702 if (Globals
.usershare_template_share
[0]) {
3703 /* We can't use lp_servicenumber here as we are recommending that
3704 template shares have -valid=false set. */
3705 for (snum_template
= iNumServices
- 1; snum_template
>= 0; snum_template
--) {
3706 if (ServicePtrs
[snum_template
]->szService
&&
3707 strequal(ServicePtrs
[snum_template
]->szService
,
3708 Globals
.usershare_template_share
)) {
3713 if (snum_template
== -1) {
3714 DEBUG(0,("load_usershare_service: usershare template share %s "
3715 "does not exist.\n",
3716 Globals
.usershare_template_share
));
3721 return process_usershare_file(usersharepath
, servicename
, snum_template
);
3724 /***************************************************************************
3725 Load all user defined shares from the user share directory.
3726 We only do this if we're enumerating the share list.
3727 This is the function that can delete usershares that have
3729 ***************************************************************************/
3731 int load_usershare_shares(struct smbd_server_connection
*sconn
,
3732 bool (*snumused
) (struct smbd_server_connection
*, int))
3735 SMB_STRUCT_STAT sbuf
;
3737 int num_usershares
= 0;
3738 int max_user_shares
= Globals
.usershare_max_shares
;
3739 unsigned int num_dir_entries
, num_bad_dir_entries
, num_tmp_dir_entries
;
3740 unsigned int allowed_bad_entries
= ((2*max_user_shares
)/10);
3741 unsigned int allowed_tmp_entries
= ((2*max_user_shares
)/10);
3743 int snum_template
= -1;
3744 const char *usersharepath
= Globals
.usershare_path
;
3745 int ret
= lp_numservices();
3746 TALLOC_CTX
*tmp_ctx
;
3748 if (max_user_shares
== 0 || *usersharepath
== '\0') {
3749 return lp_numservices();
3752 if (sys_stat(usersharepath
, &sbuf
, false) != 0) {
3753 DEBUG(0,("load_usershare_shares: stat of %s failed. %s\n",
3754 usersharepath
, strerror(errno
) ));
3759 * This directory must be owned by root, and have the 't' bit set.
3760 * It also must not be writable by "other".
3764 if (sbuf
.st_ex_uid
!= 0 || !(sbuf
.st_ex_mode
& S_ISVTX
) || (sbuf
.st_ex_mode
& S_IWOTH
)) {
3766 if (sbuf
.st_ex_uid
!= 0 || (sbuf
.st_ex_mode
& S_IWOTH
)) {
3768 DEBUG(0,("load_usershare_shares: directory %s is not owned by root "
3769 "or does not have the sticky bit 't' set or is writable by anyone.\n",
3774 /* Ensure the template share exists if it's set. */
3775 if (Globals
.usershare_template_share
[0]) {
3776 /* We can't use lp_servicenumber here as we are recommending that
3777 template shares have -valid=false set. */
3778 for (snum_template
= iNumServices
- 1; snum_template
>= 0; snum_template
--) {
3779 if (ServicePtrs
[snum_template
]->szService
&&
3780 strequal(ServicePtrs
[snum_template
]->szService
,
3781 Globals
.usershare_template_share
)) {
3786 if (snum_template
== -1) {
3787 DEBUG(0,("load_usershare_shares: usershare template share %s "
3788 "does not exist.\n",
3789 Globals
.usershare_template_share
));
3794 /* Mark all existing usershares as pending delete. */
3795 for (iService
= iNumServices
- 1; iService
>= 0; iService
--) {
3796 if (VALID(iService
) && ServicePtrs
[iService
]->usershare
) {
3797 ServicePtrs
[iService
]->usershare
= USERSHARE_PENDING_DELETE
;
3801 dp
= opendir(usersharepath
);
3803 DEBUG(0,("load_usershare_shares:: failed to open directory %s. %s\n",
3804 usersharepath
, strerror(errno
) ));
3808 for (num_dir_entries
= 0, num_bad_dir_entries
= 0, num_tmp_dir_entries
= 0;
3810 num_dir_entries
++ ) {
3812 const char *n
= de
->d_name
;
3814 /* Ignore . and .. */
3816 if ((n
[1] == '\0') || (n
[1] == '.' && n
[2] == '\0')) {
3822 /* Temporary file used when creating a share. */
3823 num_tmp_dir_entries
++;
3826 /* Allow 20% tmp entries. */
3827 if (num_tmp_dir_entries
> allowed_tmp_entries
) {
3828 DEBUG(0,("load_usershare_shares: too many temp entries (%u) "
3829 "in directory %s\n",
3830 num_tmp_dir_entries
, usersharepath
));
3834 r
= process_usershare_file(usersharepath
, n
, snum_template
);
3836 /* Update the services count. */
3838 if (num_usershares
>= max_user_shares
) {
3839 DEBUG(0,("load_usershare_shares: max user shares reached "
3840 "on file %s in directory %s\n",
3841 n
, usersharepath
));
3844 } else if (r
== -1) {
3845 num_bad_dir_entries
++;
3848 /* Allow 20% bad entries. */
3849 if (num_bad_dir_entries
> allowed_bad_entries
) {
3850 DEBUG(0,("load_usershare_shares: too many bad entries (%u) "
3851 "in directory %s\n",
3852 num_bad_dir_entries
, usersharepath
));
3856 /* Allow 20% bad entries. */
3857 if (num_dir_entries
> max_user_shares
+ allowed_bad_entries
) {
3858 DEBUG(0,("load_usershare_shares: too many total entries (%u) "
3859 "in directory %s\n",
3860 num_dir_entries
, usersharepath
));
3867 /* Sweep through and delete any non-refreshed usershares that are
3868 not currently in use. */
3869 tmp_ctx
= talloc_stackframe();
3870 for (iService
= iNumServices
- 1; iService
>= 0; iService
--) {
3871 if (VALID(iService
) && (ServicePtrs
[iService
]->usershare
== USERSHARE_PENDING_DELETE
)) {
3872 const struct loadparm_substitution
*lp_sub
=
3873 loadparm_s3_global_substitution();
3876 if (snumused
&& snumused(sconn
, iService
)) {
3880 servname
= lp_servicename(tmp_ctx
, lp_sub
, iService
);
3882 /* Remove from the share ACL db. */
3883 DEBUG(10,("load_usershare_shares: Removing deleted usershare %s\n",
3885 delete_share_security(servname
);
3886 free_service_byindex(iService
);
3889 talloc_free(tmp_ctx
);
3891 return lp_numservices();
3894 /********************************************************
3895 Destroy global resources allocated in this file
3896 ********************************************************/
3898 void gfree_loadparm(void)
3904 /* Free resources allocated to services */
3906 for ( i
= 0; i
< iNumServices
; i
++ ) {
3908 free_service_byindex(i
);
3912 TALLOC_FREE( ServicePtrs
);
3915 /* Now release all resources allocated to global
3916 parameters and the default service */
3918 free_global_parameters();
3922 /***************************************************************************
3923 Allow client apps to specify that they are a client
3924 ***************************************************************************/
3925 static void lp_set_in_client(bool b
)
3931 /***************************************************************************
3932 Determine if we're running in a client app
3933 ***************************************************************************/
3934 static bool lp_is_in_client(void)
3939 static void lp_enforce_ad_dc_settings(void)
3941 lp_do_parameter(GLOBAL_SECTION_SNUM
, "passdb backend", "samba_dsdb");
3942 lp_do_parameter(GLOBAL_SECTION_SNUM
,
3943 "winbindd:use external pipes", "true");
3944 lp_do_parameter(GLOBAL_SECTION_SNUM
, "rpc_server:default", "external");
3945 lp_do_parameter(GLOBAL_SECTION_SNUM
, "rpc_server:svcctl", "embedded");
3946 lp_do_parameter(GLOBAL_SECTION_SNUM
, "rpc_server:srvsvc", "embedded");
3947 lp_do_parameter(GLOBAL_SECTION_SNUM
, "rpc_server:eventlog", "embedded");
3948 lp_do_parameter(GLOBAL_SECTION_SNUM
, "rpc_server:ntsvcs", "embedded");
3949 lp_do_parameter(GLOBAL_SECTION_SNUM
, "rpc_server:winreg", "embedded");
3950 lp_do_parameter(GLOBAL_SECTION_SNUM
, "rpc_server:spoolss", "embedded");
3951 lp_do_parameter(GLOBAL_SECTION_SNUM
, "rpc_daemon:spoolssd", "embedded");
3952 lp_do_parameter(GLOBAL_SECTION_SNUM
, "rpc_server:tcpip", "no");
3955 /***************************************************************************
3956 Load the services array from the services file. Return true on success,
3958 ***************************************************************************/
3960 static bool lp_load_ex(const char *pszFname
,
3964 bool reinit_globals
,
3965 bool allow_include_registry
,
3966 bool load_all_shares
)
3970 TALLOC_CTX
*frame
= talloc_stackframe();
3971 struct loadparm_context
*lp_ctx
;
3972 int max_protocol
, min_protocol
;
3974 DEBUG(3, ("lp_load_ex: refreshing parameters\n"));
3976 bInGlobalSection
= true;
3977 bGlobalOnly
= global_only
;
3978 bAllowIncludeRegistry
= allow_include_registry
;
3979 sDefault
= _sDefault
;
3981 lp_ctx
= setup_lp_context(talloc_tos());
3983 init_globals(lp_ctx
, reinit_globals
);
3987 if (save_defaults
) {
3992 if (!reinit_globals
) {
3993 free_param_opts(&Globals
.param_opt
);
3994 apply_lp_set_cmdline();
3997 lp_do_parameter(-1, "idmap config * : backend", Globals
.idmap_backend
);
3999 /* We get sections first, so have to start 'behind' to make up */
4002 if (lp_config_backend_is_file()) {
4003 n2
= talloc_sub_basic(talloc_tos(), get_current_username(),
4004 current_user_info
.domain
,
4007 smb_panic("lp_load_ex: out of memory");
4010 add_to_file_list(NULL
, &file_lists
, pszFname
, n2
);
4012 bRetval
= pm_process(n2
, lp_do_section
, do_parameter
, lp_ctx
);
4015 /* finish up the last section */
4016 DEBUG(4, ("pm_process() returned %s\n", BOOLSTR(bRetval
)));
4018 if (iServiceIndex
>= 0) {
4019 bRetval
= lpcfg_service_ok(ServicePtrs
[iServiceIndex
]);
4023 if (lp_config_backend_is_registry()) {
4025 /* config backend changed to registry in config file */
4027 * We need to use this extra global variable here to
4028 * survive restart: init_globals uses this as a default
4029 * for config_backend. Otherwise, init_globals would
4030 * send us into an endless loop here.
4033 config_backend
= CONFIG_BACKEND_REGISTRY
;
4035 DEBUG(1, ("lp_load_ex: changing to config backend "
4037 init_globals(lp_ctx
, true);
4039 TALLOC_FREE(lp_ctx
);
4041 lp_kill_all_services();
4042 ok
= lp_load_ex(pszFname
, global_only
, save_defaults
,
4043 add_ipc
, reinit_globals
,
4044 allow_include_registry
,
4049 } else if (lp_config_backend_is_registry()) {
4050 bRetval
= process_registry_globals();
4052 DEBUG(0, ("Illegal config backend given: %d\n",
4053 lp_config_backend()));
4057 if (bRetval
&& lp_registry_shares()) {
4058 if (load_all_shares
) {
4059 bRetval
= process_registry_shares();
4061 bRetval
= reload_registry_shares();
4066 const struct loadparm_substitution
*lp_sub
=
4067 loadparm_s3_global_substitution();
4068 char *serv
= lp_auto_services(talloc_tos(), lp_sub
);
4069 lp_add_auto_services(serv
);
4074 /* When 'restrict anonymous = 2' guest connections to ipc$
4076 lp_add_ipc("IPC$", (lp_restrict_anonymous() < 2));
4077 if ( lp_enable_asu_support() ) {
4078 lp_add_ipc("ADMIN$", false);
4082 set_allowed_client_auth();
4084 if (lp_security() == SEC_ADS
&& strchr(lp_password_server(), ':')) {
4085 DEBUG(1, ("WARNING: The optional ':port' in password server = %s is deprecated\n",
4086 lp_password_server()));
4091 /* Now we check we_are_a_wins_server and set szWINSserver to 127.0.0.1 */
4092 /* if we_are_a_wins_server is true and we are in the client */
4093 if (lp_is_in_client() && Globals
.we_are_a_wins_server
) {
4094 lp_do_parameter(GLOBAL_SECTION_SNUM
, "wins server", "127.0.0.1");
4099 fault_configure(smb_panic_s3
);
4102 * We run this check once the whole smb.conf is parsed, to
4103 * force some settings for the standard way a AD DC is
4104 * operated. We may change these as our code evolves, which
4105 * is why we force these settings.
4107 if (lp_server_role() == ROLE_ACTIVE_DIRECTORY_DC
) {
4108 lp_enforce_ad_dc_settings();
4111 bAllowIncludeRegistry
= true;
4113 /* Check if command line max protocol < min protocol, if so
4114 * report a warning to the user.
4116 max_protocol
= lp_client_max_protocol();
4117 min_protocol
= lp_client_min_protocol();
4118 if (max_protocol
< min_protocol
) {
4119 const char *max_protocolp
, *min_protocolp
;
4120 max_protocolp
= lpcfg_get_smb_protocol(max_protocol
);
4121 min_protocolp
= lpcfg_get_smb_protocol(min_protocol
);
4122 DBG_ERR("Max protocol %s is less than min protocol %s.\n",
4123 max_protocolp
, min_protocolp
);
4130 static bool lp_load(const char *pszFname
,
4134 bool reinit_globals
)
4136 return lp_load_ex(pszFname
,
4141 true, /* allow_include_registry */
4142 false); /* load_all_shares*/
4145 bool lp_load_initial_only(const char *pszFname
)
4147 return lp_load_ex(pszFname
,
4148 true, /* global only */
4149 true, /* save_defaults */
4150 false, /* add_ipc */
4151 true, /* reinit_globals */
4152 false, /* allow_include_registry */
4153 false); /* load_all_shares*/
4157 * most common lp_load wrapper, loading only the globals
4159 * If this is used in a daemon or client utility it should be called
4160 * after processing popt.
4162 bool lp_load_global(const char *file_name
)
4164 return lp_load(file_name
,
4165 true, /* global_only */
4166 false, /* save_defaults */
4167 false, /* add_ipc */
4168 true); /* reinit_globals */
4172 * The typical lp_load wrapper with shares, loads global and
4173 * shares, including IPC, but does not force immediate
4174 * loading of all shares from registry.
4176 bool lp_load_with_shares(const char *file_name
)
4178 return lp_load(file_name
,
4179 false, /* global_only */
4180 false, /* save_defaults */
4182 true); /* reinit_globals */
4186 * lp_load wrapper, especially for clients
4188 bool lp_load_client(const char *file_name
)
4190 lp_set_in_client(true);
4192 return lp_load_global(file_name
);
4196 * lp_load wrapper, loading only globals, but intended
4197 * for subsequent calls, not reinitializing the globals
4200 bool lp_load_global_no_reinit(const char *file_name
)
4202 return lp_load(file_name
,
4203 true, /* global_only */
4204 false, /* save_defaults */
4205 false, /* add_ipc */
4206 false); /* reinit_globals */
4210 * lp_load wrapper, loading globals and shares,
4211 * intended for subsequent calls, i.e. not reinitializing
4212 * the globals to default values.
4214 bool lp_load_no_reinit(const char *file_name
)
4216 return lp_load(file_name
,
4217 false, /* global_only */
4218 false, /* save_defaults */
4219 false, /* add_ipc */
4220 false); /* reinit_globals */
4225 * lp_load wrapper, especially for clients, no reinitialization
4227 bool lp_load_client_no_reinit(const char *file_name
)
4229 lp_set_in_client(true);
4231 return lp_load_global_no_reinit(file_name
);
4234 bool lp_load_with_registry_shares(const char *pszFname
)
4236 return lp_load_ex(pszFname
,
4237 false, /* global_only */
4238 true, /* save_defaults */
4239 false, /* add_ipc */
4240 true, /* reinit_globals */
4241 true, /* allow_include_registry */
4242 true); /* load_all_shares*/
4245 /***************************************************************************
4246 Return the max number of services.
4247 ***************************************************************************/
4249 int lp_numservices(void)
4251 return (iNumServices
);
4254 /***************************************************************************
4255 Display the contents of the services array in human-readable form.
4256 ***************************************************************************/
4258 void lp_dump(FILE *f
, bool show_defaults
, int maxtoprint
)
4261 struct loadparm_context
*lp_ctx
;
4264 defaults_saved
= false;
4266 lp_ctx
= setup_lp_context(talloc_tos());
4267 if (lp_ctx
== NULL
) {
4271 lpcfg_dump_globals(lp_ctx
, f
, !defaults_saved
);
4273 lpcfg_dump_a_service(&sDefault
, &sDefault
, f
, flags_list
, show_defaults
);
4275 for (iService
= 0; iService
< maxtoprint
; iService
++) {
4277 lp_dump_one(f
, show_defaults
, iService
);
4279 TALLOC_FREE(lp_ctx
);
4282 /***************************************************************************
4283 Display the contents of one service in human-readable form.
4284 ***************************************************************************/
4286 void lp_dump_one(FILE * f
, bool show_defaults
, int snum
)
4289 if (ServicePtrs
[snum
]->szService
[0] == '\0')
4291 lpcfg_dump_a_service(ServicePtrs
[snum
], &sDefault
, f
,
4292 flags_list
, show_defaults
);
4296 /***************************************************************************
4297 Return the number of the service with the given name, or -1 if it doesn't
4298 exist. Note that this is a DIFFERENT ANIMAL from the internal function
4299 getservicebyname()! This works ONLY if all services have been loaded, and
4300 does not copy the found service.
4301 ***************************************************************************/
4303 int lp_servicenumber(const char *pszServiceName
)
4306 fstring serviceName
;
4308 if (!pszServiceName
) {
4309 return GLOBAL_SECTION_SNUM
;
4312 for (iService
= iNumServices
- 1; iService
>= 0; iService
--) {
4313 if (VALID(iService
) && ServicePtrs
[iService
]->szService
) {
4315 * The substitution here is used to support %U in
4318 fstrcpy(serviceName
, ServicePtrs
[iService
]->szService
);
4319 standard_sub_basic(get_current_username(),
4320 current_user_info
.domain
,
4321 serviceName
,sizeof(serviceName
));
4322 if (strequal(serviceName
, pszServiceName
)) {
4328 if (iService
>= 0 && ServicePtrs
[iService
]->usershare
== USERSHARE_VALID
) {
4329 struct timespec last_mod
;
4331 if (!usershare_exists(iService
, &last_mod
)) {
4332 /* Remove the share security tdb entry for it. */
4333 delete_share_security(lp_const_servicename(iService
));
4334 /* Remove it from the array. */
4335 free_service_byindex(iService
);
4336 /* Doesn't exist anymore. */
4337 return GLOBAL_SECTION_SNUM
;
4340 /* Has it been modified ? If so delete and reload. */
4341 if (timespec_compare(&ServicePtrs
[iService
]->usershare_last_mod
,
4343 /* Remove it from the array. */
4344 free_service_byindex(iService
);
4345 /* and now reload it. */
4346 iService
= load_usershare_service(pszServiceName
);
4351 DEBUG(7,("lp_servicenumber: couldn't find %s\n", pszServiceName
));
4352 return GLOBAL_SECTION_SNUM
;
4358 /*******************************************************************
4359 A useful volume label function.
4360 ********************************************************************/
4362 const char *volume_label(TALLOC_CTX
*ctx
, int snum
)
4364 const struct loadparm_substitution
*lp_sub
=
4365 loadparm_s3_global_substitution();
4367 const char *label
= lp_volume(ctx
, lp_sub
, snum
);
4371 label
= lp_servicename(ctx
, lp_sub
, snum
);
4375 * Volume label can be a max of 32 bytes. Make sure to truncate
4376 * it at a codepoint boundary if it's longer than 32 and contains
4377 * multibyte characters. Windows insists on a volume label being
4378 * a valid mb sequence, and errors out if not.
4380 if (strlen(label
) > 32) {
4382 * A MB char can be a max of 5 bytes, thus
4383 * we should have a valid mb character at a
4384 * minimum position of (32-5) = 27.
4388 * Check if a codepoint starting from next byte
4389 * is valid. If yes, then the current byte is the
4390 * end of a MB or ascii sequence and the label can
4391 * be safely truncated here. If not, keep going
4392 * backwards till a valid codepoint is found.
4395 const char *s
= &label
[end
];
4396 codepoint_t c
= next_codepoint(s
, &len
);
4397 if (c
!= INVALID_CODEPOINT
) {
4404 /* This returns a max of 33 byte guarenteed null terminated string. */
4405 ret
= talloc_strndup(ctx
, label
, end
);
4412 /*******************************************************************
4413 Get the default server type we will announce as via nmbd.
4414 ********************************************************************/
4416 int lp_default_server_announce(void)
4418 int default_server_announce
= 0;
4419 default_server_announce
|= SV_TYPE_WORKSTATION
;
4420 default_server_announce
|= SV_TYPE_SERVER
;
4421 default_server_announce
|= SV_TYPE_SERVER_UNIX
;
4423 /* note that the flag should be set only if we have a
4424 printer service but nmbd doesn't actually load the
4425 services so we can't tell --jerry */
4427 default_server_announce
|= SV_TYPE_PRINTQ_SERVER
;
4429 default_server_announce
|= SV_TYPE_SERVER_NT
;
4430 default_server_announce
|= SV_TYPE_NT
;
4432 switch (lp_server_role()) {
4433 case ROLE_DOMAIN_MEMBER
:
4434 default_server_announce
|= SV_TYPE_DOMAIN_MEMBER
;
4436 case ROLE_DOMAIN_PDC
:
4438 default_server_announce
|= SV_TYPE_DOMAIN_CTRL
;
4440 case ROLE_DOMAIN_BDC
:
4441 default_server_announce
|= SV_TYPE_DOMAIN_BAKCTRL
;
4443 case ROLE_STANDALONE
:
4447 if (lp_time_server())
4448 default_server_announce
|= SV_TYPE_TIME_SOURCE
;
4450 if (lp_host_msdfs())
4451 default_server_announce
|= SV_TYPE_DFS_SERVER
;
4453 return default_server_announce
;
4456 /***********************************************************
4457 If we are PDC then prefer us as DMB
4458 ************************************************************/
4460 bool lp_domain_master(void)
4462 if (Globals
._domain_master
== Auto
)
4463 return (lp_server_role() == ROLE_DOMAIN_PDC
||
4464 lp_server_role() == ROLE_IPA_DC
);
4466 return (bool)Globals
._domain_master
;
4469 /***********************************************************
4470 If we are PDC then prefer us as DMB
4471 ************************************************************/
4473 static bool lp_domain_master_true_or_auto(void)
4475 if (Globals
._domain_master
) /* auto or yes */
4481 /***********************************************************
4482 If we are DMB then prefer us as LMB
4483 ************************************************************/
4485 bool lp_preferred_master(void)
4487 int preferred_master
= lp__preferred_master();
4489 if (preferred_master
== Auto
)
4490 return (lp_local_master() && lp_domain_master());
4492 return (bool)preferred_master
;
4495 /*******************************************************************
4497 ********************************************************************/
4499 void lp_remove_service(int snum
)
4501 ServicePtrs
[snum
]->valid
= false;
4504 const char *lp_printername(TALLOC_CTX
*ctx
,
4505 const struct loadparm_substitution
*lp_sub
,
4508 const char *ret
= lp__printername(ctx
, lp_sub
, snum
);
4510 if (ret
== NULL
|| *ret
== '\0') {
4511 ret
= lp_const_servicename(snum
);
4518 /***********************************************************
4519 Allow daemons such as winbindd to fix their logfile name.
4520 ************************************************************/
4522 void lp_set_logfile(const char *name
)
4524 lpcfg_string_set(Globals
.ctx
, &Globals
.logfile
, name
);
4525 debug_set_logfile(name
);
4528 /*******************************************************************
4529 Return the max print jobs per queue.
4530 ********************************************************************/
4532 int lp_maxprintjobs(int snum
)
4534 int maxjobs
= lp_max_print_jobs(snum
);
4536 if (maxjobs
<= 0 || maxjobs
>= PRINT_MAX_JOBID
)
4537 maxjobs
= PRINT_MAX_JOBID
- 1;
4542 const char *lp_printcapname(void)
4544 const char *printcap_name
= lp_printcap_name();
4546 if ((printcap_name
!= NULL
) &&
4547 (printcap_name
[0] != '\0'))
4548 return printcap_name
;
4550 if (sDefault
.printing
== PRINT_CUPS
) {
4554 if (sDefault
.printing
== PRINT_BSD
)
4555 return "/etc/printcap";
4557 return PRINTCAP_NAME
;
4560 static uint32_t spoolss_state
;
4562 bool lp_disable_spoolss( void )
4564 if ( spoolss_state
== SVCCTL_STATE_UNKNOWN
)
4565 spoolss_state
= lp__disable_spoolss() ? SVCCTL_STOPPED
: SVCCTL_RUNNING
;
4567 return spoolss_state
== SVCCTL_STOPPED
? true : false;
4570 void lp_set_spoolss_state( uint32_t state
)
4572 SMB_ASSERT( (state
== SVCCTL_STOPPED
) || (state
== SVCCTL_RUNNING
) );
4574 spoolss_state
= state
;
4577 uint32_t lp_get_spoolss_state( void )
4579 return lp_disable_spoolss() ? SVCCTL_STOPPED
: SVCCTL_RUNNING
;
4582 /*******************************************************************
4583 Turn off sendfile if we find the underlying OS doesn't support it.
4584 ********************************************************************/
4586 void set_use_sendfile(int snum
, bool val
)
4588 if (LP_SNUM_OK(snum
))
4589 ServicePtrs
[snum
]->_use_sendfile
= val
;
4591 sDefault
._use_sendfile
= val
;
4594 void lp_set_mangling_method(const char *new_method
)
4596 lpcfg_string_set(Globals
.ctx
, &Globals
.mangling_method
, new_method
);
4599 /*******************************************************************
4600 Global state for POSIX pathname processing.
4601 ********************************************************************/
4603 static bool posix_pathnames
;
4605 bool lp_posix_pathnames(void)
4607 return posix_pathnames
;
4610 /*******************************************************************
4611 Change everything needed to ensure POSIX pathname processing (currently
4613 ********************************************************************/
4615 void lp_set_posix_pathnames(void)
4617 posix_pathnames
= true;
4620 /*******************************************************************
4621 Global state for POSIX lock processing - CIFS unix extensions.
4622 ********************************************************************/
4624 bool posix_default_lock_was_set
;
4625 static enum brl_flavour posix_cifsx_locktype
; /* By default 0 == WINDOWS_LOCK */
4627 enum brl_flavour
lp_posix_cifsu_locktype(files_struct
*fsp
)
4629 if (posix_default_lock_was_set
) {
4630 return posix_cifsx_locktype
;
4632 return (fsp
->posix_flags
& FSP_POSIX_FLAGS_OPEN
) ?
4633 POSIX_LOCK
: WINDOWS_LOCK
;
4637 /*******************************************************************
4638 ********************************************************************/
4640 void lp_set_posix_default_cifsx_readwrite_locktype(enum brl_flavour val
)
4642 posix_default_lock_was_set
= true;
4643 posix_cifsx_locktype
= val
;
4646 int lp_min_receive_file_size(void)
4648 int min_receivefile_size
= lp_min_receivefile_size();
4650 if (min_receivefile_size
< 0) {
4653 return min_receivefile_size
;
4656 /*******************************************************************
4657 Safe wide links checks.
4658 This helper function always verify the validity of wide links,
4659 even after a configuration file reload.
4660 ********************************************************************/
4662 void widelinks_warning(int snum
)
4664 if (lp_allow_insecure_wide_links()) {
4668 if (lp_unix_extensions() && lp_wide_links(snum
)) {
4669 DBG_ERR("Share '%s' has wide links and unix extensions enabled. "
4670 "These parameters are incompatible. "
4671 "Wide links will be disabled for this share.\n",
4672 lp_const_servicename(snum
));
4676 bool lp_widelinks(int snum
)
4678 /* wide links is always incompatible with unix extensions */
4679 if (lp_unix_extensions()) {
4681 * Unless we have "allow insecure widelinks"
4684 if (!lp_allow_insecure_wide_links()) {
4689 return lp_wide_links(snum
);
4692 int lp_server_role(void)
4694 return lp_find_server_role(lp__server_role(),
4696 lp__domain_logons(),
4697 lp_domain_master_true_or_auto());
4700 int lp_security(void)
4702 return lp_find_security(lp__server_role(),
4706 int lp_client_max_protocol(void)
4708 int client_max_protocol
= lp__client_max_protocol();
4709 if (client_max_protocol
== PROTOCOL_DEFAULT
) {
4710 return PROTOCOL_LATEST
;
4712 return client_max_protocol
;
4715 int lp_client_ipc_min_protocol(void)
4717 int client_ipc_min_protocol
= lp__client_ipc_min_protocol();
4718 if (client_ipc_min_protocol
== PROTOCOL_DEFAULT
) {
4719 client_ipc_min_protocol
= lp_client_min_protocol();
4721 if (client_ipc_min_protocol
< PROTOCOL_NT1
) {
4722 return PROTOCOL_NT1
;
4724 return client_ipc_min_protocol
;
4727 int lp_client_ipc_max_protocol(void)
4729 int client_ipc_max_protocol
= lp__client_ipc_max_protocol();
4730 if (client_ipc_max_protocol
== PROTOCOL_DEFAULT
) {
4731 return PROTOCOL_LATEST
;
4733 if (client_ipc_max_protocol
< PROTOCOL_NT1
) {
4734 return PROTOCOL_NT1
;
4736 return client_ipc_max_protocol
;
4739 int lp_client_ipc_signing(void)
4741 int client_ipc_signing
= lp__client_ipc_signing();
4742 if (client_ipc_signing
== SMB_SIGNING_DEFAULT
) {
4743 return SMB_SIGNING_REQUIRED
;
4745 return client_ipc_signing
;
4748 enum credentials_use_kerberos
lp_client_use_kerberos(void)
4750 if (lp_weak_crypto() == SAMBA_WEAK_CRYPTO_DISALLOWED
) {
4751 return CRED_USE_KERBEROS_REQUIRED
;
4754 return lp__client_use_kerberos();
4758 int lp_rpc_low_port(void)
4760 return Globals
.rpc_low_port
;
4763 int lp_rpc_high_port(void)
4765 return Globals
.rpc_high_port
;
4769 * Do not allow LanMan auth if unless NTLMv1 is also allowed
4771 * This also ensures it is disabled if NTLM is totally disabled
4773 bool lp_lanman_auth(void)
4775 enum ntlm_auth_level ntlm_auth_level
= lp_ntlm_auth();
4777 if (ntlm_auth_level
== NTLM_AUTH_ON
) {
4778 return lp__lanman_auth();
4784 struct loadparm_global
* get_globals(void)
4789 unsigned int * get_flags(void)
4791 if (flags_list
== NULL
) {
4792 flags_list
= talloc_zero_array(NULL
, unsigned int, num_parameters());
4798 enum samba_weak_crypto
lp_weak_crypto(void)
4800 if (Globals
.weak_crypto
== SAMBA_WEAK_CRYPTO_UNKNOWN
) {
4801 Globals
.weak_crypto
= SAMBA_WEAK_CRYPTO_DISALLOWED
;
4803 if (samba_gnutls_weak_crypto_allowed()) {
4804 Globals
.weak_crypto
= SAMBA_WEAK_CRYPTO_ALLOWED
;
4808 return Globals
.weak_crypto
;
4811 uint32_t lp_get_async_dns_timeout(void)
4814 * Clamp minimum async dns timeout to 1 second
4815 * as per the man page.
4817 return MAX(Globals
.async_dns_timeout
, 1);