r20261: merge 20260 from samba_3_0_24
[ab/samba.git/.git] / source3 / param / loadparm.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Parameter loading functions
4    Copyright (C) Karl Auer 1993-1998
5
6    Largely re-written by Andrew Tridgell, September 1994
7
8    Copyright (C) Simo Sorce 2001
9    Copyright (C) Alexander Bokovoy 2002
10    Copyright (C) Stefan (metze) Metzmacher 2002
11    Copyright (C) Jim McDonough <jmcd@us.ibm.com> 2003
12    
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.
17    
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.
22    
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.
26 */
27
28 /*
29  *  Load parameters.
30  *
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.
34  *
35  * To add a parameter:
36  *
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
42  *  
43  *
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!
51  *
52  */
53
54 #include "includes.h"
55
56 BOOL in_client = False;         /* Not in the client by default */
57 BOOL bLoaded = False;
58
59 extern pstring user_socket_options;
60 extern enum protocol_types Protocol;
61 extern userdom_struct current_user_info;
62
63 #ifndef GLOBAL_NAME
64 #define GLOBAL_NAME "global"
65 #endif
66
67 #ifndef PRINTERS_NAME
68 #define PRINTERS_NAME "printers"
69 #endif
70
71 #ifndef HOMES_NAME
72 #define HOMES_NAME "homes"
73 #endif
74
75 /* some helpful bits */
76 #define LP_SNUM_OK(i) (((i) >= 0) && ((i) < iNumServices) && (ServicePtrs != NULL) && ServicePtrs[(i)]->valid)
77 #define VALID(i) (ServicePtrs != NULL && ServicePtrs[i]->valid)
78
79 #define USERSHARE_VALID 1
80 #define USERSHARE_PENDING_DELETE 2
81
82 int keepalive = DEFAULT_KEEPALIVE;
83 BOOL use_getwd_cache = True;
84
85 extern int extra_time_offset;
86
87 static BOOL defaults_saved = False;
88
89 typedef struct _param_opt_struct param_opt_struct;
90 struct _param_opt_struct {
91         param_opt_struct *prev, *next;
92         char *key;
93         char *value;
94         char **list;
95 };
96
97 /* 
98  * This structure describes global (ie., server-wide) parameters.
99  */
100 typedef struct {
101         char *smb_ports;
102         char *dos_charset;
103         char *unix_charset;
104         char *display_charset;
105         char *szPrintcapname;
106         char *szAddPortCommand;
107         char *szEnumPortsCommand;
108         char *szAddPrinterCommand;
109         char *szDeletePrinterCommand;
110         char *szOs2DriverMap;
111         char *szLockDir;
112         char *szPidDir;
113         char *szRootdir;
114         char *szDefaultService;
115         char *szGetQuota;
116         char *szSetQuota;
117         char *szMsgCommand;
118         char *szServerString;
119         char *szAutoServices;
120         char *szPasswdProgram;
121         char *szPasswdChat;
122         char *szLogFile;
123         char *szConfigFile;
124         char *szSMBPasswdFile;
125         char *szPrivateDir;
126         char *szPassdbBackend;
127         char **szPreloadModules;
128         char *szPasswordServer;
129         char *szSocketOptions;
130         char *szRealm;
131         char *szAfsUsernameMap;
132         int iAfsTokenLifetime;
133         char *szLogNtTokenCommand;
134         char *szUsernameMap;
135         char *szLogonScript;
136         char *szLogonPath;
137         char *szLogonDrive;
138         char *szLogonHome;
139         char **szWINSservers;
140         char **szInterfaces;
141         char *szRemoteAnnounce;
142         char *szRemoteBrowseSync;
143         char *szSocketAddress;
144         char *szNISHomeMapName;
145         char *szAnnounceVersion;        /* This is initialised in init_globals */
146         char *szWorkgroup;
147         char *szNetbiosName;
148         char **szNetbiosAliases;
149         char *szNetbiosScope;
150         char *szNameResolveOrder;
151         char *szPanicAction;
152         char *szAddUserScript;
153         char *szRenameUserScript;
154         char *szDelUserScript;
155         char *szAddGroupScript;
156         char *szDelGroupScript;
157         char *szAddUserToGroupScript;
158         char *szDelUserFromGroupScript;
159         char *szSetPrimaryGroupScript;
160         char *szAddMachineScript;
161         char *szShutdownScript;
162         char *szAbortShutdownScript;
163         char *szUsernameMapScript;
164         char *szCheckPasswordScript;
165         char *szWINSHook;
166         char *szUtmpDir;
167         char *szWtmpDir;
168         BOOL bUtmp;
169         char *szIdmapUID;
170         char *szIdmapGID;
171         BOOL bPassdbExpandExplicit;
172         int AlgorithmicRidBase;
173         char *szTemplateHomedir;
174         char *szTemplateShell;
175         char *szWinbindSeparator;
176         BOOL bWinbindEnumUsers;
177         BOOL bWinbindEnumGroups;
178         BOOL bWinbindUseDefaultDomain;
179         BOOL bWinbindTrustedDomainsOnly;
180         BOOL bWinbindNestedGroups;
181         BOOL bWinbindRefreshTickets;
182         BOOL bWinbindOfflineLogon;
183         char **szIdmapDomains;
184         char **szIdmapBackend; /* deprecated */
185         char *szIdmapAllocBackend;
186         char *szAddShareCommand;
187         char *szChangeShareCommand;
188         char *szDeleteShareCommand;
189         char **szEventLogs;
190         char *szGuestaccount;
191         char *szManglingMethod;
192         char **szServicesList;
193         char *szUsersharePath;
194         char *szUsershareTemplateShare;
195         char **szUsersharePrefixAllowList;
196         char **szUsersharePrefixDenyList;
197         int mangle_prefix;
198         int max_log_size;
199         char *szLogLevel;
200         int max_xmit;
201         int max_mux;
202         int max_open_files;
203         int open_files_db_hash_size;
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 map_to_guest;
227         int oplock_break_wait_time;
228         int winbind_cache_time;
229         int winbind_max_idle_children;
230         char **szWinbindNssInfo;
231         int iLockSpinCount;
232         int iLockSpinTime;
233         char *szLdapMachineSuffix;
234         char *szLdapUserSuffix;
235         char *szLdapIdmapSuffix;
236         char *szLdapGroupSuffix;
237         int ldap_ssl;
238         char *szLdapSuffix;
239         char *szLdapAdminDn;
240         int iAclCompat;
241         char *szCupsServer;
242         char *szIPrintServer;
243         int ldap_passwd_sync; 
244         int ldap_replication_sleep;
245         int ldap_timeout; /* This is initialised in init_globals */
246         int ldap_page_size;
247         BOOL ldap_delete_dn;
248         BOOL bMsAddPrinterWizard;
249         BOOL bDNSproxy;
250         BOOL bWINSsupport;
251         BOOL bWINSproxy;
252         BOOL bLocalMaster;
253         BOOL bPreferredMaster;
254         BOOL bDomainMaster;
255         BOOL bDomainLogons;
256         BOOL bEncryptPasswords;
257         BOOL bUpdateEncrypt;
258         int  clientSchannel;
259         int  serverSchannel;
260         BOOL bNullPasswords;
261         BOOL bObeyPamRestrictions;
262         BOOL bLoadPrinters;
263         int PrintcapCacheTime;
264         BOOL bLargeReadwrite;
265         BOOL bReadRaw;
266         BOOL bWriteRaw;
267         BOOL bReadbmpx;
268         BOOL bSyslogOnly;
269         BOOL bBrowseList;
270         BOOL bNISHomeMap;
271         BOOL bTimeServer;
272         BOOL bBindInterfacesOnly;
273         BOOL bPamPasswordChange;
274         BOOL bUnixPasswdSync;
275         BOOL bPasswdChatDebug;
276         int iPasswdChatTimeout;
277         BOOL bTimestampLogs;
278         BOOL bNTSmbSupport;
279         BOOL bNTPipeSupport;
280         BOOL bNTStatusSupport;
281         BOOL bStatCache;
282         int iMaxStatCacheSize;
283         BOOL bKernelOplocks;
284         BOOL bAllowTrustedDomains;
285         BOOL bLanmanAuth;
286         BOOL bNTLMAuth;
287         BOOL bUseSpnego;
288         BOOL bClientLanManAuth;
289         BOOL bClientNTLMv2Auth;
290         BOOL bClientPlaintextAuth;
291         BOOL bClientUseSpnego;
292         BOOL bDebugHiresTimestamp;
293         BOOL bDebugPid;
294         BOOL bDebugUid;
295         BOOL bEnableCoreFiles;
296         BOOL bHostMSDfs;
297         BOOL bUseMmap;
298         BOOL bHostnameLookups;
299         BOOL bUnixExtensions;
300         BOOL bDisableNetbios;
301         BOOL bKernelChangeNotify;
302         BOOL bFamChangeNotify;
303         BOOL bUseKerberosKeytab;
304         BOOL bDeferSharingViolations;
305         BOOL bEnablePrivileges;
306         BOOL bASUSupport;
307         BOOL bUsershareOwnerOnly;
308         BOOL bUsershareAllowGuests;
309         BOOL bRegistryShares;
310         int restrict_anonymous;
311         int name_cache_timeout;
312         int client_signing;
313         int server_signing;
314         int iUsershareMaxShares;
315         int iIdmapExpireTime;
316         int iIdmapNegativeTime;
317
318         BOOL bResetOnZeroVC;
319         param_opt_struct *param_opt;
320 } global;
321
322 static global Globals;
323
324 /* 
325  * This structure describes a single service. 
326  */
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 bDmapiSupport;
414         BOOL bLocking;
415         int iStrictLocking;
416         BOOL bPosixLocking;
417         BOOL bShareModes;
418         BOOL bOpLocks;
419         BOOL bLevel2OpLocks;
420         BOOL bOnlyUser;
421         BOOL bMangledNames;
422         BOOL bWidelinks;
423         BOOL bSymlinks;
424         BOOL bSyncAlways;
425         BOOL bStrictAllocate;
426         BOOL bStrictSync;
427         char magic_char;
428         BOOL *copymap;
429         BOOL bDeleteReadonly;
430         BOOL bFakeOplocks;
431         BOOL bDeleteVetoFiles;
432         BOOL bDosFilemode;
433         BOOL bDosFiletimes;
434         BOOL bDosFiletimeResolution;
435         BOOL bFakeDirCreateTimes;
436         BOOL bBlockingLocks;
437         BOOL bInheritPerms;
438         BOOL bInheritACLS;
439         BOOL bInheritOwner;
440         BOOL bMSDfsRoot;
441         BOOL bUseClientDriver;
442         BOOL bDefaultDevmode;
443         BOOL bForcePrintername;
444         BOOL bNTAclSupport;
445         BOOL bForceUnknownAclUser;
446         BOOL bUseSendfile;
447         BOOL bProfileAcls;
448         BOOL bMap_acl_inherit;
449         BOOL bAfs_Share;
450         BOOL bEASupport;
451         BOOL bAclCheckPermissions;
452         BOOL bAclMapFullControl;
453         BOOL bAclGroupControl;
454         int iallocation_roundup_size;
455         int iAioReadSize;
456         int iAioWriteSize;
457         int iMap_readonly;
458         int ichange_notify_timeout;
459         param_opt_struct *param_opt;
460
461         char dummy[3];          /* for alignment */
462 } service;
463
464
465 /* This is a default service used to prime a services structure */
466 static service sDefault = {
467         True,                   /* valid */
468         False,                  /* not autoloaded */
469         0,                      /* not a usershare */
470         (time_t)0,              /* No last mod time */
471         NULL,                   /* szService */
472         NULL,                   /* szPath */
473         NULL,                   /* szUsername */
474         NULL,                   /* szInvalidUsers */
475         NULL,                   /* szValidUsers */
476         NULL,                   /* szAdminUsers */
477         NULL,                   /* szCopy */
478         NULL,                   /* szInclude */
479         NULL,                   /* szPreExec */
480         NULL,                   /* szPostExec */
481         NULL,                   /* szRootPreExec */
482         NULL,                   /* szRootPostExec */
483         NULL,                   /* szCupsOptions */
484         NULL,                   /* szPrintcommand */
485         NULL,                   /* szLpqcommand */
486         NULL,                   /* szLprmcommand */
487         NULL,                   /* szLppausecommand */
488         NULL,                   /* szLpresumecommand */
489         NULL,                   /* szQueuepausecommand */
490         NULL,                   /* szQueueresumecommand */
491         NULL,                   /* szPrintername */
492         NULL,                   /* szDontdescend */
493         NULL,                   /* szHostsallow */
494         NULL,                   /* szHostsdeny */
495         NULL,                   /* szMagicScript */
496         NULL,                   /* szMagicOutput */
497         NULL,                   /* szMangledMap */
498         NULL,                   /* szVetoFiles */
499         NULL,                   /* szHideFiles */
500         NULL,                   /* szVetoOplockFiles */
501         NULL,                   /* comment */
502         NULL,                   /* force user */
503         NULL,                   /* force group */
504         NULL,                   /* readlist */
505         NULL,                   /* writelist */
506         NULL,                   /* printer admin */
507         NULL,                   /* volume */
508         NULL,                   /* fstype */
509         NULL,                   /* vfs objects */
510         NULL,                   /* szMSDfsProxy */
511         NULL,                   /* szAioWriteBehind */
512         NULL,                   /* szDfree */
513         0,                      /* iMinPrintSpace */
514         1000,                   /* iMaxPrintJobs */
515         0,                      /* iMaxReportedPrintJobs */
516         0,                      /* iWriteCacheSize */
517         0744,                   /* iCreate_mask */
518         0000,                   /* iCreate_force_mode */
519         0777,                   /* iSecurity_mask */
520         0,                      /* iSecurity_force_mode */
521         0755,                   /* iDir_mask */
522         0000,                   /* iDir_force_mode */
523         0777,                   /* iDir_Security_mask */
524         0,                      /* iDir_Security_force_mode */
525         0,                      /* iMaxConnections */
526         CASE_LOWER,             /* iDefaultCase */
527         DEFAULT_PRINTING,       /* iPrinting */
528         2,                      /* iOplockContentionLimit */
529         0,                      /* iCSCPolicy */
530         1024,                   /* iBlock_size */
531         0,                      /* iDfreeCacheTime */
532         False,                  /* bPreexecClose */
533         False,                  /* bRootpreexecClose */
534         Auto,                   /* case sensitive */
535         True,                   /* case preserve */
536         True,                   /* short case preserve */
537         True,                   /* bHideDotFiles */
538         False,                  /* bHideSpecialFiles */
539         False,                  /* bHideUnReadable */
540         False,                  /* bHideUnWriteableFiles */
541         True,                   /* bBrowseable */
542         True,                   /* bAvailable */
543         True,                   /* bRead_only */
544         True,                   /* bNo_set_dir */
545         False,                  /* bGuest_only */
546         False,                  /* bGuest_ok */
547         False,                  /* bPrint_ok */
548         False,                  /* bMap_system */
549         False,                  /* bMap_hidden */
550         True,                   /* bMap_archive */
551         False,                  /* bStoreDosAttributes */
552         False,                  /* bDmapiSupport */
553         True,                   /* bLocking */
554         Auto,                   /* iStrictLocking */
555         True,                   /* bPosixLocking */
556         True,                   /* bShareModes */
557         True,                   /* bOpLocks */
558         True,                   /* bLevel2OpLocks */
559         False,                  /* bOnlyUser */
560         True,                   /* bMangledNames */
561         True,                   /* bWidelinks */
562         True,                   /* bSymlinks */
563         False,                  /* bSyncAlways */
564         False,                  /* bStrictAllocate */
565         False,                  /* bStrictSync */
566         '~',                    /* magic char */
567         NULL,                   /* copymap */
568         False,                  /* bDeleteReadonly */
569         False,                  /* bFakeOplocks */
570         False,                  /* bDeleteVetoFiles */
571         False,                  /* bDosFilemode */
572         True,                   /* bDosFiletimes */
573         False,                  /* bDosFiletimeResolution */
574         False,                  /* bFakeDirCreateTimes */
575         True,                   /* bBlockingLocks */
576         False,                  /* bInheritPerms */
577         False,                  /* bInheritACLS */
578         False,                  /* bInheritOwner */
579         True,                   /* bMSDfsRoot */
580         False,                  /* bUseClientDriver */
581         True,                   /* bDefaultDevmode */
582         False,                  /* bForcePrintername */
583         True,                   /* bNTAclSupport */
584         False,                  /* bForceUnknownAclUser */
585         False,                  /* bUseSendfile */
586         False,                  /* bProfileAcls */
587         False,                  /* bMap_acl_inherit */
588         False,                  /* bAfs_Share */
589         False,                  /* bEASupport */
590         True,                   /* bAclCheckPermissions */
591         True,                   /* bAclMapFullControl */
592         False,                  /* bAclGroupControl */
593         SMB_ROUNDUP_ALLOCATION_SIZE,            /* iallocation_roundup_size */
594         0,                      /* iAioReadSize */
595         0,                      /* iAioWriteSize */
596         MAP_READONLY_YES,       /* iMap_readonly */
597         60,                     /* ichange_notify_timeout = 1 minute default. */
598         
599         NULL,                   /* Parametric options */
600
601         ""                      /* dummy */
602 };
603
604 /* local variables */
605 static service **ServicePtrs = NULL;
606 static int iNumServices = 0;
607 static int iServiceIndex = 0;
608 static TDB_CONTEXT *ServiceHash;
609 static int *invalid_services = NULL;
610 static int num_invalid_services = 0;
611 static BOOL bInGlobalSection = True;
612 static BOOL bGlobalOnly = False;
613 static int server_role;
614 static int default_server_announce;
615
616 #define NUMPARAMETERS (sizeof(parm_table) / sizeof(struct parm_struct))
617
618 /* prototypes for the special type handlers */
619 static BOOL handle_include( int snum, const char *pszParmValue, char **ptr);
620 static BOOL handle_copy( int snum, const char *pszParmValue, char **ptr);
621 static BOOL handle_netbios_name( int snum, const char *pszParmValue, char **ptr);
622 static BOOL handle_idmap_uid( int snum, const char *pszParmValue, char **ptr);
623 static BOOL handle_idmap_gid( int snum, const char *pszParmValue, char **ptr);
624 static BOOL handle_debug_list( int snum, const char *pszParmValue, char **ptr );
625 static BOOL handle_workgroup( int snum, const char *pszParmValue, char **ptr );
626 static BOOL handle_netbios_aliases( int snum, const char *pszParmValue, char **ptr );
627 static BOOL handle_netbios_scope( int snum, const char *pszParmValue, char **ptr );
628 static BOOL handle_charset( int snum, const char *pszParmValue, char **ptr );
629 static BOOL handle_printing( int snum, const char *pszParmValue, char **ptr);
630
631 static void set_server_role(void);
632 static void set_default_server_announce_type(void);
633 static void set_allowed_client_auth(void);
634
635 static const struct enum_list enum_protocol[] = {
636         {PROTOCOL_NT1, "NT1"},
637         {PROTOCOL_LANMAN2, "LANMAN2"},
638         {PROTOCOL_LANMAN1, "LANMAN1"},
639         {PROTOCOL_CORE, "CORE"},
640         {PROTOCOL_COREPLUS, "COREPLUS"},
641         {PROTOCOL_COREPLUS, "CORE+"},
642         {-1, NULL}
643 };
644
645 static const struct enum_list enum_security[] = {
646         {SEC_SHARE, "SHARE"},
647         {SEC_USER, "USER"},
648         {SEC_SERVER, "SERVER"},
649         {SEC_DOMAIN, "DOMAIN"},
650 #ifdef HAVE_ADS
651         {SEC_ADS, "ADS"},
652 #endif
653         {-1, NULL}
654 };
655
656 static const struct enum_list enum_printing[] = {
657         {PRINT_SYSV, "sysv"},
658         {PRINT_AIX, "aix"},
659         {PRINT_HPUX, "hpux"},
660         {PRINT_BSD, "bsd"},
661         {PRINT_QNX, "qnx"},
662         {PRINT_PLP, "plp"},
663         {PRINT_LPRNG, "lprng"},
664         {PRINT_CUPS, "cups"},
665         {PRINT_IPRINT, "iprint"},
666         {PRINT_LPRNT, "nt"},
667         {PRINT_LPROS2, "os2"},
668 #ifdef DEVELOPER
669         {PRINT_TEST, "test"},
670         {PRINT_VLP, "vlp"},
671 #endif /* DEVELOPER */
672         {-1, NULL}
673 };
674
675 static const struct enum_list enum_ldap_ssl[] = {
676         {LDAP_SSL_OFF, "no"},
677         {LDAP_SSL_OFF, "No"},
678         {LDAP_SSL_OFF, "off"},
679         {LDAP_SSL_OFF, "Off"},
680         {LDAP_SSL_START_TLS, "start tls"},
681         {LDAP_SSL_START_TLS, "Start_tls"},
682         {-1, NULL}
683 };
684
685 static const struct enum_list enum_ldap_passwd_sync[] = {
686         {LDAP_PASSWD_SYNC_OFF, "no"},
687         {LDAP_PASSWD_SYNC_OFF, "No"},
688         {LDAP_PASSWD_SYNC_OFF, "off"},
689         {LDAP_PASSWD_SYNC_OFF, "Off"},
690         {LDAP_PASSWD_SYNC_ON, "Yes"},
691         {LDAP_PASSWD_SYNC_ON, "yes"},
692         {LDAP_PASSWD_SYNC_ON, "on"},
693         {LDAP_PASSWD_SYNC_ON, "On"},
694         {LDAP_PASSWD_SYNC_ONLY, "Only"},
695         {LDAP_PASSWD_SYNC_ONLY, "only"},
696         {-1, NULL}
697 };
698
699 /* Types of machine we can announce as. */
700 #define ANNOUNCE_AS_NT_SERVER 1
701 #define ANNOUNCE_AS_WIN95 2
702 #define ANNOUNCE_AS_WFW 3
703 #define ANNOUNCE_AS_NT_WORKSTATION 4
704
705 static const struct enum_list enum_announce_as[] = {
706         {ANNOUNCE_AS_NT_SERVER, "NT"},
707         {ANNOUNCE_AS_NT_SERVER, "NT Server"},
708         {ANNOUNCE_AS_NT_WORKSTATION, "NT Workstation"},
709         {ANNOUNCE_AS_WIN95, "win95"},
710         {ANNOUNCE_AS_WFW, "WfW"},
711         {-1, NULL}
712 };
713
714 static const struct enum_list enum_map_readonly[] = {
715         {MAP_READONLY_NO, "no"},
716         {MAP_READONLY_NO, "false"},
717         {MAP_READONLY_NO, "0"},
718         {MAP_READONLY_YES, "yes"},
719         {MAP_READONLY_YES, "true"},
720         {MAP_READONLY_YES, "1"},
721         {MAP_READONLY_PERMISSIONS, "permissions"},
722         {MAP_READONLY_PERMISSIONS, "perms"},
723         {-1, NULL}
724 };
725
726 static const struct enum_list enum_case[] = {
727         {CASE_LOWER, "lower"},
728         {CASE_UPPER, "upper"},
729         {-1, NULL}
730 };
731
732 static const struct enum_list enum_bool_auto[] = {
733         {False, "No"},
734         {False, "False"},
735         {False, "0"},
736         {True, "Yes"},
737         {True, "True"},
738         {True, "1"},
739         {Auto, "Auto"},
740         {-1, NULL}
741 };
742
743 /* Client-side offline caching policy types */
744 #define CSC_POLICY_MANUAL 0
745 #define CSC_POLICY_DOCUMENTS 1
746 #define CSC_POLICY_PROGRAMS 2
747 #define CSC_POLICY_DISABLE 3
748
749 static const struct enum_list enum_csc_policy[] = {
750         {CSC_POLICY_MANUAL, "manual"},
751         {CSC_POLICY_DOCUMENTS, "documents"},
752         {CSC_POLICY_PROGRAMS, "programs"},
753         {CSC_POLICY_DISABLE, "disable"},
754         {-1, NULL}
755 };
756
757 /* SMB signing types. */
758 static const struct enum_list enum_smb_signing_vals[] = {
759         {False, "No"},
760         {False, "False"},
761         {False, "0"},
762         {False, "Off"},
763         {False, "disabled"},
764         {True, "Yes"},
765         {True, "True"},
766         {True, "1"},
767         {True, "On"},
768         {True, "enabled"},
769         {Auto, "auto"},
770         {Required, "required"},
771         {Required, "mandatory"},
772         {Required, "force"},
773         {Required, "forced"},
774         {Required, "enforced"},
775         {-1, NULL}
776 };
777
778 /* ACL compatibility options. */
779 static const struct enum_list enum_acl_compat_vals[] = {
780     { ACL_COMPAT_AUTO, "auto" },
781     { ACL_COMPAT_WINNT, "winnt" },
782     { ACL_COMPAT_WIN2K, "win2k" },
783     { -1, NULL}
784 };
785
786 /* 
787    Do you want session setups at user level security with a invalid
788    password to be rejected or allowed in as guest? WinNT rejects them
789    but it can be a pain as it means "net view" needs to use a password
790
791    You have 3 choices in the setting of map_to_guest:
792
793    "Never" means session setups with an invalid password
794    are rejected. This is the default.
795
796    "Bad User" means session setups with an invalid password
797    are rejected, unless the username does not exist, in which case it
798    is treated as a guest login
799
800    "Bad Password" means session setups with an invalid password
801    are treated as a guest login
802
803    Note that map_to_guest only has an effect in user or server
804    level security.
805 */
806
807 static const struct enum_list enum_map_to_guest[] = {
808         {NEVER_MAP_TO_GUEST, "Never"},
809         {MAP_TO_GUEST_ON_BAD_USER, "Bad User"},
810         {MAP_TO_GUEST_ON_BAD_PASSWORD, "Bad Password"},
811         {MAP_TO_GUEST_ON_BAD_UID, "Bad Uid"},
812         {-1, NULL}
813 };
814
815 /* Note: We do not initialise the defaults union - it is not allowed in ANSI C
816  *
817  * The FLAG_HIDE is explicit. Paramters set this way do NOT appear in any edit
818  * screen in SWAT. This is used to exclude parameters as well as to squash all
819  * parameters that have been duplicated by pseudonyms.
820  *
821  * NOTE: To display a parameter in BASIC view set FLAG_BASIC
822  *       Any parameter that does NOT have FLAG_ADVANCED will not disply at all
823  *       Set FLAG_SHARE and FLAG_PRINT to specifically display parameters in
824  *        respective views.
825  *
826  * NOTE2: Handling of duplicated (synonym) paramters:
827  *      Only the first occurance of a parameter should be enabled by FLAG_BASIC
828  *      and/or FLAG_ADVANCED. All duplicates following the first mention should be
829  *      set to FLAG_HIDE. ie: Make you must place the parameter that has the preferred
830  *      name first, and all synonyms must follow it with the FLAG_HIDE attribute.
831  */
832
833 static struct parm_struct parm_table[] = {
834         {N_("Base Options"), P_SEP, P_SEPARATOR}, 
835
836         {"dos charset", P_STRING, P_GLOBAL, &Globals.dos_charset, handle_charset, NULL, FLAG_ADVANCED}, 
837         {"unix charset", P_STRING, P_GLOBAL, &Globals.unix_charset, handle_charset, NULL, FLAG_ADVANCED}, 
838         {"display charset", P_STRING, P_GLOBAL, &Globals.display_charset, handle_charset, NULL, FLAG_ADVANCED}, 
839         {"comment", P_STRING, P_LOCAL, &sDefault.comment, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT}, 
840         {"path", P_STRING, P_LOCAL, &sDefault.szPath, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT}, 
841         {"directory", P_STRING, P_LOCAL, &sDefault.szPath, NULL, NULL, FLAG_HIDE}, 
842         {"workgroup", P_USTRING, P_GLOBAL, &Globals.szWorkgroup, handle_workgroup, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD}, 
843 #ifdef WITH_ADS
844         {"realm", P_USTRING, P_GLOBAL, &Globals.szRealm, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD}, 
845 #endif
846         {"netbios name", P_USTRING, P_GLOBAL, &Globals.szNetbiosName, handle_netbios_name, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD}, 
847         {"netbios aliases", P_LIST, P_GLOBAL, &Globals.szNetbiosAliases, handle_netbios_aliases,  NULL, FLAG_ADVANCED}, 
848         {"netbios scope", P_USTRING, P_GLOBAL, &Globals.szNetbiosScope, handle_netbios_scope,  NULL, FLAG_ADVANCED}, 
849         {"server string", P_STRING, P_GLOBAL, &Globals.szServerString, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED }, 
850         {"interfaces", P_LIST, P_GLOBAL, &Globals.szInterfaces, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD}, 
851         {"bind interfaces only", P_BOOL, P_GLOBAL, &Globals.bBindInterfacesOnly, NULL, NULL, FLAG_ADVANCED | FLAG_WIZARD}, 
852
853         {N_("Security Options"), P_SEP, P_SEPARATOR}, 
854
855         {"security", P_ENUM, P_GLOBAL, &Globals.security, NULL, enum_security, FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD}, 
856         {"auth methods", P_LIST, P_GLOBAL, &Globals.AuthMethods, NULL, NULL, FLAG_ADVANCED}, 
857         {"encrypt passwords", P_BOOL, P_GLOBAL, &Globals.bEncryptPasswords, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD}, 
858         {"update encrypted", P_BOOL, P_GLOBAL, &Globals.bUpdateEncrypt, NULL, NULL, FLAG_ADVANCED}, 
859         {"client schannel", P_ENUM, P_GLOBAL, &Globals.clientSchannel, NULL, enum_bool_auto, FLAG_BASIC | FLAG_ADVANCED}, 
860         {"server schannel", P_ENUM, P_GLOBAL, &Globals.serverSchannel, NULL, enum_bool_auto, FLAG_BASIC | FLAG_ADVANCED}, 
861         {"allow trusted domains", P_BOOL, P_GLOBAL, &Globals.bAllowTrustedDomains, NULL, NULL, FLAG_ADVANCED}, 
862         {"map to guest", P_ENUM, P_GLOBAL, &Globals.map_to_guest, NULL, enum_map_to_guest, FLAG_ADVANCED}, 
863         {"null passwords", P_BOOL, P_GLOBAL, &Globals.bNullPasswords, NULL, NULL, FLAG_ADVANCED}, 
864         {"obey pam restrictions", P_BOOL, P_GLOBAL, &Globals.bObeyPamRestrictions, NULL, NULL, FLAG_ADVANCED}, 
865         {"password server", P_STRING, P_GLOBAL, &Globals.szPasswordServer, NULL, NULL, FLAG_ADVANCED | FLAG_WIZARD}, 
866         {"smb passwd file", P_STRING, P_GLOBAL, &Globals.szSMBPasswdFile, NULL, NULL, FLAG_ADVANCED}, 
867         {"private dir", P_STRING, P_GLOBAL, &Globals.szPrivateDir, NULL, NULL, FLAG_ADVANCED}, 
868         {"passdb backend", P_STRING, P_GLOBAL, &Globals.szPassdbBackend, NULL, NULL, FLAG_ADVANCED | FLAG_WIZARD}, 
869         {"algorithmic rid base", P_INTEGER, P_GLOBAL, &Globals.AlgorithmicRidBase, NULL, NULL, FLAG_ADVANCED}, 
870         {"root directory", P_STRING, P_GLOBAL, &Globals.szRootdir, NULL, NULL, FLAG_ADVANCED}, 
871         {"root dir", P_STRING, P_GLOBAL, &Globals.szRootdir, NULL, NULL, FLAG_HIDE}, 
872         {"root", P_STRING, P_GLOBAL, &Globals.szRootdir, NULL, NULL, FLAG_HIDE}, 
873         {"guest account", P_STRING, P_GLOBAL, &Globals.szGuestaccount, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED}, 
874         {"enable privileges", P_BOOL, P_GLOBAL, &Globals.bEnablePrivileges, NULL, NULL, FLAG_ADVANCED}, 
875
876         {"pam password change", P_BOOL, P_GLOBAL, &Globals.bPamPasswordChange, NULL, NULL, FLAG_ADVANCED}, 
877         {"passwd program", P_STRING, P_GLOBAL, &Globals.szPasswdProgram, NULL, NULL, FLAG_ADVANCED}, 
878         {"passwd chat", P_STRING, P_GLOBAL, &Globals.szPasswdChat, NULL, NULL, FLAG_ADVANCED}, 
879         {"passwd chat debug", P_BOOL, P_GLOBAL, &Globals.bPasswdChatDebug, NULL, NULL, FLAG_ADVANCED}, 
880         {"passwd chat timeout", P_INTEGER, P_GLOBAL, &Globals.iPasswdChatTimeout, NULL, NULL, FLAG_ADVANCED}, 
881         {"check password script", P_STRING, P_GLOBAL, &Globals.szCheckPasswordScript, NULL, NULL, FLAG_ADVANCED}, 
882         {"username map", P_STRING, P_GLOBAL, &Globals.szUsernameMap, NULL, NULL, FLAG_ADVANCED}, 
883         {"password level", P_INTEGER, P_GLOBAL, &Globals.pwordlevel, NULL, NULL, FLAG_ADVANCED}, 
884         {"username level", P_INTEGER, P_GLOBAL, &Globals.unamelevel, NULL, NULL, FLAG_ADVANCED}, 
885         {"unix password sync", P_BOOL, P_GLOBAL, &Globals.bUnixPasswdSync, NULL, NULL, FLAG_ADVANCED}, 
886         {"restrict anonymous", P_INTEGER, P_GLOBAL, &Globals.restrict_anonymous, NULL, NULL, FLAG_ADVANCED}, 
887         {"lanman auth", P_BOOL, P_GLOBAL, &Globals.bLanmanAuth, NULL, NULL, FLAG_ADVANCED}, 
888         {"ntlm auth", P_BOOL, P_GLOBAL, &Globals.bNTLMAuth, NULL, NULL, FLAG_ADVANCED}, 
889         {"client NTLMv2 auth", P_BOOL, P_GLOBAL, &Globals.bClientNTLMv2Auth, NULL, NULL, FLAG_ADVANCED}, 
890         {"client lanman auth", P_BOOL, P_GLOBAL, &Globals.bClientLanManAuth, NULL, NULL, FLAG_ADVANCED}, 
891         {"client plaintext auth", P_BOOL, P_GLOBAL, &Globals.bClientPlaintextAuth, NULL, NULL, FLAG_ADVANCED}, 
892
893         {"username", P_STRING, P_LOCAL, &sDefault.szUsername, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE}, 
894         {"user", P_STRING, P_LOCAL, &sDefault.szUsername, NULL, NULL, FLAG_HIDE}, 
895         {"users", P_STRING, P_LOCAL, &sDefault.szUsername, NULL, NULL, FLAG_HIDE}, 
896
897         {"invalid users", P_LIST, P_LOCAL, &sDefault.szInvalidUsers, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE}, 
898         {"valid users", P_LIST, P_LOCAL, &sDefault.szValidUsers, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE}, 
899         {"admin users", P_LIST, P_LOCAL, &sDefault.szAdminUsers, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE}, 
900         {"read list", P_LIST, P_LOCAL, &sDefault.readlist, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE}, 
901         {"write list", P_LIST, P_LOCAL, &sDefault.writelist, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE}, 
902         {"printer admin", P_LIST, P_LOCAL, &sDefault.printer_admin, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_PRINT | FLAG_DEPRECATED }, 
903         {"force user", P_STRING, P_LOCAL, &sDefault.force_user, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
904         {"force group", P_STRING, P_LOCAL, &sDefault.force_group, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
905         {"group", P_STRING, P_LOCAL, &sDefault.force_group, NULL, NULL, FLAG_ADVANCED}, 
906
907         {"read only", P_BOOL, P_LOCAL, &sDefault.bRead_only, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE}, 
908         {"write ok", P_BOOLREV, P_LOCAL, &sDefault.bRead_only, NULL, NULL, FLAG_HIDE}, 
909         {"writeable", P_BOOLREV, P_LOCAL, &sDefault.bRead_only, NULL, NULL, FLAG_HIDE}, 
910         {"writable", P_BOOLREV, P_LOCAL, &sDefault.bRead_only, NULL, NULL, FLAG_HIDE}, 
911
912         {"acl check permissions", P_BOOL, P_LOCAL, &sDefault.bAclCheckPermissions, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
913         {"acl group control", P_BOOL, P_LOCAL, &sDefault.bAclGroupControl, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE | FLAG_DEPRECATED },
914         {"acl map full control", P_BOOL, P_LOCAL, &sDefault.bAclMapFullControl, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
915         {"create mask", P_OCTAL, P_LOCAL, &sDefault.iCreate_mask, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE}, 
916         {"create mode", P_OCTAL, P_LOCAL, &sDefault.iCreate_mask, NULL, NULL, FLAG_HIDE}, 
917         {"force create mode", P_OCTAL, P_LOCAL, &sDefault.iCreate_force_mode, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE}, 
918         {"security mask", P_OCTAL, P_LOCAL, &sDefault.iSecurity_mask, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE}, 
919         {"force security mode", P_OCTAL, P_LOCAL, &sDefault.iSecurity_force_mode, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE}, 
920         {"directory mask", P_OCTAL, P_LOCAL, &sDefault.iDir_mask, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE}, 
921         {"directory mode", P_OCTAL, P_LOCAL, &sDefault.iDir_mask, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL}, 
922         {"force directory mode", P_OCTAL, P_LOCAL, &sDefault.iDir_force_mode, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE}, 
923         {"directory security mask", P_OCTAL, P_LOCAL, &sDefault.iDir_Security_mask, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE}, 
924         {"force directory security mode", P_OCTAL, P_LOCAL, &sDefault.iDir_Security_force_mode, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE}, 
925         {"force unknown acl user", P_BOOL, P_LOCAL, &sDefault.bForceUnknownAclUser, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE},
926         {"inherit permissions", P_BOOL, P_LOCAL, &sDefault.bInheritPerms, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
927         {"inherit acls", P_BOOL, P_LOCAL, &sDefault.bInheritACLS, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
928         {"inherit owner", P_BOOL, P_LOCAL, &sDefault.bInheritOwner, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
929         {"guest only", P_BOOL, P_LOCAL, &sDefault.bGuest_only, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
930         {"only guest", P_BOOL, P_LOCAL, &sDefault.bGuest_only, NULL, NULL, FLAG_HIDE}, 
931
932         {"guest ok", P_BOOL, P_LOCAL, &sDefault.bGuest_ok, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT}, 
933         {"public", P_BOOL, P_LOCAL, &sDefault.bGuest_ok, NULL, NULL, FLAG_HIDE}, 
934
935         {"only user", P_BOOL, P_LOCAL, &sDefault.bOnlyUser, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_DEPRECATED}, 
936         {"hosts allow", P_LIST, P_LOCAL, &sDefault.szHostsallow, NULL, NULL, FLAG_GLOBAL | FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT}, 
937         {"allow hosts", P_LIST, P_LOCAL, &sDefault.szHostsallow, NULL, NULL, FLAG_HIDE}, 
938         {"hosts deny", P_LIST, P_LOCAL, &sDefault.szHostsdeny, NULL, NULL, FLAG_GLOBAL | FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT}, 
939         {"deny hosts", P_LIST, P_LOCAL, &sDefault.szHostsdeny, NULL, NULL, FLAG_HIDE}, 
940         {"preload modules", P_LIST, P_GLOBAL, &Globals.szPreloadModules, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL}, 
941         {"use kerberos keytab", P_BOOL, P_GLOBAL, &Globals.bUseKerberosKeytab, NULL, NULL, FLAG_ADVANCED}, 
942
943         {N_("Logging Options"), P_SEP, P_SEPARATOR}, 
944
945         {"log level", P_STRING, P_GLOBAL, &Globals.szLogLevel, handle_debug_list, NULL, FLAG_ADVANCED}, 
946         {"debuglevel", P_STRING, P_GLOBAL, &Globals.szLogLevel, handle_debug_list, NULL, FLAG_HIDE}, 
947         {"syslog", P_INTEGER, P_GLOBAL, &Globals.syslog, NULL, NULL, FLAG_ADVANCED}, 
948         {"syslog only", P_BOOL, P_GLOBAL, &Globals.bSyslogOnly, NULL, NULL, FLAG_ADVANCED}, 
949         {"log file", P_STRING, P_GLOBAL, &Globals.szLogFile, NULL, NULL, FLAG_ADVANCED}, 
950
951         {"max log size", P_INTEGER, P_GLOBAL, &Globals.max_log_size, NULL, NULL, FLAG_ADVANCED}, 
952         {"debug timestamp", P_BOOL, P_GLOBAL, &Globals.bTimestampLogs, NULL, NULL, FLAG_ADVANCED}, 
953         {"timestamp logs", P_BOOL, P_GLOBAL, &Globals.bTimestampLogs, NULL, NULL, FLAG_ADVANCED}, 
954         {"debug hires timestamp", P_BOOL, P_GLOBAL, &Globals.bDebugHiresTimestamp, NULL, NULL, FLAG_ADVANCED}, 
955         {"debug pid", P_BOOL, P_GLOBAL, &Globals.bDebugPid, NULL, NULL, FLAG_ADVANCED}, 
956         {"debug uid", P_BOOL, P_GLOBAL, &Globals.bDebugUid, NULL, NULL, FLAG_ADVANCED}, 
957         {"enable core files", P_BOOL, P_GLOBAL, &Globals.bEnableCoreFiles, NULL, NULL, FLAG_ADVANCED},
958
959         {N_("Protocol Options"), P_SEP, P_SEPARATOR}, 
960
961         {"allocation roundup size", P_INTEGER, P_LOCAL, &sDefault.iallocation_roundup_size, NULL, NULL, FLAG_ADVANCED}, 
962         {"aio read size", P_INTEGER, P_LOCAL, &sDefault.iAioReadSize, NULL, NULL, FLAG_ADVANCED}, 
963         {"aio write size", P_INTEGER, P_LOCAL, &sDefault.iAioWriteSize, NULL, NULL, FLAG_ADVANCED}, 
964         {"aio write behind", P_STRING, P_LOCAL, &sDefault.szAioWriteBehind, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL }, 
965         {"smb ports", P_STRING, P_GLOBAL, &Globals.smb_ports, NULL, NULL, FLAG_ADVANCED}, 
966         {"large readwrite", P_BOOL, P_GLOBAL, &Globals.bLargeReadwrite, NULL, NULL, FLAG_ADVANCED}, 
967         {"max protocol", P_ENUM, P_GLOBAL, &Globals.maxprotocol, NULL, enum_protocol, FLAG_ADVANCED}, 
968         {"protocol", P_ENUM, P_GLOBAL, &Globals.maxprotocol, NULL, enum_protocol, FLAG_ADVANCED}, 
969         {"min protocol", P_ENUM, P_GLOBAL, &Globals.minprotocol, NULL, enum_protocol, FLAG_ADVANCED}, 
970         {"read bmpx", P_BOOL, P_GLOBAL, &Globals.bReadbmpx, NULL, NULL, FLAG_ADVANCED}, 
971         {"read raw", P_BOOL, P_GLOBAL, &Globals.bReadRaw, NULL, NULL, FLAG_ADVANCED}, 
972         {"write raw", P_BOOL, P_GLOBAL, &Globals.bWriteRaw, NULL, NULL, FLAG_ADVANCED}, 
973         {"disable netbios", P_BOOL, P_GLOBAL, &Globals.bDisableNetbios, NULL, NULL, FLAG_ADVANCED}, 
974         {"reset on zero vc", P_BOOL, P_GLOBAL, &Globals.bResetOnZeroVC, NULL, NULL, FLAG_ADVANCED}, 
975
976         {"acl compatibility", P_ENUM, P_GLOBAL, &Globals.iAclCompat, NULL,  enum_acl_compat_vals, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
977         {"defer sharing violations", P_BOOL, P_GLOBAL, &Globals.bDeferSharingViolations, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL},
978         {"ea support", P_BOOL, P_LOCAL, &sDefault.bEASupport, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
979         {"nt acl support", P_BOOL, P_LOCAL, &sDefault.bNTAclSupport, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
980         {"nt pipe support", P_BOOL, P_GLOBAL, &Globals.bNTPipeSupport, NULL, NULL, FLAG_ADVANCED}, 
981         {"nt status support", P_BOOL, P_GLOBAL, &Globals.bNTStatusSupport, NULL, NULL, FLAG_ADVANCED}, 
982         {"profile acls", P_BOOL, P_LOCAL, &sDefault.bProfileAcls, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE}, 
983
984         {"announce version", P_STRING, P_GLOBAL, &Globals.szAnnounceVersion, NULL, NULL, FLAG_ADVANCED}, 
985         {"announce as", P_ENUM, P_GLOBAL, &Globals.announce_as, NULL, enum_announce_as,  FLAG_ADVANCED}, 
986         {"map acl inherit", P_BOOL, P_LOCAL, &sDefault.bMap_acl_inherit, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
987         {"afs share", P_BOOL, P_LOCAL, &sDefault.bAfs_Share, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
988         {"max mux", P_INTEGER, P_GLOBAL, &Globals.max_mux, NULL, NULL, FLAG_ADVANCED}, 
989         {"max xmit", P_INTEGER, P_GLOBAL, &Globals.max_xmit, NULL, NULL, FLAG_ADVANCED}, 
990
991         {"name resolve order", P_STRING, P_GLOBAL, &Globals.szNameResolveOrder, NULL, NULL, FLAG_ADVANCED | FLAG_WIZARD}, 
992         {"max ttl", P_INTEGER, P_GLOBAL, &Globals.max_ttl, NULL, NULL, FLAG_ADVANCED}, 
993         {"max wins ttl", P_INTEGER, P_GLOBAL, &Globals.max_wins_ttl, NULL, NULL, FLAG_ADVANCED}, 
994         {"min wins ttl", P_INTEGER, P_GLOBAL, &Globals.min_wins_ttl, NULL, NULL, FLAG_ADVANCED}, 
995         {"time server", P_BOOL, P_GLOBAL, &Globals.bTimeServer, NULL, NULL, FLAG_ADVANCED}, 
996         {"unix extensions", P_BOOL, P_GLOBAL, &Globals.bUnixExtensions, NULL, NULL, FLAG_ADVANCED}, 
997         {"use spnego", P_BOOL, P_GLOBAL, &Globals.bUseSpnego, NULL, NULL, FLAG_ADVANCED}, 
998         {"client signing", P_ENUM, P_GLOBAL, &Globals.client_signing, NULL, enum_smb_signing_vals, FLAG_ADVANCED}, 
999         {"server signing", P_ENUM, P_GLOBAL, &Globals.server_signing, NULL, enum_smb_signing_vals, FLAG_ADVANCED}, 
1000         {"client use spnego", P_BOOL, P_GLOBAL, &Globals.bClientUseSpnego, NULL, NULL, FLAG_ADVANCED}, 
1001
1002         {"enable asu support", P_BOOL, P_GLOBAL, &Globals.bASUSupport, NULL, NULL, FLAG_ADVANCED}, 
1003         {"svcctl list", P_LIST, P_GLOBAL, &Globals.szServicesList, NULL, NULL, FLAG_ADVANCED},
1004
1005         {N_("Tuning Options"), P_SEP, P_SEPARATOR}, 
1006
1007         {"block size", P_INTEGER, P_LOCAL, &sDefault.iBlock_size, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1008         {"change notify timeout", P_INTEGER, P_LOCAL, &sDefault.ichange_notify_timeout, NULL, NULL, FLAG_ADVANCED}, 
1009         {"deadtime", P_INTEGER, P_GLOBAL, &Globals.deadtime, NULL, NULL, FLAG_ADVANCED}, 
1010         {"getwd cache", P_BOOL, P_GLOBAL, &use_getwd_cache, NULL, NULL, FLAG_ADVANCED}, 
1011         {"keepalive", P_INTEGER, P_GLOBAL, &keepalive, NULL, NULL, FLAG_ADVANCED}, 
1012         {"kernel change notify", P_BOOL, P_GLOBAL, &Globals.bKernelChangeNotify, NULL, NULL, FLAG_ADVANCED}, 
1013         {"fam change notify", P_BOOL, P_GLOBAL, &Globals.bFamChangeNotify, NULL, NULL, FLAG_ADVANCED},
1014
1015         {"lpq cache time", P_INTEGER, P_GLOBAL, &Globals.lpqcachetime, NULL, NULL, FLAG_ADVANCED}, 
1016         {"max smbd processes", P_INTEGER, P_GLOBAL, &Globals.iMaxSmbdProcesses, NULL, NULL, FLAG_ADVANCED}, 
1017         {"max connections", P_INTEGER, P_LOCAL, &sDefault.iMaxConnections, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
1018         {"paranoid server security", P_BOOL, P_GLOBAL, &Globals.paranoid_server_security, NULL, NULL, FLAG_ADVANCED}, 
1019         {"max disk size", P_INTEGER, P_GLOBAL, &Globals.maxdisksize, NULL, NULL, FLAG_ADVANCED}, 
1020         {"max open files", P_INTEGER, P_GLOBAL, &Globals.max_open_files, NULL, NULL, FLAG_ADVANCED}, 
1021         {"min print space", P_INTEGER, P_LOCAL, &sDefault.iMinPrintSpace, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT}, 
1022         {"open files database hash size", P_INTEGER, P_GLOBAL, &Globals.open_files_db_hash_size, NULL, NULL, FLAG_ADVANCED}, 
1023
1024         {"socket options", P_GSTRING, P_GLOBAL, user_socket_options, NULL, NULL, FLAG_ADVANCED}, 
1025         {"strict allocate", P_BOOL, P_LOCAL, &sDefault.bStrictAllocate, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
1026         {"strict sync", P_BOOL, P_LOCAL, &sDefault.bStrictSync, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
1027         {"sync always", P_BOOL, P_LOCAL, &sDefault.bSyncAlways, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
1028         {"use mmap", P_BOOL, P_GLOBAL, &Globals.bUseMmap, NULL, NULL, FLAG_ADVANCED}, 
1029         {"use sendfile", P_BOOL, P_LOCAL, &sDefault.bUseSendfile, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
1030         {"hostname lookups", P_BOOL, P_GLOBAL, &Globals.bHostnameLookups, NULL, NULL, FLAG_ADVANCED}, 
1031         {"write cache size", P_INTEGER, P_LOCAL, &sDefault.iWriteCacheSize, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_DEPRECATED}, 
1032
1033         {"name cache timeout", P_INTEGER, P_GLOBAL, &Globals.name_cache_timeout, NULL, NULL, FLAG_ADVANCED}, 
1034
1035         {N_("Printing Options"), P_SEP, P_SEPARATOR}, 
1036
1037         {"max reported print jobs", P_INTEGER, P_LOCAL, &sDefault.iMaxReportedPrintJobs, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT}, 
1038         {"max print jobs", P_INTEGER, P_LOCAL, &sDefault.iMaxPrintJobs, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT}, 
1039         {"load printers", P_BOOL, P_GLOBAL, &Globals.bLoadPrinters, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT}, 
1040         {"printcap cache time", P_INTEGER, P_GLOBAL, &Globals.PrintcapCacheTime, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT}, 
1041         {"printcap name", P_STRING, P_GLOBAL, &Globals.szPrintcapname, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT}, 
1042         {"printcap", P_STRING, P_GLOBAL, &Globals.szPrintcapname, NULL, NULL, FLAG_HIDE}, 
1043         {"printable", P_BOOL, P_LOCAL, &sDefault.bPrint_ok, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT}, 
1044         {"print ok", P_BOOL, P_LOCAL, &sDefault.bPrint_ok, NULL, NULL, FLAG_HIDE}, 
1045         {"printing", P_ENUM, P_LOCAL, &sDefault.iPrinting, handle_printing, enum_printing, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL}, 
1046         {"cups options", P_STRING, P_LOCAL, &sDefault.szCupsOptions, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL}, 
1047         {"cups server", P_STRING, P_GLOBAL, &Globals.szCupsServer, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL}, 
1048         {"iprint server", P_STRING, P_GLOBAL, &Globals.szIPrintServer, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL}, 
1049         {"print command", P_STRING, P_LOCAL, &sDefault.szPrintcommand, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL}, 
1050         {"disable spoolss", P_BOOL, P_GLOBAL, &Globals.bDisableSpoolss, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL}, 
1051         {"enable spoolss", P_BOOLREV, P_GLOBAL, &Globals.bDisableSpoolss, NULL, NULL, FLAG_HIDE}, 
1052         {"lpq command", P_STRING, P_LOCAL, &sDefault.szLpqcommand, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL}, 
1053         {"lprm command", P_STRING, P_LOCAL, &sDefault.szLprmcommand, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL}, 
1054         {"lppause command", P_STRING, P_LOCAL, &sDefault.szLppausecommand, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL}, 
1055         {"lpresume command", P_STRING, P_LOCAL, &sDefault.szLpresumecommand, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL}, 
1056         {"queuepause command", P_STRING, P_LOCAL, &sDefault.szQueuepausecommand, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL}, 
1057         {"queueresume command", P_STRING, P_LOCAL, &sDefault.szQueueresumecommand, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT | FLAG_GLOBAL}, 
1058
1059         {"addport command", P_STRING, P_GLOBAL, &Globals.szAddPortCommand, NULL, NULL, FLAG_ADVANCED}, 
1060         {"enumports command", P_STRING, P_GLOBAL, &Globals.szEnumPortsCommand, NULL, NULL, FLAG_ADVANCED}, 
1061         {"addprinter command", P_STRING, P_GLOBAL, &Globals.szAddPrinterCommand, NULL, NULL, FLAG_ADVANCED}, 
1062         {"deleteprinter command", P_STRING, P_GLOBAL, &Globals.szDeletePrinterCommand, NULL, NULL, FLAG_ADVANCED}, 
1063         {"show add printer wizard", P_BOOL, P_GLOBAL, &Globals.bMsAddPrinterWizard, NULL, NULL, FLAG_ADVANCED}, 
1064         {"os2 driver map", P_STRING, P_GLOBAL, &Globals.szOs2DriverMap, NULL, NULL, FLAG_ADVANCED}, 
1065
1066         {"printer name", P_STRING, P_LOCAL, &sDefault.szPrintername, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT}, 
1067         {"printer", P_STRING, P_LOCAL, &sDefault.szPrintername, NULL, NULL, FLAG_HIDE}, 
1068         {"use client driver", P_BOOL, P_LOCAL, &sDefault.bUseClientDriver, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT}, 
1069         {"default devmode", P_BOOL, P_LOCAL, &sDefault.bDefaultDevmode, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT}, 
1070         {"force printername", P_BOOL, P_LOCAL, &sDefault.bForcePrintername, NULL, NULL, FLAG_ADVANCED | FLAG_PRINT}, 
1071
1072         {N_("Filename Handling"), P_SEP, P_SEPARATOR}, 
1073         {"mangling method", P_STRING, P_GLOBAL, &Globals.szManglingMethod, NULL, NULL, FLAG_ADVANCED}, 
1074         {"mangle prefix", P_INTEGER, P_GLOBAL, &Globals.mangle_prefix, NULL, NULL, FLAG_ADVANCED}, 
1075
1076         {"default case", P_ENUM, P_LOCAL, &sDefault.iDefaultCase, NULL, enum_case, FLAG_ADVANCED | FLAG_SHARE}, 
1077         {"case sensitive", P_ENUM, P_LOCAL, &sDefault.iCaseSensitive, NULL, enum_bool_auto, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1078         {"casesignames", P_ENUM, P_LOCAL, &sDefault.iCaseSensitive, NULL, enum_bool_auto, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL | FLAG_HIDE}, 
1079         {"preserve case", P_BOOL, P_LOCAL, &sDefault.bCasePreserve, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1080         {"short preserve case", P_BOOL, P_LOCAL, &sDefault.bShortCasePreserve, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1081         {"mangling char", P_CHAR, P_LOCAL, &sDefault.magic_char, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1082         {"hide dot files", P_BOOL, P_LOCAL, &sDefault.bHideDotFiles, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1083         {"hide special files", P_BOOL, P_LOCAL, &sDefault.bHideSpecialFiles, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1084         {"hide unreadable", P_BOOL, P_LOCAL, &sDefault.bHideUnReadable, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1085         {"hide unwriteable files", P_BOOL, P_LOCAL, &sDefault.bHideUnWriteableFiles, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1086         {"delete veto files", P_BOOL, P_LOCAL, &sDefault.bDeleteVetoFiles, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1087         {"veto files", P_STRING, P_LOCAL, &sDefault.szVetoFiles, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL }, 
1088         {"hide files", P_STRING, P_LOCAL, &sDefault.szHideFiles, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL }, 
1089         {"veto oplock files", P_STRING, P_LOCAL, &sDefault.szVetoOplockFiles, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL }, 
1090         {"map archive", P_BOOL, P_LOCAL, &sDefault.bMap_archive, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1091         {"map hidden", P_BOOL, P_LOCAL, &sDefault.bMap_hidden, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1092         {"map system", P_BOOL, P_LOCAL, &sDefault.bMap_system, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1093         {"map readonly", P_ENUM, P_LOCAL, &sDefault.iMap_readonly, NULL, enum_map_readonly, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1094         {"mangled names", P_BOOL, P_LOCAL, &sDefault.bMangledNames, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1095         {"mangled map", P_STRING, P_LOCAL, &sDefault.szMangledMap, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL | FLAG_DEPRECATED }, 
1096         {"max stat cache size", P_INTEGER, P_GLOBAL, &Globals.iMaxStatCacheSize, NULL, NULL, FLAG_ADVANCED}, 
1097         {"stat cache", P_BOOL, P_GLOBAL, &Globals.bStatCache, NULL, NULL, FLAG_ADVANCED}, 
1098         {"store dos attributes", P_BOOL, P_LOCAL, &sDefault.bStoreDosAttributes, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1099         {"dmapi support", P_BOOL, P_LOCAL, &sDefault.bDmapiSupport, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL},
1100
1101
1102         {N_("Domain Options"), P_SEP, P_SEPARATOR}, 
1103
1104         {"machine password timeout", P_INTEGER, P_GLOBAL, &Globals.machine_password_timeout, NULL, NULL, FLAG_ADVANCED | FLAG_WIZARD}, 
1105
1106         {N_("Logon Options"), P_SEP, P_SEPARATOR}, 
1107
1108         {"add user script", P_STRING, P_GLOBAL, &Globals.szAddUserScript, NULL, NULL, FLAG_ADVANCED}, 
1109         {"rename user script", P_STRING, P_GLOBAL, &Globals.szRenameUserScript, NULL, NULL, FLAG_ADVANCED},
1110         {"delete user script", P_STRING, P_GLOBAL, &Globals.szDelUserScript, NULL, NULL, FLAG_ADVANCED}, 
1111         {"add group script", P_STRING, P_GLOBAL, &Globals.szAddGroupScript, NULL, NULL, FLAG_ADVANCED}, 
1112         {"delete group script", P_STRING, P_GLOBAL, &Globals.szDelGroupScript, NULL, NULL, FLAG_ADVANCED}, 
1113         {"add user to group script", P_STRING, P_GLOBAL, &Globals.szAddUserToGroupScript, NULL, NULL, FLAG_ADVANCED}, 
1114         {"delete user from group script", P_STRING, P_GLOBAL, &Globals.szDelUserFromGroupScript, NULL, NULL, FLAG_ADVANCED}, 
1115         {"set primary group script", P_STRING, P_GLOBAL, &Globals.szSetPrimaryGroupScript, NULL, NULL, FLAG_ADVANCED}, 
1116         {"add machine script", P_STRING, P_GLOBAL, &Globals.szAddMachineScript, NULL, NULL, FLAG_ADVANCED}, 
1117         {"shutdown script", P_STRING, P_GLOBAL, &Globals.szShutdownScript, NULL, NULL, FLAG_ADVANCED}, 
1118         {"abort shutdown script", P_STRING, P_GLOBAL, &Globals.szAbortShutdownScript, NULL, NULL, FLAG_ADVANCED}, 
1119         {"username map script", P_STRING, P_GLOBAL, &Globals.szUsernameMapScript, NULL, NULL, FLAG_ADVANCED}, 
1120
1121         {"logon script", P_STRING, P_GLOBAL, &Globals.szLogonScript, NULL, NULL, FLAG_ADVANCED}, 
1122         {"logon path", P_STRING, P_GLOBAL, &Globals.szLogonPath, NULL, NULL, FLAG_ADVANCED}, 
1123         {"logon drive", P_STRING, P_GLOBAL, &Globals.szLogonDrive, NULL, NULL, FLAG_ADVANCED}, 
1124         {"logon home", P_STRING, P_GLOBAL, &Globals.szLogonHome, NULL, NULL, FLAG_ADVANCED}, 
1125         {"domain logons", P_BOOL, P_GLOBAL, &Globals.bDomainLogons, NULL, NULL, FLAG_ADVANCED}, 
1126
1127         {N_("Browse Options"), P_SEP, P_SEPARATOR}, 
1128
1129         {"os level", P_INTEGER, P_GLOBAL, &Globals.os_level, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED}, 
1130         {"lm announce", P_ENUM, P_GLOBAL, &Globals.lm_announce, NULL, enum_bool_auto, FLAG_ADVANCED}, 
1131         {"lm interval", P_INTEGER, P_GLOBAL, &Globals.lm_interval, NULL, NULL, FLAG_ADVANCED}, 
1132         {"preferred master", P_ENUM, P_GLOBAL, &Globals.bPreferredMaster, NULL, enum_bool_auto, FLAG_BASIC | FLAG_ADVANCED}, 
1133         {"prefered master", P_ENUM, P_GLOBAL, &Globals.bPreferredMaster, NULL, enum_bool_auto, FLAG_HIDE}, 
1134         {"local master", P_BOOL, P_GLOBAL, &Globals.bLocalMaster, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED}, 
1135         {"domain master", P_ENUM, P_GLOBAL, &Globals.bDomainMaster, NULL, enum_bool_auto, FLAG_BASIC | FLAG_ADVANCED}, 
1136         {"browse list", P_BOOL, P_GLOBAL, &Globals.bBrowseList, NULL, NULL, FLAG_ADVANCED}, 
1137         {"browseable", P_BOOL, P_LOCAL, &sDefault.bBrowseable, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT}, 
1138         {"browsable", P_BOOL, P_LOCAL, &sDefault.bBrowseable, NULL, NULL, FLAG_HIDE}, 
1139         {"enhanced browsing", P_BOOL, P_GLOBAL, &Globals.enhanced_browsing, NULL, NULL, FLAG_ADVANCED}, 
1140
1141         {N_("WINS Options"), P_SEP, P_SEPARATOR}, 
1142
1143         {"dns proxy", P_BOOL, P_GLOBAL, &Globals.bDNSproxy, NULL, NULL, FLAG_ADVANCED}, 
1144         {"wins proxy", P_BOOL, P_GLOBAL, &Globals.bWINSproxy, NULL, NULL, FLAG_ADVANCED}, 
1145
1146         {"wins server", P_LIST, P_GLOBAL, &Globals.szWINSservers, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD}, 
1147         {"wins support", P_BOOL, P_GLOBAL, &Globals.bWINSsupport, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_WIZARD}, 
1148         {"wins hook", P_STRING, P_GLOBAL, &Globals.szWINSHook, NULL, NULL, FLAG_ADVANCED}, 
1149
1150         {N_("Locking Options"), P_SEP, P_SEPARATOR}, 
1151
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}, 
1159
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}, 
1167
1168         {N_("Ldap Options"), P_SEP, P_SEPARATOR}, 
1169
1170         {"ldap admin dn", P_STRING, P_GLOBAL, &Globals.szLdapAdminDn, NULL, NULL, FLAG_ADVANCED}, 
1171         {"ldap delete dn", P_BOOL, P_GLOBAL, &Globals.ldap_delete_dn, NULL, NULL, FLAG_ADVANCED}, 
1172         {"ldap group suffix", P_STRING, P_GLOBAL, &Globals.szLdapGroupSuffix, NULL, NULL, FLAG_ADVANCED}, 
1173         {"ldap idmap suffix", P_STRING, P_GLOBAL, &Globals.szLdapIdmapSuffix, NULL, NULL, FLAG_ADVANCED}, 
1174         {"ldap machine suffix", P_STRING, P_GLOBAL, &Globals.szLdapMachineSuffix, NULL, NULL, FLAG_ADVANCED}, 
1175         {"ldap passwd sync", P_ENUM, P_GLOBAL, &Globals.ldap_passwd_sync, NULL, enum_ldap_passwd_sync, FLAG_ADVANCED}, 
1176         {"ldap password sync", P_ENUM, P_GLOBAL, &Globals.ldap_passwd_sync, NULL, enum_ldap_passwd_sync, FLAG_HIDE}, 
1177         {"ldap replication sleep", P_INTEGER, P_GLOBAL, &Globals.ldap_replication_sleep, NULL, NULL, FLAG_ADVANCED},
1178         {"ldap suffix", P_STRING, P_GLOBAL, &Globals.szLdapSuffix, NULL, NULL, FLAG_ADVANCED}, 
1179         {"ldap ssl", P_ENUM, P_GLOBAL, &Globals.ldap_ssl, NULL, enum_ldap_ssl, FLAG_ADVANCED}, 
1180         {"ldap timeout", P_INTEGER, P_GLOBAL, &Globals.ldap_timeout, NULL, NULL, FLAG_ADVANCED},
1181         {"ldap page size", P_INTEGER, P_GLOBAL, &Globals.ldap_page_size, NULL, NULL, FLAG_ADVANCED},
1182         {"ldap user suffix", P_STRING, P_GLOBAL, &Globals.szLdapUserSuffix, NULL, NULL, FLAG_ADVANCED}, 
1183
1184         {N_("Miscellaneous Options"), P_SEP, P_SEPARATOR}, 
1185         {"add share command", P_STRING, P_GLOBAL, &Globals.szAddShareCommand, NULL, NULL, FLAG_ADVANCED}, 
1186         {"change share command", P_STRING, P_GLOBAL, &Globals.szChangeShareCommand, NULL, NULL, FLAG_ADVANCED}, 
1187         {"delete share command", P_STRING, P_GLOBAL, &Globals.szDeleteShareCommand, NULL, NULL, FLAG_ADVANCED}, 
1188
1189         {N_("EventLog Options"), P_SEP, P_SEPARATOR}, 
1190         {"eventlog list",  P_LIST, P_GLOBAL, &Globals.szEventLogs, NULL, NULL, FLAG_ADVANCED | FLAG_GLOBAL | FLAG_SHARE}, 
1191         
1192         {"config file", P_STRING, P_GLOBAL, &Globals.szConfigFile, NULL, NULL, FLAG_HIDE}, 
1193         {"preload", P_STRING, P_GLOBAL, &Globals.szAutoServices, NULL, NULL, FLAG_ADVANCED}, 
1194         {"auto services", P_STRING, P_GLOBAL, &Globals.szAutoServices, NULL, NULL, FLAG_ADVANCED}, 
1195         {"lock directory", P_STRING, P_GLOBAL, &Globals.szLockDir, NULL, NULL, FLAG_ADVANCED}, 
1196         {"lock dir", P_STRING, P_GLOBAL, &Globals.szLockDir, NULL, NULL, FLAG_HIDE}, 
1197         {"pid directory", P_STRING, P_GLOBAL, &Globals.szPidDir, NULL, NULL, FLAG_ADVANCED}, 
1198 #ifdef WITH_UTMP
1199         {"utmp directory", P_STRING, P_GLOBAL, &Globals.szUtmpDir, NULL, NULL, FLAG_ADVANCED}, 
1200         {"wtmp directory", P_STRING, P_GLOBAL, &Globals.szWtmpDir, NULL, NULL, FLAG_ADVANCED}, 
1201         {"utmp", P_BOOL, P_GLOBAL, &Globals.bUtmp, NULL, NULL, FLAG_ADVANCED}, 
1202 #endif
1203
1204         {"default service", P_STRING, P_GLOBAL, &Globals.szDefaultService, NULL, NULL, FLAG_ADVANCED}, 
1205         {"default", P_STRING, P_GLOBAL, &Globals.szDefaultService, NULL, NULL, FLAG_ADVANCED}, 
1206         {"message command", P_STRING, P_GLOBAL, &Globals.szMsgCommand, NULL, NULL, FLAG_ADVANCED}, 
1207         {"dfree cache time", P_INTEGER, P_LOCAL, &sDefault.iDfreeCacheTime, NULL, NULL, FLAG_ADVANCED}, 
1208         {"dfree command", P_STRING, P_LOCAL, &sDefault.szDfree, NULL, NULL, FLAG_ADVANCED}, 
1209         {"get quota command", P_STRING, P_GLOBAL, &Globals.szGetQuota, NULL, NULL, FLAG_ADVANCED}, 
1210         {"set quota command", P_STRING, P_GLOBAL, &Globals.szSetQuota, NULL, NULL, FLAG_ADVANCED}, 
1211         {"remote announce", P_STRING, P_GLOBAL, &Globals.szRemoteAnnounce, NULL, NULL, FLAG_ADVANCED}, 
1212         {"remote browse sync", P_STRING, P_GLOBAL, &Globals.szRemoteBrowseSync, NULL, NULL, FLAG_ADVANCED}, 
1213         {"socket address", P_STRING, P_GLOBAL, &Globals.szSocketAddress, NULL, NULL, FLAG_ADVANCED}, 
1214         {"homedir map", P_STRING, P_GLOBAL, &Globals.szNISHomeMapName, NULL, NULL, FLAG_ADVANCED}, 
1215         {"afs username map", P_STRING, P_GLOBAL, &Globals.szAfsUsernameMap, NULL, NULL, FLAG_ADVANCED}, 
1216         {"afs token lifetime", P_INTEGER, P_GLOBAL, &Globals.iAfsTokenLifetime, NULL, NULL, FLAG_ADVANCED},
1217         {"log nt token command", P_STRING, P_GLOBAL, &Globals.szLogNtTokenCommand, NULL, NULL, FLAG_ADVANCED},
1218         {"time offset", P_INTEGER, P_GLOBAL, &extra_time_offset, NULL, NULL, FLAG_ADVANCED}, 
1219         {"NIS homedir", P_BOOL, P_GLOBAL, &Globals.bNISHomeMap, NULL, NULL, FLAG_ADVANCED}, 
1220         {"-valid", P_BOOL, P_LOCAL, &sDefault.valid, NULL, NULL, FLAG_HIDE}, 
1221
1222         {"copy", P_STRING, P_LOCAL, &sDefault.szCopy, handle_copy, NULL, FLAG_HIDE}, 
1223         {"include", P_STRING, P_LOCAL, &sDefault.szInclude, handle_include, NULL, FLAG_HIDE}, 
1224         {"preexec", P_STRING, P_LOCAL, &sDefault.szPreExec, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT}, 
1225         {"exec", P_STRING, P_LOCAL, &sDefault.szPreExec, NULL, NULL, FLAG_ADVANCED}, 
1226
1227         {"preexec close", P_BOOL, P_LOCAL, &sDefault.bPreexecClose, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
1228         {"postexec", P_STRING, P_LOCAL, &sDefault.szPostExec, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT}, 
1229         {"root preexec", P_STRING, P_LOCAL, &sDefault.szRootPreExec, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT}, 
1230         {"root preexec close", P_BOOL, P_LOCAL, &sDefault.bRootpreexecClose, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
1231         {"root postexec", P_STRING, P_LOCAL, &sDefault.szRootPostExec, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT}, 
1232         {"available", P_BOOL, P_LOCAL, &sDefault.bAvailable, NULL, NULL, FLAG_BASIC | FLAG_ADVANCED | FLAG_SHARE | FLAG_PRINT}, 
1233         {"registry shares", P_BOOL, P_GLOBAL, &Globals.bRegistryShares, NULL, NULL, FLAG_ADVANCED},
1234         {"usershare allow guests", P_BOOL, P_GLOBAL, &Globals.bUsershareAllowGuests, NULL, NULL, FLAG_ADVANCED},
1235         {"usershare max shares", P_INTEGER, P_GLOBAL, &Globals.iUsershareMaxShares, NULL, NULL, FLAG_ADVANCED},
1236         {"usershare owner only", P_BOOL, P_GLOBAL, &Globals.bUsershareOwnerOnly, NULL, NULL, FLAG_ADVANCED}, 
1237         {"usershare path", P_STRING, P_GLOBAL, &Globals.szUsersharePath, NULL, NULL, FLAG_ADVANCED},
1238         {"usershare prefix allow list", P_LIST, P_GLOBAL, &Globals.szUsersharePrefixAllowList, NULL, NULL, FLAG_ADVANCED}, 
1239         {"usershare prefix deny list", P_LIST, P_GLOBAL, &Globals.szUsersharePrefixDenyList, NULL, NULL, FLAG_ADVANCED}, 
1240         {"usershare template share", P_STRING, P_GLOBAL, &Globals.szUsershareTemplateShare, NULL, NULL, FLAG_ADVANCED},
1241         {"volume", P_STRING, P_LOCAL, &sDefault.volume, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE }, 
1242         {"fstype", P_STRING, P_LOCAL, &sDefault.fstype, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
1243         {"set directory", P_BOOLREV, P_LOCAL, &sDefault.bNo_set_dir, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
1244         {"wide links", P_BOOL, P_LOCAL, &sDefault.bWidelinks, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1245         {"follow symlinks", P_BOOL, P_LOCAL, &sDefault.bSymlinks, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1246         {"dont descend", P_STRING, P_LOCAL, &sDefault.szDontdescend, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
1247         {"magic script", P_STRING, P_LOCAL, &sDefault.szMagicScript, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
1248         {"magic output", P_STRING, P_LOCAL, &sDefault.szMagicOutput, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
1249         {"delete readonly", P_BOOL, P_LOCAL, &sDefault.bDeleteReadonly, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1250         {"dos filemode", P_BOOL, P_LOCAL, &sDefault.bDosFilemode, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1251         {"dos filetimes", P_BOOL, P_LOCAL, &sDefault.bDosFiletimes, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1252         {"dos filetime resolution", P_BOOL, P_LOCAL, &sDefault.bDosFiletimeResolution, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1253
1254         {"fake directory create times", P_BOOL, P_LOCAL, &sDefault.bFakeDirCreateTimes, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE | FLAG_GLOBAL}, 
1255         {"panic action", P_STRING, P_GLOBAL, &Globals.szPanicAction, NULL, NULL, FLAG_ADVANCED}, 
1256
1257         {N_("VFS module options"), P_SEP, P_SEPARATOR}, 
1258
1259         {"vfs objects", P_LIST, P_LOCAL, &sDefault.szVfsObjects, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
1260         {"vfs object", P_LIST, P_LOCAL, &sDefault.szVfsObjects, NULL, NULL, FLAG_HIDE}, 
1261
1262
1263         {"msdfs root", P_BOOL, P_LOCAL, &sDefault.bMSDfsRoot, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
1264         {"msdfs proxy", P_STRING, P_LOCAL, &sDefault.szMSDfsProxy, NULL, NULL, FLAG_ADVANCED | FLAG_SHARE}, 
1265         {"host msdfs", P_BOOL, P_GLOBAL, &Globals.bHostMSDfs, NULL, NULL, FLAG_ADVANCED}, 
1266
1267         {N_("Winbind options"), P_SEP, P_SEPARATOR}, 
1268
1269         {"passdb expand explicit", P_BOOL, P_GLOBAL, &Globals.bPassdbExpandExplicit, NULL, NULL, FLAG_ADVANCED},
1270         {"idmap domains", P_LIST, P_GLOBAL, &Globals.szIdmapDomains, NULL, NULL, FLAG_ADVANCED}, 
1271         {"idmap backend", P_LIST, P_GLOBAL, &Globals.szIdmapBackend, NULL, NULL, FLAG_ADVANCED | FLAG_DEPRECATED }, 
1272         {"idmap alloc backend", P_STRING, P_GLOBAL, &Globals.szIdmapAllocBackend, NULL, NULL, FLAG_ADVANCED}, 
1273         {"idmap expire time", P_INTEGER, P_GLOBAL, &Globals.iIdmapExpireTime, NULL, NULL, FLAG_ADVANCED}, 
1274         {"idmap negative time", P_INTEGER, P_GLOBAL, &Globals.iIdmapNegativeTime, NULL, NULL, FLAG_ADVANCED}, 
1275         {"idmap uid", P_STRING, P_GLOBAL, &Globals.szIdmapUID, handle_idmap_uid, NULL, FLAG_ADVANCED | FLAG_DEPRECATED }, 
1276         {"winbind uid", P_STRING, P_GLOBAL, &Globals.szIdmapUID, handle_idmap_uid, NULL, FLAG_HIDE | FLAG_DEPRECATED }, 
1277         {"idmap gid", P_STRING, P_GLOBAL, &Globals.szIdmapGID, handle_idmap_gid, NULL, FLAG_ADVANCED | FLAG_DEPRECATED }, 
1278         {"winbind gid", P_STRING, P_GLOBAL, &Globals.szIdmapGID, handle_idmap_gid, NULL, FLAG_HIDE | FLAG_DEPRECATED }, 
1279         {"template homedir", P_STRING, P_GLOBAL, &Globals.szTemplateHomedir, NULL, NULL, FLAG_ADVANCED}, 
1280         {"template shell", P_STRING, P_GLOBAL, &Globals.szTemplateShell, NULL, NULL, FLAG_ADVANCED}, 
1281         {"winbind separator", P_STRING, P_GLOBAL, &Globals.szWinbindSeparator, NULL, NULL, FLAG_ADVANCED}, 
1282         {"winbind cache time", P_INTEGER, P_GLOBAL, &Globals.winbind_cache_time, NULL, NULL, FLAG_ADVANCED}, 
1283         {"winbind enum users", P_BOOL, P_GLOBAL, &Globals.bWinbindEnumUsers, NULL, NULL, FLAG_ADVANCED}, 
1284         {"winbind enum groups", P_BOOL, P_GLOBAL, &Globals.bWinbindEnumGroups, NULL, NULL, FLAG_ADVANCED}, 
1285         {"winbind use default domain", P_BOOL, P_GLOBAL, &Globals.bWinbindUseDefaultDomain, NULL, NULL, FLAG_ADVANCED}, 
1286         {"winbind trusted domains only", P_BOOL, P_GLOBAL, &Globals.bWinbindTrustedDomainsOnly, NULL, NULL, FLAG_ADVANCED}, 
1287         {"winbind nested groups", P_BOOL, P_GLOBAL, &Globals.bWinbindNestedGroups, NULL, NULL, FLAG_ADVANCED}, 
1288         {"winbind nss info", P_LIST, P_GLOBAL, &Globals.szWinbindNssInfo, NULL, NULL, FLAG_ADVANCED}, 
1289         {"winbind refresh tickets", P_BOOL, P_GLOBAL, &Globals.bWinbindRefreshTickets, NULL, NULL, FLAG_ADVANCED}, 
1290         {"winbind offline logon", P_BOOL, P_GLOBAL, &Globals.bWinbindOfflineLogon, NULL, NULL, FLAG_ADVANCED},
1291
1292         {NULL,  P_BOOL,  P_NONE,  NULL,  NULL,  NULL,  0}
1293 };
1294
1295 /***************************************************************************
1296  Initialise the sDefault parameter structure for the printer values.
1297 ***************************************************************************/
1298
1299 static void init_printer_values(service *pService)
1300 {
1301         /* choose defaults depending on the type of printing */
1302         switch (pService->iPrinting) {
1303                 case PRINT_BSD:
1304                 case PRINT_AIX:
1305                 case PRINT_LPRNT:
1306                 case PRINT_LPROS2:
1307                         string_set(&pService->szLpqcommand, "lpq -P'%p'");
1308                         string_set(&pService->szLprmcommand, "lprm -P'%p' %j");
1309                         string_set(&pService->szPrintcommand, "lpr -r -P'%p' %s");
1310                         break;
1311
1312                 case PRINT_LPRNG:
1313                 case PRINT_PLP:
1314                         string_set(&pService->szLpqcommand, "lpq -P'%p'");
1315                         string_set(&pService->szLprmcommand, "lprm -P'%p' %j");
1316                         string_set(&pService->szPrintcommand, "lpr -r -P'%p' %s");
1317                         string_set(&pService->szQueuepausecommand, "lpc stop '%p'");
1318                         string_set(&pService->szQueueresumecommand, "lpc start '%p'");
1319                         string_set(&pService->szLppausecommand, "lpc hold '%p' %j");
1320                         string_set(&pService->szLpresumecommand, "lpc release '%p' %j");
1321                         break;
1322
1323                 case PRINT_CUPS:
1324                 case PRINT_IPRINT:
1325 #ifdef HAVE_CUPS
1326                         /* set the lpq command to contain the destination printer
1327                            name only.  This is used by cups_queue_get() */
1328                         string_set(&pService->szLpqcommand, "%p");
1329                         string_set(&pService->szLprmcommand, "");
1330                         string_set(&pService->szPrintcommand, "");
1331                         string_set(&pService->szLppausecommand, "");
1332                         string_set(&pService->szLpresumecommand, "");
1333                         string_set(&pService->szQueuepausecommand, "");
1334                         string_set(&pService->szQueueresumecommand, "");
1335 #else
1336                         string_set(&pService->szLpqcommand, "lpq -P'%p'");
1337                         string_set(&pService->szLprmcommand, "lprm -P'%p' %j");
1338                         string_set(&pService->szPrintcommand, "lpr -P'%p' %s; rm %s");
1339                         string_set(&pService->szLppausecommand, "lp -i '%p-%j' -H hold");
1340                         string_set(&pService->szLpresumecommand, "lp -i '%p-%j' -H resume");
1341                         string_set(&pService->szQueuepausecommand, "disable '%p'");
1342                         string_set(&pService->szQueueresumecommand, "enable '%p'");
1343 #endif /* HAVE_CUPS */
1344                         break;
1345
1346                 case PRINT_SYSV:
1347                 case PRINT_HPUX:
1348                         string_set(&pService->szLpqcommand, "lpstat -o%p");
1349                         string_set(&pService->szLprmcommand, "cancel %p-%j");
1350                         string_set(&pService->szPrintcommand, "lp -c -d%p %s; rm %s");
1351                         string_set(&pService->szQueuepausecommand, "disable %p");
1352                         string_set(&pService->szQueueresumecommand, "enable %p");
1353 #ifndef HPUX
1354                         string_set(&pService->szLppausecommand, "lp -i %p-%j -H hold");
1355                         string_set(&pService->szLpresumecommand, "lp -i %p-%j -H resume");
1356 #endif /* HPUX */
1357                         break;
1358
1359                 case PRINT_QNX:
1360                         string_set(&pService->szLpqcommand, "lpq -P%p");
1361                         string_set(&pService->szLprmcommand, "lprm -P%p %j");
1362                         string_set(&pService->szPrintcommand, "lp -r -P%p %s");
1363                         break;
1364
1365 #ifdef DEVELOPER
1366         case PRINT_TEST:
1367         case PRINT_VLP:
1368                 string_set(&pService->szPrintcommand, "vlp print %p %s");
1369                 string_set(&pService->szLpqcommand, "vlp lpq %p");
1370                 string_set(&pService->szLprmcommand, "vlp lprm %p %j");
1371                 string_set(&pService->szLppausecommand, "vlp lppause %p %j");
1372                 string_set(&pService->szLpresumecommand, "vlp lpresum %p %j");
1373                 string_set(&pService->szQueuepausecommand, "vlp queuepause %p");
1374                 string_set(&pService->szQueueresumecommand, "vlp queueresume %p");
1375                 break;
1376 #endif /* DEVELOPER */
1377
1378         }
1379 }
1380
1381 /***************************************************************************
1382  Initialise the global parameter structure.
1383 ***************************************************************************/
1384
1385 static void init_globals(BOOL first_time_only)
1386 {
1387         static BOOL done_init = False;
1388         pstring s;
1389
1390         /* If requested to initialize only once and we've already done it... */
1391         if (first_time_only && done_init) {
1392                 /* ... then we have nothing more to do */
1393                 return;
1394         }
1395
1396         if (!done_init) {
1397                 int i;
1398
1399                 /* The logfile can be set before this is invoked. Free it if so. */
1400                 if (Globals.szLogFile != NULL) {
1401                         string_free(&Globals.szLogFile);
1402                         Globals.szLogFile = NULL;
1403                 }
1404
1405                 memset((void *)&Globals, '\0', sizeof(Globals));
1406
1407                 for (i = 0; parm_table[i].label; i++)
1408                         if ((parm_table[i].type == P_STRING ||
1409                              parm_table[i].type == P_USTRING) &&
1410                             parm_table[i].ptr)
1411                                 string_set((char **)parm_table[i].ptr, "");
1412
1413                 string_set(&sDefault.fstype, FSTYPE_STRING);
1414
1415                 init_printer_values(&sDefault);
1416
1417                 done_init = True;
1418         }
1419
1420
1421         DEBUG(3, ("Initialising global parameters\n"));
1422
1423         string_set(&Globals.szSMBPasswdFile, dyn_SMB_PASSWD_FILE);
1424         string_set(&Globals.szPrivateDir, dyn_PRIVATE_DIR);
1425
1426         /* use the new 'hash2' method by default, with a prefix of 1 */
1427         string_set(&Globals.szManglingMethod, "hash2");
1428         Globals.mangle_prefix = 1;
1429
1430         string_set(&Globals.szGuestaccount, GUEST_ACCOUNT);
1431
1432         /* using UTF8 by default allows us to support all chars */
1433         string_set(&Globals.unix_charset, DEFAULT_UNIX_CHARSET);
1434
1435 #if defined(HAVE_NL_LANGINFO) && defined(CODESET)
1436         /* If the system supports nl_langinfo(), try to grab the value
1437            from the user's locale */
1438         string_set(&Globals.display_charset, "LOCALE");
1439 #else
1440         string_set(&Globals.display_charset, DEFAULT_DISPLAY_CHARSET);
1441 #endif
1442
1443         /* Use codepage 850 as a default for the dos character set */
1444         string_set(&Globals.dos_charset, DEFAULT_DOS_CHARSET);
1445
1446         /*
1447          * Allow the default PASSWD_CHAT to be overridden in local.h.
1448          */
1449         string_set(&Globals.szPasswdChat, DEFAULT_PASSWD_CHAT);
1450         
1451         set_global_myname(myhostname());
1452         string_set(&Globals.szNetbiosName,global_myname());
1453
1454         set_global_myworkgroup(WORKGROUP);
1455         string_set(&Globals.szWorkgroup, lp_workgroup());
1456         
1457         string_set(&Globals.szPasswdProgram, "");
1458         string_set(&Globals.szPidDir, dyn_PIDDIR);
1459         string_set(&Globals.szLockDir, dyn_LOCKDIR);
1460         string_set(&Globals.szSocketAddress, "0.0.0.0");
1461         pstrcpy(s, "Samba ");
1462         pstrcat(s, SAMBA_VERSION_STRING);
1463         string_set(&Globals.szServerString, s);
1464         slprintf(s, sizeof(s) - 1, "%d.%d", DEFAULT_MAJOR_VERSION,
1465                  DEFAULT_MINOR_VERSION);
1466         string_set(&Globals.szAnnounceVersion, s);
1467 #ifdef DEVELOPER
1468         string_set(&Globals.szPanicAction, "/bin/sleep 999999999");
1469 #endif
1470
1471         pstrcpy(user_socket_options, DEFAULT_SOCKET_OPTIONS);
1472
1473         string_set(&Globals.szLogonDrive, "");
1474         /* %N is the NIS auto.home server if -DAUTOHOME is used, else same as %L */
1475         string_set(&Globals.szLogonHome, "\\\\%N\\%U");
1476         string_set(&Globals.szLogonPath, "\\\\%N\\%U\\profile");
1477
1478         string_set(&Globals.szNameResolveOrder, "lmhosts wins host bcast");
1479         string_set(&Globals.szPasswordServer, "*");
1480
1481         Globals.AlgorithmicRidBase = BASE_RID;
1482
1483         Globals.bLoadPrinters = True;
1484         Globals.PrintcapCacheTime = 750;        /* 12.5 minutes */
1485
1486         /* Was 65535 (0xFFFF). 0x4101 matches W2K and causes major speed improvements... */
1487         /* Discovered by 2 days of pain by Don McCall @ HP :-). */
1488         Globals.max_xmit = 0x4104;
1489         Globals.max_mux = 50;   /* This is *needed* for profile support. */
1490         Globals.lpqcachetime = 30;      /* changed to handle large print servers better -- jerry */
1491         Globals.bDisableSpoolss = False;
1492         Globals.iMaxSmbdProcesses = 0;/* no limit specified */
1493         Globals.pwordlevel = 0;
1494         Globals.unamelevel = 0;
1495         Globals.deadtime = 0;
1496         Globals.bLargeReadwrite = True;
1497         Globals.max_log_size = 5000;
1498         Globals.max_open_files = MAX_OPEN_FILES;
1499         Globals.open_files_db_hash_size = SMB_OPEN_DATABASE_TDB_HASH_SIZE;
1500         Globals.maxprotocol = PROTOCOL_NT1;
1501         Globals.minprotocol = PROTOCOL_CORE;
1502         Globals.security = SEC_USER;
1503         Globals.paranoid_server_security = True;
1504         Globals.bEncryptPasswords = True;
1505         Globals.bUpdateEncrypt = False;
1506         Globals.clientSchannel = Auto;
1507         Globals.serverSchannel = Auto;
1508         Globals.bReadRaw = True;
1509         Globals.bWriteRaw = True;
1510         Globals.bReadbmpx = False;
1511         Globals.bNullPasswords = False;
1512         Globals.bObeyPamRestrictions = False;
1513         Globals.syslog = 1;
1514         Globals.bSyslogOnly = False;
1515         Globals.bTimestampLogs = True;
1516         string_set(&Globals.szLogLevel, "0");
1517         Globals.bDebugHiresTimestamp = False;
1518         Globals.bDebugPid = False;
1519         Globals.bDebugUid = False;
1520         Globals.bEnableCoreFiles = True;
1521         Globals.max_ttl = 60 * 60 * 24 * 3;     /* 3 days default. */
1522         Globals.max_wins_ttl = 60 * 60 * 24 * 6;        /* 6 days default. */
1523         Globals.min_wins_ttl = 60 * 60 * 6;     /* 6 hours default. */
1524         Globals.machine_password_timeout = 60 * 60 * 24 * 7;    /* 7 days default. */
1525         Globals.bKernelChangeNotify = True;     /* On if we have it. */
1526         Globals.bFamChangeNotify = True;        /* On if we have it. */
1527         Globals.lm_announce = 2;        /* = Auto: send only if LM clients found */
1528         Globals.lm_interval = 60;
1529         Globals.announce_as = ANNOUNCE_AS_NT_SERVER;
1530 #if (defined(HAVE_NETGROUP) && defined(WITH_AUTOMOUNT))
1531         Globals.bNISHomeMap = False;
1532 #ifdef WITH_NISPLUS_HOME
1533         string_set(&Globals.szNISHomeMapName, "auto_home.org_dir");
1534 #else
1535         string_set(&Globals.szNISHomeMapName, "auto.home");
1536 #endif
1537 #endif
1538         Globals.bTimeServer = False;
1539         Globals.bBindInterfacesOnly = False;
1540         Globals.bUnixPasswdSync = False;
1541         Globals.bPamPasswordChange = False;
1542         Globals.bPasswdChatDebug = False;
1543         Globals.iPasswdChatTimeout = 2; /* 2 second default. */
1544         Globals.bNTPipeSupport = True;  /* Do NT pipes by default. */
1545         Globals.bNTStatusSupport = True; /* Use NT status by default. */
1546         Globals.bStatCache = True;      /* use stat cache by default */
1547         Globals.iMaxStatCacheSize = 1024; /* one Meg by default. */
1548         Globals.restrict_anonymous = 0;
1549         Globals.bClientLanManAuth = True;       /* Do use the LanMan hash if it is available */
1550         Globals.bClientPlaintextAuth = True;    /* Do use a plaintext password if is requested by the server */
1551         Globals.bLanmanAuth = True;     /* Do use the LanMan hash if it is available */
1552         Globals.bNTLMAuth = True;       /* Do use NTLMv1 if it is available (otherwise NTLMv2) */
1553         Globals.bClientNTLMv2Auth = False; /* Client should not use NTLMv2, as we can't tell that the server supports it. */
1554         /* Note, that we will use NTLM2 session security (which is different), if it is available */
1555
1556         Globals.map_to_guest = 0;       /* By Default, "Never" */
1557         Globals.oplock_break_wait_time = 0;     /* By Default, 0 msecs. */
1558         Globals.enhanced_browsing = True; 
1559         Globals.iLockSpinCount = 0; /* Unused. */
1560         Globals.iLockSpinTime = WINDOWS_MINIMUM_LOCK_TIMEOUT_MS; /* msec. */
1561 #ifdef MMAP_BLACKLIST
1562         Globals.bUseMmap = False;
1563 #else
1564         Globals.bUseMmap = True;
1565 #endif
1566         Globals.bUnixExtensions = True;
1567         Globals.bResetOnZeroVC = False;
1568
1569         /* hostname lookups can be very expensive and are broken on
1570            a large number of sites (tridge) */
1571         Globals.bHostnameLookups = False;
1572
1573         string_set(&Globals.szPassdbBackend, "smbpasswd");
1574         string_set(&Globals.szLdapSuffix, "");
1575         string_set(&Globals.szLdapMachineSuffix, "");
1576         string_set(&Globals.szLdapUserSuffix, "");
1577         string_set(&Globals.szLdapGroupSuffix, "");
1578         string_set(&Globals.szLdapIdmapSuffix, "");
1579
1580         string_set(&Globals.szLdapAdminDn, "");
1581         Globals.ldap_ssl = LDAP_SSL_ON;
1582         Globals.ldap_passwd_sync = LDAP_PASSWD_SYNC_OFF;
1583         Globals.ldap_delete_dn = False;
1584         Globals.ldap_replication_sleep = 1000; /* wait 1 sec for replication */
1585         Globals.ldap_timeout = LDAP_CONNECT_DEFAULT_TIMEOUT;
1586         Globals.ldap_page_size = LDAP_PAGE_SIZE;
1587
1588         /* This is what we tell the afs client. in reality we set the token 
1589          * to never expire, though, when this runs out the afs client will 
1590          * forget the token. Set to 0 to get NEVERDATE.*/
1591         Globals.iAfsTokenLifetime = 604800;
1592
1593 /* these parameters are set to defaults that are more appropriate
1594    for the increasing samba install base:
1595
1596    as a member of the workgroup, that will possibly become a
1597    _local_ master browser (lm = True).  this is opposed to a forced
1598    local master browser startup (pm = True).
1599
1600    doesn't provide WINS server service by default (wsupp = False),
1601    and doesn't provide domain master browser services by default, either.
1602
1603 */
1604
1605         Globals.bMsAddPrinterWizard = True;
1606         Globals.bPreferredMaster = Auto;        /* depending on bDomainMaster */
1607         Globals.os_level = 20;
1608         Globals.bLocalMaster = True;
1609         Globals.bDomainMaster = Auto;   /* depending on bDomainLogons */
1610         Globals.bDomainLogons = False;
1611         Globals.bBrowseList = True;
1612         Globals.bWINSsupport = False;
1613         Globals.bWINSproxy = False;
1614
1615         Globals.bDNSproxy = True;
1616
1617         /* this just means to use them if they exist */
1618         Globals.bKernelOplocks = True;
1619
1620         Globals.bAllowTrustedDomains = True;
1621
1622         string_set(&Globals.szTemplateShell, "/bin/false");
1623         string_set(&Globals.szTemplateHomedir, "/home/%D/%U");
1624         string_set(&Globals.szWinbindSeparator, "\\");
1625         string_set(&Globals.szCupsServer, "");
1626         string_set(&Globals.szIPrintServer, "");
1627
1628         Globals.winbind_cache_time = 300;       /* 5 minutes */
1629         Globals.bWinbindEnumUsers = False;
1630         Globals.bWinbindEnumGroups = False;
1631         Globals.bWinbindUseDefaultDomain = False;
1632         Globals.bWinbindTrustedDomainsOnly = False;
1633         Globals.bWinbindNestedGroups = True;
1634         Globals.szWinbindNssInfo = str_list_make("template", NULL);
1635         Globals.bWinbindRefreshTickets = False;
1636         Globals.bWinbindOfflineLogon = False;
1637
1638         Globals.iIdmapExpireTime = 900; /* 15 minutes by default */
1639         Globals.iIdmapNegativeTime = 120; /* 2 minutes by default */
1640
1641         Globals.bPassdbExpandExplicit = False;
1642
1643         Globals.name_cache_timeout = 660; /* In seconds */
1644
1645         Globals.bUseSpnego = True;
1646         Globals.bClientUseSpnego = True;
1647
1648         Globals.client_signing = Auto;
1649         Globals.server_signing = False;
1650
1651         Globals.bDeferSharingViolations = True;
1652         string_set(&Globals.smb_ports, SMB_PORTS);
1653
1654         Globals.bEnablePrivileges = True;
1655         Globals.bHostMSDfs        = True;
1656         Globals.bASUSupport       = False;
1657         
1658         /* User defined shares. */
1659         pstrcpy(s, dyn_LOCKDIR);
1660         pstrcat(s, "/usershares");
1661         string_set(&Globals.szUsersharePath, s);
1662         string_set(&Globals.szUsershareTemplateShare, "");
1663         Globals.iUsershareMaxShares = 0;
1664         /* By default disallow sharing of directories not owned by the sharer. */
1665         Globals.bUsershareOwnerOnly = True;
1666         /* By default disallow guest access to usershares. */
1667         Globals.bUsershareAllowGuests = False;
1668
1669         /* By default no shares out of the registry */
1670         Globals.bRegistryShares = False;
1671 }
1672
1673 static TALLOC_CTX *lp_talloc;
1674
1675 /******************************************************************* a
1676  Free up temporary memory - called from the main loop.
1677 ********************************************************************/
1678
1679 void lp_TALLOC_FREE(void)
1680 {
1681         if (!lp_talloc)
1682                 return;
1683         TALLOC_FREE(lp_talloc);
1684         lp_talloc = NULL;
1685 }
1686
1687 TALLOC_CTX *tmp_talloc_ctx(void)
1688 {
1689         if (lp_talloc == NULL) {
1690                 lp_talloc = talloc_init("tmp_talloc_ctx");
1691         }
1692
1693         if (lp_talloc == NULL) {
1694                 smb_panic("Could not create temporary talloc context\n");
1695         }
1696
1697         return lp_talloc;
1698 }
1699
1700 /*******************************************************************
1701  Convenience routine to grab string parameters into temporary memory
1702  and run standard_sub_basic on them. The buffers can be written to by
1703  callers without affecting the source string.
1704 ********************************************************************/
1705
1706 static char *lp_string(const char *s)
1707 {
1708         char *ret, *tmpstr;
1709
1710         /* The follow debug is useful for tracking down memory problems
1711            especially if you have an inner loop that is calling a lp_*()
1712            function that returns a string.  Perhaps this debug should be
1713            present all the time? */
1714
1715 #if 0
1716         DEBUG(10, ("lp_string(%s)\n", s));
1717 #endif
1718
1719         if (!lp_talloc)
1720                 lp_talloc = talloc_init("lp_talloc");
1721
1722         tmpstr = alloc_sub_basic(get_current_username(),
1723                                  current_user_info.domain, s);
1724         if (trim_char(tmpstr, '\"', '\"')) {
1725                 if (strchr(tmpstr,'\"') != NULL) {
1726                         SAFE_FREE(tmpstr);
1727                         tmpstr = alloc_sub_basic(get_current_username(),
1728                                                  current_user_info.domain, s);
1729                 }
1730         }
1731         ret = talloc_strdup(lp_talloc, tmpstr);
1732         SAFE_FREE(tmpstr);
1733                         
1734         return (ret);
1735 }
1736
1737 /*
1738    In this section all the functions that are used to access the 
1739    parameters from the rest of the program are defined 
1740 */
1741
1742 #define FN_GLOBAL_STRING(fn_name,ptr) \
1743  char *fn_name(void) {return(lp_string(*(char **)(ptr) ? *(char **)(ptr) : ""));}
1744 #define FN_GLOBAL_CONST_STRING(fn_name,ptr) \
1745  const char *fn_name(void) {return(*(const char **)(ptr) ? *(const char **)(ptr) : "");}
1746 #define FN_GLOBAL_LIST(fn_name,ptr) \
1747  const char **fn_name(void) {return(*(const char ***)(ptr));}
1748 #define FN_GLOBAL_BOOL(fn_name,ptr) \
1749  BOOL fn_name(void) {return(*(BOOL *)(ptr));}
1750 #define FN_GLOBAL_CHAR(fn_name,ptr) \
1751  char fn_name(void) {return(*(char *)(ptr));}
1752 #define FN_GLOBAL_INTEGER(fn_name,ptr) \
1753  int fn_name(void) {return(*(int *)(ptr));}
1754
1755 #define FN_LOCAL_STRING(fn_name,val) \
1756  char *fn_name(int i) {return(lp_string((LP_SNUM_OK(i) && ServicePtrs[(i)]->val) ? ServicePtrs[(i)]->val : sDefault.val));}
1757 #define FN_LOCAL_CONST_STRING(fn_name,val) \
1758  const char *fn_name(int i) {return (const char *)((LP_SNUM_OK(i) && ServicePtrs[(i)]->val) ? ServicePtrs[(i)]->val : sDefault.val);}
1759 #define FN_LOCAL_LIST(fn_name,val) \
1760  const char **fn_name(int i) {return(const char **)(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
1761 #define FN_LOCAL_BOOL(fn_name,val) \
1762  BOOL fn_name(int i) {return(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
1763 #define FN_LOCAL_INTEGER(fn_name,val) \
1764  int fn_name(int i) {return(LP_SNUM_OK(i)? ServicePtrs[(i)]->val : sDefault.val);}
1765
1766 #define FN_LOCAL_PARM_BOOL(fn_name,val) \
1767  BOOL fn_name(const struct share_params *p) {return(LP_SNUM_OK(p->service)? ServicePtrs[(p->service)]->val : sDefault.val);}
1768 #define FN_LOCAL_PARM_INTEGER(fn_name,val) \
1769  int fn_name(const struct share_params *p) {return(LP_SNUM_OK(p->service)? ServicePtrs[(p->service)]->val : sDefault.val);}
1770 #define FN_LOCAL_PARM_STRING(fn_name,val) \
1771  char *fn_name(const struct share_params *p) {return(lp_string((LP_SNUM_OK(p->service) && ServicePtrs[(p->service)]->val) ? ServicePtrs[(p->service)]->val : sDefault.val));}
1772 #define FN_LOCAL_CHAR(fn_name,val) \
1773  char fn_name(const struct share_params *p) {return(LP_SNUM_OK(p->service)? ServicePtrs[(p->service)]->val : sDefault.val);}
1774
1775 FN_GLOBAL_STRING(lp_smb_ports, &Globals.smb_ports)
1776 FN_GLOBAL_STRING(lp_dos_charset, &Globals.dos_charset)
1777 FN_GLOBAL_STRING(lp_unix_charset, &Globals.unix_charset)
1778 FN_GLOBAL_STRING(lp_display_charset, &Globals.display_charset)
1779 FN_GLOBAL_STRING(lp_logfile, &Globals.szLogFile)
1780 FN_GLOBAL_STRING(lp_configfile, &Globals.szConfigFile)
1781 FN_GLOBAL_STRING(lp_smb_passwd_file, &Globals.szSMBPasswdFile)
1782 FN_GLOBAL_STRING(lp_private_dir, &Globals.szPrivateDir)
1783 FN_GLOBAL_STRING(lp_serverstring, &Globals.szServerString)
1784 FN_GLOBAL_INTEGER(lp_printcap_cache_time, &Globals.PrintcapCacheTime)
1785 FN_GLOBAL_STRING(lp_addport_cmd, &Globals.szAddPortCommand)
1786 FN_GLOBAL_STRING(lp_enumports_cmd, &Globals.szEnumPortsCommand)
1787 FN_GLOBAL_STRING(lp_addprinter_cmd, &Globals.szAddPrinterCommand)
1788 FN_GLOBAL_STRING(lp_deleteprinter_cmd, &Globals.szDeletePrinterCommand)
1789 FN_GLOBAL_STRING(lp_os2_driver_map, &Globals.szOs2DriverMap)
1790 FN_GLOBAL_STRING(lp_lockdir, &Globals.szLockDir)
1791 FN_GLOBAL_STRING(lp_piddir, &Globals.szPidDir)
1792 FN_GLOBAL_STRING(lp_mangling_method, &Globals.szManglingMethod)
1793 FN_GLOBAL_INTEGER(lp_mangle_prefix, &Globals.mangle_prefix)
1794 FN_GLOBAL_STRING(lp_utmpdir, &Globals.szUtmpDir)
1795 FN_GLOBAL_STRING(lp_wtmpdir, &Globals.szWtmpDir)
1796 FN_GLOBAL_BOOL(lp_utmp, &Globals.bUtmp)
1797 FN_GLOBAL_STRING(lp_rootdir, &Globals.szRootdir)
1798 FN_GLOBAL_STRING(lp_defaultservice, &Globals.szDefaultService)
1799 FN_GLOBAL_STRING(lp_msg_command, &Globals.szMsgCommand)
1800 FN_GLOBAL_STRING(lp_get_quota_command, &Globals.szGetQuota)
1801 FN_GLOBAL_STRING(lp_set_quota_command, &Globals.szSetQuota)
1802 FN_GLOBAL_STRING(lp_auto_services, &Globals.szAutoServices)
1803 FN_GLOBAL_STRING(lp_passwd_program, &Globals.szPasswdProgram)
1804 FN_GLOBAL_STRING(lp_passwd_chat, &Globals.szPasswdChat)
1805 FN_GLOBAL_STRING(lp_passwordserver, &Globals.szPasswordServer)
1806 FN_GLOBAL_STRING(lp_name_resolve_order, &Globals.szNameResolveOrder)
1807 FN_GLOBAL_STRING(lp_realm, &Globals.szRealm)
1808 FN_GLOBAL_CONST_STRING(lp_afs_username_map, &Globals.szAfsUsernameMap)
1809 FN_GLOBAL_INTEGER(lp_afs_token_lifetime, &Globals.iAfsTokenLifetime)
1810 FN_GLOBAL_STRING(lp_log_nt_token_command, &Globals.szLogNtTokenCommand)
1811 FN_GLOBAL_STRING(lp_username_map, &Globals.szUsernameMap)
1812 FN_GLOBAL_CONST_STRING(lp_logon_script, &Globals.szLogonScript)
1813 FN_GLOBAL_CONST_STRING(lp_logon_path, &Globals.szLogonPath)
1814 FN_GLOBAL_CONST_STRING(lp_logon_drive, &Globals.szLogonDrive)
1815 FN_GLOBAL_CONST_STRING(lp_logon_home, &Globals.szLogonHome)
1816 FN_GLOBAL_STRING(lp_remote_announce, &Globals.szRemoteAnnounce)
1817 FN_GLOBAL_STRING(lp_remote_browse_sync, &Globals.szRemoteBrowseSync)
1818 FN_GLOBAL_LIST(lp_wins_server_list, &Globals.szWINSservers)
1819 FN_GLOBAL_LIST(lp_interfaces, &Globals.szInterfaces)
1820 FN_GLOBAL_STRING(lp_socket_address, &Globals.szSocketAddress)
1821 FN_GLOBAL_STRING(lp_nis_home_map_name, &Globals.szNISHomeMapName)
1822 static FN_GLOBAL_STRING(lp_announce_version, &Globals.szAnnounceVersion)
1823 FN_GLOBAL_LIST(lp_netbios_aliases, &Globals.szNetbiosAliases)
1824 FN_GLOBAL_STRING(lp_passdb_backend, &Globals.szPassdbBackend)
1825 FN_GLOBAL_LIST(lp_preload_modules, &Globals.szPreloadModules)
1826 FN_GLOBAL_STRING(lp_panic_action, &Globals.szPanicAction)
1827 FN_GLOBAL_STRING(lp_adduser_script, &Globals.szAddUserScript)
1828 FN_GLOBAL_STRING(lp_renameuser_script, &Globals.szRenameUserScript)
1829 FN_GLOBAL_STRING(lp_deluser_script, &Globals.szDelUserScript)
1830
1831 FN_GLOBAL_CONST_STRING(lp_guestaccount, &Globals.szGuestaccount)
1832 FN_GLOBAL_STRING(lp_addgroup_script, &Globals.szAddGroupScript)
1833 FN_GLOBAL_STRING(lp_delgroup_script, &Globals.szDelGroupScript)
1834 FN_GLOBAL_STRING(lp_addusertogroup_script, &Globals.szAddUserToGroupScript)
1835 FN_GLOBAL_STRING(lp_deluserfromgroup_script, &Globals.szDelUserFromGroupScript)
1836 FN_GLOBAL_STRING(lp_setprimarygroup_script, &Globals.szSetPrimaryGroupScript)
1837
1838 FN_GLOBAL_STRING(lp_addmachine_script, &Globals.szAddMachineScript)
1839
1840 FN_GLOBAL_STRING(lp_shutdown_script, &Globals.szShutdownScript)
1841 FN_GLOBAL_STRING(lp_abort_shutdown_script, &Globals.szAbortShutdownScript)
1842 FN_GLOBAL_STRING(lp_username_map_script, &Globals.szUsernameMapScript)
1843
1844 FN_GLOBAL_STRING(lp_check_password_script, &Globals.szCheckPasswordScript)
1845
1846 FN_GLOBAL_STRING(lp_wins_hook, &Globals.szWINSHook)
1847 FN_GLOBAL_CONST_STRING(lp_template_homedir, &Globals.szTemplateHomedir)
1848 FN_GLOBAL_CONST_STRING(lp_template_shell, &Globals.szTemplateShell)
1849 FN_GLOBAL_CONST_STRING(lp_winbind_separator, &Globals.szWinbindSeparator)
1850 FN_GLOBAL_INTEGER(lp_acl_compatibility, &Globals.iAclCompat)
1851 FN_GLOBAL_BOOL(lp_winbind_enum_users, &Globals.bWinbindEnumUsers)
1852 FN_GLOBAL_BOOL(lp_winbind_enum_groups, &Globals.bWinbindEnumGroups)
1853 FN_GLOBAL_BOOL(lp_winbind_use_default_domain, &Globals.bWinbindUseDefaultDomain)
1854 FN_GLOBAL_BOOL(lp_winbind_trusted_domains_only, &Globals.bWinbindTrustedDomainsOnly)
1855 FN_GLOBAL_BOOL(lp_winbind_nested_groups, &Globals.bWinbindNestedGroups)
1856 FN_GLOBAL_BOOL(lp_winbind_refresh_tickets, &Globals.bWinbindRefreshTickets)
1857 FN_GLOBAL_BOOL(lp_winbind_offline_logon, &Globals.bWinbindOfflineLogon)
1858
1859 FN_GLOBAL_LIST(lp_idmap_domains, &Globals.szIdmapDomains)
1860 FN_GLOBAL_LIST(lp_idmap_backend, &Globals.szIdmapBackend) /* deprecated */
1861 FN_GLOBAL_STRING(lp_idmap_alloc_backend, &Globals.szIdmapAllocBackend)
1862 FN_GLOBAL_INTEGER(lp_idmap_expire_time, &Globals.iIdmapExpireTime)
1863 FN_GLOBAL_INTEGER(lp_idmap_negative_time, &Globals.iIdmapNegativeTime)
1864 FN_GLOBAL_BOOL(lp_passdb_expand_explicit, &Globals.bPassdbExpandExplicit)
1865
1866 FN_GLOBAL_STRING(lp_ldap_suffix, &Globals.szLdapSuffix)
1867 FN_GLOBAL_STRING(lp_ldap_admin_dn, &Globals.szLdapAdminDn)
1868 FN_GLOBAL_INTEGER(lp_ldap_ssl, &Globals.ldap_ssl)
1869 FN_GLOBAL_INTEGER(lp_ldap_passwd_sync, &Globals.ldap_passwd_sync)
1870 FN_GLOBAL_BOOL(lp_ldap_delete_dn, &Globals.ldap_delete_dn)
1871 FN_GLOBAL_INTEGER(lp_ldap_replication_sleep, &Globals.ldap_replication_sleep)
1872 FN_GLOBAL_INTEGER(lp_ldap_timeout, &Globals.ldap_timeout)
1873 FN_GLOBAL_INTEGER(lp_ldap_page_size, &Globals.ldap_page_size)
1874 FN_GLOBAL_STRING(lp_add_share_cmd, &Globals.szAddShareCommand)
1875 FN_GLOBAL_STRING(lp_change_share_cmd, &Globals.szChangeShareCommand)
1876 FN_GLOBAL_STRING(lp_delete_share_cmd, &Globals.szDeleteShareCommand)
1877 FN_GLOBAL_STRING(lp_usershare_path, &Globals.szUsersharePath)
1878 FN_GLOBAL_LIST(lp_usershare_prefix_allow_list, &Globals.szUsersharePrefixAllowList)
1879 FN_GLOBAL_LIST(lp_usershare_prefix_deny_list, &Globals.szUsersharePrefixDenyList)
1880
1881 FN_GLOBAL_LIST(lp_eventlog_list, &Globals.szEventLogs)
1882
1883 FN_GLOBAL_BOOL(lp_registry_shares, &Globals.bRegistryShares)
1884 FN_GLOBAL_BOOL(lp_usershare_allow_guests, &Globals.bUsershareAllowGuests)
1885 FN_GLOBAL_BOOL(lp_usershare_owner_only, &Globals.bUsershareOwnerOnly)
1886 FN_GLOBAL_BOOL(lp_disable_netbios, &Globals.bDisableNetbios)
1887 FN_GLOBAL_BOOL(lp_reset_on_zero_vc, &Globals.bResetOnZeroVC)
1888 FN_GLOBAL_BOOL(lp_ms_add_printer_wizard, &Globals.bMsAddPrinterWizard)
1889 FN_GLOBAL_BOOL(lp_dns_proxy, &Globals.bDNSproxy)
1890 FN_GLOBAL_BOOL(lp_wins_support, &Globals.bWINSsupport)
1891 FN_GLOBAL_BOOL(lp_we_are_a_wins_server, &Globals.bWINSsupport)
1892 FN_GLOBAL_BOOL(lp_wins_proxy, &Globals.bWINSproxy)
1893 FN_GLOBAL_BOOL(lp_local_master, &Globals.bLocalMaster)
1894 FN_GLOBAL_BOOL(lp_domain_logons, &Globals.bDomainLogons)
1895 FN_GLOBAL_BOOL(lp_load_printers, &Globals.bLoadPrinters)
1896 FN_GLOBAL_BOOL(lp_readbmpx, &Globals.bReadbmpx)
1897 FN_GLOBAL_BOOL(lp_readraw, &Globals.bReadRaw)
1898 FN_GLOBAL_BOOL(lp_large_readwrite, &Globals.bLargeReadwrite)
1899 FN_GLOBAL_BOOL(lp_writeraw, &Globals.bWriteRaw)
1900 FN_GLOBAL_BOOL(lp_null_passwords, &Globals.bNullPasswords)
1901 FN_GLOBAL_BOOL(lp_obey_pam_restrictions, &Globals.bObeyPamRestrictions)
1902 FN_GLOBAL_BOOL(lp_encrypted_passwords, &Globals.bEncryptPasswords)
1903 FN_GLOBAL_BOOL(lp_update_encrypted, &Globals.bUpdateEncrypt)
1904 FN_GLOBAL_INTEGER(lp_client_schannel, &Globals.clientSchannel)
1905 FN_GLOBAL_INTEGER(lp_server_schannel, &Globals.serverSchannel)
1906 FN_GLOBAL_BOOL(lp_syslog_only, &Globals.bSyslogOnly)
1907 FN_GLOBAL_BOOL(lp_timestamp_logs, &Globals.bTimestampLogs)
1908 FN_GLOBAL_BOOL(lp_debug_hires_timestamp, &Globals.bDebugHiresTimestamp)
1909 FN_GLOBAL_BOOL(lp_debug_pid, &Globals.bDebugPid)
1910 FN_GLOBAL_BOOL(lp_debug_uid, &Globals.bDebugUid)
1911 FN_GLOBAL_BOOL(lp_enable_core_files, &Globals.bEnableCoreFiles)
1912 FN_GLOBAL_BOOL(lp_browse_list, &Globals.bBrowseList)
1913 FN_GLOBAL_BOOL(lp_nis_home_map, &Globals.bNISHomeMap)
1914 static FN_GLOBAL_BOOL(lp_time_server, &Globals.bTimeServer)
1915 FN_GLOBAL_BOOL(lp_bind_interfaces_only, &Globals.bBindInterfacesOnly)
1916 FN_GLOBAL_BOOL(lp_pam_password_change, &Globals.bPamPasswordChange)
1917 FN_GLOBAL_BOOL(lp_unix_password_sync, &Globals.bUnixPasswdSync)
1918 FN_GLOBAL_BOOL(lp_passwd_chat_debug, &Globals.bPasswdChatDebug)
1919 FN_GLOBAL_INTEGER(lp_passwd_chat_timeout, &Globals.iPasswdChatTimeout)
1920 FN_GLOBAL_BOOL(lp_nt_pipe_support, &Globals.bNTPipeSupport)
1921 FN_GLOBAL_BOOL(lp_nt_status_support, &Globals.bNTStatusSupport)
1922 FN_GLOBAL_BOOL(lp_stat_cache, &Globals.bStatCache)
1923 FN_GLOBAL_INTEGER(lp_max_stat_cache_size, &Globals.iMaxStatCacheSize)
1924 FN_GLOBAL_BOOL(lp_allow_trusted_domains, &Globals.bAllowTrustedDomains)
1925 FN_GLOBAL_INTEGER(lp_restrict_anonymous, &Globals.restrict_anonymous)
1926 FN_GLOBAL_BOOL(lp_lanman_auth, &Globals.bLanmanAuth)
1927 FN_GLOBAL_BOOL(lp_ntlm_auth, &Globals.bNTLMAuth)
1928 FN_GLOBAL_BOOL(lp_client_plaintext_auth, &Globals.bClientPlaintextAuth)
1929 FN_GLOBAL_BOOL(lp_client_lanman_auth, &Globals.bClientLanManAuth)
1930 FN_GLOBAL_BOOL(lp_client_ntlmv2_auth, &Globals.bClientNTLMv2Auth)
1931 FN_GLOBAL_BOOL(lp_host_msdfs, &Globals.bHostMSDfs)
1932 FN_GLOBAL_BOOL(lp_kernel_oplocks, &Globals.bKernelOplocks)
1933 FN_GLOBAL_BOOL(lp_enhanced_browsing, &Globals.enhanced_browsing)
1934 FN_GLOBAL_BOOL(lp_use_mmap, &Globals.bUseMmap)
1935 FN_GLOBAL_BOOL(lp_unix_extensions, &Globals.bUnixExtensions)
1936 FN_GLOBAL_BOOL(lp_use_spnego, &Globals.bUseSpnego)
1937 FN_GLOBAL_BOOL(lp_client_use_spnego, &Globals.bClientUseSpnego)
1938 FN_GLOBAL_BOOL(lp_hostname_lookups, &Globals.bHostnameLookups)
1939 FN_GLOBAL_BOOL(lp_kernel_change_notify, &Globals.bKernelChangeNotify)
1940 FN_GLOBAL_BOOL(lp_fam_change_notify, &Globals.bFamChangeNotify)
1941 FN_GLOBAL_BOOL(lp_use_kerberos_keytab, &Globals.bUseKerberosKeytab)
1942 FN_GLOBAL_BOOL(lp_defer_sharing_violations, &Globals.bDeferSharingViolations)
1943 FN_GLOBAL_BOOL(lp_enable_privileges, &Globals.bEnablePrivileges)
1944 FN_GLOBAL_BOOL(lp_enable_asu_support, &Globals.bASUSupport)
1945 FN_GLOBAL_INTEGER(lp_os_level, &Globals.os_level)
1946 FN_GLOBAL_INTEGER(lp_max_ttl, &Globals.max_ttl)
1947 FN_GLOBAL_INTEGER(lp_max_wins_ttl, &Globals.max_wins_ttl)
1948 FN_GLOBAL_INTEGER(lp_min_wins_ttl, &Globals.min_wins_ttl)
1949 FN_GLOBAL_INTEGER(lp_max_log_size, &Globals.max_log_size)
1950 FN_GLOBAL_INTEGER(lp_max_open_files, &Globals.max_open_files)
1951 FN_GLOBAL_INTEGER(lp_open_files_db_hash_size, &Globals.open_files_db_hash_size)
1952 FN_GLOBAL_INTEGER(lp_maxxmit, &Globals.max_xmit)
1953 FN_GLOBAL_INTEGER(lp_maxmux, &Globals.max_mux)
1954 FN_GLOBAL_INTEGER(lp_passwordlevel, &Globals.pwordlevel)
1955 FN_GLOBAL_INTEGER(lp_usernamelevel, &Globals.unamelevel)
1956 FN_GLOBAL_INTEGER(lp_deadtime, &Globals.deadtime)
1957 FN_GLOBAL_INTEGER(lp_maxprotocol, &Globals.maxprotocol)
1958 FN_GLOBAL_INTEGER(lp_minprotocol, &Globals.minprotocol)
1959 FN_GLOBAL_INTEGER(lp_security, &Globals.security)
1960 FN_GLOBAL_LIST(lp_auth_methods, &Globals.AuthMethods)
1961 FN_GLOBAL_BOOL(lp_paranoid_server_security, &Globals.paranoid_server_security)
1962 FN_GLOBAL_INTEGER(lp_maxdisksize, &Globals.maxdisksize)
1963 FN_GLOBAL_INTEGER(lp_lpqcachetime, &Globals.lpqcachetime)
1964 FN_GLOBAL_INTEGER(lp_max_smbd_processes, &Globals.iMaxSmbdProcesses)
1965 FN_GLOBAL_INTEGER(_lp_disable_spoolss, &Globals.bDisableSpoolss)
1966 FN_GLOBAL_INTEGER(lp_syslog, &Globals.syslog)
1967 static FN_GLOBAL_INTEGER(lp_announce_as, &Globals.announce_as)
1968 FN_GLOBAL_INTEGER(lp_lm_announce, &Globals.lm_announce)
1969 FN_GLOBAL_INTEGER(lp_lm_interval, &Globals.lm_interval)
1970 FN_GLOBAL_INTEGER(lp_machine_password_timeout, &Globals.machine_password_timeout)
1971 FN_GLOBAL_INTEGER(lp_map_to_guest, &Globals.map_to_guest)
1972 FN_GLOBAL_INTEGER(lp_oplock_break_wait_time, &Globals.oplock_break_wait_time)
1973 FN_GLOBAL_INTEGER(lp_lock_spin_count, &Globals.iLockSpinCount)
1974 FN_GLOBAL_INTEGER(lp_lock_spin_time, &Globals.iLockSpinTime)
1975 FN_GLOBAL_INTEGER(lp_usershare_max_shares, &Globals.iUsershareMaxShares)
1976
1977 FN_LOCAL_STRING(lp_preexec, szPreExec)
1978 FN_LOCAL_STRING(lp_postexec, szPostExec)
1979 FN_LOCAL_STRING(lp_rootpreexec, szRootPreExec)
1980 FN_LOCAL_STRING(lp_rootpostexec, szRootPostExec)
1981 FN_LOCAL_STRING(lp_servicename, szService)
1982 FN_LOCAL_CONST_STRING(lp_const_servicename, szService)
1983 FN_LOCAL_STRING(lp_pathname, szPath)
1984 FN_LOCAL_STRING(lp_dontdescend, szDontdescend)
1985 FN_LOCAL_STRING(lp_username, szUsername)
1986 FN_LOCAL_LIST(lp_invalid_users, szInvalidUsers)
1987 FN_LOCAL_LIST(lp_valid_users, szValidUsers)
1988 FN_LOCAL_LIST(lp_admin_users, szAdminUsers)
1989 FN_GLOBAL_LIST(lp_svcctl_list, &Globals.szServicesList)
1990 FN_LOCAL_STRING(lp_cups_options, szCupsOptions)
1991 FN_GLOBAL_STRING(lp_cups_server, &Globals.szCupsServer)
1992 FN_GLOBAL_STRING(lp_iprint_server, &Globals.szIPrintServer)
1993 FN_LOCAL_STRING(lp_printcommand, szPrintcommand)
1994 FN_LOCAL_STRING(lp_lpqcommand, szLpqcommand)
1995 FN_LOCAL_STRING(lp_lprmcommand, szLprmcommand)
1996 FN_LOCAL_STRING(lp_lppausecommand, szLppausecommand)
1997 FN_LOCAL_STRING(lp_lpresumecommand, szLpresumecommand)
1998 FN_LOCAL_STRING(lp_queuepausecommand, szQueuepausecommand)
1999 FN_LOCAL_STRING(lp_queueresumecommand, szQueueresumecommand)
2000 static FN_LOCAL_STRING(_lp_printername, szPrintername)
2001 FN_LOCAL_LIST(lp_hostsallow, szHostsallow)
2002 FN_LOCAL_LIST(lp_hostsdeny, szHostsdeny)
2003 FN_LOCAL_STRING(lp_magicscript, szMagicScript)
2004 FN_LOCAL_STRING(lp_magicoutput, szMagicOutput)
2005 FN_LOCAL_STRING(lp_comment, comment)
2006 FN_LOCAL_STRING(lp_force_user, force_user)
2007 FN_LOCAL_STRING(lp_force_group, force_group)
2008 FN_LOCAL_LIST(lp_readlist, readlist)
2009 FN_LOCAL_LIST(lp_writelist, writelist)
2010 FN_LOCAL_LIST(lp_printer_admin, printer_admin)
2011 FN_LOCAL_STRING(lp_fstype, fstype)
2012 FN_LOCAL_LIST(lp_vfs_objects, szVfsObjects)
2013 FN_LOCAL_STRING(lp_msdfs_proxy, szMSDfsProxy)
2014 static FN_LOCAL_STRING(lp_volume, volume)
2015 FN_LOCAL_PARM_STRING(lp_mangled_map, szMangledMap)
2016 FN_LOCAL_STRING(lp_veto_files, szVetoFiles)
2017 FN_LOCAL_STRING(lp_hide_files, szHideFiles)
2018 FN_LOCAL_STRING(lp_veto_oplocks, szVetoOplockFiles)
2019 FN_LOCAL_BOOL(lp_msdfs_root, bMSDfsRoot)
2020 FN_LOCAL_STRING(lp_aio_write_behind, szAioWriteBehind)
2021 FN_LOCAL_STRING(lp_dfree_command, szDfree)
2022 FN_LOCAL_BOOL(lp_autoloaded, autoloaded)
2023 FN_LOCAL_BOOL(lp_preexec_close, bPreexecClose)
2024 FN_LOCAL_BOOL(lp_rootpreexec_close, bRootpreexecClose)
2025 FN_LOCAL_INTEGER(lp_casesensitive, iCaseSensitive)
2026 FN_LOCAL_BOOL(lp_preservecase, bCasePreserve)
2027 FN_LOCAL_BOOL(lp_shortpreservecase, bShortCasePreserve)
2028 FN_LOCAL_BOOL(lp_hide_dot_files, bHideDotFiles)
2029 FN_LOCAL_BOOL(lp_hide_special_files, bHideSpecialFiles)
2030 FN_LOCAL_BOOL(lp_hideunreadable, bHideUnReadable)
2031 FN_LOCAL_BOOL(lp_hideunwriteable_files, bHideUnWriteableFiles)
2032 FN_LOCAL_BOOL(lp_browseable, bBrowseable)
2033 FN_LOCAL_BOOL(lp_readonly, bRead_only)
2034 FN_LOCAL_BOOL(lp_no_set_dir, bNo_set_dir)
2035 FN_LOCAL_BOOL(lp_guest_ok, bGuest_ok)
2036 FN_LOCAL_BOOL(lp_guest_only, bGuest_only)
2037 FN_LOCAL_BOOL(lp_print_ok, bPrint_ok)
2038 FN_LOCAL_BOOL(lp_map_hidden, bMap_hidden)
2039 FN_LOCAL_BOOL(lp_map_archive, bMap_archive)
2040 FN_LOCAL_BOOL(lp_store_dos_attributes, bStoreDosAttributes)
2041 FN_LOCAL_BOOL(lp_dmapi_support, bDmapiSupport)
2042 FN_LOCAL_PARM_BOOL(lp_locking, bLocking)
2043 FN_LOCAL_PARM_INTEGER(lp_strict_locking, iStrictLocking)
2044 FN_LOCAL_PARM_BOOL(lp_posix_locking, bPosixLocking)
2045 FN_LOCAL_BOOL(lp_share_modes, bShareModes)
2046 FN_LOCAL_BOOL(lp_oplocks, bOpLocks)
2047 FN_LOCAL_BOOL(lp_level2_oplocks, bLevel2OpLocks)
2048 FN_LOCAL_BOOL(lp_onlyuser, bOnlyUser)
2049 FN_LOCAL_PARM_BOOL(lp_manglednames, bMangledNames)
2050 FN_LOCAL_BOOL(lp_widelinks, bWidelinks)
2051 FN_LOCAL_BOOL(lp_symlinks, bSymlinks)
2052 FN_LOCAL_BOOL(lp_syncalways, bSyncAlways)
2053 FN_LOCAL_BOOL(lp_strict_allocate, bStrictAllocate)
2054 FN_LOCAL_BOOL(lp_strict_sync, bStrictSync)
2055 FN_LOCAL_BOOL(lp_map_system, bMap_system)
2056 FN_LOCAL_BOOL(lp_delete_readonly, bDeleteReadonly)
2057 FN_LOCAL_BOOL(lp_fake_oplocks, bFakeOplocks)
2058 FN_LOCAL_BOOL(lp_recursive_veto_delete, bDeleteVetoFiles)
2059 FN_LOCAL_BOOL(lp_dos_filemode, bDosFilemode)
2060 FN_LOCAL_BOOL(lp_dos_filetimes, bDosFiletimes)
2061 FN_LOCAL_BOOL(lp_dos_filetime_resolution, bDosFiletimeResolution)
2062 FN_LOCAL_BOOL(lp_fake_dir_create_times, bFakeDirCreateTimes)
2063 FN_LOCAL_BOOL(lp_blocking_locks, bBlockingLocks)
2064 FN_LOCAL_BOOL(lp_inherit_perms, bInheritPerms)
2065 FN_LOCAL_BOOL(lp_inherit_acls, bInheritACLS)
2066 FN_LOCAL_BOOL(lp_inherit_owner, bInheritOwner)
2067 FN_LOCAL_BOOL(lp_use_client_driver, bUseClientDriver)
2068 FN_LOCAL_BOOL(lp_default_devmode, bDefaultDevmode)
2069 FN_LOCAL_BOOL(lp_force_printername, bForcePrintername)
2070 FN_LOCAL_BOOL(lp_nt_acl_support, bNTAclSupport)
2071 FN_LOCAL_BOOL(lp_force_unknown_acl_user, bForceUnknownAclUser)
2072 FN_LOCAL_BOOL(lp_ea_support, bEASupport)
2073 FN_LOCAL_BOOL(_lp_use_sendfile, bUseSendfile)
2074 FN_LOCAL_BOOL(lp_profile_acls, bProfileAcls)
2075 FN_LOCAL_BOOL(lp_map_acl_inherit, bMap_acl_inherit)
2076 FN_LOCAL_BOOL(lp_afs_share, bAfs_Share)
2077 FN_LOCAL_BOOL(lp_acl_check_permissions, bAclCheckPermissions)
2078 FN_LOCAL_BOOL(lp_acl_group_control, bAclGroupControl)
2079 FN_LOCAL_BOOL(lp_acl_map_full_control, bAclMapFullControl)
2080 FN_LOCAL_INTEGER(lp_create_mask, iCreate_mask)
2081 FN_LOCAL_INTEGER(lp_force_create_mode, iCreate_force_mode)
2082 FN_LOCAL_INTEGER(lp_security_mask, iSecurity_mask)
2083 FN_LOCAL_INTEGER(lp_force_security_mode, iSecurity_force_mode)
2084 FN_LOCAL_INTEGER(lp_dir_mask, iDir_mask)
2085 FN_LOCAL_INTEGER(lp_force_dir_mode, iDir_force_mode)
2086 FN_LOCAL_INTEGER(lp_dir_security_mask, iDir_Security_mask)
2087 FN_LOCAL_INTEGER(lp_force_dir_security_mode, iDir_Security_force_mode)
2088 FN_LOCAL_INTEGER(lp_max_connections, iMaxConnections)
2089 FN_LOCAL_INTEGER(lp_defaultcase, iDefaultCase)
2090 FN_LOCAL_INTEGER(lp_minprintspace, iMinPrintSpace)
2091 FN_LOCAL_INTEGER(lp_printing, iPrinting)
2092 FN_LOCAL_INTEGER(lp_max_reported_jobs, iMaxReportedPrintJobs)
2093 FN_LOCAL_INTEGER(lp_oplock_contention_limit, iOplockContentionLimit)
2094 FN_LOCAL_INTEGER(lp_csc_policy, iCSCPolicy)
2095 FN_LOCAL_INTEGER(lp_write_cache_size, iWriteCacheSize)
2096 FN_LOCAL_INTEGER(lp_block_size, iBlock_size)
2097 FN_LOCAL_INTEGER(lp_dfree_cache_time, iDfreeCacheTime)
2098 FN_LOCAL_INTEGER(lp_allocation_roundup_size, iallocation_roundup_size)
2099 FN_LOCAL_INTEGER(lp_aio_read_size, iAioReadSize)
2100 FN_LOCAL_INTEGER(lp_aio_write_size, iAioWriteSize)
2101 FN_LOCAL_INTEGER(lp_map_readonly, iMap_readonly)
2102 FN_LOCAL_INTEGER(lp_change_notify_timeout, ichange_notify_timeout)
2103 FN_LOCAL_CHAR(lp_magicchar, magic_char)
2104 FN_GLOBAL_INTEGER(lp_winbind_cache_time, &Globals.winbind_cache_time)
2105 FN_GLOBAL_LIST(lp_winbind_nss_info, &Globals.szWinbindNssInfo)
2106 FN_GLOBAL_INTEGER(lp_algorithmic_rid_base, &Globals.AlgorithmicRidBase)
2107 FN_GLOBAL_INTEGER(lp_name_cache_timeout, &Globals.name_cache_timeout)
2108 FN_GLOBAL_INTEGER(lp_client_signing, &Globals.client_signing)
2109 FN_GLOBAL_INTEGER(lp_server_signing, &Globals.server_signing)
2110
2111 /* local prototypes */
2112
2113 static int map_parameter(const char *pszParmName);
2114 static BOOL set_boolean(BOOL *pb, const char *pszParmValue);
2115 static int getservicebyname(const char *pszServiceName,
2116                             service * pserviceDest);
2117 static void copy_service(service * pserviceDest,
2118                          service * pserviceSource, BOOL *pcopymapDest);
2119 static BOOL service_ok(int iService);
2120 static BOOL do_parameter(const char *pszParmName, const char *pszParmValue);
2121 static BOOL do_section(const char *pszSectionName);
2122 static void init_copymap(service * pservice);
2123 static BOOL hash_a_service(const char *name, int number);
2124 static void free_service_byindex(int iService);
2125 static char * canonicalize_servicename(const char *name);
2126
2127 /* This is a helper function for parametrical options support. */
2128 /* It returns a pointer to parametrical option value if it exists or NULL otherwise */
2129 /* Actual parametrical functions are quite simple */
2130 static param_opt_struct *get_parametrics(int snum, const char *type, const char *option)
2131 {
2132         BOOL global_section = False;
2133         char* param_key;
2134         param_opt_struct *data;
2135         
2136         if (snum >= iNumServices) return NULL;
2137         
2138         if (snum < 0) { 
2139                 data = Globals.param_opt;
2140                 global_section = True;
2141         } else {
2142                 data = ServicePtrs[snum]->param_opt;
2143         }
2144     
2145         asprintf(&param_key, "%s:%s", type, option);
2146         if (!param_key) {
2147                 DEBUG(0,("asprintf failed!\n"));
2148                 return NULL;
2149         }
2150
2151         while (data) {
2152                 if (strcmp(data->key, param_key) == 0) {
2153                         string_free(&param_key);
2154                         return data;
2155                 }
2156                 data = data->next;
2157         }
2158
2159         if (!global_section) {
2160                 /* Try to fetch the same option but from globals */
2161                 /* but only if we are not already working with Globals */
2162                 data = Globals.param_opt;
2163                 while (data) {
2164                         if (strcmp(data->key, param_key) == 0) {
2165                                 string_free(&param_key);
2166                                 return data;
2167                         }
2168                         data = data->next;
2169                 }
2170         }
2171
2172         string_free(&param_key);
2173         
2174         return NULL;
2175 }
2176
2177
2178 #define MISSING_PARAMETER(name) \
2179     DEBUG(0, ("%s(): value is NULL or empty!\n", #name))
2180
2181 /*******************************************************************
2182 convenience routine to return int parameters.
2183 ********************************************************************/
2184 static int lp_int(const char *s)
2185 {
2186
2187         if (!s || !*s) {
2188                 MISSING_PARAMETER(lp_int);
2189                 return (-1);
2190         }
2191
2192         return atoi(s); 
2193 }
2194
2195 /*******************************************************************
2196 convenience routine to return unsigned long parameters.
2197 ********************************************************************/
2198 static unsigned long lp_ulong(const char *s)
2199 {
2200
2201         if (!s || !*s) {
2202                 MISSING_PARAMETER(lp_ulong);
2203                 return (0);
2204         }
2205
2206         return strtoul(s, NULL, 10);
2207 }
2208
2209 /*******************************************************************
2210 convenience routine to return boolean parameters.
2211 ********************************************************************/
2212 static BOOL lp_bool(const char *s)
2213 {
2214         BOOL ret = False;
2215
2216         if (!s || !*s) {
2217                 MISSING_PARAMETER(lp_bool);
2218                 return False;
2219         }
2220         
2221         if (!set_boolean(&ret,s)) {
2222                 DEBUG(0,("lp_bool(%s): value is not boolean!\n",s));
2223                 return False;
2224         }
2225
2226         return ret;
2227 }
2228
2229 /*******************************************************************
2230 convenience routine to return enum parameters.
2231 ********************************************************************/
2232 static int lp_enum(const char *s,const struct enum_list *_enum)
2233 {
2234         int i;
2235
2236         if (!s || !*s || !_enum) {
2237                 MISSING_PARAMETER(lp_enum);
2238                 return (-1);
2239         }
2240         
2241         for (i=0; _enum[i].name; i++) {
2242                 if (strequal(_enum[i].name,s))
2243                         return _enum[i].value;
2244         }
2245
2246         DEBUG(0,("lp_enum(%s,enum): value is not in enum_list!\n",s));
2247         return (-1);
2248 }
2249
2250 #undef MISSING_PARAMETER
2251
2252 /* DO NOT USE lp_parm_string ANYMORE!!!!
2253  * use lp_parm_const_string or lp_parm_talloc_string
2254  *
2255  * lp_parm_string is only used to let old modules find this symbol
2256  */
2257 #undef lp_parm_string
2258  char *lp_parm_string(const char *servicename, const char *type, const char *option);
2259  char *lp_parm_string(const char *servicename, const char *type, const char *option)
2260 {
2261         return lp_parm_talloc_string(lp_servicenumber(servicename), type, option, NULL);
2262 }
2263
2264 /* Return parametric option from a given service. Type is a part of option before ':' */
2265 /* Parametric option has following syntax: 'Type: option = value' */
2266 /* the returned value is talloced in lp_talloc */
2267 char *lp_parm_talloc_string(int snum, const char *type, const char *option, const char *def)
2268 {
2269         param_opt_struct *data = get_parametrics(snum, type, option);
2270         
2271         if (data == NULL||data->value==NULL) {
2272                 if (def) {
2273                         return lp_string(def);
2274                 } else {
2275                         return NULL;
2276                 }
2277         }
2278
2279         return lp_string(data->value);
2280 }
2281
2282 /* Return parametric option from a given service. Type is a part of option before ':' */
2283 /* Parametric option has following syntax: 'Type: option = value' */
2284 const char *lp_parm_const_string(int snum, const char *type, const char *option, const char *def)
2285 {
2286         param_opt_struct *data = get_parametrics(snum, type, option);
2287         
2288         if (data == NULL||data->value==NULL)
2289                 return def;
2290                 
2291         return data->value;
2292 }
2293
2294 /* Return parametric option from a given service. Type is a part of option before ':' */
2295 /* Parametric option has following syntax: 'Type: option = value' */
2296
2297 const char **lp_parm_string_list(int snum, const char *type, const char *option, const char **def)
2298 {
2299         param_opt_struct *data = get_parametrics(snum, type, option);
2300
2301         if (data == NULL||data->value==NULL)
2302                 return (const char **)def;
2303                 
2304         if (data->list==NULL) {
2305                 data->list = str_list_make(data->value, NULL);
2306         }
2307
2308         return (const char **)data->list;
2309 }
2310
2311 /* Return parametric option from a given service. Type is a part of option before ':' */
2312 /* Parametric option has following syntax: 'Type: option = value' */
2313
2314 int lp_parm_int(int snum, const char *type, const char *option, int def)
2315 {
2316         param_opt_struct *data = get_parametrics(snum, type, option);
2317         
2318         if (data && data->value && *data->value)
2319                 return lp_int(data->value);
2320
2321         return def;
2322 }
2323
2324 /* Return parametric option from a given service. Type is a part of option before ':' */
2325 /* Parametric option has following syntax: 'Type: option = value' */
2326
2327 unsigned long lp_parm_ulong(int snum, const char *type, const char *option, unsigned long def)
2328 {
2329         param_opt_struct *data = get_parametrics(snum, type, option);
2330         
2331         if (data && data->value && *data->value)
2332                 return lp_ulong(data->value);
2333
2334         return def;
2335 }
2336
2337 /* Return parametric option from a given service. Type is a part of option before ':' */
2338 /* Parametric option has following syntax: 'Type: option = value' */
2339
2340 BOOL lp_parm_bool(int snum, const char *type, const char *option, BOOL def)
2341 {
2342         param_opt_struct *data = get_parametrics(snum, type, option);
2343         
2344         if (data && data->value && *data->value)
2345                 return lp_bool(data->value);
2346
2347         return def;
2348 }
2349
2350 /* Return parametric option from a given service. Type is a part of option before ':' */
2351 /* Parametric option has following syntax: 'Type: option = value' */
2352
2353 int lp_parm_enum(int snum, const char *type, const char *option,
2354                  const struct enum_list *_enum, int def)
2355 {
2356         param_opt_struct *data = get_parametrics(snum, type, option);
2357         
2358         if (data && data->value && *data->value && _enum)
2359                 return lp_enum(data->value, _enum);
2360
2361         return def;
2362 }
2363
2364
2365 /***************************************************************************
2366  Initialise a service to the defaults.
2367 ***************************************************************************/
2368
2369 static void init_service(service * pservice)
2370 {
2371         memset((char *)pservice, '\0', sizeof(service));
2372         copy_service(pservice, &sDefault, NULL);
2373 }
2374
2375 /***************************************************************************
2376  Free the dynamically allocated parts of a service struct.
2377 ***************************************************************************/
2378
2379 static void free_service(service *pservice)
2380 {
2381         int i;
2382         param_opt_struct *data, *pdata;
2383         if (!pservice)
2384                 return;
2385
2386         if (pservice->szService)
2387                 DEBUG(5, ("free_service: Freeing service %s\n",
2388                        pservice->szService));
2389
2390         string_free(&pservice->szService);
2391         SAFE_FREE(pservice->copymap);
2392
2393         for (i = 0; parm_table[i].label; i++) {
2394                 if ((parm_table[i].type == P_STRING ||
2395                      parm_table[i].type == P_USTRING) &&
2396                     parm_table[i].p_class == P_LOCAL)
2397                         string_free((char **)
2398                                     (((char *)pservice) +
2399                                      PTR_DIFF(parm_table[i].ptr, &sDefault)));
2400                 else if (parm_table[i].type == P_LIST &&
2401                          parm_table[i].p_class == P_LOCAL)
2402                              str_list_free((char ***)
2403                                             (((char *)pservice) +
2404                                              PTR_DIFF(parm_table[i].ptr, &sDefault)));
2405         }
2406
2407         data = pservice->param_opt;
2408         if (data)
2409                 DEBUG(5,("Freeing parametrics:\n"));
2410         while (data) {
2411                 DEBUG(5,("[%s = %s]\n", data->key, data->value));
2412                 string_free(&data->key);
2413                 string_free(&data->value);
2414                 str_list_free(&data->list);
2415                 pdata = data->next;
2416                 SAFE_FREE(data);
2417                 data = pdata;
2418         }
2419
2420         ZERO_STRUCTP(pservice);
2421 }
2422
2423
2424 /***************************************************************************
2425  remove a service indexed in the ServicePtrs array from the ServiceHash
2426  and free the dynamically allocated parts
2427 ***************************************************************************/
2428
2429 static void free_service_byindex(int idx)
2430 {
2431         if ( !LP_SNUM_OK(idx) ) 
2432                 return;
2433
2434         ServicePtrs[idx]->valid = False;
2435         invalid_services[num_invalid_services++] = idx;
2436
2437         /* we have to cleanup the hash record */
2438
2439         if (ServicePtrs[idx]->szService) {
2440                 char *canon_name = canonicalize_servicename( ServicePtrs[idx]->szService );
2441                 
2442                 tdb_delete_bystring(ServiceHash, canon_name );
2443         }
2444
2445         free_service(ServicePtrs[idx]);
2446 }
2447
2448 /***************************************************************************
2449  Add a new service to the services array initialising it with the given 
2450  service. 
2451 ***************************************************************************/
2452
2453 static int add_a_service(const service *pservice, const char *name)
2454 {
2455         int i;
2456         service tservice;
2457         int num_to_alloc = iNumServices + 1;
2458         param_opt_struct *data, *pdata;
2459
2460         tservice = *pservice;
2461
2462         /* it might already exist */
2463         if (name) {
2464                 i = getservicebyname(name, NULL);
2465                 if (i >= 0) {
2466                         /* Clean all parametric options for service */
2467                         /* They will be added during parsing again */
2468                         data = ServicePtrs[i]->param_opt;
2469                         while (data) {
2470                                 string_free(&data->key);
2471                                 string_free(&data->value);
2472                                 str_list_free(&data->list);
2473                                 pdata = data->next;
2474                                 SAFE_FREE(data);
2475                                 data = pdata;
2476                         }
2477                         ServicePtrs[i]->param_opt = NULL;
2478                         return (i);
2479                 }
2480         }
2481
2482         /* find an invalid one */
2483         i = iNumServices;
2484         if (num_invalid_services > 0) {
2485                 i = invalid_services[--num_invalid_services];
2486         }
2487
2488         /* if not, then create one */
2489         if (i == iNumServices) {
2490                 service **tsp;
2491                 int *tinvalid;
2492                 
2493                 tsp = SMB_REALLOC_ARRAY_KEEP_OLD_ON_ERROR(ServicePtrs, service *, num_to_alloc);
2494                 if (tsp == NULL) {
2495                         DEBUG(0,("add_a_service: failed to enlarge ServicePtrs!\n"));
2496                         return (-1);
2497                 }
2498                 ServicePtrs = tsp;
2499                 ServicePtrs[iNumServices] = SMB_MALLOC_P(service);
2500                 if (!ServicePtrs[iNumServices]) {
2501                         DEBUG(0,("add_a_service: out of memory!\n"));
2502                         return (-1);
2503                 }
2504                 iNumServices++;
2505
2506                 /* enlarge invalid_services here for now... */
2507                 tinvalid = SMB_REALLOC_ARRAY_KEEP_OLD_ON_ERROR(invalid_services, int,
2508                                              num_to_alloc);
2509                 if (tinvalid == NULL) {
2510                         DEBUG(0,("add_a_service: failed to enlarge "
2511                                  "invalid_services!\n"));
2512                         return (-1);
2513                 }
2514                 invalid_services = tinvalid;
2515         } else {
2516                 free_service_byindex(i);
2517         }
2518
2519         ServicePtrs[i]->valid = True;
2520
2521         init_service(ServicePtrs[i]);
2522         copy_service(ServicePtrs[i], &tservice, NULL);
2523         if (name)
2524                 string_set(&ServicePtrs[i]->szService, name);
2525                 
2526         DEBUG(8,("add_a_service: Creating snum = %d for %s\n", 
2527                 i, ServicePtrs[i]->szService));
2528
2529         if (!hash_a_service(ServicePtrs[i]->szService, i)) {
2530                 return (-1);
2531         }
2532                 
2533         return (i);
2534 }
2535
2536 /***************************************************************************
2537   Convert a string to uppercase and remove whitespaces.
2538 ***************************************************************************/
2539
2540 static char *canonicalize_servicename(const char *src)
2541 {
2542         static fstring canon; /* is fstring large enough? */
2543
2544         if ( !src ) {
2545                 DEBUG(0,("canonicalize_servicename: NULL source name!\n"));
2546                 return NULL;
2547         }
2548
2549         fstrcpy( canon, src );
2550         strlower_m( canon );
2551
2552         return canon;
2553 }
2554
2555 /***************************************************************************
2556   Add a name/index pair for the services array to the hash table.
2557 ***************************************************************************/
2558
2559 static BOOL hash_a_service(const char *name, int idx)
2560 {
2561         char *canon_name;
2562
2563         if ( !ServiceHash ) {
2564                 DEBUG(10,("hash_a_service: creating tdb servicehash\n"));
2565                 ServiceHash = tdb_open("servicehash", 1031, TDB_INTERNAL, 
2566                                         (O_RDWR|O_CREAT), 0600);
2567                 if ( !ServiceHash ) {
2568                         DEBUG(0,("hash_a_service: open tdb servicehash failed!\n"));
2569                         return False;
2570                 }
2571         }
2572
2573         DEBUG(10,("hash_a_service: hashing index %d for service name %s\n",
2574                 idx, name));
2575
2576         if ( !(canon_name = canonicalize_servicename( name )) )
2577                 return False;
2578
2579         tdb_store_int32(ServiceHash, canon_name, idx);
2580
2581         return True;
2582 }
2583
2584 /***************************************************************************
2585  Add a new home service, with the specified home directory, defaults coming 
2586  from service ifrom.
2587 ***************************************************************************/
2588
2589 BOOL lp_add_home(const char *pszHomename, int iDefaultService, 
2590                  const char *user, const char *pszHomedir)
2591 {
2592         int i;
2593         pstring newHomedir;
2594
2595         i = add_a_service(ServicePtrs[iDefaultService], pszHomename);
2596
2597         if (i < 0)
2598                 return (False);
2599
2600         if (!(*(ServicePtrs[iDefaultService]->szPath))
2601             || strequal(ServicePtrs[iDefaultService]->szPath, lp_pathname(GLOBAL_SECTION_SNUM))) {
2602                 pstrcpy(newHomedir, pszHomedir);
2603                 string_set(&ServicePtrs[i]->szPath, newHomedir);
2604         } 
2605
2606         if (!(*(ServicePtrs[i]->comment))) {
2607                 pstring comment;
2608                 slprintf(comment, sizeof(comment) - 1,
2609                          "Home directory of %s", user);
2610                 string_set(&ServicePtrs[i]->comment, comment);
2611         }
2612
2613         /* set the browseable flag from the global default */
2614
2615         ServicePtrs[i]->bBrowseable = sDefault.bBrowseable;
2616
2617         ServicePtrs[i]->autoloaded = True;
2618
2619         DEBUG(3, ("adding home's share [%s] for user '%s' at '%s'\n", pszHomename, 
2620                user, ServicePtrs[i]->szPath ));
2621         
2622         return (True);
2623 }
2624
2625 /***************************************************************************
2626  Add a new service, based on an old one.
2627 ***************************************************************************/
2628
2629 int lp_add_service(const char *pszService, int iDefaultService)
2630 {
2631         if (iDefaultService < 0) {
2632                 return add_a_service(&sDefault, pszService);
2633         }
2634
2635         return (add_a_service(ServicePtrs[iDefaultService], pszService));
2636 }
2637
2638 /***************************************************************************
2639  Add the IPC service.
2640 ***************************************************************************/
2641
2642 static BOOL lp_add_ipc(const char *ipc_name, BOOL guest_ok)
2643 {
2644         pstring comment;
2645         int i = add_a_service(&sDefault, ipc_name);
2646
2647         if (i < 0)
2648                 return (False);
2649
2650         slprintf(comment, sizeof(comment) - 1,
2651                  "IPC Service (%s)", Globals.szServerString);
2652
2653         string_set(&ServicePtrs[i]->szPath, tmpdir());
2654         string_set(&ServicePtrs[i]->szUsername, "");
2655         string_set(&ServicePtrs[i]->comment, comment);
2656         string_set(&ServicePtrs[i]->fstype, "IPC");
2657         ServicePtrs[i]->iMaxConnections = 0;
2658         ServicePtrs[i]->bAvailable = True;
2659         ServicePtrs[i]->bRead_only = True;
2660         ServicePtrs[i]->bGuest_only = False;
2661         ServicePtrs[i]->bGuest_ok = guest_ok;
2662         ServicePtrs[i]->bPrint_ok = False;
2663         ServicePtrs[i]->bBrowseable = sDefault.bBrowseable;
2664
2665         DEBUG(3, ("adding IPC service\n"));
2666
2667         return (True);
2668 }
2669
2670 /***************************************************************************
2671  Add a new printer service, with defaults coming from service iFrom.
2672 ***************************************************************************/
2673
2674 BOOL lp_add_printer(const char *pszPrintername, int iDefaultService)
2675 {
2676         const char *comment = "From Printcap";
2677         int i = add_a_service(ServicePtrs[iDefaultService], pszPrintername);
2678
2679         if (i < 0)
2680                 return (False);
2681
2682         /* note that we do NOT default the availability flag to True - */
2683         /* we take it from the default service passed. This allows all */
2684         /* dynamic printers to be disabled by disabling the [printers] */
2685         /* entry (if/when the 'available' keyword is implemented!).    */
2686
2687         /* the printer name is set to the service name. */
2688         string_set(&ServicePtrs[i]->szPrintername, pszPrintername);
2689         string_set(&ServicePtrs[i]->comment, comment);
2690
2691         /* set the browseable flag from the gloabl default */
2692         ServicePtrs[i]->bBrowseable = sDefault.bBrowseable;
2693
2694         /* Printers cannot be read_only. */
2695         ServicePtrs[i]->bRead_only = False;
2696         /* No share modes on printer services. */
2697         ServicePtrs[i]->bShareModes = False;
2698         /* No oplocks on printer services. */
2699         ServicePtrs[i]->bOpLocks = False;
2700         /* Printer services must be printable. */
2701         ServicePtrs[i]->bPrint_ok = True;
2702         
2703         DEBUG(3, ("adding printer service %s\n", pszPrintername));
2704
2705         return (True);
2706 }
2707
2708 /***************************************************************************
2709  Map a parameter's string representation to something we can use. 
2710  Returns False if the parameter string is not recognised, else TRUE.
2711 ***************************************************************************/
2712
2713 static int map_parameter(const char *pszParmName)
2714 {
2715         int iIndex;
2716
2717         if (*pszParmName == '-')
2718                 return (-1);
2719
2720         for (iIndex = 0; parm_table[iIndex].label; iIndex++)
2721                 if (strwicmp(parm_table[iIndex].label, pszParmName) == 0)
2722                         return (iIndex);
2723
2724         /* Warn only if it isn't parametric option */
2725         if (strchr(pszParmName, ':') == NULL)
2726                 DEBUG(0, ("Unknown parameter encountered: \"%s\"\n", pszParmName));
2727         /* We do return 'fail' for parametric options as well because they are
2728            stored in different storage
2729          */
2730         return (-1);
2731 }
2732
2733 /***************************************************************************
2734  Show all parameter's name, type, [values,] and flags.
2735 ***************************************************************************/
2736
2737 void show_parameter_list(void)
2738 {
2739         int classIndex, parmIndex, enumIndex, flagIndex;
2740         BOOL hadFlag;
2741         const char *section_names[] = { "local", "global", NULL};
2742         const char *type[] = { "P_BOOL", "P_BOOLREV", "P_CHAR", "P_INTEGER",
2743                 "P_OCTAL", "P_LIST", "P_STRING", "P_USTRING", "P_GSTRING",
2744                 "P_UGSTRING", "P_ENUM", "P_SEP"};
2745         unsigned flags[] = { FLAG_BASIC, FLAG_SHARE, FLAG_PRINT, FLAG_GLOBAL,
2746                 FLAG_WIZARD, FLAG_ADVANCED, FLAG_DEVELOPER, FLAG_DEPRECATED,
2747                 FLAG_HIDE, FLAG_DOS_STRING};
2748         const char *flag_names[] = { "FLAG_BASIC", "FLAG_SHARE", "FLAG_PRINT",
2749                 "FLAG_GLOBAL", "FLAG_WIZARD", "FLAG_ADVANCED", "FLAG_DEVELOPER",
2750                 "FLAG_DEPRECATED", "FLAG_HIDE", "FLAG_DOS_STRING", NULL};
2751
2752         for ( classIndex=0; section_names[classIndex]; classIndex++) {
2753                 printf("[%s]\n", section_names[classIndex]);
2754                 for (parmIndex = 0; parm_table[parmIndex].label; parmIndex++) {
2755                         if (parm_table[parmIndex].p_class == classIndex) {
2756                                 printf("%s=%s", 
2757                                         parm_table[parmIndex].label,
2758                                         type[parm_table[parmIndex].type]);
2759                                 switch (parm_table[parmIndex].type) {
2760                                 case P_ENUM:
2761                                         printf(",");
2762                                         for (enumIndex=0; parm_table[parmIndex].enum_list[enumIndex].name; enumIndex++)
2763                                                 printf("%s%s",
2764                                                         enumIndex ? "|" : "",
2765                                                         parm_table[parmIndex].enum_list[enumIndex].name);
2766                                         break;
2767                                 default:
2768                                         break;
2769                                 }
2770                                 printf(",");
2771                                 hadFlag = False;
2772                                 for ( flagIndex=0; flag_names[flagIndex]; flagIndex++ ) {
2773                                         if (parm_table[parmIndex].flags & flags[flagIndex]) {
2774                                                 printf("%s%s",
2775                                                         hadFlag ? "|" : "",
2776                                                         flag_names[flagIndex]);
2777                                                 hadFlag = True;
2778                                         }
2779                                 }
2780                                 printf("\n");
2781                         }
2782                 }
2783         }
2784 }
2785
2786 /***************************************************************************
2787  Set a boolean variable from the text value stored in the passed string.
2788  Returns True in success, False if the passed string does not correctly 
2789  represent a boolean.
2790 ***************************************************************************/
2791
2792 static BOOL set_boolean(BOOL *pb, const char *pszParmValue)
2793 {
2794         BOOL bRetval;
2795
2796         bRetval = True;
2797         if (strwicmp(pszParmValue, "yes") == 0 ||
2798             strwicmp(pszParmValue, "true") == 0 ||
2799             strwicmp(pszParmValue, "1") == 0)
2800                 *pb = True;
2801         else if (strwicmp(pszParmValue, "no") == 0 ||
2802                     strwicmp(pszParmValue, "False") == 0 ||
2803                     strwicmp(pszParmValue, "0") == 0)
2804                 *pb = False;
2805         else {
2806                 DEBUG(0,
2807                       ("ERROR: Badly formed boolean in configuration file: \"%s\".\n",
2808                        pszParmValue));
2809                 bRetval = False;
2810         }
2811         return (bRetval);
2812 }
2813
2814 /***************************************************************************
2815 Find a service by name. Otherwise works like get_service.
2816 ***************************************************************************/
2817
2818 static int getservicebyname(const char *pszServiceName, service * pserviceDest)
2819 {
2820         int iService = -1;
2821         char *canon_name;
2822
2823         if (ServiceHash != NULL) {
2824                 if ( !(canon_name = canonicalize_servicename( pszServiceName )) )
2825                         return -1;
2826
2827                 iService = tdb_fetch_int32(ServiceHash, canon_name );
2828
2829                 if (LP_SNUM_OK(iService)) {
2830                         if (pserviceDest != NULL) {
2831                                 copy_service(pserviceDest, ServicePtrs[iService], NULL);
2832                         }
2833                 } else {
2834                         iService = -1;
2835                 }
2836         }
2837
2838         return (iService);
2839 }
2840
2841 /***************************************************************************
2842  Copy a service structure to another.
2843  If pcopymapDest is NULL then copy all fields
2844 ***************************************************************************/
2845
2846 static void copy_service(service * pserviceDest, service * pserviceSource, BOOL *pcopymapDest)
2847 {
2848         int i;
2849         BOOL bcopyall = (pcopymapDest == NULL);
2850         param_opt_struct *data, *pdata, *paramo;
2851         BOOL not_added;
2852
2853         for (i = 0; parm_table[i].label; i++)
2854                 if (parm_table[i].ptr && parm_table[i].p_class == P_LOCAL &&
2855                     (bcopyall || pcopymapDest[i])) {
2856                         void *def_ptr = parm_table[i].ptr;
2857                         void *src_ptr =
2858                                 ((char *)pserviceSource) + PTR_DIFF(def_ptr,
2859                                                                     &sDefault);
2860                         void *dest_ptr =
2861                                 ((char *)pserviceDest) + PTR_DIFF(def_ptr,
2862                                                                   &sDefault);
2863
2864                         switch (parm_table[i].type) {
2865                                 case P_BOOL:
2866                                 case P_BOOLREV:
2867                                         *(BOOL *)dest_ptr = *(BOOL *)src_ptr;
2868                                         break;
2869
2870                                 case P_INTEGER:
2871                                 case P_ENUM:
2872                                 case P_OCTAL:
2873                                         *(int *)dest_ptr = *(int *)src_ptr;
2874                                         break;
2875
2876                                 case P_CHAR:
2877                                         *(char *)dest_ptr = *(char *)src_ptr;
2878                                         break;
2879
2880                                 case P_STRING:
2881                                         string_set((char **)dest_ptr,
2882                                                    *(char **)src_ptr);
2883                                         break;
2884
2885                                 case P_USTRING:
2886                                         string_set((char **)dest_ptr,
2887                                                    *(char **)src_ptr);
2888                                         strupper_m(*(char **)dest_ptr);
2889                                         break;
2890                                 case P_LIST:
2891                                         str_list_free((char ***)dest_ptr);
2892                                         str_list_copy((char ***)dest_ptr, *(const char ***)src_ptr);
2893                                         break;
2894                                 default:
2895                                         break;
2896                         }
2897                 }
2898
2899         if (bcopyall) {
2900                 init_copymap(pserviceDest);
2901                 if (pserviceSource->copymap)
2902                         memcpy((void *)pserviceDest->copymap,
2903                                (void *)pserviceSource->copymap,
2904                                sizeof(BOOL) * NUMPARAMETERS);
2905         }
2906         
2907         data = pserviceSource->param_opt;
2908         while (data) {
2909                 not_added = True;
2910                 pdata = pserviceDest->param_opt;
2911                 /* Traverse destination */
2912                 while (pdata) {
2913                         /* If we already have same option, override it */
2914                         if (strcmp(pdata->key, data->key) == 0) {
2915                                 string_free(&pdata->value);
2916                                 str_list_free(&data->list);
2917                                 pdata->value = SMB_STRDUP(data->value);
2918                                 not_added = False;
2919                                 break;
2920                         }
2921                         pdata = pdata->next;
2922                 }
2923                 if (not_added) {
2924                     paramo = SMB_XMALLOC_P(param_opt_struct);
2925                     paramo->key = SMB_STRDUP(data->key);
2926                     paramo->value = SMB_STRDUP(data->value);
2927                     paramo->list = NULL;
2928                     DLIST_ADD(pserviceDest->param_opt, paramo);
2929                 }
2930                 data = data->next;
2931         }
2932 }
2933
2934 /***************************************************************************
2935 Check a service for consistency. Return False if the service is in any way
2936 incomplete or faulty, else True.
2937 ***************************************************************************/
2938
2939 static BOOL service_ok(int iService)
2940 {
2941         BOOL bRetval;
2942
2943         bRetval = True;
2944         if (ServicePtrs[iService]->szService[0] == '\0') {
2945                 DEBUG(0, ("The following message indicates an internal error:\n"));
2946                 DEBUG(0, ("No service name in service entry.\n"));
2947                 bRetval = False;
2948         }
2949
2950         /* The [printers] entry MUST be printable. I'm all for flexibility, but */
2951         /* I can't see why you'd want a non-printable printer service...        */
2952         if (strwicmp(ServicePtrs[iService]->szService, PRINTERS_NAME) == 0) {
2953                 if (!ServicePtrs[iService]->bPrint_ok) {
2954                         DEBUG(0, ("WARNING: [%s] service MUST be printable!\n",
2955                                ServicePtrs[iService]->szService));
2956                         ServicePtrs[iService]->bPrint_ok = True;
2957                 }
2958                 /* [printers] service must also be non-browsable. */
2959                 if (ServicePtrs[iService]->bBrowseable)
2960                         ServicePtrs[iService]->bBrowseable = False;
2961         }
2962
2963         if (ServicePtrs[iService]->szPath[0] == '\0' &&
2964             strwicmp(ServicePtrs[iService]->szService, HOMES_NAME) != 0 &&
2965             ServicePtrs[iService]->szMSDfsProxy[0] == '\0'
2966             ) {
2967                 DEBUG(0, ("WARNING: No path in service %s - making it unavailable!\n",
2968                         ServicePtrs[iService]->szService));
2969                 ServicePtrs[iService]->bAvailable = False;
2970         }
2971
2972         /* If a service is flagged unavailable, log the fact at level 0. */
2973         if (!ServicePtrs[iService]->bAvailable)
2974                 DEBUG(1, ("NOTE: Service %s is flagged unavailable.\n",
2975                           ServicePtrs[iService]->szService));
2976
2977         return (bRetval);
2978 }
2979
2980 static struct file_lists {
2981         struct file_lists *next;
2982         char *name;
2983         char *subfname;
2984         time_t modtime;
2985 } *file_lists = NULL;
2986
2987 /*******************************************************************
2988  Keep a linked list of all config files so we know when one has changed 
2989  it's date and needs to be reloaded.
2990 ********************************************************************/
2991
2992 static void add_to_file_list(const char *fname, const char *subfname)
2993 {
2994         struct file_lists *f = file_lists;
2995
2996         while (f) {
2997                 if (f->name && !strcmp(f->name, fname))
2998                         break;
2999                 f = f->next;
3000         }
3001
3002         if (!f) {
3003                 f = SMB_MALLOC_P(struct file_lists);
3004                 if (!f)
3005                         return;
3006                 f->next = file_lists;
3007                 f->name = SMB_STRDUP(fname);
3008                 if (!f->name) {
3009                         SAFE_FREE(f);
3010                         return;
3011                 }
3012                 f->subfname = SMB_STRDUP(subfname);
3013                 if (!f->subfname) {
3014                         SAFE_FREE(f);
3015                         return;
3016                 }
3017                 file_lists = f;
3018                 f->modtime = file_modtime(subfname);
3019         } else {
3020                 time_t t = file_modtime(subfname);
3021                 if (t)
3022                         f->modtime = t;
3023         }
3024 }
3025
3026 /*******************************************************************
3027  Check if a config file has changed date.
3028 ********************************************************************/
3029
3030 BOOL lp_file_list_changed(void)
3031 {
3032         struct file_lists *f = file_lists;
3033
3034         DEBUG(6, ("lp_file_list_changed()\n"));
3035
3036         while (f) {
3037                 pstring n2;
3038                 time_t mod_time;
3039
3040                 pstrcpy(n2, f->name);
3041                 standard_sub_basic( get_current_username(),
3042                                     current_user_info.domain,
3043                                     n2, sizeof(n2) );
3044
3045                 DEBUGADD(6, ("file %s -> %s  last mod_time: %s\n",
3046                              f->name, n2, ctime(&f->modtime)));
3047
3048                 mod_time = file_modtime(n2);
3049
3050                 if (mod_time && ((f->modtime != mod_time) || (f->subfname == NULL) || (strcmp(n2, f->subfname) != 0))) {
3051                         DEBUGADD(6,
3052                                  ("file %s modified: %s\n", n2,
3053                                   ctime(&mod_time)));
3054                         f->modtime = mod_time;
3055                         SAFE_FREE(f->subfname);
3056                         f->subfname = SMB_STRDUP(n2);
3057                         return (True);
3058                 }
3059                 f = f->next;
3060         }
3061         return (False);
3062 }
3063
3064 /***************************************************************************
3065  Run standard_sub_basic on netbios name... needed because global_myname
3066  is not accessed through any lp_ macro.
3067  Note: We must *NOT* use string_set() here as ptr points to global_myname.
3068 ***************************************************************************/
3069
3070 static BOOL handle_netbios_name(int snum, const char *pszParmValue, char **ptr)
3071 {
3072         BOOL ret;
3073         pstring netbios_name;
3074
3075         pstrcpy(netbios_name, pszParmValue);
3076
3077         standard_sub_basic(get_current_username(), current_user_info.domain,
3078                            netbios_name, sizeof(netbios_name));
3079
3080         ret = set_global_myname(netbios_name);
3081         string_set(&Globals.szNetbiosName,global_myname());
3082         
3083         DEBUG(4, ("handle_netbios_name: set global_myname to: %s\n",
3084                global_myname()));
3085
3086         return ret;
3087 }
3088
3089 static BOOL handle_charset(int snum, const char *pszParmValue, char **ptr)
3090 {
3091         if (strcmp(*ptr, pszParmValue) != 0) {
3092                 string_set(ptr, pszParmValue);
3093                 init_iconv();
3094         }
3095         return True;
3096 }
3097
3098
3099
3100 static BOOL handle_workgroup(int snum, const char *pszParmValue, char **ptr)
3101 {
3102         BOOL ret;
3103         
3104         ret = set_global_myworkgroup(pszParmValue);
3105         string_set(&Globals.szWorkgroup,lp_workgroup());
3106         
3107         return ret;
3108 }
3109
3110 static BOOL handle_netbios_scope(int snum, const char *pszParmValue, char **ptr)
3111 {
3112         BOOL ret;
3113         
3114         ret = set_global_scope(pszParmValue);
3115         string_set(&Globals.szNetbiosScope,global_scope());
3116
3117         return ret;
3118 }
3119
3120 static BOOL handle_netbios_aliases(int snum, const char *pszParmValue, char **ptr)
3121 {
3122         str_list_free(&Globals.szNetbiosAliases);
3123         Globals.szNetbiosAliases = str_list_make(pszParmValue, NULL);
3124         return set_netbios_aliases((const char **)Globals.szNetbiosAliases);
3125 }
3126
3127 /***************************************************************************
3128  Handle the include operation.
3129 ***************************************************************************/
3130
3131 static BOOL handle_include(int snum, const char *pszParmValue, char **ptr)
3132 {
3133         pstring fname;
3134         pstrcpy(fname, pszParmValue);
3135
3136         standard_sub_basic(get_current_username(), current_user_info.domain,
3137                            fname,sizeof(fname));
3138
3139         add_to_file_list(pszParmValue, fname);
3140
3141         string_set(ptr, fname);
3142
3143         if (file_exist(fname, NULL))
3144                 return (pm_process(fname, do_section, do_parameter));
3145
3146         DEBUG(2, ("Can't find include file %s\n", fname));
3147
3148         return (False);
3149 }
3150
3151 /***************************************************************************
3152  Handle the interpretation of the copy parameter.
3153 ***************************************************************************/
3154
3155 static BOOL handle_copy(int snum, const char *pszParmValue, char **ptr)
3156 {
3157         BOOL bRetval;
3158         int iTemp;
3159         service serviceTemp;
3160
3161         string_set(ptr, pszParmValue);
3162
3163         init_service(&serviceTemp);
3164
3165         bRetval = False;
3166
3167         DEBUG(3, ("Copying service from service %s\n", pszParmValue));
3168
3169         if ((iTemp = getservicebyname(pszParmValue, &serviceTemp)) >= 0) {
3170                 if (iTemp == iServiceIndex) {
3171                         DEBUG(0, ("Can't copy service %s - unable to copy self!\n", pszParmValue));
3172                 } else {
3173                         copy_service(ServicePtrs[iServiceIndex],
3174                                      &serviceTemp,
3175                                      ServicePtrs[iServiceIndex]->copymap);
3176                         bRetval = True;
3177                 }
3178         } else {
3179                 DEBUG(0, ("Unable to copy service - source not found: %s\n", pszParmValue));
3180                 bRetval = False;
3181         }
3182
3183         free_service(&serviceTemp);
3184         return (bRetval);
3185 }
3186
3187 /***************************************************************************
3188  Handle idmap/non unix account uid and gid allocation parameters.  The format of these
3189  parameters is:
3190
3191  [global]
3192
3193         idmap uid = 1000-1999
3194         idmap gid = 700-899
3195
3196  We only do simple parsing checks here.  The strings are parsed into useful
3197  structures in the idmap daemon code.
3198
3199 ***************************************************************************/
3200
3201 /* Some lp_ routines to return idmap [ug]id information */
3202
3203 static uid_t idmap_uid_low, idmap_uid_high;
3204 static gid_t idmap_gid_low, idmap_gid_high;
3205
3206 BOOL lp_idmap_uid(uid_t *low, uid_t *high)
3207 {
3208         if (idmap_uid_low == 0 || idmap_uid_high == 0)
3209                 return False;
3210
3211         if (low)
3212                 *low = idmap_uid_low;
3213
3214         if (high)
3215                 *high = idmap_uid_high;
3216
3217         return True;
3218 }
3219
3220 BOOL lp_idmap_gid(gid_t *low, gid_t *high)
3221 {
3222         if (idmap_gid_low == 0 || idmap_gid_high == 0)
3223                 return False;
3224
3225         if (low)
3226                 *low = idmap_gid_low;
3227
3228         if (high)
3229                 *high = idmap_gid_high;
3230
3231         return True;
3232 }
3233
3234 /* Do some simple checks on "idmap [ug]id" parameter values */
3235
3236 static BOOL handle_idmap_uid(int snum, const char *pszParmValue, char **ptr)
3237 {
3238         uint32 low, high;
3239
3240         if (sscanf(pszParmValue, "%u - %u", &low, &high) != 2 || high < low)
3241                 return False;
3242
3243         /* Parse OK */
3244
3245         string_set(ptr, pszParmValue);
3246
3247         idmap_uid_low = low;
3248         idmap_uid_high = high;
3249
3250         return True;
3251 }
3252
3253 static BOOL handle_idmap_gid(int snum, const char *pszParmValue, char **ptr)
3254 {
3255         uint32 low, high;
3256
3257         if (sscanf(pszParmValue, "%u - %u", &low, &high) != 2 || high < low)
3258                 return False;
3259
3260         /* Parse OK */
3261
3262         string_set(ptr, pszParmValue);
3263
3264         idmap_gid_low = low;
3265         idmap_gid_high = high;
3266
3267         return True;
3268 }
3269
3270 /***************************************************************************
3271  Handle the DEBUG level list.
3272 ***************************************************************************/
3273
3274 static BOOL handle_debug_list( int snum, const char *pszParmValueIn, char **ptr )
3275 {
3276         pstring pszParmValue;
3277
3278         pstrcpy(pszParmValue, pszParmValueIn);
3279         string_set(ptr, pszParmValueIn);
3280         return debug_parse_levels( pszParmValue );
3281 }
3282
3283 /***************************************************************************
3284  Handle ldap suffixes - default to ldapsuffix if sub-suffixes are not defined.
3285 ***************************************************************************/
3286
3287 static const char *append_ldap_suffix( const char *str )
3288 {
3289         const char *suffix_string;
3290
3291
3292         if (!lp_talloc)
3293                 lp_talloc = talloc_init("lp_talloc");
3294
3295         suffix_string = talloc_asprintf( lp_talloc, "%s,%s", str, Globals.szLdapSuffix );
3296         if ( !suffix_string ) {
3297                 DEBUG(0,("append_ldap_suffix: talloc_asprintf() failed!\n"));
3298                 return "";
3299         }
3300
3301         return suffix_string;
3302 }
3303
3304 const char *lp_ldap_machine_suffix(void)
3305 {
3306         if (Globals.szLdapMachineSuffix[0])
3307                 return append_ldap_suffix(Globals.szLdapMachineSuffix);
3308
3309         return lp_string(Globals.szLdapSuffix);
3310 }
3311
3312 const char *lp_ldap_user_suffix(void)
3313 {
3314         if (Globals.szLdapUserSuffix[0])
3315                 return append_ldap_suffix(Globals.szLdapUserSuffix);
3316
3317         return lp_string(Globals.szLdapSuffix);
3318 }
3319
3320 const char *lp_ldap_group_suffix(void)
3321 {
3322         if (Globals.szLdapGroupSuffix[0])
3323                 return append_ldap_suffix(Globals.szLdapGroupSuffix);
3324
3325         return lp_string(Globals.szLdapSuffix);
3326 }
3327
3328 const char *lp_ldap_idmap_suffix(void)
3329 {
3330         if (Globals.szLdapIdmapSuffix[0])
3331                 return append_ldap_suffix(Globals.szLdapIdmapSuffix);
3332
3333         return lp_string(Globals.szLdapSuffix);
3334 }
3335
3336 /****************************************************************************
3337  set the value for a P_ENUM
3338  ***************************************************************************/
3339
3340 static void lp_set_enum_parm( struct parm_struct *parm, const char *pszParmValue,
3341                               int *ptr )
3342 {
3343         int i;
3344
3345         for (i = 0; parm->enum_list[i].name; i++) {
3346                 if ( strequal(pszParmValue, parm->enum_list[i].name)) {
3347                         *ptr = parm->enum_list[i].value;
3348                         break;
3349                 }
3350         }
3351 }
3352
3353 /***************************************************************************
3354 ***************************************************************************/
3355
3356 static BOOL handle_printing(int snum, const char *pszParmValue, char **ptr)
3357 {
3358         static int parm_num = -1;
3359         service *s;
3360
3361         if ( parm_num == -1 )
3362                 parm_num = map_parameter( "printing" );
3363
3364         lp_set_enum_parm( &parm_table[parm_num], pszParmValue, (int*)ptr );
3365
3366         if ( snum < 0 )
3367                 s = &sDefault;
3368         else
3369                 s = ServicePtrs[snum];
3370
3371         init_printer_values( s );
3372
3373         return True;
3374 }
3375
3376
3377 /***************************************************************************
3378  Initialise a copymap.
3379 ***************************************************************************/
3380
3381 static void init_copymap(service * pservice)
3382 {
3383         int i;
3384         SAFE_FREE(pservice->copymap);
3385         pservice->copymap = SMB_MALLOC_ARRAY(BOOL,NUMPARAMETERS);
3386         if (!pservice->copymap)
3387                 DEBUG(0,
3388                       ("Couldn't allocate copymap!! (size %d)\n",
3389                        (int)NUMPARAMETERS));
3390         else
3391                 for (i = 0; i < NUMPARAMETERS; i++)
3392                         pservice->copymap[i] = True;
3393 }
3394
3395 /***************************************************************************
3396  Return the local pointer to a parameter given the service number and the 
3397  pointer into the default structure.
3398 ***************************************************************************/
3399
3400 void *lp_local_ptr(int snum, void *ptr)
3401 {
3402         return (void *)(((char *)ServicePtrs[snum]) + PTR_DIFF(ptr, &sDefault));
3403 }
3404
3405 /***************************************************************************
3406  Process a parameter for a particular service number. If snum < 0
3407  then assume we are in the globals.
3408 ***************************************************************************/
3409
3410 BOOL lp_do_parameter(int snum, const char *pszParmName, const char *pszParmValue)
3411 {
3412         int parmnum, i, slen;
3413         void *parm_ptr = NULL;  /* where we are going to store the result */
3414         void *def_ptr = NULL;
3415         pstring param_key;
3416         char *sep;
3417         param_opt_struct *paramo, *data;
3418         BOOL not_added;
3419
3420         parmnum = map_parameter(pszParmName);
3421
3422         if (parmnum < 0) {
3423                 if ((sep=strchr(pszParmName, ':')) != NULL) {
3424                         *sep = '\0';
3425                         ZERO_STRUCT(param_key);
3426                         pstr_sprintf(param_key, "%s:", pszParmName);
3427                         slen = strlen(param_key);
3428                         pstrcat(param_key, sep+1);
3429                         trim_char(param_key+slen, ' ', ' ');
3430                         not_added = True;
3431                         data = (snum < 0) ? Globals.param_opt : 
3432                                 ServicePtrs[snum]->param_opt;
3433                         /* Traverse destination */
3434                         while (data) {
3435                                 /* If we already have same option, override it */
3436                                 if (strcmp(data->key, param_key) == 0) {
3437                                         string_free(&data->value);
3438                                         str_list_free(&data->list);
3439                                         data->value = SMB_STRDUP(pszParmValue);
3440                                         not_added = False;
3441                                         break;
3442                                 }
3443                                 data = data->next;
3444                         }
3445                         if (not_added) {
3446                                 paramo = SMB_XMALLOC_P(param_opt_struct);
3447                                 paramo->key = SMB_STRDUP(param_key);
3448                                 paramo->value = SMB_STRDUP(pszParmValue);
3449                                 paramo->list = NULL;
3450                                 if (snum < 0) {
3451                                         DLIST_ADD(Globals.param_opt, paramo);
3452                                 } else {
3453                                         DLIST_ADD(ServicePtrs[snum]->param_opt, paramo);
3454                                 }
3455                         }
3456
3457                         *sep = ':';
3458                         return (True);
3459                 }
3460                 DEBUG(0, ("Ignoring unknown parameter \"%s\"\n", pszParmName));
3461                 return (True);
3462         }
3463
3464         if (parm_table[parmnum].flags & FLAG_DEPRECATED) {
3465                 DEBUG(1, ("WARNING: The \"%s\" option is deprecated\n",
3466                           pszParmName));
3467         }
3468
3469         def_ptr = parm_table[parmnum].ptr;
3470
3471         /* we might point at a service, the default service or a global */
3472         if (snum < 0) {
3473                 parm_ptr = def_ptr;
3474         } else {
3475                 if (parm_table[parmnum].p_class == P_GLOBAL) {
3476                         DEBUG(0,
3477                               ("Global parameter %s found in service section!\n",
3478                                pszParmName));
3479                         return (True);
3480                 }
3481                 parm_ptr =
3482                         ((char *)ServicePtrs[snum]) + PTR_DIFF(def_ptr,
3483                                                             &sDefault);
3484         }
3485
3486         if (snum >= 0) {
3487                 if (!ServicePtrs[snum]->copymap)
3488                         init_copymap(ServicePtrs[snum]);
3489
3490                 /* this handles the aliases - set the copymap for other entries with
3491                    the same data pointer */
3492                 for (i = 0; parm_table[i].label; i++)
3493                         if (parm_table[i].ptr == parm_table[parmnum].ptr)
3494                                 ServicePtrs[snum]->copymap[i] = False;
3495         }
3496
3497         /* if it is a special case then go ahead */
3498         if (parm_table[parmnum].special) {
3499                 parm_table[parmnum].special(snum, pszParmValue, (char **)parm_ptr);
3500                 return (True);
3501         }
3502
3503         /* now switch on the type of variable it is */
3504         switch (parm_table[parmnum].type)
3505         {
3506                 case P_BOOL:
3507                         *(BOOL *)parm_ptr = lp_bool(pszParmValue);
3508                         break;
3509
3510                 case P_BOOLREV:
3511                         *(BOOL *)parm_ptr = !lp_bool(pszParmValue);
3512                         break;
3513
3514                 case P_INTEGER:
3515                         *(int *)parm_ptr = lp_int(pszParmValue);
3516                         break;
3517
3518                 case P_CHAR:
3519                         *(char *)parm_ptr = *pszParmValue;
3520                         break;
3521
3522                 case P_OCTAL:
3523                         i = sscanf(pszParmValue, "%o", (int *)parm_ptr);
3524                         if ( i != 1 ) {
3525                             DEBUG ( 0, ("Invalid octal number %s\n", pszParmName ));
3526                         }
3527                         break;
3528
3529                 case P_LIST:
3530                         str_list_free((char ***)parm_ptr);
3531                         *(char ***)parm_ptr = str_list_make(pszParmValue, NULL);
3532                         break;
3533
3534                 case P_STRING:
3535                         string_set((char **)parm_ptr, pszParmValue);
3536                         break;
3537
3538                 case P_USTRING:
3539                         string_set((char **)parm_ptr, pszParmValue);
3540                         strupper_m(*(char **)parm_ptr);
3541                         break;
3542
3543                 case P_GSTRING:
3544                         pstrcpy((char *)parm_ptr, pszParmValue);
3545                         break;
3546
3547                 case P_UGSTRING:
3548                         pstrcpy((char *)parm_ptr, pszParmValue);
3549                         strupper_m((char *)parm_ptr);
3550                         break;
3551
3552                 case P_ENUM:
3553                         lp_set_enum_parm( &parm_table[parmnum], pszParmValue, (int*)parm_ptr );
3554                         break;
3555                 case P_SEP:
3556                         break;
3557         }
3558
3559         return (True);
3560 }
3561
3562 /***************************************************************************
3563  Process a parameter.
3564 ***************************************************************************/
3565
3566 static BOOL do_parameter(const char *pszParmName, const char *pszParmValue)
3567 {
3568         if (!bInGlobalSection && bGlobalOnly)
3569                 return (True);
3570
3571         DEBUGADD(4, ("doing parameter %s = %s\n", pszParmName, pszParmValue));
3572
3573         return (lp_do_parameter(bInGlobalSection ? -2 : iServiceIndex,
3574                                 pszParmName, pszParmValue));
3575 }
3576
3577 /***************************************************************************
3578  Print a parameter of the specified type.
3579 ***************************************************************************/
3580
3581 static void print_parameter(struct parm_struct *p, void *ptr, FILE * f)
3582 {
3583         int i;
3584         switch (p->type)
3585         {
3586                 case P_ENUM:
3587                         for (i = 0; p->enum_list[i].name; i++) {
3588                                 if (*(int *)ptr == p->enum_list[i].value) {
3589                                         fprintf(f, "%s",
3590                                                 p->enum_list[i].name);
3591                                         break;
3592                                 }
3593                         }
3594                         break;
3595
3596                 case P_BOOL:
3597                         fprintf(f, "%s", BOOLSTR(*(BOOL *)ptr));
3598                         break;
3599
3600                 case P_BOOLREV:
3601                         fprintf(f, "%s", BOOLSTR(!*(BOOL *)ptr));
3602                         break;
3603
3604                 case P_INTEGER:
3605                         fprintf(f, "%d", *(int *)ptr);
3606                         break;
3607
3608                 case P_CHAR:
3609                         fprintf(f, "%c", *(char *)ptr);
3610                         break;
3611
3612                 case P_OCTAL:
3613                         fprintf(f, "%s", octal_string(*(int *)ptr));
3614                         break;
3615
3616                 case P_LIST:
3617                         if ((char ***)ptr && *(char ***)ptr) {
3618                                 char **list = *(char ***)ptr;
3619                                 
3620                                 for (; *list; list++) {
3621                                         /* surround strings with whitespace in double quotes */
3622                                         if ( strchr_m( *list, ' ' ) )
3623                                                 fprintf(f, "\"%s\"%s", *list, ((*(list+1))?", ":""));
3624                                         else
3625                                                 fprintf(f, "%s%s", *list, ((*(list+1))?", ":""));
3626                                 }
3627                         }
3628                         break;
3629
3630                 case P_GSTRING:
3631                 case P_UGSTRING:
3632                         if ((char *)ptr) {
3633                                 fprintf(f, "%s", (char *)ptr);
3634                         }
3635                         break;
3636
3637                 case P_STRING:
3638                 case P_USTRING:
3639                         if (*(char **)ptr) {
3640                                 fprintf(f, "%s", *(char **)ptr);
3641                         }
3642                         break;
3643                 case P_SEP:
3644                         break;
3645         }
3646 }
3647
3648 /***************************************************************************
3649  Check if two parameters are equal.
3650 ***************************************************************************/
3651
3652 static BOOL equal_parameter(parm_type type, void *ptr1, void *ptr2)
3653 {
3654         switch (type) {
3655                 case P_BOOL:
3656                 case P_BOOLREV:
3657                         return (*((BOOL *)ptr1) == *((BOOL *)ptr2));
3658
3659                 case P_INTEGER:
3660                 case P_ENUM:
3661                 case P_OCTAL:
3662                         return (*((int *)ptr1) == *((int *)ptr2));
3663
3664                 case P_CHAR:
3665                         return (*((char *)ptr1) == *((char *)ptr2));
3666                 
3667                 case P_LIST:
3668                         return str_list_compare(*(char ***)ptr1, *(char ***)ptr2);
3669
3670                 case P_GSTRING:
3671                 case P_UGSTRING:
3672                 {
3673                         char *p1 = (char *)ptr1, *p2 = (char *)ptr2;
3674                         if (p1 && !*p1)
3675                                 p1 = NULL;
3676                         if (p2 && !*p2)
3677                                 p2 = NULL;
3678                         return (p1 == p2 || strequal(p1, p2));
3679                 }
3680                 case P_STRING:
3681                 case P_USTRING:
3682                 {
3683                         char *p1 = *(char **)ptr1, *p2 = *(char **)ptr2;
3684                         if (p1 && !*p1)
3685                                 p1 = NULL;
3686                         if (p2 && !*p2)
3687                                 p2 = NULL;
3688                         return (p1 == p2 || strequal(p1, p2));
3689                 }
3690                 case P_SEP:
3691                         break;
3692         }
3693         return (False);
3694 }
3695
3696 /***************************************************************************
3697  Initialize any local varients in the sDefault table.
3698 ***************************************************************************/
3699
3700 void init_locals(void)
3701 {
3702         /* None as yet. */
3703 }
3704
3705 /***************************************************************************
3706  Process a new section (service). At this stage all sections are services.
3707  Later we'll have special sections that permit server parameters to be set.
3708  Returns True on success, False on failure. 
3709 ***************************************************************************/
3710
3711 static BOOL do_section(const char *pszSectionName)
3712 {
3713         BOOL bRetval;
3714         BOOL isglobal = ((strwicmp(pszSectionName, GLOBAL_NAME) == 0) ||
3715                          (strwicmp(pszSectionName, GLOBAL_NAME2) == 0));
3716         bRetval = False;
3717
3718         /* if we were in a global section then do the local inits */
3719         if (bInGlobalSection && !isglobal)
3720                 init_locals();
3721
3722         /* if we've just struck a global section, note the fact. */
3723         bInGlobalSection = isglobal;
3724
3725         /* check for multiple global sections */
3726         if (bInGlobalSection) {
3727                 DEBUG(3, ("Processing section \"[%s]\"\n", pszSectionName));
3728                 return (True);
3729         }
3730
3731         if (!bInGlobalSection && bGlobalOnly)
3732                 return (True);
3733
3734         /* if we have a current service, tidy it up before moving on */
3735         bRetval = True;
3736
3737         if (iServiceIndex >= 0)
3738                 bRetval = service_ok(iServiceIndex);
3739
3740         /* if all is still well, move to the next record in the services array */
3741         if (bRetval) {
3742                 /* We put this here to avoid an odd message order if messages are */
3743                 /* issued by the post-processing of a previous section. */
3744                 DEBUG(2, ("Processing section \"[%s]\"\n", pszSectionName));
3745
3746                 if ((iServiceIndex = add_a_service(&sDefault, pszSectionName))
3747                     < 0) {
3748                         DEBUG(0, ("Failed to add a new service\n"));
3749                         return (False);
3750                 }
3751         }
3752
3753         return (bRetval);
3754 }
3755
3756
3757 /***************************************************************************
3758  Determine if a partcular base parameter is currentl set to the default value.
3759 ***************************************************************************/
3760
3761 static BOOL is_default(int i)
3762 {
3763         if (!defaults_saved)
3764                 return False;
3765         switch (parm_table[i].type) {
3766                 case P_LIST:
3767                         return str_list_compare (parm_table[i].def.lvalue, 
3768                                                 *(char ***)parm_table[i].ptr);
3769                 case P_STRING:
3770                 case P_USTRING:
3771                         return strequal(parm_table[i].def.svalue,
3772                                         *(char **)parm_table[i].ptr);
3773                 case P_GSTRING:
3774                 case P_UGSTRING:
3775                         return strequal(parm_table[i].def.svalue,
3776                                         (char *)parm_table[i].ptr);
3777                 case P_BOOL:
3778                 case P_BOOLREV:
3779                         return parm_table[i].def.bvalue ==
3780                                 *(BOOL *)parm_table[i].ptr;
3781                 case P_CHAR:
3782                         return parm_table[i].def.cvalue ==
3783                                 *(char *)parm_table[i].ptr;
3784                 case P_INTEGER:
3785                 case P_OCTAL:
3786                 case P_ENUM:
3787                         return parm_table[i].def.ivalue ==
3788                                 *(int *)parm_table[i].ptr;
3789                 case P_SEP:
3790                         break;
3791         }
3792         return False;
3793 }
3794
3795 /***************************************************************************
3796 Display the contents of the global structure.
3797 ***************************************************************************/
3798
3799 static void dump_globals(FILE *f)
3800 {
3801         int i;
3802         param_opt_struct *data;
3803         
3804         fprintf(f, "[global]\n");
3805
3806         for (i = 0; parm_table[i].label; i++)
3807                 if (parm_table[i].p_class == P_GLOBAL &&
3808                     parm_table[i].ptr &&
3809                     (i == 0 || (parm_table[i].ptr != parm_table[i - 1].ptr))) {
3810                         if (defaults_saved && is_default(i))
3811                                 continue;
3812                         fprintf(f, "\t%s = ", parm_table[i].label);
3813                         print_parameter(&parm_table[i], parm_table[i].ptr, f);
3814                         fprintf(f, "\n");
3815         }
3816         if (Globals.param_opt != NULL) {
3817                 data = Globals.param_opt;
3818                 while(data) {
3819                         fprintf(f, "\t%s = %s\n", data->key, data->value);
3820                         data = data->next;
3821                 }
3822         }
3823
3824 }
3825
3826 /***************************************************************************
3827  Return True if a local parameter is currently set to the global default.
3828 ***************************************************************************/
3829
3830 BOOL lp_is_default(int snum, struct parm_struct *parm)
3831 {
3832         int pdiff = PTR_DIFF(parm->ptr, &sDefault);
3833
3834         return equal_parameter(parm->type,
3835                                ((char *)ServicePtrs[snum]) + pdiff,
3836                                ((char *)&sDefault) + pdiff);
3837 }
3838
3839 /***************************************************************************
3840  Display the contents of a single services record.
3841 ***************************************************************************/
3842
3843 static void dump_a_service(service * pService, FILE * f)
3844 {
3845         int i;
3846         param_opt_struct *data;
3847         
3848         if (pService != &sDefault)
3849                 fprintf(f, "[%s]\n", pService->szService);
3850
3851         for (i = 0; parm_table[i].label; i++) {
3852
3853                 if (parm_table[i].p_class == P_LOCAL &&
3854                     parm_table[i].ptr &&
3855                     (*parm_table[i].label != '-') &&
3856                     (i == 0 || (parm_table[i].ptr != parm_table[i - 1].ptr))) 
3857                 {
3858                 
3859                         int pdiff = PTR_DIFF(parm_table[i].ptr, &sDefault);
3860
3861                         if (pService == &sDefault) {
3862                                 if (defaults_saved && is_default(i))
3863                                         continue;
3864                         } else {
3865                                 if (equal_parameter(parm_table[i].type,
3866                                                     ((char *)pService) +
3867                                                     pdiff,
3868                                                     ((char *)&sDefault) +
3869                                                     pdiff))
3870                                         continue;
3871                         }
3872
3873                         fprintf(f, "\t%s = ", parm_table[i].label);
3874                         print_parameter(&parm_table[i],
3875                                         ((char *)pService) + pdiff, f);
3876                         fprintf(f, "\n");
3877                 }
3878         }
3879
3880                 if (pService->param_opt != NULL) {
3881                         data = pService->param_opt;
3882                         while(data) {
3883                                 fprintf(f, "\t%s = %s\n", data->key, data->value);
3884                                 data = data->next;
3885                         }
3886                 }
3887 }
3888
3889 /***************************************************************************
3890  Display the contents of a parameter of a single services record.
3891 ***************************************************************************/
3892
3893 BOOL dump_a_parameter(int snum, char *parm_name, FILE * f, BOOL isGlobal)
3894 {
3895         int i;
3896         BOOL result = False;
3897         parm_class p_class;
3898         unsigned flag = 0;
3899         fstring local_parm_name;
3900         char *parm_opt;
3901         const char *parm_opt_value;
3902
3903         /* check for parametrical option */
3904         fstrcpy( local_parm_name, parm_name);
3905         parm_opt = strchr( local_parm_name, ':');
3906
3907         if (parm_opt) {
3908                 *parm_opt = '\0';
3909                 parm_opt++;
3910                 if (strlen(parm_opt)) {
3911                         parm_opt_value = lp_parm_const_string( snum,
3912                                 local_parm_name, parm_opt, NULL);
3913                         if (parm_opt_value) {
3914                                 printf( "%s\n", parm_opt_value);
3915                                 result = True;
3916                         }
3917                 }
3918                 return result;
3919         }
3920
3921         /* check for a key and print the value */
3922         if (isGlobal) {
3923                 p_class = P_GLOBAL;
3924                 flag = FLAG_GLOBAL;
3925         } else
3926                 p_class = P_LOCAL;
3927
3928         for (i = 0; parm_table[i].label; i++) {
3929                 if (strwicmp(parm_table[i].label, parm_name) == 0 &&
3930                     (parm_table[i].p_class == p_class || parm_table[i].flags & flag) &&
3931                     parm_table[i].ptr &&
3932                     (*parm_table[i].label != '-') &&
3933                     (i == 0 || (parm_table[i].ptr != parm_table[i - 1].ptr))) 
3934                 {
3935                         void *ptr;
3936
3937                         if (isGlobal) {
3938                                 ptr = parm_table[i].ptr;
3939                         } else {
3940                                 service * pService = ServicePtrs[snum];
3941                                 ptr = ((char *)pService) +
3942                                         PTR_DIFF(parm_table[i].ptr, &sDefault);
3943                         }
3944
3945                         print_parameter(&parm_table[i],
3946                                         ptr, f);
3947                         fprintf(f, "\n");
3948                         result = True;
3949                         break;
3950                 }
3951         }
3952
3953         return result;
3954 }
3955
3956 /***************************************************************************
3957  Return info about the next service  in a service. snum==GLOBAL_SECTION_SNUM gives the globals.
3958  Return NULL when out of parameters.
3959 ***************************************************************************/
3960
3961 struct parm_struct *lp_next_parameter(int snum, int *i, int allparameters)
3962 {
3963         if (snum < 0) {
3964                 /* do the globals */
3965                 for (; parm_table[*i].label; (*i)++) {
3966                         if (parm_table[*i].p_class == P_SEPARATOR)
3967                                 return &parm_table[(*i)++];
3968
3969                         if (!parm_table[*i].ptr
3970                             || (*parm_table[*i].label == '-'))
3971                                 continue;
3972
3973                         if ((*i) > 0
3974                             && (parm_table[*i].ptr ==
3975                                 parm_table[(*i) - 1].ptr))
3976                                 continue;
3977
3978                         return &parm_table[(*i)++];
3979                 }
3980         } else {
3981                 service *pService = ServicePtrs[snum];
3982
3983                 for (; parm_table[*i].label; (*i)++) {
3984                         if (parm_table[*i].p_class == P_SEPARATOR)
3985                                 return &parm_table[(*i)++];
3986
3987                         if (parm_table[*i].p_class == P_LOCAL &&
3988                             parm_table[*i].ptr &&
3989                             (*parm_table[*i].label != '-') &&
3990                             ((*i) == 0 ||
3991                              (parm_table[*i].ptr !=
3992                               parm_table[(*i) - 1].ptr)))
3993                         {
3994                                 int pdiff =
3995                                         PTR_DIFF(parm_table[*i].ptr,
3996                                                  &sDefault);
3997
3998                                 if (allparameters ||
3999                                     !equal_parameter(parm_table[*i].type,
4000                                                      ((char *)pService) +
4001                                                      pdiff,
4002                                                      ((char *)&sDefault) +
4003                                                      pdiff))
4004                                 {
4005                                         return &parm_table[(*i)++];
4006                                 }
4007                         }
4008                 }
4009         }
4010
4011         return NULL;
4012 }
4013
4014
4015 #if 0
4016 /***************************************************************************
4017  Display the contents of a single copy structure.
4018 ***************************************************************************/
4019 static void dump_copy_map(BOOL *pcopymap)
4020 {
4021         int i;
4022         if (!pcopymap)
4023                 return;
4024
4025         printf("\n\tNon-Copied parameters:\n");
4026
4027         for (i = 0; parm_table[i].label; i++)
4028                 if (parm_table[i].p_class == P_LOCAL &&
4029                     parm_table[i].ptr && !pcopymap[i] &&
4030                     (i == 0 || (parm_table[i].ptr != parm_table[i - 1].ptr)))
4031                 {
4032                         printf("\t\t%s\n", parm_table[i].label);
4033                 }
4034 }
4035 #endif
4036
4037 /***************************************************************************
4038  Return TRUE if the passed service number is within range.
4039 ***************************************************************************/
4040
4041 BOOL lp_snum_ok(int iService)
4042 {
4043         return (LP_SNUM_OK(iService) && ServicePtrs[iService]->bAvailable);
4044 }
4045
4046 /***************************************************************************
4047  Auto-load some home services.
4048 ***************************************************************************/
4049
4050 static void lp_add_auto_services(char *str)
4051 {
4052         char *s;
4053         char *p;
4054         int homes;
4055
4056         if (!str)
4057                 return;
4058
4059         s = SMB_STRDUP(str);
4060         if (!s)
4061                 return;
4062
4063         homes = lp_servicenumber(HOMES_NAME);
4064
4065         for (p = strtok(s, LIST_SEP); p; p = strtok(NULL, LIST_SEP)) {
4066                 char *home = get_user_home_dir(p);
4067
4068                 if (lp_servicenumber(p) >= 0)
4069                         continue;
4070
4071                 if (home && homes >= 0)
4072                         lp_add_home(p, homes, p, home);
4073         }
4074         SAFE_FREE(s);
4075 }
4076
4077 /***************************************************************************
4078  Auto-load one printer.
4079 ***************************************************************************/
4080
4081 void lp_add_one_printer(char *name, char *comment)
4082 {
4083         int printers = lp_servicenumber(PRINTERS_NAME);
4084         int i;
4085
4086         if (lp_servicenumber(name) < 0) {
4087                 lp_add_printer(name, printers);
4088                 if ((i = lp_servicenumber(name)) >= 0) {
4089                         string_set(&ServicePtrs[i]->comment, comment);
4090                         ServicePtrs[i]->autoloaded = True;
4091                 }
4092         }
4093 }
4094
4095 /***************************************************************************
4096  Have we loaded a services file yet?
4097 ***************************************************************************/
4098
4099 BOOL lp_loaded(void)
4100 {
4101         return (bLoaded);
4102 }
4103
4104 /***************************************************************************
4105  Unload unused services.
4106 ***************************************************************************/
4107
4108 void lp_killunused(BOOL (*snumused) (int))
4109 {
4110         int i;
4111         for (i = 0; i < iNumServices; i++) {
4112                 if (!VALID(i))
4113                         continue;
4114
4115                 /* don't kill autoloaded or usershare services */
4116                 if ( ServicePtrs[i]->autoloaded ||
4117                                 ServicePtrs[i]->usershare == USERSHARE_VALID) {
4118                         continue;
4119                 }
4120
4121                 if (!snumused || !snumused(i)) {
4122                         free_service_byindex(i);
4123                 }
4124         }
4125 }
4126
4127 /***************************************************************************
4128  Unload a service.
4129 ***************************************************************************/
4130
4131 void lp_killservice(int iServiceIn)
4132 {
4133         if (VALID(iServiceIn)) {
4134                 free_service_byindex(iServiceIn);
4135         }
4136 }
4137
4138 /***************************************************************************
4139  Save the curent values of all global and sDefault parameters into the 
4140  defaults union. This allows swat and testparm to show only the
4141  changed (ie. non-default) parameters.
4142 ***************************************************************************/
4143
4144 static void lp_save_defaults(void)
4145 {
4146         int i;
4147         for (i = 0; parm_table[i].label; i++) {
4148                 if (i > 0 && parm_table[i].ptr == parm_table[i - 1].ptr)
4149                         continue;
4150                 switch (parm_table[i].type) {
4151                         case P_LIST:
4152                                 str_list_copy(&(parm_table[i].def.lvalue),
4153                                             *(const char ***)parm_table[i].ptr);
4154                                 break;
4155                         case P_STRING:
4156                         case P_USTRING:
4157                                 if (parm_table[i].ptr) {
4158                                         parm_table[i].def.svalue = SMB_STRDUP(*(char **)parm_table[i].ptr);
4159                                 } else {
4160                                         parm_table[i].def.svalue = NULL;
4161                                 }
4162                                 break;
4163                         case P_GSTRING:
4164                         case P_UGSTRING:
4165                                 if (parm_table[i].ptr) {
4166                                         parm_table[i].def.svalue = SMB_STRDUP((char *)parm_table[i].ptr);
4167                                 } else {
4168                                         parm_table[i].def.svalue = NULL;
4169                                 }
4170                                 break;
4171                         case P_BOOL:
4172                         case P_BOOLREV:
4173                                 parm_table[i].def.bvalue =
4174                                         *(BOOL *)parm_table[i].ptr;
4175                                 break;
4176                         case P_CHAR:
4177                                 parm_table[i].def.cvalue =
4178                                         *(char *)parm_table[i].ptr;
4179                                 break;
4180                         case P_INTEGER:
4181                         case P_OCTAL:
4182                         case P_ENUM:
4183                                 parm_table[i].def.ivalue =
4184                                         *(int *)parm_table[i].ptr;
4185                                 break;
4186                         case P_SEP:
4187                                 break;
4188                 }
4189         }
4190         defaults_saved = True;
4191 }
4192
4193 /*******************************************************************
4194  Set the server type we will announce as via nmbd.
4195 ********************************************************************/
4196
4197 static const struct srv_role_tab {
4198         uint32 role;
4199         const char *role_str;
4200 } srv_role_tab [] = {
4201         { ROLE_STANDALONE, "ROLE_STANDALONE" },
4202         { ROLE_DOMAIN_MEMBER, "ROLE_DOMAIN_MEMBER" },
4203         { ROLE_DOMAIN_BDC, "ROLE_DOMAIN_BDC" },
4204         { ROLE_DOMAIN_PDC, "ROLE_DOMAIN_PDC" },
4205         { 0, NULL }
4206 };
4207
4208 const char* server_role_str(uint32 role)
4209 {
4210         int i = 0;
4211         for (i=0; srv_role_tab[i].role_str; i++) {
4212                 if (role == srv_role_tab[i].role) {
4213                         return srv_role_tab[i].role_str;
4214                 }
4215         }
4216         return NULL;
4217 }
4218
4219 static void set_server_role(void)
4220 {
4221         server_role = ROLE_STANDALONE;
4222
4223         switch (lp_security()) {
4224                 case SEC_SHARE:
4225                         if (lp_domain_logons())
4226                                 DEBUG(0, ("Server's Role (logon server) conflicts with share-level security\n"));
4227                         break;
4228                 case SEC_SERVER:
4229                         if (lp_domain_logons())
4230                                 DEBUG(0, ("Server's Role (logon server) conflicts with server-level security\n"));
4231                         /* this used to be considered ROLE_DOMAIN_MEMBER but that's just wrong */
4232                         server_role = ROLE_STANDALONE;
4233                         break;
4234                 case SEC_DOMAIN:
4235                         if (lp_domain_logons()) {
4236                                 DEBUG(1, ("Server's Role (logon server) NOT ADVISED with domain-level security\n"));
4237                                 server_role = ROLE_DOMAIN_BDC;
4238                                 break;
4239                         }
4240                         server_role = ROLE_DOMAIN_MEMBER;
4241                         break;
4242                 case SEC_ADS:
4243                         if (lp_domain_logons()) {
4244                                 server_role = ROLE_DOMAIN_PDC;
4245                                 break;
4246                         }
4247                         server_role = ROLE_DOMAIN_MEMBER;
4248                         break;
4249                 case SEC_USER:
4250                         if (lp_domain_logons()) {
4251
4252                                 if (Globals.bDomainMaster) /* auto or yes */ 
4253                                         server_role = ROLE_DOMAIN_PDC;
4254                                 else
4255                                         server_role = ROLE_DOMAIN_BDC;
4256                         }
4257                         break;
4258                 default:
4259                         DEBUG(0, ("Server's Role undefined due to unknown security mode\n"));
4260                         break;
4261         }
4262
4263         DEBUG(10, ("set_server_role: role = %s\n", server_role_str(server_role)));
4264 }
4265
4266 /***********************************************************
4267  If we should send plaintext/LANMAN passwords in the clinet
4268 ************************************************************/
4269
4270 static void set_allowed_client_auth(void)
4271 {
4272         if (Globals.bClientNTLMv2Auth) {
4273                 Globals.bClientLanManAuth = False;
4274         }
4275         if (!Globals.bClientLanManAuth) {
4276                 Globals.bClientPlaintextAuth = False;
4277         }
4278 }
4279
4280 /***************************************************************************
4281  JRA.
4282  The following code allows smbd to read a user defined share file.
4283  Yes, this is my intent. Yes, I'm comfortable with that...
4284
4285  THE FOLLOWING IS SECURITY CRITICAL CODE.
4286
4287  It washes your clothes, it cleans your house, it guards you while you sleep...
4288  Do not f%^k with it....
4289 ***************************************************************************/
4290
4291 #define MAX_USERSHARE_FILE_SIZE (10*1024)
4292
4293 /***************************************************************************
4294  Check allowed stat state of a usershare file.
4295  Ensure we print out who is dicking with us so the admin can
4296  get their sorry ass fired.
4297 ***************************************************************************/
4298
4299 static BOOL check_usershare_stat(const char *fname, SMB_STRUCT_STAT *psbuf)
4300 {
4301         if (!S_ISREG(psbuf->st_mode)) {
4302                 DEBUG(0,("check_usershare_stat: file %s owned by uid %u is "
4303                         "not a regular file\n",
4304                         fname, (unsigned int)psbuf->st_uid ));
4305                 return False;
4306         }
4307
4308         /* Ensure this doesn't have the other write bit set. */
4309         if (psbuf->st_mode & S_IWOTH) {
4310                 DEBUG(0,("check_usershare_stat: file %s owned by uid %u allows "
4311                         "public write. Refusing to allow as a usershare file.\n",
4312                         fname, (unsigned int)psbuf->st_uid ));
4313                 return False;
4314         }
4315
4316         /* Should be 10k or less. */
4317         if (psbuf->st_size > MAX_USERSHARE_FILE_SIZE) {
4318                 DEBUG(0,("check_usershare_stat: file %s owned by uid %u is "
4319                         "too large (%u) to be a user share file.\n",
4320                         fname, (unsigned int)psbuf->st_uid,
4321                         (unsigned int)psbuf->st_size ));
4322                 return False;
4323         }
4324
4325         return True;
4326 }
4327
4328 /***************************************************************************
4329  Parse the contents of a usershare file.
4330 ***************************************************************************/
4331
4332 enum usershare_err parse_usershare_file(TALLOC_CTX *ctx, 
4333                         SMB_STRUCT_STAT *psbuf,
4334                         const char *servicename,
4335                         int snum,
4336                         char **lines,
4337                         int numlines,
4338                         pstring sharepath,
4339                         pstring comment,
4340                         SEC_DESC **ppsd,
4341                         BOOL *pallow_guest)
4342 {
4343         const char **prefixallowlist = lp_usershare_prefix_allow_list();
4344         const char **prefixdenylist = lp_usershare_prefix_deny_list();
4345         int us_vers;
4346         SMB_STRUCT_DIR *dp;
4347         SMB_STRUCT_STAT sbuf;
4348
4349         *pallow_guest = False;
4350
4351         if (numlines < 4) {
4352                 return USERSHARE_MALFORMED_FILE;
4353         }
4354
4355         if (strcmp(lines[0], "#VERSION 1") == 0) {
4356                 us_vers = 1;
4357         } else if (strcmp(lines[0], "#VERSION 2") == 0) {
4358                 us_vers = 2;
4359                 if (numlines < 5) {
4360                         return USERSHARE_MALFORMED_FILE;
4361                 }
4362         } else {
4363                 return USERSHARE_BAD_VERSION;
4364         }
4365
4366         if (strncmp(lines[1], "path=", 5) != 0) {
4367                 return USERSHARE_MALFORMED_PATH;
4368         }
4369
4370         pstrcpy(sharepath, &lines[1][5]);
4371         trim_string(sharepath, " ", " ");
4372
4373         if (strncmp(lines[2], "comment=", 8) != 0) {
4374                 return USERSHARE_MALFORMED_COMMENT_DEF;
4375         }
4376
4377         pstrcpy(comment, &lines[2][8]);
4378         trim_string(comment, " ", " ");
4379         trim_char(comment, '"', '"');
4380
4381         if (strncmp(lines[3], "usershare_acl=", 14) != 0) {
4382                 return USERSHARE_MALFORMED_ACL_DEF;
4383         }
4384
4385         if (!parse_usershare_acl(ctx, &lines[3][14], ppsd)) {
4386                 return USERSHARE_ACL_ERR;
4387         }
4388
4389         if (us_vers == 2) {
4390                 if (strncmp(lines[4], "guest_ok=", 9) != 0) {
4391                         return USERSHARE_MALFORMED_ACL_DEF;
4392                 }
4393                 if (lines[4][9] == 'y') {
4394                         *pallow_guest = True;
4395                 }
4396         }
4397
4398         if (snum != -1 && (strcmp(sharepath, ServicePtrs[snum]->szPath) == 0)) {
4399                 /* Path didn't change, no checks needed. */
4400                 return USERSHARE_OK;
4401         }
4402
4403         /* The path *must* be absolute. */
4404         if (sharepath[0] != '/') {
4405                 DEBUG(2,("parse_usershare_file: share %s: path %s is not an absolute path.\n",
4406                         servicename, sharepath));
4407                 return USERSHARE_PATH_NOT_ABSOLUTE;
4408         }
4409
4410         /* If there is a usershare prefix deny list ensure one of these paths
4411            doesn't match the start of the user given path. */
4412         if (prefixdenylist) {
4413                 int i;
4414                 for ( i=0; prefixdenylist[i]; i++ ) {
4415                         DEBUG(10,("parse_usershare_file: share %s : checking prefixdenylist[%d]='%s' against %s\n",
4416                                 servicename, i, prefixdenylist[i], sharepath ));
4417                         if (memcmp( sharepath, prefixdenylist[i], strlen(prefixdenylist[i])) == 0) {
4418                                 DEBUG(2,("parse_usershare_file: share %s path %s starts with one of the "
4419                                         "usershare prefix deny list entries.\n",
4420                                         servicename, sharepath));
4421                                 return USERSHARE_PATH_IS_DENIED;
4422                         }
4423                 }
4424         }
4425
4426         /* If there is a usershare prefix allow list ensure one of these paths
4427            does match the start of the user given path. */
4428
4429         if (prefixallowlist) {
4430                 int i;
4431                 for ( i=0; prefixallowlist[i]; i++ ) {
4432                         DEBUG(10,("parse_usershare_file: share %s checking prefixallowlist[%d]='%s' against %s\n",
4433                                 servicename, i, prefixallowlist[i], sharepath ));
4434                         if (memcmp( sharepath, prefixallowlist[i], strlen(prefixallowlist[i])) == 0) {
4435                                 break;
4436                         }
4437                 }
4438                 if (prefixallowlist[i] == NULL) {
4439                         DEBUG(2,("parse_usershare_file: share %s path %s doesn't start with one of the "
4440                                 "usershare prefix allow list entries.\n",
4441                                 servicename, sharepath));
4442                         return USERSHARE_PATH_NOT_ALLOWED;
4443                 }
4444         }
4445
4446         /* Ensure this is pointing to a directory. */
4447         dp = sys_opendir(sharepath);
4448
4449         if (!dp) {
4450                 DEBUG(2,("parse_usershare_file: share %s path %s is not a directory.\n",
4451                         servicename, sharepath));
4452                 return USERSHARE_PATH_NOT_DIRECTORY;
4453         }
4454
4455         /* Ensure the owner of the usershare file has permission to share
4456            this directory. */
4457
4458         if (sys_stat(sharepath, &sbuf) == -1) {
4459                 DEBUG(2,("parse_usershare_file: share %s : stat failed on path %s. %s\n",
4460                         servicename, sharepath, strerror(errno) ));
4461                 sys_closedir(dp);
4462                 return USERSHARE_POSIX_ERR;
4463         }
4464
4465         sys_closedir(dp);
4466
4467         if (!S_ISDIR(sbuf.st_mode)) {
4468                 DEBUG(2,("parse_usershare_file: share %s path %s is not a directory.\n",
4469                         servicename, sharepath ));
4470                 return USERSHARE_PATH_NOT_DIRECTORY;
4471         }
4472
4473         /* Check if sharing is restricted to owner-only. */
4474         /* psbuf is the stat of the usershare definition file,
4475            sbuf is the stat of the target directory to be shared. */
4476
4477         if (lp_usershare_owner_only()) {
4478                 /* root can share anything. */
4479                 if ((psbuf->st_uid != 0) && (sbuf.st_uid != psbuf->st_uid)) {
4480                         return USERSHARE_PATH_NOT_ALLOWED;
4481                 }
4482         }
4483
4484         return USERSHARE_OK;
4485 }
4486
4487 /***************************************************************************
4488  Deal with a usershare file.
4489  Returns:
4490         >= 0 - snum
4491         -1 - Bad name, invalid contents.
4492            - service name already existed and not a usershare, problem
4493             with permissions to share directory etc.
4494 ***************************************************************************/
4495
4496 static int process_usershare_file(const char *dir_name, const char *file_name, int snum_template)
4497 {
4498         SMB_STRUCT_STAT sbuf;
4499         SMB_STRUCT_STAT lsbuf;
4500         pstring fname;
4501         pstring sharepath;
4502         pstring comment;
4503         fstring service_name;
4504         char **lines = NULL;
4505         int numlines = 0;
4506         int fd = -1;
4507         int iService = -1;
4508         TALLOC_CTX *ctx = NULL;
4509         SEC_DESC *psd = NULL;
4510         BOOL guest_ok = False;
4511
4512         /* Ensure share name doesn't contain invalid characters. */
4513         if (!validate_net_name(file_name, INVALID_SHARENAME_CHARS, strlen(file_name))) {
4514                 DEBUG(0,("process_usershare_file: share name %s contains "
4515                         "invalid characters (any of %s)\n",
4516                         file_name, INVALID_SHARENAME_CHARS ));
4517                 return -1;
4518         }
4519
4520         fstrcpy(service_name, file_name);
4521
4522         pstrcpy(fname, dir_name);
4523         pstrcat(fname, "/");
4524         pstrcat(fname, file_name);
4525
4526         /* Minimize the race condition by doing an lstat before we
4527            open and fstat. Ensure this isn't a symlink link. */
4528
4529         if (sys_lstat(fname, &lsbuf) != 0) {
4530                 DEBUG(0,("process_usershare_file: stat of %s failed. %s\n",
4531                         fname, strerror(errno) ));
4532                 return -1;
4533         }
4534
4535         /* This must be a regular file, not a symlink, directory or
4536            other strange filetype. */
4537         if (!check_usershare_stat(fname, &lsbuf)) {
4538                 return -1;
4539         }
4540
4541         /* See if there is already a servicenum for this name. */
4542         /* tdb_fetch_int32 returns -1 if not found. */
4543         iService = (int)tdb_fetch_int32(ServiceHash, canonicalize_servicename(service_name) );
4544
4545         if (iService != -1 && ServicePtrs[iService]->usershare_last_mod == lsbuf.st_mtime) {
4546                 /* Nothing changed - Mark valid and return. */
4547                 DEBUG(10,("process_usershare_file: service %s not changed.\n",
4548                         service_name ));
4549                 ServicePtrs[iService]->usershare = USERSHARE_VALID;
4550                 return iService;
4551         }
4552
4553         /* Try and open the file read only - no symlinks allowed. */
4554 #ifdef O_NOFOLLOW
4555         fd = sys_open(fname, O_RDONLY|O_NOFOLLOW, 0);
4556 #else
4557         fd = sys_open(fname, O_RDONLY, 0);
4558 #endif
4559
4560         if (fd == -1) {
4561                 DEBUG(0,("process_usershare_file: unable to open %s. %s\n",
4562                         fname, strerror(errno) ));
4563                 return -1;
4564         }
4565
4566         /* Now fstat to be *SURE* it's a regular file. */
4567         if (sys_fstat(fd, &sbuf) != 0) {
4568                 close(fd);
4569                 DEBUG(0,("process_usershare_file: fstat of %s failed. %s\n",
4570                         fname, strerror(errno) ));
4571                 return -1;
4572         }
4573
4574         /* Is it the same dev/inode as was lstated ? */
4575         if (lsbuf.st_dev != sbuf.st_dev || lsbuf.st_ino != sbuf.st_ino) {
4576                 close(fd);
4577                 DEBUG(0,("process_usershare_file: fstat of %s is a different file from lstat. "
4578                         "Symlink spoofing going on ?\n", fname ));
4579                 return -1;
4580         }
4581
4582         /* This must be a regular file, not a symlink, directory or
4583            other strange filetype. */
4584         if (!check_usershare_stat(fname, &sbuf)) {
4585                 return -1;
4586         }
4587
4588         lines = fd_lines_load(fd, &numlines, MAX_USERSHARE_FILE_SIZE);
4589
4590         close(fd);
4591         if (lines == NULL) {
4592                 DEBUG(0,("process_usershare_file: loading file %s owned by %u failed.\n",
4593                         fname, (unsigned int)sbuf.st_uid ));
4594                 return -1;
4595         }
4596
4597         /* Should we allow printers to be shared... ? */
4598         ctx = talloc_init("usershare_sd_xctx");
4599         if (!ctx) {
4600                 file_lines_free(lines);
4601                 return 1;
4602         }
4603
4604         if (parse_usershare_file(ctx, &sbuf, service_name,
4605                         iService, lines, numlines, sharepath,
4606                         comment, &psd, &guest_ok) != USERSHARE_OK) {
4607                 talloc_destroy(ctx);
4608                 file_lines_free(lines);
4609                 return -1;
4610         }
4611
4612         file_lines_free(lines);
4613
4614         /* Everything ok - add the service possibly using a template. */
4615         if (iService < 0) {
4616                 const service *sp = &sDefault;
4617                 if (snum_template != -1) {
4618                         sp = ServicePtrs[snum_template];
4619                 }
4620
4621                 if ((iService = add_a_service(sp, service_name)) < 0) {
4622                         DEBUG(0, ("process_usershare_file: Failed to add "
4623                                 "new service %s\n", service_name));
4624                         talloc_destroy(ctx);
4625                         return -1;
4626                 }
4627
4628                 /* Read only is controlled by usershare ACL below. */
4629                 ServicePtrs[iService]->bRead_only = False;
4630         }
4631
4632         /* Write the ACL of the new/modified share. */
4633         if (!set_share_security(service_name, psd)) {
4634                  DEBUG(0, ("process_usershare_file: Failed to set share "
4635                         "security for user share %s\n",
4636                         service_name ));
4637                 lp_remove_service(iService);
4638                 talloc_destroy(ctx);
4639                 return -1;
4640         }
4641
4642         talloc_destroy(ctx);
4643
4644         /* If from a template it may be marked invalid. */
4645         ServicePtrs[iService]->valid = True;
4646
4647         /* Set the service as a valid usershare. */
4648         ServicePtrs[iService]->usershare = USERSHARE_VALID;
4649
4650         /* Set guest access. */
4651         if (lp_usershare_allow_guests()) {
4652                 ServicePtrs[iService]->bGuest_ok = guest_ok;
4653         }
4654
4655         /* And note when it was loaded. */
4656         ServicePtrs[iService]->usershare_last_mod = sbuf.st_mtime;
4657         string_set(&ServicePtrs[iService]->szPath, sharepath);
4658         string_set(&ServicePtrs[iService]->comment, comment);
4659
4660         return iService;
4661 }
4662
4663 /***************************************************************************
4664  Checks if a usershare entry has been modified since last load.
4665 ***************************************************************************/
4666
4667 static BOOL usershare_exists(int iService, time_t *last_mod)
4668 {
4669         SMB_STRUCT_STAT lsbuf;
4670         const char *usersharepath = Globals.szUsersharePath;
4671         pstring fname;
4672
4673         pstrcpy(fname, usersharepath);
4674         pstrcat(fname, "/");
4675         pstrcat(fname, ServicePtrs[iService]->szService);
4676
4677         if (sys_lstat(fname, &lsbuf) != 0) {
4678                 return False;
4679         }
4680
4681         if (!S_ISREG(lsbuf.st_mode)) {
4682                 return False;
4683         }
4684
4685         *last_mod = lsbuf.st_mtime;
4686         return True;
4687 }
4688
4689 /***************************************************************************
4690  Load a usershare service by name. Returns a valid servicenumber or -1.
4691 ***************************************************************************/
4692
4693 int load_usershare_service(const char *servicename)
4694 {
4695         SMB_STRUCT_STAT sbuf;
4696         const char *usersharepath = Globals.szUsersharePath;
4697         int max_user_shares = Globals.iUsershareMaxShares;
4698         int snum_template = -1;
4699
4700         if (*usersharepath == 0 ||  max_user_shares == 0) {
4701                 return -1;
4702         }
4703
4704         if (sys_stat(usersharepath, &sbuf) != 0) {
4705                 DEBUG(0,("load_usershare_service: stat of %s failed. %s\n",
4706                         usersharepath, strerror(errno) ));
4707                 return -1;
4708         }
4709
4710         if (!S_ISDIR(sbuf.st_mode)) {
4711                 DEBUG(0,("load_usershare_service: %s is not a directory.\n",
4712                         usersharepath ));
4713                 return -1;
4714         }
4715
4716         /*
4717          * This directory must be owned by root, and have the 't' bit set.
4718          * It also must not be writable by "other".
4719          */
4720
4721 #ifdef S_ISVTX
4722         if (sbuf.st_uid != 0 || !(sbuf.st_mode & S_ISVTX) || (sbuf.st_mode & S_IWOTH)) {
4723 #else
4724         if (sbuf.st_uid != 0 || (sbuf.st_mode & S_IWOTH)) {
4725 #endif
4726                 DEBUG(0,("load_usershare_service: directory %s is not owned by root "
4727                         "or does not have the sticky bit 't' set or is writable by anyone.\n",
4728                         usersharepath ));
4729                 return -1;
4730         }
4731
4732         /* Ensure the template share exists if it's set. */
4733         if (Globals.szUsershareTemplateShare[0]) {
4734                 /* We can't use lp_servicenumber here as we are recommending that
4735                    template shares have -valid=False set. */
4736                 for (snum_template = iNumServices - 1; snum_template >= 0; snum_template--) {
4737                         if (ServicePtrs[snum_template]->szService &&
4738                                         strequal(ServicePtrs[snum_template]->szService,
4739                                                 Globals.szUsershareTemplateShare)) {
4740                                 break;
4741                         }
4742                 }
4743
4744                 if (snum_template == -1) {
4745                         DEBUG(0,("load_usershare_service: usershare template share %s "
4746                                 "does not exist.\n",
4747                                 Globals.szUsershareTemplateShare ));
4748                         return -1;
4749                 }
4750         }
4751
4752         return process_usershare_file(usersharepath, servicename, snum_template);
4753 }
4754
4755 /***************************************************************************
4756  Load all user defined shares from the user share directory.
4757  We only do this if we're enumerating the share list.
4758  This is the function that can delete usershares that have
4759  been removed.
4760 ***************************************************************************/
4761
4762 int load_usershare_shares(void)
4763 {
4764         SMB_STRUCT_DIR *dp;
4765         SMB_STRUCT_STAT sbuf;
4766         SMB_STRUCT_DIRENT *de;
4767         int num_usershares = 0;
4768         int max_user_shares = Globals.iUsershareMaxShares;
4769         unsigned int num_dir_entries, num_bad_dir_entries, num_tmp_dir_entries;
4770         unsigned int allowed_bad_entries = ((2*max_user_shares)/10);
4771         unsigned int allowed_tmp_entries = ((2*max_user_shares)/10);
4772         int iService;
4773         int snum_template = -1;
4774         const char *usersharepath = Globals.szUsersharePath;
4775         int ret = lp_numservices();
4776
4777         if (max_user_shares == 0 || *usersharepath == '\0') {
4778                 return lp_numservices();
4779         }
4780
4781         if (sys_stat(usersharepath, &sbuf) != 0) {
4782                 DEBUG(0,("load_usershare_shares: stat of %s failed. %s\n",
4783                         usersharepath, strerror(errno) ));
4784                 return ret;
4785         }
4786
4787         /*
4788          * This directory must be owned by root, and have the 't' bit set.
4789          * It also must not be writable by "other".
4790          */
4791
4792 #ifdef S_ISVTX
4793         if (sbuf.st_uid != 0 || !(sbuf.st_mode & S_ISVTX) || (sbuf.st_mode & S_IWOTH)) {
4794 #else
4795         if (sbuf.st_uid != 0 || (sbuf.st_mode & S_IWOTH)) {
4796 #endif
4797                 DEBUG(0,("load_usershare_shares: directory %s is not owned by root "
4798                         "or does not have the sticky bit 't' set or is writable by anyone.\n",
4799                         usersharepath ));
4800                 return ret;
4801         }
4802
4803         /* Ensure the template share exists if it's set. */
4804         if (Globals.szUsershareTemplateShare[0]) {
4805                 /* We can't use lp_servicenumber here as we are recommending that
4806                    template shares have -valid=False set. */
4807                 for (snum_template = iNumServices - 1; snum_template >= 0; snum_template--) {
4808                         if (ServicePtrs[snum_template]->szService &&
4809                                         strequal(ServicePtrs[snum_template]->szService,
4810                                                 Globals.szUsershareTemplateShare)) {
4811                                 break;
4812                         }
4813                 }
4814
4815                 if (snum_template == -1) {
4816                         DEBUG(0,("load_usershare_shares: usershare template share %s "
4817                                 "does not exist.\n",
4818                                 Globals.szUsershareTemplateShare ));
4819                         return ret;
4820                 }
4821         }
4822
4823         /* Mark all existing usershares as pending delete. */
4824         for (iService = iNumServices - 1; iService >= 0; iService--) {
4825                 if (VALID(iService) && ServicePtrs[iService]->usershare) {
4826                         ServicePtrs[iService]->usershare = USERSHARE_PENDING_DELETE;
4827                 }
4828         }
4829
4830         dp = sys_opendir(usersharepath);
4831         if (!dp) {
4832                 DEBUG(0,("load_usershare_shares:: failed to open directory %s. %s\n",
4833                         usersharepath, strerror(errno) ));
4834                 return ret;
4835         }
4836
4837         for (num_dir_entries = 0, num_bad_dir_entries = 0, num_tmp_dir_entries = 0;
4838                         (de = sys_readdir(dp));
4839                         num_dir_entries++ ) {
4840                 int r;
4841                 const char *n = de->d_name;
4842
4843                 /* Ignore . and .. */
4844                 if (*n == '.') {
4845                         if ((n[1] == '\0') || (n[1] == '.' && n[2] == '\0')) {
4846                                 continue;
4847                         }
4848                 }
4849
4850                 if (n[0] == ':') {
4851                         /* Temporary file used when creating a share. */
4852                         num_tmp_dir_entries++;
4853                 }
4854
4855                 /* Allow 20% tmp entries. */
4856                 if (num_tmp_dir_entries > allowed_tmp_entries) {
4857                         DEBUG(0,("load_usershare_shares: too many temp entries (%u) "
4858                                 "in directory %s\n",
4859                                 num_tmp_dir_entries, usersharepath));
4860                         break;
4861                 }
4862
4863                 r = process_usershare_file(usersharepath, n, snum_template);
4864                 if (r == 0) {
4865                         /* Update the services count. */
4866                         num_usershares++;
4867                         if (num_usershares >= max_user_shares) {
4868                                 DEBUG(0,("load_usershare_shares: max user shares reached "
4869                                         "on file %s in directory %s\n",
4870                                         n, usersharepath ));
4871                                 break;
4872                         }
4873                 } else if (r == -1) {
4874                         num_bad_dir_entries++;
4875                 }
4876
4877                 /* Allow 20% bad entries. */
4878                 if (num_bad_dir_entries > allowed_bad_entries) {
4879                         DEBUG(0,("load_usershare_shares: too many bad entries (%u) "
4880                                 "in directory %s\n",
4881                                 num_bad_dir_entries, usersharepath));
4882                         break;
4883                 }
4884
4885                 /* Allow 20% bad entries. */
4886                 if (num_dir_entries > max_user_shares + allowed_bad_entries) {
4887                         DEBUG(0,("load_usershare_shares: too many total entries (%u) "
4888                         "in directory %s\n",
4889                         num_dir_entries, usersharepath));
4890                         break;
4891                 }
4892         }
4893
4894         sys_closedir(dp);
4895
4896         /* Sweep through and delete any non-refreshed usershares that are
4897            not currently in use. */
4898         for (iService = iNumServices - 1; iService >= 0; iService--) {
4899                 if (VALID(iService) && (ServicePtrs[iService]->usershare == USERSHARE_PENDING_DELETE)) {
4900                         if (conn_snum_used(iService)) {
4901                                 continue;
4902                         }
4903                         /* Remove from the share ACL db. */
4904                         DEBUG(10,("load_usershare_shares: Removing deleted usershare %s\n",
4905                                 lp_servicename(iService) ));
4906                         delete_share_security(snum2params_static(iService));
4907                         free_service_byindex(iService);
4908                 }
4909         }
4910
4911         return lp_numservices();
4912 }
4913
4914 /********************************************************
4915  Destroy global resources allocated in this file
4916 ********************************************************/
4917
4918 void gfree_loadparm(void)
4919 {
4920         struct file_lists *f;
4921         struct file_lists *next;
4922         int i;
4923
4924         lp_TALLOC_FREE();
4925
4926         /* Free the file lists */
4927
4928         f = file_lists;
4929         while( f ) {
4930                 next = f->next;
4931                 SAFE_FREE( f->name );
4932                 SAFE_FREE( f->subfname );
4933                 SAFE_FREE( f );
4934                 f = next;
4935         }
4936
4937         /* Free resources allocated to services */
4938
4939         for ( i = 0; i < iNumServices; i++ ) {
4940                 if ( VALID(i) ) {
4941                         free_service_byindex(i);
4942                 }
4943         }
4944
4945         SAFE_FREE( ServicePtrs );
4946         iNumServices = 0;
4947
4948         /* Now release all resources allocated to global
4949            parameters and the default service */
4950
4951         for (i = 0; parm_table[i].label; i++) 
4952         {
4953                 if ( parm_table[i].type == P_STRING 
4954                         || parm_table[i].type == P_USTRING ) 
4955                 {
4956                         string_free( (char**)parm_table[i].ptr );
4957                 }
4958                 else if (parm_table[i].type == P_LIST) {
4959                         str_list_free( (char***)parm_table[i].ptr );
4960                 }
4961         }
4962 }
4963
4964 /***************************************************************************
4965  Load the services array from the services file. Return True on success, 
4966  False on failure.
4967 ***************************************************************************/
4968
4969 BOOL lp_load(const char *pszFname,
4970              BOOL global_only,
4971              BOOL save_defaults,
4972              BOOL add_ipc,
4973              BOOL initialize_globals)
4974 {
4975         pstring n2;
4976         BOOL bRetval;
4977         param_opt_struct *data, *pdata;
4978
4979         pstrcpy(n2, pszFname);
4980         
4981         standard_sub_basic( get_current_username(), current_user_info.domain,
4982                             n2,sizeof(n2) );
4983
4984         add_to_file_list(pszFname, n2);
4985
4986         bRetval = False;
4987
4988         DEBUG(3, ("lp_load: refreshing parameters\n"));
4989         
4990         bInGlobalSection = True;
4991         bGlobalOnly = global_only;
4992
4993         init_globals(! initialize_globals);
4994         debug_init();
4995
4996         if (save_defaults) {
4997                 init_locals();
4998                 lp_save_defaults();
4999         }
5000
5001         if (Globals.param_opt != NULL) {
5002                 data = Globals.param_opt;
5003                 while (data) {
5004                         string_free(&data->key);
5005                         string_free(&data->value);
5006                         str_list_free(&data->list);
5007                         pdata = data->next;
5008                         SAFE_FREE(data);
5009                         data = pdata;
5010                 }
5011                 Globals.param_opt = NULL;
5012         }
5013         
5014         /* We get sections first, so have to start 'behind' to make up */
5015         iServiceIndex = -1;
5016         bRetval = pm_process(n2, do_section, do_parameter);
5017
5018         /* finish up the last section */
5019         DEBUG(4, ("pm_process() returned %s\n", BOOLSTR(bRetval)));
5020         if (bRetval)
5021                 if (iServiceIndex >= 0)
5022                         bRetval = service_ok(iServiceIndex);
5023
5024         lp_add_auto_services(lp_auto_services());
5025
5026         if (add_ipc) {
5027                 /* When 'restrict anonymous = 2' guest connections to ipc$
5028                    are denied */
5029                 lp_add_ipc("IPC$", (lp_restrict_anonymous() < 2));
5030                 if ( lp_enable_asu_support() )
5031                         lp_add_ipc("ADMIN$", False);
5032         }
5033
5034         set_server_role();
5035         set_default_server_announce_type();
5036         set_allowed_client_auth();
5037
5038         bLoaded = True;
5039
5040         /* Now we check bWINSsupport and set szWINSserver to 127.0.0.1 */
5041         /* if bWINSsupport is true and we are in the client            */
5042         if (in_client && Globals.bWINSsupport) {
5043                 lp_do_parameter(GLOBAL_SECTION_SNUM, "wins server", "127.0.0.1");
5044         }
5045
5046         init_iconv();
5047
5048         return (bRetval);
5049 }
5050
5051 /***************************************************************************
5052  Reset the max number of services.
5053 ***************************************************************************/
5054
5055 void lp_resetnumservices(void)
5056 {
5057         iNumServices = 0;
5058 }
5059
5060 /***************************************************************************
5061  Return the max number of services.
5062 ***************************************************************************/
5063
5064 int lp_numservices(void)
5065 {
5066         return (iNumServices);
5067 }
5068
5069 /***************************************************************************
5070 Display the contents of the services array in human-readable form.
5071 ***************************************************************************/
5072
5073 void lp_dump(FILE *f, BOOL show_defaults, int maxtoprint)
5074 {
5075         int iService;
5076
5077         if (show_defaults)
5078                 defaults_saved = False;
5079
5080         dump_globals(f);
5081
5082         dump_a_service(&sDefault, f);
5083
5084         for (iService = 0; iService < maxtoprint; iService++) {
5085                 fprintf(f,"\n");
5086                 lp_dump_one(f, show_defaults, iService);
5087         }
5088 }
5089
5090 /***************************************************************************
5091 Display the contents of one service in human-readable form.
5092 ***************************************************************************/
5093
5094 void lp_dump_one(FILE * f, BOOL show_defaults, int snum)
5095 {
5096         if (VALID(snum)) {
5097                 if (ServicePtrs[snum]->szService[0] == '\0')
5098                         return;
5099                 dump_a_service(ServicePtrs[snum], f);
5100         }
5101 }
5102
5103 /***************************************************************************
5104 Return the number of the service with the given name, or -1 if it doesn't
5105 exist. Note that this is a DIFFERENT ANIMAL from the internal function
5106 getservicebyname()! This works ONLY if all services have been loaded, and
5107 does not copy the found service.
5108 ***************************************************************************/
5109
5110 int lp_servicenumber(const char *pszServiceName)
5111 {
5112         int iService;
5113         fstring serviceName;
5114         
5115         if (!pszServiceName) {
5116                 return GLOBAL_SECTION_SNUM;
5117         }
5118         
5119         for (iService = iNumServices - 1; iService >= 0; iService--) {
5120                 if (VALID(iService) && ServicePtrs[iService]->szService) {
5121                         /*
5122                          * The substitution here is used to support %U is
5123                          * service names
5124                          */
5125                         fstrcpy(serviceName, ServicePtrs[iService]->szService);
5126                         standard_sub_basic(get_current_username(),
5127                                            current_user_info.domain,
5128                                            serviceName,sizeof(serviceName));
5129                         if (strequal(serviceName, pszServiceName)) {
5130                                 break;
5131                         }
5132                 }
5133         }
5134
5135         if (iService >= 0 && ServicePtrs[iService]->usershare == USERSHARE_VALID) {
5136                 time_t last_mod;
5137
5138                 if (!usershare_exists(iService, &last_mod)) {
5139                         /* Remove the share security tdb entry for it. */
5140                         delete_share_security(snum2params_static(iService));
5141                         /* Remove it from the array. */
5142                         free_service_byindex(iService);
5143                         /* Doesn't exist anymore. */
5144                         return GLOBAL_SECTION_SNUM;
5145                 }
5146
5147                 /* Has it been modified ? If so delete and reload. */
5148                 if (ServicePtrs[iService]->usershare_last_mod < last_mod) {
5149                         /* Remove it from the array. */
5150                         free_service_byindex(iService);
5151                         /* and now reload it. */
5152                         iService = load_usershare_service(pszServiceName);
5153                 }
5154         }
5155
5156         if (iService < 0) {
5157                 DEBUG(7,("lp_servicenumber: couldn't find %s\n", pszServiceName));
5158                 return GLOBAL_SECTION_SNUM;
5159         }
5160
5161         return (iService);
5162 }
5163
5164 BOOL share_defined(const char *service_name)
5165 {
5166         return (lp_servicenumber(service_name) != -1);
5167 }
5168
5169 struct share_params *get_share_params(TALLOC_CTX *mem_ctx,
5170                                       const char *sharename)
5171 {
5172         struct share_params *result;
5173         char *sname;
5174         int snum;
5175
5176         if (!(sname = SMB_STRDUP(sharename))) {
5177                 return NULL;
5178         }
5179
5180         snum = find_service(sname);
5181         SAFE_FREE(sname);
5182
5183         if (snum < 0) {
5184                 return NULL;
5185         }
5186
5187         if (!(result = TALLOC_P(mem_ctx, struct share_params))) {
5188                 DEBUG(0, ("talloc failed\n"));
5189                 return NULL;
5190         }
5191
5192         result->service = snum;
5193         return result;
5194 }
5195
5196 struct share_iterator *share_list_all(TALLOC_CTX *mem_ctx)
5197 {
5198         struct share_iterator *result;
5199
5200         if (!(result = TALLOC_P(mem_ctx, struct share_iterator))) {
5201                 DEBUG(0, ("talloc failed\n"));
5202                 return NULL;
5203         }
5204
5205         result->next_id = 0;
5206         return result;
5207 }
5208
5209 struct share_params *next_share(struct share_iterator *list)
5210 {
5211         struct share_params *result;
5212
5213         while (!lp_snum_ok(list->next_id) &&
5214                (list->next_id < lp_numservices())) {
5215                 list->next_id += 1;
5216         }
5217
5218         if (list->next_id >= lp_numservices()) {
5219                 return NULL;
5220         }
5221
5222         if (!(result = TALLOC_P(list, struct share_params))) {
5223                 DEBUG(0, ("talloc failed\n"));
5224                 return NULL;
5225         }
5226
5227         result->service = list->next_id;
5228         list->next_id += 1;
5229         return result;
5230 }
5231
5232 struct share_params *next_printer(struct share_iterator *list)
5233 {
5234         struct share_params *result;
5235
5236         while ((result = next_share(list)) != NULL) {
5237                 if (lp_print_ok(result->service)) {
5238                         break;
5239                 }
5240         }
5241         return result;
5242 }
5243
5244 /*
5245  * This is a hack for a transition period until we transformed all code from
5246  * service numbers to struct share_params.
5247  */
5248
5249 struct share_params *snum2params_static(int snum)
5250 {
5251         static struct share_params result;
5252         result.service = snum;
5253         return &result;
5254 }
5255
5256 /*******************************************************************
5257  A useful volume label function. 
5258 ********************************************************************/
5259
5260 char *volume_label(int snum)
5261 {
5262         char *ret = lp_volume(snum);
5263         if (!*ret)
5264                 return lp_servicename(snum);
5265         return (ret);
5266 }
5267
5268
5269 /*******************************************************************
5270  Set the server type we will announce as via nmbd.
5271 ********************************************************************/
5272
5273 static void set_default_server_announce_type(void)
5274 {
5275         default_server_announce = 0;
5276         default_server_announce |= SV_TYPE_WORKSTATION;
5277         default_server_announce |= SV_TYPE_SERVER;
5278         default_server_announce |= SV_TYPE_SERVER_UNIX;
5279
5280         /* note that the flag should be set only if we have a 
5281            printer service but nmbd doesn't actually load the 
5282            services so we can't tell   --jerry */
5283
5284         default_server_announce |= SV_TYPE_PRINTQ_SERVER;
5285
5286         switch (lp_announce_as()) {
5287                 case ANNOUNCE_AS_NT_SERVER:
5288                         default_server_announce |= SV_TYPE_SERVER_NT;
5289                         /* fall through... */
5290                 case ANNOUNCE_AS_NT_WORKSTATION:
5291                         default_server_announce |= SV_TYPE_NT;
5292                         break;
5293                 case ANNOUNCE_AS_WIN95:
5294                         default_server_announce |= SV_TYPE_WIN95_PLUS;
5295                         break;
5296                 case ANNOUNCE_AS_WFW:
5297                         default_server_announce |= SV_TYPE_WFW;
5298                         break;
5299                 default:
5300                         break;
5301         }
5302
5303         switch (lp_server_role()) {
5304                 case ROLE_DOMAIN_MEMBER:
5305                         default_server_announce |= SV_TYPE_DOMAIN_MEMBER;
5306                         break;
5307                 case ROLE_DOMAIN_PDC:
5308                         default_server_announce |= SV_TYPE_DOMAIN_CTRL;
5309                         break;
5310                 case ROLE_DOMAIN_BDC:
5311                         default_server_announce |= SV_TYPE_DOMAIN_BAKCTRL;
5312                         break;
5313                 case ROLE_STANDALONE:
5314                 default:
5315                         break;
5316         }
5317         if (lp_time_server())
5318                 default_server_announce |= SV_TYPE_TIME_SOURCE;
5319
5320         if (lp_host_msdfs())
5321                 default_server_announce |= SV_TYPE_DFS_SERVER;
5322 }
5323
5324 /***********************************************************
5325  returns role of Samba server
5326 ************************************************************/
5327
5328 int lp_server_role(void)
5329 {
5330         return server_role;
5331 }
5332
5333 /***********************************************************
5334  If we are PDC then prefer us as DMB
5335 ************************************************************/
5336
5337 BOOL lp_domain_master(void)
5338 {
5339         if (Globals.bDomainMaster == Auto)
5340                 return (lp_server_role() == ROLE_DOMAIN_PDC);
5341
5342         return Globals.bDomainMaster;
5343 }
5344
5345 /***********************************************************
5346  If we are DMB then prefer us as LMB
5347 ************************************************************/
5348
5349 BOOL lp_preferred_master(void)
5350 {
5351         if (Globals.bPreferredMaster == Auto)
5352                 return (lp_local_master() && lp_domain_master());
5353
5354         return Globals.bPreferredMaster;
5355 }
5356
5357 /*******************************************************************
5358  Remove a service.
5359 ********************************************************************/
5360
5361 void lp_remove_service(int snum)
5362 {
5363         ServicePtrs[snum]->valid = False;
5364         invalid_services[num_invalid_services++] = snum;
5365 }
5366
5367 /*******************************************************************
5368  Copy a service.
5369 ********************************************************************/
5370
5371 void lp_copy_service(int snum, const char *new_name)
5372 {
5373         do_section(new_name);
5374         if (snum >= 0) {
5375                 snum = lp_servicenumber(new_name);
5376                 if (snum >= 0)
5377                         lp_do_parameter(snum, "copy", lp_servicename(snum));
5378         }
5379 }
5380
5381
5382 /*******************************************************************
5383  Get the default server type we will announce as via nmbd.
5384 ********************************************************************/
5385
5386 int lp_default_server_announce(void)
5387 {
5388         return default_server_announce;
5389 }
5390
5391 /*******************************************************************
5392  Split the announce version into major and minor numbers.
5393 ********************************************************************/
5394
5395 int lp_major_announce_version(void)
5396 {
5397         static BOOL got_major = False;
5398         static int major_version = DEFAULT_MAJOR_VERSION;
5399         char *vers;
5400         char *p;
5401
5402         if (got_major)
5403                 return major_version;
5404
5405         got_major = True;
5406         if ((vers = lp_announce_version()) == NULL)
5407                 return major_version;
5408
5409         if ((p = strchr_m(vers, '.')) == 0)
5410                 return major_version;
5411
5412         *p = '\0';
5413         major_version = atoi(vers);
5414         return major_version;
5415 }
5416
5417 int lp_minor_announce_version(void)
5418 {
5419         static BOOL got_minor = False;
5420         static int minor_version = DEFAULT_MINOR_VERSION;
5421         char *vers;
5422         char *p;
5423
5424         if (got_minor)
5425                 return minor_version;
5426
5427         got_minor = True;
5428         if ((vers = lp_announce_version()) == NULL)
5429                 return minor_version;
5430
5431         if ((p = strchr_m(vers, '.')) == 0)
5432                 return minor_version;
5433
5434         p++;
5435         minor_version = atoi(p);
5436         return minor_version;
5437 }
5438
5439 /***********************************************************
5440  Set the global name resolution order (used in smbclient).
5441 ************************************************************/
5442
5443 void lp_set_name_resolve_order(const char *new_order)
5444 {
5445         string_set(&Globals.szNameResolveOrder, new_order);
5446 }
5447
5448 const char *lp_printername(int snum)
5449 {
5450         const char *ret = _lp_printername(snum);
5451         if (ret == NULL || (ret != NULL && *ret == '\0'))
5452                 ret = lp_const_servicename(snum);
5453
5454         return ret;
5455 }
5456
5457
5458 /***********************************************************
5459  Allow daemons such as winbindd to fix their logfile name.
5460 ************************************************************/
5461
5462 void lp_set_logfile(const char *name)
5463 {
5464         string_set(&Globals.szLogFile, name);
5465         pstrcpy(debugf, name);
5466 }
5467
5468 /*******************************************************************
5469  Return the max print jobs per queue.
5470 ********************************************************************/
5471
5472 int lp_maxprintjobs(int snum)
5473 {
5474         int maxjobs = LP_SNUM_OK(snum) ? ServicePtrs[snum]->iMaxPrintJobs : sDefault.iMaxPrintJobs;
5475         if (maxjobs <= 0 || maxjobs >= PRINT_MAX_JOBID)
5476                 maxjobs = PRINT_MAX_JOBID - 1;
5477
5478         return maxjobs;
5479 }
5480
5481 const char *lp_printcapname(void)
5482 {
5483         if ((Globals.szPrintcapname != NULL) &&
5484             (Globals.szPrintcapname[0] != '\0'))
5485                 return Globals.szPrintcapname;
5486
5487         if (sDefault.iPrinting == PRINT_CUPS) {
5488 #ifdef HAVE_CUPS
5489                 return "cups";
5490 #else
5491                 return "lpstat";
5492 #endif
5493         }
5494
5495         if (sDefault.iPrinting == PRINT_BSD)
5496                 return "/etc/printcap";
5497
5498         return PRINTCAP_NAME;
5499 }
5500
5501 /*******************************************************************
5502  Ensure we don't use sendfile if server smb signing is active.
5503 ********************************************************************/
5504
5505 static uint32 spoolss_state;
5506
5507 BOOL lp_disable_spoolss( void )
5508 {
5509         if ( spoolss_state == SVCCTL_STATE_UNKNOWN )
5510                 spoolss_state = _lp_disable_spoolss() ? SVCCTL_STOPPED : SVCCTL_RUNNING;
5511
5512         return spoolss_state == SVCCTL_STOPPED ? True : False;
5513 }
5514
5515 void lp_set_spoolss_state( uint32 state )
5516 {
5517         SMB_ASSERT( (state == SVCCTL_STOPPED) || (state == SVCCTL_RUNNING) );
5518
5519         spoolss_state = state;
5520 }
5521
5522 uint32 lp_get_spoolss_state( void )
5523 {
5524         return lp_disable_spoolss() ? SVCCTL_STOPPED : SVCCTL_RUNNING;
5525 }
5526
5527 /*******************************************************************
5528  Ensure we don't use sendfile if server smb signing is active.
5529 ********************************************************************/
5530
5531 BOOL lp_use_sendfile(int snum)
5532 {
5533         /* Using sendfile blows the brains out of any DOS or Win9x TCP stack... JRA. */
5534         if (Protocol < PROTOCOL_NT1) {
5535                 return False;
5536         }
5537         return (_lp_use_sendfile(snum) && (get_remote_arch() != RA_WIN95) && !srv_is_signing_active());
5538 }
5539
5540 /*******************************************************************
5541  Turn off sendfile if we find the underlying OS doesn't support it.
5542 ********************************************************************/
5543
5544 void set_use_sendfile(int snum, BOOL val)
5545 {
5546         if (LP_SNUM_OK(snum))
5547                 ServicePtrs[snum]->bUseSendfile = val;
5548         else
5549                 sDefault.bUseSendfile = val;
5550 }
5551
5552 /*******************************************************************
5553  Turn off storing DOS attributes if this share doesn't support it.
5554 ********************************************************************/
5555
5556 void set_store_dos_attributes(int snum, BOOL val)
5557 {
5558         if (!LP_SNUM_OK(snum))
5559                 return;
5560         ServicePtrs[(snum)]->bStoreDosAttributes = val;
5561 }
5562
5563 void lp_set_mangling_method(const char *new_method)
5564 {
5565         string_set(&Globals.szManglingMethod, new_method);
5566 }
5567
5568 /*******************************************************************
5569  Global state for POSIX pathname processing.
5570 ********************************************************************/
5571
5572 static BOOL posix_pathnames;
5573
5574 BOOL lp_posix_pathnames(void)
5575 {
5576         return posix_pathnames;
5577 }
5578
5579 /*******************************************************************
5580  Change everything needed to ensure POSIX pathname processing (currently
5581  not much).
5582 ********************************************************************/
5583
5584 void lp_set_posix_pathnames(void)
5585 {
5586         posix_pathnames = True;
5587 }
5588
5589 /*******************************************************************
5590  Global state for POSIX lock processing - CIFS unix extensions.
5591 ********************************************************************/
5592
5593 static enum brl_flavour posix_cifsx_locktype; /* By default 0 == WINDOWS_LOCK */
5594
5595 enum brl_flavour lp_posix_cifsu_locktype(void)
5596 {
5597         return posix_cifsx_locktype;
5598 }
5599
5600 /*******************************************************************
5601 ********************************************************************/
5602
5603 void lp_set_posix_cifsx_locktype(enum brl_flavour val)
5604 {
5605         posix_cifsx_locktype = val;
5606 }