s3:loadparm: use PROTOCOL_SMB2_02 instead of PROTOCOL_SMB2
[Samba/gebeck_regimport.git] / source3 / param / loadparm.c
blob79f1b236cadc7ea85e9508fef0d79d170af24f07
1 /*
2 Unix SMB/CIFS implementation.
3 Parameter loading functions
4 Copyright (C) Karl Auer 1993-1998
6 Largely re-written by Andrew Tridgell, September 1994
8 Copyright (C) Simo Sorce 2001
9 Copyright (C) Alexander Bokovoy 2002
10 Copyright (C) Stefan (metze) Metzmacher 2002
11 Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2003
12 Copyright (C) Michael Adam 2008
13 Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
14 Copyright (C) Andrew Bartlett 2011
16 This program is free software; you can redistribute it and/or modify
17 it under the terms of the GNU General Public License as published by
18 the Free Software Foundation; either version 3 of the License, or
19 (at your option) any later version.
21 This program is distributed in the hope that it will be useful,
22 but WITHOUT ANY WARRANTY; without even the implied warranty of
23 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
24 GNU General Public License for more details.
26 You should have received a copy of the GNU General Public License
27 along with this program. If not, see <http://www.gnu.org/licenses/>.
31 * Load parameters.
33 * This module provides suitable callback functions for the params
34 * module. It builds the internal table of service details which is
35 * then used by the rest of the server.
37 * To add a parameter:
39 * 1) add it to the global or service structure definition
40 * 2) add it to the parm_table
41 * 3) add it to the list of available functions (eg: using FN_GLOBAL_STRING())
42 * 4) If it's a global then initialise it in init_globals. If a local
43 * (ie. service) parameter then initialise it in the sDefault structure
46 * Notes:
47 * The configuration file is processed sequentially for speed. It is NOT
48 * accessed randomly as happens in 'real' Windows. For this reason, there
49 * is a fair bit of sequence-dependent code here - ie., code which assumes
50 * that certain things happen before others. In particular, the code which
51 * happens at the boundary between sections is delicately poised, so be
52 * careful!
56 #include "includes.h"
57 #include "system/filesys.h"
58 #include "util_tdb.h"
59 #include "printing.h"
60 #include "lib/smbconf/smbconf.h"
61 #include "lib/smbconf/smbconf_init.h"
62 #include "lib/param/loadparm.h"
64 #include "ads.h"
65 #include "../librpc/gen_ndr/svcctl.h"
66 #include "intl.h"
67 #include "smb_signing.h"
68 #include "dbwrap.h"
69 #include "smbldap.h"
70 #include "../lib/util/bitmap.h"
72 #ifdef HAVE_SYS_SYSCTL_H
73 #include <sys/sysctl.h>
74 #endif
76 #ifdef HAVE_HTTPCONNECTENCRYPT
77 #include <cups/http.h>
78 #endif
80 bool bLoaded = false;
82 extern userdom_struct current_user_info;
84 /* the special value for the include parameter
85 * to be interpreted not as a file name but to
86 * trigger loading of the global smb.conf options
87 * from registry. */
88 #ifndef INCLUDE_REGISTRY_NAME
89 #define INCLUDE_REGISTRY_NAME "registry"
90 #endif
92 static bool in_client = false; /* Not in the client by default */
93 static struct smbconf_csn conf_last_csn;
95 #define CONFIG_BACKEND_FILE 0
96 #define CONFIG_BACKEND_REGISTRY 1
98 static int config_backend = CONFIG_BACKEND_FILE;
100 /* some helpful bits */
101 #define LP_SNUM_OK(i) (((i) >= 0) && ((i) < iNumServices) && (ServicePtrs != NULL) && ServicePtrs[(i)]->valid)
102 #define VALID(i) (ServicePtrs != NULL && ServicePtrs[i]->valid)
104 #define USERSHARE_VALID 1
105 #define USERSHARE_PENDING_DELETE 2
107 static bool defaults_saved = false;
109 #define LOADPARM_EXTRA_GLOBALS \
110 struct parmlist_entry *param_opt; \
111 char *szRealm; \
112 char *szLogLevel; \
113 int iminreceivefile; \
114 char *szPrintcapname; \
115 int CupsEncrypt; \
116 int iPreferredMaster; \
117 int iDomainMaster; \
118 char *szLdapMachineSuffix; \
119 char *szLdapUserSuffix; \
120 char *szLdapIdmapSuffix; \
121 char *szLdapGroupSuffix; \
122 char *szStateDir; \
123 char *szCacheDir; \
124 char *szSocketAddress; \
125 char *szUsershareTemplateShare; \
126 char *szIdmapUID; \
127 char *szIdmapGID; \
128 int winbindMaxDomainConnections; \
129 int ismb2_max_credits;
131 #include "param/param_global.h"
133 static struct loadparm_global Globals;
135 /* This is a default service used to prime a services structure */
136 static struct loadparm_service sDefault =
138 .valid = true,
139 .autoloaded = false,
140 .usershare = 0,
141 .usershare_last_mod = {0, 0},
142 .szService = NULL,
143 .szPath = NULL,
144 .szUsername = NULL,
145 .szInvalidUsers = NULL,
146 .szValidUsers = NULL,
147 .szAdminUsers = NULL,
148 .szCopy = NULL,
149 .szInclude = NULL,
150 .szPreExec = NULL,
151 .szPostExec = NULL,
152 .szRootPreExec = NULL,
153 .szRootPostExec = NULL,
154 .szCupsOptions = NULL,
155 .szPrintcommand = NULL,
156 .szLpqcommand = NULL,
157 .szLprmcommand = NULL,
158 .szLppausecommand = NULL,
159 .szLpresumecommand = NULL,
160 .szQueuepausecommand = NULL,
161 .szQueueresumecommand = NULL,
162 .szPrintername = NULL,
163 .szPrintjobUsername = NULL,
164 .szDontdescend = NULL,
165 .szHostsallow = NULL,
166 .szHostsdeny = NULL,
167 .szMagicScript = NULL,
168 .szMagicOutput = NULL,
169 .szVetoFiles = NULL,
170 .szHideFiles = NULL,
171 .szVetoOplockFiles = NULL,
172 .comment = NULL,
173 .force_user = NULL,
174 .force_group = NULL,
175 .readlist = NULL,
176 .writelist = NULL,
177 .printer_admin = NULL,
178 .volume = NULL,
179 .fstype = NULL,
180 .szVfsObjects = NULL,
181 .szMSDfsProxy = NULL,
182 .szAioWriteBehind = NULL,
183 .szDfree = NULL,
184 .iMinPrintSpace = 0,
185 .iMaxPrintJobs = 1000,
186 .iMaxReportedPrintJobs = 0,
187 .iWriteCacheSize = 0,
188 .iCreate_mask = 0744,
189 .iCreate_force_mode = 0,
190 .iSecurity_mask = 0777,
191 .iSecurity_force_mode = 0,
192 .iDir_mask = 0755,
193 .iDir_force_mode = 0,
194 .iDir_Security_mask = 0777,
195 .iDir_Security_force_mode = 0,
196 .iMaxConnections = 0,
197 .iDefaultCase = CASE_LOWER,
198 .iPrinting = DEFAULT_PRINTING,
199 .iOplockContentionLimit = 2,
200 .iCSCPolicy = 0,
201 .iBlock_size = 1024,
202 .iDfreeCacheTime = 0,
203 .bPreexecClose = false,
204 .bRootpreexecClose = false,
205 .iCaseSensitive = Auto,
206 .bCasePreserve = true,
207 .bShortCasePreserve = true,
208 .bHideDotFiles = true,
209 .bHideSpecialFiles = false,
210 .bHideUnReadable = false,
211 .bHideUnWriteableFiles = false,
212 .bBrowseable = true,
213 .bAccessBasedShareEnum = false,
214 .bAvailable = true,
215 .bRead_only = true,
216 .bNo_set_dir = true,
217 .bGuest_only = false,
218 .bAdministrative_share = false,
219 .bGuest_ok = false,
220 .bPrint_ok = false,
221 .bPrintNotifyBackchannel = true,
222 .bMap_system = false,
223 .bMap_hidden = false,
224 .bMap_archive = true,
225 .bStoreDosAttributes = false,
226 .bDmapiSupport = false,
227 .bLocking = true,
228 .iStrictLocking = Auto,
229 .bPosixLocking = true,
230 .bShareModes = true,
231 .bOpLocks = true,
232 .bLevel2OpLocks = true,
233 .bOnlyUser = false,
234 .bMangledNames = true,
235 .bWidelinks = false,
236 .bSymlinks = true,
237 .bSyncAlways = false,
238 .bStrictAllocate = false,
239 .bStrictSync = false,
240 .magic_char = '~',
241 .copymap = NULL,
242 .bDeleteReadonly = false,
243 .bFakeOplocks = false,
244 .bDeleteVetoFiles = false,
245 .bDosFilemode = false,
246 .bDosFiletimes = true,
247 .bDosFiletimeResolution = false,
248 .bFakeDirCreateTimes = false,
249 .bBlockingLocks = true,
250 .bInheritPerms = false,
251 .bInheritACLS = false,
252 .bInheritOwner = false,
253 .bMSDfsRoot = false,
254 .bUseClientDriver = false,
255 .bDefaultDevmode = true,
256 .bForcePrintername = false,
257 .bNTAclSupport = true,
258 .bForceUnknownAclUser = false,
259 .bUseSendfile = false,
260 .bProfileAcls = false,
261 .bMap_acl_inherit = false,
262 .bAfs_Share = false,
263 .bEASupport = false,
264 .bAclCheckPermissions = true,
265 .bAclMapFullControl = true,
266 .bAclGroupControl = false,
267 .bChangeNotify = true,
268 .bKernelChangeNotify = true,
269 .iallocation_roundup_size = SMB_ROUNDUP_ALLOCATION_SIZE,
270 .iAioReadSize = 0,
271 .iAioWriteSize = 0,
272 .iMap_readonly = MAP_READONLY_YES,
273 #ifdef BROKEN_DIRECTORY_HANDLING
274 .iDirectoryNameCacheSize = 0,
275 #else
276 .iDirectoryNameCacheSize = 100,
277 #endif
278 .ismb_encrypt = Auto,
279 .param_opt = NULL,
280 .dummy = ""
283 /* local variables */
284 static struct loadparm_service **ServicePtrs = NULL;
285 static int iNumServices = 0;
286 static int iServiceIndex = 0;
287 static struct db_context *ServiceHash;
288 static int *invalid_services = NULL;
289 static int num_invalid_services = 0;
290 static bool bInGlobalSection = true;
291 static bool bGlobalOnly = false;
293 #define NUMPARAMETERS (sizeof(parm_table) / sizeof(struct parm_struct))
295 /* prototypes for the special type handlers */
296 static bool handle_include(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr);
297 static bool handle_copy(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr);
298 static bool handle_idmap_backend(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr);
299 static bool handle_idmap_uid(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr);
300 static bool handle_idmap_gid(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr);
301 static bool handle_debug_list(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr );
302 static bool handle_realm(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr );
303 static bool handle_netbios_aliases(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr );
304 static bool handle_charset(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr );
305 static bool handle_dos_charset(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr );
306 static bool handle_printing(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr);
307 static bool handle_ldap_debug_level(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr);
309 static void set_allowed_client_auth(void);
311 static void add_to_file_list(const char *fname, const char *subfname);
312 static bool lp_set_cmdline_helper(const char *pszParmName, const char *pszParmValue, bool store_values);
314 static const struct enum_list enum_protocol[] = {
315 {PROTOCOL_SMB2_02, "SMB2"},
316 {PROTOCOL_SMB2_02, "SMB2_02"},
317 {PROTOCOL_NT1, "NT1"},
318 {PROTOCOL_LANMAN2, "LANMAN2"},
319 {PROTOCOL_LANMAN1, "LANMAN1"},
320 {PROTOCOL_CORE, "CORE"},
321 {PROTOCOL_COREPLUS, "COREPLUS"},
322 {PROTOCOL_COREPLUS, "CORE+"},
323 {-1, NULL}
326 static const struct enum_list enum_security[] = {
327 {SEC_SHARE, "SHARE"},
328 {SEC_USER, "USER"},
329 {SEC_SERVER, "SERVER"},
330 {SEC_DOMAIN, "DOMAIN"},
331 #ifdef HAVE_ADS
332 {SEC_ADS, "ADS"},
333 #endif
334 {-1, NULL}
337 static const struct enum_list enum_printing[] = {
338 {PRINT_SYSV, "sysv"},
339 {PRINT_AIX, "aix"},
340 {PRINT_HPUX, "hpux"},
341 {PRINT_BSD, "bsd"},
342 {PRINT_QNX, "qnx"},
343 {PRINT_PLP, "plp"},
344 {PRINT_LPRNG, "lprng"},
345 {PRINT_CUPS, "cups"},
346 {PRINT_IPRINT, "iprint"},
347 {PRINT_LPRNT, "nt"},
348 {PRINT_LPROS2, "os2"},
349 #if defined(DEVELOPER) || defined(ENABLE_BUILD_FARM_HACKS)
350 {PRINT_TEST, "test"},
351 {PRINT_VLP, "vlp"},
352 #endif /* DEVELOPER */
353 {-1, NULL}
356 static const struct enum_list enum_ldap_sasl_wrapping[] = {
357 {0, "plain"},
358 {ADS_AUTH_SASL_SIGN, "sign"},
359 {ADS_AUTH_SASL_SEAL, "seal"},
360 {-1, NULL}
363 static const struct enum_list enum_ldap_ssl[] = {
364 {LDAP_SSL_OFF, "no"},
365 {LDAP_SSL_OFF, "off"},
366 {LDAP_SSL_START_TLS, "start tls"},
367 {LDAP_SSL_START_TLS, "start_tls"},
368 {-1, NULL}
371 /* LDAP Dereferencing Alias types */
372 #define SAMBA_LDAP_DEREF_NEVER 0
373 #define SAMBA_LDAP_DEREF_SEARCHING 1
374 #define SAMBA_LDAP_DEREF_FINDING 2
375 #define SAMBA_LDAP_DEREF_ALWAYS 3
377 static const struct enum_list enum_ldap_deref[] = {
378 {SAMBA_LDAP_DEREF_NEVER, "never"},
379 {SAMBA_LDAP_DEREF_SEARCHING, "searching"},
380 {SAMBA_LDAP_DEREF_FINDING, "finding"},
381 {SAMBA_LDAP_DEREF_ALWAYS, "always"},
382 {-1, "auto"}
385 static const struct enum_list enum_ldap_passwd_sync[] = {
386 {LDAP_PASSWD_SYNC_OFF, "no"},
387 {LDAP_PASSWD_SYNC_OFF, "off"},
388 {LDAP_PASSWD_SYNC_ON, "yes"},
389 {LDAP_PASSWD_SYNC_ON, "on"},
390 {LDAP_PASSWD_SYNC_ONLY, "only"},
391 {-1, NULL}
394 static const struct enum_list enum_map_readonly[] = {
395 {MAP_READONLY_NO, "no"},
396 {MAP_READONLY_NO, "false"},
397 {MAP_READONLY_NO, "0"},
398 {MAP_READONLY_YES, "yes"},
399 {MAP_READONLY_YES, "true"},
400 {MAP_READONLY_YES, "1"},
401 {MAP_READONLY_PERMISSIONS, "permissions"},
402 {MAP_READONLY_PERMISSIONS, "perms"},
403 {-1, NULL}
406 static const struct enum_list enum_case[] = {
407 {CASE_LOWER, "lower"},
408 {CASE_UPPER, "upper"},
409 {-1, NULL}
414 static const struct enum_list enum_bool_auto[] = {
415 {false, "No"},
416 {false, "False"},
417 {false, "0"},
418 {true, "Yes"},
419 {true, "True"},
420 {true, "1"},
421 {Auto, "Auto"},
422 {-1, NULL}
425 static const struct enum_list enum_csc_policy[] = {
426 {CSC_POLICY_MANUAL, "manual"},
427 {CSC_POLICY_DOCUMENTS, "documents"},
428 {CSC_POLICY_PROGRAMS, "programs"},
429 {CSC_POLICY_DISABLE, "disable"},
430 {-1, NULL}
433 /* SMB signing types. */
434 static const struct enum_list enum_smb_signing_vals[] = {
435 {false, "No"},
436 {false, "False"},
437 {false, "0"},
438 {false, "Off"},
439 {false, "disabled"},
440 {true, "Yes"},
441 {true, "True"},
442 {true, "1"},
443 {true, "On"},
444 {true, "enabled"},
445 {Auto, "auto"},
446 {Required, "required"},
447 {Required, "mandatory"},
448 {Required, "force"},
449 {Required, "forced"},
450 {Required, "enforced"},
451 {-1, NULL}
454 /* ACL compatibility options. */
455 static const struct enum_list enum_acl_compat_vals[] = {
456 { ACL_COMPAT_AUTO, "auto" },
457 { ACL_COMPAT_WINNT, "winnt" },
458 { ACL_COMPAT_WIN2K, "win2k" },
459 { -1, NULL}
463 Do you want session setups at user level security with a invalid
464 password to be rejected or allowed in as guest? WinNT rejects them
465 but it can be a pain as it means "net view" needs to use a password
467 You have 3 choices in the setting of map_to_guest:
469 "Never" means session setups with an invalid password
470 are rejected. This is the default.
472 "Bad User" means session setups with an invalid password
473 are rejected, unless the username does not exist, in which case it
474 is treated as a guest login
476 "Bad Password" means session setups with an invalid password
477 are treated as a guest login
479 Note that map_to_guest only has an effect in user or server
480 level security.
483 static const struct enum_list enum_map_to_guest[] = {
484 {NEVER_MAP_TO_GUEST, "Never"},
485 {MAP_TO_GUEST_ON_BAD_USER, "Bad User"},
486 {MAP_TO_GUEST_ON_BAD_PASSWORD, "Bad Password"},
487 {MAP_TO_GUEST_ON_BAD_UID, "Bad Uid"},
488 {-1, NULL}
491 /* Config backend options */
493 static const struct enum_list enum_config_backend[] = {
494 {CONFIG_BACKEND_FILE, "file"},
495 {CONFIG_BACKEND_REGISTRY, "registry"},
496 {-1, NULL}
499 /* ADS kerberos ticket verification options */
501 static const struct enum_list enum_kerberos_method[] = {
502 {KERBEROS_VERIFY_SECRETS, "default"},
503 {KERBEROS_VERIFY_SECRETS, "secrets only"},
504 {KERBEROS_VERIFY_SYSTEM_KEYTAB, "system keytab"},
505 {KERBEROS_VERIFY_DEDICATED_KEYTAB, "dedicated keytab"},
506 {KERBEROS_VERIFY_SECRETS_AND_KEYTAB, "secrets and keytab"},
507 {-1, NULL}
510 /* Note: We do not initialise the defaults union - it is not allowed in ANSI C
512 * The FLAG_HIDE is explicit. Parameters set this way do NOT appear in any edit
513 * screen in SWAT. This is used to exclude parameters as well as to squash all
514 * parameters that have been duplicated by pseudonyms.
516 * NOTE: To display a parameter in BASIC view set FLAG_BASIC
517 * Any parameter that does NOT have FLAG_ADVANCED will not disply at all
518 * Set FLAG_SHARE and FLAG_PRINT to specifically display parameters in
519 * respective views.
521 * NOTE2: Handling of duplicated (synonym) parameters:
522 * Only the first occurance of a parameter should be enabled by FLAG_BASIC
523 * and/or FLAG_ADVANCED. All duplicates following the first mention should be
524 * set to FLAG_HIDE. ie: Make you must place the parameter that has the preferred
525 * name first, and all synonyms must follow it with the FLAG_HIDE attribute.
528 #define GLOBAL_VAR(name) offsetof(struct loadparm_global, name)
529 #define LOCAL_VAR(name) offsetof(struct loadparm_service, name)
531 static struct parm_struct parm_table[] = {
532 {N_("Base Options"), P_SEP, P_SEPARATOR},
535 .label = "dos charset",
536 .type = P_STRING,
537 .p_class = P_GLOBAL,
538 .offset = GLOBAL_VAR(dos_charset),
539 .special = handle_dos_charset,
540 .enum_list = NULL,
541 .flags = FLAG_ADVANCED
544 .label = "unix charset",
545 .type = P_STRING,
546 .p_class = P_GLOBAL,
547 .offset = GLOBAL_VAR(unix_charset),
548 .special = handle_charset,
549 .enum_list = NULL,
550 .flags = FLAG_ADVANCED
553 .label = "comment",
554 .type = P_STRING,
555 .p_class = P_LOCAL,
556 .offset = LOCAL_VAR(comment),
557 .special = NULL,
558 .enum_list = NULL,
559 .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT
562 .label = "path",
563 .type = P_STRING,
564 .p_class = P_LOCAL,
565 .offset = LOCAL_VAR(szPath),
566 .special = NULL,
567 .enum_list = NULL,
568 .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT,
571 .label = "directory",
572 .type = P_STRING,
573 .p_class = P_LOCAL,
574 .offset = LOCAL_VAR(szPath),
575 .special = NULL,
576 .enum_list = NULL,
577 .flags = FLAG_HIDE,
580 .label = "workgroup",
581 .type = P_USTRING,
582 .p_class = P_GLOBAL,
583 .offset = GLOBAL_VAR(szWorkgroup),
584 .special = NULL,
585 .enum_list = NULL,
586 .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD,
589 .label = "realm",
590 .type = P_USTRING,
591 .p_class = P_GLOBAL,
592 .offset = GLOBAL_VAR(szRealm),
593 .special = handle_realm,
594 .enum_list = NULL,
595 .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD,
598 .label = "netbios name",
599 .type = P_USTRING,
600 .p_class = P_GLOBAL,
601 .offset = GLOBAL_VAR(szNetbiosName),
602 .special = NULL,
603 .enum_list = NULL,
604 .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD,
607 .label = "netbios aliases",
608 .type = P_LIST,
609 .p_class = P_GLOBAL,
610 .offset = GLOBAL_VAR(szNetbiosAliases),
611 .special = handle_netbios_aliases,
612 .enum_list = NULL,
613 .flags = FLAG_ADVANCED,
616 .label = "netbios scope",
617 .type = P_USTRING,
618 .p_class = P_GLOBAL,
619 .offset = GLOBAL_VAR(szNetbiosScope),
620 .special = NULL,
621 .enum_list = NULL,
622 .flags = FLAG_ADVANCED,
625 .label = "server string",
626 .type = P_STRING,
627 .p_class = P_GLOBAL,
628 .offset = GLOBAL_VAR(szServerString),
629 .special = NULL,
630 .enum_list = NULL,
631 .flags = FLAG_BASIC | FLAG_ADVANCED,
634 .label = "interfaces",
635 .type = P_LIST,
636 .p_class = P_GLOBAL,
637 .offset = GLOBAL_VAR(szInterfaces),
638 .special = NULL,
639 .enum_list = NULL,
640 .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD,
643 .label = "bind interfaces only",
644 .type = P_BOOL,
645 .p_class = P_GLOBAL,
646 .offset = GLOBAL_VAR(bBindInterfacesOnly),
647 .special = NULL,
648 .enum_list = NULL,
649 .flags = FLAG_ADVANCED | FLAG_WIZARD,
652 .label = "config backend",
653 .type = P_ENUM,
654 .p_class = P_GLOBAL,
655 .offset = GLOBAL_VAR(ConfigBackend),
656 .special = NULL,
657 .enum_list = enum_config_backend,
658 .flags = FLAG_HIDE|FLAG_ADVANCED|FLAG_META,
661 {N_("Security Options"), P_SEP, P_SEPARATOR},
664 .label = "security",
665 .type = P_ENUM,
666 .p_class = P_GLOBAL,
667 .offset = GLOBAL_VAR(security),
668 .special = NULL,
669 .enum_list = enum_security,
670 .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD,
673 .label = "auth methods",
674 .type = P_LIST,
675 .p_class = P_GLOBAL,
676 .offset = GLOBAL_VAR(AuthMethods),
677 .special = NULL,
678 .enum_list = NULL,
679 .flags = FLAG_ADVANCED,
682 .label = "encrypt passwords",
683 .type = P_BOOL,
684 .p_class = P_GLOBAL,
685 .offset = GLOBAL_VAR(bEncryptPasswords),
686 .special = NULL,
687 .enum_list = NULL,
688 .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD,
691 .label = "client schannel",
692 .type = P_ENUM,
693 .p_class = P_GLOBAL,
694 .offset = GLOBAL_VAR(clientSchannel),
695 .special = NULL,
696 .enum_list = enum_bool_auto,
697 .flags = FLAG_BASIC | FLAG_ADVANCED,
700 .label = "server schannel",
701 .type = P_ENUM,
702 .p_class = P_GLOBAL,
703 .offset = GLOBAL_VAR(serverSchannel),
704 .special = NULL,
705 .enum_list = enum_bool_auto,
706 .flags = FLAG_BASIC | FLAG_ADVANCED,
709 .label = "allow trusted domains",
710 .type = P_BOOL,
711 .p_class = P_GLOBAL,
712 .offset = GLOBAL_VAR(bAllowTrustedDomains),
713 .special = NULL,
714 .enum_list = NULL,
715 .flags = FLAG_ADVANCED,
718 .label = "map to guest",
719 .type = P_ENUM,
720 .p_class = P_GLOBAL,
721 .offset = GLOBAL_VAR(map_to_guest),
722 .special = NULL,
723 .enum_list = enum_map_to_guest,
724 .flags = FLAG_ADVANCED,
727 .label = "null passwords",
728 .type = P_BOOL,
729 .p_class = P_GLOBAL,
730 .offset = GLOBAL_VAR(bNullPasswords),
731 .special = NULL,
732 .enum_list = NULL,
733 .flags = FLAG_ADVANCED | FLAG_DEPRECATED,
736 .label = "obey pam restrictions",
737 .type = P_BOOL,
738 .p_class = P_GLOBAL,
739 .offset = GLOBAL_VAR(bObeyPamRestrictions),
740 .special = NULL,
741 .enum_list = NULL,
742 .flags = FLAG_ADVANCED,
745 .label = "password server",
746 .type = P_STRING,
747 .p_class = P_GLOBAL,
748 .offset = GLOBAL_VAR(szPasswordServer),
749 .special = NULL,
750 .enum_list = NULL,
751 .flags = FLAG_ADVANCED | FLAG_WIZARD,
754 .label = "smb passwd file",
755 .type = P_STRING,
756 .p_class = P_GLOBAL,
757 .offset = GLOBAL_VAR(szSMBPasswdFile),
758 .special = NULL,
759 .enum_list = NULL,
760 .flags = FLAG_ADVANCED,
763 .label = "private dir",
764 .type = P_STRING,
765 .p_class = P_GLOBAL,
766 .offset = GLOBAL_VAR(szPrivateDir),
767 .special = NULL,
768 .enum_list = NULL,
769 .flags = FLAG_ADVANCED,
772 .label = "passdb backend",
773 .type = P_STRING,
774 .p_class = P_GLOBAL,
775 .offset = GLOBAL_VAR(szPassdbBackend),
776 .special = NULL,
777 .enum_list = NULL,
778 .flags = FLAG_ADVANCED | FLAG_WIZARD,
781 .label = "algorithmic rid base",
782 .type = P_INTEGER,
783 .p_class = P_GLOBAL,
784 .offset = GLOBAL_VAR(AlgorithmicRidBase),
785 .special = NULL,
786 .enum_list = NULL,
787 .flags = FLAG_ADVANCED,
790 .label = "root directory",
791 .type = P_STRING,
792 .p_class = P_GLOBAL,
793 .offset = GLOBAL_VAR(szRootdir),
794 .special = NULL,
795 .enum_list = NULL,
796 .flags = FLAG_ADVANCED,
799 .label = "root dir",
800 .type = P_STRING,
801 .p_class = P_GLOBAL,
802 .offset = GLOBAL_VAR(szRootdir),
803 .special = NULL,
804 .enum_list = NULL,
805 .flags = FLAG_HIDE,
808 .label = "root",
809 .type = P_STRING,
810 .p_class = P_GLOBAL,
811 .offset = GLOBAL_VAR(szRootdir),
812 .special = NULL,
813 .enum_list = NULL,
814 .flags = FLAG_HIDE,
817 .label = "guest account",
818 .type = P_STRING,
819 .p_class = P_GLOBAL,
820 .offset = GLOBAL_VAR(szGuestaccount),
821 .special = NULL,
822 .enum_list = NULL,
823 .flags = FLAG_BASIC | FLAG_ADVANCED,
826 .label = "enable privileges",
827 .type = P_BOOL,
828 .p_class = P_GLOBAL,
829 .offset = GLOBAL_VAR(bEnablePrivileges),
830 .special = NULL,
831 .enum_list = NULL,
832 .flags = FLAG_ADVANCED | FLAG_DEPRECATED,
836 .label = "pam password change",
837 .type = P_BOOL,
838 .p_class = P_GLOBAL,
839 .offset = GLOBAL_VAR(bPamPasswordChange),
840 .special = NULL,
841 .enum_list = NULL,
842 .flags = FLAG_ADVANCED,
845 .label = "passwd program",
846 .type = P_STRING,
847 .p_class = P_GLOBAL,
848 .offset = GLOBAL_VAR(szPasswdProgram),
849 .special = NULL,
850 .enum_list = NULL,
851 .flags = FLAG_ADVANCED,
854 .label = "passwd chat",
855 .type = P_STRING,
856 .p_class = P_GLOBAL,
857 .offset = GLOBAL_VAR(szPasswdChat),
858 .special = NULL,
859 .enum_list = NULL,
860 .flags = FLAG_ADVANCED,
863 .label = "passwd chat debug",
864 .type = P_BOOL,
865 .p_class = P_GLOBAL,
866 .offset = GLOBAL_VAR(bPasswdChatDebug),
867 .special = NULL,
868 .enum_list = NULL,
869 .flags = FLAG_ADVANCED,
872 .label = "passwd chat timeout",
873 .type = P_INTEGER,
874 .p_class = P_GLOBAL,
875 .offset = GLOBAL_VAR(iPasswdChatTimeout),
876 .special = NULL,
877 .enum_list = NULL,
878 .flags = FLAG_ADVANCED,
881 .label = "check password script",
882 .type = P_STRING,
883 .p_class = P_GLOBAL,
884 .offset = GLOBAL_VAR(szCheckPasswordScript),
885 .special = NULL,
886 .enum_list = NULL,
887 .flags = FLAG_ADVANCED,
890 .label = "username map",
891 .type = P_STRING,
892 .p_class = P_GLOBAL,
893 .offset = GLOBAL_VAR(szUsernameMap),
894 .special = NULL,
895 .enum_list = NULL,
896 .flags = FLAG_ADVANCED,
899 .label = "password level",
900 .type = P_INTEGER,
901 .p_class = P_GLOBAL,
902 .offset = GLOBAL_VAR(pwordlevel),
903 .special = NULL,
904 .enum_list = NULL,
905 .flags = FLAG_ADVANCED | FLAG_DEPRECATED,
908 .label = "username level",
909 .type = P_INTEGER,
910 .p_class = P_GLOBAL,
911 .offset = GLOBAL_VAR(unamelevel),
912 .special = NULL,
913 .enum_list = NULL,
914 .flags = FLAG_ADVANCED,
917 .label = "unix password sync",
918 .type = P_BOOL,
919 .p_class = P_GLOBAL,
920 .offset = GLOBAL_VAR(bUnixPasswdSync),
921 .special = NULL,
922 .enum_list = NULL,
923 .flags = FLAG_ADVANCED,
926 .label = "restrict anonymous",
927 .type = P_INTEGER,
928 .p_class = P_GLOBAL,
929 .offset = GLOBAL_VAR(restrict_anonymous),
930 .special = NULL,
931 .enum_list = NULL,
932 .flags = FLAG_ADVANCED,
935 .label = "lanman auth",
936 .type = P_BOOL,
937 .p_class = P_GLOBAL,
938 .offset = GLOBAL_VAR(bLanmanAuth),
939 .special = NULL,
940 .enum_list = NULL,
941 .flags = FLAG_ADVANCED,
944 .label = "ntlm auth",
945 .type = P_BOOL,
946 .p_class = P_GLOBAL,
947 .offset = GLOBAL_VAR(bNTLMAuth),
948 .special = NULL,
949 .enum_list = NULL,
950 .flags = FLAG_ADVANCED,
953 .label = "client NTLMv2 auth",
954 .type = P_BOOL,
955 .p_class = P_GLOBAL,
956 .offset = GLOBAL_VAR(bClientNTLMv2Auth),
957 .special = NULL,
958 .enum_list = NULL,
959 .flags = FLAG_ADVANCED,
962 .label = "client lanman auth",
963 .type = P_BOOL,
964 .p_class = P_GLOBAL,
965 .offset = GLOBAL_VAR(bClientLanManAuth),
966 .special = NULL,
967 .enum_list = NULL,
968 .flags = FLAG_ADVANCED,
971 .label = "client plaintext auth",
972 .type = P_BOOL,
973 .p_class = P_GLOBAL,
974 .offset = GLOBAL_VAR(bClientPlaintextAuth),
975 .special = NULL,
976 .enum_list = NULL,
977 .flags = FLAG_ADVANCED,
980 .label = "client use spnego principal",
981 .type = P_BOOL,
982 .p_class = P_GLOBAL,
983 .offset = GLOBAL_VAR(client_use_spnego_principal),
984 .special = NULL,
985 .enum_list = NULL,
986 .flags = FLAG_ADVANCED,
989 .label = "send spnego principal",
990 .type = P_BOOL,
991 .p_class = P_GLOBAL,
992 .offset = GLOBAL_VAR(send_spnego_principal),
993 .special = NULL,
994 .enum_list = NULL,
995 .flags = FLAG_ADVANCED,
998 .label = "username",
999 .type = P_STRING,
1000 .p_class = P_LOCAL,
1001 .offset = LOCAL_VAR(szUsername),
1002 .special = NULL,
1003 .enum_list = NULL,
1004 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE | FLAG_DEPRECATED,
1007 .label = "user",
1008 .type = P_STRING,
1009 .p_class = P_LOCAL,
1010 .offset = LOCAL_VAR(szUsername),
1011 .special = NULL,
1012 .enum_list = NULL,
1013 .flags = FLAG_HIDE,
1016 .label = "users",
1017 .type = P_STRING,
1018 .p_class = P_LOCAL,
1019 .offset = LOCAL_VAR(szUsername),
1020 .special = NULL,
1021 .enum_list = NULL,
1022 .flags = FLAG_HIDE,
1025 .label = "invalid users",
1026 .type = P_LIST,
1027 .p_class = P_LOCAL,
1028 .offset = LOCAL_VAR(szInvalidUsers),
1029 .special = NULL,
1030 .enum_list = NULL,
1031 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
1034 .label = "valid users",
1035 .type = P_LIST,
1036 .p_class = P_LOCAL,
1037 .offset = LOCAL_VAR(szValidUsers),
1038 .special = NULL,
1039 .enum_list = NULL,
1040 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
1043 .label = "admin users",
1044 .type = P_LIST,
1045 .p_class = P_LOCAL,
1046 .offset = LOCAL_VAR(szAdminUsers),
1047 .special = NULL,
1048 .enum_list = NULL,
1049 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
1052 .label = "read list",
1053 .type = P_LIST,
1054 .p_class = P_LOCAL,
1055 .offset = LOCAL_VAR(readlist),
1056 .special = NULL,
1057 .enum_list = NULL,
1058 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
1061 .label = "write list",
1062 .type = P_LIST,
1063 .p_class = P_LOCAL,
1064 .offset = LOCAL_VAR(writelist),
1065 .special = NULL,
1066 .enum_list = NULL,
1067 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
1070 .label = "printer admin",
1071 .type = P_LIST,
1072 .p_class = P_LOCAL,
1073 .offset = LOCAL_VAR(printer_admin),
1074 .special = NULL,
1075 .enum_list = NULL,
1076 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_PRINT | FLAG_DEPRECATED,
1079 .label = "force user",
1080 .type = P_STRING,
1081 .p_class = P_LOCAL,
1082 .offset = LOCAL_VAR(force_user),
1083 .special = NULL,
1084 .enum_list = NULL,
1085 .flags = FLAG_ADVANCED | FLAG_SHARE,
1088 .label = "force group",
1089 .type = P_STRING,
1090 .p_class = P_LOCAL,
1091 .offset = LOCAL_VAR(force_group),
1092 .special = NULL,
1093 .enum_list = NULL,
1094 .flags = FLAG_ADVANCED | FLAG_SHARE,
1097 .label = "group",
1098 .type = P_STRING,
1099 .p_class = P_LOCAL,
1100 .offset = LOCAL_VAR(force_group),
1101 .special = NULL,
1102 .enum_list = NULL,
1103 .flags = FLAG_ADVANCED,
1106 .label = "read only",
1107 .type = P_BOOL,
1108 .p_class = P_LOCAL,
1109 .offset = LOCAL_VAR(bRead_only),
1110 .special = NULL,
1111 .enum_list = NULL,
1112 .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE,
1115 .label = "write ok",
1116 .type = P_BOOLREV,
1117 .p_class = P_LOCAL,
1118 .offset = LOCAL_VAR(bRead_only),
1119 .special = NULL,
1120 .enum_list = NULL,
1121 .flags = FLAG_HIDE,
1124 .label = "writeable",
1125 .type = P_BOOLREV,
1126 .p_class = P_LOCAL,
1127 .offset = LOCAL_VAR(bRead_only),
1128 .special = NULL,
1129 .enum_list = NULL,
1130 .flags = FLAG_HIDE,
1133 .label = "writable",
1134 .type = P_BOOLREV,
1135 .p_class = P_LOCAL,
1136 .offset = LOCAL_VAR(bRead_only),
1137 .special = NULL,
1138 .enum_list = NULL,
1139 .flags = FLAG_HIDE,
1142 .label = "acl check permissions",
1143 .type = P_BOOL,
1144 .p_class = P_LOCAL,
1145 .offset = LOCAL_VAR(bAclCheckPermissions),
1146 .special = NULL,
1147 .enum_list = NULL,
1148 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
1151 .label = "acl group control",
1152 .type = P_BOOL,
1153 .p_class = P_LOCAL,
1154 .offset = LOCAL_VAR(bAclGroupControl),
1155 .special = NULL,
1156 .enum_list = NULL,
1157 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
1160 .label = "acl map full control",
1161 .type = P_BOOL,
1162 .p_class = P_LOCAL,
1163 .offset = LOCAL_VAR(bAclMapFullControl),
1164 .special = NULL,
1165 .enum_list = NULL,
1166 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
1169 .label = "create mask",
1170 .type = P_OCTAL,
1171 .p_class = P_LOCAL,
1172 .offset = LOCAL_VAR(iCreate_mask),
1173 .special = NULL,
1174 .enum_list = NULL,
1175 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
1178 .label = "create mode",
1179 .type = P_OCTAL,
1180 .p_class = P_LOCAL,
1181 .offset = LOCAL_VAR(iCreate_mask),
1182 .special = NULL,
1183 .enum_list = NULL,
1184 .flags = FLAG_HIDE,
1187 .label = "force create mode",
1188 .type = P_OCTAL,
1189 .p_class = P_LOCAL,
1190 .offset = LOCAL_VAR(iCreate_force_mode),
1191 .special = NULL,
1192 .enum_list = NULL,
1193 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
1196 .label = "security mask",
1197 .type = P_OCTAL,
1198 .p_class = P_LOCAL,
1199 .offset = LOCAL_VAR(iSecurity_mask),
1200 .special = NULL,
1201 .enum_list = NULL,
1202 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
1205 .label = "force security mode",
1206 .type = P_OCTAL,
1207 .p_class = P_LOCAL,
1208 .offset = LOCAL_VAR(iSecurity_force_mode),
1209 .special = NULL,
1210 .enum_list = NULL,
1211 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
1214 .label = "directory mask",
1215 .type = P_OCTAL,
1216 .p_class = P_LOCAL,
1217 .offset = LOCAL_VAR(iDir_mask),
1218 .special = NULL,
1219 .enum_list = NULL,
1220 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
1223 .label = "directory mode",
1224 .type = P_OCTAL,
1225 .p_class = P_LOCAL,
1226 .offset = LOCAL_VAR(iDir_mask),
1227 .special = NULL,
1228 .enum_list = NULL,
1229 .flags = FLAG_ADVANCED | FLAG_GLOBAL,
1232 .label = "force directory mode",
1233 .type = P_OCTAL,
1234 .p_class = P_LOCAL,
1235 .offset = LOCAL_VAR(iDir_force_mode),
1236 .special = NULL,
1237 .enum_list = NULL,
1238 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
1241 .label = "directory security mask",
1242 .type = P_OCTAL,
1243 .p_class = P_LOCAL,
1244 .offset = LOCAL_VAR(iDir_Security_mask),
1245 .special = NULL,
1246 .enum_list = NULL,
1247 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
1250 .label = "force directory security mode",
1251 .type = P_OCTAL,
1252 .p_class = P_LOCAL,
1253 .offset = LOCAL_VAR(iDir_Security_force_mode),
1254 .special = NULL,
1255 .enum_list = NULL,
1256 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
1259 .label = "force unknown acl user",
1260 .type = P_BOOL,
1261 .p_class = P_LOCAL,
1262 .offset = LOCAL_VAR(bForceUnknownAclUser),
1263 .special = NULL,
1264 .enum_list = NULL,
1265 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
1268 .label = "inherit permissions",
1269 .type = P_BOOL,
1270 .p_class = P_LOCAL,
1271 .offset = LOCAL_VAR(bInheritPerms),
1272 .special = NULL,
1273 .enum_list = NULL,
1274 .flags = FLAG_ADVANCED | FLAG_SHARE,
1277 .label = "inherit acls",
1278 .type = P_BOOL,
1279 .p_class = P_LOCAL,
1280 .offset = LOCAL_VAR(bInheritACLS),
1281 .special = NULL,
1282 .enum_list = NULL,
1283 .flags = FLAG_ADVANCED | FLAG_SHARE,
1286 .label = "inherit owner",
1287 .type = P_BOOL,
1288 .p_class = P_LOCAL,
1289 .offset = LOCAL_VAR(bInheritOwner),
1290 .special = NULL,
1291 .enum_list = NULL,
1292 .flags = FLAG_ADVANCED | FLAG_SHARE,
1295 .label = "guest only",
1296 .type = P_BOOL,
1297 .p_class = P_LOCAL,
1298 .offset = LOCAL_VAR(bGuest_only),
1299 .special = NULL,
1300 .enum_list = NULL,
1301 .flags = FLAG_ADVANCED | FLAG_SHARE,
1304 .label = "only guest",
1305 .type = P_BOOL,
1306 .p_class = P_LOCAL,
1307 .offset = LOCAL_VAR(bGuest_only),
1308 .special = NULL,
1309 .enum_list = NULL,
1310 .flags = FLAG_HIDE,
1313 .label = "administrative share",
1314 .type = P_BOOL,
1315 .p_class = P_LOCAL,
1316 .offset = LOCAL_VAR(bAdministrative_share),
1317 .special = NULL,
1318 .enum_list = NULL,
1319 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT,
1323 .label = "guest ok",
1324 .type = P_BOOL,
1325 .p_class = P_LOCAL,
1326 .offset = LOCAL_VAR(bGuest_ok),
1327 .special = NULL,
1328 .enum_list = NULL,
1329 .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT,
1332 .label = "public",
1333 .type = P_BOOL,
1334 .p_class = P_LOCAL,
1335 .offset = LOCAL_VAR(bGuest_ok),
1336 .special = NULL,
1337 .enum_list = NULL,
1338 .flags = FLAG_HIDE,
1341 .label = "only user",
1342 .type = P_BOOL,
1343 .p_class = P_LOCAL,
1344 .offset = LOCAL_VAR(bOnlyUser),
1345 .special = NULL,
1346 .enum_list = NULL,
1347 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_DEPRECATED,
1350 .label = "hosts allow",
1351 .type = P_LIST,
1352 .p_class = P_LOCAL,
1353 .offset = LOCAL_VAR(szHostsallow),
1354 .special = NULL,
1355 .enum_list = NULL,
1356 .flags = FLAG_GLOBAL | FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT,
1359 .label = "allow hosts",
1360 .type = P_LIST,
1361 .p_class = P_LOCAL,
1362 .offset = LOCAL_VAR(szHostsallow),
1363 .special = NULL,
1364 .enum_list = NULL,
1365 .flags = FLAG_HIDE,
1368 .label = "hosts deny",
1369 .type = P_LIST,
1370 .p_class = P_LOCAL,
1371 .offset = LOCAL_VAR(szHostsdeny),
1372 .special = NULL,
1373 .enum_list = NULL,
1374 .flags = FLAG_GLOBAL | FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT,
1377 .label = "deny hosts",
1378 .type = P_LIST,
1379 .p_class = P_LOCAL,
1380 .offset = LOCAL_VAR(szHostsdeny),
1381 .special = NULL,
1382 .enum_list = NULL,
1383 .flags = FLAG_HIDE,
1386 .label = "preload modules",
1387 .type = P_LIST,
1388 .p_class = P_GLOBAL,
1389 .offset = GLOBAL_VAR(szPreloadModules),
1390 .special = NULL,
1391 .enum_list = NULL,
1392 .flags = FLAG_ADVANCED | FLAG_GLOBAL,
1395 .label = "dedicated keytab file",
1396 .type = P_STRING,
1397 .p_class = P_GLOBAL,
1398 .offset = GLOBAL_VAR(szDedicatedKeytabFile),
1399 .special = NULL,
1400 .enum_list = NULL,
1401 .flags = FLAG_ADVANCED,
1404 .label = "kerberos method",
1405 .type = P_ENUM,
1406 .p_class = P_GLOBAL,
1407 .offset = GLOBAL_VAR(iKerberosMethod),
1408 .special = NULL,
1409 .enum_list = enum_kerberos_method,
1410 .flags = FLAG_ADVANCED,
1413 .label = "map untrusted to domain",
1414 .type = P_BOOL,
1415 .p_class = P_GLOBAL,
1416 .offset = GLOBAL_VAR(bMapUntrustedToDomain),
1417 .special = NULL,
1418 .enum_list = NULL,
1419 .flags = FLAG_ADVANCED | FLAG_GLOBAL,
1423 {N_("Logging Options"), P_SEP, P_SEPARATOR},
1426 .label = "log level",
1427 .type = P_STRING,
1428 .p_class = P_GLOBAL,
1429 .offset = GLOBAL_VAR(szLogLevel),
1430 .special = handle_debug_list,
1431 .enum_list = NULL,
1432 .flags = FLAG_ADVANCED,
1435 .label = "debuglevel",
1436 .type = P_STRING,
1437 .p_class = P_GLOBAL,
1438 .offset = GLOBAL_VAR(szLogLevel),
1439 .special = handle_debug_list,
1440 .enum_list = NULL,
1441 .flags = FLAG_HIDE,
1444 .label = "syslog",
1445 .type = P_INTEGER,
1446 .p_class = P_GLOBAL,
1447 .offset = GLOBAL_VAR(syslog),
1448 .special = NULL,
1449 .enum_list = NULL,
1450 .flags = FLAG_ADVANCED,
1453 .label = "syslog only",
1454 .type = P_BOOL,
1455 .p_class = P_GLOBAL,
1456 .offset = GLOBAL_VAR(bSyslogOnly),
1457 .special = NULL,
1458 .enum_list = NULL,
1459 .flags = FLAG_ADVANCED,
1462 .label = "log file",
1463 .type = P_STRING,
1464 .p_class = P_GLOBAL,
1465 .offset = GLOBAL_VAR(szLogFile),
1466 .special = NULL,
1467 .enum_list = NULL,
1468 .flags = FLAG_ADVANCED,
1471 .label = "max log size",
1472 .type = P_INTEGER,
1473 .p_class = P_GLOBAL,
1474 .offset = GLOBAL_VAR(max_log_size),
1475 .special = NULL,
1476 .enum_list = NULL,
1477 .flags = FLAG_ADVANCED,
1480 .label = "debug timestamp",
1481 .type = P_BOOL,
1482 .p_class = P_GLOBAL,
1483 .offset = GLOBAL_VAR(bTimestampLogs),
1484 .special = NULL,
1485 .enum_list = NULL,
1486 .flags = FLAG_ADVANCED,
1489 .label = "timestamp logs",
1490 .type = P_BOOL,
1491 .p_class = P_GLOBAL,
1492 .offset = GLOBAL_VAR(bTimestampLogs),
1493 .special = NULL,
1494 .enum_list = NULL,
1495 .flags = FLAG_ADVANCED,
1498 .label = "debug prefix timestamp",
1499 .type = P_BOOL,
1500 .p_class = P_GLOBAL,
1501 .offset = GLOBAL_VAR(bDebugPrefixTimestamp),
1502 .special = NULL,
1503 .enum_list = NULL,
1504 .flags = FLAG_ADVANCED,
1507 .label = "debug hires timestamp",
1508 .type = P_BOOL,
1509 .p_class = P_GLOBAL,
1510 .offset = GLOBAL_VAR(bDebugHiresTimestamp),
1511 .special = NULL,
1512 .enum_list = NULL,
1513 .flags = FLAG_ADVANCED,
1516 .label = "debug pid",
1517 .type = P_BOOL,
1518 .p_class = P_GLOBAL,
1519 .offset = GLOBAL_VAR(bDebugPid),
1520 .special = NULL,
1521 .enum_list = NULL,
1522 .flags = FLAG_ADVANCED,
1525 .label = "debug uid",
1526 .type = P_BOOL,
1527 .p_class = P_GLOBAL,
1528 .offset = GLOBAL_VAR(bDebugUid),
1529 .special = NULL,
1530 .enum_list = NULL,
1531 .flags = FLAG_ADVANCED,
1534 .label = "debug class",
1535 .type = P_BOOL,
1536 .p_class = P_GLOBAL,
1537 .offset = GLOBAL_VAR(bDebugClass),
1538 .special = NULL,
1539 .enum_list = NULL,
1540 .flags = FLAG_ADVANCED,
1543 .label = "enable core files",
1544 .type = P_BOOL,
1545 .p_class = P_GLOBAL,
1546 .offset = GLOBAL_VAR(bEnableCoreFiles),
1547 .special = NULL,
1548 .enum_list = NULL,
1549 .flags = FLAG_ADVANCED,
1552 {N_("Protocol Options"), P_SEP, P_SEPARATOR},
1555 .label = "allocation roundup size",
1556 .type = P_INTEGER,
1557 .p_class = P_LOCAL,
1558 .offset = LOCAL_VAR(iallocation_roundup_size),
1559 .special = NULL,
1560 .enum_list = NULL,
1561 .flags = FLAG_ADVANCED,
1564 .label = "aio read size",
1565 .type = P_INTEGER,
1566 .p_class = P_LOCAL,
1567 .offset = LOCAL_VAR(iAioReadSize),
1568 .special = NULL,
1569 .enum_list = NULL,
1570 .flags = FLAG_ADVANCED,
1573 .label = "aio write size",
1574 .type = P_INTEGER,
1575 .p_class = P_LOCAL,
1576 .offset = LOCAL_VAR(iAioWriteSize),
1577 .special = NULL,
1578 .enum_list = NULL,
1579 .flags = FLAG_ADVANCED,
1582 .label = "aio write behind",
1583 .type = P_STRING,
1584 .p_class = P_LOCAL,
1585 .offset = LOCAL_VAR(szAioWriteBehind),
1586 .special = NULL,
1587 .enum_list = NULL,
1588 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
1591 .label = "smb ports",
1592 .type = P_STRING,
1593 .p_class = P_GLOBAL,
1594 .offset = GLOBAL_VAR(smb_ports),
1595 .special = NULL,
1596 .enum_list = NULL,
1597 .flags = FLAG_ADVANCED,
1600 .label = "large readwrite",
1601 .type = P_BOOL,
1602 .p_class = P_GLOBAL,
1603 .offset = GLOBAL_VAR(bLargeReadwrite),
1604 .special = NULL,
1605 .enum_list = NULL,
1606 .flags = FLAG_ADVANCED,
1609 .label = "max protocol",
1610 .type = P_ENUM,
1611 .p_class = P_GLOBAL,
1612 .offset = GLOBAL_VAR(maxprotocol),
1613 .special = NULL,
1614 .enum_list = enum_protocol,
1615 .flags = FLAG_ADVANCED,
1618 .label = "protocol",
1619 .type = P_ENUM,
1620 .p_class = P_GLOBAL,
1621 .offset = GLOBAL_VAR(maxprotocol),
1622 .special = NULL,
1623 .enum_list = enum_protocol,
1624 .flags = FLAG_ADVANCED,
1627 .label = "min protocol",
1628 .type = P_ENUM,
1629 .p_class = P_GLOBAL,
1630 .offset = GLOBAL_VAR(minprotocol),
1631 .special = NULL,
1632 .enum_list = enum_protocol,
1633 .flags = FLAG_ADVANCED,
1636 .label = "min receivefile size",
1637 .type = P_INTEGER,
1638 .p_class = P_GLOBAL,
1639 .offset = GLOBAL_VAR(iminreceivefile),
1640 .special = NULL,
1641 .enum_list = NULL,
1642 .flags = FLAG_ADVANCED,
1645 .label = "read raw",
1646 .type = P_BOOL,
1647 .p_class = P_GLOBAL,
1648 .offset = GLOBAL_VAR(bReadRaw),
1649 .special = NULL,
1650 .enum_list = NULL,
1651 .flags = FLAG_ADVANCED,
1654 .label = "write raw",
1655 .type = P_BOOL,
1656 .p_class = P_GLOBAL,
1657 .offset = GLOBAL_VAR(bWriteRaw),
1658 .special = NULL,
1659 .enum_list = NULL,
1660 .flags = FLAG_ADVANCED,
1663 .label = "disable netbios",
1664 .type = P_BOOL,
1665 .p_class = P_GLOBAL,
1666 .offset = GLOBAL_VAR(bDisableNetbios),
1667 .special = NULL,
1668 .enum_list = NULL,
1669 .flags = FLAG_ADVANCED,
1672 .label = "reset on zero vc",
1673 .type = P_BOOL,
1674 .p_class = P_GLOBAL,
1675 .offset = GLOBAL_VAR(bResetOnZeroVC),
1676 .special = NULL,
1677 .enum_list = NULL,
1678 .flags = FLAG_ADVANCED,
1681 .label = "log writeable files on exit",
1682 .type = P_BOOL,
1683 .p_class = P_GLOBAL,
1684 .offset = GLOBAL_VAR(bLogWriteableFilesOnExit),
1685 .special = NULL,
1686 .enum_list = NULL,
1687 .flags = FLAG_ADVANCED,
1690 .label = "acl compatibility",
1691 .type = P_ENUM,
1692 .p_class = P_GLOBAL,
1693 .offset = GLOBAL_VAR(iAclCompat),
1694 .special = NULL,
1695 .enum_list = enum_acl_compat_vals,
1696 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
1699 .label = "defer sharing violations",
1700 .type = P_BOOL,
1701 .p_class = P_GLOBAL,
1702 .offset = GLOBAL_VAR(bDeferSharingViolations),
1703 .special = NULL,
1704 .enum_list = NULL,
1705 .flags = FLAG_ADVANCED | FLAG_GLOBAL,
1708 .label = "ea support",
1709 .type = P_BOOL,
1710 .p_class = P_LOCAL,
1711 .offset = LOCAL_VAR(bEASupport),
1712 .special = NULL,
1713 .enum_list = NULL,
1714 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
1717 .label = "nt acl support",
1718 .type = P_BOOL,
1719 .p_class = P_LOCAL,
1720 .offset = LOCAL_VAR(bNTAclSupport),
1721 .special = NULL,
1722 .enum_list = NULL,
1723 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
1726 .label = "nt pipe support",
1727 .type = P_BOOL,
1728 .p_class = P_GLOBAL,
1729 .offset = GLOBAL_VAR(bNTPipeSupport),
1730 .special = NULL,
1731 .enum_list = NULL,
1732 .flags = FLAG_ADVANCED,
1735 .label = "nt status support",
1736 .type = P_BOOL,
1737 .p_class = P_GLOBAL,
1738 .offset = GLOBAL_VAR(bNTStatusSupport),
1739 .special = NULL,
1740 .enum_list = NULL,
1741 .flags = FLAG_ADVANCED,
1744 .label = "profile acls",
1745 .type = P_BOOL,
1746 .p_class = P_LOCAL,
1747 .offset = LOCAL_VAR(bProfileAcls),
1748 .special = NULL,
1749 .enum_list = NULL,
1750 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
1753 .label = "map acl inherit",
1754 .type = P_BOOL,
1755 .p_class = P_LOCAL,
1756 .offset = LOCAL_VAR(bMap_acl_inherit),
1757 .special = NULL,
1758 .enum_list = NULL,
1759 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
1762 .label = "afs share",
1763 .type = P_BOOL,
1764 .p_class = P_LOCAL,
1765 .offset = LOCAL_VAR(bAfs_Share),
1766 .special = NULL,
1767 .enum_list = NULL,
1768 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
1771 .label = "max mux",
1772 .type = P_INTEGER,
1773 .p_class = P_GLOBAL,
1774 .offset = GLOBAL_VAR(max_mux),
1775 .special = NULL,
1776 .enum_list = NULL,
1777 .flags = FLAG_ADVANCED,
1780 .label = "max xmit",
1781 .type = P_INTEGER,
1782 .p_class = P_GLOBAL,
1783 .offset = GLOBAL_VAR(max_xmit),
1784 .special = NULL,
1785 .enum_list = NULL,
1786 .flags = FLAG_ADVANCED,
1789 .label = "name resolve order",
1790 .type = P_STRING,
1791 .p_class = P_GLOBAL,
1792 .offset = GLOBAL_VAR(szNameResolveOrder),
1793 .special = NULL,
1794 .enum_list = NULL,
1795 .flags = FLAG_ADVANCED | FLAG_WIZARD,
1798 .label = "max ttl",
1799 .type = P_INTEGER,
1800 .p_class = P_GLOBAL,
1801 .offset = GLOBAL_VAR(max_ttl),
1802 .special = NULL,
1803 .enum_list = NULL,
1804 .flags = FLAG_ADVANCED,
1807 .label = "max wins ttl",
1808 .type = P_INTEGER,
1809 .p_class = P_GLOBAL,
1810 .offset = GLOBAL_VAR(max_wins_ttl),
1811 .special = NULL,
1812 .enum_list = NULL,
1813 .flags = FLAG_ADVANCED,
1816 .label = "min wins ttl",
1817 .type = P_INTEGER,
1818 .p_class = P_GLOBAL,
1819 .offset = GLOBAL_VAR(min_wins_ttl),
1820 .special = NULL,
1821 .enum_list = NULL,
1822 .flags = FLAG_ADVANCED,
1825 .label = "time server",
1826 .type = P_BOOL,
1827 .p_class = P_GLOBAL,
1828 .offset = GLOBAL_VAR(bTimeServer),
1829 .special = NULL,
1830 .enum_list = NULL,
1831 .flags = FLAG_ADVANCED,
1834 .label = "unix extensions",
1835 .type = P_BOOL,
1836 .p_class = P_GLOBAL,
1837 .offset = GLOBAL_VAR(bUnixExtensions),
1838 .special = NULL,
1839 .enum_list = NULL,
1840 .flags = FLAG_ADVANCED,
1843 .label = "use spnego",
1844 .type = P_BOOL,
1845 .p_class = P_GLOBAL,
1846 .offset = GLOBAL_VAR(bUseSpnego),
1847 .special = NULL,
1848 .enum_list = NULL,
1849 .flags = FLAG_ADVANCED | FLAG_DEPRECATED,
1852 .label = "client signing",
1853 .type = P_ENUM,
1854 .p_class = P_GLOBAL,
1855 .offset = GLOBAL_VAR(client_signing),
1856 .special = NULL,
1857 .enum_list = enum_smb_signing_vals,
1858 .flags = FLAG_ADVANCED,
1861 .label = "server signing",
1862 .type = P_ENUM,
1863 .p_class = P_GLOBAL,
1864 .offset = GLOBAL_VAR(server_signing),
1865 .special = NULL,
1866 .enum_list = enum_smb_signing_vals,
1867 .flags = FLAG_ADVANCED,
1870 .label = "smb encrypt",
1871 .type = P_ENUM,
1872 .p_class = P_LOCAL,
1873 .offset = LOCAL_VAR(ismb_encrypt),
1874 .special = NULL,
1875 .enum_list = enum_smb_signing_vals,
1876 .flags = FLAG_ADVANCED,
1879 .label = "client use spnego",
1880 .type = P_BOOL,
1881 .p_class = P_GLOBAL,
1882 .offset = GLOBAL_VAR(bClientUseSpnego),
1883 .special = NULL,
1884 .enum_list = NULL,
1885 .flags = FLAG_ADVANCED,
1888 .label = "client ldap sasl wrapping",
1889 .type = P_ENUM,
1890 .p_class = P_GLOBAL,
1891 .offset = GLOBAL_VAR(client_ldap_sasl_wrapping),
1892 .special = NULL,
1893 .enum_list = enum_ldap_sasl_wrapping,
1894 .flags = FLAG_ADVANCED,
1897 .label = "enable asu support",
1898 .type = P_BOOL,
1899 .p_class = P_GLOBAL,
1900 .offset = GLOBAL_VAR(bASUSupport),
1901 .special = NULL,
1902 .enum_list = NULL,
1903 .flags = FLAG_ADVANCED,
1906 .label = "svcctl list",
1907 .type = P_LIST,
1908 .p_class = P_GLOBAL,
1909 .offset = GLOBAL_VAR(szServicesList),
1910 .special = NULL,
1911 .enum_list = NULL,
1912 .flags = FLAG_ADVANCED,
1915 {N_("Tuning Options"), P_SEP, P_SEPARATOR},
1918 .label = "block size",
1919 .type = P_INTEGER,
1920 .p_class = P_LOCAL,
1921 .offset = LOCAL_VAR(iBlock_size),
1922 .special = NULL,
1923 .enum_list = NULL,
1924 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
1927 .label = "deadtime",
1928 .type = P_INTEGER,
1929 .p_class = P_GLOBAL,
1930 .offset = GLOBAL_VAR(deadtime),
1931 .special = NULL,
1932 .enum_list = NULL,
1933 .flags = FLAG_ADVANCED,
1936 .label = "getwd cache",
1937 .type = P_BOOL,
1938 .p_class = P_GLOBAL,
1939 .offset = GLOBAL_VAR(getwd_cache),
1940 .special = NULL,
1941 .enum_list = NULL,
1942 .flags = FLAG_ADVANCED,
1945 .label = "keepalive",
1946 .type = P_INTEGER,
1947 .p_class = P_GLOBAL,
1948 .offset = GLOBAL_VAR(iKeepalive),
1949 .special = NULL,
1950 .enum_list = NULL,
1951 .flags = FLAG_ADVANCED,
1954 .label = "change notify",
1955 .type = P_BOOL,
1956 .p_class = P_LOCAL,
1957 .offset = LOCAL_VAR(bChangeNotify),
1958 .special = NULL,
1959 .enum_list = NULL,
1960 .flags = FLAG_ADVANCED | FLAG_SHARE,
1963 .label = "directory name cache size",
1964 .type = P_INTEGER,
1965 .p_class = P_LOCAL,
1966 .offset = LOCAL_VAR(iDirectoryNameCacheSize),
1967 .special = NULL,
1968 .enum_list = NULL,
1969 .flags = FLAG_ADVANCED | FLAG_SHARE,
1972 .label = "kernel change notify",
1973 .type = P_BOOL,
1974 .p_class = P_LOCAL,
1975 .offset = LOCAL_VAR(bKernelChangeNotify),
1976 .special = NULL,
1977 .enum_list = NULL,
1978 .flags = FLAG_ADVANCED | FLAG_SHARE,
1981 .label = "lpq cache time",
1982 .type = P_INTEGER,
1983 .p_class = P_GLOBAL,
1984 .offset = GLOBAL_VAR(lpqcachetime),
1985 .special = NULL,
1986 .enum_list = NULL,
1987 .flags = FLAG_ADVANCED,
1990 .label = "max smbd processes",
1991 .type = P_INTEGER,
1992 .p_class = P_GLOBAL,
1993 .offset = GLOBAL_VAR(iMaxSmbdProcesses),
1994 .special = NULL,
1995 .enum_list = NULL,
1996 .flags = FLAG_ADVANCED,
1999 .label = "max connections",
2000 .type = P_INTEGER,
2001 .p_class = P_LOCAL,
2002 .offset = LOCAL_VAR(iMaxConnections),
2003 .special = NULL,
2004 .enum_list = NULL,
2005 .flags = FLAG_ADVANCED | FLAG_SHARE,
2008 .label = "paranoid server security",
2009 .type = P_BOOL,
2010 .p_class = P_GLOBAL,
2011 .offset = GLOBAL_VAR(paranoid_server_security),
2012 .special = NULL,
2013 .enum_list = NULL,
2014 .flags = FLAG_ADVANCED,
2017 .label = "max disk size",
2018 .type = P_INTEGER,
2019 .p_class = P_GLOBAL,
2020 .offset = GLOBAL_VAR(maxdisksize),
2021 .special = NULL,
2022 .enum_list = NULL,
2023 .flags = FLAG_ADVANCED,
2026 .label = "max open files",
2027 .type = P_INTEGER,
2028 .p_class = P_GLOBAL,
2029 .offset = GLOBAL_VAR(max_open_files),
2030 .special = NULL,
2031 .enum_list = NULL,
2032 .flags = FLAG_ADVANCED,
2035 .label = "min print space",
2036 .type = P_INTEGER,
2037 .p_class = P_LOCAL,
2038 .offset = LOCAL_VAR(iMinPrintSpace),
2039 .special = NULL,
2040 .enum_list = NULL,
2041 .flags = FLAG_ADVANCED | FLAG_PRINT,
2044 .label = "socket options",
2045 .type = P_STRING,
2046 .p_class = P_GLOBAL,
2047 .offset = GLOBAL_VAR(szSocketOptions),
2048 .special = NULL,
2049 .enum_list = NULL,
2050 .flags = FLAG_ADVANCED,
2053 .label = "strict allocate",
2054 .type = P_BOOL,
2055 .p_class = P_LOCAL,
2056 .offset = LOCAL_VAR(bStrictAllocate),
2057 .special = NULL,
2058 .enum_list = NULL,
2059 .flags = FLAG_ADVANCED | FLAG_SHARE,
2062 .label = "strict sync",
2063 .type = P_BOOL,
2064 .p_class = P_LOCAL,
2065 .offset = LOCAL_VAR(bStrictSync),
2066 .special = NULL,
2067 .enum_list = NULL,
2068 .flags = FLAG_ADVANCED | FLAG_SHARE,
2071 .label = "sync always",
2072 .type = P_BOOL,
2073 .p_class = P_LOCAL,
2074 .offset = LOCAL_VAR(bSyncAlways),
2075 .special = NULL,
2076 .enum_list = NULL,
2077 .flags = FLAG_ADVANCED | FLAG_SHARE,
2080 .label = "use mmap",
2081 .type = P_BOOL,
2082 .p_class = P_GLOBAL,
2083 .offset = GLOBAL_VAR(bUseMmap),
2084 .special = NULL,
2085 .enum_list = NULL,
2086 .flags = FLAG_ADVANCED,
2089 .label = "use sendfile",
2090 .type = P_BOOL,
2091 .p_class = P_LOCAL,
2092 .offset = LOCAL_VAR(bUseSendfile),
2093 .special = NULL,
2094 .enum_list = NULL,
2095 .flags = FLAG_ADVANCED | FLAG_SHARE,
2098 .label = "hostname lookups",
2099 .type = P_BOOL,
2100 .p_class = P_GLOBAL,
2101 .offset = GLOBAL_VAR(bHostnameLookups),
2102 .special = NULL,
2103 .enum_list = NULL,
2104 .flags = FLAG_ADVANCED,
2107 .label = "write cache size",
2108 .type = P_INTEGER,
2109 .p_class = P_LOCAL,
2110 .offset = LOCAL_VAR(iWriteCacheSize),
2111 .special = NULL,
2112 .enum_list = NULL,
2113 .flags = FLAG_ADVANCED | FLAG_SHARE,
2116 .label = "name cache timeout",
2117 .type = P_INTEGER,
2118 .p_class = P_GLOBAL,
2119 .offset = GLOBAL_VAR(name_cache_timeout),
2120 .special = NULL,
2121 .enum_list = NULL,
2122 .flags = FLAG_ADVANCED,
2125 .label = "ctdbd socket",
2126 .type = P_STRING,
2127 .p_class = P_GLOBAL,
2128 .offset = GLOBAL_VAR(ctdbdSocket),
2129 .special = NULL,
2130 .enum_list = NULL,
2131 .flags = FLAG_ADVANCED | FLAG_GLOBAL,
2134 .label = "cluster addresses",
2135 .type = P_LIST,
2136 .p_class = P_GLOBAL,
2137 .offset = GLOBAL_VAR(szClusterAddresses),
2138 .special = NULL,
2139 .enum_list = NULL,
2140 .flags = FLAG_ADVANCED | FLAG_GLOBAL,
2143 .label = "clustering",
2144 .type = P_BOOL,
2145 .p_class = P_GLOBAL,
2146 .offset = GLOBAL_VAR(clustering),
2147 .special = NULL,
2148 .enum_list = NULL,
2149 .flags = FLAG_ADVANCED | FLAG_GLOBAL,
2152 .label = "ctdb timeout",
2153 .type = P_INTEGER,
2154 .p_class = P_GLOBAL,
2155 .offset = GLOBAL_VAR(ctdb_timeout),
2156 .special = NULL,
2157 .enum_list = NULL,
2158 .flags = FLAG_ADVANCED | FLAG_GLOBAL,
2161 .label = "ctdb locktime warn threshold",
2162 .type = P_INTEGER,
2163 .p_class = P_GLOBAL,
2164 .offset = GLOBAL_VAR(ctdb_locktime_warn_threshold),
2165 .special = NULL,
2166 .enum_list = NULL,
2167 .flags = FLAG_ADVANCED | FLAG_GLOBAL,
2170 .label = "smb2 max read",
2171 .type = P_INTEGER,
2172 .p_class = P_GLOBAL,
2173 .offset = GLOBAL_VAR(ismb2_max_read),
2174 .special = NULL,
2175 .enum_list = NULL,
2176 .flags = FLAG_ADVANCED,
2179 .label = "smb2 max write",
2180 .type = P_INTEGER,
2181 .p_class = P_GLOBAL,
2182 .offset = GLOBAL_VAR(ismb2_max_write),
2183 .special = NULL,
2184 .enum_list = NULL,
2185 .flags = FLAG_ADVANCED,
2188 .label = "smb2 max trans",
2189 .type = P_INTEGER,
2190 .p_class = P_GLOBAL,
2191 .offset = GLOBAL_VAR(ismb2_max_trans),
2192 .special = NULL,
2193 .enum_list = NULL,
2194 .flags = FLAG_ADVANCED,
2197 .label = "smb2 max credits",
2198 .type = P_INTEGER,
2199 .p_class = P_GLOBAL,
2200 .offset = GLOBAL_VAR(ismb2_max_credits),
2201 .special = NULL,
2202 .enum_list = NULL,
2203 .flags = FLAG_ADVANCED,
2206 {N_("Printing Options"), P_SEP, P_SEPARATOR},
2209 .label = "max reported print jobs",
2210 .type = P_INTEGER,
2211 .p_class = P_LOCAL,
2212 .offset = LOCAL_VAR(iMaxReportedPrintJobs),
2213 .special = NULL,
2214 .enum_list = NULL,
2215 .flags = FLAG_ADVANCED | FLAG_PRINT,
2218 .label = "max print jobs",
2219 .type = P_INTEGER,
2220 .p_class = P_LOCAL,
2221 .offset = LOCAL_VAR(iMaxPrintJobs),
2222 .special = NULL,
2223 .enum_list = NULL,
2224 .flags = FLAG_ADVANCED | FLAG_PRINT,
2227 .label = "load printers",
2228 .type = P_BOOL,
2229 .p_class = P_GLOBAL,
2230 .offset = GLOBAL_VAR(bLoadPrinters),
2231 .special = NULL,
2232 .enum_list = NULL,
2233 .flags = FLAG_ADVANCED | FLAG_PRINT,
2236 .label = "printcap cache time",
2237 .type = P_INTEGER,
2238 .p_class = P_GLOBAL,
2239 .offset = GLOBAL_VAR(PrintcapCacheTime),
2240 .special = NULL,
2241 .enum_list = NULL,
2242 .flags = FLAG_ADVANCED | FLAG_PRINT,
2245 .label = "printcap name",
2246 .type = P_STRING,
2247 .p_class = P_GLOBAL,
2248 .offset = GLOBAL_VAR(szPrintcapname),
2249 .special = NULL,
2250 .enum_list = NULL,
2251 .flags = FLAG_ADVANCED | FLAG_PRINT,
2254 .label = "printcap",
2255 .type = P_STRING,
2256 .p_class = P_GLOBAL,
2257 .offset = GLOBAL_VAR(szPrintcapname),
2258 .special = NULL,
2259 .enum_list = NULL,
2260 .flags = FLAG_HIDE,
2263 .label = "printable",
2264 .type = P_BOOL,
2265 .p_class = P_LOCAL,
2266 .offset = LOCAL_VAR(bPrint_ok),
2267 .special = NULL,
2268 .enum_list = NULL,
2269 .flags = FLAG_ADVANCED | FLAG_PRINT,
2272 .label = "print notify backchannel",
2273 .type = P_BOOL,
2274 .p_class = P_LOCAL,
2275 .offset = LOCAL_VAR(bPrintNotifyBackchannel),
2276 .special = NULL,
2277 .enum_list = NULL,
2278 .flags = FLAG_ADVANCED,
2281 .label = "print ok",
2282 .type = P_BOOL,
2283 .p_class = P_LOCAL,
2284 .offset = LOCAL_VAR(bPrint_ok),
2285 .special = NULL,
2286 .enum_list = NULL,
2287 .flags = FLAG_HIDE,
2290 .label = "printing",
2291 .type = P_ENUM,
2292 .p_class = P_LOCAL,
2293 .offset = LOCAL_VAR(iPrinting),
2294 .special = handle_printing,
2295 .enum_list = enum_printing,
2296 .flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL,
2299 .label = "cups options",
2300 .type = P_STRING,
2301 .p_class = P_LOCAL,
2302 .offset = LOCAL_VAR(szCupsOptions),
2303 .special = NULL,
2304 .enum_list = NULL,
2305 .flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL,
2308 .label = "cups server",
2309 .type = P_STRING,
2310 .p_class = P_GLOBAL,
2311 .offset = GLOBAL_VAR(szCupsServer),
2312 .special = NULL,
2313 .enum_list = NULL,
2314 .flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL,
2317 .label = "cups encrypt",
2318 .type = P_ENUM,
2319 .p_class = P_GLOBAL,
2320 .offset = GLOBAL_VAR(CupsEncrypt),
2321 .special = NULL,
2322 .enum_list = enum_bool_auto,
2323 .flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL,
2327 .label = "cups connection timeout",
2328 .type = P_INTEGER,
2329 .p_class = P_GLOBAL,
2330 .offset = GLOBAL_VAR(cups_connection_timeout),
2331 .special = NULL,
2332 .enum_list = NULL,
2333 .flags = FLAG_ADVANCED,
2336 .label = "iprint server",
2337 .type = P_STRING,
2338 .p_class = P_GLOBAL,
2339 .offset = GLOBAL_VAR(szIPrintServer),
2340 .special = NULL,
2341 .enum_list = NULL,
2342 .flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL,
2345 .label = "print command",
2346 .type = P_STRING,
2347 .p_class = P_LOCAL,
2348 .offset = LOCAL_VAR(szPrintcommand),
2349 .special = NULL,
2350 .enum_list = NULL,
2351 .flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL,
2354 .label = "disable spoolss",
2355 .type = P_BOOL,
2356 .p_class = P_GLOBAL,
2357 .offset = GLOBAL_VAR(bDisableSpoolss),
2358 .special = NULL,
2359 .enum_list = NULL,
2360 .flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL,
2363 .label = "enable spoolss",
2364 .type = P_BOOLREV,
2365 .p_class = P_GLOBAL,
2366 .offset = GLOBAL_VAR(bDisableSpoolss),
2367 .special = NULL,
2368 .enum_list = NULL,
2369 .flags = FLAG_HIDE,
2372 .label = "lpq command",
2373 .type = P_STRING,
2374 .p_class = P_LOCAL,
2375 .offset = LOCAL_VAR(szLpqcommand),
2376 .special = NULL,
2377 .enum_list = NULL,
2378 .flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL,
2381 .label = "lprm command",
2382 .type = P_STRING,
2383 .p_class = P_LOCAL,
2384 .offset = LOCAL_VAR(szLprmcommand),
2385 .special = NULL,
2386 .enum_list = NULL,
2387 .flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL,
2390 .label = "lppause command",
2391 .type = P_STRING,
2392 .p_class = P_LOCAL,
2393 .offset = LOCAL_VAR(szLppausecommand),
2394 .special = NULL,
2395 .enum_list = NULL,
2396 .flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL,
2399 .label = "lpresume command",
2400 .type = P_STRING,
2401 .p_class = P_LOCAL,
2402 .offset = LOCAL_VAR(szLpresumecommand),
2403 .special = NULL,
2404 .enum_list = NULL,
2405 .flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL,
2408 .label = "queuepause command",
2409 .type = P_STRING,
2410 .p_class = P_LOCAL,
2411 .offset = LOCAL_VAR(szQueuepausecommand),
2412 .special = NULL,
2413 .enum_list = NULL,
2414 .flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL,
2417 .label = "queueresume command",
2418 .type = P_STRING,
2419 .p_class = P_LOCAL,
2420 .offset = LOCAL_VAR(szQueueresumecommand),
2421 .special = NULL,
2422 .enum_list = NULL,
2423 .flags = FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL,
2426 .label = "addport command",
2427 .type = P_STRING,
2428 .p_class = P_GLOBAL,
2429 .offset = GLOBAL_VAR(szAddPortCommand),
2430 .special = NULL,
2431 .enum_list = NULL,
2432 .flags = FLAG_ADVANCED,
2435 .label = "enumports command",
2436 .type = P_STRING,
2437 .p_class = P_GLOBAL,
2438 .offset = GLOBAL_VAR(szEnumPortsCommand),
2439 .special = NULL,
2440 .enum_list = NULL,
2441 .flags = FLAG_ADVANCED,
2444 .label = "addprinter command",
2445 .type = P_STRING,
2446 .p_class = P_GLOBAL,
2447 .offset = GLOBAL_VAR(szAddPrinterCommand),
2448 .special = NULL,
2449 .enum_list = NULL,
2450 .flags = FLAG_ADVANCED,
2453 .label = "deleteprinter command",
2454 .type = P_STRING,
2455 .p_class = P_GLOBAL,
2456 .offset = GLOBAL_VAR(szDeletePrinterCommand),
2457 .special = NULL,
2458 .enum_list = NULL,
2459 .flags = FLAG_ADVANCED,
2462 .label = "show add printer wizard",
2463 .type = P_BOOL,
2464 .p_class = P_GLOBAL,
2465 .offset = GLOBAL_VAR(bMsAddPrinterWizard),
2466 .special = NULL,
2467 .enum_list = NULL,
2468 .flags = FLAG_ADVANCED,
2471 .label = "os2 driver map",
2472 .type = P_STRING,
2473 .p_class = P_GLOBAL,
2474 .offset = GLOBAL_VAR(szOs2DriverMap),
2475 .special = NULL,
2476 .enum_list = NULL,
2477 .flags = FLAG_ADVANCED,
2481 .label = "printer name",
2482 .type = P_STRING,
2483 .p_class = P_LOCAL,
2484 .offset = LOCAL_VAR(szPrintername),
2485 .special = NULL,
2486 .enum_list = NULL,
2487 .flags = FLAG_ADVANCED | FLAG_PRINT,
2490 .label = "printer",
2491 .type = P_STRING,
2492 .p_class = P_LOCAL,
2493 .offset = LOCAL_VAR(szPrintername),
2494 .special = NULL,
2495 .enum_list = NULL,
2496 .flags = FLAG_HIDE,
2499 .label = "use client driver",
2500 .type = P_BOOL,
2501 .p_class = P_LOCAL,
2502 .offset = LOCAL_VAR(bUseClientDriver),
2503 .special = NULL,
2504 .enum_list = NULL,
2505 .flags = FLAG_ADVANCED | FLAG_PRINT,
2508 .label = "default devmode",
2509 .type = P_BOOL,
2510 .p_class = P_LOCAL,
2511 .offset = LOCAL_VAR(bDefaultDevmode),
2512 .special = NULL,
2513 .enum_list = NULL,
2514 .flags = FLAG_ADVANCED | FLAG_PRINT,
2517 .label = "force printername",
2518 .type = P_BOOL,
2519 .p_class = P_LOCAL,
2520 .offset = LOCAL_VAR(bForcePrintername),
2521 .special = NULL,
2522 .enum_list = NULL,
2523 .flags = FLAG_ADVANCED | FLAG_PRINT,
2526 .label = "printjob username",
2527 .type = P_STRING,
2528 .p_class = P_LOCAL,
2529 .offset = LOCAL_VAR(szPrintjobUsername),
2530 .special = NULL,
2531 .enum_list = NULL,
2532 .flags = FLAG_ADVANCED | FLAG_PRINT,
2535 {N_("Filename Handling"), P_SEP, P_SEPARATOR},
2538 .label = "mangling method",
2539 .type = P_STRING,
2540 .p_class = P_GLOBAL,
2541 .offset = GLOBAL_VAR(szManglingMethod),
2542 .special = NULL,
2543 .enum_list = NULL,
2544 .flags = FLAG_ADVANCED,
2547 .label = "mangle prefix",
2548 .type = P_INTEGER,
2549 .p_class = P_GLOBAL,
2550 .offset = GLOBAL_VAR(mangle_prefix),
2551 .special = NULL,
2552 .enum_list = NULL,
2553 .flags = FLAG_ADVANCED,
2557 .label = "default case",
2558 .type = P_ENUM,
2559 .p_class = P_LOCAL,
2560 .offset = LOCAL_VAR(iDefaultCase),
2561 .special = NULL,
2562 .enum_list = enum_case,
2563 .flags = FLAG_ADVANCED | FLAG_SHARE,
2566 .label = "case sensitive",
2567 .type = P_ENUM,
2568 .p_class = P_LOCAL,
2569 .offset = LOCAL_VAR(iCaseSensitive),
2570 .special = NULL,
2571 .enum_list = enum_bool_auto,
2572 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2575 .label = "casesignames",
2576 .type = P_ENUM,
2577 .p_class = P_LOCAL,
2578 .offset = LOCAL_VAR(iCaseSensitive),
2579 .special = NULL,
2580 .enum_list = enum_bool_auto,
2581 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL | FLAG_HIDE,
2584 .label = "preserve case",
2585 .type = P_BOOL,
2586 .p_class = P_LOCAL,
2587 .offset = LOCAL_VAR(bCasePreserve),
2588 .special = NULL,
2589 .enum_list = NULL,
2590 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2593 .label = "short preserve case",
2594 .type = P_BOOL,
2595 .p_class = P_LOCAL,
2596 .offset = LOCAL_VAR(bShortCasePreserve),
2597 .special = NULL,
2598 .enum_list = NULL,
2599 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2602 .label = "mangling char",
2603 .type = P_CHAR,
2604 .p_class = P_LOCAL,
2605 .offset = LOCAL_VAR(magic_char),
2606 .special = NULL,
2607 .enum_list = NULL,
2608 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2611 .label = "hide dot files",
2612 .type = P_BOOL,
2613 .p_class = P_LOCAL,
2614 .offset = LOCAL_VAR(bHideDotFiles),
2615 .special = NULL,
2616 .enum_list = NULL,
2617 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2620 .label = "hide special files",
2621 .type = P_BOOL,
2622 .p_class = P_LOCAL,
2623 .offset = LOCAL_VAR(bHideSpecialFiles),
2624 .special = NULL,
2625 .enum_list = NULL,
2626 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2629 .label = "hide unreadable",
2630 .type = P_BOOL,
2631 .p_class = P_LOCAL,
2632 .offset = LOCAL_VAR(bHideUnReadable),
2633 .special = NULL,
2634 .enum_list = NULL,
2635 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2638 .label = "hide unwriteable files",
2639 .type = P_BOOL,
2640 .p_class = P_LOCAL,
2641 .offset = LOCAL_VAR(bHideUnWriteableFiles),
2642 .special = NULL,
2643 .enum_list = NULL,
2644 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2647 .label = "delete veto files",
2648 .type = P_BOOL,
2649 .p_class = P_LOCAL,
2650 .offset = LOCAL_VAR(bDeleteVetoFiles),
2651 .special = NULL,
2652 .enum_list = NULL,
2653 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2656 .label = "veto files",
2657 .type = P_STRING,
2658 .p_class = P_LOCAL,
2659 .offset = LOCAL_VAR(szVetoFiles),
2660 .special = NULL,
2661 .enum_list = NULL,
2662 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2665 .label = "hide files",
2666 .type = P_STRING,
2667 .p_class = P_LOCAL,
2668 .offset = LOCAL_VAR(szHideFiles),
2669 .special = NULL,
2670 .enum_list = NULL,
2671 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2674 .label = "veto oplock files",
2675 .type = P_STRING,
2676 .p_class = P_LOCAL,
2677 .offset = LOCAL_VAR(szVetoOplockFiles),
2678 .special = NULL,
2679 .enum_list = NULL,
2680 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2683 .label = "map archive",
2684 .type = P_BOOL,
2685 .p_class = P_LOCAL,
2686 .offset = LOCAL_VAR(bMap_archive),
2687 .special = NULL,
2688 .enum_list = NULL,
2689 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2692 .label = "map hidden",
2693 .type = P_BOOL,
2694 .p_class = P_LOCAL,
2695 .offset = LOCAL_VAR(bMap_hidden),
2696 .special = NULL,
2697 .enum_list = NULL,
2698 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2701 .label = "map system",
2702 .type = P_BOOL,
2703 .p_class = P_LOCAL,
2704 .offset = LOCAL_VAR(bMap_system),
2705 .special = NULL,
2706 .enum_list = NULL,
2707 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2710 .label = "map readonly",
2711 .type = P_ENUM,
2712 .p_class = P_LOCAL,
2713 .offset = LOCAL_VAR(iMap_readonly),
2714 .special = NULL,
2715 .enum_list = enum_map_readonly,
2716 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2719 .label = "mangled names",
2720 .type = P_BOOL,
2721 .p_class = P_LOCAL,
2722 .offset = LOCAL_VAR(bMangledNames),
2723 .special = NULL,
2724 .enum_list = NULL,
2725 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2728 .label = "max stat cache size",
2729 .type = P_INTEGER,
2730 .p_class = P_GLOBAL,
2731 .offset = GLOBAL_VAR(iMaxStatCacheSize),
2732 .special = NULL,
2733 .enum_list = NULL,
2734 .flags = FLAG_ADVANCED,
2737 .label = "stat cache",
2738 .type = P_BOOL,
2739 .p_class = P_GLOBAL,
2740 .offset = GLOBAL_VAR(bStatCache),
2741 .special = NULL,
2742 .enum_list = NULL,
2743 .flags = FLAG_ADVANCED,
2746 .label = "store dos attributes",
2747 .type = P_BOOL,
2748 .p_class = P_LOCAL,
2749 .offset = LOCAL_VAR(bStoreDosAttributes),
2750 .special = NULL,
2751 .enum_list = NULL,
2752 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2755 .label = "dmapi support",
2756 .type = P_BOOL,
2757 .p_class = P_LOCAL,
2758 .offset = LOCAL_VAR(bDmapiSupport),
2759 .special = NULL,
2760 .enum_list = NULL,
2761 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
2765 {N_("Domain Options"), P_SEP, P_SEPARATOR},
2768 .label = "machine password timeout",
2769 .type = P_INTEGER,
2770 .p_class = P_GLOBAL,
2771 .offset = GLOBAL_VAR(machine_password_timeout),
2772 .special = NULL,
2773 .enum_list = NULL,
2774 .flags = FLAG_ADVANCED | FLAG_WIZARD,
2777 {N_("Logon Options"), P_SEP, P_SEPARATOR},
2780 .label = "add user script",
2781 .type = P_STRING,
2782 .p_class = P_GLOBAL,
2783 .offset = GLOBAL_VAR(szAddUserScript),
2784 .special = NULL,
2785 .enum_list = NULL,
2786 .flags = FLAG_ADVANCED,
2789 .label = "rename user script",
2790 .type = P_STRING,
2791 .p_class = P_GLOBAL,
2792 .offset = GLOBAL_VAR(szRenameUserScript),
2793 .special = NULL,
2794 .enum_list = NULL,
2795 .flags = FLAG_ADVANCED,
2798 .label = "delete user script",
2799 .type = P_STRING,
2800 .p_class = P_GLOBAL,
2801 .offset = GLOBAL_VAR(szDelUserScript),
2802 .special = NULL,
2803 .enum_list = NULL,
2804 .flags = FLAG_ADVANCED,
2807 .label = "add group script",
2808 .type = P_STRING,
2809 .p_class = P_GLOBAL,
2810 .offset = GLOBAL_VAR(szAddGroupScript),
2811 .special = NULL,
2812 .enum_list = NULL,
2813 .flags = FLAG_ADVANCED,
2816 .label = "delete group script",
2817 .type = P_STRING,
2818 .p_class = P_GLOBAL,
2819 .offset = GLOBAL_VAR(szDelGroupScript),
2820 .special = NULL,
2821 .enum_list = NULL,
2822 .flags = FLAG_ADVANCED,
2825 .label = "add user to group script",
2826 .type = P_STRING,
2827 .p_class = P_GLOBAL,
2828 .offset = GLOBAL_VAR(szAddUserToGroupScript),
2829 .special = NULL,
2830 .enum_list = NULL,
2831 .flags = FLAG_ADVANCED,
2834 .label = "delete user from group script",
2835 .type = P_STRING,
2836 .p_class = P_GLOBAL,
2837 .offset = GLOBAL_VAR(szDelUserFromGroupScript),
2838 .special = NULL,
2839 .enum_list = NULL,
2840 .flags = FLAG_ADVANCED,
2843 .label = "set primary group script",
2844 .type = P_STRING,
2845 .p_class = P_GLOBAL,
2846 .offset = GLOBAL_VAR(szSetPrimaryGroupScript),
2847 .special = NULL,
2848 .enum_list = NULL,
2849 .flags = FLAG_ADVANCED,
2852 .label = "add machine script",
2853 .type = P_STRING,
2854 .p_class = P_GLOBAL,
2855 .offset = GLOBAL_VAR(szAddMachineScript),
2856 .special = NULL,
2857 .enum_list = NULL,
2858 .flags = FLAG_ADVANCED,
2861 .label = "shutdown script",
2862 .type = P_STRING,
2863 .p_class = P_GLOBAL,
2864 .offset = GLOBAL_VAR(szShutdownScript),
2865 .special = NULL,
2866 .enum_list = NULL,
2867 .flags = FLAG_ADVANCED,
2870 .label = "abort shutdown script",
2871 .type = P_STRING,
2872 .p_class = P_GLOBAL,
2873 .offset = GLOBAL_VAR(szAbortShutdownScript),
2874 .special = NULL,
2875 .enum_list = NULL,
2876 .flags = FLAG_ADVANCED,
2879 .label = "username map script",
2880 .type = P_STRING,
2881 .p_class = P_GLOBAL,
2882 .offset = GLOBAL_VAR(szUsernameMapScript),
2883 .special = NULL,
2884 .enum_list = NULL,
2885 .flags = FLAG_ADVANCED,
2888 .label = "username map cache time",
2889 .type = P_INTEGER,
2890 .p_class = P_GLOBAL,
2891 .offset = GLOBAL_VAR(iUsernameMapCacheTime),
2892 .special = NULL,
2893 .enum_list = NULL,
2894 .flags = FLAG_ADVANCED,
2897 .label = "logon script",
2898 .type = P_STRING,
2899 .p_class = P_GLOBAL,
2900 .offset = GLOBAL_VAR(szLogonScript),
2901 .special = NULL,
2902 .enum_list = NULL,
2903 .flags = FLAG_ADVANCED,
2906 .label = "logon path",
2907 .type = P_STRING,
2908 .p_class = P_GLOBAL,
2909 .offset = GLOBAL_VAR(szLogonPath),
2910 .special = NULL,
2911 .enum_list = NULL,
2912 .flags = FLAG_ADVANCED,
2915 .label = "logon drive",
2916 .type = P_STRING,
2917 .p_class = P_GLOBAL,
2918 .offset = GLOBAL_VAR(szLogonDrive),
2919 .special = NULL,
2920 .enum_list = NULL,
2921 .flags = FLAG_ADVANCED,
2924 .label = "logon home",
2925 .type = P_STRING,
2926 .p_class = P_GLOBAL,
2927 .offset = GLOBAL_VAR(szLogonHome),
2928 .special = NULL,
2929 .enum_list = NULL,
2930 .flags = FLAG_ADVANCED,
2933 .label = "domain logons",
2934 .type = P_BOOL,
2935 .p_class = P_GLOBAL,
2936 .offset = GLOBAL_VAR(bDomainLogons),
2937 .special = NULL,
2938 .enum_list = NULL,
2939 .flags = FLAG_ADVANCED,
2943 .label = "init logon delayed hosts",
2944 .type = P_LIST,
2945 .p_class = P_GLOBAL,
2946 .offset = GLOBAL_VAR(szInitLogonDelayedHosts),
2947 .special = NULL,
2948 .enum_list = NULL,
2949 .flags = FLAG_ADVANCED,
2953 .label = "init logon delay",
2954 .type = P_INTEGER,
2955 .p_class = P_GLOBAL,
2956 .offset = GLOBAL_VAR(InitLogonDelay),
2957 .special = NULL,
2958 .enum_list = NULL,
2959 .flags = FLAG_ADVANCED,
2963 {N_("Browse Options"), P_SEP, P_SEPARATOR},
2966 .label = "os level",
2967 .type = P_INTEGER,
2968 .p_class = P_GLOBAL,
2969 .offset = GLOBAL_VAR(os_level),
2970 .special = NULL,
2971 .enum_list = NULL,
2972 .flags = FLAG_BASIC | FLAG_ADVANCED,
2975 .label = "lm announce",
2976 .type = P_ENUM,
2977 .p_class = P_GLOBAL,
2978 .offset = GLOBAL_VAR(lm_announce),
2979 .special = NULL,
2980 .enum_list = enum_bool_auto,
2981 .flags = FLAG_ADVANCED,
2984 .label = "lm interval",
2985 .type = P_INTEGER,
2986 .p_class = P_GLOBAL,
2987 .offset = GLOBAL_VAR(lm_interval),
2988 .special = NULL,
2989 .enum_list = NULL,
2990 .flags = FLAG_ADVANCED,
2993 .label = "preferred master",
2994 .type = P_ENUM,
2995 .p_class = P_GLOBAL,
2996 .offset = GLOBAL_VAR(iPreferredMaster),
2997 .special = NULL,
2998 .enum_list = enum_bool_auto,
2999 .flags = FLAG_BASIC | FLAG_ADVANCED,
3002 .label = "prefered master",
3003 .type = P_ENUM,
3004 .p_class = P_GLOBAL,
3005 .offset = GLOBAL_VAR(iPreferredMaster),
3006 .special = NULL,
3007 .enum_list = enum_bool_auto,
3008 .flags = FLAG_HIDE,
3011 .label = "local master",
3012 .type = P_BOOL,
3013 .p_class = P_GLOBAL,
3014 .offset = GLOBAL_VAR(bLocalMaster),
3015 .special = NULL,
3016 .enum_list = NULL,
3017 .flags = FLAG_BASIC | FLAG_ADVANCED,
3020 .label = "domain master",
3021 .type = P_ENUM,
3022 .p_class = P_GLOBAL,
3023 .offset = GLOBAL_VAR(iDomainMaster),
3024 .special = NULL,
3025 .enum_list = enum_bool_auto,
3026 .flags = FLAG_BASIC | FLAG_ADVANCED,
3029 .label = "browse list",
3030 .type = P_BOOL,
3031 .p_class = P_GLOBAL,
3032 .offset = GLOBAL_VAR(bBrowseList),
3033 .special = NULL,
3034 .enum_list = NULL,
3035 .flags = FLAG_ADVANCED,
3038 .label = "browseable",
3039 .type = P_BOOL,
3040 .p_class = P_LOCAL,
3041 .offset = LOCAL_VAR(bBrowseable),
3042 .special = NULL,
3043 .enum_list = NULL,
3044 .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT,
3047 .label = "browsable",
3048 .type = P_BOOL,
3049 .p_class = P_LOCAL,
3050 .offset = LOCAL_VAR(bBrowseable),
3051 .special = NULL,
3052 .enum_list = NULL,
3053 .flags = FLAG_HIDE,
3056 .label = "access based share enum",
3057 .type = P_BOOL,
3058 .p_class = P_LOCAL,
3059 .offset = LOCAL_VAR(bAccessBasedShareEnum),
3060 .special = NULL,
3061 .enum_list = NULL,
3062 .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE
3065 .label = "enhanced browsing",
3066 .type = P_BOOL,
3067 .p_class = P_GLOBAL,
3068 .offset = GLOBAL_VAR(enhanced_browsing),
3069 .special = NULL,
3070 .enum_list = NULL,
3071 .flags = FLAG_ADVANCED,
3074 {N_("WINS Options"), P_SEP, P_SEPARATOR},
3077 .label = "dns proxy",
3078 .type = P_BOOL,
3079 .p_class = P_GLOBAL,
3080 .offset = GLOBAL_VAR(bDNSproxy),
3081 .special = NULL,
3082 .enum_list = NULL,
3083 .flags = FLAG_ADVANCED,
3086 .label = "wins proxy",
3087 .type = P_BOOL,
3088 .p_class = P_GLOBAL,
3089 .offset = GLOBAL_VAR(bWINSproxy),
3090 .special = NULL,
3091 .enum_list = NULL,
3092 .flags = FLAG_ADVANCED,
3095 .label = "wins server",
3096 .type = P_LIST,
3097 .p_class = P_GLOBAL,
3098 .offset = GLOBAL_VAR(szWINSservers),
3099 .special = NULL,
3100 .enum_list = NULL,
3101 .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD,
3104 .label = "wins support",
3105 .type = P_BOOL,
3106 .p_class = P_GLOBAL,
3107 .offset = GLOBAL_VAR(bWINSsupport),
3108 .special = NULL,
3109 .enum_list = NULL,
3110 .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD,
3113 .label = "wins hook",
3114 .type = P_STRING,
3115 .p_class = P_GLOBAL,
3116 .offset = GLOBAL_VAR(szWINSHook),
3117 .special = NULL,
3118 .enum_list = NULL,
3119 .flags = FLAG_ADVANCED,
3122 {N_("Locking Options"), P_SEP, P_SEPARATOR},
3125 .label = "blocking locks",
3126 .type = P_BOOL,
3127 .p_class = P_LOCAL,
3128 .offset = LOCAL_VAR(bBlockingLocks),
3129 .special = NULL,
3130 .enum_list = NULL,
3131 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
3134 .label = "csc policy",
3135 .type = P_ENUM,
3136 .p_class = P_LOCAL,
3137 .offset = LOCAL_VAR(iCSCPolicy),
3138 .special = NULL,
3139 .enum_list = enum_csc_policy,
3140 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
3143 .label = "fake oplocks",
3144 .type = P_BOOL,
3145 .p_class = P_LOCAL,
3146 .offset = LOCAL_VAR(bFakeOplocks),
3147 .special = NULL,
3148 .enum_list = NULL,
3149 .flags = FLAG_ADVANCED | FLAG_SHARE,
3152 .label = "kernel oplocks",
3153 .type = P_BOOL,
3154 .p_class = P_GLOBAL,
3155 .offset = GLOBAL_VAR(bKernelOplocks),
3156 .special = NULL,
3157 .enum_list = NULL,
3158 .flags = FLAG_ADVANCED | FLAG_GLOBAL,
3161 .label = "locking",
3162 .type = P_BOOL,
3163 .p_class = P_LOCAL,
3164 .offset = LOCAL_VAR(bLocking),
3165 .special = NULL,
3166 .enum_list = NULL,
3167 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
3170 .label = "lock spin time",
3171 .type = P_INTEGER,
3172 .p_class = P_GLOBAL,
3173 .offset = GLOBAL_VAR(iLockSpinTime),
3174 .special = NULL,
3175 .enum_list = NULL,
3176 .flags = FLAG_ADVANCED | FLAG_GLOBAL,
3179 .label = "oplocks",
3180 .type = P_BOOL,
3181 .p_class = P_LOCAL,
3182 .offset = LOCAL_VAR(bOpLocks),
3183 .special = NULL,
3184 .enum_list = NULL,
3185 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
3188 .label = "level2 oplocks",
3189 .type = P_BOOL,
3190 .p_class = P_LOCAL,
3191 .offset = LOCAL_VAR(bLevel2OpLocks),
3192 .special = NULL,
3193 .enum_list = NULL,
3194 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
3197 .label = "oplock break wait time",
3198 .type = P_INTEGER,
3199 .p_class = P_GLOBAL,
3200 .offset = GLOBAL_VAR(oplock_break_wait_time),
3201 .special = NULL,
3202 .enum_list = NULL,
3203 .flags = FLAG_ADVANCED | FLAG_GLOBAL,
3206 .label = "oplock contention limit",
3207 .type = P_INTEGER,
3208 .p_class = P_LOCAL,
3209 .offset = LOCAL_VAR(iOplockContentionLimit),
3210 .special = NULL,
3211 .enum_list = NULL,
3212 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
3215 .label = "posix locking",
3216 .type = P_BOOL,
3217 .p_class = P_LOCAL,
3218 .offset = LOCAL_VAR(bPosixLocking),
3219 .special = NULL,
3220 .enum_list = NULL,
3221 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
3224 .label = "strict locking",
3225 .type = P_ENUM,
3226 .p_class = P_LOCAL,
3227 .offset = LOCAL_VAR(iStrictLocking),
3228 .special = NULL,
3229 .enum_list = enum_bool_auto,
3230 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
3233 .label = "share modes",
3234 .type = P_BOOL,
3235 .p_class = P_LOCAL,
3236 .offset = LOCAL_VAR(bShareModes),
3237 .special = NULL,
3238 .enum_list = NULL,
3239 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL | FLAG_DEPRECATED,
3242 {N_("Ldap Options"), P_SEP, P_SEPARATOR},
3245 .label = "ldap admin dn",
3246 .type = P_STRING,
3247 .p_class = P_GLOBAL,
3248 .offset = GLOBAL_VAR(szLdapAdminDn),
3249 .special = NULL,
3250 .enum_list = NULL,
3251 .flags = FLAG_ADVANCED,
3254 .label = "ldap delete dn",
3255 .type = P_BOOL,
3256 .p_class = P_GLOBAL,
3257 .offset = GLOBAL_VAR(ldap_delete_dn),
3258 .special = NULL,
3259 .enum_list = NULL,
3260 .flags = FLAG_ADVANCED,
3263 .label = "ldap group suffix",
3264 .type = P_STRING,
3265 .p_class = P_GLOBAL,
3266 .offset = GLOBAL_VAR(szLdapGroupSuffix),
3267 .special = NULL,
3268 .enum_list = NULL,
3269 .flags = FLAG_ADVANCED,
3272 .label = "ldap idmap suffix",
3273 .type = P_STRING,
3274 .p_class = P_GLOBAL,
3275 .offset = GLOBAL_VAR(szLdapIdmapSuffix),
3276 .special = NULL,
3277 .enum_list = NULL,
3278 .flags = FLAG_ADVANCED,
3281 .label = "ldap machine suffix",
3282 .type = P_STRING,
3283 .p_class = P_GLOBAL,
3284 .offset = GLOBAL_VAR(szLdapMachineSuffix),
3285 .special = NULL,
3286 .enum_list = NULL,
3287 .flags = FLAG_ADVANCED,
3290 .label = "ldap passwd sync",
3291 .type = P_ENUM,
3292 .p_class = P_GLOBAL,
3293 .offset = GLOBAL_VAR(ldap_passwd_sync),
3294 .special = NULL,
3295 .enum_list = enum_ldap_passwd_sync,
3296 .flags = FLAG_ADVANCED,
3299 .label = "ldap password sync",
3300 .type = P_ENUM,
3301 .p_class = P_GLOBAL,
3302 .offset = GLOBAL_VAR(ldap_passwd_sync),
3303 .special = NULL,
3304 .enum_list = enum_ldap_passwd_sync,
3305 .flags = FLAG_HIDE,
3308 .label = "ldap replication sleep",
3309 .type = P_INTEGER,
3310 .p_class = P_GLOBAL,
3311 .offset = GLOBAL_VAR(ldap_replication_sleep),
3312 .special = NULL,
3313 .enum_list = NULL,
3314 .flags = FLAG_ADVANCED,
3317 .label = "ldap suffix",
3318 .type = P_STRING,
3319 .p_class = P_GLOBAL,
3320 .offset = GLOBAL_VAR(szLdapSuffix),
3321 .special = NULL,
3322 .enum_list = NULL,
3323 .flags = FLAG_ADVANCED,
3326 .label = "ldap ssl",
3327 .type = P_ENUM,
3328 .p_class = P_GLOBAL,
3329 .offset = GLOBAL_VAR(ldap_ssl),
3330 .special = NULL,
3331 .enum_list = enum_ldap_ssl,
3332 .flags = FLAG_ADVANCED,
3335 .label = "ldap ssl ads",
3336 .type = P_BOOL,
3337 .p_class = P_GLOBAL,
3338 .offset = GLOBAL_VAR(ldap_ssl_ads),
3339 .special = NULL,
3340 .enum_list = NULL,
3341 .flags = FLAG_ADVANCED,
3344 .label = "ldap deref",
3345 .type = P_ENUM,
3346 .p_class = P_GLOBAL,
3347 .offset = GLOBAL_VAR(ldap_deref),
3348 .special = NULL,
3349 .enum_list = enum_ldap_deref,
3350 .flags = FLAG_ADVANCED,
3353 .label = "ldap follow referral",
3354 .type = P_ENUM,
3355 .p_class = P_GLOBAL,
3356 .offset = GLOBAL_VAR(ldap_follow_referral),
3357 .special = NULL,
3358 .enum_list = enum_bool_auto,
3359 .flags = FLAG_ADVANCED,
3362 .label = "ldap timeout",
3363 .type = P_INTEGER,
3364 .p_class = P_GLOBAL,
3365 .offset = GLOBAL_VAR(ldap_timeout),
3366 .special = NULL,
3367 .enum_list = NULL,
3368 .flags = FLAG_ADVANCED,
3371 .label = "ldap connection timeout",
3372 .type = P_INTEGER,
3373 .p_class = P_GLOBAL,
3374 .offset = GLOBAL_VAR(ldap_connection_timeout),
3375 .special = NULL,
3376 .enum_list = NULL,
3377 .flags = FLAG_ADVANCED,
3380 .label = "ldap page size",
3381 .type = P_INTEGER,
3382 .p_class = P_GLOBAL,
3383 .offset = GLOBAL_VAR(ldap_page_size),
3384 .special = NULL,
3385 .enum_list = NULL,
3386 .flags = FLAG_ADVANCED,
3389 .label = "ldap user suffix",
3390 .type = P_STRING,
3391 .p_class = P_GLOBAL,
3392 .offset = GLOBAL_VAR(szLdapUserSuffix),
3393 .special = NULL,
3394 .enum_list = NULL,
3395 .flags = FLAG_ADVANCED,
3398 .label = "ldap debug level",
3399 .type = P_INTEGER,
3400 .p_class = P_GLOBAL,
3401 .offset = GLOBAL_VAR(ldap_debug_level),
3402 .special = handle_ldap_debug_level,
3403 .enum_list = NULL,
3404 .flags = FLAG_ADVANCED,
3407 .label = "ldap debug threshold",
3408 .type = P_INTEGER,
3409 .p_class = P_GLOBAL,
3410 .offset = GLOBAL_VAR(ldap_debug_threshold),
3411 .special = NULL,
3412 .enum_list = NULL,
3413 .flags = FLAG_ADVANCED,
3416 {N_("EventLog Options"), P_SEP, P_SEPARATOR},
3419 .label = "eventlog list",
3420 .type = P_LIST,
3421 .p_class = P_GLOBAL,
3422 .offset = GLOBAL_VAR(szEventLogs),
3423 .special = NULL,
3424 .enum_list = NULL,
3425 .flags = FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE,
3428 {N_("Miscellaneous Options"), P_SEP, P_SEPARATOR},
3431 .label = "add share command",
3432 .type = P_STRING,
3433 .p_class = P_GLOBAL,
3434 .offset = GLOBAL_VAR(szAddShareCommand),
3435 .special = NULL,
3436 .enum_list = NULL,
3437 .flags = FLAG_ADVANCED,
3440 .label = "change share command",
3441 .type = P_STRING,
3442 .p_class = P_GLOBAL,
3443 .offset = GLOBAL_VAR(szChangeShareCommand),
3444 .special = NULL,
3445 .enum_list = NULL,
3446 .flags = FLAG_ADVANCED,
3449 .label = "delete share command",
3450 .type = P_STRING,
3451 .p_class = P_GLOBAL,
3452 .offset = GLOBAL_VAR(szDeleteShareCommand),
3453 .special = NULL,
3454 .enum_list = NULL,
3455 .flags = FLAG_ADVANCED,
3458 .label = "config file",
3459 .type = P_STRING,
3460 .p_class = P_GLOBAL,
3461 .offset = GLOBAL_VAR(szConfigFile),
3462 .special = NULL,
3463 .enum_list = NULL,
3464 .flags = FLAG_HIDE|FLAG_META,
3467 .label = "preload",
3468 .type = P_STRING,
3469 .p_class = P_GLOBAL,
3470 .offset = GLOBAL_VAR(szAutoServices),
3471 .special = NULL,
3472 .enum_list = NULL,
3473 .flags = FLAG_ADVANCED,
3476 .label = "auto services",
3477 .type = P_STRING,
3478 .p_class = P_GLOBAL,
3479 .offset = GLOBAL_VAR(szAutoServices),
3480 .special = NULL,
3481 .enum_list = NULL,
3482 .flags = FLAG_ADVANCED,
3485 .label = "lock directory",
3486 .type = P_STRING,
3487 .p_class = P_GLOBAL,
3488 .offset = GLOBAL_VAR(szLockDir),
3489 .special = NULL,
3490 .enum_list = NULL,
3491 .flags = FLAG_ADVANCED,
3494 .label = "lock dir",
3495 .type = P_STRING,
3496 .p_class = P_GLOBAL,
3497 .offset = GLOBAL_VAR(szLockDir),
3498 .special = NULL,
3499 .enum_list = NULL,
3500 .flags = FLAG_HIDE,
3503 .label = "state directory",
3504 .type = P_STRING,
3505 .p_class = P_GLOBAL,
3506 .offset = GLOBAL_VAR(szStateDir),
3507 .special = NULL,
3508 .enum_list = NULL,
3509 .flags = FLAG_ADVANCED,
3512 .label = "cache directory",
3513 .type = P_STRING,
3514 .p_class = P_GLOBAL,
3515 .offset = GLOBAL_VAR(szCacheDir),
3516 .special = NULL,
3517 .enum_list = NULL,
3518 .flags = FLAG_ADVANCED,
3521 .label = "pid directory",
3522 .type = P_STRING,
3523 .p_class = P_GLOBAL,
3524 .offset = GLOBAL_VAR(szPidDir),
3525 .special = NULL,
3526 .enum_list = NULL,
3527 .flags = FLAG_ADVANCED,
3529 #ifdef WITH_UTMP
3531 .label = "utmp directory",
3532 .type = P_STRING,
3533 .p_class = P_GLOBAL,
3534 .offset = GLOBAL_VAR(szUtmpDir),
3535 .special = NULL,
3536 .enum_list = NULL,
3537 .flags = FLAG_ADVANCED,
3540 .label = "wtmp directory",
3541 .type = P_STRING,
3542 .p_class = P_GLOBAL,
3543 .offset = GLOBAL_VAR(szWtmpDir),
3544 .special = NULL,
3545 .enum_list = NULL,
3546 .flags = FLAG_ADVANCED,
3549 .label = "utmp",
3550 .type = P_BOOL,
3551 .p_class = P_GLOBAL,
3552 .offset = GLOBAL_VAR(bUtmp),
3553 .special = NULL,
3554 .enum_list = NULL,
3555 .flags = FLAG_ADVANCED,
3557 #endif
3559 .label = "default service",
3560 .type = P_STRING,
3561 .p_class = P_GLOBAL,
3562 .offset = GLOBAL_VAR(szDefaultService),
3563 .special = NULL,
3564 .enum_list = NULL,
3565 .flags = FLAG_ADVANCED,
3568 .label = "default",
3569 .type = P_STRING,
3570 .p_class = P_GLOBAL,
3571 .offset = GLOBAL_VAR(szDefaultService),
3572 .special = NULL,
3573 .enum_list = NULL,
3574 .flags = FLAG_ADVANCED,
3577 .label = "message command",
3578 .type = P_STRING,
3579 .p_class = P_GLOBAL,
3580 .offset = GLOBAL_VAR(szMsgCommand),
3581 .special = NULL,
3582 .enum_list = NULL,
3583 .flags = FLAG_ADVANCED,
3586 .label = "dfree cache time",
3587 .type = P_INTEGER,
3588 .p_class = P_LOCAL,
3589 .offset = LOCAL_VAR(iDfreeCacheTime),
3590 .special = NULL,
3591 .enum_list = NULL,
3592 .flags = FLAG_ADVANCED,
3595 .label = "dfree command",
3596 .type = P_STRING,
3597 .p_class = P_LOCAL,
3598 .offset = LOCAL_VAR(szDfree),
3599 .special = NULL,
3600 .enum_list = NULL,
3601 .flags = FLAG_ADVANCED,
3604 .label = "get quota command",
3605 .type = P_STRING,
3606 .p_class = P_GLOBAL,
3607 .offset = GLOBAL_VAR(szGetQuota),
3608 .special = NULL,
3609 .enum_list = NULL,
3610 .flags = FLAG_ADVANCED,
3613 .label = "set quota command",
3614 .type = P_STRING,
3615 .p_class = P_GLOBAL,
3616 .offset = GLOBAL_VAR(szSetQuota),
3617 .special = NULL,
3618 .enum_list = NULL,
3619 .flags = FLAG_ADVANCED,
3622 .label = "remote announce",
3623 .type = P_STRING,
3624 .p_class = P_GLOBAL,
3625 .offset = GLOBAL_VAR(szRemoteAnnounce),
3626 .special = NULL,
3627 .enum_list = NULL,
3628 .flags = FLAG_ADVANCED,
3631 .label = "remote browse sync",
3632 .type = P_STRING,
3633 .p_class = P_GLOBAL,
3634 .offset = GLOBAL_VAR(szRemoteBrowseSync),
3635 .special = NULL,
3636 .enum_list = NULL,
3637 .flags = FLAG_ADVANCED,
3640 .label = "socket address",
3641 .type = P_STRING,
3642 .p_class = P_GLOBAL,
3643 .offset = GLOBAL_VAR(szSocketAddress),
3644 .special = NULL,
3645 .enum_list = NULL,
3646 .flags = FLAG_ADVANCED,
3649 .label = "nmbd bind explicit broadcast",
3650 .type = P_BOOL,
3651 .p_class = P_GLOBAL,
3652 .offset = GLOBAL_VAR(bNmbdBindExplicitBroadcast),
3653 .special = NULL,
3654 .enum_list = NULL,
3655 .flags = FLAG_ADVANCED,
3658 .label = "homedir map",
3659 .type = P_STRING,
3660 .p_class = P_GLOBAL,
3661 .offset = GLOBAL_VAR(szNISHomeMapName),
3662 .special = NULL,
3663 .enum_list = NULL,
3664 .flags = FLAG_ADVANCED,
3667 .label = "afs username map",
3668 .type = P_STRING,
3669 .p_class = P_GLOBAL,
3670 .offset = GLOBAL_VAR(szAfsUsernameMap),
3671 .special = NULL,
3672 .enum_list = NULL,
3673 .flags = FLAG_ADVANCED,
3676 .label = "afs token lifetime",
3677 .type = P_INTEGER,
3678 .p_class = P_GLOBAL,
3679 .offset = GLOBAL_VAR(iAfsTokenLifetime),
3680 .special = NULL,
3681 .enum_list = NULL,
3682 .flags = FLAG_ADVANCED,
3685 .label = "log nt token command",
3686 .type = P_STRING,
3687 .p_class = P_GLOBAL,
3688 .offset = GLOBAL_VAR(szLogNtTokenCommand),
3689 .special = NULL,
3690 .enum_list = NULL,
3691 .flags = FLAG_ADVANCED,
3694 .label = "NIS homedir",
3695 .type = P_BOOL,
3696 .p_class = P_GLOBAL,
3697 .offset = GLOBAL_VAR(bNISHomeMap),
3698 .special = NULL,
3699 .enum_list = NULL,
3700 .flags = FLAG_ADVANCED,
3703 .label = "-valid",
3704 .type = P_BOOL,
3705 .p_class = P_LOCAL,
3706 .offset = LOCAL_VAR(valid),
3707 .special = NULL,
3708 .enum_list = NULL,
3709 .flags = FLAG_HIDE,
3712 .label = "copy",
3713 .type = P_STRING,
3714 .p_class = P_LOCAL,
3715 .offset = LOCAL_VAR(szCopy),
3716 .special = handle_copy,
3717 .enum_list = NULL,
3718 .flags = FLAG_HIDE,
3721 .label = "include",
3722 .type = P_STRING,
3723 .p_class = P_LOCAL,
3724 .offset = LOCAL_VAR(szInclude),
3725 .special = handle_include,
3726 .enum_list = NULL,
3727 .flags = FLAG_HIDE|FLAG_META,
3730 .label = "preexec",
3731 .type = P_STRING,
3732 .p_class = P_LOCAL,
3733 .offset = LOCAL_VAR(szPreExec),
3734 .special = NULL,
3735 .enum_list = NULL,
3736 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT,
3739 .label = "exec",
3740 .type = P_STRING,
3741 .p_class = P_LOCAL,
3742 .offset = LOCAL_VAR(szPreExec),
3743 .special = NULL,
3744 .enum_list = NULL,
3745 .flags = FLAG_ADVANCED,
3748 .label = "preexec close",
3749 .type = P_BOOL,
3750 .p_class = P_LOCAL,
3751 .offset = LOCAL_VAR(bPreexecClose),
3752 .special = NULL,
3753 .enum_list = NULL,
3754 .flags = FLAG_ADVANCED | FLAG_SHARE,
3757 .label = "postexec",
3758 .type = P_STRING,
3759 .p_class = P_LOCAL,
3760 .offset = LOCAL_VAR(szPostExec),
3761 .special = NULL,
3762 .enum_list = NULL,
3763 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT,
3766 .label = "root preexec",
3767 .type = P_STRING,
3768 .p_class = P_LOCAL,
3769 .offset = LOCAL_VAR(szRootPreExec),
3770 .special = NULL,
3771 .enum_list = NULL,
3772 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT,
3775 .label = "root preexec close",
3776 .type = P_BOOL,
3777 .p_class = P_LOCAL,
3778 .offset = LOCAL_VAR(bRootpreexecClose),
3779 .special = NULL,
3780 .enum_list = NULL,
3781 .flags = FLAG_ADVANCED | FLAG_SHARE,
3784 .label = "root postexec",
3785 .type = P_STRING,
3786 .p_class = P_LOCAL,
3787 .offset = LOCAL_VAR(szRootPostExec),
3788 .special = NULL,
3789 .enum_list = NULL,
3790 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT,
3793 .label = "available",
3794 .type = P_BOOL,
3795 .p_class = P_LOCAL,
3796 .offset = LOCAL_VAR(bAvailable),
3797 .special = NULL,
3798 .enum_list = NULL,
3799 .flags = FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT,
3802 .label = "registry shares",
3803 .type = P_BOOL,
3804 .p_class = P_GLOBAL,
3805 .offset = GLOBAL_VAR(bRegistryShares),
3806 .special = NULL,
3807 .enum_list = NULL,
3808 .flags = FLAG_ADVANCED,
3811 .label = "usershare allow guests",
3812 .type = P_BOOL,
3813 .p_class = P_GLOBAL,
3814 .offset = GLOBAL_VAR(bUsershareAllowGuests),
3815 .special = NULL,
3816 .enum_list = NULL,
3817 .flags = FLAG_ADVANCED,
3820 .label = "usershare max shares",
3821 .type = P_INTEGER,
3822 .p_class = P_GLOBAL,
3823 .offset = GLOBAL_VAR(iUsershareMaxShares),
3824 .special = NULL,
3825 .enum_list = NULL,
3826 .flags = FLAG_ADVANCED,
3829 .label = "usershare owner only",
3830 .type = P_BOOL,
3831 .p_class = P_GLOBAL,
3832 .offset = GLOBAL_VAR(bUsershareOwnerOnly),
3833 .special = NULL,
3834 .enum_list = NULL,
3835 .flags = FLAG_ADVANCED,
3838 .label = "usershare path",
3839 .type = P_STRING,
3840 .p_class = P_GLOBAL,
3841 .offset = GLOBAL_VAR(szUsersharePath),
3842 .special = NULL,
3843 .enum_list = NULL,
3844 .flags = FLAG_ADVANCED,
3847 .label = "usershare prefix allow list",
3848 .type = P_LIST,
3849 .p_class = P_GLOBAL,
3850 .offset = GLOBAL_VAR(szUsersharePrefixAllowList),
3851 .special = NULL,
3852 .enum_list = NULL,
3853 .flags = FLAG_ADVANCED,
3856 .label = "usershare prefix deny list",
3857 .type = P_LIST,
3858 .p_class = P_GLOBAL,
3859 .offset = GLOBAL_VAR(szUsersharePrefixDenyList),
3860 .special = NULL,
3861 .enum_list = NULL,
3862 .flags = FLAG_ADVANCED,
3865 .label = "usershare template share",
3866 .type = P_STRING,
3867 .p_class = P_GLOBAL,
3868 .offset = GLOBAL_VAR(szUsershareTemplateShare),
3869 .special = NULL,
3870 .enum_list = NULL,
3871 .flags = FLAG_ADVANCED,
3874 .label = "volume",
3875 .type = P_STRING,
3876 .p_class = P_LOCAL,
3877 .offset = LOCAL_VAR(volume),
3878 .special = NULL,
3879 .enum_list = NULL,
3880 .flags = FLAG_ADVANCED | FLAG_SHARE,
3883 .label = "fstype",
3884 .type = P_STRING,
3885 .p_class = P_LOCAL,
3886 .offset = LOCAL_VAR(fstype),
3887 .special = NULL,
3888 .enum_list = NULL,
3889 .flags = FLAG_ADVANCED | FLAG_SHARE,
3892 .label = "set directory",
3893 .type = P_BOOLREV,
3894 .p_class = P_LOCAL,
3895 .offset = LOCAL_VAR(bNo_set_dir),
3896 .special = NULL,
3897 .enum_list = NULL,
3898 .flags = FLAG_ADVANCED | FLAG_SHARE,
3901 .label = "wide links",
3902 .type = P_BOOL,
3903 .p_class = P_LOCAL,
3904 .offset = LOCAL_VAR(bWidelinks),
3905 .special = NULL,
3906 .enum_list = NULL,
3907 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
3910 .label = "follow symlinks",
3911 .type = P_BOOL,
3912 .p_class = P_LOCAL,
3913 .offset = LOCAL_VAR(bSymlinks),
3914 .special = NULL,
3915 .enum_list = NULL,
3916 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
3919 .label = "dont descend",
3920 .type = P_STRING,
3921 .p_class = P_LOCAL,
3922 .offset = LOCAL_VAR(szDontdescend),
3923 .special = NULL,
3924 .enum_list = NULL,
3925 .flags = FLAG_ADVANCED | FLAG_SHARE,
3928 .label = "magic script",
3929 .type = P_STRING,
3930 .p_class = P_LOCAL,
3931 .offset = LOCAL_VAR(szMagicScript),
3932 .special = NULL,
3933 .enum_list = NULL,
3934 .flags = FLAG_ADVANCED | FLAG_SHARE,
3937 .label = "magic output",
3938 .type = P_STRING,
3939 .p_class = P_LOCAL,
3940 .offset = LOCAL_VAR(szMagicOutput),
3941 .special = NULL,
3942 .enum_list = NULL,
3943 .flags = FLAG_ADVANCED | FLAG_SHARE,
3946 .label = "delete readonly",
3947 .type = P_BOOL,
3948 .p_class = P_LOCAL,
3949 .offset = LOCAL_VAR(bDeleteReadonly),
3950 .special = NULL,
3951 .enum_list = NULL,
3952 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
3955 .label = "dos filemode",
3956 .type = P_BOOL,
3957 .p_class = P_LOCAL,
3958 .offset = LOCAL_VAR(bDosFilemode),
3959 .special = NULL,
3960 .enum_list = NULL,
3961 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
3964 .label = "dos filetimes",
3965 .type = P_BOOL,
3966 .p_class = P_LOCAL,
3967 .offset = LOCAL_VAR(bDosFiletimes),
3968 .special = NULL,
3969 .enum_list = NULL,
3970 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
3973 .label = "dos filetime resolution",
3974 .type = P_BOOL,
3975 .p_class = P_LOCAL,
3976 .offset = LOCAL_VAR(bDosFiletimeResolution),
3977 .special = NULL,
3978 .enum_list = NULL,
3979 .flags = FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL,
3982 .label = "fake directory create times",
3983 .type = P_BOOL,
3984 .p_class = P_LOCAL,
3985 .offset = LOCAL_VAR(bFakeDirCreateTimes),
3986 .special = NULL,
3987 .enum_list = NULL,
3988 .flags = FLAG_ADVANCED | FLAG_GLOBAL,
3991 .label = "async smb echo handler",
3992 .type = P_BOOL,
3993 .p_class = P_GLOBAL,
3994 .offset = GLOBAL_VAR(bAsyncSMBEchoHandler),
3995 .special = NULL,
3996 .enum_list = NULL,
3997 .flags = FLAG_ADVANCED | FLAG_GLOBAL,
4000 .label = "multicast dns register",
4001 .type = P_BOOL,
4002 .p_class = P_GLOBAL,
4003 .offset = GLOBAL_VAR(bMulticastDnsRegister),
4004 .special = NULL,
4005 .enum_list = NULL,
4006 .flags = FLAG_ADVANCED | FLAG_GLOBAL,
4009 .label = "panic action",
4010 .type = P_STRING,
4011 .p_class = P_GLOBAL,
4012 .offset = GLOBAL_VAR(szPanicAction),
4013 .special = NULL,
4014 .enum_list = NULL,
4015 .flags = FLAG_ADVANCED,
4018 .label = "perfcount module",
4019 .type = P_STRING,
4020 .p_class = P_GLOBAL,
4021 .offset = GLOBAL_VAR(szSMBPerfcountModule),
4022 .special = NULL,
4023 .enum_list = NULL,
4024 .flags = FLAG_ADVANCED,
4027 {N_("VFS module options"), P_SEP, P_SEPARATOR},
4030 .label = "vfs objects",
4031 .type = P_LIST,
4032 .p_class = P_LOCAL,
4033 .offset = LOCAL_VAR(szVfsObjects),
4034 .special = NULL,
4035 .enum_list = NULL,
4036 .flags = FLAG_ADVANCED | FLAG_SHARE,
4039 .label = "vfs object",
4040 .type = P_LIST,
4041 .p_class = P_LOCAL,
4042 .offset = LOCAL_VAR(szVfsObjects),
4043 .special = NULL,
4044 .enum_list = NULL,
4045 .flags = FLAG_HIDE,
4049 {N_("MSDFS options"), P_SEP, P_SEPARATOR},
4052 .label = "msdfs root",
4053 .type = P_BOOL,
4054 .p_class = P_LOCAL,
4055 .offset = LOCAL_VAR(bMSDfsRoot),
4056 .special = NULL,
4057 .enum_list = NULL,
4058 .flags = FLAG_ADVANCED | FLAG_SHARE,
4061 .label = "msdfs proxy",
4062 .type = P_STRING,
4063 .p_class = P_LOCAL,
4064 .offset = LOCAL_VAR(szMSDfsProxy),
4065 .special = NULL,
4066 .enum_list = NULL,
4067 .flags = FLAG_ADVANCED | FLAG_SHARE,
4070 .label = "host msdfs",
4071 .type = P_BOOL,
4072 .p_class = P_GLOBAL,
4073 .offset = GLOBAL_VAR(bHostMSDfs),
4074 .special = NULL,
4075 .enum_list = NULL,
4076 .flags = FLAG_ADVANCED,
4079 {N_("Winbind options"), P_SEP, P_SEPARATOR},
4082 .label = "passdb expand explicit",
4083 .type = P_BOOL,
4084 .p_class = P_GLOBAL,
4085 .offset = GLOBAL_VAR(bPassdbExpandExplicit),
4086 .special = NULL,
4087 .enum_list = NULL,
4088 .flags = FLAG_ADVANCED,
4091 .label = "idmap backend",
4092 .type = P_STRING,
4093 .p_class = P_GLOBAL,
4094 .offset = GLOBAL_VAR(szIdmapBackend),
4095 .special = handle_idmap_backend,
4096 .enum_list = NULL,
4097 .flags = FLAG_ADVANCED | FLAG_DEPRECATED,
4100 .label = "idmap cache time",
4101 .type = P_INTEGER,
4102 .p_class = P_GLOBAL,
4103 .offset = GLOBAL_VAR(iIdmapCacheTime),
4104 .special = NULL,
4105 .enum_list = NULL,
4106 .flags = FLAG_ADVANCED,
4109 .label = "idmap negative cache time",
4110 .type = P_INTEGER,
4111 .p_class = P_GLOBAL,
4112 .offset = GLOBAL_VAR(iIdmapNegativeCacheTime),
4113 .special = NULL,
4114 .enum_list = NULL,
4115 .flags = FLAG_ADVANCED,
4118 .label = "idmap uid",
4119 .type = P_STRING,
4120 .p_class = P_GLOBAL,
4121 .offset = GLOBAL_VAR(szIdmapUID),
4122 .special = handle_idmap_uid,
4123 .enum_list = NULL,
4124 .flags = FLAG_ADVANCED | FLAG_DEPRECATED,
4127 .label = "winbind uid",
4128 .type = P_STRING,
4129 .p_class = P_GLOBAL,
4130 .offset = GLOBAL_VAR(szIdmapUID),
4131 .special = handle_idmap_uid,
4132 .enum_list = NULL,
4133 .flags = FLAG_HIDE,
4136 .label = "idmap gid",
4137 .type = P_STRING,
4138 .p_class = P_GLOBAL,
4139 .offset = GLOBAL_VAR(szIdmapGID),
4140 .special = handle_idmap_gid,
4141 .enum_list = NULL,
4142 .flags = FLAG_ADVANCED | FLAG_DEPRECATED,
4145 .label = "winbind gid",
4146 .type = P_STRING,
4147 .p_class = P_GLOBAL,
4148 .offset = GLOBAL_VAR(szIdmapGID),
4149 .special = handle_idmap_gid,
4150 .enum_list = NULL,
4151 .flags = FLAG_HIDE,
4154 .label = "template homedir",
4155 .type = P_STRING,
4156 .p_class = P_GLOBAL,
4157 .offset = GLOBAL_VAR(szTemplateHomedir),
4158 .special = NULL,
4159 .enum_list = NULL,
4160 .flags = FLAG_ADVANCED,
4163 .label = "template shell",
4164 .type = P_STRING,
4165 .p_class = P_GLOBAL,
4166 .offset = GLOBAL_VAR(szTemplateShell),
4167 .special = NULL,
4168 .enum_list = NULL,
4169 .flags = FLAG_ADVANCED,
4172 .label = "winbind separator",
4173 .type = P_STRING,
4174 .p_class = P_GLOBAL,
4175 .offset = GLOBAL_VAR(szWinbindSeparator),
4176 .special = NULL,
4177 .enum_list = NULL,
4178 .flags = FLAG_ADVANCED,
4181 .label = "winbind cache time",
4182 .type = P_INTEGER,
4183 .p_class = P_GLOBAL,
4184 .offset = GLOBAL_VAR(winbind_cache_time),
4185 .special = NULL,
4186 .enum_list = NULL,
4187 .flags = FLAG_ADVANCED,
4190 .label = "winbind reconnect delay",
4191 .type = P_INTEGER,
4192 .p_class = P_GLOBAL,
4193 .offset = GLOBAL_VAR(winbind_reconnect_delay),
4194 .special = NULL,
4195 .enum_list = NULL,
4196 .flags = FLAG_ADVANCED,
4199 .label = "winbind max clients",
4200 .type = P_INTEGER,
4201 .p_class = P_GLOBAL,
4202 .offset = GLOBAL_VAR(winbind_max_clients),
4203 .special = NULL,
4204 .enum_list = NULL,
4205 .flags = FLAG_ADVANCED,
4208 .label = "winbind enum users",
4209 .type = P_BOOL,
4210 .p_class = P_GLOBAL,
4211 .offset = GLOBAL_VAR(bWinbindEnumUsers),
4212 .special = NULL,
4213 .enum_list = NULL,
4214 .flags = FLAG_ADVANCED,
4217 .label = "winbind enum groups",
4218 .type = P_BOOL,
4219 .p_class = P_GLOBAL,
4220 .offset = GLOBAL_VAR(bWinbindEnumGroups),
4221 .special = NULL,
4222 .enum_list = NULL,
4223 .flags = FLAG_ADVANCED,
4226 .label = "winbind use default domain",
4227 .type = P_BOOL,
4228 .p_class = P_GLOBAL,
4229 .offset = GLOBAL_VAR(bWinbindUseDefaultDomain),
4230 .special = NULL,
4231 .enum_list = NULL,
4232 .flags = FLAG_ADVANCED,
4235 .label = "winbind trusted domains only",
4236 .type = P_BOOL,
4237 .p_class = P_GLOBAL,
4238 .offset = GLOBAL_VAR(bWinbindTrustedDomainsOnly),
4239 .special = NULL,
4240 .enum_list = NULL,
4241 .flags = FLAG_ADVANCED,
4244 .label = "winbind nested groups",
4245 .type = P_BOOL,
4246 .p_class = P_GLOBAL,
4247 .offset = GLOBAL_VAR(bWinbindNestedGroups),
4248 .special = NULL,
4249 .enum_list = NULL,
4250 .flags = FLAG_ADVANCED,
4253 .label = "winbind expand groups",
4254 .type = P_INTEGER,
4255 .p_class = P_GLOBAL,
4256 .offset = GLOBAL_VAR(winbind_expand_groups),
4257 .special = NULL,
4258 .enum_list = NULL,
4259 .flags = FLAG_ADVANCED,
4262 .label = "winbind nss info",
4263 .type = P_LIST,
4264 .p_class = P_GLOBAL,
4265 .offset = GLOBAL_VAR(szWinbindNssInfo),
4266 .special = NULL,
4267 .enum_list = NULL,
4268 .flags = FLAG_ADVANCED,
4271 .label = "winbind refresh tickets",
4272 .type = P_BOOL,
4273 .p_class = P_GLOBAL,
4274 .offset = GLOBAL_VAR(bWinbindRefreshTickets),
4275 .special = NULL,
4276 .enum_list = NULL,
4277 .flags = FLAG_ADVANCED,
4280 .label = "winbind offline logon",
4281 .type = P_BOOL,
4282 .p_class = P_GLOBAL,
4283 .offset = GLOBAL_VAR(bWinbindOfflineLogon),
4284 .special = NULL,
4285 .enum_list = NULL,
4286 .flags = FLAG_ADVANCED,
4289 .label = "winbind normalize names",
4290 .type = P_BOOL,
4291 .p_class = P_GLOBAL,
4292 .offset = GLOBAL_VAR(bWinbindNormalizeNames),
4293 .special = NULL,
4294 .enum_list = NULL,
4295 .flags = FLAG_ADVANCED,
4298 .label = "winbind rpc only",
4299 .type = P_BOOL,
4300 .p_class = P_GLOBAL,
4301 .offset = GLOBAL_VAR(bWinbindRpcOnly),
4302 .special = NULL,
4303 .enum_list = NULL,
4304 .flags = FLAG_ADVANCED,
4307 .label = "create krb5 conf",
4308 .type = P_BOOL,
4309 .p_class = P_GLOBAL,
4310 .offset = GLOBAL_VAR(bCreateKrb5Conf),
4311 .special = NULL,
4312 .enum_list = NULL,
4313 .flags = FLAG_ADVANCED,
4316 .label = "ncalrpc dir",
4317 .type = P_STRING,
4318 .p_class = P_GLOBAL,
4319 .offset = GLOBAL_VAR(ncalrpc_dir),
4320 .special = NULL,
4321 .enum_list = NULL,
4322 .flags = FLAG_ADVANCED,
4325 .label = "winbind max domain connections",
4326 .type = P_INTEGER,
4327 .p_class = P_GLOBAL,
4328 .offset = GLOBAL_VAR(winbindMaxDomainConnections),
4329 .special = NULL,
4330 .enum_list = NULL,
4331 .flags = FLAG_ADVANCED,
4334 {NULL, P_BOOL, P_NONE, 0, NULL, NULL, 0}
4337 /***************************************************************************
4338 Initialise the sDefault parameter structure for the printer values.
4339 ***************************************************************************/
4341 static void init_printer_values(struct loadparm_service *pService)
4343 /* choose defaults depending on the type of printing */
4344 switch (pService->iPrinting) {
4345 case PRINT_BSD:
4346 case PRINT_AIX:
4347 case PRINT_LPRNT:
4348 case PRINT_LPROS2:
4349 string_set(&pService->szLpqcommand, "lpq -P'%p'");
4350 string_set(&pService->szLprmcommand, "lprm -P'%p' %j");
4351 string_set(&pService->szPrintcommand, "lpr -r -P'%p' %s");
4352 break;
4354 case PRINT_LPRNG:
4355 case PRINT_PLP:
4356 string_set(&pService->szLpqcommand, "lpq -P'%p'");
4357 string_set(&pService->szLprmcommand, "lprm -P'%p' %j");
4358 string_set(&pService->szPrintcommand, "lpr -r -P'%p' %s");
4359 string_set(&pService->szQueuepausecommand, "lpc stop '%p'");
4360 string_set(&pService->szQueueresumecommand, "lpc start '%p'");
4361 string_set(&pService->szLppausecommand, "lpc hold '%p' %j");
4362 string_set(&pService->szLpresumecommand, "lpc release '%p' %j");
4363 break;
4365 case PRINT_CUPS:
4366 case PRINT_IPRINT:
4367 #ifdef HAVE_CUPS
4368 /* set the lpq command to contain the destination printer
4369 name only. This is used by cups_queue_get() */
4370 string_set(&pService->szLpqcommand, "%p");
4371 string_set(&pService->szLprmcommand, "");
4372 string_set(&pService->szPrintcommand, "");
4373 string_set(&pService->szLppausecommand, "");
4374 string_set(&pService->szLpresumecommand, "");
4375 string_set(&pService->szQueuepausecommand, "");
4376 string_set(&pService->szQueueresumecommand, "");
4377 #else
4378 string_set(&pService->szLpqcommand, "lpq -P'%p'");
4379 string_set(&pService->szLprmcommand, "lprm -P'%p' %j");
4380 string_set(&pService->szPrintcommand, "lpr -P'%p' %s; rm %s");
4381 string_set(&pService->szLppausecommand, "lp -i '%p-%j' -H hold");
4382 string_set(&pService->szLpresumecommand, "lp -i '%p-%j' -H resume");
4383 string_set(&pService->szQueuepausecommand, "disable '%p'");
4384 string_set(&pService->szQueueresumecommand, "enable '%p'");
4385 #endif /* HAVE_CUPS */
4386 break;
4388 case PRINT_SYSV:
4389 case PRINT_HPUX:
4390 string_set(&pService->szLpqcommand, "lpstat -o%p");
4391 string_set(&pService->szLprmcommand, "cancel %p-%j");
4392 string_set(&pService->szPrintcommand, "lp -c -d%p %s; rm %s");
4393 string_set(&pService->szQueuepausecommand, "disable %p");
4394 string_set(&pService->szQueueresumecommand, "enable %p");
4395 #ifndef HPUX
4396 string_set(&pService->szLppausecommand, "lp -i %p-%j -H hold");
4397 string_set(&pService->szLpresumecommand, "lp -i %p-%j -H resume");
4398 #endif /* HPUX */
4399 break;
4401 case PRINT_QNX:
4402 string_set(&pService->szLpqcommand, "lpq -P%p");
4403 string_set(&pService->szLprmcommand, "lprm -P%p %j");
4404 string_set(&pService->szPrintcommand, "lp -r -P%p %s");
4405 break;
4407 #if defined(DEVELOPER) || defined(ENABLE_BUILD_FARM_HACKS)
4409 case PRINT_TEST:
4410 case PRINT_VLP: {
4411 const char *tdbfile;
4412 char *tmp;
4414 tdbfile = talloc_asprintf(
4415 talloc_tos(), "tdbfile=%s",
4416 lp_parm_const_string(-1, "vlp", "tdbfile",
4417 "/tmp/vlp.tdb"));
4418 if (tdbfile == NULL) {
4419 tdbfile="tdbfile=/tmp/vlp.tdb";
4422 tmp = talloc_asprintf(talloc_tos(), "vlp %s print %%p %%s",
4423 tdbfile);
4424 string_set(&pService->szPrintcommand,
4425 tmp ? tmp : "vlp print %p %s");
4426 TALLOC_FREE(tmp);
4428 tmp = talloc_asprintf(talloc_tos(), "vlp %s lpq %%p",
4429 tdbfile);
4430 string_set(&pService->szLpqcommand,
4431 tmp ? tmp : "vlp lpq %p");
4432 TALLOC_FREE(tmp);
4434 tmp = talloc_asprintf(talloc_tos(), "vlp %s lprm %%p %%j",
4435 tdbfile);
4436 string_set(&pService->szLprmcommand,
4437 tmp ? tmp : "vlp lprm %p %j");
4438 TALLOC_FREE(tmp);
4440 tmp = talloc_asprintf(talloc_tos(), "vlp %s lppause %%p %%j",
4441 tdbfile);
4442 string_set(&pService->szLppausecommand,
4443 tmp ? tmp : "vlp lppause %p %j");
4444 TALLOC_FREE(tmp);
4446 tmp = talloc_asprintf(talloc_tos(), "vlp %s lpresume %%p %%j",
4447 tdbfile);
4448 string_set(&pService->szLpresumecommand,
4449 tmp ? tmp : "vlp lpresume %p %j");
4450 TALLOC_FREE(tmp);
4452 tmp = talloc_asprintf(talloc_tos(), "vlp %s queuepause %%p",
4453 tdbfile);
4454 string_set(&pService->szQueuepausecommand,
4455 tmp ? tmp : "vlp queuepause %p");
4456 TALLOC_FREE(tmp);
4458 tmp = talloc_asprintf(talloc_tos(), "vlp %s queueresume %%p",
4459 tdbfile);
4460 string_set(&pService->szQueueresumecommand,
4461 tmp ? tmp : "vlp queueresume %p");
4462 TALLOC_FREE(tmp);
4464 break;
4466 #endif /* DEVELOPER */
4471 * Function to return the default value for the maximum number of open
4472 * file descriptors permitted. This function tries to consult the
4473 * kernel-level (sysctl) and ulimit (getrlimit()) values and goes
4474 * the smaller of those.
4476 static int max_open_files(void)
4478 int sysctl_max = MAX_OPEN_FILES;
4479 int rlimit_max = MAX_OPEN_FILES;
4481 #ifdef HAVE_SYSCTLBYNAME
4483 size_t size = sizeof(sysctl_max);
4484 sysctlbyname("kern.maxfilesperproc", &sysctl_max, &size, NULL,
4487 #endif
4489 #if (defined(HAVE_GETRLIMIT) && defined(RLIMIT_NOFILE))
4491 struct rlimit rl;
4493 ZERO_STRUCT(rl);
4495 if (getrlimit(RLIMIT_NOFILE, &rl) == 0)
4496 rlimit_max = rl.rlim_cur;
4498 #if defined(RLIM_INFINITY)
4499 if(rl.rlim_cur == RLIM_INFINITY)
4500 rlimit_max = MAX_OPEN_FILES;
4501 #endif
4503 #endif
4505 if (sysctl_max < MIN_OPEN_FILES_WINDOWS) {
4506 DEBUG(2,("max_open_files: increasing sysctl_max (%d) to "
4507 "minimum Windows limit (%d)\n",
4508 sysctl_max,
4509 MIN_OPEN_FILES_WINDOWS));
4510 sysctl_max = MIN_OPEN_FILES_WINDOWS;
4513 if (rlimit_max < MIN_OPEN_FILES_WINDOWS) {
4514 DEBUG(2,("rlimit_max: increasing rlimit_max (%d) to "
4515 "minimum Windows limit (%d)\n",
4516 rlimit_max,
4517 MIN_OPEN_FILES_WINDOWS));
4518 rlimit_max = MIN_OPEN_FILES_WINDOWS;
4521 return MIN(sysctl_max, rlimit_max);
4525 * Common part of freeing allocated data for one parameter.
4527 static void free_one_parameter_common(void *parm_ptr,
4528 struct parm_struct parm)
4530 if ((parm.type == P_STRING) ||
4531 (parm.type == P_USTRING))
4533 string_free((char**)parm_ptr);
4534 } else if (parm.type == P_LIST) {
4535 TALLOC_FREE(*((char***)parm_ptr));
4540 * Free the allocated data for one parameter for a share
4541 * given as a service struct.
4543 static void free_one_parameter(struct loadparm_service *service,
4544 struct parm_struct parm)
4546 void *parm_ptr;
4548 if (parm.p_class != P_LOCAL) {
4549 return;
4552 parm_ptr = lp_parm_ptr(service, &parm);
4554 free_one_parameter_common(parm_ptr, parm);
4558 * Free the allocated parameter data of a share given
4559 * as a service struct.
4561 static void free_parameters(struct loadparm_service *service)
4563 uint32_t i;
4565 for (i=0; parm_table[i].label; i++) {
4566 free_one_parameter(service, parm_table[i]);
4571 * Free the allocated data for one parameter for a given share
4572 * specified by an snum.
4574 static void free_one_parameter_by_snum(int snum, struct parm_struct parm)
4576 void *parm_ptr;
4578 if (snum < 0) {
4579 parm_ptr = lp_parm_ptr(NULL, &parm);
4580 } else if (parm.p_class != P_LOCAL) {
4581 return;
4582 } else {
4583 parm_ptr = lp_local_ptr_by_snum(snum, &parm);
4586 free_one_parameter_common(parm_ptr, parm);
4590 * Free the allocated parameter data for a share specified
4591 * by an snum.
4593 static void free_parameters_by_snum(int snum)
4595 uint32_t i;
4597 for (i=0; parm_table[i].label; i++) {
4598 free_one_parameter_by_snum(snum, parm_table[i]);
4603 * Free the allocated global parameters.
4605 static void free_global_parameters(void)
4607 free_parameters_by_snum(GLOBAL_SECTION_SNUM);
4610 static int map_parameter(const char *pszParmName);
4612 struct lp_stored_option {
4613 struct lp_stored_option *prev, *next;
4614 const char *label;
4615 const char *value;
4618 static struct lp_stored_option *stored_options;
4621 save options set by lp_set_cmdline() into a list. This list is
4622 re-applied when we do a globals reset, so that cmdline set options
4623 are sticky across reloads of smb.conf
4625 static bool store_lp_set_cmdline(const char *pszParmName, const char *pszParmValue)
4627 struct lp_stored_option *entry, *entry_next;
4628 for (entry = stored_options; entry != NULL; entry = entry_next) {
4629 entry_next = entry->next;
4630 if (strcmp(pszParmName, entry->label) == 0) {
4631 DLIST_REMOVE(stored_options, entry);
4632 talloc_free(entry);
4633 break;
4637 entry = talloc(NULL, struct lp_stored_option);
4638 if (!entry) {
4639 return false;
4642 entry->label = talloc_strdup(entry, pszParmName);
4643 if (!entry->label) {
4644 talloc_free(entry);
4645 return false;
4648 entry->value = talloc_strdup(entry, pszParmValue);
4649 if (!entry->value) {
4650 talloc_free(entry);
4651 return false;
4654 DLIST_ADD_END(stored_options, entry, struct lp_stored_option);
4656 return true;
4659 static bool apply_lp_set_cmdline(void)
4661 struct lp_stored_option *entry = NULL;
4662 for (entry = stored_options; entry != NULL; entry = entry->next) {
4663 if (!lp_set_cmdline_helper(entry->label, entry->value, false)) {
4664 DEBUG(0, ("Failed to re-apply cmdline parameter %s = %s\n",
4665 entry->label, entry->value));
4666 return false;
4669 return true;
4672 /***************************************************************************
4673 Initialise the global parameter structure.
4674 ***************************************************************************/
4676 static void init_globals(bool reinit_globals)
4678 static bool done_init = false;
4679 char *s = NULL;
4680 int i;
4682 /* If requested to initialize only once and we've already done it... */
4683 if (!reinit_globals && done_init) {
4684 /* ... then we have nothing more to do */
4685 return;
4688 if (!done_init) {
4689 /* The logfile can be set before this is invoked. Free it if so. */
4690 if (Globals.szLogFile != NULL) {
4691 string_free(&Globals.szLogFile);
4692 Globals.szLogFile = NULL;
4694 done_init = true;
4695 } else {
4696 free_global_parameters();
4699 /* This memset and the free_global_parameters() above will
4700 * wipe out smb.conf options set with lp_set_cmdline(). The
4701 * apply_lp_set_cmdline() call puts these values back in the
4702 * table once the defaults are set */
4703 memset((void *)&Globals, '\0', sizeof(Globals));
4705 for (i = 0; parm_table[i].label; i++) {
4706 if ((parm_table[i].type == P_STRING ||
4707 parm_table[i].type == P_USTRING))
4709 string_set(lp_parm_ptr(NULL, &parm_table[i]), "");
4714 string_set(&sDefault.fstype, FSTYPE_STRING);
4715 string_set(&sDefault.szPrintjobUsername, "%U");
4717 init_printer_values(&sDefault);
4720 DEBUG(3, ("Initialising global parameters\n"));
4722 /* Must manually force to upper case here, as this does not go via the handler */
4723 string_set(&Globals.szNetbiosName, myhostname_upper());
4725 string_set(&Globals.szSMBPasswdFile, get_dyn_SMB_PASSWD_FILE());
4726 string_set(&Globals.szPrivateDir, get_dyn_PRIVATE_DIR());
4728 /* use the new 'hash2' method by default, with a prefix of 1 */
4729 string_set(&Globals.szManglingMethod, "hash2");
4730 Globals.mangle_prefix = 1;
4732 string_set(&Globals.szGuestaccount, GUEST_ACCOUNT);
4734 /* using UTF8 by default allows us to support all chars */
4735 string_set(&Globals.unix_charset, DEFAULT_UNIX_CHARSET);
4737 /* Use codepage 850 as a default for the dos character set */
4738 string_set(&Globals.dos_charset, DEFAULT_DOS_CHARSET);
4741 * Allow the default PASSWD_CHAT to be overridden in local.h.
4743 string_set(&Globals.szPasswdChat, DEFAULT_PASSWD_CHAT);
4745 string_set(&Globals.szWorkgroup, DEFAULT_WORKGROUP);
4747 string_set(&Globals.szPasswdProgram, "");
4748 string_set(&Globals.szLockDir, get_dyn_LOCKDIR());
4749 string_set(&Globals.szStateDir, get_dyn_STATEDIR());
4750 string_set(&Globals.szCacheDir, get_dyn_CACHEDIR());
4751 string_set(&Globals.szPidDir, get_dyn_PIDDIR());
4752 string_set(&Globals.szSocketAddress, "0.0.0.0");
4754 * By default support explicit binding to broadcast
4755 * addresses.
4757 Globals.bNmbdBindExplicitBroadcast = true;
4759 if (asprintf(&s, "Samba %s", samba_version_string()) < 0) {
4760 smb_panic("init_globals: ENOMEM");
4762 string_set(&Globals.szServerString, s);
4763 SAFE_FREE(s);
4764 #ifdef DEVELOPER
4765 string_set(&Globals.szPanicAction, "/bin/sleep 999999999");
4766 #endif
4768 string_set(&Globals.szSocketOptions, DEFAULT_SOCKET_OPTIONS);
4770 string_set(&Globals.szLogonDrive, "");
4771 /* %N is the NIS auto.home server if -DAUTOHOME is used, else same as %L */
4772 string_set(&Globals.szLogonHome, "\\\\%N\\%U");
4773 string_set(&Globals.szLogonPath, "\\\\%N\\%U\\profile");
4775 string_set(&Globals.szNameResolveOrder, "lmhosts wins host bcast");
4776 string_set(&Globals.szPasswordServer, "*");
4778 Globals.AlgorithmicRidBase = BASE_RID;
4780 Globals.bLoadPrinters = true;
4781 Globals.PrintcapCacheTime = 750; /* 12.5 minutes */
4783 Globals.ConfigBackend = config_backend;
4785 /* Was 65535 (0xFFFF). 0x4101 matches W2K and causes major speed improvements... */
4786 /* Discovered by 2 days of pain by Don McCall @ HP :-). */
4787 Globals.max_xmit = 0x4104;
4788 Globals.max_mux = 50; /* This is *needed* for profile support. */
4789 Globals.lpqcachetime = 30; /* changed to handle large print servers better -- jerry */
4790 Globals.bDisableSpoolss = false;
4791 Globals.iMaxSmbdProcesses = 0;/* no limit specified */
4792 Globals.pwordlevel = 0;
4793 Globals.unamelevel = 0;
4794 Globals.deadtime = 0;
4795 Globals.getwd_cache = true;
4796 Globals.bLargeReadwrite = true;
4797 Globals.max_log_size = 5000;
4798 Globals.max_open_files = max_open_files();
4799 Globals.open_files_db_hash_size = SMB_OPEN_DATABASE_TDB_HASH_SIZE;
4800 Globals.maxprotocol = PROTOCOL_NT1;
4801 Globals.minprotocol = PROTOCOL_CORE;
4802 Globals.security = SEC_USER;
4803 Globals.paranoid_server_security = true;
4804 Globals.bEncryptPasswords = true;
4805 Globals.clientSchannel = Auto;
4806 Globals.serverSchannel = Auto;
4807 Globals.bReadRaw = true;
4808 Globals.bWriteRaw = true;
4809 Globals.bNullPasswords = false;
4810 Globals.bObeyPamRestrictions = false;
4811 Globals.syslog = 1;
4812 Globals.bSyslogOnly = false;
4813 Globals.bTimestampLogs = true;
4814 string_set(&Globals.szLogLevel, "0");
4815 Globals.bDebugPrefixTimestamp = false;
4816 Globals.bDebugHiresTimestamp = true;
4817 Globals.bDebugPid = false;
4818 Globals.bDebugUid = false;
4819 Globals.bDebugClass = false;
4820 Globals.bEnableCoreFiles = true;
4821 Globals.max_ttl = 60 * 60 * 24 * 3; /* 3 days default. */
4822 Globals.max_wins_ttl = 60 * 60 * 24 * 6; /* 6 days default. */
4823 Globals.min_wins_ttl = 60 * 60 * 6; /* 6 hours default. */
4824 Globals.machine_password_timeout = 60 * 60 * 24 * 7; /* 7 days default. */
4825 Globals.lm_announce = 2; /* = Auto: send only if LM clients found */
4826 Globals.lm_interval = 60;
4827 #if (defined(HAVE_NETGROUP) && defined(WITH_AUTOMOUNT))
4828 Globals.bNISHomeMap = false;
4829 #ifdef WITH_NISPLUS_HOME
4830 string_set(&Globals.szNISHomeMapName, "auto_home.org_dir");
4831 #else
4832 string_set(&Globals.szNISHomeMapName, "auto.home");
4833 #endif
4834 #endif
4835 Globals.bTimeServer = false;
4836 Globals.bBindInterfacesOnly = false;
4837 Globals.bUnixPasswdSync = false;
4838 Globals.bPamPasswordChange = false;
4839 Globals.bPasswdChatDebug = false;
4840 Globals.iPasswdChatTimeout = 2; /* 2 second default. */
4841 Globals.bNTPipeSupport = true; /* Do NT pipes by default. */
4842 Globals.bNTStatusSupport = true; /* Use NT status by default. */
4843 Globals.bStatCache = true; /* use stat cache by default */
4844 Globals.iMaxStatCacheSize = 256; /* 256k by default */
4845 Globals.restrict_anonymous = 0;
4846 Globals.bClientLanManAuth = false; /* Do NOT use the LanMan hash if it is available */
4847 Globals.bClientPlaintextAuth = false; /* Do NOT use a plaintext password even if is requested by the server */
4848 Globals.bLanmanAuth = false; /* Do NOT use the LanMan hash, even if it is supplied */
4849 Globals.bNTLMAuth = true; /* Do use NTLMv1 if it is supplied by the client (otherwise NTLMv2) */
4850 Globals.bClientNTLMv2Auth = true; /* Client should always use use NTLMv2, as we can't tell that the server supports it, but most modern servers do */
4851 /* Note, that we will also use NTLM2 session security (which is different), if it is available */
4853 Globals.map_to_guest = 0; /* By Default, "Never" */
4854 Globals.oplock_break_wait_time = 0; /* By Default, 0 msecs. */
4855 Globals.enhanced_browsing = true;
4856 Globals.iLockSpinTime = WINDOWS_MINIMUM_LOCK_TIMEOUT_MS; /* msec. */
4857 #ifdef MMAP_BLACKLIST
4858 Globals.bUseMmap = false;
4859 #else
4860 Globals.bUseMmap = true;
4861 #endif
4862 Globals.bUnixExtensions = true;
4863 Globals.bResetOnZeroVC = false;
4864 Globals.bLogWriteableFilesOnExit = false;
4865 Globals.bCreateKrb5Conf = true;
4866 Globals.winbindMaxDomainConnections = 1;
4868 /* hostname lookups can be very expensive and are broken on
4869 a large number of sites (tridge) */
4870 Globals.bHostnameLookups = false;
4872 string_set(&Globals.szPassdbBackend, "tdbsam");
4873 string_set(&Globals.szLdapSuffix, "");
4874 string_set(&Globals.szLdapMachineSuffix, "");
4875 string_set(&Globals.szLdapUserSuffix, "");
4876 string_set(&Globals.szLdapGroupSuffix, "");
4877 string_set(&Globals.szLdapIdmapSuffix, "");
4879 string_set(&Globals.szLdapAdminDn, "");
4880 Globals.ldap_ssl = LDAP_SSL_START_TLS;
4881 Globals.ldap_ssl_ads = false;
4882 Globals.ldap_deref = -1;
4883 Globals.ldap_passwd_sync = LDAP_PASSWD_SYNC_OFF;
4884 Globals.ldap_delete_dn = false;
4885 Globals.ldap_replication_sleep = 1000; /* wait 1 sec for replication */
4886 Globals.ldap_follow_referral = Auto;
4887 Globals.ldap_timeout = LDAP_DEFAULT_TIMEOUT;
4888 Globals.ldap_connection_timeout = LDAP_CONNECTION_DEFAULT_TIMEOUT;
4889 Globals.ldap_page_size = LDAP_PAGE_SIZE;
4891 Globals.ldap_debug_level = 0;
4892 Globals.ldap_debug_threshold = 10;
4894 /* This is what we tell the afs client. in reality we set the token
4895 * to never expire, though, when this runs out the afs client will
4896 * forget the token. Set to 0 to get NEVERDATE.*/
4897 Globals.iAfsTokenLifetime = 604800;
4898 Globals.cups_connection_timeout = CUPS_DEFAULT_CONNECTION_TIMEOUT;
4900 /* these parameters are set to defaults that are more appropriate
4901 for the increasing samba install base:
4903 as a member of the workgroup, that will possibly become a
4904 _local_ master browser (lm = true). this is opposed to a forced
4905 local master browser startup (pm = true).
4907 doesn't provide WINS server service by default (wsupp = false),
4908 and doesn't provide domain master browser services by default, either.
4912 Globals.bMsAddPrinterWizard = true;
4913 Globals.os_level = 20;
4914 Globals.bLocalMaster = true;
4915 Globals.iDomainMaster = Auto; /* depending on bDomainLogons */
4916 Globals.bDomainLogons = false;
4917 Globals.bBrowseList = true;
4918 Globals.bWINSsupport = false;
4919 Globals.bWINSproxy = false;
4921 TALLOC_FREE(Globals.szInitLogonDelayedHosts);
4922 Globals.InitLogonDelay = 100; /* 100 ms default delay */
4924 Globals.bDNSproxy = true;
4926 /* this just means to use them if they exist */
4927 Globals.bKernelOplocks = true;
4929 Globals.bAllowTrustedDomains = true;
4930 string_set(&Globals.szIdmapBackend, "tdb");
4932 string_set(&Globals.szTemplateShell, "/bin/false");
4933 string_set(&Globals.szTemplateHomedir, "/home/%D/%U");
4934 string_set(&Globals.szWinbindSeparator, "\\");
4936 string_set(&Globals.szCupsServer, "");
4937 string_set(&Globals.szIPrintServer, "");
4939 string_set(&Globals.ctdbdSocket, "");
4940 Globals.szClusterAddresses = NULL;
4941 Globals.clustering = false;
4942 Globals.ctdb_timeout = 0;
4943 Globals.ctdb_locktime_warn_threshold = 0;
4945 Globals.winbind_cache_time = 300; /* 5 minutes */
4946 Globals.winbind_reconnect_delay = 30; /* 30 seconds */
4947 Globals.winbind_max_clients = 200;
4948 Globals.bWinbindEnumUsers = false;
4949 Globals.bWinbindEnumGroups = false;
4950 Globals.bWinbindUseDefaultDomain = false;
4951 Globals.bWinbindTrustedDomainsOnly = false;
4952 Globals.bWinbindNestedGroups = true;
4953 Globals.winbind_expand_groups = 1;
4954 Globals.szWinbindNssInfo = str_list_make_v3(NULL, "template", NULL);
4955 Globals.bWinbindRefreshTickets = false;
4956 Globals.bWinbindOfflineLogon = false;
4958 Globals.iIdmapCacheTime = 86400 * 7; /* a week by default */
4959 Globals.iIdmapNegativeCacheTime = 120; /* 2 minutes by default */
4961 Globals.bPassdbExpandExplicit = false;
4963 Globals.name_cache_timeout = 660; /* In seconds */
4965 Globals.bUseSpnego = true;
4966 Globals.bClientUseSpnego = true;
4968 Globals.client_signing = Auto;
4969 Globals.server_signing = false;
4971 Globals.bDeferSharingViolations = true;
4972 string_set(&Globals.smb_ports, SMB_PORTS);
4974 Globals.bEnablePrivileges = true;
4975 Globals.bHostMSDfs = true;
4976 Globals.bASUSupport = false;
4978 /* User defined shares. */
4979 if (asprintf(&s, "%s/usershares", get_dyn_STATEDIR()) < 0) {
4980 smb_panic("init_globals: ENOMEM");
4982 string_set(&Globals.szUsersharePath, s);
4983 SAFE_FREE(s);
4984 string_set(&Globals.szUsershareTemplateShare, "");
4985 Globals.iUsershareMaxShares = 0;
4986 /* By default disallow sharing of directories not owned by the sharer. */
4987 Globals.bUsershareOwnerOnly = true;
4988 /* By default disallow guest access to usershares. */
4989 Globals.bUsershareAllowGuests = false;
4991 Globals.iKeepalive = DEFAULT_KEEPALIVE;
4993 /* By default no shares out of the registry */
4994 Globals.bRegistryShares = false;
4996 Globals.iminreceivefile = 0;
4998 Globals.bMapUntrustedToDomain = false;
4999 Globals.bMulticastDnsRegister = true;
5001 Globals.ismb2_max_read = DEFAULT_SMB2_MAX_READ;
5002 Globals.ismb2_max_write = DEFAULT_SMB2_MAX_WRITE;
5003 Globals.ismb2_max_trans = DEFAULT_SMB2_MAX_TRANSACT;
5004 Globals.ismb2_max_credits = DEFAULT_SMB2_MAX_CREDITS;
5006 string_set(&Globals.ncalrpc_dir, get_dyn_NCALRPCDIR());
5008 /* Now put back the settings that were set with lp_set_cmdline() */
5009 apply_lp_set_cmdline();
5012 /*******************************************************************
5013 Convenience routine to grab string parameters into temporary memory
5014 and run standard_sub_basic on them. The buffers can be written to by
5015 callers without affecting the source string.
5016 ********************************************************************/
5018 static char *lp_string(const char *s)
5020 char *ret;
5021 TALLOC_CTX *ctx = talloc_tos();
5023 /* The follow debug is useful for tracking down memory problems
5024 especially if you have an inner loop that is calling a lp_*()
5025 function that returns a string. Perhaps this debug should be
5026 present all the time? */
5028 #if 0
5029 DEBUG(10, ("lp_string(%s)\n", s));
5030 #endif
5031 if (!s) {
5032 return NULL;
5035 ret = talloc_sub_basic(ctx,
5036 get_current_username(),
5037 current_user_info.domain,
5039 if (trim_char(ret, '\"', '\"')) {
5040 if (strchr(ret,'\"') != NULL) {
5041 TALLOC_FREE(ret);
5042 ret = talloc_sub_basic(ctx,
5043 get_current_username(),
5044 current_user_info.domain,
5048 return ret;
5052 In this section all the functions that are used to access the
5053 parameters from the rest of the program are defined
5056 #define FN_GLOBAL_STRING(fn_name,ptr) \
5057 char *fn_name(void) {return(lp_string(*(char **)(&Globals.ptr) ? *(char **)(&Globals.ptr) : ""));}
5058 #define FN_GLOBAL_CONST_STRING(fn_name,ptr) \
5059 const char *fn_name(void) {return(*(const char **)(&Globals.ptr) ? *(const char **)(&Globals.ptr) : "");}
5060 #define FN_GLOBAL_LIST(fn_name,ptr) \
5061 const char **fn_name(void) {return(*(const char ***)(&Globals.ptr));}
5062 #define FN_GLOBAL_BOOL(fn_name,ptr) \
5063 bool fn_name(void) {return(*(bool *)(&Globals.ptr));}
5064 #define FN_GLOBAL_CHAR(fn_name,ptr) \
5065 char fn_name(void) {return(*(char *)(&Globals.ptr));}
5066 #define FN_GLOBAL_INTEGER(fn_name,ptr) \
5067 int fn_name(void) {return(*(int *)(&Globals.ptr));}
5069 #define FN_LOCAL_STRING(fn_name,val) \
5070 char *lp_ ## fn_name(int i) {return(lp_string((LP_SNUM_OK(i) && ServicePtrs[(i)]->val) ? ServicePtrs[(i)]->val : sDefault.val));}
5071 #define FN_LOCAL_CONST_STRING(fn_name,val) \
5072 const char *lp_ ## fn_name(int i) {return (const char *)((LP_SNUM_OK(i) && ServicePtrs[(i)]->val) ? ServicePtrs[(i)]->val : sDefault.val);}
5073 #define FN_LOCAL_LIST(fn_name,val) \
5074 const char **lp_ ## fn_name(int i) {return(const char **)(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
5075 #define FN_LOCAL_BOOL(fn_name,val) \
5076 bool lp_ ## fn_name(int i) {return(bool)(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
5077 #define FN_LOCAL_INTEGER(fn_name,val) \
5078 int lp_ ## fn_name(int i) {return(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
5080 #define FN_LOCAL_PARM_BOOL(fn_name,val) \
5081 bool lp_ ## fn_name(const struct share_params *p) {return(bool)(LP_SNUM_OK(p->service)? ServicePtrs[(p->service)]->val : sDefault.val);}
5082 #define FN_LOCAL_PARM_INTEGER(fn_name,val) \
5083 int lp_ ## fn_name(const struct share_params *p) {return(LP_SNUM_OK(p->service)? ServicePtrs[(p->service)]->val : sDefault.val);}
5084 #define FN_LOCAL_CHAR(fn_name,val) \
5085 char lp_ ## fn_name(const struct share_params *p) {return(LP_SNUM_OK(p->service)? ServicePtrs[(p->service)]->val : sDefault.val);}
5087 FN_GLOBAL_CONST_STRING(lp_smb_ports, smb_ports)
5088 FN_GLOBAL_CONST_STRING(lp_dos_charset, dos_charset)
5089 FN_GLOBAL_CONST_STRING(lp_unix_charset, unix_charset)
5090 FN_GLOBAL_STRING(lp_logfile, szLogFile)
5091 FN_GLOBAL_STRING(lp_configfile, szConfigFile)
5092 FN_GLOBAL_CONST_STRING(lp_smb_passwd_file, szSMBPasswdFile)
5093 FN_GLOBAL_CONST_STRING(lp_private_dir, szPrivateDir)
5094 FN_GLOBAL_STRING(lp_serverstring, szServerString)
5095 FN_GLOBAL_INTEGER(lp_printcap_cache_time, PrintcapCacheTime)
5096 FN_GLOBAL_STRING(lp_addport_cmd, szAddPortCommand)
5097 FN_GLOBAL_STRING(lp_enumports_cmd, szEnumPortsCommand)
5098 FN_GLOBAL_STRING(lp_addprinter_cmd, szAddPrinterCommand)
5099 FN_GLOBAL_STRING(lp_deleteprinter_cmd, szDeletePrinterCommand)
5100 FN_GLOBAL_STRING(lp_os2_driver_map, szOs2DriverMap)
5101 FN_GLOBAL_CONST_STRING(lp_lockdir, szLockDir)
5102 /* If lp_statedir() and lp_cachedir() are explicitely set during the
5103 * build process or in smb.conf, we use that value. Otherwise they
5104 * default to the value of lp_lockdir(). */
5105 const char *lp_statedir(void) {
5106 if ((strcmp(get_dyn_STATEDIR(), get_dyn_LOCKDIR()) != 0) ||
5107 (strcmp(get_dyn_STATEDIR(), Globals.szStateDir) != 0))
5108 return(*(char **)(&Globals.szStateDir) ?
5109 *(char **)(&Globals.szStateDir) : "");
5110 else
5111 return(*(char **)(&Globals.szLockDir) ?
5112 *(char **)(&Globals.szLockDir) : "");
5114 const char *lp_cachedir(void) {
5115 if ((strcmp(get_dyn_CACHEDIR(), get_dyn_LOCKDIR()) != 0) ||
5116 (strcmp(get_dyn_CACHEDIR(), Globals.szCacheDir) != 0))
5117 return(*(char **)(&Globals.szCacheDir) ?
5118 *(char **)(&Globals.szCacheDir) : "");
5119 else
5120 return(*(char **)(&Globals.szLockDir) ?
5121 *(char **)(&Globals.szLockDir) : "");
5123 FN_GLOBAL_CONST_STRING(lp_piddir, szPidDir)
5124 FN_GLOBAL_STRING(lp_mangling_method, szManglingMethod)
5125 FN_GLOBAL_INTEGER(lp_mangle_prefix, mangle_prefix)
5126 FN_GLOBAL_CONST_STRING(lp_utmpdir, szUtmpDir)
5127 FN_GLOBAL_CONST_STRING(lp_wtmpdir, szWtmpDir)
5128 FN_GLOBAL_BOOL(lp_utmp, bUtmp)
5129 FN_GLOBAL_STRING(lp_rootdir, szRootdir)
5130 FN_GLOBAL_STRING(lp_perfcount_module, szSMBPerfcountModule)
5131 FN_GLOBAL_STRING(lp_defaultservice, szDefaultService)
5132 FN_GLOBAL_STRING(lp_msg_command, szMsgCommand)
5133 FN_GLOBAL_STRING(lp_get_quota_command, szGetQuota)
5134 FN_GLOBAL_STRING(lp_set_quota_command, szSetQuota)
5135 FN_GLOBAL_STRING(lp_auto_services, szAutoServices)
5136 FN_GLOBAL_STRING(lp_passwd_program, szPasswdProgram)
5137 FN_GLOBAL_STRING(lp_passwd_chat, szPasswdChat)
5138 FN_GLOBAL_CONST_STRING(lp_passwordserver, szPasswordServer)
5139 FN_GLOBAL_CONST_STRING(lp_name_resolve_order, szNameResolveOrder)
5140 FN_GLOBAL_CONST_STRING(lp_workgroup, szWorkgroup)
5141 FN_GLOBAL_CONST_STRING(lp_netbios_name, szNetbiosName)
5142 FN_GLOBAL_CONST_STRING(lp_netbios_scope, szNetbiosScope)
5143 FN_GLOBAL_CONST_STRING(lp_realm, szRealmUpper)
5144 FN_GLOBAL_CONST_STRING(lp_dnsdomain, szDnsDomain)
5145 FN_GLOBAL_CONST_STRING(lp_afs_username_map, szAfsUsernameMap)
5146 FN_GLOBAL_INTEGER(lp_afs_token_lifetime, iAfsTokenLifetime)
5147 FN_GLOBAL_STRING(lp_log_nt_token_command, szLogNtTokenCommand)
5148 FN_GLOBAL_STRING(lp_username_map, szUsernameMap)
5149 FN_GLOBAL_CONST_STRING(lp_logon_script, szLogonScript)
5150 FN_GLOBAL_CONST_STRING(lp_logon_path, szLogonPath)
5151 FN_GLOBAL_CONST_STRING(lp_logon_drive, szLogonDrive)
5152 FN_GLOBAL_CONST_STRING(lp_logon_home, szLogonHome)
5153 FN_GLOBAL_STRING(lp_remote_announce, szRemoteAnnounce)
5154 FN_GLOBAL_STRING(lp_remote_browse_sync, szRemoteBrowseSync)
5155 FN_GLOBAL_BOOL(lp_nmbd_bind_explicit_broadcast, bNmbdBindExplicitBroadcast)
5156 FN_GLOBAL_LIST(lp_wins_server_list, szWINSservers)
5157 FN_GLOBAL_LIST(lp_interfaces, szInterfaces)
5158 FN_GLOBAL_STRING(lp_nis_home_map_name, szNISHomeMapName)
5159 FN_GLOBAL_LIST(lp_netbios_aliases, szNetbiosAliases)
5160 FN_GLOBAL_CONST_STRING(lp_passdb_backend, szPassdbBackend)
5161 FN_GLOBAL_LIST(lp_preload_modules, szPreloadModules)
5162 FN_GLOBAL_STRING(lp_panic_action, szPanicAction)
5163 FN_GLOBAL_STRING(lp_adduser_script, szAddUserScript)
5164 FN_GLOBAL_STRING(lp_renameuser_script, szRenameUserScript)
5165 FN_GLOBAL_STRING(lp_deluser_script, szDelUserScript)
5167 FN_GLOBAL_CONST_STRING(lp_guestaccount, szGuestaccount)
5168 FN_GLOBAL_STRING(lp_addgroup_script, szAddGroupScript)
5169 FN_GLOBAL_STRING(lp_delgroup_script, szDelGroupScript)
5170 FN_GLOBAL_STRING(lp_addusertogroup_script, szAddUserToGroupScript)
5171 FN_GLOBAL_STRING(lp_deluserfromgroup_script, szDelUserFromGroupScript)
5172 FN_GLOBAL_STRING(lp_setprimarygroup_script, szSetPrimaryGroupScript)
5174 FN_GLOBAL_STRING(lp_addmachine_script, szAddMachineScript)
5176 FN_GLOBAL_STRING(lp_shutdown_script, szShutdownScript)
5177 FN_GLOBAL_STRING(lp_abort_shutdown_script, szAbortShutdownScript)
5178 FN_GLOBAL_STRING(lp_username_map_script, szUsernameMapScript)
5179 FN_GLOBAL_INTEGER(lp_username_map_cache_time, iUsernameMapCacheTime)
5181 FN_GLOBAL_STRING(lp_check_password_script, szCheckPasswordScript)
5183 FN_GLOBAL_STRING(lp_wins_hook, szWINSHook)
5184 FN_GLOBAL_CONST_STRING(lp_template_homedir, szTemplateHomedir)
5185 FN_GLOBAL_CONST_STRING(lp_template_shell, szTemplateShell)
5186 FN_GLOBAL_CONST_STRING(lp_winbind_separator, szWinbindSeparator)
5187 FN_GLOBAL_INTEGER(lp_acl_compatibility, iAclCompat)
5188 FN_GLOBAL_BOOL(lp_winbind_enum_users, bWinbindEnumUsers)
5189 FN_GLOBAL_BOOL(lp_winbind_enum_groups, bWinbindEnumGroups)
5190 FN_GLOBAL_BOOL(lp_winbind_use_default_domain, bWinbindUseDefaultDomain)
5191 FN_GLOBAL_BOOL(lp_winbind_trusted_domains_only, bWinbindTrustedDomainsOnly)
5192 FN_GLOBAL_BOOL(lp_winbind_nested_groups, bWinbindNestedGroups)
5193 FN_GLOBAL_INTEGER(lp_winbind_expand_groups, winbind_expand_groups)
5194 FN_GLOBAL_BOOL(lp_winbind_refresh_tickets, bWinbindRefreshTickets)
5195 FN_GLOBAL_BOOL(lp_winbind_offline_logon, bWinbindOfflineLogon)
5196 FN_GLOBAL_BOOL(lp_winbind_normalize_names, bWinbindNormalizeNames)
5197 FN_GLOBAL_BOOL(lp_winbind_rpc_only, bWinbindRpcOnly)
5198 FN_GLOBAL_BOOL(lp_create_krb5_conf, bCreateKrb5Conf)
5199 static FN_GLOBAL_INTEGER(lp_winbind_max_domain_connections_int,
5200 winbindMaxDomainConnections)
5202 int lp_winbind_max_domain_connections(void)
5204 if (lp_winbind_offline_logon() &&
5205 lp_winbind_max_domain_connections_int() > 1) {
5206 DEBUG(1, ("offline logons active, restricting max domain "
5207 "connections to 1\n"));
5208 return 1;
5210 return MAX(1, lp_winbind_max_domain_connections_int());
5213 FN_GLOBAL_CONST_STRING(lp_idmap_backend, szIdmapBackend)
5214 FN_GLOBAL_INTEGER(lp_idmap_cache_time, iIdmapCacheTime)
5215 FN_GLOBAL_INTEGER(lp_idmap_negative_cache_time, iIdmapNegativeCacheTime)
5216 FN_GLOBAL_INTEGER(lp_keepalive, iKeepalive)
5217 FN_GLOBAL_BOOL(lp_passdb_expand_explicit, bPassdbExpandExplicit)
5219 FN_GLOBAL_STRING(lp_ldap_suffix, szLdapSuffix)
5220 FN_GLOBAL_STRING(lp_ldap_admin_dn, szLdapAdminDn)
5221 FN_GLOBAL_INTEGER(lp_ldap_ssl, ldap_ssl)
5222 FN_GLOBAL_BOOL(lp_ldap_ssl_ads, ldap_ssl_ads)
5223 FN_GLOBAL_INTEGER(lp_ldap_deref, ldap_deref)
5224 FN_GLOBAL_INTEGER(lp_ldap_follow_referral, ldap_follow_referral)
5225 FN_GLOBAL_INTEGER(lp_ldap_passwd_sync, ldap_passwd_sync)
5226 FN_GLOBAL_BOOL(lp_ldap_delete_dn, ldap_delete_dn)
5227 FN_GLOBAL_INTEGER(lp_ldap_replication_sleep, ldap_replication_sleep)
5228 FN_GLOBAL_INTEGER(lp_ldap_timeout, ldap_timeout)
5229 FN_GLOBAL_INTEGER(lp_ldap_connection_timeout, ldap_connection_timeout)
5230 FN_GLOBAL_INTEGER(lp_ldap_page_size, ldap_page_size)
5231 FN_GLOBAL_INTEGER(lp_ldap_debug_level, ldap_debug_level)
5232 FN_GLOBAL_INTEGER(lp_ldap_debug_threshold, ldap_debug_threshold)
5233 FN_GLOBAL_STRING(lp_add_share_cmd, szAddShareCommand)
5234 FN_GLOBAL_STRING(lp_change_share_cmd, szChangeShareCommand)
5235 FN_GLOBAL_STRING(lp_delete_share_cmd, szDeleteShareCommand)
5236 FN_GLOBAL_STRING(lp_usershare_path, szUsersharePath)
5237 FN_GLOBAL_LIST(lp_usershare_prefix_allow_list, szUsersharePrefixAllowList)
5238 FN_GLOBAL_LIST(lp_usershare_prefix_deny_list, szUsersharePrefixDenyList)
5240 FN_GLOBAL_LIST(lp_eventlog_list, szEventLogs)
5242 FN_GLOBAL_BOOL(lp_registry_shares, bRegistryShares)
5243 FN_GLOBAL_BOOL(lp_usershare_allow_guests, bUsershareAllowGuests)
5244 FN_GLOBAL_BOOL(lp_usershare_owner_only, bUsershareOwnerOnly)
5245 FN_GLOBAL_BOOL(lp_disable_netbios, bDisableNetbios)
5246 FN_GLOBAL_BOOL(lp_reset_on_zero_vc, bResetOnZeroVC)
5247 FN_GLOBAL_BOOL(lp_log_writeable_files_on_exit, bLogWriteableFilesOnExit)
5248 FN_GLOBAL_BOOL(lp_ms_add_printer_wizard, bMsAddPrinterWizard)
5249 FN_GLOBAL_BOOL(lp_dns_proxy, bDNSproxy)
5250 FN_GLOBAL_BOOL(lp_we_are_a_wins_server, bWINSsupport)
5251 FN_GLOBAL_BOOL(lp_wins_proxy, bWINSproxy)
5252 FN_GLOBAL_BOOL(lp_local_master, bLocalMaster)
5253 FN_GLOBAL_BOOL(lp_domain_logons, bDomainLogons)
5254 FN_GLOBAL_LIST(lp_init_logon_delayed_hosts, szInitLogonDelayedHosts)
5255 FN_GLOBAL_INTEGER(lp_init_logon_delay, InitLogonDelay)
5256 FN_GLOBAL_BOOL(lp_load_printers, bLoadPrinters)
5257 FN_GLOBAL_BOOL(_lp_readraw, bReadRaw)
5258 FN_GLOBAL_BOOL(lp_large_readwrite, bLargeReadwrite)
5259 FN_GLOBAL_BOOL(_lp_writeraw, bWriteRaw)
5260 FN_GLOBAL_BOOL(lp_null_passwords, bNullPasswords)
5261 FN_GLOBAL_BOOL(lp_obey_pam_restrictions, bObeyPamRestrictions)
5262 FN_GLOBAL_BOOL(lp_encrypted_passwords, bEncryptPasswords)
5263 FN_GLOBAL_INTEGER(lp_client_schannel, clientSchannel)
5264 FN_GLOBAL_INTEGER(lp_server_schannel, serverSchannel)
5265 FN_GLOBAL_BOOL(lp_syslog_only, bSyslogOnly)
5266 FN_GLOBAL_BOOL(lp_timestamp_logs, bTimestampLogs)
5267 FN_GLOBAL_BOOL(lp_debug_prefix_timestamp, bDebugPrefixTimestamp)
5268 FN_GLOBAL_BOOL(lp_debug_hires_timestamp, bDebugHiresTimestamp)
5269 FN_GLOBAL_BOOL(lp_debug_pid, bDebugPid)
5270 FN_GLOBAL_BOOL(lp_debug_uid, bDebugUid)
5271 FN_GLOBAL_BOOL(lp_debug_class, bDebugClass)
5272 FN_GLOBAL_BOOL(lp_enable_core_files, bEnableCoreFiles)
5273 FN_GLOBAL_BOOL(lp_browse_list, bBrowseList)
5274 FN_GLOBAL_BOOL(lp_nis_home_map, bNISHomeMap)
5275 static FN_GLOBAL_BOOL(lp_time_server, bTimeServer)
5276 FN_GLOBAL_BOOL(lp_bind_interfaces_only, bBindInterfacesOnly)
5277 FN_GLOBAL_BOOL(lp_pam_password_change, bPamPasswordChange)
5278 FN_GLOBAL_BOOL(lp_unix_password_sync, bUnixPasswdSync)
5279 FN_GLOBAL_BOOL(lp_passwd_chat_debug, bPasswdChatDebug)
5280 FN_GLOBAL_INTEGER(lp_passwd_chat_timeout, iPasswdChatTimeout)
5281 FN_GLOBAL_BOOL(lp_nt_pipe_support, bNTPipeSupport)
5282 FN_GLOBAL_BOOL(lp_nt_status_support, bNTStatusSupport)
5283 FN_GLOBAL_BOOL(lp_stat_cache, bStatCache)
5284 FN_GLOBAL_INTEGER(lp_max_stat_cache_size, iMaxStatCacheSize)
5285 FN_GLOBAL_BOOL(lp_allow_trusted_domains, bAllowTrustedDomains)
5286 FN_GLOBAL_BOOL(lp_map_untrusted_to_domain, bMapUntrustedToDomain)
5287 FN_GLOBAL_INTEGER(lp_restrict_anonymous, restrict_anonymous)
5288 FN_GLOBAL_BOOL(lp_lanman_auth, bLanmanAuth)
5289 FN_GLOBAL_BOOL(lp_ntlm_auth, bNTLMAuth)
5290 FN_GLOBAL_BOOL(lp_client_plaintext_auth, bClientPlaintextAuth)
5291 FN_GLOBAL_BOOL(lp_client_lanman_auth, bClientLanManAuth)
5292 FN_GLOBAL_BOOL(lp_client_ntlmv2_auth, bClientNTLMv2Auth)
5293 FN_GLOBAL_BOOL(lp_host_msdfs, bHostMSDfs)
5294 FN_GLOBAL_BOOL(lp_kernel_oplocks, bKernelOplocks)
5295 FN_GLOBAL_BOOL(lp_enhanced_browsing, enhanced_browsing)
5296 FN_GLOBAL_BOOL(lp_use_mmap, bUseMmap)
5297 FN_GLOBAL_BOOL(lp_unix_extensions, bUnixExtensions)
5298 FN_GLOBAL_BOOL(lp_use_spnego, bUseSpnego)
5299 FN_GLOBAL_BOOL(lp_client_use_spnego, bClientUseSpnego)
5300 FN_GLOBAL_BOOL(lp_client_use_spnego_principal, client_use_spnego_principal)
5301 FN_GLOBAL_BOOL(lp_send_spnego_principal, send_spnego_principal)
5302 FN_GLOBAL_BOOL(lp_hostname_lookups, bHostnameLookups)
5303 FN_GLOBAL_CONST_STRING(lp_dedicated_keytab_file, szDedicatedKeytabFile)
5304 FN_GLOBAL_INTEGER(lp_kerberos_method, iKerberosMethod)
5305 FN_GLOBAL_BOOL(lp_defer_sharing_violations, bDeferSharingViolations)
5306 FN_GLOBAL_BOOL(lp_enable_privileges, bEnablePrivileges)
5307 FN_GLOBAL_BOOL(lp_enable_asu_support, bASUSupport)
5308 FN_GLOBAL_INTEGER(lp_os_level, os_level)
5309 FN_GLOBAL_INTEGER(lp_max_ttl, max_ttl)
5310 FN_GLOBAL_INTEGER(lp_max_wins_ttl, max_wins_ttl)
5311 FN_GLOBAL_INTEGER(lp_min_wins_ttl, min_wins_ttl)
5312 FN_GLOBAL_INTEGER(lp_max_log_size, max_log_size)
5313 FN_GLOBAL_INTEGER(lp_max_open_files, max_open_files)
5314 FN_GLOBAL_INTEGER(lp_open_files_db_hash_size, open_files_db_hash_size)
5315 FN_GLOBAL_INTEGER(lp_maxxmit, max_xmit)
5316 FN_GLOBAL_INTEGER(lp_maxmux, max_mux)
5317 FN_GLOBAL_INTEGER(lp_passwordlevel, pwordlevel)
5318 FN_GLOBAL_INTEGER(lp_usernamelevel, unamelevel)
5319 FN_GLOBAL_INTEGER(lp_deadtime, deadtime)
5320 FN_GLOBAL_BOOL(lp_getwd_cache, getwd_cache)
5321 static FN_GLOBAL_INTEGER(_lp_maxprotocol, maxprotocol)
5322 int lp_maxprotocol(void)
5324 int ret = _lp_maxprotocol();
5325 if ((ret >= PROTOCOL_SMB2_02) && (lp_security() == SEC_SHARE)) {
5326 DEBUG(2,("WARNING!!: \"security = share\" is incompatible "
5327 "with the SMB2 protocol. Resetting to SMB1.\n" ));
5328 lp_do_parameter(-1, "max protocol", "NT1");
5329 return PROTOCOL_NT1;
5331 return ret;
5333 FN_GLOBAL_INTEGER(lp_minprotocol, minprotocol)
5334 FN_GLOBAL_INTEGER(lp_security, security)
5335 FN_GLOBAL_LIST(lp_auth_methods, AuthMethods)
5336 FN_GLOBAL_BOOL(lp_paranoid_server_security, paranoid_server_security)
5337 FN_GLOBAL_INTEGER(lp_maxdisksize, maxdisksize)
5338 FN_GLOBAL_INTEGER(lp_lpqcachetime, lpqcachetime)
5339 FN_GLOBAL_INTEGER(lp_max_smbd_processes, iMaxSmbdProcesses)
5340 FN_GLOBAL_BOOL(_lp_disable_spoolss, bDisableSpoolss)
5341 FN_GLOBAL_INTEGER(lp_syslog, syslog)
5342 FN_GLOBAL_INTEGER(lp_lm_announce, lm_announce)
5343 FN_GLOBAL_INTEGER(lp_lm_interval, lm_interval)
5344 FN_GLOBAL_INTEGER(lp_machine_password_timeout, machine_password_timeout)
5345 FN_GLOBAL_INTEGER(lp_map_to_guest, map_to_guest)
5346 FN_GLOBAL_INTEGER(lp_oplock_break_wait_time, oplock_break_wait_time)
5347 FN_GLOBAL_INTEGER(lp_lock_spin_time, iLockSpinTime)
5348 FN_GLOBAL_INTEGER(lp_usershare_max_shares, iUsershareMaxShares)
5349 FN_GLOBAL_CONST_STRING(lp_socket_options, szSocketOptions)
5350 FN_GLOBAL_INTEGER(lp_config_backend, ConfigBackend)
5351 FN_GLOBAL_INTEGER(lp_smb2_max_read, ismb2_max_read)
5352 FN_GLOBAL_INTEGER(lp_smb2_max_write, ismb2_max_write)
5353 FN_GLOBAL_INTEGER(lp_smb2_max_trans, ismb2_max_trans)
5354 int lp_smb2_max_credits(void)
5356 if (Globals.ismb2_max_credits == 0) {
5357 Globals.ismb2_max_credits = DEFAULT_SMB2_MAX_CREDITS;
5359 return Globals.ismb2_max_credits;
5361 FN_GLOBAL_LIST(lp_svcctl_list, szServicesList)
5362 FN_GLOBAL_STRING(lp_cups_server, szCupsServer)
5363 int lp_cups_encrypt(void)
5365 int result = 0;
5366 #ifdef HAVE_HTTPCONNECTENCRYPT
5367 switch (Globals.CupsEncrypt) {
5368 case Auto:
5369 result = HTTP_ENCRYPT_REQUIRED;
5370 break;
5371 case true:
5372 result = HTTP_ENCRYPT_ALWAYS;
5373 break;
5374 case false:
5375 result = HTTP_ENCRYPT_NEVER;
5376 break;
5378 #endif
5379 return result;
5381 FN_GLOBAL_STRING(lp_iprint_server, szIPrintServer)
5382 FN_GLOBAL_INTEGER(lp_cups_connection_timeout, cups_connection_timeout)
5383 FN_GLOBAL_CONST_STRING(lp_ctdbd_socket, ctdbdSocket)
5384 FN_GLOBAL_LIST(lp_cluster_addresses, szClusterAddresses)
5385 FN_GLOBAL_BOOL(lp_clustering, clustering)
5386 FN_GLOBAL_INTEGER(lp_ctdb_timeout, ctdb_timeout)
5387 FN_GLOBAL_INTEGER(lp_ctdb_locktime_warn_threshold, ctdb_locktime_warn_threshold)
5388 FN_GLOBAL_BOOL(lp_async_smb_echo_handler, bAsyncSMBEchoHandler)
5389 FN_GLOBAL_BOOL(lp_multicast_dns_register, bMulticastDnsRegister)
5390 FN_GLOBAL_INTEGER(lp_winbind_cache_time, winbind_cache_time)
5391 FN_GLOBAL_INTEGER(lp_winbind_reconnect_delay, winbind_reconnect_delay)
5392 FN_GLOBAL_INTEGER(lp_winbind_max_clients, winbind_max_clients)
5393 FN_GLOBAL_LIST(lp_winbind_nss_info, szWinbindNssInfo)
5394 FN_GLOBAL_INTEGER(lp_algorithmic_rid_base, AlgorithmicRidBase)
5395 FN_GLOBAL_INTEGER(lp_name_cache_timeout, name_cache_timeout)
5396 FN_GLOBAL_INTEGER(lp_client_signing, client_signing)
5397 FN_GLOBAL_INTEGER(lp_server_signing, server_signing)
5398 FN_GLOBAL_INTEGER(lp_client_ldap_sasl_wrapping, client_ldap_sasl_wrapping)
5400 FN_GLOBAL_CONST_STRING(lp_ncalrpc_dir, ncalrpc_dir)
5402 #include "lib/param/param_functions.c"
5404 FN_LOCAL_STRING(servicename, szService)
5405 FN_LOCAL_CONST_STRING(const_servicename, szService)
5407 /* local prototypes */
5409 static int map_parameter_canonical(const char *pszParmName, bool *inverse);
5410 static const char *get_boolean(bool bool_value);
5411 static int getservicebyname(const char *pszServiceName,
5412 struct loadparm_service *pserviceDest);
5413 static void copy_service(struct loadparm_service *pserviceDest,
5414 struct loadparm_service *pserviceSource,
5415 struct bitmap *pcopymapDest);
5416 static bool do_parameter(const char *pszParmName, const char *pszParmValue,
5417 void *userdata);
5418 static bool do_section(const char *pszSectionName, void *userdata);
5419 static void init_copymap(struct loadparm_service *pservice);
5420 static bool hash_a_service(const char *name, int number);
5421 static void free_service_byindex(int iService);
5422 static void free_param_opts(struct parmlist_entry **popts);
5423 static void show_parameter(int parmIndex);
5424 static bool is_synonym_of(int parm1, int parm2, bool *inverse);
5427 * This is a helper function for parametrical options support. It returns a
5428 * pointer to parametrical option value if it exists or NULL otherwise. Actual
5429 * parametrical functions are quite simple
5431 static struct parmlist_entry *get_parametrics_by_service(struct loadparm_service *service, const char *type,
5432 const char *option)
5434 bool global_section = false;
5435 char* param_key;
5436 struct parmlist_entry *data;
5438 if (service == NULL) {
5439 data = Globals.param_opt;
5440 global_section = true;
5441 } else {
5442 data = service->param_opt;
5445 if (asprintf(&param_key, "%s:%s", type, option) == -1) {
5446 DEBUG(0,("asprintf failed!\n"));
5447 return NULL;
5450 while (data) {
5451 if (strwicmp(data->key, param_key) == 0) {
5452 string_free(&param_key);
5453 return data;
5455 data = data->next;
5458 if (!global_section) {
5459 /* Try to fetch the same option but from globals */
5460 /* but only if we are not already working with Globals */
5461 data = Globals.param_opt;
5462 while (data) {
5463 if (strwicmp(data->key, param_key) == 0) {
5464 string_free(&param_key);
5465 return data;
5467 data = data->next;
5471 string_free(&param_key);
5473 return NULL;
5477 * This is a helper function for parametrical options support. It returns a
5478 * pointer to parametrical option value if it exists or NULL otherwise. Actual
5479 * parametrical functions are quite simple
5481 static struct parmlist_entry *get_parametrics(int snum, const char *type,
5482 const char *option)
5484 if (snum >= iNumServices) return NULL;
5486 if (snum < 0) {
5487 return get_parametrics_by_service(NULL, type, option);
5488 } else {
5489 return get_parametrics_by_service(ServicePtrs[snum], type, option);
5494 #define MISSING_PARAMETER(name) \
5495 DEBUG(0, ("%s(): value is NULL or empty!\n", #name))
5497 /*******************************************************************
5498 convenience routine to return int parameters.
5499 ********************************************************************/
5500 static int lp_int(const char *s)
5503 if (!s || !*s) {
5504 MISSING_PARAMETER(lp_int);
5505 return (-1);
5508 return (int)strtol(s, NULL, 0);
5511 /*******************************************************************
5512 convenience routine to return unsigned long parameters.
5513 ********************************************************************/
5514 static unsigned long lp_ulong(const char *s)
5517 if (!s || !*s) {
5518 MISSING_PARAMETER(lp_ulong);
5519 return (0);
5522 return strtoul(s, NULL, 0);
5525 /*******************************************************************
5526 convenience routine to return boolean parameters.
5527 ********************************************************************/
5528 static bool lp_bool(const char *s)
5530 bool ret = false;
5532 if (!s || !*s) {
5533 MISSING_PARAMETER(lp_bool);
5534 return false;
5537 if (!set_boolean(s, &ret)) {
5538 DEBUG(0,("lp_bool(%s): value is not boolean!\n",s));
5539 return false;
5542 return ret;
5545 /*******************************************************************
5546 convenience routine to return enum parameters.
5547 ********************************************************************/
5548 static int lp_enum(const char *s,const struct enum_list *_enum)
5550 int i;
5552 if (!s || !*s || !_enum) {
5553 MISSING_PARAMETER(lp_enum);
5554 return (-1);
5557 for (i=0; _enum[i].name; i++) {
5558 if (strequal(_enum[i].name,s))
5559 return _enum[i].value;
5562 DEBUG(0,("lp_enum(%s,enum): value is not in enum_list!\n",s));
5563 return (-1);
5566 #undef MISSING_PARAMETER
5568 /* Return parametric option from a given service. Type is a part of option before ':' */
5569 /* Parametric option has following syntax: 'Type: option = value' */
5570 /* the returned value is talloced on the talloc_tos() */
5571 char *lp_parm_talloc_string(int snum, const char *type, const char *option, const char *def)
5573 struct parmlist_entry *data = get_parametrics(snum, type, option);
5575 if (data == NULL||data->value==NULL) {
5576 if (def) {
5577 return lp_string(def);
5578 } else {
5579 return NULL;
5583 return lp_string(data->value);
5586 /* Return parametric option from a given service. Type is a part of option before ':' */
5587 /* Parametric option has following syntax: 'Type: option = value' */
5588 const char *lp_parm_const_string(int snum, const char *type, const char *option, const char *def)
5590 struct parmlist_entry *data = get_parametrics(snum, type, option);
5592 if (data == NULL||data->value==NULL)
5593 return def;
5595 return data->value;
5598 const char *lp_parm_const_string_service(struct loadparm_service *service, const char *type, const char *option)
5600 struct parmlist_entry *data = get_parametrics_by_service(service, type, option);
5602 if (data == NULL||data->value==NULL)
5603 return NULL;
5605 return data->value;
5609 /* Return parametric option from a given service. Type is a part of option before ':' */
5610 /* Parametric option has following syntax: 'Type: option = value' */
5612 const char **lp_parm_string_list(int snum, const char *type, const char *option, const char **def)
5614 struct parmlist_entry *data = get_parametrics(snum, type, option);
5616 if (data == NULL||data->value==NULL)
5617 return (const char **)def;
5619 if (data->list==NULL) {
5620 data->list = str_list_make_v3(NULL, data->value, NULL);
5623 return (const char **)data->list;
5626 /* Return parametric option from a given service. Type is a part of option before ':' */
5627 /* Parametric option has following syntax: 'Type: option = value' */
5629 int lp_parm_int(int snum, const char *type, const char *option, int def)
5631 struct parmlist_entry *data = get_parametrics(snum, type, option);
5633 if (data && data->value && *data->value)
5634 return lp_int(data->value);
5636 return def;
5639 /* Return parametric option from a given service. Type is a part of option before ':' */
5640 /* Parametric option has following syntax: 'Type: option = value' */
5642 unsigned long lp_parm_ulong(int snum, const char *type, const char *option, unsigned long def)
5644 struct parmlist_entry *data = get_parametrics(snum, type, option);
5646 if (data && data->value && *data->value)
5647 return lp_ulong(data->value);
5649 return def;
5652 /* Return parametric option from a given service. Type is a part of option before ':' */
5653 /* Parametric option has following syntax: 'Type: option = value' */
5655 bool lp_parm_bool(int snum, const char *type, const char *option, bool def)
5657 struct parmlist_entry *data = get_parametrics(snum, type, option);
5659 if (data && data->value && *data->value)
5660 return lp_bool(data->value);
5662 return def;
5665 /* Return parametric option from a given service. Type is a part of option before ':' */
5666 /* Parametric option has following syntax: 'Type: option = value' */
5668 int lp_parm_enum(int snum, const char *type, const char *option,
5669 const struct enum_list *_enum, int def)
5671 struct parmlist_entry *data = get_parametrics(snum, type, option);
5673 if (data && data->value && *data->value && _enum)
5674 return lp_enum(data->value, _enum);
5676 return def;
5680 /***************************************************************************
5681 Initialise a service to the defaults.
5682 ***************************************************************************/
5684 static void init_service(struct loadparm_service *pservice)
5686 memset((char *)pservice, '\0', sizeof(struct loadparm_service));
5687 copy_service(pservice, &sDefault, NULL);
5692 * free a param_opts structure.
5693 * param_opts handling should be moved to talloc;
5694 * then this whole functions reduces to a TALLOC_FREE().
5697 static void free_param_opts(struct parmlist_entry **popts)
5699 struct parmlist_entry *opt, *next_opt;
5701 if (popts == NULL) {
5702 return;
5705 if (*popts != NULL) {
5706 DEBUG(5, ("Freeing parametrics:\n"));
5708 opt = *popts;
5709 while (opt != NULL) {
5710 string_free(&opt->key);
5711 string_free(&opt->value);
5712 TALLOC_FREE(opt->list);
5713 next_opt = opt->next;
5714 SAFE_FREE(opt);
5715 opt = next_opt;
5717 *popts = NULL;
5720 /***************************************************************************
5721 Free the dynamically allocated parts of a service struct.
5722 ***************************************************************************/
5724 static void free_service(struct loadparm_service *pservice)
5726 if (!pservice)
5727 return;
5729 if (pservice->szService)
5730 DEBUG(5, ("free_service: Freeing service %s\n",
5731 pservice->szService));
5733 free_parameters(pservice);
5735 string_free(&pservice->szService);
5736 TALLOC_FREE(pservice->copymap);
5738 free_param_opts(&pservice->param_opt);
5740 ZERO_STRUCTP(pservice);
5744 /***************************************************************************
5745 remove a service indexed in the ServicePtrs array from the ServiceHash
5746 and free the dynamically allocated parts
5747 ***************************************************************************/
5749 static void free_service_byindex(int idx)
5751 if ( !LP_SNUM_OK(idx) )
5752 return;
5754 ServicePtrs[idx]->valid = false;
5755 invalid_services[num_invalid_services++] = idx;
5757 /* we have to cleanup the hash record */
5759 if (ServicePtrs[idx]->szService) {
5760 char *canon_name = canonicalize_servicename(
5761 talloc_tos(),
5762 ServicePtrs[idx]->szService );
5764 dbwrap_delete_bystring(ServiceHash, canon_name );
5765 TALLOC_FREE(canon_name);
5768 free_service(ServicePtrs[idx]);
5771 /***************************************************************************
5772 Add a new service to the services array initialising it with the given
5773 service.
5774 ***************************************************************************/
5776 static int add_a_service(const struct loadparm_service *pservice, const char *name)
5778 int i;
5779 struct loadparm_service tservice;
5780 int num_to_alloc = iNumServices + 1;
5782 tservice = *pservice;
5784 /* it might already exist */
5785 if (name) {
5786 i = getservicebyname(name, NULL);
5787 if (i >= 0) {
5788 return (i);
5792 /* find an invalid one */
5793 i = iNumServices;
5794 if (num_invalid_services > 0) {
5795 i = invalid_services[--num_invalid_services];
5798 /* if not, then create one */
5799 if (i == iNumServices) {
5800 struct loadparm_service **tsp;
5801 int *tinvalid;
5803 tsp = SMB_REALLOC_ARRAY_KEEP_OLD_ON_ERROR(ServicePtrs, struct loadparm_service *, num_to_alloc);
5804 if (tsp == NULL) {
5805 DEBUG(0,("add_a_service: failed to enlarge ServicePtrs!\n"));
5806 return (-1);
5808 ServicePtrs = tsp;
5809 ServicePtrs[iNumServices] = SMB_MALLOC_P(struct loadparm_service);
5810 if (!ServicePtrs[iNumServices]) {
5811 DEBUG(0,("add_a_service: out of memory!\n"));
5812 return (-1);
5814 iNumServices++;
5816 /* enlarge invalid_services here for now... */
5817 tinvalid = SMB_REALLOC_ARRAY_KEEP_OLD_ON_ERROR(invalid_services, int,
5818 num_to_alloc);
5819 if (tinvalid == NULL) {
5820 DEBUG(0,("add_a_service: failed to enlarge "
5821 "invalid_services!\n"));
5822 return (-1);
5824 invalid_services = tinvalid;
5825 } else {
5826 free_service_byindex(i);
5829 ServicePtrs[i]->valid = true;
5831 init_service(ServicePtrs[i]);
5832 copy_service(ServicePtrs[i], &tservice, NULL);
5833 if (name)
5834 string_set(&ServicePtrs[i]->szService, name);
5836 DEBUG(8,("add_a_service: Creating snum = %d for %s\n",
5837 i, ServicePtrs[i]->szService));
5839 if (!hash_a_service(ServicePtrs[i]->szService, i)) {
5840 return (-1);
5843 return (i);
5846 /***************************************************************************
5847 Convert a string to uppercase and remove whitespaces.
5848 ***************************************************************************/
5850 char *canonicalize_servicename(TALLOC_CTX *ctx, const char *src)
5852 char *result;
5854 if ( !src ) {
5855 DEBUG(0,("canonicalize_servicename: NULL source name!\n"));
5856 return NULL;
5859 result = talloc_strdup(ctx, src);
5860 SMB_ASSERT(result != NULL);
5862 strlower_m(result);
5863 return result;
5866 /***************************************************************************
5867 Add a name/index pair for the services array to the hash table.
5868 ***************************************************************************/
5870 static bool hash_a_service(const char *name, int idx)
5872 char *canon_name;
5874 if ( !ServiceHash ) {
5875 DEBUG(10,("hash_a_service: creating servicehash\n"));
5876 ServiceHash = db_open_rbt(NULL);
5877 if ( !ServiceHash ) {
5878 DEBUG(0,("hash_a_service: open tdb servicehash failed!\n"));
5879 return false;
5883 DEBUG(10,("hash_a_service: hashing index %d for service name %s\n",
5884 idx, name));
5886 canon_name = canonicalize_servicename(talloc_tos(), name );
5888 dbwrap_store_bystring(ServiceHash, canon_name,
5889 make_tdb_data((uint8 *)&idx, sizeof(idx)),
5890 TDB_REPLACE);
5892 TALLOC_FREE(canon_name);
5894 return true;
5897 /***************************************************************************
5898 Add a new home service, with the specified home directory, defaults coming
5899 from service ifrom.
5900 ***************************************************************************/
5902 bool lp_add_home(const char *pszHomename, int iDefaultService,
5903 const char *user, const char *pszHomedir)
5905 int i;
5907 if (pszHomename == NULL || user == NULL || pszHomedir == NULL ||
5908 pszHomedir[0] == '\0') {
5909 return false;
5912 i = add_a_service(ServicePtrs[iDefaultService], pszHomename);
5914 if (i < 0)
5915 return (false);
5917 if (!(*(ServicePtrs[iDefaultService]->szPath))
5918 || strequal(ServicePtrs[iDefaultService]->szPath, lp_pathname(GLOBAL_SECTION_SNUM))) {
5919 string_set(&ServicePtrs[i]->szPath, pszHomedir);
5922 if (!(*(ServicePtrs[i]->comment))) {
5923 char *comment = NULL;
5924 if (asprintf(&comment, "Home directory of %s", user) < 0) {
5925 return false;
5927 string_set(&ServicePtrs[i]->comment, comment);
5928 SAFE_FREE(comment);
5931 /* set the browseable flag from the global default */
5933 ServicePtrs[i]->bBrowseable = sDefault.bBrowseable;
5934 ServicePtrs[i]->bAccessBasedShareEnum = sDefault.bAccessBasedShareEnum;
5936 ServicePtrs[i]->autoloaded = true;
5938 DEBUG(3, ("adding home's share [%s] for user '%s' at '%s'\n", pszHomename,
5939 user, ServicePtrs[i]->szPath ));
5941 return (true);
5944 /***************************************************************************
5945 Add a new service, based on an old one.
5946 ***************************************************************************/
5948 int lp_add_service(const char *pszService, int iDefaultService)
5950 if (iDefaultService < 0) {
5951 return add_a_service(&sDefault, pszService);
5954 return (add_a_service(ServicePtrs[iDefaultService], pszService));
5957 /***************************************************************************
5958 Add the IPC service.
5959 ***************************************************************************/
5961 static bool lp_add_ipc(const char *ipc_name, bool guest_ok)
5963 char *comment = NULL;
5964 int i = add_a_service(&sDefault, ipc_name);
5966 if (i < 0)
5967 return (false);
5969 if (asprintf(&comment, "IPC Service (%s)",
5970 Globals.szServerString) < 0) {
5971 return (false);
5974 string_set(&ServicePtrs[i]->szPath, tmpdir());
5975 string_set(&ServicePtrs[i]->szUsername, "");
5976 string_set(&ServicePtrs[i]->comment, comment);
5977 string_set(&ServicePtrs[i]->fstype, "IPC");
5978 ServicePtrs[i]->iMaxConnections = 0;
5979 ServicePtrs[i]->bAvailable = true;
5980 ServicePtrs[i]->bRead_only = true;
5981 ServicePtrs[i]->bGuest_only = false;
5982 ServicePtrs[i]->bAdministrative_share = true;
5983 ServicePtrs[i]->bGuest_ok = guest_ok;
5984 ServicePtrs[i]->bPrint_ok = false;
5985 ServicePtrs[i]->bBrowseable = sDefault.bBrowseable;
5987 DEBUG(3, ("adding IPC service\n"));
5989 SAFE_FREE(comment);
5990 return (true);
5993 /***************************************************************************
5994 Add a new printer service, with defaults coming from service iFrom.
5995 ***************************************************************************/
5997 bool lp_add_printer(const char *pszPrintername, int iDefaultService)
5999 const char *comment = "From Printcap";
6000 int i = add_a_service(ServicePtrs[iDefaultService], pszPrintername);
6002 if (i < 0)
6003 return (false);
6005 /* note that we do NOT default the availability flag to true - */
6006 /* we take it from the default service passed. This allows all */
6007 /* dynamic printers to be disabled by disabling the [printers] */
6008 /* entry (if/when the 'available' keyword is implemented!). */
6010 /* the printer name is set to the service name. */
6011 string_set(&ServicePtrs[i]->szPrintername, pszPrintername);
6012 string_set(&ServicePtrs[i]->comment, comment);
6014 /* set the browseable flag from the gloabl default */
6015 ServicePtrs[i]->bBrowseable = sDefault.bBrowseable;
6017 /* Printers cannot be read_only. */
6018 ServicePtrs[i]->bRead_only = false;
6019 /* No share modes on printer services. */
6020 ServicePtrs[i]->bShareModes = false;
6021 /* No oplocks on printer services. */
6022 ServicePtrs[i]->bOpLocks = false;
6023 /* Printer services must be printable. */
6024 ServicePtrs[i]->bPrint_ok = true;
6026 DEBUG(3, ("adding printer service %s\n", pszPrintername));
6028 return (true);
6032 /***************************************************************************
6033 Check whether the given parameter name is valid.
6034 Parametric options (names containing a colon) are considered valid.
6035 ***************************************************************************/
6037 bool lp_parameter_is_valid(const char *pszParmName)
6039 return ((map_parameter(pszParmName) != -1) ||
6040 (strchr(pszParmName, ':') != NULL));
6043 /***************************************************************************
6044 Check whether the given name is the name of a global parameter.
6045 Returns true for strings belonging to parameters of class
6046 P_GLOBAL, false for all other strings, also for parametric options
6047 and strings not belonging to any option.
6048 ***************************************************************************/
6050 bool lp_parameter_is_global(const char *pszParmName)
6052 int num = map_parameter(pszParmName);
6054 if (num >= 0) {
6055 return (parm_table[num].p_class == P_GLOBAL);
6058 return false;
6061 /**************************************************************************
6062 Check whether the given name is the canonical name of a parameter.
6063 Returns false if it is not a valid parameter Name.
6064 For parametric options, true is returned.
6065 **************************************************************************/
6067 bool lp_parameter_is_canonical(const char *parm_name)
6069 if (!lp_parameter_is_valid(parm_name)) {
6070 return false;
6073 return (map_parameter(parm_name) ==
6074 map_parameter_canonical(parm_name, NULL));
6077 /**************************************************************************
6078 Determine the canonical name for a parameter.
6079 Indicate when it is an inverse (boolean) synonym instead of a
6080 "usual" synonym.
6081 **************************************************************************/
6083 bool lp_canonicalize_parameter(const char *parm_name, const char **canon_parm,
6084 bool *inverse)
6086 int num;
6088 if (!lp_parameter_is_valid(parm_name)) {
6089 *canon_parm = NULL;
6090 return false;
6093 num = map_parameter_canonical(parm_name, inverse);
6094 if (num < 0) {
6095 /* parametric option */
6096 *canon_parm = parm_name;
6097 } else {
6098 *canon_parm = parm_table[num].label;
6101 return true;
6105 /**************************************************************************
6106 Determine the canonical name for a parameter.
6107 Turn the value given into the inverse boolean expression when
6108 the synonym is an invers boolean synonym.
6110 Return true if parm_name is a valid parameter name and
6111 in case it is an invers boolean synonym, if the val string could
6112 successfully be converted to the reverse bool.
6113 Return false in all other cases.
6114 **************************************************************************/
6116 bool lp_canonicalize_parameter_with_value(const char *parm_name,
6117 const char *val,
6118 const char **canon_parm,
6119 const char **canon_val)
6121 int num;
6122 bool inverse;
6124 if (!lp_parameter_is_valid(parm_name)) {
6125 *canon_parm = NULL;
6126 *canon_val = NULL;
6127 return false;
6130 num = map_parameter_canonical(parm_name, &inverse);
6131 if (num < 0) {
6132 /* parametric option */
6133 *canon_parm = parm_name;
6134 *canon_val = val;
6135 } else {
6136 *canon_parm = parm_table[num].label;
6137 if (inverse) {
6138 if (!lp_invert_boolean(val, canon_val)) {
6139 *canon_val = NULL;
6140 return false;
6142 } else {
6143 *canon_val = val;
6147 return true;
6150 /***************************************************************************
6151 Map a parameter's string representation to something we can use.
6152 Returns false if the parameter string is not recognised, else TRUE.
6153 ***************************************************************************/
6155 static int map_parameter(const char *pszParmName)
6157 int iIndex;
6159 if (*pszParmName == '-' && !strequal(pszParmName, "-valid"))
6160 return (-1);
6162 for (iIndex = 0; parm_table[iIndex].label; iIndex++)
6163 if (strwicmp(parm_table[iIndex].label, pszParmName) == 0)
6164 return (iIndex);
6166 /* Warn only if it isn't parametric option */
6167 if (strchr(pszParmName, ':') == NULL)
6168 DEBUG(1, ("Unknown parameter encountered: \"%s\"\n", pszParmName));
6169 /* We do return 'fail' for parametric options as well because they are
6170 stored in different storage
6172 return (-1);
6175 /***************************************************************************
6176 Map a parameter's string representation to the index of the canonical
6177 form of the parameter (it might be a synonym).
6178 Returns -1 if the parameter string is not recognised.
6179 ***************************************************************************/
6181 static int map_parameter_canonical(const char *pszParmName, bool *inverse)
6183 int parm_num, canon_num;
6184 bool loc_inverse = false;
6186 parm_num = map_parameter(pszParmName);
6187 if ((parm_num < 0) || !(parm_table[parm_num].flags & FLAG_HIDE)) {
6188 /* invalid, parametric or no canidate for synonyms ... */
6189 goto done;
6192 for (canon_num = 0; parm_table[canon_num].label; canon_num++) {
6193 if (is_synonym_of(parm_num, canon_num, &loc_inverse)) {
6194 parm_num = canon_num;
6195 goto done;
6199 done:
6200 if (inverse != NULL) {
6201 *inverse = loc_inverse;
6203 return parm_num;
6206 /***************************************************************************
6207 return true if parameter number parm1 is a synonym of parameter
6208 number parm2 (parm2 being the principal name).
6209 set inverse to true if parm1 is P_BOOLREV and parm2 is P_BOOL,
6210 false otherwise.
6211 ***************************************************************************/
6213 static bool is_synonym_of(int parm1, int parm2, bool *inverse)
6215 if ((parm_table[parm1].offset == parm_table[parm2].offset) &&
6216 (parm_table[parm1].p_class == parm_table[parm2].p_class) &&
6217 (parm_table[parm1].flags & FLAG_HIDE) &&
6218 !(parm_table[parm2].flags & FLAG_HIDE))
6220 if (inverse != NULL) {
6221 if ((parm_table[parm1].type == P_BOOLREV) &&
6222 (parm_table[parm2].type == P_BOOL))
6224 *inverse = true;
6225 } else {
6226 *inverse = false;
6229 return true;
6231 return false;
6234 /***************************************************************************
6235 Show one parameter's name, type, [values,] and flags.
6236 (helper functions for show_parameter_list)
6237 ***************************************************************************/
6239 static void show_parameter(int parmIndex)
6241 int enumIndex, flagIndex;
6242 int parmIndex2;
6243 bool hadFlag;
6244 bool hadSyn;
6245 bool inverse;
6246 const char *type[] = { "P_BOOL", "P_BOOLREV", "P_CHAR", "P_INTEGER",
6247 "P_OCTAL", "P_LIST", "P_STRING", "P_USTRING",
6248 "P_ENUM", "P_SEP"};
6249 unsigned flags[] = { FLAG_BASIC, FLAG_SHARE, FLAG_PRINT, FLAG_GLOBAL,
6250 FLAG_WIZARD, FLAG_ADVANCED, FLAG_DEVELOPER, FLAG_DEPRECATED,
6251 FLAG_HIDE};
6252 const char *flag_names[] = { "FLAG_BASIC", "FLAG_SHARE", "FLAG_PRINT",
6253 "FLAG_GLOBAL", "FLAG_WIZARD", "FLAG_ADVANCED", "FLAG_DEVELOPER",
6254 "FLAG_DEPRECATED", "FLAG_HIDE", NULL};
6256 printf("%s=%s", parm_table[parmIndex].label,
6257 type[parm_table[parmIndex].type]);
6258 if (parm_table[parmIndex].type == P_ENUM) {
6259 printf(",");
6260 for (enumIndex=0;
6261 parm_table[parmIndex].enum_list[enumIndex].name;
6262 enumIndex++)
6264 printf("%s%s",
6265 enumIndex ? "|" : "",
6266 parm_table[parmIndex].enum_list[enumIndex].name);
6269 printf(",");
6270 hadFlag = false;
6271 for (flagIndex=0; flag_names[flagIndex]; flagIndex++) {
6272 if (parm_table[parmIndex].flags & flags[flagIndex]) {
6273 printf("%s%s",
6274 hadFlag ? "|" : "",
6275 flag_names[flagIndex]);
6276 hadFlag = true;
6280 /* output synonyms */
6281 hadSyn = false;
6282 for (parmIndex2=0; parm_table[parmIndex2].label; parmIndex2++) {
6283 if (is_synonym_of(parmIndex, parmIndex2, &inverse)) {
6284 printf(" (%ssynonym of %s)", inverse ? "inverse " : "",
6285 parm_table[parmIndex2].label);
6286 } else if (is_synonym_of(parmIndex2, parmIndex, &inverse)) {
6287 if (!hadSyn) {
6288 printf(" (synonyms: ");
6289 hadSyn = true;
6290 } else {
6291 printf(", ");
6293 printf("%s%s", parm_table[parmIndex2].label,
6294 inverse ? "[i]" : "");
6297 if (hadSyn) {
6298 printf(")");
6301 printf("\n");
6304 /***************************************************************************
6305 Show all parameter's name, type, [values,] and flags.
6306 ***************************************************************************/
6308 void show_parameter_list(void)
6310 int classIndex, parmIndex;
6311 const char *section_names[] = { "local", "global", NULL};
6313 for (classIndex=0; section_names[classIndex]; classIndex++) {
6314 printf("[%s]\n", section_names[classIndex]);
6315 for (parmIndex = 0; parm_table[parmIndex].label; parmIndex++) {
6316 if (parm_table[parmIndex].p_class == classIndex) {
6317 show_parameter(parmIndex);
6323 /***************************************************************************
6324 Check if a given string correctly represents a boolean value.
6325 ***************************************************************************/
6327 bool lp_string_is_valid_boolean(const char *parm_value)
6329 return set_boolean(parm_value, NULL);
6332 /***************************************************************************
6333 Get the standard string representation of a boolean value ("yes" or "no")
6334 ***************************************************************************/
6336 static const char *get_boolean(bool bool_value)
6338 static const char *yes_str = "yes";
6339 static const char *no_str = "no";
6341 return (bool_value ? yes_str : no_str);
6344 /***************************************************************************
6345 Provide the string of the negated boolean value associated to the boolean
6346 given as a string. Returns false if the passed string does not correctly
6347 represent a boolean.
6348 ***************************************************************************/
6350 bool lp_invert_boolean(const char *str, const char **inverse_str)
6352 bool val;
6354 if (!set_boolean(str, &val)) {
6355 return false;
6358 *inverse_str = get_boolean(!val);
6359 return true;
6362 /***************************************************************************
6363 Provide the canonical string representation of a boolean value given
6364 as a string. Return true on success, false if the string given does
6365 not correctly represent a boolean.
6366 ***************************************************************************/
6368 bool lp_canonicalize_boolean(const char *str, const char**canon_str)
6370 bool val;
6372 if (!set_boolean(str, &val)) {
6373 return false;
6376 *canon_str = get_boolean(val);
6377 return true;
6380 /***************************************************************************
6381 Find a service by name. Otherwise works like get_service.
6382 ***************************************************************************/
6384 static int getservicebyname(const char *pszServiceName, struct loadparm_service *pserviceDest)
6386 int iService = -1;
6387 char *canon_name;
6388 TDB_DATA data;
6390 if (ServiceHash == NULL) {
6391 return -1;
6394 canon_name = canonicalize_servicename(talloc_tos(), pszServiceName);
6396 data = dbwrap_fetch_bystring(ServiceHash, canon_name, canon_name);
6398 if ((data.dptr != NULL) && (data.dsize == sizeof(iService))) {
6399 iService = *(int *)data.dptr;
6402 TALLOC_FREE(canon_name);
6404 if ((iService != -1) && (LP_SNUM_OK(iService))
6405 && (pserviceDest != NULL)) {
6406 copy_service(pserviceDest, ServicePtrs[iService], NULL);
6409 return (iService);
6412 /* Return a pointer to a service by name. Unlike getservicebyname, it does not copy the service */
6413 struct loadparm_service *lp_service(const char *pszServiceName)
6415 int iService = getservicebyname(pszServiceName, NULL);
6416 if (iService == -1 || !LP_SNUM_OK(iService)) {
6417 return NULL;
6419 return ServicePtrs[iService];
6423 /***************************************************************************
6424 Copy a service structure to another.
6425 If pcopymapDest is NULL then copy all fields
6426 ***************************************************************************/
6429 * Add a parametric option to a parmlist_entry,
6430 * replacing old value, if already present.
6432 static void set_param_opt(struct parmlist_entry **opt_list,
6433 const char *opt_name,
6434 const char *opt_value,
6435 unsigned priority)
6437 struct parmlist_entry *new_opt, *opt;
6438 bool not_added;
6440 if (opt_list == NULL) {
6441 return;
6444 opt = *opt_list;
6445 not_added = true;
6447 /* Traverse destination */
6448 while (opt) {
6449 /* If we already have same option, override it */
6450 if (strwicmp(opt->key, opt_name) == 0) {
6451 if ((opt->priority & FLAG_CMDLINE) &&
6452 !(priority & FLAG_CMDLINE)) {
6453 /* it's been marked as not to be
6454 overridden */
6455 return;
6457 string_free(&opt->value);
6458 TALLOC_FREE(opt->list);
6459 opt->value = SMB_STRDUP(opt_value);
6460 opt->priority = priority;
6461 not_added = false;
6462 break;
6464 opt = opt->next;
6466 if (not_added) {
6467 new_opt = SMB_XMALLOC_P(struct parmlist_entry);
6468 new_opt->key = SMB_STRDUP(opt_name);
6469 new_opt->value = SMB_STRDUP(opt_value);
6470 new_opt->list = NULL;
6471 new_opt->priority = priority;
6472 DLIST_ADD(*opt_list, new_opt);
6476 static void copy_service(struct loadparm_service *pserviceDest, struct loadparm_service *pserviceSource,
6477 struct bitmap *pcopymapDest)
6479 int i;
6480 bool bcopyall = (pcopymapDest == NULL);
6481 struct parmlist_entry *data;
6483 for (i = 0; parm_table[i].label; i++)
6484 if (parm_table[i].p_class == P_LOCAL &&
6485 (bcopyall || bitmap_query(pcopymapDest,i))) {
6486 void *src_ptr = lp_parm_ptr(pserviceSource, &parm_table[i]);
6487 void *dest_ptr = lp_parm_ptr(pserviceDest, &parm_table[i]);
6489 switch (parm_table[i].type) {
6490 case P_BOOL:
6491 case P_BOOLREV:
6492 *(bool *)dest_ptr = *(bool *)src_ptr;
6493 break;
6495 case P_INTEGER:
6496 case P_ENUM:
6497 case P_OCTAL:
6498 *(int *)dest_ptr = *(int *)src_ptr;
6499 break;
6501 case P_CHAR:
6502 *(char *)dest_ptr = *(char *)src_ptr;
6503 break;
6505 case P_STRING:
6506 string_set((char **)dest_ptr,
6507 *(char **)src_ptr);
6508 break;
6510 case P_USTRING:
6512 char *upper_string = strupper_talloc(talloc_tos(),
6513 *(char **)src_ptr);
6514 string_set((char **)dest_ptr,
6515 upper_string);
6516 TALLOC_FREE(upper_string);
6517 break;
6519 case P_LIST:
6520 TALLOC_FREE(*((char ***)dest_ptr));
6521 *((char ***)dest_ptr) = str_list_copy(NULL,
6522 *(const char ***)src_ptr);
6523 break;
6524 default:
6525 break;
6529 if (bcopyall) {
6530 init_copymap(pserviceDest);
6531 if (pserviceSource->copymap)
6532 bitmap_copy(pserviceDest->copymap,
6533 pserviceSource->copymap);
6536 data = pserviceSource->param_opt;
6537 while (data) {
6538 set_param_opt(&pserviceDest->param_opt, data->key, data->value, data->priority);
6539 data = data->next;
6543 /***************************************************************************
6544 Check a service for consistency. Return false if the service is in any way
6545 incomplete or faulty, else true.
6546 ***************************************************************************/
6548 bool service_ok(int iService)
6550 bool bRetval;
6552 bRetval = true;
6553 if (ServicePtrs[iService]->szService[0] == '\0') {
6554 DEBUG(0, ("The following message indicates an internal error:\n"));
6555 DEBUG(0, ("No service name in service entry.\n"));
6556 bRetval = false;
6559 /* The [printers] entry MUST be printable. I'm all for flexibility, but */
6560 /* I can't see why you'd want a non-printable printer service... */
6561 if (strwicmp(ServicePtrs[iService]->szService, PRINTERS_NAME) == 0) {
6562 if (!ServicePtrs[iService]->bPrint_ok) {
6563 DEBUG(0, ("WARNING: [%s] service MUST be printable!\n",
6564 ServicePtrs[iService]->szService));
6565 ServicePtrs[iService]->bPrint_ok = true;
6567 /* [printers] service must also be non-browsable. */
6568 if (ServicePtrs[iService]->bBrowseable)
6569 ServicePtrs[iService]->bBrowseable = false;
6572 if (ServicePtrs[iService]->szPath[0] == '\0' &&
6573 strwicmp(ServicePtrs[iService]->szService, HOMES_NAME) != 0 &&
6574 ServicePtrs[iService]->szMSDfsProxy[0] == '\0'
6576 DEBUG(0, ("WARNING: No path in service %s - making it unavailable!\n",
6577 ServicePtrs[iService]->szService));
6578 ServicePtrs[iService]->bAvailable = false;
6581 /* If a service is flagged unavailable, log the fact at level 1. */
6582 if (!ServicePtrs[iService]->bAvailable)
6583 DEBUG(1, ("NOTE: Service %s is flagged unavailable.\n",
6584 ServicePtrs[iService]->szService));
6586 return (bRetval);
6589 static struct smbconf_ctx *lp_smbconf_ctx(void)
6591 sbcErr err;
6592 static struct smbconf_ctx *conf_ctx = NULL;
6594 if (conf_ctx == NULL) {
6595 err = smbconf_init(NULL, &conf_ctx, "registry:");
6596 if (!SBC_ERROR_IS_OK(err)) {
6597 DEBUG(1, ("error initializing registry configuration: "
6598 "%s\n", sbcErrorString(err)));
6599 conf_ctx = NULL;
6603 return conf_ctx;
6606 static bool process_smbconf_service(struct smbconf_service *service)
6608 uint32_t count;
6609 bool ret;
6611 if (service == NULL) {
6612 return false;
6615 ret = do_section(service->name, NULL);
6616 if (ret != true) {
6617 return false;
6619 for (count = 0; count < service->num_params; count++) {
6620 ret = do_parameter(service->param_names[count],
6621 service->param_values[count],
6622 NULL);
6623 if (ret != true) {
6624 return false;
6627 if (iServiceIndex >= 0) {
6628 return service_ok(iServiceIndex);
6630 return true;
6634 * load a service from registry and activate it
6636 bool process_registry_service(const char *service_name)
6638 sbcErr err;
6639 struct smbconf_service *service = NULL;
6640 TALLOC_CTX *mem_ctx = talloc_stackframe();
6641 struct smbconf_ctx *conf_ctx = lp_smbconf_ctx();
6642 bool ret = false;
6644 if (conf_ctx == NULL) {
6645 goto done;
6648 DEBUG(5, ("process_registry_service: service name %s\n", service_name));
6650 if (!smbconf_share_exists(conf_ctx, service_name)) {
6652 * Registry does not contain data for this service (yet),
6653 * but make sure lp_load doesn't return false.
6655 ret = true;
6656 goto done;
6659 err = smbconf_get_share(conf_ctx, mem_ctx, service_name, &service);
6660 if (!SBC_ERROR_IS_OK(err)) {
6661 goto done;
6664 ret = process_smbconf_service(service);
6665 if (!ret) {
6666 goto done;
6669 /* store the csn */
6670 smbconf_changed(conf_ctx, &conf_last_csn, NULL, NULL);
6672 done:
6673 TALLOC_FREE(mem_ctx);
6674 return ret;
6678 * process_registry_globals
6680 static bool process_registry_globals(void)
6682 bool ret;
6684 add_to_file_list(INCLUDE_REGISTRY_NAME, INCLUDE_REGISTRY_NAME);
6686 ret = do_parameter("registry shares", "yes", NULL);
6687 if (!ret) {
6688 return ret;
6691 return process_registry_service(GLOBAL_NAME);
6694 bool process_registry_shares(void)
6696 sbcErr err;
6697 uint32_t count;
6698 struct smbconf_service **service = NULL;
6699 uint32_t num_shares = 0;
6700 TALLOC_CTX *mem_ctx = talloc_stackframe();
6701 struct smbconf_ctx *conf_ctx = lp_smbconf_ctx();
6702 bool ret = false;
6704 if (conf_ctx == NULL) {
6705 goto done;
6708 err = smbconf_get_config(conf_ctx, mem_ctx, &num_shares, &service);
6709 if (!SBC_ERROR_IS_OK(err)) {
6710 goto done;
6713 ret = true;
6715 for (count = 0; count < num_shares; count++) {
6716 if (strequal(service[count]->name, GLOBAL_NAME)) {
6717 continue;
6719 ret = process_smbconf_service(service[count]);
6720 if (!ret) {
6721 goto done;
6725 /* store the csn */
6726 smbconf_changed(conf_ctx, &conf_last_csn, NULL, NULL);
6728 done:
6729 TALLOC_FREE(mem_ctx);
6730 return ret;
6733 #define MAX_INCLUDE_DEPTH 100
6735 static uint8_t include_depth;
6737 static struct file_lists {
6738 struct file_lists *next;
6739 char *name;
6740 char *subfname;
6741 time_t modtime;
6742 } *file_lists = NULL;
6744 /*******************************************************************
6745 Keep a linked list of all config files so we know when one has changed
6746 it's date and needs to be reloaded.
6747 ********************************************************************/
6749 static void add_to_file_list(const char *fname, const char *subfname)
6751 struct file_lists *f = file_lists;
6753 while (f) {
6754 if (f->name && !strcmp(f->name, fname))
6755 break;
6756 f = f->next;
6759 if (!f) {
6760 f = SMB_MALLOC_P(struct file_lists);
6761 if (!f)
6762 return;
6763 f->next = file_lists;
6764 f->name = SMB_STRDUP(fname);
6765 if (!f->name) {
6766 SAFE_FREE(f);
6767 return;
6769 f->subfname = SMB_STRDUP(subfname);
6770 if (!f->subfname) {
6771 SAFE_FREE(f->name);
6772 SAFE_FREE(f);
6773 return;
6775 file_lists = f;
6776 f->modtime = file_modtime(subfname);
6777 } else {
6778 time_t t = file_modtime(subfname);
6779 if (t)
6780 f->modtime = t;
6782 return;
6786 * Free the file lists
6788 static void free_file_list(void)
6790 struct file_lists *f;
6791 struct file_lists *next;
6793 f = file_lists;
6794 while( f ) {
6795 next = f->next;
6796 SAFE_FREE( f->name );
6797 SAFE_FREE( f->subfname );
6798 SAFE_FREE( f );
6799 f = next;
6801 file_lists = NULL;
6806 * Utility function for outsiders to check if we're running on registry.
6808 bool lp_config_backend_is_registry(void)
6810 return (lp_config_backend() == CONFIG_BACKEND_REGISTRY);
6814 * Utility function to check if the config backend is FILE.
6816 bool lp_config_backend_is_file(void)
6818 return (lp_config_backend() == CONFIG_BACKEND_FILE);
6821 /*******************************************************************
6822 Check if a config file has changed date.
6823 ********************************************************************/
6825 bool lp_file_list_changed(void)
6827 struct file_lists *f = file_lists;
6829 DEBUG(6, ("lp_file_list_changed()\n"));
6831 while (f) {
6832 time_t mod_time;
6834 if (strequal(f->name, INCLUDE_REGISTRY_NAME)) {
6835 struct smbconf_ctx *conf_ctx = lp_smbconf_ctx();
6837 if (conf_ctx == NULL) {
6838 return false;
6840 if (smbconf_changed(conf_ctx, &conf_last_csn, NULL,
6841 NULL))
6843 DEBUGADD(6, ("registry config changed\n"));
6844 return true;
6846 } else {
6847 char *n2 = NULL;
6848 n2 = talloc_sub_basic(talloc_tos(),
6849 get_current_username(),
6850 current_user_info.domain,
6851 f->name);
6852 if (!n2) {
6853 return false;
6855 DEBUGADD(6, ("file %s -> %s last mod_time: %s\n",
6856 f->name, n2, ctime(&f->modtime)));
6858 mod_time = file_modtime(n2);
6860 if (mod_time &&
6861 ((f->modtime != mod_time) ||
6862 (f->subfname == NULL) ||
6863 (strcmp(n2, f->subfname) != 0)))
6865 DEBUGADD(6,
6866 ("file %s modified: %s\n", n2,
6867 ctime(&mod_time)));
6868 f->modtime = mod_time;
6869 SAFE_FREE(f->subfname);
6870 f->subfname = SMB_STRDUP(n2);
6871 TALLOC_FREE(n2);
6872 return true;
6874 TALLOC_FREE(n2);
6876 f = f->next;
6878 return (false);
6883 * Initialize iconv conversion descriptors.
6885 * This is called the first time it is needed, and also called again
6886 * every time the configuration is reloaded, because the charset or
6887 * codepage might have changed.
6889 static void init_iconv(void)
6891 global_iconv_handle = smb_iconv_handle_reinit(NULL, lp_dos_charset(),
6892 lp_unix_charset(),
6893 true, global_iconv_handle);
6896 static bool handle_charset(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr)
6898 if (strcmp(*ptr, pszParmValue) != 0) {
6899 string_set(ptr, pszParmValue);
6900 init_iconv();
6902 return true;
6905 static bool handle_dos_charset(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr)
6907 bool is_utf8 = false;
6908 size_t len = strlen(pszParmValue);
6910 if (len == 4 || len == 5) {
6911 /* Don't use StrCaseCmp here as we don't want to
6912 initialize iconv. */
6913 if ((toupper_ascii(pszParmValue[0]) == 'U') &&
6914 (toupper_ascii(pszParmValue[1]) == 'T') &&
6915 (toupper_ascii(pszParmValue[2]) == 'F')) {
6916 if (len == 4) {
6917 if (pszParmValue[3] == '8') {
6918 is_utf8 = true;
6920 } else {
6921 if (pszParmValue[3] == '-' &&
6922 pszParmValue[4] == '8') {
6923 is_utf8 = true;
6929 if (strcmp(*ptr, pszParmValue) != 0) {
6930 if (is_utf8) {
6931 DEBUG(0,("ERROR: invalid DOS charset: 'dos charset' must not "
6932 "be UTF8, using (default value) %s instead.\n",
6933 DEFAULT_DOS_CHARSET));
6934 pszParmValue = DEFAULT_DOS_CHARSET;
6936 string_set(ptr, pszParmValue);
6937 init_iconv();
6939 return true;
6942 static bool handle_realm(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr)
6944 bool ret = true;
6945 char *realm = strupper_talloc(talloc_tos(), pszParmValue);
6946 char *dnsdomain = strlower_talloc(talloc_tos(), pszParmValue);
6948 ret &= string_set(&Globals.szRealm, pszParmValue);
6949 ret &= string_set(&Globals.szRealmUpper, realm);
6950 ret &= string_set(&Globals.szDnsDomain, dnsdomain);
6951 TALLOC_FREE(realm);
6952 TALLOC_FREE(dnsdomain);
6954 return ret;
6957 static bool handle_netbios_aliases(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr)
6959 TALLOC_FREE(Globals.szNetbiosAliases);
6960 Globals.szNetbiosAliases = str_list_make_v3(NULL, pszParmValue, NULL);
6961 return set_netbios_aliases((const char **)Globals.szNetbiosAliases);
6964 /***************************************************************************
6965 Handle the include operation.
6966 ***************************************************************************/
6967 static bool bAllowIncludeRegistry = true;
6969 static bool handle_include(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr)
6971 char *fname;
6973 if (include_depth >= MAX_INCLUDE_DEPTH) {
6974 DEBUG(0, ("Error: Maximum include depth (%u) exceeded!\n",
6975 include_depth));
6976 return false;
6979 if (strequal(pszParmValue, INCLUDE_REGISTRY_NAME)) {
6980 if (!bAllowIncludeRegistry) {
6981 return true;
6983 if (bInGlobalSection) {
6984 bool ret;
6985 include_depth++;
6986 ret = process_registry_globals();
6987 include_depth--;
6988 return ret;
6989 } else {
6990 DEBUG(1, ("\"include = registry\" only effective "
6991 "in %s section\n", GLOBAL_NAME));
6992 return false;
6996 fname = talloc_sub_basic(talloc_tos(), get_current_username(),
6997 current_user_info.domain,
6998 pszParmValue);
7000 add_to_file_list(pszParmValue, fname);
7002 string_set(ptr, fname);
7004 if (file_exist(fname)) {
7005 bool ret;
7006 include_depth++;
7007 ret = pm_process(fname, do_section, do_parameter, NULL);
7008 include_depth--;
7009 TALLOC_FREE(fname);
7010 return ret;
7013 DEBUG(2, ("Can't find include file %s\n", fname));
7014 TALLOC_FREE(fname);
7015 return true;
7018 /***************************************************************************
7019 Handle the interpretation of the copy parameter.
7020 ***************************************************************************/
7022 static bool handle_copy(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr)
7024 bool bRetval;
7025 int iTemp;
7026 struct loadparm_service serviceTemp;
7028 string_set(ptr, pszParmValue);
7030 init_service(&serviceTemp);
7032 bRetval = false;
7034 DEBUG(3, ("Copying service from service %s\n", pszParmValue));
7036 if ((iTemp = getservicebyname(pszParmValue, &serviceTemp)) >= 0) {
7037 if (iTemp == iServiceIndex) {
7038 DEBUG(0, ("Can't copy service %s - unable to copy self!\n", pszParmValue));
7039 } else {
7040 copy_service(ServicePtrs[iServiceIndex],
7041 &serviceTemp,
7042 ServicePtrs[iServiceIndex]->copymap);
7043 bRetval = true;
7045 } else {
7046 DEBUG(0, ("Unable to copy service - source not found: %s\n", pszParmValue));
7047 bRetval = false;
7050 free_service(&serviceTemp);
7051 return (bRetval);
7054 static bool handle_ldap_debug_level(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr)
7056 Globals.ldap_debug_level = lp_int(pszParmValue);
7057 init_ldap_debugging();
7058 return true;
7061 /***************************************************************************
7062 Handle idmap/non unix account uid and gid allocation parameters. The format of these
7063 parameters is:
7065 [global]
7067 idmap uid = 1000-1999
7068 idmap gid = 700-899
7070 We only do simple parsing checks here. The strings are parsed into useful
7071 structures in the idmap daemon code.
7073 ***************************************************************************/
7075 /* Some lp_ routines to return idmap [ug]id information */
7077 static uid_t idmap_uid_low, idmap_uid_high;
7078 static gid_t idmap_gid_low, idmap_gid_high;
7080 bool lp_idmap_uid(uid_t *low, uid_t *high)
7082 if (idmap_uid_low == 0 || idmap_uid_high == 0)
7083 return false;
7085 if (low)
7086 *low = idmap_uid_low;
7088 if (high)
7089 *high = idmap_uid_high;
7091 return true;
7094 bool lp_idmap_gid(gid_t *low, gid_t *high)
7096 if (idmap_gid_low == 0 || idmap_gid_high == 0)
7097 return false;
7099 if (low)
7100 *low = idmap_gid_low;
7102 if (high)
7103 *high = idmap_gid_high;
7105 return true;
7108 static bool handle_idmap_backend(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr)
7110 lp_do_parameter(snum, "idmap config * : backend", pszParmValue);
7112 return true;
7115 /* Do some simple checks on "idmap [ug]id" parameter values */
7117 static bool handle_idmap_uid(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr)
7119 lp_do_parameter(snum, "idmap config * : range", pszParmValue);
7121 return true;
7124 static bool handle_idmap_gid(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr)
7126 lp_do_parameter(snum, "idmap config * : range", pszParmValue);
7128 return true;
7131 /***************************************************************************
7132 Handle the DEBUG level list.
7133 ***************************************************************************/
7135 static bool handle_debug_list(struct loadparm_context *unused, int snum, const char *pszParmValueIn, char **ptr )
7137 string_set(ptr, pszParmValueIn);
7138 return debug_parse_levels(pszParmValueIn);
7141 /***************************************************************************
7142 Handle ldap suffixes - default to ldapsuffix if sub-suffixes are not defined.
7143 ***************************************************************************/
7145 static const char *append_ldap_suffix( const char *str )
7147 const char *suffix_string;
7150 suffix_string = talloc_asprintf(talloc_tos(), "%s,%s", str,
7151 Globals.szLdapSuffix );
7152 if ( !suffix_string ) {
7153 DEBUG(0,("append_ldap_suffix: talloc_asprintf() failed!\n"));
7154 return "";
7157 return suffix_string;
7160 const char *lp_ldap_machine_suffix(void)
7162 if (Globals.szLdapMachineSuffix[0])
7163 return append_ldap_suffix(Globals.szLdapMachineSuffix);
7165 return lp_string(Globals.szLdapSuffix);
7168 const char *lp_ldap_user_suffix(void)
7170 if (Globals.szLdapUserSuffix[0])
7171 return append_ldap_suffix(Globals.szLdapUserSuffix);
7173 return lp_string(Globals.szLdapSuffix);
7176 const char *lp_ldap_group_suffix(void)
7178 if (Globals.szLdapGroupSuffix[0])
7179 return append_ldap_suffix(Globals.szLdapGroupSuffix);
7181 return lp_string(Globals.szLdapSuffix);
7184 const char *lp_ldap_idmap_suffix(void)
7186 if (Globals.szLdapIdmapSuffix[0])
7187 return append_ldap_suffix(Globals.szLdapIdmapSuffix);
7189 return lp_string(Globals.szLdapSuffix);
7192 /****************************************************************************
7193 set the value for a P_ENUM
7194 ***************************************************************************/
7196 static void lp_set_enum_parm( struct parm_struct *parm, const char *pszParmValue,
7197 int *ptr )
7199 int i;
7201 for (i = 0; parm->enum_list[i].name; i++) {
7202 if ( strequal(pszParmValue, parm->enum_list[i].name)) {
7203 *ptr = parm->enum_list[i].value;
7204 return;
7207 DEBUG(0, ("WARNING: Ignoring invalid value '%s' for parameter '%s'\n",
7208 pszParmValue, parm->label));
7211 /***************************************************************************
7212 ***************************************************************************/
7214 static bool handle_printing(struct loadparm_context *unused, int snum, const char *pszParmValue, char **ptr)
7216 static int parm_num = -1;
7217 struct loadparm_service *s;
7219 if ( parm_num == -1 )
7220 parm_num = map_parameter( "printing" );
7222 lp_set_enum_parm( &parm_table[parm_num], pszParmValue, (int*)ptr );
7224 if ( snum < 0 )
7225 s = &sDefault;
7226 else
7227 s = ServicePtrs[snum];
7229 init_printer_values( s );
7231 return true;
7235 /***************************************************************************
7236 Initialise a copymap.
7237 ***************************************************************************/
7239 static void init_copymap(struct loadparm_service *pservice)
7241 int i;
7243 TALLOC_FREE(pservice->copymap);
7245 pservice->copymap = bitmap_talloc(NULL, NUMPARAMETERS);
7246 if (!pservice->copymap)
7247 DEBUG(0,
7248 ("Couldn't allocate copymap!! (size %d)\n",
7249 (int)NUMPARAMETERS));
7250 else
7251 for (i = 0; i < NUMPARAMETERS; i++)
7252 bitmap_set(pservice->copymap, i);
7256 return the parameter pointer for a parameter
7258 void *lp_parm_ptr(struct loadparm_service *service, struct parm_struct *parm)
7260 if (service == NULL) {
7261 if (parm->p_class == P_LOCAL)
7262 return (void *)(((char *)&sDefault)+parm->offset);
7263 else if (parm->p_class == P_GLOBAL)
7264 return (void *)(((char *)&Globals)+parm->offset);
7265 else return NULL;
7266 } else {
7267 return (void *)(((char *)service) + parm->offset);
7271 /***************************************************************************
7272 Return the local pointer to a parameter given the service number and parameter
7273 ***************************************************************************/
7275 void *lp_local_ptr_by_snum(int snum, struct parm_struct *parm)
7277 return lp_parm_ptr(ServicePtrs[snum], parm);
7280 /***************************************************************************
7281 Process a parameter for a particular service number. If snum < 0
7282 then assume we are in the globals.
7283 ***************************************************************************/
7285 bool lp_do_parameter(int snum, const char *pszParmName, const char *pszParmValue)
7287 int parmnum, i;
7288 void *parm_ptr = NULL; /* where we are going to store the result */
7289 struct parmlist_entry **opt_list;
7291 parmnum = map_parameter(pszParmName);
7293 if (parmnum < 0) {
7294 if (strchr(pszParmName, ':') == NULL) {
7295 DEBUG(0, ("Ignoring unknown parameter \"%s\"\n",
7296 pszParmName));
7297 return (true);
7301 * We've got a parametric option
7304 opt_list = (snum < 0)
7305 ? &Globals.param_opt : &ServicePtrs[snum]->param_opt;
7306 set_param_opt(opt_list, pszParmName, pszParmValue, 0);
7308 return (true);
7311 /* if it's already been set by the command line, then we don't
7312 override here */
7313 if (parm_table[parmnum].flags & FLAG_CMDLINE) {
7314 return true;
7317 if (parm_table[parmnum].flags & FLAG_DEPRECATED) {
7318 DEBUG(1, ("WARNING: The \"%s\" option is deprecated\n",
7319 pszParmName));
7322 /* we might point at a service, the default service or a global */
7323 if (snum < 0) {
7324 parm_ptr = lp_parm_ptr(NULL, &parm_table[parmnum]);
7325 } else {
7326 if (parm_table[parmnum].p_class == P_GLOBAL) {
7327 DEBUG(0,
7328 ("Global parameter %s found in service section!\n",
7329 pszParmName));
7330 return (true);
7332 parm_ptr = lp_local_ptr_by_snum(snum, &parm_table[parmnum]);
7335 if (snum >= 0) {
7336 if (!ServicePtrs[snum]->copymap)
7337 init_copymap(ServicePtrs[snum]);
7339 /* this handles the aliases - set the copymap for other entries with
7340 the same data pointer */
7341 for (i = 0; parm_table[i].label; i++) {
7342 if ((parm_table[i].offset == parm_table[parmnum].offset)
7343 && (parm_table[i].p_class == parm_table[parmnum].p_class)) {
7344 bitmap_clear(ServicePtrs[snum]->copymap, i);
7349 /* if it is a special case then go ahead */
7350 if (parm_table[parmnum].special) {
7351 return parm_table[parmnum].special(NULL, snum, pszParmValue,
7352 (char **)parm_ptr);
7355 /* now switch on the type of variable it is */
7356 switch (parm_table[parmnum].type)
7358 case P_BOOL:
7359 *(bool *)parm_ptr = lp_bool(pszParmValue);
7360 break;
7362 case P_BOOLREV:
7363 *(bool *)parm_ptr = !lp_bool(pszParmValue);
7364 break;
7366 case P_INTEGER:
7367 *(int *)parm_ptr = lp_int(pszParmValue);
7368 break;
7370 case P_CHAR:
7371 *(char *)parm_ptr = *pszParmValue;
7372 break;
7374 case P_OCTAL:
7375 i = sscanf(pszParmValue, "%o", (int *)parm_ptr);
7376 if ( i != 1 ) {
7377 DEBUG ( 0, ("Invalid octal number %s\n", pszParmName ));
7379 break;
7381 case P_LIST:
7382 TALLOC_FREE(*((char ***)parm_ptr));
7383 *(char ***)parm_ptr = str_list_make_v3(
7384 NULL, pszParmValue, NULL);
7385 break;
7387 case P_STRING:
7388 string_set((char **)parm_ptr, pszParmValue);
7389 break;
7391 case P_USTRING:
7393 char *upper_string = strupper_talloc(talloc_tos(),
7394 pszParmValue);
7395 string_set((char **)parm_ptr, upper_string);
7396 TALLOC_FREE(upper_string);
7397 break;
7399 case P_ENUM:
7400 lp_set_enum_parm( &parm_table[parmnum], pszParmValue, (int*)parm_ptr );
7401 break;
7402 case P_SEP:
7403 break;
7406 return (true);
7409 /***************************************************************************
7410 set a parameter, marking it with FLAG_CMDLINE. Parameters marked as
7411 FLAG_CMDLINE won't be overridden by loads from smb.conf.
7412 ***************************************************************************/
7414 static bool lp_set_cmdline_helper(const char *pszParmName, const char *pszParmValue, bool store_values)
7416 int parmnum, i;
7417 parmnum = map_parameter(pszParmName);
7418 if (parmnum >= 0) {
7419 parm_table[parmnum].flags &= ~FLAG_CMDLINE;
7420 if (!lp_do_parameter(-1, pszParmName, pszParmValue)) {
7421 return false;
7423 parm_table[parmnum].flags |= FLAG_CMDLINE;
7425 /* we have to also set FLAG_CMDLINE on aliases. Aliases must
7426 * be grouped in the table, so we don't have to search the
7427 * whole table */
7428 for (i=parmnum-1;
7429 i>=0 && parm_table[i].offset == parm_table[parmnum].offset
7430 && parm_table[i].p_class == parm_table[parmnum].p_class;
7431 i--) {
7432 parm_table[i].flags |= FLAG_CMDLINE;
7434 for (i=parmnum+1;i<NUMPARAMETERS && parm_table[i].offset == parm_table[parmnum].offset
7435 && parm_table[i].p_class == parm_table[parmnum].p_class;i++) {
7436 parm_table[i].flags |= FLAG_CMDLINE;
7439 if (store_values) {
7440 store_lp_set_cmdline(pszParmName, pszParmValue);
7442 return true;
7445 /* it might be parametric */
7446 if (strchr(pszParmName, ':') != NULL) {
7447 set_param_opt(&Globals.param_opt, pszParmName, pszParmValue, FLAG_CMDLINE);
7448 if (store_values) {
7449 store_lp_set_cmdline(pszParmName, pszParmValue);
7451 return true;
7454 DEBUG(0, ("Ignoring unknown parameter \"%s\"\n", pszParmName));
7455 return true;
7458 bool lp_set_cmdline(const char *pszParmName, const char *pszParmValue)
7460 return lp_set_cmdline_helper(pszParmName, pszParmValue, true);
7463 /***************************************************************************
7464 Process a parameter.
7465 ***************************************************************************/
7467 static bool do_parameter(const char *pszParmName, const char *pszParmValue,
7468 void *userdata)
7470 if (!bInGlobalSection && bGlobalOnly)
7471 return (true);
7473 DEBUGADD(4, ("doing parameter %s = %s\n", pszParmName, pszParmValue));
7475 return (lp_do_parameter(bInGlobalSection ? -2 : iServiceIndex,
7476 pszParmName, pszParmValue));
7480 set a option from the commandline in 'a=b' format. Use to support --option
7482 bool lp_set_option(const char *option)
7484 char *p, *s;
7485 bool ret;
7487 s = talloc_strdup(NULL, option);
7488 if (!s) {
7489 return false;
7492 p = strchr(s, '=');
7493 if (!p) {
7494 talloc_free(s);
7495 return false;
7498 *p = 0;
7500 /* skip white spaces after the = sign */
7501 do {
7502 p++;
7503 } while (*p == ' ');
7505 ret = lp_set_cmdline(s, p);
7506 talloc_free(s);
7507 return ret;
7510 /**************************************************************************
7511 Print a parameter of the specified type.
7512 ***************************************************************************/
7514 static void print_parameter(struct parm_struct *p, void *ptr, FILE * f)
7516 int i;
7517 switch (p->type)
7519 case P_ENUM:
7520 for (i = 0; p->enum_list[i].name; i++) {
7521 if (*(int *)ptr == p->enum_list[i].value) {
7522 fprintf(f, "%s",
7523 p->enum_list[i].name);
7524 break;
7527 break;
7529 case P_BOOL:
7530 fprintf(f, "%s", BOOLSTR(*(bool *)ptr));
7531 break;
7533 case P_BOOLREV:
7534 fprintf(f, "%s", BOOLSTR(!*(bool *)ptr));
7535 break;
7537 case P_INTEGER:
7538 fprintf(f, "%d", *(int *)ptr);
7539 break;
7541 case P_CHAR:
7542 fprintf(f, "%c", *(char *)ptr);
7543 break;
7545 case P_OCTAL: {
7546 char *o = octal_string(*(int *)ptr);
7547 fprintf(f, "%s", o);
7548 TALLOC_FREE(o);
7549 break;
7552 case P_LIST:
7553 if ((char ***)ptr && *(char ***)ptr) {
7554 char **list = *(char ***)ptr;
7555 for (; *list; list++) {
7556 /* surround strings with whitespace in double quotes */
7557 if ( strchr_m( *list, ' ' ) )
7558 fprintf(f, "\"%s\"%s", *list, ((*(list+1))?", ":""));
7559 else
7560 fprintf(f, "%s%s", *list, ((*(list+1))?", ":""));
7563 break;
7565 case P_STRING:
7566 case P_USTRING:
7567 if (*(char **)ptr) {
7568 fprintf(f, "%s", *(char **)ptr);
7570 break;
7571 case P_SEP:
7572 break;
7576 /***************************************************************************
7577 Check if two parameters are equal.
7578 ***************************************************************************/
7580 static bool equal_parameter(parm_type type, void *ptr1, void *ptr2)
7582 switch (type) {
7583 case P_BOOL:
7584 case P_BOOLREV:
7585 return (*((bool *)ptr1) == *((bool *)ptr2));
7587 case P_INTEGER:
7588 case P_ENUM:
7589 case P_OCTAL:
7590 return (*((int *)ptr1) == *((int *)ptr2));
7592 case P_CHAR:
7593 return (*((char *)ptr1) == *((char *)ptr2));
7595 case P_LIST:
7596 return str_list_equal(*(const char ***)ptr1, *(const char ***)ptr2);
7598 case P_STRING:
7599 case P_USTRING:
7601 char *p1 = *(char **)ptr1, *p2 = *(char **)ptr2;
7602 if (p1 && !*p1)
7603 p1 = NULL;
7604 if (p2 && !*p2)
7605 p2 = NULL;
7606 return (p1 == p2 || strequal(p1, p2));
7608 case P_SEP:
7609 break;
7611 return (false);
7614 /***************************************************************************
7615 Initialize any local varients in the sDefault table.
7616 ***************************************************************************/
7618 void init_locals(void)
7620 /* None as yet. */
7623 /***************************************************************************
7624 Process a new section (service). At this stage all sections are services.
7625 Later we'll have special sections that permit server parameters to be set.
7626 Returns true on success, false on failure.
7627 ***************************************************************************/
7629 static bool do_section(const char *pszSectionName, void *userdata)
7631 bool bRetval;
7632 bool isglobal = ((strwicmp(pszSectionName, GLOBAL_NAME) == 0) ||
7633 (strwicmp(pszSectionName, GLOBAL_NAME2) == 0));
7634 bRetval = false;
7636 /* if we were in a global section then do the local inits */
7637 if (bInGlobalSection && !isglobal)
7638 init_locals();
7640 /* if we've just struck a global section, note the fact. */
7641 bInGlobalSection = isglobal;
7643 /* check for multiple global sections */
7644 if (bInGlobalSection) {
7645 DEBUG(3, ("Processing section \"[%s]\"\n", pszSectionName));
7646 return (true);
7649 if (!bInGlobalSection && bGlobalOnly)
7650 return (true);
7652 /* if we have a current service, tidy it up before moving on */
7653 bRetval = true;
7655 if (iServiceIndex >= 0)
7656 bRetval = service_ok(iServiceIndex);
7658 /* if all is still well, move to the next record in the services array */
7659 if (bRetval) {
7660 /* We put this here to avoid an odd message order if messages are */
7661 /* issued by the post-processing of a previous section. */
7662 DEBUG(2, ("Processing section \"[%s]\"\n", pszSectionName));
7664 if ((iServiceIndex = add_a_service(&sDefault, pszSectionName))
7665 < 0) {
7666 DEBUG(0, ("Failed to add a new service\n"));
7667 return (false);
7669 /* Clean all parametric options for service */
7670 /* They will be added during parsing again */
7671 free_param_opts(&ServicePtrs[iServiceIndex]->param_opt);
7674 return (bRetval);
7678 /***************************************************************************
7679 Determine if a partcular base parameter is currentl set to the default value.
7680 ***************************************************************************/
7682 static bool is_default(int i)
7684 if (!defaults_saved)
7685 return false;
7686 switch (parm_table[i].type) {
7687 case P_LIST:
7688 return str_list_equal((const char **)parm_table[i].def.lvalue,
7689 *(const char ***)lp_parm_ptr(NULL,
7690 &parm_table[i]));
7691 case P_STRING:
7692 case P_USTRING:
7693 return strequal(parm_table[i].def.svalue,
7694 *(char **)lp_parm_ptr(NULL,
7695 &parm_table[i]));
7696 case P_BOOL:
7697 case P_BOOLREV:
7698 return parm_table[i].def.bvalue ==
7699 *(bool *)lp_parm_ptr(NULL,
7700 &parm_table[i]);
7701 case P_CHAR:
7702 return parm_table[i].def.cvalue ==
7703 *(char *)lp_parm_ptr(NULL,
7704 &parm_table[i]);
7705 case P_INTEGER:
7706 case P_OCTAL:
7707 case P_ENUM:
7708 return parm_table[i].def.ivalue ==
7709 *(int *)lp_parm_ptr(NULL,
7710 &parm_table[i]);
7711 case P_SEP:
7712 break;
7714 return false;
7717 /***************************************************************************
7718 Display the contents of the global structure.
7719 ***************************************************************************/
7721 static void dump_globals(FILE *f)
7723 int i;
7724 struct parmlist_entry *data;
7726 fprintf(f, "[global]\n");
7728 for (i = 0; parm_table[i].label; i++)
7729 if (parm_table[i].p_class == P_GLOBAL &&
7730 !(parm_table[i].flags & FLAG_META) &&
7731 (i == 0 || (parm_table[i].offset != parm_table[i - 1].offset))) {
7732 if (defaults_saved && is_default(i))
7733 continue;
7734 fprintf(f, "\t%s = ", parm_table[i].label);
7735 print_parameter(&parm_table[i], lp_parm_ptr(NULL,
7736 &parm_table[i]),
7738 fprintf(f, "\n");
7740 if (Globals.param_opt != NULL) {
7741 data = Globals.param_opt;
7742 while(data) {
7743 fprintf(f, "\t%s = %s\n", data->key, data->value);
7744 data = data->next;
7750 /***************************************************************************
7751 Return true if a local parameter is currently set to the global default.
7752 ***************************************************************************/
7754 bool lp_is_default(int snum, struct parm_struct *parm)
7756 return equal_parameter(parm->type,
7757 lp_parm_ptr(ServicePtrs[snum], parm),
7758 lp_parm_ptr(NULL, parm));
7761 /***************************************************************************
7762 Display the contents of a single services record.
7763 ***************************************************************************/
7765 static void dump_a_service(struct loadparm_service *pService, FILE * f)
7767 int i;
7768 struct parmlist_entry *data;
7770 if (pService != &sDefault)
7771 fprintf(f, "[%s]\n", pService->szService);
7773 for (i = 0; parm_table[i].label; i++) {
7775 if (parm_table[i].p_class == P_LOCAL &&
7776 !(parm_table[i].flags & FLAG_META) &&
7777 (*parm_table[i].label != '-') &&
7778 (i == 0 || (parm_table[i].offset != parm_table[i - 1].offset)))
7780 if (pService == &sDefault) {
7781 if (defaults_saved && is_default(i))
7782 continue;
7783 } else {
7784 if (equal_parameter(parm_table[i].type,
7785 lp_parm_ptr(pService, &parm_table[i]),
7786 lp_parm_ptr(NULL, &parm_table[i])))
7787 continue;
7790 fprintf(f, "\t%s = ", parm_table[i].label);
7791 print_parameter(&parm_table[i],
7792 lp_parm_ptr(pService, &parm_table[i]),
7794 fprintf(f, "\n");
7798 if (pService->param_opt != NULL) {
7799 data = pService->param_opt;
7800 while(data) {
7801 fprintf(f, "\t%s = %s\n", data->key, data->value);
7802 data = data->next;
7807 /***************************************************************************
7808 Display the contents of a parameter of a single services record.
7809 ***************************************************************************/
7811 bool dump_a_parameter(int snum, char *parm_name, FILE * f, bool isGlobal)
7813 int i;
7814 bool result = false;
7815 parm_class p_class;
7816 unsigned flag = 0;
7817 fstring local_parm_name;
7818 char *parm_opt;
7819 const char *parm_opt_value;
7821 /* check for parametrical option */
7822 fstrcpy( local_parm_name, parm_name);
7823 parm_opt = strchr( local_parm_name, ':');
7825 if (parm_opt) {
7826 *parm_opt = '\0';
7827 parm_opt++;
7828 if (strlen(parm_opt)) {
7829 parm_opt_value = lp_parm_const_string( snum,
7830 local_parm_name, parm_opt, NULL);
7831 if (parm_opt_value) {
7832 printf( "%s\n", parm_opt_value);
7833 result = true;
7836 return result;
7839 /* check for a key and print the value */
7840 if (isGlobal) {
7841 p_class = P_GLOBAL;
7842 flag = FLAG_GLOBAL;
7843 } else
7844 p_class = P_LOCAL;
7846 for (i = 0; parm_table[i].label; i++) {
7847 if (strwicmp(parm_table[i].label, parm_name) == 0 &&
7848 !(parm_table[i].flags & FLAG_META) &&
7849 (parm_table[i].p_class == p_class || parm_table[i].flags & flag) &&
7850 (*parm_table[i].label != '-') &&
7851 (i == 0 || (parm_table[i].offset != parm_table[i - 1].offset)))
7853 void *ptr;
7855 if (isGlobal) {
7856 ptr = lp_parm_ptr(NULL,
7857 &parm_table[i]);
7858 } else {
7859 ptr = lp_parm_ptr(ServicePtrs[snum],
7860 &parm_table[i]);
7863 print_parameter(&parm_table[i],
7864 ptr, f);
7865 fprintf(f, "\n");
7866 result = true;
7867 break;
7871 return result;
7874 /***************************************************************************
7875 Return info about the requested parameter (given as a string).
7876 Return NULL when the string is not a valid parameter name.
7877 ***************************************************************************/
7879 struct parm_struct *lp_get_parameter(const char *param_name)
7881 int num = map_parameter(param_name);
7883 if (num < 0) {
7884 return NULL;
7887 return &parm_table[num];
7890 /***************************************************************************
7891 Return info about the next parameter in a service.
7892 snum==GLOBAL_SECTION_SNUM gives the globals.
7893 Return NULL when out of parameters.
7894 ***************************************************************************/
7896 struct parm_struct *lp_next_parameter(int snum, int *i, int allparameters)
7898 if (snum < 0) {
7899 /* do the globals */
7900 for (; parm_table[*i].label; (*i)++) {
7901 if (parm_table[*i].p_class == P_SEPARATOR)
7902 return &parm_table[(*i)++];
7904 if ((*parm_table[*i].label == '-'))
7905 continue;
7907 if ((*i) > 0
7908 && (parm_table[*i].offset ==
7909 parm_table[(*i) - 1].offset)
7910 && (parm_table[*i].p_class ==
7911 parm_table[(*i) - 1].p_class))
7912 continue;
7914 if (is_default(*i) && !allparameters)
7915 continue;
7917 return &parm_table[(*i)++];
7919 } else {
7920 struct loadparm_service *pService = ServicePtrs[snum];
7922 for (; parm_table[*i].label; (*i)++) {
7923 if (parm_table[*i].p_class == P_SEPARATOR)
7924 return &parm_table[(*i)++];
7926 if (parm_table[*i].p_class == P_LOCAL &&
7927 (*parm_table[*i].label != '-') &&
7928 ((*i) == 0 ||
7929 (parm_table[*i].offset !=
7930 parm_table[(*i) - 1].offset)))
7932 if (allparameters ||
7933 !equal_parameter(parm_table[*i].type,
7934 lp_parm_ptr(pService,
7935 &parm_table[*i]),
7936 lp_parm_ptr(NULL,
7937 &parm_table[*i])))
7939 return &parm_table[(*i)++];
7945 return NULL;
7949 #if 0
7950 /***************************************************************************
7951 Display the contents of a single copy structure.
7952 ***************************************************************************/
7953 static void dump_copy_map(bool *pcopymap)
7955 int i;
7956 if (!pcopymap)
7957 return;
7959 printf("\n\tNon-Copied parameters:\n");
7961 for (i = 0; parm_table[i].label; i++)
7962 if (parm_table[i].p_class == P_LOCAL &&
7963 parm_table[i].ptr && !pcopymap[i] &&
7964 (i == 0 || (parm_table[i].ptr != parm_table[i - 1].ptr)))
7966 printf("\t\t%s\n", parm_table[i].label);
7969 #endif
7971 /***************************************************************************
7972 Return TRUE if the passed service number is within range.
7973 ***************************************************************************/
7975 bool lp_snum_ok(int iService)
7977 return (LP_SNUM_OK(iService) && ServicePtrs[iService]->bAvailable);
7980 /***************************************************************************
7981 Auto-load some home services.
7982 ***************************************************************************/
7984 static void lp_add_auto_services(char *str)
7986 char *s;
7987 char *p;
7988 int homes;
7989 char *saveptr;
7991 if (!str)
7992 return;
7994 s = SMB_STRDUP(str);
7995 if (!s)
7996 return;
7998 homes = lp_servicenumber(HOMES_NAME);
8000 for (p = strtok_r(s, LIST_SEP, &saveptr); p;
8001 p = strtok_r(NULL, LIST_SEP, &saveptr)) {
8002 char *home;
8004 if (lp_servicenumber(p) >= 0)
8005 continue;
8007 home = get_user_home_dir(talloc_tos(), p);
8009 if (home && home[0] && homes >= 0)
8010 lp_add_home(p, homes, p, home);
8012 TALLOC_FREE(home);
8014 SAFE_FREE(s);
8017 /***************************************************************************
8018 Auto-load one printer.
8019 ***************************************************************************/
8021 void lp_add_one_printer(const char *name, const char *comment,
8022 const char *location, void *pdata)
8024 int printers = lp_servicenumber(PRINTERS_NAME);
8025 int i;
8027 if (lp_servicenumber(name) < 0) {
8028 lp_add_printer(name, printers);
8029 if ((i = lp_servicenumber(name)) >= 0) {
8030 string_set(&ServicePtrs[i]->comment, comment);
8031 ServicePtrs[i]->autoloaded = true;
8036 /***************************************************************************
8037 Have we loaded a services file yet?
8038 ***************************************************************************/
8040 bool lp_loaded(void)
8042 return (bLoaded);
8045 /***************************************************************************
8046 Unload unused services.
8047 ***************************************************************************/
8049 void lp_killunused(struct smbd_server_connection *sconn,
8050 bool (*snumused) (struct smbd_server_connection *, int))
8052 int i;
8053 for (i = 0; i < iNumServices; i++) {
8054 if (!VALID(i))
8055 continue;
8057 /* don't kill autoloaded or usershare services */
8058 if ( ServicePtrs[i]->autoloaded ||
8059 ServicePtrs[i]->usershare == USERSHARE_VALID) {
8060 continue;
8063 if (!snumused || !snumused(sconn, i)) {
8064 free_service_byindex(i);
8070 * Kill all except autoloaded and usershare services - convenience wrapper
8072 void lp_kill_all_services(void)
8074 lp_killunused(NULL, NULL);
8077 /***************************************************************************
8078 Unload a service.
8079 ***************************************************************************/
8081 void lp_killservice(int iServiceIn)
8083 if (VALID(iServiceIn)) {
8084 free_service_byindex(iServiceIn);
8088 /***************************************************************************
8089 Save the curent values of all global and sDefault parameters into the
8090 defaults union. This allows swat and testparm to show only the
8091 changed (ie. non-default) parameters.
8092 ***************************************************************************/
8094 static void lp_save_defaults(void)
8096 int i;
8097 for (i = 0; parm_table[i].label; i++) {
8098 if (i > 0 && parm_table[i].offset == parm_table[i - 1].offset
8099 && parm_table[i].p_class == parm_table[i - 1].p_class)
8100 continue;
8101 switch (parm_table[i].type) {
8102 case P_LIST:
8103 parm_table[i].def.lvalue = str_list_copy(
8104 NULL, *(const char ***)lp_parm_ptr(NULL, &parm_table[i]));
8105 break;
8106 case P_STRING:
8107 case P_USTRING:
8108 parm_table[i].def.svalue = SMB_STRDUP(*(char **)lp_parm_ptr(NULL, &parm_table[i]));
8109 break;
8110 case P_BOOL:
8111 case P_BOOLREV:
8112 parm_table[i].def.bvalue =
8113 *(bool *)lp_parm_ptr(NULL, &parm_table[i]);
8114 break;
8115 case P_CHAR:
8116 parm_table[i].def.cvalue =
8117 *(char *)lp_parm_ptr(NULL, &parm_table[i]);
8118 break;
8119 case P_INTEGER:
8120 case P_OCTAL:
8121 case P_ENUM:
8122 parm_table[i].def.ivalue =
8123 *(int *)lp_parm_ptr(NULL, &parm_table[i]);
8124 break;
8125 case P_SEP:
8126 break;
8129 defaults_saved = true;
8132 /***********************************************************
8133 If we should send plaintext/LANMAN passwords in the clinet
8134 ************************************************************/
8136 static void set_allowed_client_auth(void)
8138 if (Globals.bClientNTLMv2Auth) {
8139 Globals.bClientLanManAuth = false;
8141 if (!Globals.bClientLanManAuth) {
8142 Globals.bClientPlaintextAuth = false;
8146 /***************************************************************************
8147 JRA.
8148 The following code allows smbd to read a user defined share file.
8149 Yes, this is my intent. Yes, I'm comfortable with that...
8151 THE FOLLOWING IS SECURITY CRITICAL CODE.
8153 It washes your clothes, it cleans your house, it guards you while you sleep...
8154 Do not f%^k with it....
8155 ***************************************************************************/
8157 #define MAX_USERSHARE_FILE_SIZE (10*1024)
8159 /***************************************************************************
8160 Check allowed stat state of a usershare file.
8161 Ensure we print out who is dicking with us so the admin can
8162 get their sorry ass fired.
8163 ***************************************************************************/
8165 static bool check_usershare_stat(const char *fname,
8166 const SMB_STRUCT_STAT *psbuf)
8168 if (!S_ISREG(psbuf->st_ex_mode)) {
8169 DEBUG(0,("check_usershare_stat: file %s owned by uid %u is "
8170 "not a regular file\n",
8171 fname, (unsigned int)psbuf->st_ex_uid ));
8172 return false;
8175 /* Ensure this doesn't have the other write bit set. */
8176 if (psbuf->st_ex_mode & S_IWOTH) {
8177 DEBUG(0,("check_usershare_stat: file %s owned by uid %u allows "
8178 "public write. Refusing to allow as a usershare file.\n",
8179 fname, (unsigned int)psbuf->st_ex_uid ));
8180 return false;
8183 /* Should be 10k or less. */
8184 if (psbuf->st_ex_size > MAX_USERSHARE_FILE_SIZE) {
8185 DEBUG(0,("check_usershare_stat: file %s owned by uid %u is "
8186 "too large (%u) to be a user share file.\n",
8187 fname, (unsigned int)psbuf->st_ex_uid,
8188 (unsigned int)psbuf->st_ex_size ));
8189 return false;
8192 return true;
8195 /***************************************************************************
8196 Parse the contents of a usershare file.
8197 ***************************************************************************/
8199 enum usershare_err parse_usershare_file(TALLOC_CTX *ctx,
8200 SMB_STRUCT_STAT *psbuf,
8201 const char *servicename,
8202 int snum,
8203 char **lines,
8204 int numlines,
8205 char **pp_sharepath,
8206 char **pp_comment,
8207 char **pp_cp_servicename,
8208 struct security_descriptor **ppsd,
8209 bool *pallow_guest)
8211 const char **prefixallowlist = lp_usershare_prefix_allow_list();
8212 const char **prefixdenylist = lp_usershare_prefix_deny_list();
8213 int us_vers;
8214 SMB_STRUCT_DIR *dp;
8215 SMB_STRUCT_STAT sbuf;
8216 char *sharepath = NULL;
8217 char *comment = NULL;
8219 *pp_sharepath = NULL;
8220 *pp_comment = NULL;
8222 *pallow_guest = false;
8224 if (numlines < 4) {
8225 return USERSHARE_MALFORMED_FILE;
8228 if (strcmp(lines[0], "#VERSION 1") == 0) {
8229 us_vers = 1;
8230 } else if (strcmp(lines[0], "#VERSION 2") == 0) {
8231 us_vers = 2;
8232 if (numlines < 5) {
8233 return USERSHARE_MALFORMED_FILE;
8235 } else {
8236 return USERSHARE_BAD_VERSION;
8239 if (strncmp(lines[1], "path=", 5) != 0) {
8240 return USERSHARE_MALFORMED_PATH;
8243 sharepath = talloc_strdup(ctx, &lines[1][5]);
8244 if (!sharepath) {
8245 return USERSHARE_POSIX_ERR;
8247 trim_string(sharepath, " ", " ");
8249 if (strncmp(lines[2], "comment=", 8) != 0) {
8250 return USERSHARE_MALFORMED_COMMENT_DEF;
8253 comment = talloc_strdup(ctx, &lines[2][8]);
8254 if (!comment) {
8255 return USERSHARE_POSIX_ERR;
8257 trim_string(comment, " ", " ");
8258 trim_char(comment, '"', '"');
8260 if (strncmp(lines[3], "usershare_acl=", 14) != 0) {
8261 return USERSHARE_MALFORMED_ACL_DEF;
8264 if (!parse_usershare_acl(ctx, &lines[3][14], ppsd)) {
8265 return USERSHARE_ACL_ERR;
8268 if (us_vers == 2) {
8269 if (strncmp(lines[4], "guest_ok=", 9) != 0) {
8270 return USERSHARE_MALFORMED_ACL_DEF;
8272 if (lines[4][9] == 'y') {
8273 *pallow_guest = true;
8276 /* Backwards compatible extension to file version #2. */
8277 if (numlines > 5) {
8278 if (strncmp(lines[5], "sharename=", 10) != 0) {
8279 return USERSHARE_MALFORMED_SHARENAME_DEF;
8281 if (!strequal(&lines[5][10], servicename)) {
8282 return USERSHARE_BAD_SHARENAME;
8284 *pp_cp_servicename = talloc_strdup(ctx, &lines[5][10]);
8285 if (!*pp_cp_servicename) {
8286 return USERSHARE_POSIX_ERR;
8291 if (*pp_cp_servicename == NULL) {
8292 *pp_cp_servicename = talloc_strdup(ctx, servicename);
8293 if (!*pp_cp_servicename) {
8294 return USERSHARE_POSIX_ERR;
8298 if (snum != -1 && (strcmp(sharepath, ServicePtrs[snum]->szPath) == 0)) {
8299 /* Path didn't change, no checks needed. */
8300 *pp_sharepath = sharepath;
8301 *pp_comment = comment;
8302 return USERSHARE_OK;
8305 /* The path *must* be absolute. */
8306 if (sharepath[0] != '/') {
8307 DEBUG(2,("parse_usershare_file: share %s: path %s is not an absolute path.\n",
8308 servicename, sharepath));
8309 return USERSHARE_PATH_NOT_ABSOLUTE;
8312 /* If there is a usershare prefix deny list ensure one of these paths
8313 doesn't match the start of the user given path. */
8314 if (prefixdenylist) {
8315 int i;
8316 for ( i=0; prefixdenylist[i]; i++ ) {
8317 DEBUG(10,("parse_usershare_file: share %s : checking prefixdenylist[%d]='%s' against %s\n",
8318 servicename, i, prefixdenylist[i], sharepath ));
8319 if (memcmp( sharepath, prefixdenylist[i], strlen(prefixdenylist[i])) == 0) {
8320 DEBUG(2,("parse_usershare_file: share %s path %s starts with one of the "
8321 "usershare prefix deny list entries.\n",
8322 servicename, sharepath));
8323 return USERSHARE_PATH_IS_DENIED;
8328 /* If there is a usershare prefix allow list ensure one of these paths
8329 does match the start of the user given path. */
8331 if (prefixallowlist) {
8332 int i;
8333 for ( i=0; prefixallowlist[i]; i++ ) {
8334 DEBUG(10,("parse_usershare_file: share %s checking prefixallowlist[%d]='%s' against %s\n",
8335 servicename, i, prefixallowlist[i], sharepath ));
8336 if (memcmp( sharepath, prefixallowlist[i], strlen(prefixallowlist[i])) == 0) {
8337 break;
8340 if (prefixallowlist[i] == NULL) {
8341 DEBUG(2,("parse_usershare_file: share %s path %s doesn't start with one of the "
8342 "usershare prefix allow list entries.\n",
8343 servicename, sharepath));
8344 return USERSHARE_PATH_NOT_ALLOWED;
8348 /* Ensure this is pointing to a directory. */
8349 dp = sys_opendir(sharepath);
8351 if (!dp) {
8352 DEBUG(2,("parse_usershare_file: share %s path %s is not a directory.\n",
8353 servicename, sharepath));
8354 return USERSHARE_PATH_NOT_DIRECTORY;
8357 /* Ensure the owner of the usershare file has permission to share
8358 this directory. */
8360 if (sys_stat(sharepath, &sbuf, false) == -1) {
8361 DEBUG(2,("parse_usershare_file: share %s : stat failed on path %s. %s\n",
8362 servicename, sharepath, strerror(errno) ));
8363 sys_closedir(dp);
8364 return USERSHARE_POSIX_ERR;
8367 sys_closedir(dp);
8369 if (!S_ISDIR(sbuf.st_ex_mode)) {
8370 DEBUG(2,("parse_usershare_file: share %s path %s is not a directory.\n",
8371 servicename, sharepath ));
8372 return USERSHARE_PATH_NOT_DIRECTORY;
8375 /* Check if sharing is restricted to owner-only. */
8376 /* psbuf is the stat of the usershare definition file,
8377 sbuf is the stat of the target directory to be shared. */
8379 if (lp_usershare_owner_only()) {
8380 /* root can share anything. */
8381 if ((psbuf->st_ex_uid != 0) && (sbuf.st_ex_uid != psbuf->st_ex_uid)) {
8382 return USERSHARE_PATH_NOT_ALLOWED;
8386 *pp_sharepath = sharepath;
8387 *pp_comment = comment;
8388 return USERSHARE_OK;
8391 /***************************************************************************
8392 Deal with a usershare file.
8393 Returns:
8394 >= 0 - snum
8395 -1 - Bad name, invalid contents.
8396 - service name already existed and not a usershare, problem
8397 with permissions to share directory etc.
8398 ***************************************************************************/
8400 static int process_usershare_file(const char *dir_name, const char *file_name, int snum_template)
8402 SMB_STRUCT_STAT sbuf;
8403 SMB_STRUCT_STAT lsbuf;
8404 char *fname = NULL;
8405 char *sharepath = NULL;
8406 char *comment = NULL;
8407 char *cp_service_name = NULL;
8408 char **lines = NULL;
8409 int numlines = 0;
8410 int fd = -1;
8411 int iService = -1;
8412 TALLOC_CTX *ctx = talloc_stackframe();
8413 struct security_descriptor *psd = NULL;
8414 bool guest_ok = false;
8415 char *canon_name = NULL;
8416 bool added_service = false;
8417 int ret = -1;
8419 /* Ensure share name doesn't contain invalid characters. */
8420 if (!validate_net_name(file_name, INVALID_SHARENAME_CHARS, strlen(file_name))) {
8421 DEBUG(0,("process_usershare_file: share name %s contains "
8422 "invalid characters (any of %s)\n",
8423 file_name, INVALID_SHARENAME_CHARS ));
8424 goto out;
8427 canon_name = canonicalize_servicename(ctx, file_name);
8428 if (!canon_name) {
8429 goto out;
8432 fname = talloc_asprintf(ctx, "%s/%s", dir_name, file_name);
8433 if (!fname) {
8434 goto out;
8437 /* Minimize the race condition by doing an lstat before we
8438 open and fstat. Ensure this isn't a symlink link. */
8440 if (sys_lstat(fname, &lsbuf, false) != 0) {
8441 DEBUG(0,("process_usershare_file: stat of %s failed. %s\n",
8442 fname, strerror(errno) ));
8443 goto out;
8446 /* This must be a regular file, not a symlink, directory or
8447 other strange filetype. */
8448 if (!check_usershare_stat(fname, &lsbuf)) {
8449 goto out;
8453 TDB_DATA data = dbwrap_fetch_bystring(
8454 ServiceHash, canon_name, canon_name);
8456 iService = -1;
8458 if ((data.dptr != NULL) && (data.dsize == sizeof(iService))) {
8459 iService = *(int *)data.dptr;
8463 if (iService != -1 &&
8464 timespec_compare(&ServicePtrs[iService]->usershare_last_mod,
8465 &lsbuf.st_ex_mtime) == 0) {
8466 /* Nothing changed - Mark valid and return. */
8467 DEBUG(10,("process_usershare_file: service %s not changed.\n",
8468 canon_name ));
8469 ServicePtrs[iService]->usershare = USERSHARE_VALID;
8470 ret = iService;
8471 goto out;
8474 /* Try and open the file read only - no symlinks allowed. */
8475 #ifdef O_NOFOLLOW
8476 fd = sys_open(fname, O_RDONLY|O_NOFOLLOW, 0);
8477 #else
8478 fd = sys_open(fname, O_RDONLY, 0);
8479 #endif
8481 if (fd == -1) {
8482 DEBUG(0,("process_usershare_file: unable to open %s. %s\n",
8483 fname, strerror(errno) ));
8484 goto out;
8487 /* Now fstat to be *SURE* it's a regular file. */
8488 if (sys_fstat(fd, &sbuf, false) != 0) {
8489 close(fd);
8490 DEBUG(0,("process_usershare_file: fstat of %s failed. %s\n",
8491 fname, strerror(errno) ));
8492 goto out;
8495 /* Is it the same dev/inode as was lstated ? */
8496 if (lsbuf.st_ex_dev != sbuf.st_ex_dev || lsbuf.st_ex_ino != sbuf.st_ex_ino) {
8497 close(fd);
8498 DEBUG(0,("process_usershare_file: fstat of %s is a different file from lstat. "
8499 "Symlink spoofing going on ?\n", fname ));
8500 goto out;
8503 /* This must be a regular file, not a symlink, directory or
8504 other strange filetype. */
8505 if (!check_usershare_stat(fname, &sbuf)) {
8506 goto out;
8509 lines = fd_lines_load(fd, &numlines, MAX_USERSHARE_FILE_SIZE, NULL);
8511 close(fd);
8512 if (lines == NULL) {
8513 DEBUG(0,("process_usershare_file: loading file %s owned by %u failed.\n",
8514 fname, (unsigned int)sbuf.st_ex_uid ));
8515 goto out;
8518 if (parse_usershare_file(ctx, &sbuf, file_name,
8519 iService, lines, numlines, &sharepath,
8520 &comment, &cp_service_name,
8521 &psd, &guest_ok) != USERSHARE_OK) {
8522 goto out;
8525 /* Everything ok - add the service possibly using a template. */
8526 if (iService < 0) {
8527 const struct loadparm_service *sp = &sDefault;
8528 if (snum_template != -1) {
8529 sp = ServicePtrs[snum_template];
8532 if ((iService = add_a_service(sp, cp_service_name)) < 0) {
8533 DEBUG(0, ("process_usershare_file: Failed to add "
8534 "new service %s\n", cp_service_name));
8535 goto out;
8538 added_service = true;
8540 /* Read only is controlled by usershare ACL below. */
8541 ServicePtrs[iService]->bRead_only = false;
8544 /* Write the ACL of the new/modified share. */
8545 if (!set_share_security(canon_name, psd)) {
8546 DEBUG(0, ("process_usershare_file: Failed to set share "
8547 "security for user share %s\n",
8548 canon_name ));
8549 goto out;
8552 /* If from a template it may be marked invalid. */
8553 ServicePtrs[iService]->valid = true;
8555 /* Set the service as a valid usershare. */
8556 ServicePtrs[iService]->usershare = USERSHARE_VALID;
8558 /* Set guest access. */
8559 if (lp_usershare_allow_guests()) {
8560 ServicePtrs[iService]->bGuest_ok = guest_ok;
8563 /* And note when it was loaded. */
8564 ServicePtrs[iService]->usershare_last_mod = sbuf.st_ex_mtime;
8565 string_set(&ServicePtrs[iService]->szPath, sharepath);
8566 string_set(&ServicePtrs[iService]->comment, comment);
8568 ret = iService;
8570 out:
8572 if (ret == -1 && iService != -1 && added_service) {
8573 lp_remove_service(iService);
8576 TALLOC_FREE(lines);
8577 TALLOC_FREE(ctx);
8578 return ret;
8581 /***************************************************************************
8582 Checks if a usershare entry has been modified since last load.
8583 ***************************************************************************/
8585 static bool usershare_exists(int iService, struct timespec *last_mod)
8587 SMB_STRUCT_STAT lsbuf;
8588 const char *usersharepath = Globals.szUsersharePath;
8589 char *fname;
8591 if (asprintf(&fname, "%s/%s",
8592 usersharepath,
8593 ServicePtrs[iService]->szService) < 0) {
8594 return false;
8597 if (sys_lstat(fname, &lsbuf, false) != 0) {
8598 SAFE_FREE(fname);
8599 return false;
8602 if (!S_ISREG(lsbuf.st_ex_mode)) {
8603 SAFE_FREE(fname);
8604 return false;
8607 SAFE_FREE(fname);
8608 *last_mod = lsbuf.st_ex_mtime;
8609 return true;
8612 /***************************************************************************
8613 Load a usershare service by name. Returns a valid servicenumber or -1.
8614 ***************************************************************************/
8616 int load_usershare_service(const char *servicename)
8618 SMB_STRUCT_STAT sbuf;
8619 const char *usersharepath = Globals.szUsersharePath;
8620 int max_user_shares = Globals.iUsershareMaxShares;
8621 int snum_template = -1;
8623 if (*usersharepath == 0 || max_user_shares == 0) {
8624 return -1;
8627 if (sys_stat(usersharepath, &sbuf, false) != 0) {
8628 DEBUG(0,("load_usershare_service: stat of %s failed. %s\n",
8629 usersharepath, strerror(errno) ));
8630 return -1;
8633 if (!S_ISDIR(sbuf.st_ex_mode)) {
8634 DEBUG(0,("load_usershare_service: %s is not a directory.\n",
8635 usersharepath ));
8636 return -1;
8640 * This directory must be owned by root, and have the 't' bit set.
8641 * It also must not be writable by "other".
8644 #ifdef S_ISVTX
8645 if (sbuf.st_ex_uid != 0 || !(sbuf.st_ex_mode & S_ISVTX) || (sbuf.st_ex_mode & S_IWOTH)) {
8646 #else
8647 if (sbuf.st_ex_uid != 0 || (sbuf.st_ex_mode & S_IWOTH)) {
8648 #endif
8649 DEBUG(0,("load_usershare_service: directory %s is not owned by root "
8650 "or does not have the sticky bit 't' set or is writable by anyone.\n",
8651 usersharepath ));
8652 return -1;
8655 /* Ensure the template share exists if it's set. */
8656 if (Globals.szUsershareTemplateShare[0]) {
8657 /* We can't use lp_servicenumber here as we are recommending that
8658 template shares have -valid=false set. */
8659 for (snum_template = iNumServices - 1; snum_template >= 0; snum_template--) {
8660 if (ServicePtrs[snum_template]->szService &&
8661 strequal(ServicePtrs[snum_template]->szService,
8662 Globals.szUsershareTemplateShare)) {
8663 break;
8667 if (snum_template == -1) {
8668 DEBUG(0,("load_usershare_service: usershare template share %s "
8669 "does not exist.\n",
8670 Globals.szUsershareTemplateShare ));
8671 return -1;
8675 return process_usershare_file(usersharepath, servicename, snum_template);
8678 /***************************************************************************
8679 Load all user defined shares from the user share directory.
8680 We only do this if we're enumerating the share list.
8681 This is the function that can delete usershares that have
8682 been removed.
8683 ***************************************************************************/
8685 int load_usershare_shares(struct smbd_server_connection *sconn)
8687 SMB_STRUCT_DIR *dp;
8688 SMB_STRUCT_STAT sbuf;
8689 SMB_STRUCT_DIRENT *de;
8690 int num_usershares = 0;
8691 int max_user_shares = Globals.iUsershareMaxShares;
8692 unsigned int num_dir_entries, num_bad_dir_entries, num_tmp_dir_entries;
8693 unsigned int allowed_bad_entries = ((2*max_user_shares)/10);
8694 unsigned int allowed_tmp_entries = ((2*max_user_shares)/10);
8695 int iService;
8696 int snum_template = -1;
8697 const char *usersharepath = Globals.szUsersharePath;
8698 int ret = lp_numservices();
8700 if (max_user_shares == 0 || *usersharepath == '\0') {
8701 return lp_numservices();
8704 if (sys_stat(usersharepath, &sbuf, false) != 0) {
8705 DEBUG(0,("load_usershare_shares: stat of %s failed. %s\n",
8706 usersharepath, strerror(errno) ));
8707 return ret;
8711 * This directory must be owned by root, and have the 't' bit set.
8712 * It also must not be writable by "other".
8715 #ifdef S_ISVTX
8716 if (sbuf.st_ex_uid != 0 || !(sbuf.st_ex_mode & S_ISVTX) || (sbuf.st_ex_mode & S_IWOTH)) {
8717 #else
8718 if (sbuf.st_ex_uid != 0 || (sbuf.st_ex_mode & S_IWOTH)) {
8719 #endif
8720 DEBUG(0,("load_usershare_shares: directory %s is not owned by root "
8721 "or does not have the sticky bit 't' set or is writable by anyone.\n",
8722 usersharepath ));
8723 return ret;
8726 /* Ensure the template share exists if it's set. */
8727 if (Globals.szUsershareTemplateShare[0]) {
8728 /* We can't use lp_servicenumber here as we are recommending that
8729 template shares have -valid=false set. */
8730 for (snum_template = iNumServices - 1; snum_template >= 0; snum_template--) {
8731 if (ServicePtrs[snum_template]->szService &&
8732 strequal(ServicePtrs[snum_template]->szService,
8733 Globals.szUsershareTemplateShare)) {
8734 break;
8738 if (snum_template == -1) {
8739 DEBUG(0,("load_usershare_shares: usershare template share %s "
8740 "does not exist.\n",
8741 Globals.szUsershareTemplateShare ));
8742 return ret;
8746 /* Mark all existing usershares as pending delete. */
8747 for (iService = iNumServices - 1; iService >= 0; iService--) {
8748 if (VALID(iService) && ServicePtrs[iService]->usershare) {
8749 ServicePtrs[iService]->usershare = USERSHARE_PENDING_DELETE;
8753 dp = sys_opendir(usersharepath);
8754 if (!dp) {
8755 DEBUG(0,("load_usershare_shares:: failed to open directory %s. %s\n",
8756 usersharepath, strerror(errno) ));
8757 return ret;
8760 for (num_dir_entries = 0, num_bad_dir_entries = 0, num_tmp_dir_entries = 0;
8761 (de = sys_readdir(dp));
8762 num_dir_entries++ ) {
8763 int r;
8764 const char *n = de->d_name;
8766 /* Ignore . and .. */
8767 if (*n == '.') {
8768 if ((n[1] == '\0') || (n[1] == '.' && n[2] == '\0')) {
8769 continue;
8773 if (n[0] == ':') {
8774 /* Temporary file used when creating a share. */
8775 num_tmp_dir_entries++;
8778 /* Allow 20% tmp entries. */
8779 if (num_tmp_dir_entries > allowed_tmp_entries) {
8780 DEBUG(0,("load_usershare_shares: too many temp entries (%u) "
8781 "in directory %s\n",
8782 num_tmp_dir_entries, usersharepath));
8783 break;
8786 r = process_usershare_file(usersharepath, n, snum_template);
8787 if (r == 0) {
8788 /* Update the services count. */
8789 num_usershares++;
8790 if (num_usershares >= max_user_shares) {
8791 DEBUG(0,("load_usershare_shares: max user shares reached "
8792 "on file %s in directory %s\n",
8793 n, usersharepath ));
8794 break;
8796 } else if (r == -1) {
8797 num_bad_dir_entries++;
8800 /* Allow 20% bad entries. */
8801 if (num_bad_dir_entries > allowed_bad_entries) {
8802 DEBUG(0,("load_usershare_shares: too many bad entries (%u) "
8803 "in directory %s\n",
8804 num_bad_dir_entries, usersharepath));
8805 break;
8808 /* Allow 20% bad entries. */
8809 if (num_dir_entries > max_user_shares + allowed_bad_entries) {
8810 DEBUG(0,("load_usershare_shares: too many total entries (%u) "
8811 "in directory %s\n",
8812 num_dir_entries, usersharepath));
8813 break;
8817 sys_closedir(dp);
8819 /* Sweep through and delete any non-refreshed usershares that are
8820 not currently in use. */
8821 for (iService = iNumServices - 1; iService >= 0; iService--) {
8822 if (VALID(iService) && (ServicePtrs[iService]->usershare == USERSHARE_PENDING_DELETE)) {
8823 if (conn_snum_used(sconn, iService)) {
8824 continue;
8826 /* Remove from the share ACL db. */
8827 DEBUG(10,("load_usershare_shares: Removing deleted usershare %s\n",
8828 lp_servicename(iService) ));
8829 delete_share_security(lp_servicename(iService));
8830 free_service_byindex(iService);
8834 return lp_numservices();
8837 /********************************************************
8838 Destroy global resources allocated in this file
8839 ********************************************************/
8841 void gfree_loadparm(void)
8843 int i;
8845 free_file_list();
8847 /* Free resources allocated to services */
8849 for ( i = 0; i < iNumServices; i++ ) {
8850 if ( VALID(i) ) {
8851 free_service_byindex(i);
8855 SAFE_FREE( ServicePtrs );
8856 iNumServices = 0;
8858 /* Now release all resources allocated to global
8859 parameters and the default service */
8861 free_global_parameters();
8865 /***************************************************************************
8866 Allow client apps to specify that they are a client
8867 ***************************************************************************/
8868 void lp_set_in_client(bool b)
8870 in_client = b;
8874 /***************************************************************************
8875 Determine if we're running in a client app
8876 ***************************************************************************/
8877 bool lp_is_in_client(void)
8879 return in_client;
8882 /***************************************************************************
8883 Load the services array from the services file. Return true on success,
8884 false on failure.
8885 ***************************************************************************/
8887 static bool lp_load_ex(const char *pszFname,
8888 bool global_only,
8889 bool save_defaults,
8890 bool add_ipc,
8891 bool initialize_globals,
8892 bool allow_include_registry,
8893 bool allow_registry_shares)
8895 char *n2 = NULL;
8896 bool bRetval;
8898 bRetval = false;
8900 DEBUG(3, ("lp_load_ex: refreshing parameters\n"));
8902 bInGlobalSection = true;
8903 bGlobalOnly = global_only;
8904 bAllowIncludeRegistry = allow_include_registry;
8906 init_globals(initialize_globals);
8908 free_file_list();
8910 if (save_defaults) {
8911 init_locals();
8912 lp_save_defaults();
8915 free_param_opts(&Globals.param_opt);
8917 lp_do_parameter(-1, "idmap config * : backend", Globals.szIdmapBackend);
8919 /* We get sections first, so have to start 'behind' to make up */
8920 iServiceIndex = -1;
8922 if (lp_config_backend_is_file()) {
8923 n2 = talloc_sub_basic(talloc_tos(), get_current_username(),
8924 current_user_info.domain,
8925 pszFname);
8926 if (!n2) {
8927 smb_panic("lp_load_ex: out of memory");
8930 add_to_file_list(pszFname, n2);
8932 bRetval = pm_process(n2, do_section, do_parameter, NULL);
8933 TALLOC_FREE(n2);
8935 /* finish up the last section */
8936 DEBUG(4, ("pm_process() returned %s\n", BOOLSTR(bRetval)));
8937 if (bRetval) {
8938 if (iServiceIndex >= 0) {
8939 bRetval = service_ok(iServiceIndex);
8943 if (lp_config_backend_is_registry()) {
8944 /* config backend changed to registry in config file */
8946 * We need to use this extra global variable here to
8947 * survive restart: init_globals uses this as a default
8948 * for ConfigBackend. Otherwise, init_globals would
8949 * send us into an endless loop here.
8951 config_backend = CONFIG_BACKEND_REGISTRY;
8952 /* start over */
8953 DEBUG(1, ("lp_load_ex: changing to config backend "
8954 "registry\n"));
8955 init_globals(true);
8956 lp_kill_all_services();
8957 return lp_load_ex(pszFname, global_only, save_defaults,
8958 add_ipc, initialize_globals,
8959 allow_include_registry,
8960 allow_registry_shares);
8962 } else if (lp_config_backend_is_registry()) {
8963 bRetval = process_registry_globals();
8964 } else {
8965 DEBUG(0, ("Illegal config backend given: %d\n",
8966 lp_config_backend()));
8967 bRetval = false;
8970 if (bRetval && lp_registry_shares() && allow_registry_shares) {
8971 bRetval = process_registry_shares();
8974 lp_add_auto_services(lp_auto_services());
8976 if (add_ipc) {
8977 /* When 'restrict anonymous = 2' guest connections to ipc$
8978 are denied */
8979 lp_add_ipc("IPC$", (lp_restrict_anonymous() < 2));
8980 if ( lp_enable_asu_support() ) {
8981 lp_add_ipc("ADMIN$", false);
8985 set_server_role();
8986 set_allowed_client_auth();
8988 if (lp_security() == SEC_SHARE) {
8989 DEBUG(1, ("WARNING: The security=share option is deprecated\n"));
8990 } else if (lp_security() == SEC_SERVER) {
8991 DEBUG(1, ("WARNING: The security=server option is deprecated\n"));
8994 if (lp_security() == SEC_ADS && strchr(lp_passwordserver(), ':')) {
8995 DEBUG(1, ("WARNING: The optional ':port' in password server = %s is deprecated\n",
8996 lp_passwordserver()));
8999 bLoaded = true;
9001 /* Now we check bWINSsupport and set szWINSserver to 127.0.0.1 */
9002 /* if bWINSsupport is true and we are in the client */
9003 if (lp_is_in_client() && Globals.bWINSsupport) {
9004 lp_do_parameter(GLOBAL_SECTION_SNUM, "wins server", "127.0.0.1");
9007 init_iconv();
9009 fault_configure(smb_panic_s3);
9011 bAllowIncludeRegistry = true;
9013 return (bRetval);
9016 bool lp_load(const char *pszFname,
9017 bool global_only,
9018 bool save_defaults,
9019 bool add_ipc,
9020 bool initialize_globals)
9022 return lp_load_ex(pszFname,
9023 global_only,
9024 save_defaults,
9025 add_ipc,
9026 initialize_globals,
9027 true, /* allow_include_registry */
9028 false); /* allow_registry_shares*/
9031 bool lp_load_initial_only(const char *pszFname)
9033 return lp_load_ex(pszFname,
9034 true, /* global only */
9035 false, /* save_defaults */
9036 false, /* add_ipc */
9037 true, /* initialize_globals */
9038 false, /* allow_include_registry */
9039 false); /* allow_registry_shares*/
9042 bool lp_load_with_registry_shares(const char *pszFname,
9043 bool global_only,
9044 bool save_defaults,
9045 bool add_ipc,
9046 bool initialize_globals)
9048 return lp_load_ex(pszFname,
9049 global_only,
9050 save_defaults,
9051 add_ipc,
9052 initialize_globals,
9053 true, /* allow_include_registry */
9054 true); /* allow_registry_shares*/
9057 /***************************************************************************
9058 Return the max number of services.
9059 ***************************************************************************/
9061 int lp_numservices(void)
9063 return (iNumServices);
9066 /***************************************************************************
9067 Display the contents of the services array in human-readable form.
9068 ***************************************************************************/
9070 void lp_dump(FILE *f, bool show_defaults, int maxtoprint)
9072 int iService;
9074 if (show_defaults)
9075 defaults_saved = false;
9077 dump_globals(f);
9079 dump_a_service(&sDefault, f);
9081 for (iService = 0; iService < maxtoprint; iService++) {
9082 fprintf(f,"\n");
9083 lp_dump_one(f, show_defaults, iService);
9087 /***************************************************************************
9088 Display the contents of one service in human-readable form.
9089 ***************************************************************************/
9091 void lp_dump_one(FILE * f, bool show_defaults, int snum)
9093 if (VALID(snum)) {
9094 if (ServicePtrs[snum]->szService[0] == '\0')
9095 return;
9096 dump_a_service(ServicePtrs[snum], f);
9100 /***************************************************************************
9101 Return the number of the service with the given name, or -1 if it doesn't
9102 exist. Note that this is a DIFFERENT ANIMAL from the internal function
9103 getservicebyname()! This works ONLY if all services have been loaded, and
9104 does not copy the found service.
9105 ***************************************************************************/
9107 int lp_servicenumber(const char *pszServiceName)
9109 int iService;
9110 fstring serviceName;
9112 if (!pszServiceName) {
9113 return GLOBAL_SECTION_SNUM;
9116 for (iService = iNumServices - 1; iService >= 0; iService--) {
9117 if (VALID(iService) && ServicePtrs[iService]->szService) {
9119 * The substitution here is used to support %U is
9120 * service names
9122 fstrcpy(serviceName, ServicePtrs[iService]->szService);
9123 standard_sub_basic(get_current_username(),
9124 current_user_info.domain,
9125 serviceName,sizeof(serviceName));
9126 if (strequal(serviceName, pszServiceName)) {
9127 break;
9132 if (iService >= 0 && ServicePtrs[iService]->usershare == USERSHARE_VALID) {
9133 struct timespec last_mod;
9135 if (!usershare_exists(iService, &last_mod)) {
9136 /* Remove the share security tdb entry for it. */
9137 delete_share_security(lp_servicename(iService));
9138 /* Remove it from the array. */
9139 free_service_byindex(iService);
9140 /* Doesn't exist anymore. */
9141 return GLOBAL_SECTION_SNUM;
9144 /* Has it been modified ? If so delete and reload. */
9145 if (timespec_compare(&ServicePtrs[iService]->usershare_last_mod,
9146 &last_mod) < 0) {
9147 /* Remove it from the array. */
9148 free_service_byindex(iService);
9149 /* and now reload it. */
9150 iService = load_usershare_service(pszServiceName);
9154 if (iService < 0) {
9155 DEBUG(7,("lp_servicenumber: couldn't find %s\n", pszServiceName));
9156 return GLOBAL_SECTION_SNUM;
9159 return (iService);
9162 bool share_defined(const char *service_name)
9164 return (lp_servicenumber(service_name) != -1);
9167 /*******************************************************************
9168 A useful volume label function.
9169 ********************************************************************/
9171 const char *volume_label(int snum)
9173 char *ret;
9174 const char *label = lp_volume(snum);
9175 if (!*label) {
9176 label = lp_servicename(snum);
9179 /* This returns a 33 byte guarenteed null terminated string. */
9180 ret = talloc_strndup(talloc_tos(), label, 32);
9181 if (!ret) {
9182 return "";
9184 return ret;
9187 /*******************************************************************
9188 Get the default server type we will announce as via nmbd.
9189 ********************************************************************/
9191 int lp_default_server_announce(void)
9193 int default_server_announce = 0;
9194 default_server_announce |= SV_TYPE_WORKSTATION;
9195 default_server_announce |= SV_TYPE_SERVER;
9196 default_server_announce |= SV_TYPE_SERVER_UNIX;
9198 /* note that the flag should be set only if we have a
9199 printer service but nmbd doesn't actually load the
9200 services so we can't tell --jerry */
9202 default_server_announce |= SV_TYPE_PRINTQ_SERVER;
9204 default_server_announce |= SV_TYPE_SERVER_NT;
9205 default_server_announce |= SV_TYPE_NT;
9207 switch (lp_server_role()) {
9208 case ROLE_DOMAIN_MEMBER:
9209 default_server_announce |= SV_TYPE_DOMAIN_MEMBER;
9210 break;
9211 case ROLE_DOMAIN_PDC:
9212 default_server_announce |= SV_TYPE_DOMAIN_CTRL;
9213 break;
9214 case ROLE_DOMAIN_BDC:
9215 default_server_announce |= SV_TYPE_DOMAIN_BAKCTRL;
9216 break;
9217 case ROLE_STANDALONE:
9218 default:
9219 break;
9221 if (lp_time_server())
9222 default_server_announce |= SV_TYPE_TIME_SOURCE;
9224 if (lp_host_msdfs())
9225 default_server_announce |= SV_TYPE_DFS_SERVER;
9227 return default_server_announce;
9230 /***********************************************************
9231 If we are PDC then prefer us as DMB
9232 ************************************************************/
9234 bool lp_domain_master(void)
9236 if (Globals.iDomainMaster == Auto)
9237 return (lp_server_role() == ROLE_DOMAIN_PDC);
9239 return (bool)Globals.iDomainMaster;
9242 /***********************************************************
9243 If we are PDC then prefer us as DMB
9244 ************************************************************/
9246 bool lp_domain_master_true_or_auto(void)
9248 if (Globals.iDomainMaster) /* auto or yes */
9249 return true;
9251 return false;
9254 /***********************************************************
9255 If we are DMB then prefer us as LMB
9256 ************************************************************/
9258 bool lp_preferred_master(void)
9260 if (Globals.iPreferredMaster == Auto)
9261 return (lp_local_master() && lp_domain_master());
9263 return (bool)Globals.iPreferredMaster;
9266 /*******************************************************************
9267 Remove a service.
9268 ********************************************************************/
9270 void lp_remove_service(int snum)
9272 ServicePtrs[snum]->valid = false;
9273 invalid_services[num_invalid_services++] = snum;
9276 /*******************************************************************
9277 Copy a service.
9278 ********************************************************************/
9280 void lp_copy_service(int snum, const char *new_name)
9282 do_section(new_name, NULL);
9283 if (snum >= 0) {
9284 snum = lp_servicenumber(new_name);
9285 if (snum >= 0)
9286 lp_do_parameter(snum, "copy", lp_servicename(snum));
9291 /***********************************************************
9292 Set the global name resolution order (used in smbclient).
9293 ************************************************************/
9295 void lp_set_name_resolve_order(const char *new_order)
9297 string_set(&Globals.szNameResolveOrder, new_order);
9300 const char *lp_printername(int snum)
9302 const char *ret = lp__printername(snum);
9303 if (ret == NULL || (ret != NULL && *ret == '\0'))
9304 ret = lp_const_servicename(snum);
9306 return ret;
9310 /***********************************************************
9311 Allow daemons such as winbindd to fix their logfile name.
9312 ************************************************************/
9314 void lp_set_logfile(const char *name)
9316 string_set(&Globals.szLogFile, name);
9317 debug_set_logfile(name);
9320 /*******************************************************************
9321 Return the max print jobs per queue.
9322 ********************************************************************/
9324 int lp_maxprintjobs(int snum)
9326 int maxjobs = LP_SNUM_OK(snum) ? ServicePtrs[snum]->iMaxPrintJobs : sDefault.iMaxPrintJobs;
9327 if (maxjobs <= 0 || maxjobs >= PRINT_MAX_JOBID)
9328 maxjobs = PRINT_MAX_JOBID - 1;
9330 return maxjobs;
9333 const char *lp_printcapname(void)
9335 if ((Globals.szPrintcapname != NULL) &&
9336 (Globals.szPrintcapname[0] != '\0'))
9337 return Globals.szPrintcapname;
9339 if (sDefault.iPrinting == PRINT_CUPS) {
9340 #ifdef HAVE_CUPS
9341 return "cups";
9342 #else
9343 return "lpstat";
9344 #endif
9347 if (sDefault.iPrinting == PRINT_BSD)
9348 return "/etc/printcap";
9350 return PRINTCAP_NAME;
9353 static uint32 spoolss_state;
9355 bool lp_disable_spoolss( void )
9357 if ( spoolss_state == SVCCTL_STATE_UNKNOWN )
9358 spoolss_state = _lp_disable_spoolss() ? SVCCTL_STOPPED : SVCCTL_RUNNING;
9360 return spoolss_state == SVCCTL_STOPPED ? true : false;
9363 void lp_set_spoolss_state( uint32 state )
9365 SMB_ASSERT( (state == SVCCTL_STOPPED) || (state == SVCCTL_RUNNING) );
9367 spoolss_state = state;
9370 uint32 lp_get_spoolss_state( void )
9372 return lp_disable_spoolss() ? SVCCTL_STOPPED : SVCCTL_RUNNING;
9375 /*******************************************************************
9376 Ensure we don't use sendfile if server smb signing is active.
9377 ********************************************************************/
9379 bool lp_use_sendfile(int snum, struct smb_signing_state *signing_state)
9381 bool sign_active = false;
9383 /* Using sendfile blows the brains out of any DOS or Win9x TCP stack... JRA. */
9384 if (get_Protocol() < PROTOCOL_NT1) {
9385 return false;
9387 if (signing_state) {
9388 sign_active = smb_signing_is_active(signing_state);
9390 return (lp__use_sendfile(snum) &&
9391 (get_remote_arch() != RA_WIN95) &&
9392 !sign_active);
9395 /*******************************************************************
9396 Turn off sendfile if we find the underlying OS doesn't support it.
9397 ********************************************************************/
9399 void set_use_sendfile(int snum, bool val)
9401 if (LP_SNUM_OK(snum))
9402 ServicePtrs[snum]->bUseSendfile = val;
9403 else
9404 sDefault.bUseSendfile = val;
9407 /*******************************************************************
9408 Turn off storing DOS attributes if this share doesn't support it.
9409 ********************************************************************/
9411 void set_store_dos_attributes(int snum, bool val)
9413 if (!LP_SNUM_OK(snum))
9414 return;
9415 ServicePtrs[(snum)]->bStoreDosAttributes = val;
9418 void lp_set_mangling_method(const char *new_method)
9420 string_set(&Globals.szManglingMethod, new_method);
9423 /*******************************************************************
9424 Global state for POSIX pathname processing.
9425 ********************************************************************/
9427 static bool posix_pathnames;
9429 bool lp_posix_pathnames(void)
9431 return posix_pathnames;
9434 /*******************************************************************
9435 Change everything needed to ensure POSIX pathname processing (currently
9436 not much).
9437 ********************************************************************/
9439 void lp_set_posix_pathnames(void)
9441 posix_pathnames = true;
9444 /*******************************************************************
9445 Global state for POSIX lock processing - CIFS unix extensions.
9446 ********************************************************************/
9448 bool posix_default_lock_was_set;
9449 static enum brl_flavour posix_cifsx_locktype; /* By default 0 == WINDOWS_LOCK */
9451 enum brl_flavour lp_posix_cifsu_locktype(files_struct *fsp)
9453 if (posix_default_lock_was_set) {
9454 return posix_cifsx_locktype;
9455 } else {
9456 return fsp->posix_open ? POSIX_LOCK : WINDOWS_LOCK;
9460 /*******************************************************************
9461 ********************************************************************/
9463 void lp_set_posix_default_cifsx_readwrite_locktype(enum brl_flavour val)
9465 posix_default_lock_was_set = true;
9466 posix_cifsx_locktype = val;
9469 int lp_min_receive_file_size(void)
9471 if (Globals.iminreceivefile < 0) {
9472 return 0;
9474 return MIN(Globals.iminreceivefile, BUFFER_SIZE);
9477 /*******************************************************************
9478 If socket address is an empty character string, it is necessary to
9479 define it as "0.0.0.0".
9480 ********************************************************************/
9482 const char *lp_socket_address(void)
9484 char *sock_addr = Globals.szSocketAddress;
9486 if (sock_addr[0] == '\0'){
9487 string_set(&Globals.szSocketAddress, "0.0.0.0");
9489 return Globals.szSocketAddress;
9492 /*******************************************************************
9493 Safe wide links checks.
9494 This helper function always verify the validity of wide links,
9495 even after a configuration file reload.
9496 ********************************************************************/
9498 static bool lp_widelinks_internal(int snum)
9500 return (bool)(LP_SNUM_OK(snum)? ServicePtrs[(snum)]->bWidelinks :
9501 sDefault.bWidelinks);
9504 void widelinks_warning(int snum)
9506 if (lp_unix_extensions() && lp_widelinks_internal(snum)) {
9507 DEBUG(0,("Share '%s' has wide links and unix extensions enabled. "
9508 "These parameters are incompatible. "
9509 "Wide links will be disabled for this share.\n",
9510 lp_servicename(snum) ));
9514 bool lp_widelinks(int snum)
9516 /* wide links is always incompatible with unix extensions */
9517 if (lp_unix_extensions()) {
9518 return false;
9521 return lp_widelinks_internal(snum);
9524 bool lp_writeraw(void)
9526 if (lp_async_smb_echo_handler()) {
9527 return false;
9529 return _lp_writeraw();
9532 bool lp_readraw(void)
9534 if (lp_async_smb_echo_handler()) {
9535 return false;
9537 return _lp_readraw();