r14530: removing unused 'winbind max idle children' parameter
[Samba.git] / source / param / loadparm.c
blob7b831d1e98db7c148a759d6748a5157bd1092cbe
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
13 This program is free software; you can redistribute it and/or modify
14 it under the terms of the GNU General Public License as published by
15 the Free Software Foundation; either version 2 of the License, or
16 (at your option) any later version.
18 This program is distributed in the hope that it will be useful,
19 but WITHOUT ANY WARRANTY; without even the implied warranty of
20 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 GNU General Public License for more details.
23 You should have received a copy of the GNU General Public License
24 along with this program; if not, write to the Free Software
25 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
29 * Load parameters.
31 * This module provides suitable callback functions for the params
32 * module. It builds the internal table of service details which is
33 * then used by the rest of the server.
35 * To add a parameter:
37 * 1) add it to the global or service structure definition
38 * 2) add it to the parm_table
39 * 3) add it to the list of available functions (eg: using FN_GLOBAL_STRING())
40 * 4) If it's a global then initialise it in init_globals. If a local
41 * (ie. service) parameter then initialise it in the sDefault structure
44 * Notes:
45 * The configuration file is processed sequentially for speed. It is NOT
46 * accessed randomly as happens in 'real' Windows. For this reason, there
47 * is a fair bit of sequence-dependent code here - ie., code which assumes
48 * that certain things happen before others. In particular, the code which
49 * happens at the boundary between sections is delicately poised, so be
50 * careful!
54 #include "includes.h"
56 BOOL in_client = False; /* Not in the client by default */
57 BOOL in_server = False; /* Not in the server by default */
58 BOOL bLoaded = False;
60 extern userdom_struct current_user_info;
61 extern pstring user_socket_options;
62 extern enum protocol_types Protocol;
64 #ifndef GLOBAL_NAME
65 #define GLOBAL_NAME "global"
66 #endif
68 #ifndef PRINTERS_NAME
69 #define PRINTERS_NAME "printers"
70 #endif
72 #ifndef HOMES_NAME
73 #define HOMES_NAME "homes"
74 #endif
76 /* some helpful bits */
77 #define LP_SNUM_OK(i) (((i) >= 0) && ((i) < iNumServices) && (ServicePtrs != NULL) && ServicePtrs[(i)]->valid)
78 #define VALID(i) (ServicePtrs != NULL && ServicePtrs[i]->valid)
80 #define USERSHARE_VALID 1
81 #define USERSHARE_PENDING_DELETE 2
83 int keepalive = DEFAULT_KEEPALIVE;
84 BOOL use_getwd_cache = True;
86 extern int extra_time_offset;
88 static BOOL defaults_saved = False;
90 typedef struct _param_opt_struct param_opt_struct;
91 struct _param_opt_struct {
92 param_opt_struct *prev, *next;
93 char *key;
94 char *value;
95 char **list;
98 /*
99 * This structure describes global (ie., server-wide) parameters.
101 typedef struct {
102 char *smb_ports;
103 char *dos_charset;
104 char *unix_charset;
105 char *display_charset;
106 char *szPrintcapname;
107 char *szAddPortCommand;
108 char *szEnumPortsCommand;
109 char *szAddPrinterCommand;
110 char *szDeletePrinterCommand;
111 char *szOs2DriverMap;
112 char *szLockDir;
113 char *szPidDir;
114 char *szRootdir;
115 char *szDefaultService;
116 char *szGetQuota;
117 char *szSetQuota;
118 char *szMsgCommand;
119 char *szHostsEquiv;
120 char *szServerString;
121 char *szAutoServices;
122 char *szPasswdProgram;
123 char *szPasswdChat;
124 char *szLogFile;
125 char *szConfigFile;
126 char *szSMBPasswdFile;
127 char *szPrivateDir;
128 char *szPassdbBackend;
129 char **szPreloadModules;
130 char *szPasswordServer;
131 char *szSocketOptions;
132 char *szRealm;
133 char *szAfsUsernameMap;
134 int iAfsTokenLifetime;
135 char *szLogNtTokenCommand;
136 char *szUsernameMap;
137 char *szLogonScript;
138 char *szLogonPath;
139 char *szLogonDrive;
140 char *szLogonHome;
141 char **szWINSservers;
142 char **szInterfaces;
143 char *szRemoteAnnounce;
144 char *szRemoteBrowseSync;
145 char *szSocketAddress;
146 char *szNISHomeMapName;
147 char *szAnnounceVersion; /* This is initialised in init_globals */
148 char *szWorkgroup;
149 char *szNetbiosName;
150 char **szNetbiosAliases;
151 char *szNetbiosScope;
152 char *szNameResolveOrder;
153 char *szPanicAction;
154 char *szAddUserScript;
155 char *szRenameUserScript;
156 char *szDelUserScript;
157 char *szAddGroupScript;
158 char *szDelGroupScript;
159 char *szAddUserToGroupScript;
160 char *szDelUserFromGroupScript;
161 char *szSetPrimaryGroupScript;
162 char *szAddMachineScript;
163 char *szShutdownScript;
164 char *szAbortShutdownScript;
165 char *szUsernameMapScript;
166 char *szCheckPasswordScript;
167 char *szWINSHook;
168 char *szWINSPartners;
169 char *szUtmpDir;
170 char *szWtmpDir;
171 BOOL bUtmp;
172 char *szIdmapUID;
173 char *szIdmapGID;
174 BOOL bPassdbExpandExplicit;
175 int AlgorithmicRidBase;
176 char *szTemplateHomedir;
177 char *szTemplateShell;
178 char *szWinbindSeparator;
179 BOOL bWinbindEnumUsers;
180 BOOL bWinbindEnumGroups;
181 BOOL bWinbindUseDefaultDomain;
182 BOOL bWinbindTrustedDomainsOnly;
183 BOOL bWinbindNestedGroups;
184 BOOL bWinbindRefreshTickets;
185 BOOL bWinbindOfflineLogon;
186 char **szIdmapBackend;
187 char *szAddShareCommand;
188 char *szChangeShareCommand;
189 char *szDeleteShareCommand;
190 char **szEventLogs;
191 char *szGuestaccount;
192 char *szManglingMethod;
193 char **szServicesList;
194 char *szUsersharePath;
195 char *szUsershareTemplateShare;
196 char **szUsersharePrefixAllowList;
197 char **szUsersharePrefixDenyList;
198 int mangle_prefix;
199 int max_log_size;
200 char *szLogLevel;
201 int max_xmit;
202 int max_mux;
203 int max_open_files;
204 int pwordlevel;
205 int unamelevel;
206 int deadtime;
207 int maxprotocol;
208 int minprotocol;
209 int security;
210 char **AuthMethods;
211 BOOL paranoid_server_security;
212 int maxdisksize;
213 int lpqcachetime;
214 int iMaxSmbdProcesses;
215 BOOL bDisableSpoolss;
216 int syslog;
217 int os_level;
218 int enhanced_browsing;
219 int max_ttl;
220 int max_wins_ttl;
221 int min_wins_ttl;
222 int lm_announce;
223 int lm_interval;
224 int announce_as; /* This is initialised in init_globals */
225 int machine_password_timeout;
226 int change_notify_timeout;
227 int map_to_guest;
228 int oplock_break_wait_time;
229 int winbind_cache_time;
230 int winbind_max_idle_children;
231 char **szWinbindNssInfo;
232 int iLockSpinCount;
233 int iLockSpinTime;
234 char *szLdapMachineSuffix;
235 char *szLdapUserSuffix;
236 char *szLdapIdmapSuffix;
237 char *szLdapGroupSuffix;
238 #ifdef WITH_LDAP_SAMCONFIG
239 int ldap_port;
240 char *szLdapServer;
241 #endif
242 int ldap_ssl;
243 char *szLdapSuffix;
244 char *szLdapAdminDn;
245 char *szAclCompat;
246 char *szCupsServer;
247 char *szIPrintServer;
248 int ldap_passwd_sync;
249 int ldap_replication_sleep;
250 int ldap_timeout; /* This is initialised in init_globals */
251 int ldap_page_size;
252 BOOL ldap_delete_dn;
253 BOOL bMsAddPrinterWizard;
254 BOOL bDNSproxy;
255 BOOL bWINSsupport;
256 BOOL bWINSproxy;
257 BOOL bLocalMaster;
258 BOOL bPreferredMaster;
259 BOOL bDomainMaster;
260 BOOL bDomainLogons;
261 BOOL bEncryptPasswords;
262 BOOL bUpdateEncrypt;
263 int clientSchannel;
264 int serverSchannel;
265 BOOL bNullPasswords;
266 BOOL bObeyPamRestrictions;
267 BOOL bLoadPrinters;
268 int PrintcapCacheTime;
269 BOOL bLargeReadwrite;
270 BOOL bReadRaw;
271 BOOL bWriteRaw;
272 BOOL bReadbmpx;
273 BOOL bSyslogOnly;
274 BOOL bBrowseList;
275 BOOL bNISHomeMap;
276 BOOL bTimeServer;
277 BOOL bBindInterfacesOnly;
278 BOOL bPamPasswordChange;
279 BOOL bUnixPasswdSync;
280 BOOL bPasswdChatDebug;
281 int iPasswdChatTimeout;
282 BOOL bTimestampLogs;
283 BOOL bNTSmbSupport;
284 BOOL bNTPipeSupport;
285 BOOL bNTStatusSupport;
286 BOOL bStatCache;
287 int iMaxStatCacheSize;
288 BOOL bKernelOplocks;
289 BOOL bAllowTrustedDomains;
290 BOOL bLanmanAuth;
291 BOOL bNTLMAuth;
292 BOOL bUseSpnego;
293 BOOL bClientLanManAuth;
294 BOOL bClientNTLMv2Auth;
295 BOOL bClientPlaintextAuth;
296 BOOL bClientUseSpnego;
297 BOOL bDebugHiresTimestamp;
298 BOOL bDebugPid;
299 BOOL bDebugUid;
300 BOOL bHostMSDfs;
301 BOOL bUseMmap;
302 BOOL bHostnameLookups;
303 BOOL bUnixExtensions;
304 BOOL bDisableNetbios;
305 BOOL bKernelChangeNotify;
306 BOOL bFamChangeNotify;
307 BOOL bUseKerberosKeytab;
308 BOOL bDeferSharingViolations;
309 BOOL bEnablePrivileges;
310 BOOL bASUSupport;
311 BOOL bUsershareOwnerOnly;
312 int restrict_anonymous;
313 int name_cache_timeout;
314 int client_signing;
315 int server_signing;
316 int iUsershareMaxShares;
318 BOOL bResetOnZeroVC;
319 param_opt_struct *param_opt;
320 } global;
322 static global Globals;
325 * This structure describes a single service.
327 typedef struct {
328 BOOL valid;
329 BOOL autoloaded;
330 int usershare;
331 time_t usershare_last_mod;
332 char *szService;
333 char *szPath;
334 char *szUsername;
335 char **szInvalidUsers;
336 char **szValidUsers;
337 char **szAdminUsers;
338 char *szCopy;
339 char *szInclude;
340 char *szPreExec;
341 char *szPostExec;
342 char *szRootPreExec;
343 char *szRootPostExec;
344 char *szCupsOptions;
345 char *szPrintcommand;
346 char *szLpqcommand;
347 char *szLprmcommand;
348 char *szLppausecommand;
349 char *szLpresumecommand;
350 char *szQueuepausecommand;
351 char *szQueueresumecommand;
352 char *szPrintername;
353 char *szDontdescend;
354 char **szHostsallow;
355 char **szHostsdeny;
356 char *szMagicScript;
357 char *szMagicOutput;
358 char *szMangledMap;
359 char *szVetoFiles;
360 char *szHideFiles;
361 char *szVetoOplockFiles;
362 char *comment;
363 char *force_user;
364 char *force_group;
365 char **readlist;
366 char **writelist;
367 char **printer_admin;
368 char *volume;
369 char *fstype;
370 char **szVfsObjects;
371 char *szMSDfsProxy;
372 char *szAioWriteBehind;
373 char *szDfree;
374 int iMinPrintSpace;
375 int iMaxPrintJobs;
376 int iMaxReportedPrintJobs;
377 int iWriteCacheSize;
378 int iCreate_mask;
379 int iCreate_force_mode;
380 int iSecurity_mask;
381 int iSecurity_force_mode;
382 int iDir_mask;
383 int iDir_force_mode;
384 int iDir_Security_mask;
385 int iDir_Security_force_mode;
386 int iMaxConnections;
387 int iDefaultCase;
388 int iPrinting;
389 int iOplockContentionLimit;
390 int iCSCPolicy;
391 int iBlock_size;
392 int iDfreeCacheTime;
393 BOOL bPreexecClose;
394 BOOL bRootpreexecClose;
395 int iCaseSensitive;
396 BOOL bCasePreserve;
397 BOOL bShortCasePreserve;
398 BOOL bHideDotFiles;
399 BOOL bHideSpecialFiles;
400 BOOL bHideUnReadable;
401 BOOL bHideUnWriteableFiles;
402 BOOL bBrowseable;
403 BOOL bAvailable;
404 BOOL bRead_only;
405 BOOL bNo_set_dir;
406 BOOL bGuest_only;
407 BOOL bGuest_ok;
408 BOOL bPrint_ok;
409 BOOL bMap_system;
410 BOOL bMap_hidden;
411 BOOL bMap_archive;
412 BOOL bStoreDosAttributes;
413 BOOL bLocking;
414 int iStrictLocking;
415 BOOL bPosixLocking;
416 BOOL bShareModes;
417 BOOL bOpLocks;
418 BOOL bLevel2OpLocks;
419 BOOL bOnlyUser;
420 BOOL bMangledNames;
421 BOOL bWidelinks;
422 BOOL bSymlinks;
423 BOOL bSyncAlways;
424 BOOL bStrictAllocate;
425 BOOL bStrictSync;
426 char magic_char;
427 BOOL *copymap;
428 BOOL bDeleteReadonly;
429 BOOL bFakeOplocks;
430 BOOL bDeleteVetoFiles;
431 BOOL bDosFilemode;
432 BOOL bDosFiletimes;
433 BOOL bDosFiletimeResolution;
434 BOOL bFakeDirCreateTimes;
435 BOOL bBlockingLocks;
436 BOOL bInheritPerms;
437 BOOL bInheritACLS;
438 BOOL bInheritOwner;
439 BOOL bMSDfsRoot;
440 BOOL bUseClientDriver;
441 BOOL bDefaultDevmode;
442 BOOL bForcePrintername;
443 BOOL bNTAclSupport;
444 BOOL bForceUnknownAclUser;
445 BOOL bUseSendfile;
446 BOOL bProfileAcls;
447 BOOL bMap_acl_inherit;
448 BOOL bAfs_Share;
449 BOOL bEASupport;
450 BOOL bAclCheckPermissions;
451 BOOL bAclMapFullControl;
452 BOOL bAclGroupControl;
453 int iallocation_roundup_size;
454 int iAioReadSize;
455 int iAioWriteSize;
456 int iMap_readonly;
457 param_opt_struct *param_opt;
459 char dummy[3]; /* for alignment */
460 } service;
463 /* This is a default service used to prime a services structure */
464 static service sDefault = {
465 True, /* valid */
466 False, /* not autoloaded */
467 0, /* not a usershare */
468 (time_t)0, /* No last mod time */
469 NULL, /* szService */
470 NULL, /* szPath */
471 NULL, /* szUsername */
472 NULL, /* szInvalidUsers */
473 NULL, /* szValidUsers */
474 NULL, /* szAdminUsers */
475 NULL, /* szCopy */
476 NULL, /* szInclude */
477 NULL, /* szPreExec */
478 NULL, /* szPostExec */
479 NULL, /* szRootPreExec */
480 NULL, /* szRootPostExec */
481 NULL, /* szCupsOptions */
482 NULL, /* szPrintcommand */
483 NULL, /* szLpqcommand */
484 NULL, /* szLprmcommand */
485 NULL, /* szLppausecommand */
486 NULL, /* szLpresumecommand */
487 NULL, /* szQueuepausecommand */
488 NULL, /* szQueueresumecommand */
489 NULL, /* szPrintername */
490 NULL, /* szDontdescend */
491 NULL, /* szHostsallow */
492 NULL, /* szHostsdeny */
493 NULL, /* szMagicScript */
494 NULL, /* szMagicOutput */
495 NULL, /* szMangledMap */
496 NULL, /* szVetoFiles */
497 NULL, /* szHideFiles */
498 NULL, /* szVetoOplockFiles */
499 NULL, /* comment */
500 NULL, /* force user */
501 NULL, /* force group */
502 NULL, /* readlist */
503 NULL, /* writelist */
504 NULL, /* printer admin */
505 NULL, /* volume */
506 NULL, /* fstype */
507 NULL, /* vfs objects */
508 NULL, /* szMSDfsProxy */
509 NULL, /* szAioWriteBehind */
510 NULL, /* szDfree */
511 0, /* iMinPrintSpace */
512 1000, /* iMaxPrintJobs */
513 0, /* iMaxReportedPrintJobs */
514 0, /* iWriteCacheSize */
515 0744, /* iCreate_mask */
516 0000, /* iCreate_force_mode */
517 0777, /* iSecurity_mask */
518 0, /* iSecurity_force_mode */
519 0755, /* iDir_mask */
520 0000, /* iDir_force_mode */
521 0777, /* iDir_Security_mask */
522 0, /* iDir_Security_force_mode */
523 0, /* iMaxConnections */
524 CASE_LOWER, /* iDefaultCase */
525 DEFAULT_PRINTING, /* iPrinting */
526 2, /* iOplockContentionLimit */
527 0, /* iCSCPolicy */
528 1024, /* iBlock_size */
529 0, /* iDfreeCacheTime */
530 False, /* bPreexecClose */
531 False, /* bRootpreexecClose */
532 Auto, /* case sensitive */
533 True, /* case preserve */
534 True, /* short case preserve */
535 True, /* bHideDotFiles */
536 False, /* bHideSpecialFiles */
537 False, /* bHideUnReadable */
538 False, /* bHideUnWriteableFiles */
539 True, /* bBrowseable */
540 True, /* bAvailable */
541 True, /* bRead_only */
542 True, /* bNo_set_dir */
543 False, /* bGuest_only */
544 False, /* bGuest_ok */
545 False, /* bPrint_ok */
546 False, /* bMap_system */
547 False, /* bMap_hidden */
548 True, /* bMap_archive */
549 False, /* bStoreDosAttributes */
550 True, /* bLocking */
551 True, /* iStrictLocking */
552 True, /* bPosixLocking */
553 True, /* bShareModes */
554 True, /* bOpLocks */
555 True, /* bLevel2OpLocks */
556 False, /* bOnlyUser */
557 True, /* bMangledNames */
558 True, /* bWidelinks */
559 True, /* bSymlinks */
560 False, /* bSyncAlways */
561 False, /* bStrictAllocate */
562 False, /* bStrictSync */
563 '~', /* magic char */
564 NULL, /* copymap */
565 False, /* bDeleteReadonly */
566 False, /* bFakeOplocks */
567 False, /* bDeleteVetoFiles */
568 False, /* bDosFilemode */
569 True, /* bDosFiletimes */
570 False, /* bDosFiletimeResolution */
571 False, /* bFakeDirCreateTimes */
572 True, /* bBlockingLocks */
573 False, /* bInheritPerms */
574 False, /* bInheritACLS */
575 False, /* bInheritOwner */
576 True, /* bMSDfsRoot */
577 False, /* bUseClientDriver */
578 True, /* bDefaultDevmode */
579 False, /* bForcePrintername */
580 True, /* bNTAclSupport */
581 False, /* bForceUnknownAclUser */
582 False, /* bUseSendfile */
583 False, /* bProfileAcls */
584 False, /* bMap_acl_inherit */
585 False, /* bAfs_Share */
586 False, /* bEASupport */
587 True, /* bAclCheckPermissions */
588 True, /* bAclMapFullControl */
589 False, /* bAclGroupControl */
590 SMB_ROUNDUP_ALLOCATION_SIZE, /* iallocation_roundup_size */
591 0, /* iAioReadSize */
592 0, /* iAioWriteSize */
593 MAP_READONLY_YES, /* iMap_readonly */
595 NULL, /* Parametric options */
597 "" /* dummy */
600 /* local variables */
601 static service **ServicePtrs = NULL;
602 static int iNumServices = 0;
603 static int iServiceIndex = 0;
604 static TDB_CONTEXT *ServiceHash;
605 static int *invalid_services = NULL;
606 static int num_invalid_services = 0;
607 static BOOL bInGlobalSection = True;
608 static BOOL bGlobalOnly = False;
609 static int server_role;
610 static int default_server_announce;
612 #define NUMPARAMETERS (sizeof(parm_table) / sizeof(struct parm_struct))
614 /* prototypes for the special type handlers */
615 static BOOL handle_include( int snum, const char *pszParmValue, char **ptr);
616 static BOOL handle_copy( int snum, const char *pszParmValue, char **ptr);
617 static BOOL handle_netbios_name( int snum, const char *pszParmValue, char **ptr);
618 static BOOL handle_idmap_uid( int snum, const char *pszParmValue, char **ptr);
619 static BOOL handle_idmap_gid( int snum, const char *pszParmValue, char **ptr);
620 static BOOL handle_debug_list( int snum, const char *pszParmValue, char **ptr );
621 static BOOL handle_workgroup( int snum, const char *pszParmValue, char **ptr );
622 static BOOL handle_netbios_aliases( int snum, const char *pszParmValue, char **ptr );
623 static BOOL handle_netbios_scope( int snum, const char *pszParmValue, char **ptr );
624 static BOOL handle_charset( int snum, const char *pszParmValue, char **ptr );
625 static BOOL handle_printing( int snum, const char *pszParmValue, char **ptr);
627 static void set_server_role(void);
628 static void set_default_server_announce_type(void);
629 static void set_allowed_client_auth(void);
631 static const struct enum_list enum_protocol[] = {
632 {PROTOCOL_NT1, "NT1"},
633 {PROTOCOL_LANMAN2, "LANMAN2"},
634 {PROTOCOL_LANMAN1, "LANMAN1"},
635 {PROTOCOL_CORE, "CORE"},
636 {PROTOCOL_COREPLUS, "COREPLUS"},
637 {PROTOCOL_COREPLUS, "CORE+"},
638 {-1, NULL}
641 static const struct enum_list enum_security[] = {
642 {SEC_SHARE, "SHARE"},
643 {SEC_USER, "USER"},
644 {SEC_SERVER, "SERVER"},
645 {SEC_DOMAIN, "DOMAIN"},
646 #ifdef HAVE_ADS
647 {SEC_ADS, "ADS"},
648 #endif
649 {-1, NULL}
652 static const struct enum_list enum_printing[] = {
653 {PRINT_SYSV, "sysv"},
654 {PRINT_AIX, "aix"},
655 {PRINT_HPUX, "hpux"},
656 {PRINT_BSD, "bsd"},
657 {PRINT_QNX, "qnx"},
658 {PRINT_PLP, "plp"},
659 {PRINT_LPRNG, "lprng"},
660 {PRINT_CUPS, "cups"},
661 {PRINT_IPRINT, "iprint"},
662 {PRINT_LPRNT, "nt"},
663 {PRINT_LPROS2, "os2"},
664 #ifdef DEVELOPER
665 {PRINT_TEST, "test"},
666 {PRINT_VLP, "vlp"},
667 #endif /* DEVELOPER */
668 {-1, NULL}
671 static const struct enum_list enum_ldap_ssl[] = {
672 #ifdef WITH_LDAP_SAMCONFIG
673 {LDAP_SSL_ON, "Yes"},
674 {LDAP_SSL_ON, "yes"},
675 {LDAP_SSL_ON, "on"},
676 {LDAP_SSL_ON, "On"},
677 #endif
678 {LDAP_SSL_OFF, "no"},
679 {LDAP_SSL_OFF, "No"},
680 {LDAP_SSL_OFF, "off"},
681 {LDAP_SSL_OFF, "Off"},
682 {LDAP_SSL_START_TLS, "start tls"},
683 {LDAP_SSL_START_TLS, "Start_tls"},
684 {-1, NULL}
687 static const struct enum_list enum_ldap_passwd_sync[] = {
688 {LDAP_PASSWD_SYNC_OFF, "no"},
689 {LDAP_PASSWD_SYNC_OFF, "No"},
690 {LDAP_PASSWD_SYNC_OFF, "off"},
691 {LDAP_PASSWD_SYNC_OFF, "Off"},
692 {LDAP_PASSWD_SYNC_ON, "Yes"},
693 {LDAP_PASSWD_SYNC_ON, "yes"},
694 {LDAP_PASSWD_SYNC_ON, "on"},
695 {LDAP_PASSWD_SYNC_ON, "On"},
696 {LDAP_PASSWD_SYNC_ONLY, "Only"},
697 {LDAP_PASSWD_SYNC_ONLY, "only"},
698 {-1, NULL}
701 /* Types of machine we can announce as. */
702 #define ANNOUNCE_AS_NT_SERVER 1
703 #define ANNOUNCE_AS_WIN95 2
704 #define ANNOUNCE_AS_WFW 3
705 #define ANNOUNCE_AS_NT_WORKSTATION 4
707 static const struct enum_list enum_announce_as[] = {
708 {ANNOUNCE_AS_NT_SERVER, "NT"},
709 {ANNOUNCE_AS_NT_SERVER, "NT Server"},
710 {ANNOUNCE_AS_NT_WORKSTATION, "NT Workstation"},
711 {ANNOUNCE_AS_WIN95, "win95"},
712 {ANNOUNCE_AS_WFW, "WfW"},
713 {-1, NULL}
716 static const struct enum_list enum_map_readonly[] = {
717 {MAP_READONLY_NO, "no"},
718 {MAP_READONLY_NO, "false"},
719 {MAP_READONLY_NO, "0"},
720 {MAP_READONLY_YES, "yes"},
721 {MAP_READONLY_YES, "true"},
722 {MAP_READONLY_YES, "1"},
723 {MAP_READONLY_PERMISSIONS, "permissions"},
724 {MAP_READONLY_PERMISSIONS, "perms"},
725 {-1, NULL}
728 static const struct enum_list enum_case[] = {
729 {CASE_LOWER, "lower"},
730 {CASE_UPPER, "upper"},
731 {-1, NULL}
734 static const struct enum_list enum_bool_auto[] = {
735 {False, "No"},
736 {False, "False"},
737 {False, "0"},
738 {True, "Yes"},
739 {True, "True"},
740 {True, "1"},
741 {Auto, "Auto"},
742 {-1, NULL}
745 /* Client-side offline caching policy types */
746 #define CSC_POLICY_MANUAL 0
747 #define CSC_POLICY_DOCUMENTS 1
748 #define CSC_POLICY_PROGRAMS 2
749 #define CSC_POLICY_DISABLE 3
751 static const struct enum_list enum_csc_policy[] = {
752 {CSC_POLICY_MANUAL, "manual"},
753 {CSC_POLICY_DOCUMENTS, "documents"},
754 {CSC_POLICY_PROGRAMS, "programs"},
755 {CSC_POLICY_DISABLE, "disable"},
756 {-1, NULL}
759 /* SMB signing types. */
760 static const struct enum_list enum_smb_signing_vals[] = {
761 {False, "No"},
762 {False, "False"},
763 {False, "0"},
764 {False, "Off"},
765 {False, "disabled"},
766 {True, "Yes"},
767 {True, "True"},
768 {True, "1"},
769 {True, "On"},
770 {True, "enabled"},
771 {Auto, "auto"},
772 {Required, "required"},
773 {Required, "mandatory"},
774 {Required, "force"},
775 {Required, "forced"},
776 {Required, "enforced"},
777 {-1, NULL}
780 /* ACL compatibility options. */
781 static const struct enum_list enum_acl_compat_vals[] = {
782 { ACL_COMPAT_AUTO, "auto" },
783 { ACL_COMPAT_WINNT, "winnt" },
784 { ACL_COMPAT_WIN2K, "win2k" },
785 { -1, NULL}
789 Do you want session setups at user level security with a invalid
790 password to be rejected or allowed in as guest? WinNT rejects them
791 but it can be a pain as it means "net view" needs to use a password
793 You have 3 choices in the setting of map_to_guest:
795 "Never" means session setups with an invalid password
796 are rejected. This is the default.
798 "Bad User" means session setups with an invalid password
799 are rejected, unless the username does not exist, in which case it
800 is treated as a guest login
802 "Bad Password" means session setups with an invalid password
803 are treated as a guest login
805 Note that map_to_guest only has an effect in user or server
806 level security.
809 static const struct enum_list enum_map_to_guest[] = {
810 {NEVER_MAP_TO_GUEST, "Never"},
811 {MAP_TO_GUEST_ON_BAD_USER, "Bad User"},
812 {MAP_TO_GUEST_ON_BAD_PASSWORD, "Bad Password"},
813 {MAP_TO_GUEST_ON_BAD_UID, "Bad Uid"},
814 {-1, NULL}
817 /* Note: We do not initialise the defaults union - it is not allowed in ANSI C
819 * The FLAG_HIDE is explicit. Paramters set this way do NOT appear in any edit
820 * screen in SWAT. This is used to exclude parameters as well as to squash all
821 * parameters that have been duplicated by pseudonyms.
823 * NOTE: To display a parameter in BASIC view set FLAG_BASIC
824 * Any parameter that does NOT have FLAG_ADVANCED will not disply at all
825 * Set FLAG_SHARE and FLAG_PRINT to specifically display parameters in
826 * respective views.
828 * NOTE2: Handling of duplicated (synonym) paramters:
829 * Only the first occurance of a parameter should be enabled by FLAG_BASIC
830 * and/or FLAG_ADVANCED. All duplicates following the first mention should be
831 * set to FLAG_HIDE. ie: Make you must place the parameter that has the preferred
832 * name first, and all synonyms must follow it with the FLAG_HIDE attribute.
835 static struct parm_struct parm_table[] = {
836 {N_("Base Options"), P_SEP, P_SEPARATOR},
838 {"dos charset", P_STRING, P_GLOBAL, &Globals.dos_charset, handle_charset, NULL, FLAG_ADVANCED},
839 {"unix charset", P_STRING, P_GLOBAL, &Globals.unix_charset, handle_charset, NULL, FLAG_ADVANCED},
840 {"display charset", P_STRING, P_GLOBAL, &Globals.display_charset, handle_charset, NULL, FLAG_ADVANCED},
841 {"comment", P_STRING, P_LOCAL, &sDefault.comment, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT},
842 {"path", P_STRING, P_LOCAL, &sDefault.szPath, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT},
843 {"directory", P_STRING, P_LOCAL, &sDefault.szPath, NULL, NULL, FLAG_HIDE},
844 {"workgroup", P_USTRING, P_GLOBAL, &Globals.szWorkgroup, handle_workgroup, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD},
845 #ifdef WITH_ADS
846 {"realm", P_USTRING, P_GLOBAL, &Globals.szRealm, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD},
847 #endif
848 {"netbios name", P_USTRING, P_GLOBAL, &Globals.szNetbiosName, handle_netbios_name, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD},
849 {"netbios aliases", P_LIST, P_GLOBAL, &Globals.szNetbiosAliases, handle_netbios_aliases, NULL, FLAG_ADVANCED},
850 {"netbios scope", P_USTRING, P_GLOBAL, &Globals.szNetbiosScope, handle_netbios_scope, NULL, FLAG_ADVANCED},
851 {"server string", P_STRING, P_GLOBAL, &Globals.szServerString, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED },
852 {"interfaces", P_LIST, P_GLOBAL, &Globals.szInterfaces, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD},
853 {"bind interfaces only", P_BOOL, P_GLOBAL, &Globals.bBindInterfacesOnly, NULL, NULL, FLAG_ADVANCED | FLAG_WIZARD},
855 {N_("Security Options"), P_SEP, P_SEPARATOR},
857 {"security", P_ENUM, P_GLOBAL, &Globals.security, NULL, enum_security, FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD},
858 {"auth methods", P_LIST, P_GLOBAL, &Globals.AuthMethods, NULL, NULL, FLAG_ADVANCED},
859 {"encrypt passwords", P_BOOL, P_GLOBAL, &Globals.bEncryptPasswords, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD},
860 {"update encrypted", P_BOOL, P_GLOBAL, &Globals.bUpdateEncrypt, NULL, NULL, FLAG_ADVANCED},
861 {"client schannel", P_ENUM, P_GLOBAL, &Globals.clientSchannel, NULL, enum_bool_auto, FLAG_BASIC | FLAG_ADVANCED},
862 {"server schannel", P_ENUM, P_GLOBAL, &Globals.serverSchannel, NULL, enum_bool_auto, FLAG_BASIC | FLAG_ADVANCED},
863 {"allow trusted domains", P_BOOL, P_GLOBAL, &Globals.bAllowTrustedDomains, NULL, NULL, FLAG_ADVANCED},
864 {"hosts equiv", P_STRING, P_GLOBAL, &Globals.szHostsEquiv, NULL, NULL, FLAG_ADVANCED},
865 {"map to guest", P_ENUM, P_GLOBAL, &Globals.map_to_guest, NULL, enum_map_to_guest, FLAG_ADVANCED},
866 {"null passwords", P_BOOL, P_GLOBAL, &Globals.bNullPasswords, NULL, NULL, FLAG_ADVANCED},
867 {"obey pam restrictions", P_BOOL, P_GLOBAL, &Globals.bObeyPamRestrictions, NULL, NULL, FLAG_ADVANCED},
868 {"password server", P_STRING, P_GLOBAL, &Globals.szPasswordServer, NULL, NULL, FLAG_ADVANCED | FLAG_WIZARD},
869 {"smb passwd file", P_STRING, P_GLOBAL, &Globals.szSMBPasswdFile, NULL, NULL, FLAG_ADVANCED},
870 {"private dir", P_STRING, P_GLOBAL, &Globals.szPrivateDir, NULL, NULL, FLAG_ADVANCED},
871 {"passdb backend", P_STRING, P_GLOBAL, &Globals.szPassdbBackend, NULL, NULL, FLAG_ADVANCED | FLAG_WIZARD},
872 {"algorithmic rid base", P_INTEGER, P_GLOBAL, &Globals.AlgorithmicRidBase, NULL, NULL, FLAG_ADVANCED},
873 {"root directory", P_STRING, P_GLOBAL, &Globals.szRootdir, NULL, NULL, FLAG_ADVANCED},
874 {"root dir", P_STRING, P_GLOBAL, &Globals.szRootdir, NULL, NULL, FLAG_HIDE},
875 {"root", P_STRING, P_GLOBAL, &Globals.szRootdir, NULL, NULL, FLAG_HIDE},
876 {"guest account", P_STRING, P_GLOBAL, &Globals.szGuestaccount, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED},
877 {"enable privileges", P_BOOL, P_GLOBAL, &Globals.bEnablePrivileges, NULL, NULL, FLAG_ADVANCED},
879 {"pam password change", P_BOOL, P_GLOBAL, &Globals.bPamPasswordChange, NULL, NULL, FLAG_ADVANCED},
880 {"passwd program", P_STRING, P_GLOBAL, &Globals.szPasswdProgram, NULL, NULL, FLAG_ADVANCED},
881 {"passwd chat", P_STRING, P_GLOBAL, &Globals.szPasswdChat, NULL, NULL, FLAG_ADVANCED},
882 {"passwd chat debug", P_BOOL, P_GLOBAL, &Globals.bPasswdChatDebug, NULL, NULL, FLAG_ADVANCED},
883 {"passwd chat timeout", P_INTEGER, P_GLOBAL, &Globals.iPasswdChatTimeout, NULL, NULL, FLAG_ADVANCED},
884 {"check password script", P_STRING, P_GLOBAL, &Globals.szCheckPasswordScript, NULL, NULL, FLAG_ADVANCED},
885 {"username map", P_STRING, P_GLOBAL, &Globals.szUsernameMap, NULL, NULL, FLAG_ADVANCED},
886 {"password level", P_INTEGER, P_GLOBAL, &Globals.pwordlevel, NULL, NULL, FLAG_ADVANCED},
887 {"username level", P_INTEGER, P_GLOBAL, &Globals.unamelevel, NULL, NULL, FLAG_ADVANCED},
888 {"unix password sync", P_BOOL, P_GLOBAL, &Globals.bUnixPasswdSync, NULL, NULL, FLAG_ADVANCED},
889 {"restrict anonymous", P_INTEGER, P_GLOBAL, &Globals.restrict_anonymous, NULL, NULL, FLAG_ADVANCED},
890 {"lanman auth", P_BOOL, P_GLOBAL, &Globals.bLanmanAuth, NULL, NULL, FLAG_ADVANCED},
891 {"ntlm auth", P_BOOL, P_GLOBAL, &Globals.bNTLMAuth, NULL, NULL, FLAG_ADVANCED},
892 {"client NTLMv2 auth", P_BOOL, P_GLOBAL, &Globals.bClientNTLMv2Auth, NULL, NULL, FLAG_ADVANCED},
893 {"client lanman auth", P_BOOL, P_GLOBAL, &Globals.bClientLanManAuth, NULL, NULL, FLAG_ADVANCED},
894 {"client plaintext auth", P_BOOL, P_GLOBAL, &Globals.bClientPlaintextAuth, NULL, NULL, FLAG_ADVANCED},
896 {"username", P_STRING, P_LOCAL, &sDefault.szUsername, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
897 {"user", P_STRING, P_LOCAL, &sDefault.szUsername, NULL, NULL, FLAG_HIDE},
898 {"users", P_STRING, P_LOCAL, &sDefault.szUsername, NULL, NULL, FLAG_HIDE},
900 {"invalid users", P_LIST, P_LOCAL, &sDefault.szInvalidUsers, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
901 {"valid users", P_LIST, P_LOCAL, &sDefault.szValidUsers, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
902 {"admin users", P_LIST, P_LOCAL, &sDefault.szAdminUsers, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
903 {"read list", P_LIST, P_LOCAL, &sDefault.readlist, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
904 {"write list", P_LIST, P_LOCAL, &sDefault.writelist, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
905 {"printer admin", P_LIST, P_LOCAL, &sDefault.printer_admin, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_PRINT | FLAG_DEPRECATED },
906 {"force user", P_STRING, P_LOCAL, &sDefault.force_user, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
907 {"force group", P_STRING, P_LOCAL, &sDefault.force_group, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
908 {"group", P_STRING, P_LOCAL, &sDefault.force_group, NULL, NULL, FLAG_ADVANCED},
910 {"read only", P_BOOL, P_LOCAL, &sDefault.bRead_only, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE},
911 {"write ok", P_BOOLREV, P_LOCAL, &sDefault.bRead_only, NULL, NULL, FLAG_HIDE},
912 {"writeable", P_BOOLREV, P_LOCAL, &sDefault.bRead_only, NULL, NULL, FLAG_HIDE},
913 {"writable", P_BOOLREV, P_LOCAL, &sDefault.bRead_only, NULL, NULL, FLAG_HIDE},
915 {"acl check permissions", P_BOOL, P_LOCAL, &sDefault.bAclCheckPermissions, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
916 {"acl group control", P_BOOL, P_LOCAL, &sDefault.bAclGroupControl, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
917 {"acl map full control", P_BOOL, P_LOCAL, &sDefault.bAclMapFullControl, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
918 {"create mask", P_OCTAL, P_LOCAL, &sDefault.iCreate_mask, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
919 {"create mode", P_OCTAL, P_LOCAL, &sDefault.iCreate_mask, NULL, NULL, FLAG_HIDE},
920 {"force create mode", P_OCTAL, P_LOCAL, &sDefault.iCreate_force_mode, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
921 {"security mask", P_OCTAL, P_LOCAL, &sDefault.iSecurity_mask, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
922 {"force security mode", P_OCTAL, P_LOCAL, &sDefault.iSecurity_force_mode, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
923 {"directory mask", P_OCTAL, P_LOCAL, &sDefault.iDir_mask, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
924 {"directory mode", P_OCTAL, P_LOCAL, &sDefault.iDir_mask, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL},
925 {"force directory mode", P_OCTAL, P_LOCAL, &sDefault.iDir_force_mode, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
926 {"directory security mask", P_OCTAL, P_LOCAL, &sDefault.iDir_Security_mask, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
927 {"force directory security mode", P_OCTAL, P_LOCAL, &sDefault.iDir_Security_force_mode, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
928 {"force unknown acl user", P_BOOL, P_LOCAL, &sDefault.bForceUnknownAclUser, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
929 {"inherit permissions", P_BOOL, P_LOCAL, &sDefault.bInheritPerms, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
930 {"inherit acls", P_BOOL, P_LOCAL, &sDefault.bInheritACLS, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
931 {"inherit owner", P_BOOL, P_LOCAL, &sDefault.bInheritOwner, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
932 {"guest only", P_BOOL, P_LOCAL, &sDefault.bGuest_only, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
933 {"only guest", P_BOOL, P_LOCAL, &sDefault.bGuest_only, NULL, NULL, FLAG_HIDE},
935 {"guest ok", P_BOOL, P_LOCAL, &sDefault.bGuest_ok, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT},
936 {"public", P_BOOL, P_LOCAL, &sDefault.bGuest_ok, NULL, NULL, FLAG_HIDE},
938 {"only user", P_BOOL, P_LOCAL, &sDefault.bOnlyUser, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_DEPRECATED},
939 {"hosts allow", P_LIST, P_LOCAL, &sDefault.szHostsallow, NULL, NULL, FLAG_GLOBAL | FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT},
940 {"allow hosts", P_LIST, P_LOCAL, &sDefault.szHostsallow, NULL, NULL, FLAG_HIDE},
941 {"hosts deny", P_LIST, P_LOCAL, &sDefault.szHostsdeny, NULL, NULL, FLAG_GLOBAL | FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT},
942 {"deny hosts", P_LIST, P_LOCAL, &sDefault.szHostsdeny, NULL, NULL, FLAG_HIDE},
943 {"preload modules", P_LIST, P_GLOBAL, &Globals.szPreloadModules, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL},
944 {"use kerberos keytab", P_BOOL, P_GLOBAL, &Globals.bUseKerberosKeytab, NULL, NULL, FLAG_ADVANCED},
946 {N_("Logging Options"), P_SEP, P_SEPARATOR},
948 {"log level", P_STRING, P_GLOBAL, &Globals.szLogLevel, handle_debug_list, NULL, FLAG_ADVANCED},
949 {"debuglevel", P_STRING, P_GLOBAL, &Globals.szLogLevel, handle_debug_list, NULL, FLAG_HIDE},
950 {"syslog", P_INTEGER, P_GLOBAL, &Globals.syslog, NULL, NULL, FLAG_ADVANCED},
951 {"syslog only", P_BOOL, P_GLOBAL, &Globals.bSyslogOnly, NULL, NULL, FLAG_ADVANCED},
952 {"log file", P_STRING, P_GLOBAL, &Globals.szLogFile, NULL, NULL, FLAG_ADVANCED},
954 {"max log size", P_INTEGER, P_GLOBAL, &Globals.max_log_size, NULL, NULL, FLAG_ADVANCED},
955 {"debug timestamp", P_BOOL, P_GLOBAL, &Globals.bTimestampLogs, NULL, NULL, FLAG_ADVANCED},
956 {"timestamp logs", P_BOOL, P_GLOBAL, &Globals.bTimestampLogs, NULL, NULL, FLAG_ADVANCED},
957 {"debug hires timestamp", P_BOOL, P_GLOBAL, &Globals.bDebugHiresTimestamp, NULL, NULL, FLAG_ADVANCED},
958 {"debug pid", P_BOOL, P_GLOBAL, &Globals.bDebugPid, NULL, NULL, FLAG_ADVANCED},
959 {"debug uid", P_BOOL, P_GLOBAL, &Globals.bDebugUid, NULL, NULL, FLAG_ADVANCED},
961 {N_("Protocol Options"), P_SEP, P_SEPARATOR},
963 {"allocation roundup size", P_INTEGER, P_LOCAL, &sDefault.iallocation_roundup_size, NULL, NULL, FLAG_ADVANCED},
964 {"aio read size", P_INTEGER, P_LOCAL, &sDefault.iAioReadSize, NULL, NULL, FLAG_ADVANCED},
965 {"aio write size", P_INTEGER, P_LOCAL, &sDefault.iAioWriteSize, NULL, NULL, FLAG_ADVANCED},
966 {"aio write behind", P_STRING, P_LOCAL, &sDefault.szAioWriteBehind, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL },
967 {"smb ports", P_STRING, P_GLOBAL, &Globals.smb_ports, NULL, NULL, FLAG_ADVANCED},
968 {"large readwrite", P_BOOL, P_GLOBAL, &Globals.bLargeReadwrite, NULL, NULL, FLAG_ADVANCED},
969 {"max protocol", P_ENUM, P_GLOBAL, &Globals.maxprotocol, NULL, enum_protocol, FLAG_ADVANCED},
970 {"protocol", P_ENUM, P_GLOBAL, &Globals.maxprotocol, NULL, enum_protocol, FLAG_ADVANCED},
971 {"min protocol", P_ENUM, P_GLOBAL, &Globals.minprotocol, NULL, enum_protocol, FLAG_ADVANCED},
972 {"read bmpx", P_BOOL, P_GLOBAL, &Globals.bReadbmpx, NULL, NULL, FLAG_ADVANCED},
973 {"read raw", P_BOOL, P_GLOBAL, &Globals.bReadRaw, NULL, NULL, FLAG_ADVANCED},
974 {"write raw", P_BOOL, P_GLOBAL, &Globals.bWriteRaw, NULL, NULL, FLAG_ADVANCED},
975 {"disable netbios", P_BOOL, P_GLOBAL, &Globals.bDisableNetbios, NULL, NULL, FLAG_ADVANCED},
976 {"reset on zero vc", P_BOOL, P_GLOBAL, &Globals.bResetOnZeroVC, NULL, NULL, FLAG_ADVANCED},
978 {"acl compatibility", P_STRING, P_GLOBAL, &Globals.szAclCompat, NULL, enum_acl_compat_vals, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
979 {"defer sharing violations", P_BOOL, P_GLOBAL, &Globals.bDeferSharingViolations, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL},
980 {"ea support", P_BOOL, P_LOCAL, &sDefault.bEASupport, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
981 {"nt acl support", P_BOOL, P_LOCAL, &sDefault.bNTAclSupport, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
982 {"nt pipe support", P_BOOL, P_GLOBAL, &Globals.bNTPipeSupport, NULL, NULL, FLAG_ADVANCED},
983 {"nt status support", P_BOOL, P_GLOBAL, &Globals.bNTStatusSupport, NULL, NULL, FLAG_ADVANCED},
984 {"profile acls", P_BOOL, P_LOCAL, &sDefault.bProfileAcls, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
986 {"announce version", P_STRING, P_GLOBAL, &Globals.szAnnounceVersion, NULL, NULL, FLAG_ADVANCED},
987 {"announce as", P_ENUM, P_GLOBAL, &Globals.announce_as, NULL, enum_announce_as, FLAG_ADVANCED},
988 {"map acl inherit", P_BOOL, P_LOCAL, &sDefault.bMap_acl_inherit, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
989 {"afs share", P_BOOL, P_LOCAL, &sDefault.bAfs_Share, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
990 {"max mux", P_INTEGER, P_GLOBAL, &Globals.max_mux, NULL, NULL, FLAG_ADVANCED},
991 {"max xmit", P_INTEGER, P_GLOBAL, &Globals.max_xmit, NULL, NULL, FLAG_ADVANCED},
993 {"name resolve order", P_STRING, P_GLOBAL, &Globals.szNameResolveOrder, NULL, NULL, FLAG_ADVANCED | FLAG_WIZARD},
994 {"max ttl", P_INTEGER, P_GLOBAL, &Globals.max_ttl, NULL, NULL, FLAG_ADVANCED},
995 {"max wins ttl", P_INTEGER, P_GLOBAL, &Globals.max_wins_ttl, NULL, NULL, FLAG_ADVANCED},
996 {"min wins ttl", P_INTEGER, P_GLOBAL, &Globals.min_wins_ttl, NULL, NULL, FLAG_ADVANCED},
997 {"time server", P_BOOL, P_GLOBAL, &Globals.bTimeServer, NULL, NULL, FLAG_ADVANCED},
998 {"unix extensions", P_BOOL, P_GLOBAL, &Globals.bUnixExtensions, NULL, NULL, FLAG_ADVANCED},
999 {"use spnego", P_BOOL, P_GLOBAL, &Globals.bUseSpnego, NULL, NULL, FLAG_ADVANCED},
1000 {"client signing", P_ENUM, P_GLOBAL, &Globals.client_signing, NULL, enum_smb_signing_vals, FLAG_ADVANCED},
1001 {"server signing", P_ENUM, P_GLOBAL, &Globals.server_signing, NULL, enum_smb_signing_vals, FLAG_ADVANCED},
1002 {"client use spnego", P_BOOL, P_GLOBAL, &Globals.bClientUseSpnego, NULL, NULL, FLAG_ADVANCED},
1004 {"enable asu support", P_BOOL, P_GLOBAL, &Globals.bASUSupport, NULL, NULL, FLAG_ADVANCED},
1005 {"svcctl list", P_LIST, P_GLOBAL, &Globals.szServicesList, NULL, NULL, FLAG_ADVANCED},
1007 {N_("Tuning Options"), P_SEP, P_SEPARATOR},
1009 {"block size", P_INTEGER, P_LOCAL, &sDefault.iBlock_size, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1010 {"change notify timeout", P_INTEGER, P_GLOBAL, &Globals.change_notify_timeout, NULL, NULL, FLAG_ADVANCED},
1011 {"deadtime", P_INTEGER, P_GLOBAL, &Globals.deadtime, NULL, NULL, FLAG_ADVANCED},
1012 {"getwd cache", P_BOOL, P_GLOBAL, &use_getwd_cache, NULL, NULL, FLAG_ADVANCED},
1013 {"keepalive", P_INTEGER, P_GLOBAL, &keepalive, NULL, NULL, FLAG_ADVANCED},
1014 {"kernel change notify", P_BOOL, P_GLOBAL, &Globals.bKernelChangeNotify, NULL, NULL, FLAG_ADVANCED},
1015 {"fam change notify", P_BOOL, P_GLOBAL, &Globals.bFamChangeNotify, NULL, NULL, FLAG_ADVANCED},
1017 {"lpq cache time", P_INTEGER, P_GLOBAL, &Globals.lpqcachetime, NULL, NULL, FLAG_ADVANCED},
1018 {"max smbd processes", P_INTEGER, P_GLOBAL, &Globals.iMaxSmbdProcesses, NULL, NULL, FLAG_ADVANCED},
1019 {"max connections", P_INTEGER, P_LOCAL, &sDefault.iMaxConnections, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
1020 {"paranoid server security", P_BOOL, P_GLOBAL, &Globals.paranoid_server_security, NULL, NULL, FLAG_ADVANCED},
1021 {"max disk size", P_INTEGER, P_GLOBAL, &Globals.maxdisksize, NULL, NULL, FLAG_ADVANCED},
1022 {"max open files", P_INTEGER, P_GLOBAL, &Globals.max_open_files, NULL, NULL, FLAG_ADVANCED},
1023 {"min print space", P_INTEGER, P_LOCAL, &sDefault.iMinPrintSpace, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT},
1025 {"socket options", P_GSTRING, P_GLOBAL, user_socket_options, NULL, NULL, FLAG_ADVANCED},
1026 {"strict allocate", P_BOOL, P_LOCAL, &sDefault.bStrictAllocate, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
1027 {"strict sync", P_BOOL, P_LOCAL, &sDefault.bStrictSync, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
1028 {"sync always", P_BOOL, P_LOCAL, &sDefault.bSyncAlways, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
1029 {"use mmap", P_BOOL, P_GLOBAL, &Globals.bUseMmap, NULL, NULL, FLAG_ADVANCED},
1030 {"use sendfile", P_BOOL, P_LOCAL, &sDefault.bUseSendfile, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
1031 {"hostname lookups", P_BOOL, P_GLOBAL, &Globals.bHostnameLookups, NULL, NULL, FLAG_ADVANCED},
1032 {"write cache size", P_INTEGER, P_LOCAL, &sDefault.iWriteCacheSize, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_DEPRECATED},
1034 {"name cache timeout", P_INTEGER, P_GLOBAL, &Globals.name_cache_timeout, NULL, NULL, FLAG_ADVANCED},
1036 {N_("Printing Options"), P_SEP, P_SEPARATOR},
1038 {"max reported print jobs", P_INTEGER, P_LOCAL, &sDefault.iMaxReportedPrintJobs, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT},
1039 {"max print jobs", P_INTEGER, P_LOCAL, &sDefault.iMaxPrintJobs, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT},
1040 {"load printers", P_BOOL, P_GLOBAL, &Globals.bLoadPrinters, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT},
1041 {"printcap cache time", P_INTEGER, P_GLOBAL, &Globals.PrintcapCacheTime, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT},
1042 {"printcap name", P_STRING, P_GLOBAL, &Globals.szPrintcapname, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT},
1043 {"printcap", P_STRING, P_GLOBAL, &Globals.szPrintcapname, NULL, NULL, FLAG_HIDE},
1044 {"printable", P_BOOL, P_LOCAL, &sDefault.bPrint_ok, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT},
1045 {"print ok", P_BOOL, P_LOCAL, &sDefault.bPrint_ok, NULL, NULL, FLAG_HIDE},
1046 {"printing", P_ENUM, P_LOCAL, &sDefault.iPrinting, handle_printing, enum_printing, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL},
1047 {"cups options", P_STRING, P_LOCAL, &sDefault.szCupsOptions, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL},
1048 {"cups server", P_STRING, P_GLOBAL, &Globals.szCupsServer, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL},
1049 {"iprint server", P_STRING, P_GLOBAL, &Globals.szIPrintServer, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL},
1050 {"print command", P_STRING, P_LOCAL, &sDefault.szPrintcommand, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL},
1051 {"disable spoolss", P_BOOL, P_GLOBAL, &Globals.bDisableSpoolss, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL},
1052 {"enable spoolss", P_BOOLREV, P_GLOBAL, &Globals.bDisableSpoolss, NULL, NULL, FLAG_HIDE},
1053 {"lpq command", P_STRING, P_LOCAL, &sDefault.szLpqcommand, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL},
1054 {"lprm command", P_STRING, P_LOCAL, &sDefault.szLprmcommand, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL},
1055 {"lppause command", P_STRING, P_LOCAL, &sDefault.szLppausecommand, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL},
1056 {"lpresume command", P_STRING, P_LOCAL, &sDefault.szLpresumecommand, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL},
1057 {"queuepause command", P_STRING, P_LOCAL, &sDefault.szQueuepausecommand, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL},
1058 {"queueresume command", P_STRING, P_LOCAL, &sDefault.szQueueresumecommand, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL},
1060 {"addport command", P_STRING, P_GLOBAL, &Globals.szAddPortCommand, NULL, NULL, FLAG_ADVANCED},
1061 {"enumports command", P_STRING, P_GLOBAL, &Globals.szEnumPortsCommand, NULL, NULL, FLAG_ADVANCED},
1062 {"addprinter command", P_STRING, P_GLOBAL, &Globals.szAddPrinterCommand, NULL, NULL, FLAG_ADVANCED},
1063 {"deleteprinter command", P_STRING, P_GLOBAL, &Globals.szDeletePrinterCommand, NULL, NULL, FLAG_ADVANCED},
1064 {"show add printer wizard", P_BOOL, P_GLOBAL, &Globals.bMsAddPrinterWizard, NULL, NULL, FLAG_ADVANCED},
1065 {"os2 driver map", P_STRING, P_GLOBAL, &Globals.szOs2DriverMap, NULL, NULL, FLAG_ADVANCED},
1067 {"printer name", P_STRING, P_LOCAL, &sDefault.szPrintername, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT},
1068 {"printer", P_STRING, P_LOCAL, &sDefault.szPrintername, NULL, NULL, FLAG_HIDE},
1069 {"use client driver", P_BOOL, P_LOCAL, &sDefault.bUseClientDriver, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT},
1070 {"default devmode", P_BOOL, P_LOCAL, &sDefault.bDefaultDevmode, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT},
1071 {"force printername", P_BOOL, P_LOCAL, &sDefault.bForcePrintername, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT},
1073 {N_("Filename Handling"), P_SEP, P_SEPARATOR},
1074 {"mangling method", P_STRING, P_GLOBAL, &Globals.szManglingMethod, NULL, NULL, FLAG_ADVANCED},
1075 {"mangle prefix", P_INTEGER, P_GLOBAL, &Globals.mangle_prefix, NULL, NULL, FLAG_ADVANCED},
1077 {"default case", P_ENUM, P_LOCAL, &sDefault.iDefaultCase, NULL, enum_case, FLAG_ADVANCED | FLAG_SHARE},
1078 {"case sensitive", P_ENUM, P_LOCAL, &sDefault.iCaseSensitive, NULL, enum_bool_auto, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1079 {"casesignames", P_ENUM, P_LOCAL, &sDefault.iCaseSensitive, NULL, enum_bool_auto, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL | FLAG_HIDE},
1080 {"preserve case", P_BOOL, P_LOCAL, &sDefault.bCasePreserve, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1081 {"short preserve case", P_BOOL, P_LOCAL, &sDefault.bShortCasePreserve, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1082 {"mangling char", P_CHAR, P_LOCAL, &sDefault.magic_char, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1083 {"hide dot files", P_BOOL, P_LOCAL, &sDefault.bHideDotFiles, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1084 {"hide special files", P_BOOL, P_LOCAL, &sDefault.bHideSpecialFiles, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1085 {"hide unreadable", P_BOOL, P_LOCAL, &sDefault.bHideUnReadable, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1086 {"hide unwriteable files", P_BOOL, P_LOCAL, &sDefault.bHideUnWriteableFiles, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1087 {"delete veto files", P_BOOL, P_LOCAL, &sDefault.bDeleteVetoFiles, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1088 {"veto files", P_STRING, P_LOCAL, &sDefault.szVetoFiles, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL },
1089 {"hide files", P_STRING, P_LOCAL, &sDefault.szHideFiles, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL },
1090 {"veto oplock files", P_STRING, P_LOCAL, &sDefault.szVetoOplockFiles, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL },
1091 {"map archive", P_BOOL, P_LOCAL, &sDefault.bMap_archive, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1092 {"map hidden", P_BOOL, P_LOCAL, &sDefault.bMap_hidden, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1093 {"map system", P_BOOL, P_LOCAL, &sDefault.bMap_system, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1094 {"map readonly", P_ENUM, P_LOCAL, &sDefault.iMap_readonly, NULL, enum_map_readonly, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1095 {"mangled names", P_BOOL, P_LOCAL, &sDefault.bMangledNames, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1096 {"mangled map", P_STRING, P_LOCAL, &sDefault.szMangledMap, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL | FLAG_DEPRECATED },
1097 {"max stat cache size", P_INTEGER, P_GLOBAL, &Globals.iMaxStatCacheSize, NULL, NULL, FLAG_ADVANCED},
1098 {"stat cache", P_BOOL, P_GLOBAL, &Globals.bStatCache, NULL, NULL, FLAG_ADVANCED},
1099 {"store dos attributes", P_BOOL, P_LOCAL, &sDefault.bStoreDosAttributes, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1101 {N_("Domain Options"), P_SEP, P_SEPARATOR},
1103 {"machine password timeout", P_INTEGER, P_GLOBAL, &Globals.machine_password_timeout, NULL, NULL, FLAG_ADVANCED | FLAG_WIZARD},
1105 {N_("Logon Options"), P_SEP, P_SEPARATOR},
1107 {"add user script", P_STRING, P_GLOBAL, &Globals.szAddUserScript, NULL, NULL, FLAG_ADVANCED},
1108 {"rename user script", P_STRING, P_GLOBAL, &Globals.szRenameUserScript, NULL, NULL, FLAG_ADVANCED},
1109 {"delete user script", P_STRING, P_GLOBAL, &Globals.szDelUserScript, NULL, NULL, FLAG_ADVANCED},
1110 {"add group script", P_STRING, P_GLOBAL, &Globals.szAddGroupScript, NULL, NULL, FLAG_ADVANCED},
1111 {"delete group script", P_STRING, P_GLOBAL, &Globals.szDelGroupScript, NULL, NULL, FLAG_ADVANCED},
1112 {"add user to group script", P_STRING, P_GLOBAL, &Globals.szAddUserToGroupScript, NULL, NULL, FLAG_ADVANCED},
1113 {"delete user from group script", P_STRING, P_GLOBAL, &Globals.szDelUserFromGroupScript, NULL, NULL, FLAG_ADVANCED},
1114 {"set primary group script", P_STRING, P_GLOBAL, &Globals.szSetPrimaryGroupScript, NULL, NULL, FLAG_ADVANCED},
1115 {"add machine script", P_STRING, P_GLOBAL, &Globals.szAddMachineScript, NULL, NULL, FLAG_ADVANCED},
1116 {"shutdown script", P_STRING, P_GLOBAL, &Globals.szShutdownScript, NULL, NULL, FLAG_ADVANCED},
1117 {"abort shutdown script", P_STRING, P_GLOBAL, &Globals.szAbortShutdownScript, NULL, NULL, FLAG_ADVANCED},
1118 {"username map script", P_STRING, P_GLOBAL, &Globals.szUsernameMapScript, NULL, NULL, FLAG_ADVANCED},
1120 {"logon script", P_STRING, P_GLOBAL, &Globals.szLogonScript, NULL, NULL, FLAG_ADVANCED},
1121 {"logon path", P_STRING, P_GLOBAL, &Globals.szLogonPath, NULL, NULL, FLAG_ADVANCED},
1122 {"logon drive", P_STRING, P_GLOBAL, &Globals.szLogonDrive, NULL, NULL, FLAG_ADVANCED},
1123 {"logon home", P_STRING, P_GLOBAL, &Globals.szLogonHome, NULL, NULL, FLAG_ADVANCED},
1124 {"domain logons", P_BOOL, P_GLOBAL, &Globals.bDomainLogons, NULL, NULL, FLAG_ADVANCED},
1126 {N_("Browse Options"), P_SEP, P_SEPARATOR},
1128 {"os level", P_INTEGER, P_GLOBAL, &Globals.os_level, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED},
1129 {"lm announce", P_ENUM, P_GLOBAL, &Globals.lm_announce, NULL, enum_bool_auto, FLAG_ADVANCED},
1130 {"lm interval", P_INTEGER, P_GLOBAL, &Globals.lm_interval, NULL, NULL, FLAG_ADVANCED},
1131 {"preferred master", P_ENUM, P_GLOBAL, &Globals.bPreferredMaster, NULL, enum_bool_auto, FLAG_BASIC | FLAG_ADVANCED},
1132 {"prefered master", P_ENUM, P_GLOBAL, &Globals.bPreferredMaster, NULL, enum_bool_auto, FLAG_HIDE},
1133 {"local master", P_BOOL, P_GLOBAL, &Globals.bLocalMaster, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED},
1134 {"domain master", P_ENUM, P_GLOBAL, &Globals.bDomainMaster, NULL, enum_bool_auto, FLAG_BASIC | FLAG_ADVANCED},
1135 {"browse list", P_BOOL, P_GLOBAL, &Globals.bBrowseList, NULL, NULL, FLAG_ADVANCED},
1136 {"browseable", P_BOOL, P_LOCAL, &sDefault.bBrowseable, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT},
1137 {"browsable", P_BOOL, P_LOCAL, &sDefault.bBrowseable, NULL, NULL, FLAG_HIDE},
1138 {"enhanced browsing", P_BOOL, P_GLOBAL, &Globals.enhanced_browsing, NULL, NULL, FLAG_ADVANCED},
1140 {N_("WINS Options"), P_SEP, P_SEPARATOR},
1142 {"dns proxy", P_BOOL, P_GLOBAL, &Globals.bDNSproxy, NULL, NULL, FLAG_ADVANCED},
1143 {"wins proxy", P_BOOL, P_GLOBAL, &Globals.bWINSproxy, NULL, NULL, FLAG_ADVANCED},
1145 {"wins server", P_LIST, P_GLOBAL, &Globals.szWINSservers, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD},
1146 {"wins support", P_BOOL, P_GLOBAL, &Globals.bWINSsupport, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD},
1147 {"wins hook", P_STRING, P_GLOBAL, &Globals.szWINSHook, NULL, NULL, FLAG_ADVANCED},
1148 {"wins partners", P_STRING, P_GLOBAL, &Globals.szWINSPartners, NULL, NULL, FLAG_ADVANCED | FLAG_WIZARD},
1150 {N_("Locking Options"), P_SEP, P_SEPARATOR},
1152 {"blocking locks", P_BOOL, P_LOCAL, &sDefault.bBlockingLocks, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1153 {"csc policy", P_ENUM, P_LOCAL, &sDefault.iCSCPolicy, NULL, enum_csc_policy, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1154 {"fake oplocks", P_BOOL, P_LOCAL, &sDefault.bFakeOplocks, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
1155 {"kernel oplocks", P_BOOL, P_GLOBAL, &Globals.bKernelOplocks, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL},
1156 {"locking", P_BOOL, P_LOCAL, &sDefault.bLocking, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1157 {"lock spin count", P_INTEGER, P_GLOBAL, &Globals.iLockSpinCount, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL},
1158 {"lock spin time", P_INTEGER, P_GLOBAL, &Globals.iLockSpinTime, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL},
1160 {"oplocks", P_BOOL, P_LOCAL, &sDefault.bOpLocks, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1161 {"level2 oplocks", P_BOOL, P_LOCAL, &sDefault.bLevel2OpLocks, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1162 {"oplock break wait time", P_INTEGER, P_GLOBAL, &Globals.oplock_break_wait_time, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL},
1163 {"oplock contention limit", P_INTEGER, P_LOCAL, &sDefault.iOplockContentionLimit, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1164 {"posix locking", P_BOOL, P_LOCAL, &sDefault.bPosixLocking, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1165 {"strict locking", P_ENUM, P_LOCAL, &sDefault.iStrictLocking, NULL, enum_bool_auto, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1166 {"share modes", P_BOOL, P_LOCAL, &sDefault.bShareModes, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1168 {N_("Ldap Options"), P_SEP, P_SEPARATOR},
1170 #ifdef WITH_LDAP_SAMCONFIG
1171 {"ldap server", P_STRING, P_GLOBAL, &Globals.szLdapServer, NULL, NULL, FLAG_ADVANCED},
1172 {"ldap port", P_INTEGER, P_GLOBAL, &Globals.ldap_port, NULL, NULL, FLAG_ADVANCED},
1173 #endif
1174 {"ldap admin dn", P_STRING, P_GLOBAL, &Globals.szLdapAdminDn, NULL, NULL, FLAG_ADVANCED},
1175 {"ldap delete dn", P_BOOL, P_GLOBAL, &Globals.ldap_delete_dn, NULL, NULL, FLAG_ADVANCED},
1176 {"ldap group suffix", P_STRING, P_GLOBAL, &Globals.szLdapGroupSuffix, NULL, NULL, FLAG_ADVANCED},
1177 {"ldap idmap suffix", P_STRING, P_GLOBAL, &Globals.szLdapIdmapSuffix, NULL, NULL, FLAG_ADVANCED},
1178 {"ldap machine suffix", P_STRING, P_GLOBAL, &Globals.szLdapMachineSuffix, NULL, NULL, FLAG_ADVANCED},
1179 {"ldap passwd sync", P_ENUM, P_GLOBAL, &Globals.ldap_passwd_sync, NULL, enum_ldap_passwd_sync, FLAG_ADVANCED},
1180 {"ldap password sync", P_ENUM, P_GLOBAL, &Globals.ldap_passwd_sync, NULL, enum_ldap_passwd_sync, FLAG_HIDE},
1181 {"ldap replication sleep", P_INTEGER, P_GLOBAL, &Globals.ldap_replication_sleep, NULL, NULL, FLAG_ADVANCED},
1182 {"ldap suffix", P_STRING, P_GLOBAL, &Globals.szLdapSuffix, NULL, NULL, FLAG_ADVANCED},
1183 {"ldap ssl", P_ENUM, P_GLOBAL, &Globals.ldap_ssl, NULL, enum_ldap_ssl, FLAG_ADVANCED},
1184 {"ldap timeout", P_INTEGER, P_GLOBAL, &Globals.ldap_timeout, NULL, NULL, FLAG_ADVANCED},
1185 {"ldap page size", P_INTEGER, P_GLOBAL, &Globals.ldap_page_size, NULL, NULL, FLAG_ADVANCED},
1186 {"ldap user suffix", P_STRING, P_GLOBAL, &Globals.szLdapUserSuffix, NULL, NULL, FLAG_ADVANCED},
1188 {N_("Miscellaneous Options"), P_SEP, P_SEPARATOR},
1189 {"add share command", P_STRING, P_GLOBAL, &Globals.szAddShareCommand, NULL, NULL, FLAG_ADVANCED},
1190 {"change share command", P_STRING, P_GLOBAL, &Globals.szChangeShareCommand, NULL, NULL, FLAG_ADVANCED},
1191 {"delete share command", P_STRING, P_GLOBAL, &Globals.szDeleteShareCommand, NULL, NULL, FLAG_ADVANCED},
1193 {N_("EventLog Options"), P_SEP, P_SEPARATOR},
1194 {"eventlog list", P_LIST, P_GLOBAL, &Globals.szEventLogs, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
1196 {"config file", P_STRING, P_GLOBAL, &Globals.szConfigFile, NULL, NULL, FLAG_HIDE},
1197 {"preload", P_STRING, P_GLOBAL, &Globals.szAutoServices, NULL, NULL, FLAG_ADVANCED},
1198 {"auto services", P_STRING, P_GLOBAL, &Globals.szAutoServices, NULL, NULL, FLAG_ADVANCED},
1199 {"lock directory", P_STRING, P_GLOBAL, &Globals.szLockDir, NULL, NULL, FLAG_ADVANCED},
1200 {"lock dir", P_STRING, P_GLOBAL, &Globals.szLockDir, NULL, NULL, FLAG_HIDE},
1201 {"pid directory", P_STRING, P_GLOBAL, &Globals.szPidDir, NULL, NULL, FLAG_ADVANCED},
1202 #ifdef WITH_UTMP
1203 {"utmp directory", P_STRING, P_GLOBAL, &Globals.szUtmpDir, NULL, NULL, FLAG_ADVANCED},
1204 {"wtmp directory", P_STRING, P_GLOBAL, &Globals.szWtmpDir, NULL, NULL, FLAG_ADVANCED},
1205 {"utmp", P_BOOL, P_GLOBAL, &Globals.bUtmp, NULL, NULL, FLAG_ADVANCED},
1206 #endif
1208 {"default service", P_STRING, P_GLOBAL, &Globals.szDefaultService, NULL, NULL, FLAG_ADVANCED},
1209 {"default", P_STRING, P_GLOBAL, &Globals.szDefaultService, NULL, NULL, FLAG_ADVANCED},
1210 {"message command", P_STRING, P_GLOBAL, &Globals.szMsgCommand, NULL, NULL, FLAG_ADVANCED},
1211 {"dfree cache time", P_INTEGER, P_LOCAL, &sDefault.iDfreeCacheTime, NULL, NULL, FLAG_ADVANCED},
1212 {"dfree command", P_STRING, P_LOCAL, &sDefault.szDfree, NULL, NULL, FLAG_ADVANCED},
1213 {"get quota command", P_STRING, P_GLOBAL, &Globals.szGetQuota, NULL, NULL, FLAG_ADVANCED},
1214 {"set quota command", P_STRING, P_GLOBAL, &Globals.szSetQuota, NULL, NULL, FLAG_ADVANCED},
1215 {"remote announce", P_STRING, P_GLOBAL, &Globals.szRemoteAnnounce, NULL, NULL, FLAG_ADVANCED},
1216 {"remote browse sync", P_STRING, P_GLOBAL, &Globals.szRemoteBrowseSync, NULL, NULL, FLAG_ADVANCED},
1217 {"socket address", P_STRING, P_GLOBAL, &Globals.szSocketAddress, NULL, NULL, FLAG_ADVANCED},
1218 {"homedir map", P_STRING, P_GLOBAL, &Globals.szNISHomeMapName, NULL, NULL, FLAG_ADVANCED},
1219 {"afs username map", P_STRING, P_GLOBAL, &Globals.szAfsUsernameMap, NULL, NULL, FLAG_ADVANCED},
1220 {"afs token lifetime", P_INTEGER, P_GLOBAL, &Globals.iAfsTokenLifetime, NULL, NULL, FLAG_ADVANCED},
1221 {"log nt token command", P_STRING, P_GLOBAL, &Globals.szLogNtTokenCommand, NULL, NULL, FLAG_ADVANCED},
1222 {"time offset", P_INTEGER, P_GLOBAL, &extra_time_offset, NULL, NULL, FLAG_ADVANCED},
1223 {"NIS homedir", P_BOOL, P_GLOBAL, &Globals.bNISHomeMap, NULL, NULL, FLAG_ADVANCED},
1224 {"-valid", P_BOOL, P_LOCAL, &sDefault.valid, NULL, NULL, FLAG_HIDE},
1226 {"copy", P_STRING, P_LOCAL, &sDefault.szCopy, handle_copy, NULL, FLAG_HIDE},
1227 {"include", P_STRING, P_LOCAL, &sDefault.szInclude, handle_include, NULL, FLAG_HIDE},
1228 {"preexec", P_STRING, P_LOCAL, &sDefault.szPreExec, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT},
1229 {"exec", P_STRING, P_LOCAL, &sDefault.szPreExec, NULL, NULL, FLAG_ADVANCED},
1231 {"preexec close", P_BOOL, P_LOCAL, &sDefault.bPreexecClose, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
1232 {"postexec", P_STRING, P_LOCAL, &sDefault.szPostExec, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT},
1233 {"root preexec", P_STRING, P_LOCAL, &sDefault.szRootPreExec, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT},
1234 {"root preexec close", P_BOOL, P_LOCAL, &sDefault.bRootpreexecClose, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
1235 {"root postexec", P_STRING, P_LOCAL, &sDefault.szRootPostExec, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT},
1236 {"available", P_BOOL, P_LOCAL, &sDefault.bAvailable, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT},
1237 {"usershare max shares", P_INTEGER, P_GLOBAL, &Globals.iUsershareMaxShares, NULL, NULL, FLAG_ADVANCED},
1238 {"usershare owner only", P_BOOL, P_GLOBAL, &Globals.bUsershareOwnerOnly, NULL, NULL, FLAG_ADVANCED},
1239 {"usershare path", P_STRING, P_GLOBAL, &Globals.szUsersharePath, NULL, NULL, FLAG_ADVANCED},
1240 {"usershare prefix allow list", P_LIST, P_GLOBAL, &Globals.szUsersharePrefixAllowList, NULL, NULL, FLAG_ADVANCED},
1241 {"usershare prefix deny list", P_LIST, P_GLOBAL, &Globals.szUsersharePrefixDenyList, NULL, NULL, FLAG_ADVANCED},
1242 {"usershare template share", P_STRING, P_GLOBAL, &Globals.szUsershareTemplateShare, NULL, NULL, FLAG_ADVANCED},
1243 {"volume", P_STRING, P_LOCAL, &sDefault.volume, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE },
1244 {"fstype", P_STRING, P_LOCAL, &sDefault.fstype, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
1245 {"set directory", P_BOOLREV, P_LOCAL, &sDefault.bNo_set_dir, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
1246 {"wide links", P_BOOL, P_LOCAL, &sDefault.bWidelinks, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1247 {"follow symlinks", P_BOOL, P_LOCAL, &sDefault.bSymlinks, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1248 {"dont descend", P_STRING, P_LOCAL, &sDefault.szDontdescend, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
1249 {"magic script", P_STRING, P_LOCAL, &sDefault.szMagicScript, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
1250 {"magic output", P_STRING, P_LOCAL, &sDefault.szMagicOutput, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
1251 {"delete readonly", P_BOOL, P_LOCAL, &sDefault.bDeleteReadonly, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1252 {"dos filemode", P_BOOL, P_LOCAL, &sDefault.bDosFilemode, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1253 {"dos filetimes", P_BOOL, P_LOCAL, &sDefault.bDosFiletimes, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1254 {"dos filetime resolution", P_BOOL, P_LOCAL, &sDefault.bDosFiletimeResolution, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1256 {"fake directory create times", P_BOOL, P_LOCAL, &sDefault.bFakeDirCreateTimes, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1257 {"panic action", P_STRING, P_GLOBAL, &Globals.szPanicAction, NULL, NULL, FLAG_ADVANCED},
1259 {N_("VFS module options"), P_SEP, P_SEPARATOR},
1261 {"vfs objects", P_LIST, P_LOCAL, &sDefault.szVfsObjects, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
1262 {"vfs object", P_LIST, P_LOCAL, &sDefault.szVfsObjects, NULL, NULL, FLAG_HIDE},
1265 {"msdfs root", P_BOOL, P_LOCAL, &sDefault.bMSDfsRoot, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
1266 {"msdfs proxy", P_STRING, P_LOCAL, &sDefault.szMSDfsProxy, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE},
1267 {"host msdfs", P_BOOL, P_GLOBAL, &Globals.bHostMSDfs, NULL, NULL, FLAG_ADVANCED},
1269 {N_("Winbind options"), P_SEP, P_SEPARATOR},
1271 {"passdb expand explicit", P_BOOL, P_GLOBAL, &Globals.bPassdbExpandExplicit, NULL, NULL, FLAG_ADVANCED},
1272 {"idmap backend", P_LIST, P_GLOBAL, &Globals.szIdmapBackend, NULL, NULL, FLAG_ADVANCED},
1273 {"idmap uid", P_STRING, P_GLOBAL, &Globals.szIdmapUID, handle_idmap_uid, NULL, FLAG_ADVANCED},
1274 {"winbind uid", P_STRING, P_GLOBAL, &Globals.szIdmapUID, handle_idmap_uid, NULL, FLAG_HIDE},
1275 {"idmap gid", P_STRING, P_GLOBAL, &Globals.szIdmapGID, handle_idmap_gid, NULL, FLAG_ADVANCED},
1276 {"winbind gid", P_STRING, P_GLOBAL, &Globals.szIdmapGID, handle_idmap_gid, NULL, FLAG_HIDE},
1277 {"template homedir", P_STRING, P_GLOBAL, &Globals.szTemplateHomedir, NULL, NULL, FLAG_ADVANCED},
1278 {"template shell", P_STRING, P_GLOBAL, &Globals.szTemplateShell, NULL, NULL, FLAG_ADVANCED},
1279 {"winbind separator", P_STRING, P_GLOBAL, &Globals.szWinbindSeparator, NULL, NULL, FLAG_ADVANCED},
1280 {"winbind cache time", P_INTEGER, P_GLOBAL, &Globals.winbind_cache_time, NULL, NULL, FLAG_ADVANCED},
1281 {"winbind enum users", P_BOOL, P_GLOBAL, &Globals.bWinbindEnumUsers, NULL, NULL, FLAG_ADVANCED},
1282 {"winbind enum groups", P_BOOL, P_GLOBAL, &Globals.bWinbindEnumGroups, NULL, NULL, FLAG_ADVANCED},
1283 {"winbind use default domain", P_BOOL, P_GLOBAL, &Globals.bWinbindUseDefaultDomain, NULL, NULL, FLAG_ADVANCED},
1284 {"winbind trusted domains only", P_BOOL, P_GLOBAL, &Globals.bWinbindTrustedDomainsOnly, NULL, NULL, FLAG_ADVANCED},
1285 {"winbind nested groups", P_BOOL, P_GLOBAL, &Globals.bWinbindNestedGroups, NULL, NULL, FLAG_ADVANCED},
1286 {"winbind nss info", P_LIST, P_GLOBAL, &Globals.szWinbindNssInfo, NULL, NULL, FLAG_ADVANCED},
1287 {"winbind refresh tickets", P_BOOL, P_GLOBAL, &Globals.bWinbindRefreshTickets, NULL, NULL, FLAG_ADVANCED},
1288 {"winbind offline logon", P_BOOL, P_GLOBAL, &Globals.bWinbindOfflineLogon, NULL, NULL, FLAG_ADVANCED},
1290 {NULL, P_BOOL, P_NONE, NULL, NULL, NULL, 0}
1293 /***************************************************************************
1294 Initialise the sDefault parameter structure for the printer values.
1295 ***************************************************************************/
1297 static void init_printer_values(service *pService)
1299 /* choose defaults depending on the type of printing */
1300 switch (pService->iPrinting) {
1301 case PRINT_BSD:
1302 case PRINT_AIX:
1303 case PRINT_LPRNT:
1304 case PRINT_LPROS2:
1305 string_set(&pService->szLpqcommand, "lpq -P'%p'");
1306 string_set(&pService->szLprmcommand, "lprm -P'%p' %j");
1307 string_set(&pService->szPrintcommand, "lpr -r -P'%p' %s");
1308 break;
1310 case PRINT_LPRNG:
1311 case PRINT_PLP:
1312 string_set(&pService->szLpqcommand, "lpq -P'%p'");
1313 string_set(&pService->szLprmcommand, "lprm -P'%p' %j");
1314 string_set(&pService->szPrintcommand, "lpr -r -P'%p' %s");
1315 string_set(&pService->szQueuepausecommand, "lpc stop '%p'");
1316 string_set(&pService->szQueueresumecommand, "lpc start '%p'");
1317 string_set(&pService->szLppausecommand, "lpc hold '%p' %j");
1318 string_set(&pService->szLpresumecommand, "lpc release '%p' %j");
1319 break;
1321 case PRINT_CUPS:
1322 case PRINT_IPRINT:
1323 #ifdef HAVE_CUPS
1324 /* set the lpq command to contain the destination printer
1325 name only. This is used by cups_queue_get() */
1326 string_set(&pService->szLpqcommand, "%p");
1327 string_set(&pService->szLprmcommand, "");
1328 string_set(&pService->szPrintcommand, "");
1329 string_set(&pService->szLppausecommand, "");
1330 string_set(&pService->szLpresumecommand, "");
1331 string_set(&pService->szQueuepausecommand, "");
1332 string_set(&pService->szQueueresumecommand, "");
1333 #else
1334 string_set(&pService->szLpqcommand, "lpq -P'%p'");
1335 string_set(&pService->szLprmcommand, "lprm -P'%p' %j");
1336 string_set(&pService->szPrintcommand, "lpr -P'%p' %s; rm %s");
1337 string_set(&pService->szLppausecommand, "lp -i '%p-%j' -H hold");
1338 string_set(&pService->szLpresumecommand, "lp -i '%p-%j' -H resume");
1339 string_set(&pService->szQueuepausecommand, "disable '%p'");
1340 string_set(&pService->szQueueresumecommand, "enable '%p'");
1341 #endif /* HAVE_CUPS */
1342 break;
1344 case PRINT_SYSV:
1345 case PRINT_HPUX:
1346 string_set(&pService->szLpqcommand, "lpstat -o%p");
1347 string_set(&pService->szLprmcommand, "cancel %p-%j");
1348 string_set(&pService->szPrintcommand, "lp -c -d%p %s; rm %s");
1349 string_set(&pService->szQueuepausecommand, "disable %p");
1350 string_set(&pService->szQueueresumecommand, "enable %p");
1351 #ifndef HPUX
1352 string_set(&pService->szLppausecommand, "lp -i %p-%j -H hold");
1353 string_set(&pService->szLpresumecommand, "lp -i %p-%j -H resume");
1354 #endif /* HPUX */
1355 break;
1357 case PRINT_QNX:
1358 string_set(&pService->szLpqcommand, "lpq -P%p");
1359 string_set(&pService->szLprmcommand, "lprm -P%p %j");
1360 string_set(&pService->szPrintcommand, "lp -r -P%p %s");
1361 break;
1363 #ifdef DEVELOPER
1364 case PRINT_TEST:
1365 case PRINT_VLP:
1366 string_set(&pService->szPrintcommand, "vlp print %p %s");
1367 string_set(&pService->szLpqcommand, "vlp lpq %p");
1368 string_set(&pService->szLprmcommand, "vlp lprm %p %j");
1369 string_set(&pService->szLppausecommand, "vlp lppause %p %j");
1370 string_set(&pService->szLpresumecommand, "vlp lpresum %p %j");
1371 string_set(&pService->szQueuepausecommand, "vlp queuepause %p");
1372 string_set(&pService->szQueueresumecommand, "vlp queueresume %p");
1373 break;
1374 #endif /* DEVELOPER */
1379 /***************************************************************************
1380 Initialise the global parameter structure.
1381 ***************************************************************************/
1383 static void init_globals(BOOL first_time_only)
1385 static BOOL done_init = False;
1386 pstring s;
1388 /* If requested to initialize only once and we've already done it... */
1389 if (first_time_only && done_init) {
1390 /* ... then we have nothing more to do */
1391 return;
1394 if (!done_init) {
1395 int i;
1397 /* The logfile can be set before this is invoked. Free it if so. */
1398 if (Globals.szLogFile != NULL) {
1399 string_free(&Globals.szLogFile);
1400 Globals.szLogFile = NULL;
1403 memset((void *)&Globals, '\0', sizeof(Globals));
1405 for (i = 0; parm_table[i].label; i++)
1406 if ((parm_table[i].type == P_STRING ||
1407 parm_table[i].type == P_USTRING) &&
1408 parm_table[i].ptr)
1409 string_set((char **)parm_table[i].ptr, "");
1411 string_set(&sDefault.fstype, FSTYPE_STRING);
1413 init_printer_values(&sDefault);
1415 done_init = True;
1419 DEBUG(3, ("Initialising global parameters\n"));
1421 string_set(&Globals.szSMBPasswdFile, dyn_SMB_PASSWD_FILE);
1422 string_set(&Globals.szPrivateDir, dyn_PRIVATE_DIR);
1424 /* use the new 'hash2' method by default, with a prefix of 1 */
1425 string_set(&Globals.szManglingMethod, "hash2");
1426 Globals.mangle_prefix = 1;
1428 string_set(&Globals.szGuestaccount, GUEST_ACCOUNT);
1430 /* using UTF8 by default allows us to support all chars */
1431 string_set(&Globals.unix_charset, DEFAULT_UNIX_CHARSET);
1433 #if defined(HAVE_NL_LANGINFO) && defined(CODESET)
1434 /* If the system supports nl_langinfo(), try to grab the value
1435 from the user's locale */
1436 string_set(&Globals.display_charset, "LOCALE");
1437 #else
1438 string_set(&Globals.display_charset, DEFAULT_DISPLAY_CHARSET);
1439 #endif
1441 /* Use codepage 850 as a default for the dos character set */
1442 string_set(&Globals.dos_charset, DEFAULT_DOS_CHARSET);
1445 * Allow the default PASSWD_CHAT to be overridden in local.h.
1447 string_set(&Globals.szPasswdChat, DEFAULT_PASSWD_CHAT);
1449 set_global_myname(myhostname());
1450 string_set(&Globals.szNetbiosName,global_myname());
1452 set_global_myworkgroup(WORKGROUP);
1453 string_set(&Globals.szWorkgroup, lp_workgroup());
1455 string_set(&Globals.szPasswdProgram, "");
1456 string_set(&Globals.szPidDir, dyn_PIDDIR);
1457 string_set(&Globals.szLockDir, dyn_LOCKDIR);
1458 string_set(&Globals.szSocketAddress, "0.0.0.0");
1459 pstrcpy(s, "Samba ");
1460 pstrcat(s, SAMBA_VERSION_STRING);
1461 string_set(&Globals.szServerString, s);
1462 slprintf(s, sizeof(s) - 1, "%d.%d", DEFAULT_MAJOR_VERSION,
1463 DEFAULT_MINOR_VERSION);
1464 string_set(&Globals.szAnnounceVersion, s);
1465 #ifdef DEVELOPER
1466 string_set(&Globals.szPanicAction, "/bin/sleep 999999999");
1467 #endif
1469 pstrcpy(user_socket_options, DEFAULT_SOCKET_OPTIONS);
1471 string_set(&Globals.szLogonDrive, "");
1472 /* %N is the NIS auto.home server if -DAUTOHOME is used, else same as %L */
1473 string_set(&Globals.szLogonHome, "\\\\%N\\%U");
1474 string_set(&Globals.szLogonPath, "\\\\%N\\%U\\profile");
1476 string_set(&Globals.szNameResolveOrder, "lmhosts wins host bcast");
1477 string_set(&Globals.szPasswordServer, "*");
1479 Globals.AlgorithmicRidBase = BASE_RID;
1481 Globals.bLoadPrinters = True;
1482 Globals.PrintcapCacheTime = 750; /* 12.5 minutes */
1484 /* Was 65535 (0xFFFF). 0x4101 matches W2K and causes major speed improvements... */
1485 /* Discovered by 2 days of pain by Don McCall @ HP :-). */
1486 Globals.max_xmit = 0x4104;
1487 Globals.max_mux = 50; /* This is *needed* for profile support. */
1488 Globals.lpqcachetime = 30; /* changed to handle large print servers better -- jerry */
1489 Globals.bDisableSpoolss = False;
1490 Globals.iMaxSmbdProcesses = 0;/* no limit specified */
1491 Globals.pwordlevel = 0;
1492 Globals.unamelevel = 0;
1493 Globals.deadtime = 0;
1494 Globals.bLargeReadwrite = True;
1495 Globals.max_log_size = 5000;
1496 Globals.max_open_files = MAX_OPEN_FILES;
1497 Globals.maxprotocol = PROTOCOL_NT1;
1498 Globals.minprotocol = PROTOCOL_CORE;
1499 Globals.security = SEC_USER;
1500 Globals.paranoid_server_security = True;
1501 Globals.bEncryptPasswords = True;
1502 Globals.bUpdateEncrypt = False;
1503 Globals.clientSchannel = Auto;
1504 Globals.serverSchannel = Auto;
1505 Globals.bReadRaw = True;
1506 Globals.bWriteRaw = True;
1507 Globals.bReadbmpx = False;
1508 Globals.bNullPasswords = False;
1509 Globals.bObeyPamRestrictions = False;
1510 Globals.syslog = 1;
1511 Globals.bSyslogOnly = False;
1512 Globals.bTimestampLogs = True;
1513 string_set(&Globals.szLogLevel, "0");
1514 Globals.bDebugHiresTimestamp = False;
1515 Globals.bDebugPid = False;
1516 Globals.bDebugUid = False;
1517 Globals.max_ttl = 60 * 60 * 24 * 3; /* 3 days default. */
1518 Globals.max_wins_ttl = 60 * 60 * 24 * 6; /* 6 days default. */
1519 Globals.min_wins_ttl = 60 * 60 * 6; /* 6 hours default. */
1520 Globals.machine_password_timeout = 60 * 60 * 24 * 7; /* 7 days default. */
1521 Globals.change_notify_timeout = 60; /* 1 minute default. */
1522 Globals.bKernelChangeNotify = True; /* On if we have it. */
1523 Globals.bFamChangeNotify = True; /* On if we have it. */
1524 Globals.lm_announce = 2; /* = Auto: send only if LM clients found */
1525 Globals.lm_interval = 60;
1526 Globals.announce_as = ANNOUNCE_AS_NT_SERVER;
1527 #if (defined(HAVE_NETGROUP) && defined(WITH_AUTOMOUNT))
1528 Globals.bNISHomeMap = False;
1529 #ifdef WITH_NISPLUS_HOME
1530 string_set(&Globals.szNISHomeMapName, "auto_home.org_dir");
1531 #else
1532 string_set(&Globals.szNISHomeMapName, "auto.home");
1533 #endif
1534 #endif
1535 Globals.bTimeServer = False;
1536 Globals.bBindInterfacesOnly = False;
1537 Globals.bUnixPasswdSync = False;
1538 Globals.bPamPasswordChange = False;
1539 Globals.bPasswdChatDebug = False;
1540 Globals.iPasswdChatTimeout = 2; /* 2 second default. */
1541 Globals.bNTPipeSupport = True; /* Do NT pipes by default. */
1542 Globals.bNTStatusSupport = True; /* Use NT status by default. */
1543 Globals.bStatCache = True; /* use stat cache by default */
1544 Globals.iMaxStatCacheSize = 0; /* unlimited size in kb by default. */
1545 Globals.restrict_anonymous = 0;
1546 Globals.bClientLanManAuth = True; /* Do use the LanMan hash if it is available */
1547 Globals.bClientPlaintextAuth = True; /* Do use a plaintext password if is requested by the server */
1548 Globals.bLanmanAuth = True; /* Do use the LanMan hash if it is available */
1549 Globals.bNTLMAuth = True; /* Do use NTLMv1 if it is available (otherwise NTLMv2) */
1550 Globals.bClientNTLMv2Auth = False; /* Client should not use NTLMv2, as we can't tell that the server supports it. */
1551 /* Note, that we will use NTLM2 session security (which is different), if it is available */
1553 Globals.map_to_guest = 0; /* By Default, "Never" */
1554 Globals.oplock_break_wait_time = 0; /* By Default, 0 msecs. */
1555 Globals.enhanced_browsing = True;
1556 Globals.iLockSpinCount = 3; /* Try 3 times. */
1557 Globals.iLockSpinTime = 10; /* usec. */
1558 #ifdef MMAP_BLACKLIST
1559 Globals.bUseMmap = False;
1560 #else
1561 Globals.bUseMmap = True;
1562 #endif
1563 Globals.bUnixExtensions = True;
1564 Globals.bResetOnZeroVC = False;
1566 /* hostname lookups can be very expensive and are broken on
1567 a large number of sites (tridge) */
1568 Globals.bHostnameLookups = False;
1570 #ifdef WITH_LDAP_SAMCONFIG
1571 string_set(&Globals.szLdapServer, "localhost");
1572 Globals.ldap_port = 636;
1573 string_set(&Globals.szPassdbBackend, "ldapsam_compat");
1574 #else
1575 string_set(&Globals.szPassdbBackend, "smbpasswd");
1576 #endif /* WITH_LDAP_SAMCONFIG */
1577 string_set(&Globals.szLdapSuffix, "");
1578 string_set(&Globals.szLdapMachineSuffix, "");
1579 string_set(&Globals.szLdapUserSuffix, "");
1580 string_set(&Globals.szLdapGroupSuffix, "");
1581 string_set(&Globals.szLdapIdmapSuffix, "");
1583 string_set(&Globals.szLdapAdminDn, "");
1584 Globals.ldap_ssl = LDAP_SSL_ON;
1585 Globals.ldap_passwd_sync = LDAP_PASSWD_SYNC_OFF;
1586 Globals.ldap_delete_dn = False;
1587 Globals.ldap_replication_sleep = 1000; /* wait 1 sec for replication */
1588 Globals.ldap_timeout = LDAP_CONNECT_DEFAULT_TIMEOUT;
1589 Globals.ldap_page_size = LDAP_PAGE_SIZE;
1591 /* This is what we tell the afs client. in reality we set the token
1592 * to never expire, though, when this runs out the afs client will
1593 * forget the token. Set to 0 to get NEVERDATE.*/
1594 Globals.iAfsTokenLifetime = 604800;
1596 /* these parameters are set to defaults that are more appropriate
1597 for the increasing samba install base:
1599 as a member of the workgroup, that will possibly become a
1600 _local_ master browser (lm = True). this is opposed to a forced
1601 local master browser startup (pm = True).
1603 doesn't provide WINS server service by default (wsupp = False),
1604 and doesn't provide domain master browser services by default, either.
1608 Globals.bMsAddPrinterWizard = True;
1609 Globals.bPreferredMaster = Auto; /* depending on bDomainMaster */
1610 Globals.os_level = 20;
1611 Globals.bLocalMaster = True;
1612 Globals.bDomainMaster = Auto; /* depending on bDomainLogons */
1613 Globals.bDomainLogons = False;
1614 Globals.bBrowseList = True;
1615 Globals.bWINSsupport = False;
1616 Globals.bWINSproxy = False;
1618 Globals.bDNSproxy = True;
1620 /* this just means to use them if they exist */
1621 Globals.bKernelOplocks = True;
1623 Globals.bAllowTrustedDomains = True;
1625 string_set(&Globals.szTemplateShell, "/bin/false");
1626 string_set(&Globals.szTemplateHomedir, "/home/%D/%U");
1627 string_set(&Globals.szWinbindSeparator, "\\");
1628 string_set(&Globals.szAclCompat, "");
1629 string_set(&Globals.szCupsServer, "");
1630 string_set(&Globals.szIPrintServer, "");
1632 Globals.winbind_cache_time = 300; /* 5 minutes */
1633 Globals.bWinbindEnumUsers = False;
1634 Globals.bWinbindEnumGroups = False;
1635 Globals.bWinbindUseDefaultDomain = False;
1636 Globals.bWinbindTrustedDomainsOnly = False;
1637 Globals.bWinbindNestedGroups = True;
1638 Globals.szWinbindNssInfo = str_list_make("template", NULL);
1639 Globals.bWinbindRefreshTickets = False;
1640 Globals.bWinbindOfflineLogon = False;
1642 Globals.bPassdbExpandExplicit = True;
1644 Globals.name_cache_timeout = 660; /* In seconds */
1646 Globals.bUseSpnego = True;
1647 Globals.bClientUseSpnego = True;
1649 Globals.client_signing = Auto;
1650 Globals.server_signing = False;
1652 Globals.bDeferSharingViolations = True;
1653 string_set(&Globals.smb_ports, SMB_PORTS);
1655 Globals.bEnablePrivileges = True;
1656 Globals.bHostMSDfs = True;
1657 Globals.bASUSupport = False;
1659 /* User defined shares. */
1660 pstrcpy(s, dyn_LOCKDIR);
1661 pstrcat(s, "/usershares");
1662 string_set(&Globals.szUsersharePath, s);
1663 string_set(&Globals.szUsershareTemplateShare, "");
1664 Globals.iUsershareMaxShares = 0;
1665 /* By default disallow sharing of directories not owned by the sharer. */
1666 Globals.bUsershareOwnerOnly = True;
1669 static TALLOC_CTX *lp_talloc;
1671 /******************************************************************* a
1672 Free up temporary memory - called from the main loop.
1673 ********************************************************************/
1675 void lp_TALLOC_FREE(void)
1677 if (!lp_talloc)
1678 return;
1679 TALLOC_FREE(lp_talloc);
1680 lp_talloc = NULL;
1683 TALLOC_CTX *tmp_talloc_ctx(void)
1685 if (lp_talloc == NULL) {
1686 lp_talloc = talloc_init(NULL);
1689 if (lp_talloc == NULL) {
1690 smb_panic("Could not create temporary talloc context\n");
1693 return lp_talloc;
1696 /*******************************************************************
1697 Convenience routine to grab string parameters into temporary memory
1698 and run standard_sub_basic on them. The buffers can be written to by
1699 callers without affecting the source string.
1700 ********************************************************************/
1702 static char *lp_string(const char *s)
1704 char *ret, *tmpstr;
1706 /* The follow debug is useful for tracking down memory problems
1707 especially if you have an inner loop that is calling a lp_*()
1708 function that returns a string. Perhaps this debug should be
1709 present all the time? */
1711 #if 0
1712 DEBUG(10, ("lp_string(%s)\n", s));
1713 #endif
1715 if (!lp_talloc)
1716 lp_talloc = talloc_init("lp_talloc");
1718 tmpstr = alloc_sub_basic(get_current_username(), s);
1719 if (trim_char(tmpstr, '\"', '\"')) {
1720 if (strchr(tmpstr,'\"') != NULL) {
1721 SAFE_FREE(tmpstr);
1722 tmpstr = alloc_sub_basic(get_current_username(),s);
1725 ret = talloc_strdup(lp_talloc, tmpstr);
1726 SAFE_FREE(tmpstr);
1728 return (ret);
1732 In this section all the functions that are used to access the
1733 parameters from the rest of the program are defined
1736 #define FN_GLOBAL_STRING(fn_name,ptr) \
1737 char *fn_name(void) {return(lp_string(*(char **)(ptr) ? *(char **)(ptr) : ""));}
1738 #define FN_GLOBAL_CONST_STRING(fn_name,ptr) \
1739 const char *fn_name(void) {return(*(const char **)(ptr) ? *(const char **)(ptr) : "");}
1740 #define FN_GLOBAL_LIST(fn_name,ptr) \
1741 const char **fn_name(void) {return(*(const char ***)(ptr));}
1742 #define FN_GLOBAL_BOOL(fn_name,ptr) \
1743 BOOL fn_name(void) {return(*(BOOL *)(ptr));}
1744 #define FN_GLOBAL_CHAR(fn_name,ptr) \
1745 char fn_name(void) {return(*(char *)(ptr));}
1746 #define FN_GLOBAL_INTEGER(fn_name,ptr) \
1747 int fn_name(void) {return(*(int *)(ptr));}
1749 #define FN_LOCAL_STRING(fn_name,val) \
1750 char *fn_name(int i) {return(lp_string((LP_SNUM_OK(i) && ServicePtrs[(i)]->val) ? ServicePtrs[(i)]->val : sDefault.val));}
1751 #define FN_LOCAL_CONST_STRING(fn_name,val) \
1752 const char *fn_name(int i) {return (const char *)((LP_SNUM_OK(i) && ServicePtrs[(i)]->val) ? ServicePtrs[(i)]->val : sDefault.val);}
1753 #define FN_LOCAL_LIST(fn_name,val) \
1754 const char **fn_name(int i) {return(const char **)(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
1755 #define FN_LOCAL_BOOL(fn_name,val) \
1756 BOOL fn_name(int i) {return(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
1757 #define FN_LOCAL_CHAR(fn_name,val) \
1758 char fn_name(int i) {return(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
1759 #define FN_LOCAL_INTEGER(fn_name,val) \
1760 int fn_name(int i) {return(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
1762 FN_GLOBAL_STRING(lp_smb_ports, &Globals.smb_ports)
1763 FN_GLOBAL_STRING(lp_dos_charset, &Globals.dos_charset)
1764 FN_GLOBAL_STRING(lp_unix_charset, &Globals.unix_charset)
1765 FN_GLOBAL_STRING(lp_display_charset, &Globals.display_charset)
1766 FN_GLOBAL_STRING(lp_logfile, &Globals.szLogFile)
1767 FN_GLOBAL_STRING(lp_configfile, &Globals.szConfigFile)
1768 FN_GLOBAL_STRING(lp_smb_passwd_file, &Globals.szSMBPasswdFile)
1769 FN_GLOBAL_STRING(lp_private_dir, &Globals.szPrivateDir)
1770 FN_GLOBAL_STRING(lp_serverstring, &Globals.szServerString)
1771 FN_GLOBAL_INTEGER(lp_printcap_cache_time, &Globals.PrintcapCacheTime)
1772 FN_GLOBAL_STRING(lp_addport_cmd, &Globals.szAddPortCommand)
1773 FN_GLOBAL_STRING(lp_enumports_cmd, &Globals.szEnumPortsCommand)
1774 FN_GLOBAL_STRING(lp_addprinter_cmd, &Globals.szAddPrinterCommand)
1775 FN_GLOBAL_STRING(lp_deleteprinter_cmd, &Globals.szDeletePrinterCommand)
1776 FN_GLOBAL_STRING(lp_os2_driver_map, &Globals.szOs2DriverMap)
1777 FN_GLOBAL_STRING(lp_lockdir, &Globals.szLockDir)
1778 FN_GLOBAL_STRING(lp_piddir, &Globals.szPidDir)
1779 FN_GLOBAL_STRING(lp_mangling_method, &Globals.szManglingMethod)
1780 FN_GLOBAL_INTEGER(lp_mangle_prefix, &Globals.mangle_prefix)
1781 FN_GLOBAL_STRING(lp_utmpdir, &Globals.szUtmpDir)
1782 FN_GLOBAL_STRING(lp_wtmpdir, &Globals.szWtmpDir)
1783 FN_GLOBAL_BOOL(lp_utmp, &Globals.bUtmp)
1784 FN_GLOBAL_STRING(lp_rootdir, &Globals.szRootdir)
1785 FN_GLOBAL_STRING(lp_defaultservice, &Globals.szDefaultService)
1786 FN_GLOBAL_STRING(lp_msg_command, &Globals.szMsgCommand)
1787 FN_GLOBAL_STRING(lp_get_quota_command, &Globals.szGetQuota)
1788 FN_GLOBAL_STRING(lp_set_quota_command, &Globals.szSetQuota)
1789 FN_GLOBAL_STRING(lp_hosts_equiv, &Globals.szHostsEquiv)
1790 FN_GLOBAL_STRING(lp_auto_services, &Globals.szAutoServices)
1791 FN_GLOBAL_STRING(lp_passwd_program, &Globals.szPasswdProgram)
1792 FN_GLOBAL_STRING(lp_passwd_chat, &Globals.szPasswdChat)
1793 FN_GLOBAL_STRING(lp_passwordserver, &Globals.szPasswordServer)
1794 FN_GLOBAL_STRING(lp_name_resolve_order, &Globals.szNameResolveOrder)
1795 FN_GLOBAL_STRING(lp_realm, &Globals.szRealm)
1796 FN_GLOBAL_CONST_STRING(lp_afs_username_map, &Globals.szAfsUsernameMap)
1797 FN_GLOBAL_INTEGER(lp_afs_token_lifetime, &Globals.iAfsTokenLifetime)
1798 FN_GLOBAL_STRING(lp_log_nt_token_command, &Globals.szLogNtTokenCommand)
1799 FN_GLOBAL_STRING(lp_username_map, &Globals.szUsernameMap)
1800 FN_GLOBAL_CONST_STRING(lp_logon_script, &Globals.szLogonScript)
1801 FN_GLOBAL_CONST_STRING(lp_logon_path, &Globals.szLogonPath)
1802 FN_GLOBAL_CONST_STRING(lp_logon_drive, &Globals.szLogonDrive)
1803 FN_GLOBAL_CONST_STRING(lp_logon_home, &Globals.szLogonHome)
1804 FN_GLOBAL_STRING(lp_remote_announce, &Globals.szRemoteAnnounce)
1805 FN_GLOBAL_STRING(lp_remote_browse_sync, &Globals.szRemoteBrowseSync)
1806 FN_GLOBAL_LIST(lp_wins_server_list, &Globals.szWINSservers)
1807 FN_GLOBAL_LIST(lp_interfaces, &Globals.szInterfaces)
1808 FN_GLOBAL_STRING(lp_socket_address, &Globals.szSocketAddress)
1809 FN_GLOBAL_STRING(lp_nis_home_map_name, &Globals.szNISHomeMapName)
1810 static FN_GLOBAL_STRING(lp_announce_version, &Globals.szAnnounceVersion)
1811 FN_GLOBAL_LIST(lp_netbios_aliases, &Globals.szNetbiosAliases)
1812 FN_GLOBAL_STRING(lp_passdb_backend, &Globals.szPassdbBackend)
1813 FN_GLOBAL_LIST(lp_preload_modules, &Globals.szPreloadModules)
1814 FN_GLOBAL_STRING(lp_panic_action, &Globals.szPanicAction)
1815 FN_GLOBAL_STRING(lp_adduser_script, &Globals.szAddUserScript)
1816 FN_GLOBAL_STRING(lp_renameuser_script, &Globals.szRenameUserScript)
1817 FN_GLOBAL_STRING(lp_deluser_script, &Globals.szDelUserScript)
1819 FN_GLOBAL_CONST_STRING(lp_guestaccount, &Globals.szGuestaccount)
1820 FN_GLOBAL_STRING(lp_addgroup_script, &Globals.szAddGroupScript)
1821 FN_GLOBAL_STRING(lp_delgroup_script, &Globals.szDelGroupScript)
1822 FN_GLOBAL_STRING(lp_addusertogroup_script, &Globals.szAddUserToGroupScript)
1823 FN_GLOBAL_STRING(lp_deluserfromgroup_script, &Globals.szDelUserFromGroupScript)
1824 FN_GLOBAL_STRING(lp_setprimarygroup_script, &Globals.szSetPrimaryGroupScript)
1826 FN_GLOBAL_STRING(lp_addmachine_script, &Globals.szAddMachineScript)
1828 FN_GLOBAL_STRING(lp_shutdown_script, &Globals.szShutdownScript)
1829 FN_GLOBAL_STRING(lp_abort_shutdown_script, &Globals.szAbortShutdownScript)
1830 FN_GLOBAL_STRING(lp_username_map_script, &Globals.szUsernameMapScript)
1832 FN_GLOBAL_STRING(lp_check_password_script, &Globals.szCheckPasswordScript)
1834 FN_GLOBAL_STRING(lp_wins_hook, &Globals.szWINSHook)
1835 FN_GLOBAL_STRING(lp_wins_partners, &Globals.szWINSPartners)
1836 FN_GLOBAL_CONST_STRING(lp_template_homedir, &Globals.szTemplateHomedir)
1837 FN_GLOBAL_CONST_STRING(lp_template_shell, &Globals.szTemplateShell)
1838 FN_GLOBAL_CONST_STRING(lp_winbind_separator, &Globals.szWinbindSeparator)
1839 FN_GLOBAL_INTEGER(lp_acl_compatibility, &Globals.szAclCompat)
1840 FN_GLOBAL_BOOL(lp_winbind_enum_users, &Globals.bWinbindEnumUsers)
1841 FN_GLOBAL_BOOL(lp_winbind_enum_groups, &Globals.bWinbindEnumGroups)
1842 FN_GLOBAL_BOOL(lp_winbind_use_default_domain, &Globals.bWinbindUseDefaultDomain)
1843 FN_GLOBAL_BOOL(lp_winbind_trusted_domains_only, &Globals.bWinbindTrustedDomainsOnly)
1844 FN_GLOBAL_BOOL(lp_winbind_nested_groups, &Globals.bWinbindNestedGroups)
1845 FN_GLOBAL_BOOL(lp_winbind_refresh_tickets, &Globals.bWinbindRefreshTickets)
1846 FN_GLOBAL_BOOL(lp_winbind_offline_logon, &Globals.bWinbindOfflineLogon)
1848 FN_GLOBAL_LIST(lp_idmap_backend, &Globals.szIdmapBackend)
1849 FN_GLOBAL_BOOL(lp_passdb_expand_explicit, &Globals.bPassdbExpandExplicit)
1851 #ifdef WITH_LDAP_SAMCONFIG
1852 FN_GLOBAL_STRING(lp_ldap_server, &Globals.szLdapServer)
1853 FN_GLOBAL_INTEGER(lp_ldap_port, &Globals.ldap_port)
1854 #endif
1855 FN_GLOBAL_STRING(lp_ldap_suffix, &Globals.szLdapSuffix)
1856 FN_GLOBAL_STRING(lp_ldap_admin_dn, &Globals.szLdapAdminDn)
1857 FN_GLOBAL_INTEGER(lp_ldap_ssl, &Globals.ldap_ssl)
1858 FN_GLOBAL_INTEGER(lp_ldap_passwd_sync, &Globals.ldap_passwd_sync)
1859 FN_GLOBAL_BOOL(lp_ldap_delete_dn, &Globals.ldap_delete_dn)
1860 FN_GLOBAL_INTEGER(lp_ldap_replication_sleep, &Globals.ldap_replication_sleep)
1861 FN_GLOBAL_INTEGER(lp_ldap_timeout, &Globals.ldap_timeout)
1862 FN_GLOBAL_INTEGER(lp_ldap_page_size, &Globals.ldap_page_size)
1863 FN_GLOBAL_STRING(lp_add_share_cmd, &Globals.szAddShareCommand)
1864 FN_GLOBAL_STRING(lp_change_share_cmd, &Globals.szChangeShareCommand)
1865 FN_GLOBAL_STRING(lp_delete_share_cmd, &Globals.szDeleteShareCommand)
1866 FN_GLOBAL_STRING(lp_usershare_path, &Globals.szUsersharePath)
1867 FN_GLOBAL_LIST(lp_usershare_prefix_allow_list, &Globals.szUsersharePrefixAllowList)
1868 FN_GLOBAL_LIST(lp_usershare_prefix_deny_list, &Globals.szUsersharePrefixDenyList)
1870 FN_GLOBAL_LIST(lp_eventlog_list, &Globals.szEventLogs)
1872 FN_GLOBAL_BOOL(lp_usershare_owner_only, &Globals.bUsershareOwnerOnly)
1873 FN_GLOBAL_BOOL(lp_disable_netbios, &Globals.bDisableNetbios)
1874 FN_GLOBAL_BOOL(lp_reset_on_zero_vc, &Globals.bResetOnZeroVC)
1875 FN_GLOBAL_BOOL(lp_ms_add_printer_wizard, &Globals.bMsAddPrinterWizard)
1876 FN_GLOBAL_BOOL(lp_dns_proxy, &Globals.bDNSproxy)
1877 FN_GLOBAL_BOOL(lp_wins_support, &Globals.bWINSsupport)
1878 FN_GLOBAL_BOOL(lp_we_are_a_wins_server, &Globals.bWINSsupport)
1879 FN_GLOBAL_BOOL(lp_wins_proxy, &Globals.bWINSproxy)
1880 FN_GLOBAL_BOOL(lp_local_master, &Globals.bLocalMaster)
1881 FN_GLOBAL_BOOL(lp_domain_logons, &Globals.bDomainLogons)
1882 FN_GLOBAL_BOOL(lp_load_printers, &Globals.bLoadPrinters)
1883 FN_GLOBAL_BOOL(lp_readbmpx, &Globals.bReadbmpx)
1884 FN_GLOBAL_BOOL(lp_readraw, &Globals.bReadRaw)
1885 FN_GLOBAL_BOOL(lp_large_readwrite, &Globals.bLargeReadwrite)
1886 FN_GLOBAL_BOOL(lp_writeraw, &Globals.bWriteRaw)
1887 FN_GLOBAL_BOOL(lp_null_passwords, &Globals.bNullPasswords)
1888 FN_GLOBAL_BOOL(lp_obey_pam_restrictions, &Globals.bObeyPamRestrictions)
1889 FN_GLOBAL_BOOL(lp_encrypted_passwords, &Globals.bEncryptPasswords)
1890 FN_GLOBAL_BOOL(lp_update_encrypted, &Globals.bUpdateEncrypt)
1891 FN_GLOBAL_INTEGER(lp_client_schannel, &Globals.clientSchannel)
1892 FN_GLOBAL_INTEGER(lp_server_schannel, &Globals.serverSchannel)
1893 FN_GLOBAL_BOOL(lp_syslog_only, &Globals.bSyslogOnly)
1894 FN_GLOBAL_BOOL(lp_timestamp_logs, &Globals.bTimestampLogs)
1895 FN_GLOBAL_BOOL(lp_debug_hires_timestamp, &Globals.bDebugHiresTimestamp)
1896 FN_GLOBAL_BOOL(lp_debug_pid, &Globals.bDebugPid)
1897 FN_GLOBAL_BOOL(lp_debug_uid, &Globals.bDebugUid)
1898 FN_GLOBAL_BOOL(lp_browse_list, &Globals.bBrowseList)
1899 FN_GLOBAL_BOOL(lp_nis_home_map, &Globals.bNISHomeMap)
1900 static FN_GLOBAL_BOOL(lp_time_server, &Globals.bTimeServer)
1901 FN_GLOBAL_BOOL(lp_bind_interfaces_only, &Globals.bBindInterfacesOnly)
1902 FN_GLOBAL_BOOL(lp_pam_password_change, &Globals.bPamPasswordChange)
1903 FN_GLOBAL_BOOL(lp_unix_password_sync, &Globals.bUnixPasswdSync)
1904 FN_GLOBAL_BOOL(lp_passwd_chat_debug, &Globals.bPasswdChatDebug)
1905 FN_GLOBAL_INTEGER(lp_passwd_chat_timeout, &Globals.iPasswdChatTimeout)
1906 FN_GLOBAL_BOOL(lp_nt_pipe_support, &Globals.bNTPipeSupport)
1907 FN_GLOBAL_BOOL(lp_nt_status_support, &Globals.bNTStatusSupport)
1908 FN_GLOBAL_BOOL(lp_stat_cache, &Globals.bStatCache)
1909 FN_GLOBAL_INTEGER(lp_max_stat_cache_size, &Globals.iMaxStatCacheSize)
1910 FN_GLOBAL_BOOL(lp_allow_trusted_domains, &Globals.bAllowTrustedDomains)
1911 FN_GLOBAL_INTEGER(lp_restrict_anonymous, &Globals.restrict_anonymous)
1912 FN_GLOBAL_BOOL(lp_lanman_auth, &Globals.bLanmanAuth)
1913 FN_GLOBAL_BOOL(lp_ntlm_auth, &Globals.bNTLMAuth)
1914 FN_GLOBAL_BOOL(lp_client_plaintext_auth, &Globals.bClientPlaintextAuth)
1915 FN_GLOBAL_BOOL(lp_client_lanman_auth, &Globals.bClientLanManAuth)
1916 FN_GLOBAL_BOOL(lp_client_ntlmv2_auth, &Globals.bClientNTLMv2Auth)
1917 FN_GLOBAL_BOOL(lp_host_msdfs, &Globals.bHostMSDfs)
1918 FN_GLOBAL_BOOL(lp_kernel_oplocks, &Globals.bKernelOplocks)
1919 FN_GLOBAL_BOOL(lp_enhanced_browsing, &Globals.enhanced_browsing)
1920 FN_GLOBAL_BOOL(lp_use_mmap, &Globals.bUseMmap)
1921 FN_GLOBAL_BOOL(lp_unix_extensions, &Globals.bUnixExtensions)
1922 FN_GLOBAL_BOOL(lp_use_spnego, &Globals.bUseSpnego)
1923 FN_GLOBAL_BOOL(lp_client_use_spnego, &Globals.bClientUseSpnego)
1924 FN_GLOBAL_BOOL(lp_hostname_lookups, &Globals.bHostnameLookups)
1925 FN_GLOBAL_BOOL(lp_kernel_change_notify, &Globals.bKernelChangeNotify)
1926 FN_GLOBAL_BOOL(lp_fam_change_notify, &Globals.bFamChangeNotify)
1927 FN_GLOBAL_BOOL(lp_use_kerberos_keytab, &Globals.bUseKerberosKeytab)
1928 FN_GLOBAL_BOOL(lp_defer_sharing_violations, &Globals.bDeferSharingViolations)
1929 FN_GLOBAL_BOOL(lp_enable_privileges, &Globals.bEnablePrivileges)
1930 FN_GLOBAL_BOOL(lp_enable_asu_support, &Globals.bASUSupport)
1931 FN_GLOBAL_INTEGER(lp_os_level, &Globals.os_level)
1932 FN_GLOBAL_INTEGER(lp_max_ttl, &Globals.max_ttl)
1933 FN_GLOBAL_INTEGER(lp_max_wins_ttl, &Globals.max_wins_ttl)
1934 FN_GLOBAL_INTEGER(lp_min_wins_ttl, &Globals.min_wins_ttl)
1935 FN_GLOBAL_INTEGER(lp_max_log_size, &Globals.max_log_size)
1936 FN_GLOBAL_INTEGER(lp_max_open_files, &Globals.max_open_files)
1937 FN_GLOBAL_INTEGER(lp_maxxmit, &Globals.max_xmit)
1938 FN_GLOBAL_INTEGER(lp_maxmux, &Globals.max_mux)
1939 FN_GLOBAL_INTEGER(lp_passwordlevel, &Globals.pwordlevel)
1940 FN_GLOBAL_INTEGER(lp_usernamelevel, &Globals.unamelevel)
1941 FN_GLOBAL_INTEGER(lp_deadtime, &Globals.deadtime)
1942 FN_GLOBAL_INTEGER(lp_maxprotocol, &Globals.maxprotocol)
1943 FN_GLOBAL_INTEGER(lp_minprotocol, &Globals.minprotocol)
1944 FN_GLOBAL_INTEGER(lp_security, &Globals.security)
1945 FN_GLOBAL_LIST(lp_auth_methods, &Globals.AuthMethods)
1946 FN_GLOBAL_BOOL(lp_paranoid_server_security, &Globals.paranoid_server_security)
1947 FN_GLOBAL_INTEGER(lp_maxdisksize, &Globals.maxdisksize)
1948 FN_GLOBAL_INTEGER(lp_lpqcachetime, &Globals.lpqcachetime)
1949 FN_GLOBAL_INTEGER(lp_max_smbd_processes, &Globals.iMaxSmbdProcesses)
1950 FN_GLOBAL_INTEGER(_lp_disable_spoolss, &Globals.bDisableSpoolss)
1951 FN_GLOBAL_INTEGER(lp_syslog, &Globals.syslog)
1952 static FN_GLOBAL_INTEGER(lp_announce_as, &Globals.announce_as)
1953 FN_GLOBAL_INTEGER(lp_lm_announce, &Globals.lm_announce)
1954 FN_GLOBAL_INTEGER(lp_lm_interval, &Globals.lm_interval)
1955 FN_GLOBAL_INTEGER(lp_machine_password_timeout, &Globals.machine_password_timeout)
1956 FN_GLOBAL_INTEGER(lp_change_notify_timeout, &Globals.change_notify_timeout)
1957 FN_GLOBAL_INTEGER(lp_map_to_guest, &Globals.map_to_guest)
1958 FN_GLOBAL_INTEGER(lp_oplock_break_wait_time, &Globals.oplock_break_wait_time)
1959 FN_GLOBAL_INTEGER(lp_lock_spin_count, &Globals.iLockSpinCount)
1960 FN_GLOBAL_INTEGER(lp_lock_sleep_time, &Globals.iLockSpinTime)
1961 FN_GLOBAL_INTEGER(lp_usershare_max_shares, &Globals.iUsershareMaxShares)
1963 FN_LOCAL_STRING(lp_preexec, szPreExec)
1964 FN_LOCAL_STRING(lp_postexec, szPostExec)
1965 FN_LOCAL_STRING(lp_rootpreexec, szRootPreExec)
1966 FN_LOCAL_STRING(lp_rootpostexec, szRootPostExec)
1967 FN_LOCAL_STRING(lp_servicename, szService)
1968 FN_LOCAL_CONST_STRING(lp_const_servicename, szService)
1969 FN_LOCAL_STRING(lp_pathname, szPath)
1970 FN_LOCAL_STRING(lp_dontdescend, szDontdescend)
1971 FN_LOCAL_STRING(lp_username, szUsername)
1972 FN_LOCAL_LIST(lp_invalid_users, szInvalidUsers)
1973 FN_LOCAL_LIST(lp_valid_users, szValidUsers)
1974 FN_LOCAL_LIST(lp_admin_users, szAdminUsers)
1975 FN_GLOBAL_LIST(lp_svcctl_list, &Globals.szServicesList)
1976 FN_LOCAL_STRING(lp_cups_options, szCupsOptions)
1977 FN_GLOBAL_STRING(lp_cups_server, &Globals.szCupsServer)
1978 FN_GLOBAL_STRING(lp_iprint_server, &Globals.szIPrintServer)
1979 FN_LOCAL_STRING(lp_printcommand, szPrintcommand)
1980 FN_LOCAL_STRING(lp_lpqcommand, szLpqcommand)
1981 FN_LOCAL_STRING(lp_lprmcommand, szLprmcommand)
1982 FN_LOCAL_STRING(lp_lppausecommand, szLppausecommand)
1983 FN_LOCAL_STRING(lp_lpresumecommand, szLpresumecommand)
1984 FN_LOCAL_STRING(lp_queuepausecommand, szQueuepausecommand)
1985 FN_LOCAL_STRING(lp_queueresumecommand, szQueueresumecommand)
1986 static FN_LOCAL_STRING(_lp_printername, szPrintername)
1987 FN_LOCAL_LIST(lp_hostsallow, szHostsallow)
1988 FN_LOCAL_LIST(lp_hostsdeny, szHostsdeny)
1989 FN_LOCAL_STRING(lp_magicscript, szMagicScript)
1990 FN_LOCAL_STRING(lp_magicoutput, szMagicOutput)
1991 FN_LOCAL_STRING(lp_comment, comment)
1992 FN_LOCAL_STRING(lp_force_user, force_user)
1993 FN_LOCAL_STRING(lp_force_group, force_group)
1994 FN_LOCAL_LIST(lp_readlist, readlist)
1995 FN_LOCAL_LIST(lp_writelist, writelist)
1996 FN_LOCAL_LIST(lp_printer_admin, printer_admin)
1997 FN_LOCAL_STRING(lp_fstype, fstype)
1998 FN_LOCAL_LIST(lp_vfs_objects, szVfsObjects)
1999 FN_LOCAL_STRING(lp_msdfs_proxy, szMSDfsProxy)
2000 static FN_LOCAL_STRING(lp_volume, volume)
2001 FN_LOCAL_STRING(lp_mangled_map, szMangledMap)
2002 FN_LOCAL_STRING(lp_veto_files, szVetoFiles)
2003 FN_LOCAL_STRING(lp_hide_files, szHideFiles)
2004 FN_LOCAL_STRING(lp_veto_oplocks, szVetoOplockFiles)
2005 FN_LOCAL_BOOL(lp_msdfs_root, bMSDfsRoot)
2006 FN_LOCAL_STRING(lp_aio_write_behind, szAioWriteBehind)
2007 FN_LOCAL_STRING(lp_dfree_command, szDfree)
2008 FN_LOCAL_BOOL(lp_autoloaded, autoloaded)
2009 FN_LOCAL_BOOL(lp_preexec_close, bPreexecClose)
2010 FN_LOCAL_BOOL(lp_rootpreexec_close, bRootpreexecClose)
2011 FN_LOCAL_INTEGER(lp_casesensitive, iCaseSensitive)
2012 FN_LOCAL_BOOL(lp_preservecase, bCasePreserve)
2013 FN_LOCAL_BOOL(lp_shortpreservecase, bShortCasePreserve)
2014 FN_LOCAL_BOOL(lp_hide_dot_files, bHideDotFiles)
2015 FN_LOCAL_BOOL(lp_hide_special_files, bHideSpecialFiles)
2016 FN_LOCAL_BOOL(lp_hideunreadable, bHideUnReadable)
2017 FN_LOCAL_BOOL(lp_hideunwriteable_files, bHideUnWriteableFiles)
2018 FN_LOCAL_BOOL(lp_browseable, bBrowseable)
2019 FN_LOCAL_BOOL(lp_readonly, bRead_only)
2020 FN_LOCAL_BOOL(lp_no_set_dir, bNo_set_dir)
2021 FN_LOCAL_BOOL(lp_guest_ok, bGuest_ok)
2022 FN_LOCAL_BOOL(lp_guest_only, bGuest_only)
2023 FN_LOCAL_BOOL(lp_print_ok, bPrint_ok)
2024 FN_LOCAL_BOOL(lp_map_hidden, bMap_hidden)
2025 FN_LOCAL_BOOL(lp_map_archive, bMap_archive)
2026 FN_LOCAL_BOOL(lp_store_dos_attributes, bStoreDosAttributes)
2027 FN_LOCAL_BOOL(lp_locking, bLocking)
2028 FN_LOCAL_INTEGER(lp_strict_locking, iStrictLocking)
2029 FN_LOCAL_BOOL(lp_posix_locking, bPosixLocking)
2030 FN_LOCAL_BOOL(lp_share_modes, bShareModes)
2031 FN_LOCAL_BOOL(lp_oplocks, bOpLocks)
2032 FN_LOCAL_BOOL(lp_level2_oplocks, bLevel2OpLocks)
2033 FN_LOCAL_BOOL(lp_onlyuser, bOnlyUser)
2034 FN_LOCAL_BOOL(lp_manglednames, bMangledNames)
2035 FN_LOCAL_BOOL(lp_widelinks, bWidelinks)
2036 FN_LOCAL_BOOL(lp_symlinks, bSymlinks)
2037 FN_LOCAL_BOOL(lp_syncalways, bSyncAlways)
2038 FN_LOCAL_BOOL(lp_strict_allocate, bStrictAllocate)
2039 FN_LOCAL_BOOL(lp_strict_sync, bStrictSync)
2040 FN_LOCAL_BOOL(lp_map_system, bMap_system)
2041 FN_LOCAL_BOOL(lp_delete_readonly, bDeleteReadonly)
2042 FN_LOCAL_BOOL(lp_fake_oplocks, bFakeOplocks)
2043 FN_LOCAL_BOOL(lp_recursive_veto_delete, bDeleteVetoFiles)
2044 FN_LOCAL_BOOL(lp_dos_filemode, bDosFilemode)
2045 FN_LOCAL_BOOL(lp_dos_filetimes, bDosFiletimes)
2046 FN_LOCAL_BOOL(lp_dos_filetime_resolution, bDosFiletimeResolution)
2047 FN_LOCAL_BOOL(lp_fake_dir_create_times, bFakeDirCreateTimes)
2048 FN_LOCAL_BOOL(lp_blocking_locks, bBlockingLocks)
2049 FN_LOCAL_BOOL(lp_inherit_perms, bInheritPerms)
2050 FN_LOCAL_BOOL(lp_inherit_acls, bInheritACLS)
2051 FN_LOCAL_BOOL(lp_inherit_owner, bInheritOwner)
2052 FN_LOCAL_BOOL(lp_use_client_driver, bUseClientDriver)
2053 FN_LOCAL_BOOL(lp_default_devmode, bDefaultDevmode)
2054 FN_LOCAL_BOOL(lp_force_printername, bForcePrintername)
2055 FN_LOCAL_BOOL(lp_nt_acl_support, bNTAclSupport)
2056 FN_LOCAL_BOOL(lp_force_unknown_acl_user, bForceUnknownAclUser)
2057 FN_LOCAL_BOOL(lp_ea_support, bEASupport)
2058 FN_LOCAL_BOOL(_lp_use_sendfile, bUseSendfile)
2059 FN_LOCAL_BOOL(lp_profile_acls, bProfileAcls)
2060 FN_LOCAL_BOOL(lp_map_acl_inherit, bMap_acl_inherit)
2061 FN_LOCAL_BOOL(lp_afs_share, bAfs_Share)
2062 FN_LOCAL_BOOL(lp_acl_check_permissions, bAclCheckPermissions)
2063 FN_LOCAL_BOOL(lp_acl_group_control, bAclGroupControl)
2064 FN_LOCAL_BOOL(lp_acl_map_full_control, bAclMapFullControl)
2065 FN_LOCAL_INTEGER(lp_create_mask, iCreate_mask)
2066 FN_LOCAL_INTEGER(lp_force_create_mode, iCreate_force_mode)
2067 FN_LOCAL_INTEGER(lp_security_mask, iSecurity_mask)
2068 FN_LOCAL_INTEGER(lp_force_security_mode, iSecurity_force_mode)
2069 FN_LOCAL_INTEGER(lp_dir_mask, iDir_mask)
2070 FN_LOCAL_INTEGER(lp_force_dir_mode, iDir_force_mode)
2071 FN_LOCAL_INTEGER(lp_dir_security_mask, iDir_Security_mask)
2072 FN_LOCAL_INTEGER(lp_force_dir_security_mode, iDir_Security_force_mode)
2073 FN_LOCAL_INTEGER(lp_max_connections, iMaxConnections)
2074 FN_LOCAL_INTEGER(lp_defaultcase, iDefaultCase)
2075 FN_LOCAL_INTEGER(lp_minprintspace, iMinPrintSpace)
2076 FN_LOCAL_INTEGER(lp_printing, iPrinting)
2077 FN_LOCAL_INTEGER(lp_max_reported_jobs, iMaxReportedPrintJobs)
2078 FN_LOCAL_INTEGER(lp_oplock_contention_limit, iOplockContentionLimit)
2079 FN_LOCAL_INTEGER(lp_csc_policy, iCSCPolicy)
2080 FN_LOCAL_INTEGER(lp_write_cache_size, iWriteCacheSize)
2081 FN_LOCAL_INTEGER(lp_block_size, iBlock_size)
2082 FN_LOCAL_INTEGER(lp_dfree_cache_time, iDfreeCacheTime)
2083 FN_LOCAL_INTEGER(lp_allocation_roundup_size, iallocation_roundup_size)
2084 FN_LOCAL_INTEGER(lp_aio_read_size, iAioReadSize)
2085 FN_LOCAL_INTEGER(lp_aio_write_size, iAioWriteSize)
2086 FN_LOCAL_INTEGER(lp_map_readonly, iMap_readonly)
2087 FN_LOCAL_CHAR(lp_magicchar, magic_char)
2088 FN_GLOBAL_INTEGER(lp_winbind_cache_time, &Globals.winbind_cache_time)
2089 FN_GLOBAL_LIST(lp_winbind_nss_info, &Globals.szWinbindNssInfo)
2090 FN_GLOBAL_INTEGER(lp_algorithmic_rid_base, &Globals.AlgorithmicRidBase)
2091 FN_GLOBAL_INTEGER(lp_name_cache_timeout, &Globals.name_cache_timeout)
2092 FN_GLOBAL_INTEGER(lp_client_signing, &Globals.client_signing)
2093 FN_GLOBAL_INTEGER(lp_server_signing, &Globals.server_signing)
2095 /* local prototypes */
2097 static int map_parameter(const char *pszParmName);
2098 static BOOL set_boolean(BOOL *pb, const char *pszParmValue);
2099 static int getservicebyname(const char *pszServiceName,
2100 service * pserviceDest);
2101 static void copy_service(service * pserviceDest,
2102 service * pserviceSource, BOOL *pcopymapDest);
2103 static BOOL service_ok(int iService);
2104 static BOOL do_parameter(const char *pszParmName, const char *pszParmValue);
2105 static BOOL do_section(const char *pszSectionName);
2106 static void init_copymap(service * pservice);
2107 static BOOL hash_a_service(const char *name, int number);
2108 static void free_service_byindex(int iService);
2109 static char * canonicalize_servicename(const char *name);
2111 /* This is a helper function for parametrical options support. */
2112 /* It returns a pointer to parametrical option value if it exists or NULL otherwise */
2113 /* Actual parametrical functions are quite simple */
2114 static param_opt_struct *get_parametrics(int snum, const char *type, const char *option)
2116 BOOL global_section = False;
2117 char* param_key;
2118 param_opt_struct *data;
2120 if (snum >= iNumServices) return NULL;
2122 if (snum < 0) {
2123 data = Globals.param_opt;
2124 global_section = True;
2125 } else {
2126 data = ServicePtrs[snum]->param_opt;
2129 asprintf(&param_key, "%s:%s", type, option);
2130 if (!param_key) {
2131 DEBUG(0,("asprintf failed!\n"));
2132 return NULL;
2135 while (data) {
2136 if (strcmp(data->key, param_key) == 0) {
2137 string_free(&param_key);
2138 return data;
2140 data = data->next;
2143 if (!global_section) {
2144 /* Try to fetch the same option but from globals */
2145 /* but only if we are not already working with Globals */
2146 data = Globals.param_opt;
2147 while (data) {
2148 if (strcmp(data->key, param_key) == 0) {
2149 string_free(&param_key);
2150 return data;
2152 data = data->next;
2156 string_free(&param_key);
2158 return NULL;
2162 #define MISSING_PARAMETER(name) \
2163 DEBUG(0, ("%s(): value is NULL or empty!\n", #name))
2165 /*******************************************************************
2166 convenience routine to return int parameters.
2167 ********************************************************************/
2168 static int lp_int(const char *s)
2171 if (!s || !*s) {
2172 MISSING_PARAMETER(lp_int);
2173 return (-1);
2176 return atoi(s);
2179 /*******************************************************************
2180 convenience routine to return unsigned long parameters.
2181 ********************************************************************/
2182 static unsigned long lp_ulong(const char *s)
2185 if (!s || !*s) {
2186 MISSING_PARAMETER(lp_ulong);
2187 return (0);
2190 return strtoul(s, NULL, 10);
2193 /*******************************************************************
2194 convenience routine to return boolean parameters.
2195 ********************************************************************/
2196 static BOOL lp_bool(const char *s)
2198 BOOL ret = False;
2200 if (!s || !*s) {
2201 MISSING_PARAMETER(lp_bool);
2202 return False;
2205 if (!set_boolean(&ret,s)) {
2206 DEBUG(0,("lp_bool(%s): value is not boolean!\n",s));
2207 return False;
2210 return ret;
2213 /*******************************************************************
2214 convenience routine to return enum parameters.
2215 ********************************************************************/
2216 static int lp_enum(const char *s,const struct enum_list *_enum)
2218 int i;
2220 if (!s || !*s || !_enum) {
2221 MISSING_PARAMETER(lp_enum);
2222 return (-1);
2225 for (i=0; _enum[i].name; i++) {
2226 if (strequal(_enum[i].name,s))
2227 return _enum[i].value;
2230 DEBUG(0,("lp_enum(%s,enum): value is not in enum_list!\n",s));
2231 return (-1);
2234 #undef MISSING_PARAMETER
2236 /* DO NOT USE lp_parm_string ANYMORE!!!!
2237 * use lp_parm_const_string or lp_parm_talloc_string
2239 * lp_parm_string is only used to let old modules find this symbol
2241 #undef lp_parm_string
2242 char *lp_parm_string(const char *servicename, const char *type, const char *option)
2244 return lp_parm_talloc_string(lp_servicenumber(servicename), type, option, NULL);
2247 /* Return parametric option from a given service. Type is a part of option before ':' */
2248 /* Parametric option has following syntax: 'Type: option = value' */
2249 /* the returned value is talloced in lp_talloc */
2250 char *lp_parm_talloc_string(int snum, const char *type, const char *option, const char *def)
2252 param_opt_struct *data = get_parametrics(snum, type, option);
2254 if (data == NULL||data->value==NULL) {
2255 if (def) {
2256 return lp_string(def);
2257 } else {
2258 return NULL;
2262 return lp_string(data->value);
2265 /* Return parametric option from a given service. Type is a part of option before ':' */
2266 /* Parametric option has following syntax: 'Type: option = value' */
2267 const char *lp_parm_const_string(int snum, const char *type, const char *option, const char *def)
2269 param_opt_struct *data = get_parametrics(snum, type, option);
2271 if (data == NULL||data->value==NULL)
2272 return def;
2274 return data->value;
2277 /* Return parametric option from a given service. Type is a part of option before ':' */
2278 /* Parametric option has following syntax: 'Type: option = value' */
2280 const char **lp_parm_string_list(int snum, const char *type, const char *option, const char **def)
2282 param_opt_struct *data = get_parametrics(snum, type, option);
2284 if (data == NULL||data->value==NULL)
2285 return (const char **)def;
2287 if (data->list==NULL) {
2288 data->list = str_list_make(data->value, NULL);
2291 return (const char **)data->list;
2294 /* Return parametric option from a given service. Type is a part of option before ':' */
2295 /* Parametric option has following syntax: 'Type: option = value' */
2297 int lp_parm_int(int snum, const char *type, const char *option, int def)
2299 param_opt_struct *data = get_parametrics(snum, type, option);
2301 if (data && data->value && *data->value)
2302 return lp_int(data->value);
2304 return def;
2307 /* Return parametric option from a given service. Type is a part of option before ':' */
2308 /* Parametric option has following syntax: 'Type: option = value' */
2310 unsigned long lp_parm_ulong(int snum, const char *type, const char *option, unsigned long def)
2312 param_opt_struct *data = get_parametrics(snum, type, option);
2314 if (data && data->value && *data->value)
2315 return lp_ulong(data->value);
2317 return def;
2320 /* Return parametric option from a given service. Type is a part of option before ':' */
2321 /* Parametric option has following syntax: 'Type: option = value' */
2323 BOOL lp_parm_bool(int snum, const char *type, const char *option, BOOL def)
2325 param_opt_struct *data = get_parametrics(snum, type, option);
2327 if (data && data->value && *data->value)
2328 return lp_bool(data->value);
2330 return def;
2333 /* Return parametric option from a given service. Type is a part of option before ':' */
2334 /* Parametric option has following syntax: 'Type: option = value' */
2336 int lp_parm_enum(int snum, const char *type, const char *option,
2337 const struct enum_list *_enum, int def)
2339 param_opt_struct *data = get_parametrics(snum, type, option);
2341 if (data && data->value && *data->value && _enum)
2342 return lp_enum(data->value, _enum);
2344 return def;
2348 /***************************************************************************
2349 Initialise a service to the defaults.
2350 ***************************************************************************/
2352 static void init_service(service * pservice)
2354 memset((char *)pservice, '\0', sizeof(service));
2355 copy_service(pservice, &sDefault, NULL);
2358 /***************************************************************************
2359 Free the dynamically allocated parts of a service struct.
2360 ***************************************************************************/
2362 static void free_service(service *pservice)
2364 int i;
2365 param_opt_struct *data, *pdata;
2366 if (!pservice)
2367 return;
2369 if (pservice->szService)
2370 DEBUG(5, ("free_service: Freeing service %s\n",
2371 pservice->szService));
2373 string_free(&pservice->szService);
2374 SAFE_FREE(pservice->copymap);
2376 for (i = 0; parm_table[i].label; i++) {
2377 if ((parm_table[i].type == P_STRING ||
2378 parm_table[i].type == P_USTRING) &&
2379 parm_table[i].p_class == P_LOCAL)
2380 string_free((char **)
2381 (((char *)pservice) +
2382 PTR_DIFF(parm_table[i].ptr, &sDefault)));
2383 else if (parm_table[i].type == P_LIST &&
2384 parm_table[i].p_class == P_LOCAL)
2385 str_list_free((char ***)
2386 (((char *)pservice) +
2387 PTR_DIFF(parm_table[i].ptr, &sDefault)));
2390 data = pservice->param_opt;
2391 if (data)
2392 DEBUG(5,("Freeing parametrics:\n"));
2393 while (data) {
2394 DEBUG(5,("[%s = %s]\n", data->key, data->value));
2395 string_free(&data->key);
2396 string_free(&data->value);
2397 str_list_free(&data->list);
2398 pdata = data->next;
2399 SAFE_FREE(data);
2400 data = pdata;
2403 ZERO_STRUCTP(pservice);
2407 /***************************************************************************
2408 remove a service indexed in the ServicePtrs array from the ServiceHash
2409 and free the dynamically allocated parts
2410 ***************************************************************************/
2412 static void free_service_byindex(int idx)
2414 if ( !LP_SNUM_OK(idx) )
2415 return;
2417 ServicePtrs[idx]->valid = False;
2418 invalid_services[num_invalid_services++] = idx;
2420 /* we have to cleanup the hash record */
2422 if (ServicePtrs[idx]->szService) {
2423 char *canon_name = canonicalize_servicename( ServicePtrs[idx]->szService );
2425 tdb_delete_bystring(ServiceHash, canon_name );
2428 free_service(ServicePtrs[idx]);
2431 /***************************************************************************
2432 Add a new service to the services array initialising it with the given
2433 service.
2434 ***************************************************************************/
2436 static int add_a_service(const service *pservice, const char *name)
2438 int i;
2439 service tservice;
2440 int num_to_alloc = iNumServices + 1;
2441 param_opt_struct *data, *pdata;
2443 tservice = *pservice;
2445 /* it might already exist */
2446 if (name) {
2447 i = getservicebyname(name, NULL);
2448 if (i >= 0) {
2449 /* Clean all parametric options for service */
2450 /* They will be added during parsing again */
2451 data = ServicePtrs[i]->param_opt;
2452 while (data) {
2453 string_free(&data->key);
2454 string_free(&data->value);
2455 str_list_free(&data->list);
2456 pdata = data->next;
2457 SAFE_FREE(data);
2458 data = pdata;
2460 ServicePtrs[i]->param_opt = NULL;
2461 return (i);
2465 /* find an invalid one */
2466 i = iNumServices;
2467 if (num_invalid_services > 0) {
2468 i = invalid_services[--num_invalid_services];
2471 /* if not, then create one */
2472 if (i == iNumServices) {
2473 service **tsp;
2474 int *tinvalid;
2476 tsp = SMB_REALLOC_ARRAY_KEEP_OLD_ON_ERROR(ServicePtrs, service *, num_to_alloc);
2477 if (tsp == NULL) {
2478 DEBUG(0,("add_a_service: failed to enlarge ServicePtrs!\n"));
2479 return (-1);
2481 ServicePtrs = tsp;
2482 ServicePtrs[iNumServices] = SMB_MALLOC_P(service);
2483 if (!ServicePtrs[iNumServices]) {
2484 DEBUG(0,("add_a_service: out of memory!\n"));
2485 return (-1);
2487 iNumServices++;
2489 /* enlarge invalid_services here for now... */
2490 tinvalid = SMB_REALLOC_ARRAY_KEEP_OLD_ON_ERROR(invalid_services, int,
2491 num_to_alloc);
2492 if (tinvalid == NULL) {
2493 DEBUG(0,("add_a_service: failed to enlarge "
2494 "invalid_services!\n"));
2495 return (-1);
2497 invalid_services = tinvalid;
2498 } else {
2499 free_service_byindex(i);
2502 ServicePtrs[i]->valid = True;
2504 init_service(ServicePtrs[i]);
2505 copy_service(ServicePtrs[i], &tservice, NULL);
2506 if (name)
2507 string_set(&ServicePtrs[i]->szService, name);
2509 DEBUG(8,("add_a_service: Creating snum = %d for %s\n",
2510 i, ServicePtrs[i]->szService));
2512 if (!hash_a_service(ServicePtrs[i]->szService, i)) {
2513 return (-1);
2516 return (i);
2519 /***************************************************************************
2520 Convert a string to uppercase and remove whitespaces.
2521 ***************************************************************************/
2523 static char *canonicalize_servicename(const char *src)
2525 static fstring canon; /* is fstring large enough? */
2527 if ( !src ) {
2528 DEBUG(0,("canonicalize_servicename: NULL source name!\n"));
2529 return NULL;
2532 fstrcpy( canon, src );
2533 strlower_m( canon );
2535 return canon;
2538 /***************************************************************************
2539 Add a name/index pair for the services array to the hash table.
2540 ***************************************************************************/
2542 static BOOL hash_a_service(const char *name, int idx)
2544 char *canon_name;
2546 if ( !ServiceHash ) {
2547 DEBUG(10,("hash_a_service: creating tdb servicehash\n"));
2548 ServiceHash = tdb_open("servicehash", 1031, TDB_INTERNAL,
2549 (O_RDWR|O_CREAT), 0600);
2550 if ( !ServiceHash ) {
2551 DEBUG(0,("hash_a_service: open tdb servicehash failed!\n"));
2552 return False;
2556 DEBUG(10,("hash_a_service: hashing index %d for service name %s\n",
2557 idx, name));
2559 if ( !(canon_name = canonicalize_servicename( name )) )
2560 return False;
2562 tdb_store_int32(ServiceHash, canon_name, idx);
2564 return True;
2567 /***************************************************************************
2568 Add a new home service, with the specified home directory, defaults coming
2569 from service ifrom.
2570 ***************************************************************************/
2572 BOOL lp_add_home(const char *pszHomename, int iDefaultService,
2573 const char *user, const char *pszHomedir)
2575 int i;
2576 pstring newHomedir;
2578 i = add_a_service(ServicePtrs[iDefaultService], pszHomename);
2580 if (i < 0)
2581 return (False);
2583 if (!(*(ServicePtrs[iDefaultService]->szPath))
2584 || strequal(ServicePtrs[iDefaultService]->szPath, lp_pathname(GLOBAL_SECTION_SNUM))) {
2585 pstrcpy(newHomedir, pszHomedir);
2586 string_set(&ServicePtrs[i]->szPath, newHomedir);
2589 if (!(*(ServicePtrs[i]->comment))) {
2590 pstring comment;
2591 slprintf(comment, sizeof(comment) - 1,
2592 "Home directory of %s", user);
2593 string_set(&ServicePtrs[i]->comment, comment);
2596 /* set the browseable flag from the global default */
2598 ServicePtrs[i]->bBrowseable = sDefault.bBrowseable;
2600 ServicePtrs[i]->autoloaded = True;
2602 DEBUG(3, ("adding home's share [%s] for user '%s' at '%s'\n", pszHomename,
2603 user, ServicePtrs[i]->szPath ));
2605 return (True);
2608 /***************************************************************************
2609 Add a new service, based on an old one.
2610 ***************************************************************************/
2612 int lp_add_service(const char *pszService, int iDefaultService)
2614 return (add_a_service(ServicePtrs[iDefaultService], pszService));
2617 /***************************************************************************
2618 Add the IPC service.
2619 ***************************************************************************/
2621 static BOOL lp_add_ipc(const char *ipc_name, BOOL guest_ok)
2623 pstring comment;
2624 int i = add_a_service(&sDefault, ipc_name);
2626 if (i < 0)
2627 return (False);
2629 slprintf(comment, sizeof(comment) - 1,
2630 "IPC Service (%s)", Globals.szServerString);
2632 string_set(&ServicePtrs[i]->szPath, tmpdir());
2633 string_set(&ServicePtrs[i]->szUsername, "");
2634 string_set(&ServicePtrs[i]->comment, comment);
2635 string_set(&ServicePtrs[i]->fstype, "IPC");
2636 ServicePtrs[i]->iMaxConnections = 0;
2637 ServicePtrs[i]->bAvailable = True;
2638 ServicePtrs[i]->bRead_only = True;
2639 ServicePtrs[i]->bGuest_only = False;
2640 ServicePtrs[i]->bGuest_ok = guest_ok;
2641 ServicePtrs[i]->bPrint_ok = False;
2642 ServicePtrs[i]->bBrowseable = sDefault.bBrowseable;
2644 DEBUG(3, ("adding IPC service\n"));
2646 return (True);
2649 /***************************************************************************
2650 Add a new printer service, with defaults coming from service iFrom.
2651 ***************************************************************************/
2653 BOOL lp_add_printer(const char *pszPrintername, int iDefaultService)
2655 const char *comment = "From Printcap";
2656 int i = add_a_service(ServicePtrs[iDefaultService], pszPrintername);
2658 if (i < 0)
2659 return (False);
2661 /* note that we do NOT default the availability flag to True - */
2662 /* we take it from the default service passed. This allows all */
2663 /* dynamic printers to be disabled by disabling the [printers] */
2664 /* entry (if/when the 'available' keyword is implemented!). */
2666 /* the printer name is set to the service name. */
2667 string_set(&ServicePtrs[i]->szPrintername, pszPrintername);
2668 string_set(&ServicePtrs[i]->comment, comment);
2670 /* set the browseable flag from the gloabl default */
2671 ServicePtrs[i]->bBrowseable = sDefault.bBrowseable;
2673 /* Printers cannot be read_only. */
2674 ServicePtrs[i]->bRead_only = False;
2675 /* No share modes on printer services. */
2676 ServicePtrs[i]->bShareModes = False;
2677 /* No oplocks on printer services. */
2678 ServicePtrs[i]->bOpLocks = False;
2679 /* Printer services must be printable. */
2680 ServicePtrs[i]->bPrint_ok = True;
2682 DEBUG(3, ("adding printer service %s\n", pszPrintername));
2684 return (True);
2687 /***************************************************************************
2688 Map a parameter's string representation to something we can use.
2689 Returns False if the parameter string is not recognised, else TRUE.
2690 ***************************************************************************/
2692 static int map_parameter(const char *pszParmName)
2694 int iIndex;
2696 if (*pszParmName == '-')
2697 return (-1);
2699 for (iIndex = 0; parm_table[iIndex].label; iIndex++)
2700 if (strwicmp(parm_table[iIndex].label, pszParmName) == 0)
2701 return (iIndex);
2703 /* Warn only if it isn't parametric option */
2704 if (strchr(pszParmName, ':') == NULL)
2705 DEBUG(0, ("Unknown parameter encountered: \"%s\"\n", pszParmName));
2706 /* We do return 'fail' for parametric options as well because they are
2707 stored in different storage
2709 return (-1);
2712 /***************************************************************************
2713 Show all parameter's name, type, [values,] and flags.
2714 ***************************************************************************/
2716 void show_parameter_list(void)
2718 int classIndex, parmIndex, enumIndex, flagIndex;
2719 BOOL hadFlag;
2720 const char *section_names[] = { "local", "global", NULL};
2721 const char *type[] = { "P_BOOL", "P_BOOLREV", "P_CHAR", "P_INTEGER",
2722 "P_OCTAL", "P_LIST", "P_STRING", "P_USTRING", "P_GSTRING",
2723 "P_UGSTRING", "P_ENUM", "P_SEP"};
2724 unsigned flags[] = { FLAG_BASIC, FLAG_SHARE, FLAG_PRINT, FLAG_GLOBAL,
2725 FLAG_WIZARD, FLAG_ADVANCED, FLAG_DEVELOPER, FLAG_DEPRECATED,
2726 FLAG_HIDE, FLAG_DOS_STRING};
2727 const char *flag_names[] = { "FLAG_BASIC", "FLAG_SHARE", "FLAG_PRINT",
2728 "FLAG_GLOBAL", "FLAG_WIZARD", "FLAG_ADVANCED", "FLAG_DEVELOPER",
2729 "FLAG_DEPRECATED", "FLAG_HIDE", "FLAG_DOS_STRING", NULL};
2731 for ( classIndex=0; section_names[classIndex]; classIndex++) {
2732 printf("[%s]\n", section_names[classIndex]);
2733 for (parmIndex = 0; parm_table[parmIndex].label; parmIndex++) {
2734 if (parm_table[parmIndex].p_class == classIndex) {
2735 printf("%s=%s",
2736 parm_table[parmIndex].label,
2737 type[parm_table[parmIndex].type]);
2738 switch (parm_table[parmIndex].type) {
2739 case P_ENUM:
2740 printf(",");
2741 for (enumIndex=0; parm_table[parmIndex].enum_list[enumIndex].name; enumIndex++)
2742 printf("%s%s",
2743 enumIndex ? "|" : "",
2744 parm_table[parmIndex].enum_list[enumIndex].name);
2745 break;
2746 default:
2747 break;
2749 printf(",");
2750 hadFlag = False;
2751 for ( flagIndex=0; flag_names[flagIndex]; flagIndex++ ) {
2752 if (parm_table[parmIndex].flags & flags[flagIndex]) {
2753 printf("%s%s",
2754 hadFlag ? "|" : "",
2755 flag_names[flagIndex]);
2756 hadFlag = True;
2759 printf("\n");
2765 /***************************************************************************
2766 Set a boolean variable from the text value stored in the passed string.
2767 Returns True in success, False if the passed string does not correctly
2768 represent a boolean.
2769 ***************************************************************************/
2771 static BOOL set_boolean(BOOL *pb, const char *pszParmValue)
2773 BOOL bRetval;
2775 bRetval = True;
2776 if (strwicmp(pszParmValue, "yes") == 0 ||
2777 strwicmp(pszParmValue, "true") == 0 ||
2778 strwicmp(pszParmValue, "1") == 0)
2779 *pb = True;
2780 else if (strwicmp(pszParmValue, "no") == 0 ||
2781 strwicmp(pszParmValue, "False") == 0 ||
2782 strwicmp(pszParmValue, "0") == 0)
2783 *pb = False;
2784 else {
2785 DEBUG(0,
2786 ("ERROR: Badly formed boolean in configuration file: \"%s\".\n",
2787 pszParmValue));
2788 bRetval = False;
2790 return (bRetval);
2793 /***************************************************************************
2794 Find a service by name. Otherwise works like get_service.
2795 ***************************************************************************/
2797 static int getservicebyname(const char *pszServiceName, service * pserviceDest)
2799 int iService = -1;
2800 char *canon_name;
2802 if (ServiceHash != NULL) {
2803 if ( !(canon_name = canonicalize_servicename( pszServiceName )) )
2804 return -1;
2806 iService = tdb_fetch_int32(ServiceHash, canon_name );
2808 if (LP_SNUM_OK(iService)) {
2809 if (pserviceDest != NULL) {
2810 copy_service(pserviceDest, ServicePtrs[iService], NULL);
2812 } else {
2813 iService = -1;
2817 return (iService);
2820 /***************************************************************************
2821 Copy a service structure to another.
2822 If pcopymapDest is NULL then copy all fields
2823 ***************************************************************************/
2825 static void copy_service(service * pserviceDest, service * pserviceSource, BOOL *pcopymapDest)
2827 int i;
2828 BOOL bcopyall = (pcopymapDest == NULL);
2829 param_opt_struct *data, *pdata, *paramo;
2830 BOOL not_added;
2832 for (i = 0; parm_table[i].label; i++)
2833 if (parm_table[i].ptr && parm_table[i].p_class == P_LOCAL &&
2834 (bcopyall || pcopymapDest[i])) {
2835 void *def_ptr = parm_table[i].ptr;
2836 void *src_ptr =
2837 ((char *)pserviceSource) + PTR_DIFF(def_ptr,
2838 &sDefault);
2839 void *dest_ptr =
2840 ((char *)pserviceDest) + PTR_DIFF(def_ptr,
2841 &sDefault);
2843 switch (parm_table[i].type) {
2844 case P_BOOL:
2845 case P_BOOLREV:
2846 *(BOOL *)dest_ptr = *(BOOL *)src_ptr;
2847 break;
2849 case P_INTEGER:
2850 case P_ENUM:
2851 case P_OCTAL:
2852 *(int *)dest_ptr = *(int *)src_ptr;
2853 break;
2855 case P_CHAR:
2856 *(char *)dest_ptr = *(char *)src_ptr;
2857 break;
2859 case P_STRING:
2860 string_set((char **)dest_ptr,
2861 *(char **)src_ptr);
2862 break;
2864 case P_USTRING:
2865 string_set((char **)dest_ptr,
2866 *(char **)src_ptr);
2867 strupper_m(*(char **)dest_ptr);
2868 break;
2869 case P_LIST:
2870 str_list_free((char ***)dest_ptr);
2871 str_list_copy((char ***)dest_ptr, *(const char ***)src_ptr);
2872 break;
2873 default:
2874 break;
2878 if (bcopyall) {
2879 init_copymap(pserviceDest);
2880 if (pserviceSource->copymap)
2881 memcpy((void *)pserviceDest->copymap,
2882 (void *)pserviceSource->copymap,
2883 sizeof(BOOL) * NUMPARAMETERS);
2886 data = pserviceSource->param_opt;
2887 while (data) {
2888 not_added = True;
2889 pdata = pserviceDest->param_opt;
2890 /* Traverse destination */
2891 while (pdata) {
2892 /* If we already have same option, override it */
2893 if (strcmp(pdata->key, data->key) == 0) {
2894 string_free(&pdata->value);
2895 str_list_free(&data->list);
2896 pdata->value = SMB_STRDUP(data->value);
2897 not_added = False;
2898 break;
2900 pdata = pdata->next;
2902 if (not_added) {
2903 paramo = SMB_XMALLOC_P(param_opt_struct);
2904 paramo->key = SMB_STRDUP(data->key);
2905 paramo->value = SMB_STRDUP(data->value);
2906 paramo->list = NULL;
2907 DLIST_ADD(pserviceDest->param_opt, paramo);
2909 data = data->next;
2913 /***************************************************************************
2914 Check a service for consistency. Return False if the service is in any way
2915 incomplete or faulty, else True.
2916 ***************************************************************************/
2918 static BOOL service_ok(int iService)
2920 BOOL bRetval;
2922 bRetval = True;
2923 if (ServicePtrs[iService]->szService[0] == '\0') {
2924 DEBUG(0, ("The following message indicates an internal error:\n"));
2925 DEBUG(0, ("No service name in service entry.\n"));
2926 bRetval = False;
2929 /* The [printers] entry MUST be printable. I'm all for flexibility, but */
2930 /* I can't see why you'd want a non-printable printer service... */
2931 if (strwicmp(ServicePtrs[iService]->szService, PRINTERS_NAME) == 0) {
2932 if (!ServicePtrs[iService]->bPrint_ok) {
2933 DEBUG(0, ("WARNING: [%s] service MUST be printable!\n",
2934 ServicePtrs[iService]->szService));
2935 ServicePtrs[iService]->bPrint_ok = True;
2937 /* [printers] service must also be non-browsable. */
2938 if (ServicePtrs[iService]->bBrowseable)
2939 ServicePtrs[iService]->bBrowseable = False;
2942 if (ServicePtrs[iService]->szPath[0] == '\0' &&
2943 strwicmp(ServicePtrs[iService]->szService, HOMES_NAME) != 0 &&
2944 ServicePtrs[iService]->szMSDfsProxy[0] == '\0'
2946 DEBUG(0, ("WARNING: No path in service %s - making it unavailable!\n",
2947 ServicePtrs[iService]->szService));
2948 ServicePtrs[iService]->bAvailable = False;
2951 /* If a service is flagged unavailable, log the fact at level 0. */
2952 if (!ServicePtrs[iService]->bAvailable)
2953 DEBUG(1, ("NOTE: Service %s is flagged unavailable.\n",
2954 ServicePtrs[iService]->szService));
2956 return (bRetval);
2959 static struct file_lists {
2960 struct file_lists *next;
2961 char *name;
2962 char *subfname;
2963 time_t modtime;
2964 } *file_lists = NULL;
2966 /*******************************************************************
2967 Keep a linked list of all config files so we know when one has changed
2968 it's date and needs to be reloaded.
2969 ********************************************************************/
2971 static void add_to_file_list(const char *fname, const char *subfname)
2973 struct file_lists *f = file_lists;
2975 while (f) {
2976 if (f->name && !strcmp(f->name, fname))
2977 break;
2978 f = f->next;
2981 if (!f) {
2982 f = SMB_MALLOC_P(struct file_lists);
2983 if (!f)
2984 return;
2985 f->next = file_lists;
2986 f->name = SMB_STRDUP(fname);
2987 if (!f->name) {
2988 SAFE_FREE(f);
2989 return;
2991 f->subfname = SMB_STRDUP(subfname);
2992 if (!f->subfname) {
2993 SAFE_FREE(f);
2994 return;
2996 file_lists = f;
2997 f->modtime = file_modtime(subfname);
2998 } else {
2999 time_t t = file_modtime(subfname);
3000 if (t)
3001 f->modtime = t;
3005 /*******************************************************************
3006 Check if a config file has changed date.
3007 ********************************************************************/
3009 BOOL lp_file_list_changed(void)
3011 struct file_lists *f = file_lists;
3013 DEBUG(6, ("lp_file_list_changed()\n"));
3015 while (f) {
3016 pstring n2;
3017 time_t mod_time;
3019 pstrcpy(n2, f->name);
3020 standard_sub_basic( get_current_username(), n2, sizeof(n2) );
3022 DEBUGADD(6, ("file %s -> %s last mod_time: %s\n",
3023 f->name, n2, ctime(&f->modtime)));
3025 mod_time = file_modtime(n2);
3027 if (mod_time && ((f->modtime != mod_time) || (f->subfname == NULL) || (strcmp(n2, f->subfname) != 0))) {
3028 DEBUGADD(6,
3029 ("file %s modified: %s\n", n2,
3030 ctime(&mod_time)));
3031 f->modtime = mod_time;
3032 SAFE_FREE(f->subfname);
3033 f->subfname = SMB_STRDUP(n2);
3034 return (True);
3036 f = f->next;
3038 return (False);
3041 /***************************************************************************
3042 Run standard_sub_basic on netbios name... needed because global_myname
3043 is not accessed through any lp_ macro.
3044 Note: We must *NOT* use string_set() here as ptr points to global_myname.
3045 ***************************************************************************/
3047 static BOOL handle_netbios_name(int snum, const char *pszParmValue, char **ptr)
3049 BOOL ret;
3050 pstring netbios_name;
3052 pstrcpy(netbios_name, pszParmValue);
3054 standard_sub_basic(get_current_username(), netbios_name,sizeof(netbios_name));
3056 ret = set_global_myname(netbios_name);
3057 string_set(&Globals.szNetbiosName,global_myname());
3059 DEBUG(4, ("handle_netbios_name: set global_myname to: %s\n",
3060 global_myname()));
3062 return ret;
3065 static BOOL handle_charset(int snum, const char *pszParmValue, char **ptr)
3067 if (strcmp(*ptr, pszParmValue) != 0) {
3068 string_set(ptr, pszParmValue);
3069 init_iconv();
3071 return True;
3076 static BOOL handle_workgroup(int snum, const char *pszParmValue, char **ptr)
3078 BOOL ret;
3080 ret = set_global_myworkgroup(pszParmValue);
3081 string_set(&Globals.szWorkgroup,lp_workgroup());
3083 return ret;
3086 static BOOL handle_netbios_scope(int snum, const char *pszParmValue, char **ptr)
3088 BOOL ret;
3090 ret = set_global_scope(pszParmValue);
3091 string_set(&Globals.szNetbiosScope,global_scope());
3093 return ret;
3096 static BOOL handle_netbios_aliases(int snum, const char *pszParmValue, char **ptr)
3098 str_list_free(&Globals.szNetbiosAliases);
3099 Globals.szNetbiosAliases = str_list_make(pszParmValue, NULL);
3100 return set_netbios_aliases((const char **)Globals.szNetbiosAliases);
3103 /***************************************************************************
3104 Handle the include operation.
3105 ***************************************************************************/
3107 static BOOL handle_include(int snum, const char *pszParmValue, char **ptr)
3109 pstring fname;
3110 pstrcpy(fname, pszParmValue);
3112 standard_sub_basic(get_current_username(), fname,sizeof(fname));
3114 add_to_file_list(pszParmValue, fname);
3116 string_set(ptr, fname);
3118 if (file_exist(fname, NULL))
3119 return (pm_process(fname, do_section, do_parameter));
3121 DEBUG(2, ("Can't find include file %s\n", fname));
3123 return (False);
3126 /***************************************************************************
3127 Handle the interpretation of the copy parameter.
3128 ***************************************************************************/
3130 static BOOL handle_copy(int snum, const char *pszParmValue, char **ptr)
3132 BOOL bRetval;
3133 int iTemp;
3134 service serviceTemp;
3136 string_set(ptr, pszParmValue);
3138 init_service(&serviceTemp);
3140 bRetval = False;
3142 DEBUG(3, ("Copying service from service %s\n", pszParmValue));
3144 if ((iTemp = getservicebyname(pszParmValue, &serviceTemp)) >= 0) {
3145 if (iTemp == iServiceIndex) {
3146 DEBUG(0, ("Can't copy service %s - unable to copy self!\n", pszParmValue));
3147 } else {
3148 copy_service(ServicePtrs[iServiceIndex],
3149 &serviceTemp,
3150 ServicePtrs[iServiceIndex]->copymap);
3151 bRetval = True;
3153 } else {
3154 DEBUG(0, ("Unable to copy service - source not found: %s\n", pszParmValue));
3155 bRetval = False;
3158 free_service(&serviceTemp);
3159 return (bRetval);
3162 /***************************************************************************
3163 Handle idmap/non unix account uid and gid allocation parameters. The format of these
3164 parameters is:
3166 [global]
3168 idmap uid = 1000-1999
3169 idmap gid = 700-899
3171 We only do simple parsing checks here. The strings are parsed into useful
3172 structures in the idmap daemon code.
3174 ***************************************************************************/
3176 /* Some lp_ routines to return idmap [ug]id information */
3178 static uid_t idmap_uid_low, idmap_uid_high;
3179 static gid_t idmap_gid_low, idmap_gid_high;
3181 BOOL lp_idmap_uid(uid_t *low, uid_t *high)
3183 if (idmap_uid_low == 0 || idmap_uid_high == 0)
3184 return False;
3186 if (low)
3187 *low = idmap_uid_low;
3189 if (high)
3190 *high = idmap_uid_high;
3192 return True;
3195 BOOL lp_idmap_gid(gid_t *low, gid_t *high)
3197 if (idmap_gid_low == 0 || idmap_gid_high == 0)
3198 return False;
3200 if (low)
3201 *low = idmap_gid_low;
3203 if (high)
3204 *high = idmap_gid_high;
3206 return True;
3209 /* Do some simple checks on "idmap [ug]id" parameter values */
3211 static BOOL handle_idmap_uid(int snum, const char *pszParmValue, char **ptr)
3213 uint32 low, high;
3215 if (sscanf(pszParmValue, "%u-%u", &low, &high) != 2 || high < low)
3216 return False;
3218 /* Parse OK */
3220 string_set(ptr, pszParmValue);
3222 idmap_uid_low = low;
3223 idmap_uid_high = high;
3225 return True;
3228 static BOOL handle_idmap_gid(int snum, const char *pszParmValue, char **ptr)
3230 uint32 low, high;
3232 if (sscanf(pszParmValue, "%u-%u", &low, &high) != 2 || high < low)
3233 return False;
3235 /* Parse OK */
3237 string_set(ptr, pszParmValue);
3239 idmap_gid_low = low;
3240 idmap_gid_high = high;
3242 return True;
3245 /***************************************************************************
3246 Handle the DEBUG level list.
3247 ***************************************************************************/
3249 static BOOL handle_debug_list( int snum, const char *pszParmValueIn, char **ptr )
3251 pstring pszParmValue;
3253 pstrcpy(pszParmValue, pszParmValueIn);
3254 string_set(ptr, pszParmValueIn);
3255 return debug_parse_levels( pszParmValue );
3258 /***************************************************************************
3259 Handle ldap suffixes - default to ldapsuffix if sub-suffixes are not defined.
3260 ***************************************************************************/
3262 static char* append_ldap_suffix( const char *str )
3264 char *suffix_string;
3267 if (!lp_talloc)
3268 lp_talloc = talloc_init("lp_talloc");
3270 suffix_string = talloc_asprintf( lp_talloc, "%s,%s", str, Globals.szLdapSuffix );
3271 if ( !suffix_string ) {
3272 DEBUG(0,("append_ldap_suffix: talloc_asprintf() failed!\n"));
3273 return NULL;
3276 return suffix_string;
3279 char *lp_ldap_machine_suffix(void)
3281 if (Globals.szLdapMachineSuffix[0])
3282 return append_ldap_suffix(Globals.szLdapMachineSuffix);
3284 return lp_string(Globals.szLdapSuffix);
3287 char *lp_ldap_user_suffix(void)
3289 if (Globals.szLdapUserSuffix[0])
3290 return append_ldap_suffix(Globals.szLdapUserSuffix);
3292 return lp_string(Globals.szLdapSuffix);
3295 char *lp_ldap_group_suffix(void)
3297 if (Globals.szLdapGroupSuffix[0])
3298 return append_ldap_suffix(Globals.szLdapGroupSuffix);
3300 return lp_string(Globals.szLdapSuffix);
3303 char *lp_ldap_idmap_suffix(void)
3305 if (Globals.szLdapIdmapSuffix[0])
3306 return append_ldap_suffix(Globals.szLdapIdmapSuffix);
3308 return lp_string(Globals.szLdapSuffix);
3311 /****************************************************************************
3312 set the value for a P_ENUM
3313 ***************************************************************************/
3315 static void lp_set_enum_parm( struct parm_struct *parm, const char *pszParmValue,
3316 int *ptr )
3318 int i;
3320 for (i = 0; parm->enum_list[i].name; i++) {
3321 if ( strequal(pszParmValue, parm->enum_list[i].name)) {
3322 *ptr = parm->enum_list[i].value;
3323 break;
3328 /***************************************************************************
3329 ***************************************************************************/
3331 static BOOL handle_printing(int snum, const char *pszParmValue, char **ptr)
3333 static int parm_num = -1;
3334 service *s;
3336 if ( parm_num == -1 )
3337 parm_num = map_parameter( "printing" );
3339 lp_set_enum_parm( &parm_table[parm_num], pszParmValue, (int*)ptr );
3341 if ( snum < 0 )
3342 s = &sDefault;
3343 else
3344 s = ServicePtrs[snum];
3346 init_printer_values( s );
3348 return True;
3352 /***************************************************************************
3353 Initialise a copymap.
3354 ***************************************************************************/
3356 static void init_copymap(service * pservice)
3358 int i;
3359 SAFE_FREE(pservice->copymap);
3360 pservice->copymap = SMB_MALLOC_ARRAY(BOOL,NUMPARAMETERS);
3361 if (!pservice->copymap)
3362 DEBUG(0,
3363 ("Couldn't allocate copymap!! (size %d)\n",
3364 (int)NUMPARAMETERS));
3365 else
3366 for (i = 0; i < NUMPARAMETERS; i++)
3367 pservice->copymap[i] = True;
3370 /***************************************************************************
3371 Return the local pointer to a parameter given the service number and the
3372 pointer into the default structure.
3373 ***************************************************************************/
3375 void *lp_local_ptr(int snum, void *ptr)
3377 return (void *)(((char *)ServicePtrs[snum]) + PTR_DIFF(ptr, &sDefault));
3380 /***************************************************************************
3381 Process a parameter for a particular service number. If snum < 0
3382 then assume we are in the globals.
3383 ***************************************************************************/
3385 BOOL lp_do_parameter(int snum, const char *pszParmName, const char *pszParmValue)
3387 int parmnum, i, slen;
3388 void *parm_ptr = NULL; /* where we are going to store the result */
3389 void *def_ptr = NULL;
3390 pstring param_key;
3391 char *sep;
3392 param_opt_struct *paramo, *data;
3393 BOOL not_added;
3395 parmnum = map_parameter(pszParmName);
3397 if (parmnum < 0) {
3398 if ((sep=strchr(pszParmName, ':')) != NULL) {
3399 *sep = '\0';
3400 ZERO_STRUCT(param_key);
3401 pstr_sprintf(param_key, "%s:", pszParmName);
3402 slen = strlen(param_key);
3403 pstrcat(param_key, sep+1);
3404 trim_char(param_key+slen, ' ', ' ');
3405 not_added = True;
3406 data = (snum < 0) ? Globals.param_opt :
3407 ServicePtrs[snum]->param_opt;
3408 /* Traverse destination */
3409 while (data) {
3410 /* If we already have same option, override it */
3411 if (strcmp(data->key, param_key) == 0) {
3412 string_free(&data->value);
3413 str_list_free(&data->list);
3414 data->value = SMB_STRDUP(pszParmValue);
3415 not_added = False;
3416 break;
3418 data = data->next;
3420 if (not_added) {
3421 paramo = SMB_XMALLOC_P(param_opt_struct);
3422 paramo->key = SMB_STRDUP(param_key);
3423 paramo->value = SMB_STRDUP(pszParmValue);
3424 paramo->list = NULL;
3425 if (snum < 0) {
3426 DLIST_ADD(Globals.param_opt, paramo);
3427 } else {
3428 DLIST_ADD(ServicePtrs[snum]->param_opt, paramo);
3432 *sep = ':';
3433 return (True);
3435 DEBUG(0, ("Ignoring unknown parameter \"%s\"\n", pszParmName));
3436 return (True);
3439 if (parm_table[parmnum].flags & FLAG_DEPRECATED) {
3440 DEBUG(1, ("WARNING: The \"%s\" option is deprecated\n",
3441 pszParmName));
3444 def_ptr = parm_table[parmnum].ptr;
3446 /* we might point at a service, the default service or a global */
3447 if (snum < 0) {
3448 parm_ptr = def_ptr;
3449 } else {
3450 if (parm_table[parmnum].p_class == P_GLOBAL) {
3451 DEBUG(0,
3452 ("Global parameter %s found in service section!\n",
3453 pszParmName));
3454 return (True);
3456 parm_ptr =
3457 ((char *)ServicePtrs[snum]) + PTR_DIFF(def_ptr,
3458 &sDefault);
3461 if (snum >= 0) {
3462 if (!ServicePtrs[snum]->copymap)
3463 init_copymap(ServicePtrs[snum]);
3465 /* this handles the aliases - set the copymap for other entries with
3466 the same data pointer */
3467 for (i = 0; parm_table[i].label; i++)
3468 if (parm_table[i].ptr == parm_table[parmnum].ptr)
3469 ServicePtrs[snum]->copymap[i] = False;
3472 /* if it is a special case then go ahead */
3473 if (parm_table[parmnum].special) {
3474 parm_table[parmnum].special(snum, pszParmValue, (char **)parm_ptr);
3475 return (True);
3478 /* now switch on the type of variable it is */
3479 switch (parm_table[parmnum].type)
3481 case P_BOOL:
3482 *(BOOL *)parm_ptr = lp_bool(pszParmValue);
3483 break;
3485 case P_BOOLREV:
3486 *(BOOL *)parm_ptr = !lp_bool(pszParmValue);
3487 break;
3489 case P_INTEGER:
3490 *(int *)parm_ptr = lp_int(pszParmValue);
3491 break;
3493 case P_CHAR:
3494 *(char *)parm_ptr = *pszParmValue;
3495 break;
3497 case P_OCTAL:
3498 i = sscanf(pszParmValue, "%o", (int *)parm_ptr);
3499 if ( i != 1 ) {
3500 DEBUG ( 0, ("Invalid octal number %s\n", pszParmName ));
3502 break;
3504 case P_LIST:
3505 str_list_free((char ***)parm_ptr);
3506 *(char ***)parm_ptr = str_list_make(pszParmValue, NULL);
3507 break;
3509 case P_STRING:
3510 string_set((char **)parm_ptr, pszParmValue);
3511 break;
3513 case P_USTRING:
3514 string_set((char **)parm_ptr, pszParmValue);
3515 strupper_m(*(char **)parm_ptr);
3516 break;
3518 case P_GSTRING:
3519 pstrcpy((char *)parm_ptr, pszParmValue);
3520 break;
3522 case P_UGSTRING:
3523 pstrcpy((char *)parm_ptr, pszParmValue);
3524 strupper_m((char *)parm_ptr);
3525 break;
3527 case P_ENUM:
3528 lp_set_enum_parm( &parm_table[parmnum], pszParmValue, (int*)parm_ptr );
3529 break;
3530 case P_SEP:
3531 break;
3534 return (True);
3537 /***************************************************************************
3538 Process a parameter.
3539 ***************************************************************************/
3541 static BOOL do_parameter(const char *pszParmName, const char *pszParmValue)
3543 if (!bInGlobalSection && bGlobalOnly)
3544 return (True);
3546 DEBUGADD(4, ("doing parameter %s = %s\n", pszParmName, pszParmValue));
3548 return (lp_do_parameter(bInGlobalSection ? -2 : iServiceIndex,
3549 pszParmName, pszParmValue));
3552 /***************************************************************************
3553 Print a parameter of the specified type.
3554 ***************************************************************************/
3556 static void print_parameter(struct parm_struct *p, void *ptr, FILE * f)
3558 int i;
3559 switch (p->type)
3561 case P_ENUM:
3562 for (i = 0; p->enum_list[i].name; i++) {
3563 if (*(int *)ptr == p->enum_list[i].value) {
3564 fprintf(f, "%s",
3565 p->enum_list[i].name);
3566 break;
3569 break;
3571 case P_BOOL:
3572 fprintf(f, "%s", BOOLSTR(*(BOOL *)ptr));
3573 break;
3575 case P_BOOLREV:
3576 fprintf(f, "%s", BOOLSTR(!*(BOOL *)ptr));
3577 break;
3579 case P_INTEGER:
3580 fprintf(f, "%d", *(int *)ptr);
3581 break;
3583 case P_CHAR:
3584 fprintf(f, "%c", *(char *)ptr);
3585 break;
3587 case P_OCTAL:
3588 fprintf(f, "%s", octal_string(*(int *)ptr));
3589 break;
3591 case P_LIST:
3592 if ((char ***)ptr && *(char ***)ptr) {
3593 char **list = *(char ***)ptr;
3595 for (; *list; list++) {
3596 /* surround strings with whitespace in double quotes */
3597 if ( strchr_m( *list, ' ' ) )
3598 fprintf(f, "\"%s\"%s", *list, ((*(list+1))?", ":""));
3599 else
3600 fprintf(f, "%s%s", *list, ((*(list+1))?", ":""));
3603 break;
3605 case P_GSTRING:
3606 case P_UGSTRING:
3607 if ((char *)ptr) {
3608 fprintf(f, "%s", (char *)ptr);
3610 break;
3612 case P_STRING:
3613 case P_USTRING:
3614 if (*(char **)ptr) {
3615 fprintf(f, "%s", *(char **)ptr);
3617 break;
3618 case P_SEP:
3619 break;
3623 /***************************************************************************
3624 Check if two parameters are equal.
3625 ***************************************************************************/
3627 static BOOL equal_parameter(parm_type type, void *ptr1, void *ptr2)
3629 switch (type) {
3630 case P_BOOL:
3631 case P_BOOLREV:
3632 return (*((BOOL *)ptr1) == *((BOOL *)ptr2));
3634 case P_INTEGER:
3635 case P_ENUM:
3636 case P_OCTAL:
3637 return (*((int *)ptr1) == *((int *)ptr2));
3639 case P_CHAR:
3640 return (*((char *)ptr1) == *((char *)ptr2));
3642 case P_LIST:
3643 return str_list_compare(*(char ***)ptr1, *(char ***)ptr2);
3645 case P_GSTRING:
3646 case P_UGSTRING:
3648 char *p1 = (char *)ptr1, *p2 = (char *)ptr2;
3649 if (p1 && !*p1)
3650 p1 = NULL;
3651 if (p2 && !*p2)
3652 p2 = NULL;
3653 return (p1 == p2 || strequal(p1, p2));
3655 case P_STRING:
3656 case P_USTRING:
3658 char *p1 = *(char **)ptr1, *p2 = *(char **)ptr2;
3659 if (p1 && !*p1)
3660 p1 = NULL;
3661 if (p2 && !*p2)
3662 p2 = NULL;
3663 return (p1 == p2 || strequal(p1, p2));
3665 case P_SEP:
3666 break;
3668 return (False);
3671 /***************************************************************************
3672 Initialize any local varients in the sDefault table.
3673 ***************************************************************************/
3675 void init_locals(void)
3677 /* None as yet. */
3680 /***************************************************************************
3681 Process a new section (service). At this stage all sections are services.
3682 Later we'll have special sections that permit server parameters to be set.
3683 Returns True on success, False on failure.
3684 ***************************************************************************/
3686 static BOOL do_section(const char *pszSectionName)
3688 BOOL bRetval;
3689 BOOL isglobal = ((strwicmp(pszSectionName, GLOBAL_NAME) == 0) ||
3690 (strwicmp(pszSectionName, GLOBAL_NAME2) == 0));
3691 bRetval = False;
3693 /* if we were in a global section then do the local inits */
3694 if (bInGlobalSection && !isglobal)
3695 init_locals();
3697 /* if we've just struck a global section, note the fact. */
3698 bInGlobalSection = isglobal;
3700 /* check for multiple global sections */
3701 if (bInGlobalSection) {
3702 DEBUG(3, ("Processing section \"[%s]\"\n", pszSectionName));
3703 return (True);
3706 if (!bInGlobalSection && bGlobalOnly)
3707 return (True);
3709 /* if we have a current service, tidy it up before moving on */
3710 bRetval = True;
3712 if (iServiceIndex >= 0)
3713 bRetval = service_ok(iServiceIndex);
3715 /* if all is still well, move to the next record in the services array */
3716 if (bRetval) {
3717 /* We put this here to avoid an odd message order if messages are */
3718 /* issued by the post-processing of a previous section. */
3719 DEBUG(2, ("Processing section \"[%s]\"\n", pszSectionName));
3721 if ((iServiceIndex = add_a_service(&sDefault, pszSectionName))
3722 < 0) {
3723 DEBUG(0, ("Failed to add a new service\n"));
3724 return (False);
3728 return (bRetval);
3732 /***************************************************************************
3733 Determine if a partcular base parameter is currentl set to the default value.
3734 ***************************************************************************/
3736 static BOOL is_default(int i)
3738 if (!defaults_saved)
3739 return False;
3740 switch (parm_table[i].type) {
3741 case P_LIST:
3742 return str_list_compare (parm_table[i].def.lvalue,
3743 *(char ***)parm_table[i].ptr);
3744 case P_STRING:
3745 case P_USTRING:
3746 return strequal(parm_table[i].def.svalue,
3747 *(char **)parm_table[i].ptr);
3748 case P_GSTRING:
3749 case P_UGSTRING:
3750 return strequal(parm_table[i].def.svalue,
3751 (char *)parm_table[i].ptr);
3752 case P_BOOL:
3753 case P_BOOLREV:
3754 return parm_table[i].def.bvalue ==
3755 *(BOOL *)parm_table[i].ptr;
3756 case P_CHAR:
3757 return parm_table[i].def.cvalue ==
3758 *(char *)parm_table[i].ptr;
3759 case P_INTEGER:
3760 case P_OCTAL:
3761 case P_ENUM:
3762 return parm_table[i].def.ivalue ==
3763 *(int *)parm_table[i].ptr;
3764 case P_SEP:
3765 break;
3767 return False;
3770 /***************************************************************************
3771 Display the contents of the global structure.
3772 ***************************************************************************/
3774 static void dump_globals(FILE *f)
3776 int i;
3777 param_opt_struct *data;
3779 fprintf(f, "[global]\n");
3781 for (i = 0; parm_table[i].label; i++)
3782 if (parm_table[i].p_class == P_GLOBAL &&
3783 parm_table[i].ptr &&
3784 (i == 0 || (parm_table[i].ptr != parm_table[i - 1].ptr))) {
3785 if (defaults_saved && is_default(i))
3786 continue;
3787 fprintf(f, "\t%s = ", parm_table[i].label);
3788 print_parameter(&parm_table[i], parm_table[i].ptr, f);
3789 fprintf(f, "\n");
3791 if (Globals.param_opt != NULL) {
3792 data = Globals.param_opt;
3793 while(data) {
3794 fprintf(f, "\t%s = %s\n", data->key, data->value);
3795 data = data->next;
3801 /***************************************************************************
3802 Return True if a local parameter is currently set to the global default.
3803 ***************************************************************************/
3805 BOOL lp_is_default(int snum, struct parm_struct *parm)
3807 int pdiff = PTR_DIFF(parm->ptr, &sDefault);
3809 return equal_parameter(parm->type,
3810 ((char *)ServicePtrs[snum]) + pdiff,
3811 ((char *)&sDefault) + pdiff);
3814 /***************************************************************************
3815 Display the contents of a single services record.
3816 ***************************************************************************/
3818 static void dump_a_service(service * pService, FILE * f)
3820 int i;
3821 param_opt_struct *data;
3823 if (pService != &sDefault)
3824 fprintf(f, "[%s]\n", pService->szService);
3826 for (i = 0; parm_table[i].label; i++) {
3828 if (parm_table[i].p_class == P_LOCAL &&
3829 parm_table[i].ptr &&
3830 (*parm_table[i].label != '-') &&
3831 (i == 0 || (parm_table[i].ptr != parm_table[i - 1].ptr)))
3834 int pdiff = PTR_DIFF(parm_table[i].ptr, &sDefault);
3836 if (pService == &sDefault) {
3837 if (defaults_saved && is_default(i))
3838 continue;
3839 } else {
3840 if (equal_parameter(parm_table[i].type,
3841 ((char *)pService) +
3842 pdiff,
3843 ((char *)&sDefault) +
3844 pdiff))
3845 continue;
3848 fprintf(f, "\t%s = ", parm_table[i].label);
3849 print_parameter(&parm_table[i],
3850 ((char *)pService) + pdiff, f);
3851 fprintf(f, "\n");
3855 if (pService->param_opt != NULL) {
3856 data = pService->param_opt;
3857 while(data) {
3858 fprintf(f, "\t%s = %s\n", data->key, data->value);
3859 data = data->next;
3864 /***************************************************************************
3865 Display the contents of a parameter of a single services record.
3866 ***************************************************************************/
3868 BOOL dump_a_parameter(int snum, char *parm_name, FILE * f, BOOL isGlobal)
3870 service * pService = ServicePtrs[snum];
3871 int i, result = False;
3872 parm_class p_class;
3873 unsigned flag = 0;
3875 if (isGlobal) {
3876 p_class = P_GLOBAL;
3877 flag = FLAG_GLOBAL;
3878 } else
3879 p_class = P_LOCAL;
3881 for (i = 0; parm_table[i].label; i++) {
3882 if (strwicmp(parm_table[i].label, parm_name) == 0 &&
3883 (parm_table[i].p_class == p_class || parm_table[i].flags & flag) &&
3884 parm_table[i].ptr &&
3885 (*parm_table[i].label != '-') &&
3886 (i == 0 || (parm_table[i].ptr != parm_table[i - 1].ptr)))
3888 void *ptr;
3890 if (isGlobal)
3891 ptr = parm_table[i].ptr;
3892 else
3893 ptr = ((char *)pService) +
3894 PTR_DIFF(parm_table[i].ptr, &sDefault);
3896 print_parameter(&parm_table[i],
3897 ptr, f);
3898 fprintf(f, "\n");
3899 result = True;
3900 break;
3904 return result;
3907 /***************************************************************************
3908 Return info about the next service in a service. snum==GLOBAL_SECTION_SNUM gives the globals.
3909 Return NULL when out of parameters.
3910 ***************************************************************************/
3912 struct parm_struct *lp_next_parameter(int snum, int *i, int allparameters)
3914 if (snum < 0) {
3915 /* do the globals */
3916 for (; parm_table[*i].label; (*i)++) {
3917 if (parm_table[*i].p_class == P_SEPARATOR)
3918 return &parm_table[(*i)++];
3920 if (!parm_table[*i].ptr
3921 || (*parm_table[*i].label == '-'))
3922 continue;
3924 if ((*i) > 0
3925 && (parm_table[*i].ptr ==
3926 parm_table[(*i) - 1].ptr))
3927 continue;
3929 return &parm_table[(*i)++];
3931 } else {
3932 service *pService = ServicePtrs[snum];
3934 for (; parm_table[*i].label; (*i)++) {
3935 if (parm_table[*i].p_class == P_SEPARATOR)
3936 return &parm_table[(*i)++];
3938 if (parm_table[*i].p_class == P_LOCAL &&
3939 parm_table[*i].ptr &&
3940 (*parm_table[*i].label != '-') &&
3941 ((*i) == 0 ||
3942 (parm_table[*i].ptr !=
3943 parm_table[(*i) - 1].ptr)))
3945 int pdiff =
3946 PTR_DIFF(parm_table[*i].ptr,
3947 &sDefault);
3949 if (allparameters ||
3950 !equal_parameter(parm_table[*i].type,
3951 ((char *)pService) +
3952 pdiff,
3953 ((char *)&sDefault) +
3954 pdiff))
3956 return &parm_table[(*i)++];
3962 return NULL;
3966 #if 0
3967 /***************************************************************************
3968 Display the contents of a single copy structure.
3969 ***************************************************************************/
3970 static void dump_copy_map(BOOL *pcopymap)
3972 int i;
3973 if (!pcopymap)
3974 return;
3976 printf("\n\tNon-Copied parameters:\n");
3978 for (i = 0; parm_table[i].label; i++)
3979 if (parm_table[i].p_class == P_LOCAL &&
3980 parm_table[i].ptr && !pcopymap[i] &&
3981 (i == 0 || (parm_table[i].ptr != parm_table[i - 1].ptr)))
3983 printf("\t\t%s\n", parm_table[i].label);
3986 #endif
3988 /***************************************************************************
3989 Return TRUE if the passed service number is within range.
3990 ***************************************************************************/
3992 BOOL lp_snum_ok(int iService)
3994 return (LP_SNUM_OK(iService) && ServicePtrs[iService]->bAvailable);
3997 /***************************************************************************
3998 Auto-load some home services.
3999 ***************************************************************************/
4001 static void lp_add_auto_services(char *str)
4003 char *s;
4004 char *p;
4005 int homes;
4007 if (!str)
4008 return;
4010 s = SMB_STRDUP(str);
4011 if (!s)
4012 return;
4014 homes = lp_servicenumber(HOMES_NAME);
4016 for (p = strtok(s, LIST_SEP); p; p = strtok(NULL, LIST_SEP)) {
4017 char *home = get_user_home_dir(p);
4019 if (lp_servicenumber(p) >= 0)
4020 continue;
4022 if (home && homes >= 0)
4023 lp_add_home(p, homes, p, home);
4025 SAFE_FREE(s);
4028 /***************************************************************************
4029 Auto-load one printer.
4030 ***************************************************************************/
4032 void lp_add_one_printer(char *name, char *comment)
4034 int printers = lp_servicenumber(PRINTERS_NAME);
4035 int i;
4037 if (lp_servicenumber(name) < 0) {
4038 lp_add_printer(name, printers);
4039 if ((i = lp_servicenumber(name)) >= 0) {
4040 string_set(&ServicePtrs[i]->comment, comment);
4041 ServicePtrs[i]->autoloaded = True;
4046 /***************************************************************************
4047 Have we loaded a services file yet?
4048 ***************************************************************************/
4050 BOOL lp_loaded(void)
4052 return (bLoaded);
4055 /***************************************************************************
4056 Unload unused services.
4057 ***************************************************************************/
4059 void lp_killunused(BOOL (*snumused) (int))
4061 int i;
4062 for (i = 0; i < iNumServices; i++) {
4063 if (!VALID(i))
4064 continue;
4066 /* don't kill autoloaded or usershare services */
4067 if ( ServicePtrs[i]->autoloaded ||
4068 ServicePtrs[i]->usershare == USERSHARE_VALID) {
4069 continue;
4072 if (!snumused || !snumused(i)) {
4073 free_service_byindex(i);
4078 /***************************************************************************
4079 Unload a service.
4080 ***************************************************************************/
4082 void lp_killservice(int iServiceIn)
4084 if (VALID(iServiceIn)) {
4085 free_service_byindex(iServiceIn);
4089 /***************************************************************************
4090 Save the curent values of all global and sDefault parameters into the
4091 defaults union. This allows swat and testparm to show only the
4092 changed (ie. non-default) parameters.
4093 ***************************************************************************/
4095 static void lp_save_defaults(void)
4097 int i;
4098 for (i = 0; parm_table[i].label; i++) {
4099 if (i > 0 && parm_table[i].ptr == parm_table[i - 1].ptr)
4100 continue;
4101 switch (parm_table[i].type) {
4102 case P_LIST:
4103 str_list_copy(&(parm_table[i].def.lvalue),
4104 *(const char ***)parm_table[i].ptr);
4105 break;
4106 case P_STRING:
4107 case P_USTRING:
4108 if (parm_table[i].ptr) {
4109 parm_table[i].def.svalue = SMB_STRDUP(*(char **)parm_table[i].ptr);
4110 } else {
4111 parm_table[i].def.svalue = NULL;
4113 break;
4114 case P_GSTRING:
4115 case P_UGSTRING:
4116 if (parm_table[i].ptr) {
4117 parm_table[i].def.svalue = SMB_STRDUP((char *)parm_table[i].ptr);
4118 } else {
4119 parm_table[i].def.svalue = NULL;
4121 break;
4122 case P_BOOL:
4123 case P_BOOLREV:
4124 parm_table[i].def.bvalue =
4125 *(BOOL *)parm_table[i].ptr;
4126 break;
4127 case P_CHAR:
4128 parm_table[i].def.cvalue =
4129 *(char *)parm_table[i].ptr;
4130 break;
4131 case P_INTEGER:
4132 case P_OCTAL:
4133 case P_ENUM:
4134 parm_table[i].def.ivalue =
4135 *(int *)parm_table[i].ptr;
4136 break;
4137 case P_SEP:
4138 break;
4141 defaults_saved = True;
4144 /*******************************************************************
4145 Set the server type we will announce as via nmbd.
4146 ********************************************************************/
4148 static const struct srv_role_tab {
4149 uint32 role;
4150 const char *role_str;
4151 } srv_role_tab [] = {
4152 { ROLE_STANDALONE, "ROLE_STANDALONE" },
4153 { ROLE_DOMAIN_MEMBER, "ROLE_DOMAIN_MEMBER" },
4154 { ROLE_DOMAIN_BDC, "ROLE_DOMAIN_BDC" },
4155 { ROLE_DOMAIN_PDC, "ROLE_DOMAIN_PDC" },
4156 { 0, NULL }
4159 const char* server_role_str(uint32 role)
4161 int i = 0;
4162 for (i=0; srv_role_tab[i].role_str; i++) {
4163 if (role == srv_role_tab[i].role) {
4164 return srv_role_tab[i].role_str;
4167 return NULL;
4170 static void set_server_role(void)
4172 server_role = ROLE_STANDALONE;
4174 switch (lp_security()) {
4175 case SEC_SHARE:
4176 if (lp_domain_logons())
4177 DEBUG(0, ("Server's Role (logon server) conflicts with share-level security\n"));
4178 break;
4179 case SEC_SERVER:
4180 if (lp_domain_logons())
4181 DEBUG(0, ("Server's Role (logon server) conflicts with server-level security\n"));
4182 server_role = ROLE_DOMAIN_MEMBER;
4183 break;
4184 case SEC_DOMAIN:
4185 if (lp_domain_logons()) {
4186 DEBUG(1, ("Server's Role (logon server) NOT ADVISED with domain-level security\n"));
4187 server_role = ROLE_DOMAIN_BDC;
4188 break;
4190 server_role = ROLE_DOMAIN_MEMBER;
4191 break;
4192 case SEC_ADS:
4193 if (lp_domain_logons()) {
4194 server_role = ROLE_DOMAIN_PDC;
4195 break;
4197 server_role = ROLE_DOMAIN_MEMBER;
4198 break;
4199 case SEC_USER:
4200 if (lp_domain_logons()) {
4202 if (Globals.bDomainMaster) /* auto or yes */
4203 server_role = ROLE_DOMAIN_PDC;
4204 else
4205 server_role = ROLE_DOMAIN_BDC;
4207 break;
4208 default:
4209 DEBUG(0, ("Server's Role undefined due to unknown security mode\n"));
4210 break;
4213 DEBUG(10, ("set_server_role: role = %s\n", server_role_str(server_role)));
4216 /***********************************************************
4217 If we should send plaintext/LANMAN passwords in the clinet
4218 ************************************************************/
4220 static void set_allowed_client_auth(void)
4222 if (Globals.bClientNTLMv2Auth) {
4223 Globals.bClientLanManAuth = False;
4225 if (!Globals.bClientLanManAuth) {
4226 Globals.bClientPlaintextAuth = False;
4230 /***************************************************************************
4231 JRA.
4232 The following code allows smbd to read a user defined share file.
4233 Yes, this is my intent. Yes, I'm comfortable with that...
4235 THE FOLLOWING IS SECURITY CRITICAL CODE.
4237 It washes your clothes, it cleans your house, it guards you while you sleep...
4238 Do not f%^k with it....
4239 ***************************************************************************/
4241 #define MAX_USERSHARE_FILE_SIZE (10*1024)
4243 /***************************************************************************
4244 Check allowed stat state of a usershare file.
4245 Ensure we print out who is dicking with us so the admin can
4246 get their sorry ass fired.
4247 ***************************************************************************/
4249 static BOOL check_usershare_stat(const char *fname, SMB_STRUCT_STAT *psbuf)
4251 if (!S_ISREG(psbuf->st_mode)) {
4252 DEBUG(0,("check_usershare_stat: file %s owned by uid %u is "
4253 "not a regular file\n",
4254 fname, (unsigned int)psbuf->st_uid ));
4255 return False;
4258 /* Ensure this doesn't have the other write bit set. */
4259 if (psbuf->st_mode & S_IWOTH) {
4260 DEBUG(0,("check_usershare_stat: file %s owned by uid %u allows "
4261 "public write. Refusing to allow as a usershare file.\n",
4262 fname, (unsigned int)psbuf->st_uid ));
4263 return False;
4266 /* Should be 10k or less. */
4267 if (psbuf->st_size > MAX_USERSHARE_FILE_SIZE) {
4268 DEBUG(0,("check_usershare_stat: file %s owned by uid %u is "
4269 "too large (%u) to be a user share file.\n",
4270 fname, (unsigned int)psbuf->st_uid,
4271 (unsigned int)psbuf->st_size ));
4272 return False;
4275 return True;
4278 /***************************************************************************
4279 Parse the contents of a usershare file.
4280 ***************************************************************************/
4282 enum usershare_err parse_usershare_file(TALLOC_CTX *ctx,
4283 SMB_STRUCT_STAT *psbuf,
4284 const char *servicename,
4285 int snum,
4286 char **lines,
4287 int numlines,
4288 pstring sharepath,
4289 pstring comment,
4290 SEC_DESC **ppsd)
4292 const char **prefixallowlist = lp_usershare_prefix_allow_list();
4293 const char **prefixdenylist = lp_usershare_prefix_deny_list();
4294 SMB_STRUCT_DIR *dp;
4295 SMB_STRUCT_STAT sbuf;
4297 if (numlines < 4) {
4298 return USERSHARE_MALFORMED_FILE;
4301 if (!strequal(lines[0], "#VERSION 1")) {
4302 return USERSHARE_BAD_VERSION;
4305 if (!strnequal(lines[1], "path=", 5)) {
4306 return USERSHARE_MALFORMED_PATH;
4309 pstrcpy(sharepath, &lines[1][5]);
4310 trim_string(sharepath, " ", " ");
4312 if (!strnequal(lines[2], "comment=", 8)) {
4313 return USERSHARE_MALFORMED_COMMENT_DEF;
4316 pstrcpy(comment, &lines[2][8]);
4317 trim_string(comment, " ", " ");
4318 trim_char(comment, '"', '"');
4320 if (!strnequal(lines[3], "usershare_acl=", 14)) {
4321 return USERSHARE_MALFORMED_ACL_DEF;
4324 if (!parse_usershare_acl(ctx, &lines[3][14], ppsd)) {
4325 return USERSHARE_ACL_ERR;
4328 if (snum != -1 && strequal(sharepath, ServicePtrs[snum]->szPath)) {
4329 /* Path didn't change, no checks needed. */
4330 return USERSHARE_OK;
4333 /* The path *must* be absolute. */
4334 if (sharepath[0] != '/') {
4335 DEBUG(2,("parse_usershare_file: share %s: path %s is not an absolute path.\n",
4336 servicename, sharepath));
4337 return USERSHARE_PATH_NOT_ABSOLUTE;
4340 /* If there is a usershare prefix deny list ensure one of these paths
4341 doesn't match the start of the user given path. */
4342 if (prefixdenylist) {
4343 int i;
4344 for ( i=0; prefixdenylist[i]; i++ ) {
4345 DEBUG(10,("parse_usershare_file: share %s : checking prefixdenylist[%d]='%s' against %s\n",
4346 servicename, i, prefixdenylist[i], sharepath ));
4347 if (memcmp( sharepath, prefixdenylist[i], strlen(prefixdenylist[i])) == 0) {
4348 DEBUG(2,("parse_usershare_file: share %s path %s starts with one of the "
4349 "usershare prefix deny list entries.\n",
4350 servicename, sharepath));
4351 return USERSHARE_PATH_IS_DENIED;
4356 /* If there is a usershare prefix allow list ensure one of these paths
4357 does match the start of the user given path. */
4359 if (prefixallowlist) {
4360 int i;
4361 for ( i=0; prefixallowlist[i]; i++ ) {
4362 DEBUG(10,("parse_usershare_file: share %s checking prefixallowlist[%d]='%s' against %s\n",
4363 servicename, i, prefixallowlist[i], sharepath ));
4364 if (memcmp( sharepath, prefixallowlist[i], strlen(prefixallowlist[i])) == 0) {
4365 break;
4368 if (prefixallowlist[i] == NULL) {
4369 DEBUG(2,("parse_usershare_file: share %s path %s doesn't start with one of the "
4370 "usershare prefix allow list entries.\n",
4371 servicename, sharepath));
4372 return USERSHARE_PATH_NOT_ALLOWED;
4376 /* Ensure this is pointing to a directory. */
4377 dp = sys_opendir(sharepath);
4379 if (!dp) {
4380 DEBUG(2,("parse_usershare_file: share %s path %s is not a directory.\n",
4381 servicename, sharepath));
4382 return USERSHARE_PATH_NOT_DIRECTORY;
4385 /* Ensure the owner of the usershare file has permission to share
4386 this directory. */
4388 if (sys_stat(sharepath, &sbuf) == -1) {
4389 DEBUG(2,("parse_usershare_file: share %s : stat failed on path %s. %s\n",
4390 servicename, sharepath, strerror(errno) ));
4391 sys_closedir(dp);
4392 return USERSHARE_POSIX_ERR;
4395 sys_closedir(dp);
4397 if (!S_ISDIR(sbuf.st_mode)) {
4398 DEBUG(2,("parse_usershare_file: share %s path %s is not a directory.\n",
4399 servicename, sharepath ));
4400 return USERSHARE_PATH_NOT_DIRECTORY;
4403 /* Check if sharing is restricted to owner-only. */
4404 /* psbuf is the stat of the usershare definition file,
4405 sbuf is the stat of the target directory to be shared. */
4407 if (lp_usershare_owner_only()) {
4408 /* root can share anything. */
4409 if ((psbuf->st_uid != 0) && (sbuf.st_uid != psbuf->st_uid)) {
4410 return USERSHARE_PATH_NOT_ALLOWED;
4414 return USERSHARE_OK;
4417 /***************************************************************************
4418 Deal with a usershare file.
4419 Returns:
4420 >= 0 - snum
4421 -1 - Bad name, invalid contents.
4422 - service name already existed and not a usershare, problem
4423 with permissions to share directory etc.
4424 ***************************************************************************/
4426 static int process_usershare_file(const char *dir_name, const char *file_name, int snum_template)
4428 SMB_STRUCT_STAT sbuf;
4429 SMB_STRUCT_STAT lsbuf;
4430 pstring fname;
4431 pstring sharepath;
4432 pstring comment;
4433 fstring service_name;
4434 char **lines = NULL;
4435 int numlines = 0;
4436 int fd = -1;
4437 int iService = -1;
4438 TALLOC_CTX *ctx = NULL;
4439 SEC_DESC *psd = NULL;
4441 /* Ensure share name doesn't contain invalid characters. */
4442 if (!validate_net_name(file_name, INVALID_SHARENAME_CHARS, strlen(file_name))) {
4443 DEBUG(0,("process_usershare_file: share name %s contains "
4444 "invalid characters (any of %s)\n",
4445 file_name, INVALID_SHARENAME_CHARS ));
4446 return -1;
4449 fstrcpy(service_name, file_name);
4451 pstrcpy(fname, dir_name);
4452 pstrcat(fname, "/");
4453 pstrcat(fname, file_name);
4455 /* Minimize the race condition by doing an lstat before we
4456 open and fstat. Ensure this isn't a symlink link. */
4458 if (sys_lstat(fname, &lsbuf) != 0) {
4459 DEBUG(0,("process_usershare_file: stat of %s failed. %s\n",
4460 fname, strerror(errno) ));
4461 return -1;
4464 /* This must be a regular file, not a symlink, directory or
4465 other strange filetype. */
4466 if (!check_usershare_stat(fname, &lsbuf)) {
4467 return -1;
4470 /* See if there is already a servicenum for this name. */
4471 /* tdb_fetch_int32 returns -1 if not found. */
4472 iService = (int)tdb_fetch_int32(ServiceHash, canonicalize_servicename(service_name) );
4474 if (iService != -1 && ServicePtrs[iService]->usershare_last_mod == lsbuf.st_mtime) {
4475 /* Nothing changed - Mark valid and return. */
4476 DEBUG(10,("process_usershare_file: service %s not changed.\n",
4477 service_name ));
4478 ServicePtrs[iService]->usershare = USERSHARE_VALID;
4479 return iService;
4482 /* Try and open the file read only - no symlinks allowed. */
4483 #ifdef O_NOFOLLOW
4484 fd = sys_open(fname, O_RDONLY|O_NOFOLLOW, 0);
4485 #else
4486 fd = sys_open(fname, O_RDONLY, 0);
4487 #endif
4489 if (fd == -1) {
4490 DEBUG(0,("process_usershare_file: unable to open %s. %s\n",
4491 fname, strerror(errno) ));
4492 return -1;
4495 /* Now fstat to be *SURE* it's a regular file. */
4496 if (sys_fstat(fd, &sbuf) != 0) {
4497 close(fd);
4498 DEBUG(0,("process_usershare_file: fstat of %s failed. %s\n",
4499 fname, strerror(errno) ));
4500 return -1;
4503 /* Is it the same dev/inode as was lstated ? */
4504 if (lsbuf.st_dev != sbuf.st_dev || lsbuf.st_ino != sbuf.st_ino) {
4505 close(fd);
4506 DEBUG(0,("process_usershare_file: fstat of %s is a different file from lstat. "
4507 "Symlink spoofing going on ?\n", fname ));
4508 return -1;
4511 /* This must be a regular file, not a symlink, directory or
4512 other strange filetype. */
4513 if (!check_usershare_stat(fname, &sbuf)) {
4514 return -1;
4517 lines = fd_lines_load(fd, &numlines, MAX_USERSHARE_FILE_SIZE);
4519 close(fd);
4520 if (lines == NULL) {
4521 DEBUG(0,("process_usershare_file: loading file %s owned by %u failed.\n",
4522 fname, (unsigned int)sbuf.st_uid ));
4523 return -1;
4526 /* Should we allow printers to be shared... ? */
4527 ctx = talloc_init("usershare_sd_xctx");
4528 if (!ctx) {
4529 SAFE_FREE(lines);
4530 return 1;
4533 if (parse_usershare_file(ctx, &sbuf, service_name, iService, lines, numlines, sharepath, comment, &psd) != USERSHARE_OK) {
4534 talloc_destroy(ctx);
4535 SAFE_FREE(lines);
4536 return -1;
4539 SAFE_FREE(lines);
4541 /* Everything ok - add the service possibly using a template. */
4542 if (iService < 0) {
4543 const service *sp = &sDefault;
4544 if (snum_template != -1) {
4545 sp = ServicePtrs[snum_template];
4548 if ((iService = add_a_service(sp, service_name)) < 0) {
4549 DEBUG(0, ("process_usershare_file: Failed to add "
4550 "new service %s\n", service_name));
4551 talloc_destroy(ctx);
4552 return -1;
4555 /* Read only is controlled by usershare ACL below. */
4556 ServicePtrs[iService]->bRead_only = False;
4559 /* Write the ACL of the new/modified share. */
4560 if (!set_share_security(ctx, service_name, psd)) {
4561 DEBUG(0, ("process_usershare_file: Failed to set share "
4562 "security for user share %s\n",
4563 service_name ));
4564 lp_remove_service(iService);
4565 talloc_destroy(ctx);
4566 return -1;
4569 talloc_destroy(ctx);
4571 /* If from a template it may be marked invalid. */
4572 ServicePtrs[iService]->valid = True;
4574 /* Set the service as a valid usershare. */
4575 ServicePtrs[iService]->usershare = USERSHARE_VALID;
4577 /* And note when it was loaded. */
4578 ServicePtrs[iService]->usershare_last_mod = sbuf.st_mtime;
4579 string_set(&ServicePtrs[iService]->szPath, sharepath);
4580 string_set(&ServicePtrs[iService]->comment, comment);
4582 return iService;
4585 /***************************************************************************
4586 Checks if a usershare entry has been modified since last load.
4587 ***************************************************************************/
4589 static BOOL usershare_exists(int iService, time_t *last_mod)
4591 SMB_STRUCT_STAT lsbuf;
4592 const char *usersharepath = Globals.szUsersharePath;
4593 pstring fname;
4595 pstrcpy(fname, usersharepath);
4596 pstrcat(fname, "/");
4597 pstrcat(fname, ServicePtrs[iService]->szService);
4599 if (sys_lstat(fname, &lsbuf) != 0) {
4600 return False;
4603 if (!S_ISREG(lsbuf.st_mode)) {
4604 return False;
4607 *last_mod = lsbuf.st_mtime;
4608 return True;
4611 /***************************************************************************
4612 Load a usershare service by name. Returns a valid servicenumber or -1.
4613 ***************************************************************************/
4615 int load_usershare_service(const char *servicename)
4617 SMB_STRUCT_STAT sbuf;
4618 const char *usersharepath = Globals.szUsersharePath;
4619 int max_user_shares = Globals.iUsershareMaxShares;
4620 int snum_template = -1;
4622 if (*usersharepath == 0 || max_user_shares == 0) {
4623 return -1;
4626 if (sys_stat(usersharepath, &sbuf) != 0) {
4627 DEBUG(0,("load_usershare_service: stat of %s failed. %s\n",
4628 usersharepath, strerror(errno) ));
4629 return -1;
4632 if (!S_ISDIR(sbuf.st_mode)) {
4633 DEBUG(0,("load_usershare_service: %s is not a directory.\n",
4634 usersharepath ));
4635 return -1;
4639 * This directory must be owned by root, and have the 't' bit set.
4640 * It also must not be writable by "other".
4643 #ifdef S_ISVTX
4644 if (sbuf.st_uid != 0 || !(sbuf.st_mode & S_ISVTX) || (sbuf.st_mode & S_IWOTH)) {
4645 #else
4646 if (sbuf.st_uid != 0 || (sbuf.st_mode & S_IWOTH)) {
4647 #endif
4648 DEBUG(0,("load_usershare_service: directory %s is not owned by root "
4649 "or does not have the sticky bit 't' set or is writable by anyone.\n",
4650 usersharepath ));
4651 return -1;
4654 /* Ensure the template share exists if it's set. */
4655 if (Globals.szUsershareTemplateShare[0]) {
4656 /* We can't use lp_servicenumber here as we are recommending that
4657 template shares have -valid=False set. */
4658 for (snum_template = iNumServices - 1; snum_template >= 0; snum_template--) {
4659 if (ServicePtrs[snum_template]->szService &&
4660 strequal(ServicePtrs[snum_template]->szService,
4661 Globals.szUsershareTemplateShare)) {
4662 break;
4666 if (snum_template == -1) {
4667 DEBUG(0,("load_usershare_service: usershare template share %s "
4668 "does not exist.\n",
4669 Globals.szUsershareTemplateShare ));
4670 return -1;
4674 return process_usershare_file(usersharepath, servicename, snum_template);
4677 /***************************************************************************
4678 Load all user defined shares from the user share directory.
4679 We only do this if we're enumerating the share list.
4680 This is the function that can delete usershares that have
4681 been removed.
4682 ***************************************************************************/
4684 int load_usershare_shares(void)
4686 SMB_STRUCT_DIR *dp;
4687 SMB_STRUCT_STAT sbuf;
4688 SMB_STRUCT_DIRENT *de;
4689 int num_usershares = 0;
4690 int max_user_shares = Globals.iUsershareMaxShares;
4691 unsigned int num_dir_entries, num_bad_dir_entries, num_tmp_dir_entries;
4692 unsigned int allowed_bad_entries = ((2*max_user_shares)/10);
4693 unsigned int allowed_tmp_entries = ((2*max_user_shares)/10);
4694 int iService;
4695 int snum_template = -1;
4696 const char *usersharepath = Globals.szUsersharePath;
4697 int ret = lp_numservices();
4699 if (max_user_shares == 0 || *usersharepath == '\0') {
4700 return lp_numservices();
4703 if (sys_stat(usersharepath, &sbuf) != 0) {
4704 DEBUG(0,("load_usershare_shares: stat of %s failed. %s\n",
4705 usersharepath, strerror(errno) ));
4706 return ret;
4710 * This directory must be owned by root, and have the 't' bit set.
4711 * It also must not be writable by "other".
4714 #ifdef S_ISVTX
4715 if (sbuf.st_uid != 0 || !(sbuf.st_mode & S_ISVTX) || (sbuf.st_mode & S_IWOTH)) {
4716 #else
4717 if (sbuf.st_uid != 0 || (sbuf.st_mode & S_IWOTH)) {
4718 #endif
4719 DEBUG(0,("load_usershare_shares: directory %s is not owned by root "
4720 "or does not have the sticky bit 't' set or is writable by anyone.\n",
4721 usersharepath ));
4722 return ret;
4725 /* Ensure the template share exists if it's set. */
4726 if (Globals.szUsershareTemplateShare[0]) {
4727 /* We can't use lp_servicenumber here as we are recommending that
4728 template shares have -valid=False set. */
4729 for (snum_template = iNumServices - 1; snum_template >= 0; snum_template--) {
4730 if (ServicePtrs[snum_template]->szService &&
4731 strequal(ServicePtrs[snum_template]->szService,
4732 Globals.szUsershareTemplateShare)) {
4733 break;
4737 if (snum_template == -1) {
4738 DEBUG(0,("load_usershare_shares: usershare template share %s "
4739 "does not exist.\n",
4740 Globals.szUsershareTemplateShare ));
4741 return ret;
4745 /* Mark all existing usershares as pending delete. */
4746 for (iService = iNumServices - 1; iService >= 0; iService--) {
4747 if (VALID(iService) && ServicePtrs[iService]->usershare) {
4748 ServicePtrs[iService]->usershare = USERSHARE_PENDING_DELETE;
4752 dp = sys_opendir(usersharepath);
4753 if (!dp) {
4754 DEBUG(0,("load_usershare_shares:: failed to open directory %s. %s\n",
4755 usersharepath, strerror(errno) ));
4756 return ret;
4759 for (num_dir_entries = 0, num_bad_dir_entries = 0, num_tmp_dir_entries = 0;
4760 (de = sys_readdir(dp));
4761 num_dir_entries++ ) {
4762 int r;
4763 const char *n = de->d_name;
4765 /* Ignore . and .. */
4766 if (*n == '.') {
4767 if ((n[1] == '\0') || (n[1] == '.' && n[2] == '\0')) {
4768 continue;
4772 if (n[0] == ':') {
4773 /* Temporary file used when creating a share. */
4774 num_tmp_dir_entries++;
4777 /* Allow 20% tmp entries. */
4778 if (num_tmp_dir_entries > allowed_tmp_entries) {
4779 DEBUG(0,("load_usershare_shares: too many temp entries (%u) "
4780 "in directory %s\n",
4781 num_tmp_dir_entries, usersharepath));
4782 break;
4785 r = process_usershare_file(usersharepath, n, snum_template);
4786 if (r == 0) {
4787 /* Update the services count. */
4788 num_usershares++;
4789 if (num_usershares >= max_user_shares) {
4790 DEBUG(0,("load_usershare_shares: max user shares reached "
4791 "on file %s in directory %s\n",
4792 n, usersharepath ));
4793 break;
4795 } else if (r == -1) {
4796 num_bad_dir_entries++;
4799 /* Allow 20% bad entries. */
4800 if (num_bad_dir_entries > allowed_bad_entries) {
4801 DEBUG(0,("load_usershare_shares: too many bad entries (%u) "
4802 "in directory %s\n",
4803 num_bad_dir_entries, usersharepath));
4804 break;
4807 /* Allow 20% bad entries. */
4808 if (num_dir_entries > max_user_shares + allowed_bad_entries) {
4809 DEBUG(0,("load_usershare_shares: too many total entries (%u) "
4810 "in directory %s\n",
4811 num_dir_entries, usersharepath));
4812 break;
4816 sys_closedir(dp);
4818 /* Sweep through and delete any non-refreshed usershares that are
4819 not currently in use. */
4820 for (iService = iNumServices - 1; iService >= 0; iService--) {
4821 if (VALID(iService) && (ServicePtrs[iService]->usershare == USERSHARE_PENDING_DELETE)) {
4822 if (conn_snum_used(iService)) {
4823 continue;
4825 /* Remove from the share ACL db. */
4826 DEBUG(10,("load_usershare_shares: Removing deleted usershare %s\n",
4827 lp_servicename(iService) ));
4828 delete_share_security(iService);
4829 free_service_byindex(iService);
4833 return lp_numservices();
4836 /***************************************************************************
4837 Load the services array from the services file. Return True on success,
4838 False on failure.
4839 ***************************************************************************/
4841 BOOL lp_load(const char *pszFname,
4842 BOOL global_only,
4843 BOOL save_defaults,
4844 BOOL add_ipc,
4845 BOOL initialize_globals)
4847 pstring n2;
4848 BOOL bRetval;
4849 param_opt_struct *data, *pdata;
4851 pstrcpy(n2, pszFname);
4853 standard_sub_basic( get_current_username(), n2,sizeof(n2) );
4855 add_to_file_list(pszFname, n2);
4857 bRetval = False;
4859 DEBUG(3, ("lp_load: refreshing parameters\n"));
4861 bInGlobalSection = True;
4862 bGlobalOnly = global_only;
4864 init_globals(! initialize_globals);
4865 debug_init();
4867 if (save_defaults) {
4868 init_locals();
4869 lp_save_defaults();
4872 if (Globals.param_opt != NULL) {
4873 data = Globals.param_opt;
4874 while (data) {
4875 string_free(&data->key);
4876 string_free(&data->value);
4877 str_list_free(&data->list);
4878 pdata = data->next;
4879 SAFE_FREE(data);
4880 data = pdata;
4882 Globals.param_opt = NULL;
4885 /* We get sections first, so have to start 'behind' to make up */
4886 iServiceIndex = -1;
4887 bRetval = pm_process(n2, do_section, do_parameter);
4889 /* finish up the last section */
4890 DEBUG(4, ("pm_process() returned %s\n", BOOLSTR(bRetval)));
4891 if (bRetval)
4892 if (iServiceIndex >= 0)
4893 bRetval = service_ok(iServiceIndex);
4895 lp_add_auto_services(lp_auto_services());
4897 if (add_ipc) {
4898 /* When 'restrict anonymous = 2' guest connections to ipc$
4899 are denied */
4900 lp_add_ipc("IPC$", (lp_restrict_anonymous() < 2));
4901 if ( lp_enable_asu_support() )
4902 lp_add_ipc("ADMIN$", False);
4905 set_server_role();
4906 set_default_server_announce_type();
4907 set_allowed_client_auth();
4909 bLoaded = True;
4911 /* Now we check bWINSsupport and set szWINSserver to 127.0.0.1 */
4912 /* if bWINSsupport is true and we are in the client */
4913 if (in_client && Globals.bWINSsupport) {
4914 lp_do_parameter(GLOBAL_SECTION_SNUM, "wins server", "127.0.0.1");
4917 init_iconv();
4919 return (bRetval);
4922 /***************************************************************************
4923 Reset the max number of services.
4924 ***************************************************************************/
4926 void lp_resetnumservices(void)
4928 iNumServices = 0;
4931 /***************************************************************************
4932 Return the max number of services.
4933 ***************************************************************************/
4935 int lp_numservices(void)
4937 return (iNumServices);
4940 /***************************************************************************
4941 Display the contents of the services array in human-readable form.
4942 ***************************************************************************/
4944 void lp_dump(FILE *f, BOOL show_defaults, int maxtoprint)
4946 int iService;
4948 if (show_defaults)
4949 defaults_saved = False;
4951 dump_globals(f);
4953 dump_a_service(&sDefault, f);
4955 for (iService = 0; iService < maxtoprint; iService++) {
4956 fprintf(f,"\n");
4957 lp_dump_one(f, show_defaults, iService);
4961 /***************************************************************************
4962 Display the contents of one service in human-readable form.
4963 ***************************************************************************/
4965 void lp_dump_one(FILE * f, BOOL show_defaults, int snum)
4967 if (VALID(snum)) {
4968 if (ServicePtrs[snum]->szService[0] == '\0')
4969 return;
4970 dump_a_service(ServicePtrs[snum], f);
4974 /***************************************************************************
4975 Return the number of the service with the given name, or -1 if it doesn't
4976 exist. Note that this is a DIFFERENT ANIMAL from the internal function
4977 getservicebyname()! This works ONLY if all services have been loaded, and
4978 does not copy the found service.
4979 ***************************************************************************/
4981 int lp_servicenumber(const char *pszServiceName)
4983 int iService;
4984 fstring serviceName;
4986 if (!pszServiceName) {
4987 return GLOBAL_SECTION_SNUM;
4990 for (iService = iNumServices - 1; iService >= 0; iService--) {
4991 if (VALID(iService) && ServicePtrs[iService]->szService) {
4993 * The substitution here is used to support %U is
4994 * service names
4996 fstrcpy(serviceName, ServicePtrs[iService]->szService);
4997 standard_sub_basic(get_current_username(), serviceName,sizeof(serviceName));
4998 if (strequal(serviceName, pszServiceName)) {
4999 break;
5004 if (iService >= 0 && ServicePtrs[iService]->usershare == USERSHARE_VALID) {
5005 time_t last_mod;
5007 if (!usershare_exists(iService, &last_mod)) {
5008 /* Remove the share security tdb entry for it. */
5009 delete_share_security(iService);
5010 /* Remove it from the array. */
5011 free_service_byindex(iService);
5012 /* Doesn't exist anymore. */
5013 return GLOBAL_SECTION_SNUM;
5016 /* Has it been modified ? If so delete and reload. */
5017 if (ServicePtrs[iService]->usershare_last_mod < last_mod) {
5018 /* Remove it from the array. */
5019 free_service_byindex(iService);
5020 /* and now reload it. */
5021 iService = load_usershare_service(pszServiceName);
5025 if (iService < 0) {
5026 DEBUG(7,("lp_servicenumber: couldn't find %s\n", pszServiceName));
5027 return GLOBAL_SECTION_SNUM;
5030 return (iService);
5033 /*******************************************************************
5034 A useful volume label function.
5035 ********************************************************************/
5037 char *volume_label(int snum)
5039 char *ret = lp_volume(snum);
5040 if (!*ret)
5041 return lp_servicename(snum);
5042 return (ret);
5046 /*******************************************************************
5047 Set the server type we will announce as via nmbd.
5048 ********************************************************************/
5050 static void set_default_server_announce_type(void)
5052 default_server_announce = 0;
5053 default_server_announce |= SV_TYPE_WORKSTATION;
5054 default_server_announce |= SV_TYPE_SERVER;
5055 default_server_announce |= SV_TYPE_SERVER_UNIX;
5057 /* note that the flag should be set only if we have a
5058 printer service but nmbd doesn't actually load the
5059 services so we can't tell --jerry */
5061 default_server_announce |= SV_TYPE_PRINTQ_SERVER;
5063 switch (lp_announce_as()) {
5064 case ANNOUNCE_AS_NT_SERVER:
5065 default_server_announce |= SV_TYPE_SERVER_NT;
5066 /* fall through... */
5067 case ANNOUNCE_AS_NT_WORKSTATION:
5068 default_server_announce |= SV_TYPE_NT;
5069 break;
5070 case ANNOUNCE_AS_WIN95:
5071 default_server_announce |= SV_TYPE_WIN95_PLUS;
5072 break;
5073 case ANNOUNCE_AS_WFW:
5074 default_server_announce |= SV_TYPE_WFW;
5075 break;
5076 default:
5077 break;
5080 switch (lp_server_role()) {
5081 case ROLE_DOMAIN_MEMBER:
5082 default_server_announce |= SV_TYPE_DOMAIN_MEMBER;
5083 break;
5084 case ROLE_DOMAIN_PDC:
5085 default_server_announce |= SV_TYPE_DOMAIN_CTRL;
5086 break;
5087 case ROLE_DOMAIN_BDC:
5088 default_server_announce |= SV_TYPE_DOMAIN_BAKCTRL;
5089 break;
5090 case ROLE_STANDALONE:
5091 default:
5092 break;
5094 if (lp_time_server())
5095 default_server_announce |= SV_TYPE_TIME_SOURCE;
5097 if (lp_host_msdfs())
5098 default_server_announce |= SV_TYPE_DFS_SERVER;
5101 /***********************************************************
5102 returns role of Samba server
5103 ************************************************************/
5105 int lp_server_role(void)
5107 return server_role;
5110 /***********************************************************
5111 If we are PDC then prefer us as DMB
5112 ************************************************************/
5114 BOOL lp_domain_master(void)
5116 if (Globals.bDomainMaster == Auto)
5117 return (lp_server_role() == ROLE_DOMAIN_PDC);
5119 return Globals.bDomainMaster;
5122 /***********************************************************
5123 If we are DMB then prefer us as LMB
5124 ************************************************************/
5126 BOOL lp_preferred_master(void)
5128 if (Globals.bPreferredMaster == Auto)
5129 return (lp_local_master() && lp_domain_master());
5131 return Globals.bPreferredMaster;
5134 /*******************************************************************
5135 Remove a service.
5136 ********************************************************************/
5138 void lp_remove_service(int snum)
5140 ServicePtrs[snum]->valid = False;
5141 invalid_services[num_invalid_services++] = snum;
5144 /*******************************************************************
5145 Copy a service.
5146 ********************************************************************/
5148 void lp_copy_service(int snum, const char *new_name)
5150 do_section(new_name);
5151 if (snum >= 0) {
5152 snum = lp_servicenumber(new_name);
5153 if (snum >= 0)
5154 lp_do_parameter(snum, "copy", lp_servicename(snum));
5159 /*******************************************************************
5160 Get the default server type we will announce as via nmbd.
5161 ********************************************************************/
5163 int lp_default_server_announce(void)
5165 return default_server_announce;
5168 /*******************************************************************
5169 Split the announce version into major and minor numbers.
5170 ********************************************************************/
5172 int lp_major_announce_version(void)
5174 static BOOL got_major = False;
5175 static int major_version = DEFAULT_MAJOR_VERSION;
5176 char *vers;
5177 char *p;
5179 if (got_major)
5180 return major_version;
5182 got_major = True;
5183 if ((vers = lp_announce_version()) == NULL)
5184 return major_version;
5186 if ((p = strchr_m(vers, '.')) == 0)
5187 return major_version;
5189 *p = '\0';
5190 major_version = atoi(vers);
5191 return major_version;
5194 int lp_minor_announce_version(void)
5196 static BOOL got_minor = False;
5197 static int minor_version = DEFAULT_MINOR_VERSION;
5198 char *vers;
5199 char *p;
5201 if (got_minor)
5202 return minor_version;
5204 got_minor = True;
5205 if ((vers = lp_announce_version()) == NULL)
5206 return minor_version;
5208 if ((p = strchr_m(vers, '.')) == 0)
5209 return minor_version;
5211 p++;
5212 minor_version = atoi(p);
5213 return minor_version;
5216 /***********************************************************
5217 Set the global name resolution order (used in smbclient).
5218 ************************************************************/
5220 void lp_set_name_resolve_order(const char *new_order)
5222 string_set(&Globals.szNameResolveOrder, new_order);
5225 const char *lp_printername(int snum)
5227 const char *ret = _lp_printername(snum);
5228 if (ret == NULL || (ret != NULL && *ret == '\0'))
5229 ret = lp_const_servicename(snum);
5231 return ret;
5235 /***********************************************************
5236 Allow daemons such as winbindd to fix their logfile name.
5237 ************************************************************/
5239 void lp_set_logfile(const char *name)
5241 string_set(&Globals.szLogFile, name);
5242 pstrcpy(debugf, name);
5245 /*******************************************************************
5246 Return the max print jobs per queue.
5247 ********************************************************************/
5249 int lp_maxprintjobs(int snum)
5251 int maxjobs = LP_SNUM_OK(snum) ? ServicePtrs[snum]->iMaxPrintJobs : sDefault.iMaxPrintJobs;
5252 if (maxjobs <= 0 || maxjobs >= PRINT_MAX_JOBID)
5253 maxjobs = PRINT_MAX_JOBID - 1;
5255 return maxjobs;
5258 const char *lp_printcapname(void)
5260 if ((Globals.szPrintcapname != NULL) &&
5261 (Globals.szPrintcapname[0] != '\0'))
5262 return Globals.szPrintcapname;
5264 if (sDefault.iPrinting == PRINT_CUPS) {
5265 #ifdef HAVE_CUPS
5266 return "cups";
5267 #else
5268 return "lpstat";
5269 #endif
5272 if (sDefault.iPrinting == PRINT_BSD)
5273 return "/etc/printcap";
5275 return PRINTCAP_NAME;
5278 /*******************************************************************
5279 Ensure we don't use sendfile if server smb signing is active.
5280 ********************************************************************/
5282 static uint32 spoolss_state;
5284 BOOL lp_disable_spoolss( void )
5286 if ( spoolss_state == SVCCTL_STATE_UNKNOWN )
5287 spoolss_state = _lp_disable_spoolss() ? SVCCTL_STOPPED : SVCCTL_RUNNING;
5289 return spoolss_state == SVCCTL_STOPPED ? True : False;
5292 void lp_set_spoolss_state( uint32 state )
5294 SMB_ASSERT( (state == SVCCTL_STOPPED) || (state == SVCCTL_RUNNING) );
5296 spoolss_state = state;
5299 uint32 lp_get_spoolss_state( void )
5301 return lp_disable_spoolss() ? SVCCTL_STOPPED : SVCCTL_RUNNING;
5304 /*******************************************************************
5305 Ensure we don't use sendfile if server smb signing is active.
5306 ********************************************************************/
5308 BOOL lp_use_sendfile(int snum)
5310 /* Using sendfile blows the brains out of any DOS or Win9x TCP stack... JRA. */
5311 if (Protocol < PROTOCOL_NT1) {
5312 return False;
5314 return (_lp_use_sendfile(snum) && (get_remote_arch() != RA_WIN95) && !srv_is_signing_active());
5317 /*******************************************************************
5318 Turn off sendfile if we find the underlying OS doesn't support it.
5319 ********************************************************************/
5321 void set_use_sendfile(int snum, BOOL val)
5323 if (LP_SNUM_OK(snum))
5324 ServicePtrs[snum]->bUseSendfile = val;
5325 else
5326 sDefault.bUseSendfile = val;
5329 /*******************************************************************
5330 Turn off storing DOS attributes if this share doesn't support it.
5331 ********************************************************************/
5333 void set_store_dos_attributes(int snum, BOOL val)
5335 if (!LP_SNUM_OK(snum))
5336 return;
5337 ServicePtrs[(snum)]->bStoreDosAttributes = val;
5340 void lp_set_mangling_method(const char *new_method)
5342 string_set(&Globals.szManglingMethod, new_method);
5345 /*******************************************************************
5346 Global state for POSIX pathname processing.
5347 ********************************************************************/
5349 static BOOL posix_pathnames;
5351 BOOL lp_posix_pathnames(void)
5353 return posix_pathnames;
5356 /*******************************************************************
5357 Change everything needed to ensure POSIX pathname processing (currently
5358 not much).
5359 ********************************************************************/
5361 void lp_set_posix_pathnames(void)
5363 posix_pathnames = True;