2 Unix SMB/CIFS implementation.
3 Parameter loading functions
4 Copyright (C) Karl Auer 1993-1998
6 Largely re-written by Andrew Tridgell, September 1994
8 Copyright (C) Simo Sorce 2001
9 Copyright (C) Alexander Bokovoy 2002
10 Copyright (C) Stefan (metze) Metzmacher 2002
11 Copyright (C) Jim McDonough (jmcd@us.ibm.com) 2003.
12 Copyright (C) James Myers 2003 <myersjj@samba.org>
13 Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
15 This program is free software; you can redistribute it and/or modify
16 it under the terms of the GNU General Public License as published by
17 the Free Software Foundation; either version 3 of the License, or
18 (at your option) any later version.
20 This program is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
25 You should have received a copy of the GNU General Public License
26 along with this program. If not, see <http://www.gnu.org/licenses/>.
32 * This module provides suitable callback functions for the params
33 * module. It builds the internal table of service details which is
34 * then used by the rest of the server.
38 * 1) add it to the global or service structure definition
39 * 2) add it to the parm_table
40 * 3) add it to the list of available functions (eg: using FN_GLOBAL_STRING())
41 * 4) If it's a global then initialise it in init_globals. If a local
42 * (ie. service) parameter then initialise it in the sDefault structure
46 * The configuration file is processed sequentially for speed. It is NOT
47 * accessed randomly as happens in 'real' Windows. For this reason, there
48 * is a fair bit of sequence-dependent code here - ie., code which assumes
49 * that certain things happen before others. In particular, the code which
50 * happens at the boundary between sections is delicately poised, so be
57 #include "dynconfig/dynconfig.h"
58 #include "system/time.h"
59 #include "system/locale.h"
60 #include "system/network.h" /* needed for TCP_NODELAY */
61 #include "../lib/util/dlinklist.h"
62 #include "lib/param/param.h"
63 #include "lib/param/loadparm.h"
64 #include "auth/gensec/gensec.h"
65 #include "lib/param/s3_param.h"
66 #include "lib/util/bitmap.h"
67 #include "libcli/smb/smb_constants.h"
68 #include "source4/dns_server/dns_update.h"
70 #define standard_sub_basic talloc_strdup
72 static bool do_parameter(const char *, const char *, void *);
73 static bool defaults_saved
= false;
75 #define LOADPARM_EXTRA_GLOBALS \
76 struct parmlist_entry *param_opt; \
91 #include "lib/param/param_global.h"
93 #define NUMPARAMETERS (sizeof(parm_table) / sizeof(struct parm_struct))
96 /* prototypes for the special type handlers */
97 static bool handle_include(struct loadparm_context
*lp_ctx
, int unused
,
98 const char *pszParmValue
, char **ptr
);
99 static bool handle_realm(struct loadparm_context
*lp_ctx
, int unused
,
100 const char *pszParmValue
, char **ptr
);
101 static bool handle_copy(struct loadparm_context
*lp_ctx
, int unused
,
102 const char *pszParmValue
, char **ptr
);
103 static bool handle_debuglevel(struct loadparm_context
*lp_ctx
, int unused
,
104 const char *pszParmValue
, char **ptr
);
105 static bool handle_logfile(struct loadparm_context
*lp_ctx
, int unused
,
106 const char *pszParmValue
, char **ptr
);
108 #include "lib/param/param_enums.c"
110 #define GLOBAL_VAR(name) offsetof(struct loadparm_global, name)
111 #define LOCAL_VAR(name) offsetof(struct loadparm_service, name)
113 static struct parm_struct parm_table
[] = {
115 .label
= "server role",
118 .offset
= GLOBAL_VAR(server_role
),
120 .enum_list
= enum_server_role
123 .label
= "domain logons",
126 .offset
= GLOBAL_VAR(domain_logons
),
128 .enum_list
= enum_bool_auto
131 .label
= "domain master",
134 .offset
= GLOBAL_VAR(domain_master
),
136 .enum_list
= enum_bool_auto
139 .label
= "dos charset",
142 .offset
= GLOBAL_VAR(dos_charset
),
147 .label
= "unix charset",
150 .offset
= GLOBAL_VAR(unix_charset
),
155 .label
= "ncalrpc dir",
158 .offset
= GLOBAL_VAR(ncalrpc_dir
),
166 .offset
= LOCAL_VAR(comment
),
169 .flags
= FLAG_BASIC
| FLAG_ADVANCED
| FLAG_SHARE
| FLAG_PRINT
175 .offset
= LOCAL_VAR(szPath
),
178 .flags
= FLAG_BASIC
| FLAG_ADVANCED
| FLAG_SHARE
| FLAG_PRINT
,
181 .label
= "directory",
184 .offset
= LOCAL_VAR(szPath
),
190 .label
= "workgroup",
193 .offset
= GLOBAL_VAR(szWorkgroup
),
196 .flags
= FLAG_BASIC
| FLAG_ADVANCED
| FLAG_WIZARD
,
202 .offset
= GLOBAL_VAR(szRealm
),
203 .special
= handle_realm
,
205 .flags
= FLAG_BASIC
| FLAG_ADVANCED
| FLAG_WIZARD
,
208 .label
= "netbios name",
211 .offset
= GLOBAL_VAR(szNetbiosName
),
214 .flags
= FLAG_BASIC
| FLAG_ADVANCED
| FLAG_WIZARD
,
217 .label
= "netbios aliases",
220 .offset
= GLOBAL_VAR(szNetbiosAliases
),
225 .label
= "netbios scope",
228 .offset
= GLOBAL_VAR(szNetbiosScope
),
231 .flags
= FLAG_ADVANCED
,
234 .label
= "server string",
237 .offset
= GLOBAL_VAR(szServerString
),
240 .flags
= FLAG_BASIC
| FLAG_ADVANCED
,
243 .label
= "interfaces",
246 .offset
= GLOBAL_VAR(szInterfaces
),
249 .flags
= FLAG_BASIC
| FLAG_ADVANCED
| FLAG_WIZARD
,
252 .label
= "bind interfaces only",
255 .offset
= GLOBAL_VAR(bBindInterfacesOnly
),
258 .flags
= FLAG_ADVANCED
| FLAG_WIZARD
,
261 .label
= "ntvfs handler",
264 .offset
= LOCAL_VAR(ntvfs_handler
),
269 .label
= "ntptr providor",
272 .offset
= GLOBAL_VAR(ntptr_providor
),
277 .label
= "passdb backend",
280 .offset
= GLOBAL_VAR(passdb_backend
),
285 .label
= "dcerpc endpoint servers",
288 .offset
= GLOBAL_VAR(dcerpc_ep_servers
),
293 .label
= "server services",
296 .offset
= GLOBAL_VAR(server_services
),
305 .offset
= GLOBAL_VAR(security
),
307 .enum_list
= enum_security
310 .label
= "encrypt passwords",
313 .offset
= GLOBAL_VAR(bEncryptPasswords
),
318 .label
= "null passwords",
321 .offset
= GLOBAL_VAR(bNullPasswords
),
324 .flags
= FLAG_ADVANCED
| FLAG_DEPRECATED
,
327 .label
= "obey pam restrictions",
330 .offset
= GLOBAL_VAR(bObeyPamRestrictions
),
333 .flags
= FLAG_ADVANCED
,
336 .label
= "password server",
339 .offset
= GLOBAL_VAR(szPasswordServer
),
344 .label
= "private dir",
347 .offset
= GLOBAL_VAR(szPrivateDir
),
352 .label
= "passwd chat",
355 .offset
= GLOBAL_VAR(szPasswdChat
),
360 .label
= "password level",
363 .offset
= GLOBAL_VAR(pwordlevel
),
368 .label
= "lanman auth",
371 .offset
= GLOBAL_VAR(bLanmanAuth
),
374 .flags
= FLAG_ADVANCED
,
377 .label
= "ntlm auth",
380 .offset
= GLOBAL_VAR(bNTLMAuth
),
383 .flags
= FLAG_ADVANCED
,
386 .label
= "client NTLMv2 auth",
389 .offset
= GLOBAL_VAR(bClientNTLMv2Auth
),
392 .flags
= FLAG_ADVANCED
,
395 .label
= "client lanman auth",
398 .offset
= GLOBAL_VAR(bClientLanManAuth
),
401 .flags
= FLAG_ADVANCED
,
404 .label
= "client plaintext auth",
407 .offset
= GLOBAL_VAR(bClientPlaintextAuth
),
410 .flags
= FLAG_ADVANCED
,
413 .label
= "client use spnego principal",
416 .offset
= GLOBAL_VAR(client_use_spnego_principal
),
422 .label
= "read only",
425 .offset
= LOCAL_VAR(bRead_only
),
431 .label
= "create mask",
434 .offset
= LOCAL_VAR(iCreate_mask
),
439 .label
= "force create mode",
442 .offset
= LOCAL_VAR(iCreate_force_mode
),
447 .label
= "directory mask",
450 .offset
= LOCAL_VAR(iDir_mask
),
455 .label
= "force directory mode",
458 .offset
= LOCAL_VAR(iDir_force_mode
),
464 .label
= "hosts allow",
467 .offset
= LOCAL_VAR(szHostsallow
),
472 .label
= "hosts deny",
475 .offset
= LOCAL_VAR(szHostsdeny
),
481 .label
= "log level",
484 .offset
= GLOBAL_VAR(loglevel
),
485 .special
= handle_debuglevel
,
489 .label
= "debuglevel",
492 .offset
= GLOBAL_VAR(loglevel
),
493 .special
= handle_debuglevel
,
500 .offset
= GLOBAL_VAR(logfile
),
501 .special
= handle_logfile
,
503 .flags
= FLAG_ADVANCED
,
507 .label
= "smb ports",
510 .offset
= GLOBAL_VAR(smb_ports
),
518 .offset
= GLOBAL_VAR(nbt_port
),
523 .label
= "dgram port",
526 .offset
= GLOBAL_VAR(dgram_port
),
531 .label
= "cldap port",
534 .offset
= GLOBAL_VAR(cldap_port
),
539 .label
= "krb5 port",
542 .offset
= GLOBAL_VAR(krb5_port
),
547 .label
= "kpasswd port",
550 .offset
= GLOBAL_VAR(kpasswd_port
),
558 .offset
= GLOBAL_VAR(web_port
),
563 .label
= "tls enabled",
566 .offset
= GLOBAL_VAR(tls_enabled
),
571 .label
= "tls keyfile",
574 .offset
= GLOBAL_VAR(tls_keyfile
),
579 .label
= "tls certfile",
582 .offset
= GLOBAL_VAR(tls_certfile
),
587 .label
= "tls cafile",
590 .offset
= GLOBAL_VAR(tls_cafile
),
595 .label
= "tls crlfile",
598 .offset
= GLOBAL_VAR(tls_crlfile
),
603 .label
= "tls dh params file",
606 .offset
= GLOBAL_VAR(tls_dhpfile
),
611 .label
= "large readwrite",
614 .offset
= GLOBAL_VAR(bLargeReadwrite
),
617 .flags
= FLAG_ADVANCED
,
620 .label
= "server max protocol",
623 .offset
= GLOBAL_VAR(srv_maxprotocol
),
625 .enum_list
= enum_protocol
,
626 .flags
= FLAG_ADVANCED
,
629 .label
= "max protocol",
632 .offset
= GLOBAL_VAR(srv_maxprotocol
),
634 .enum_list
= enum_protocol
,
635 .flags
= FLAG_ADVANCED
,
641 .offset
= GLOBAL_VAR(srv_maxprotocol
),
643 .enum_list
= enum_protocol
,
644 .flags
= FLAG_ADVANCED
,
647 .label
= "server min protocol",
650 .offset
= GLOBAL_VAR(srv_minprotocol
),
652 .enum_list
= enum_protocol
,
653 .flags
= FLAG_ADVANCED
,
656 .label
= "min protocol",
659 .offset
= GLOBAL_VAR(srv_minprotocol
),
661 .enum_list
= enum_protocol
,
662 .flags
= FLAG_ADVANCED
,
665 .label
= "client max protocol",
668 .offset
= GLOBAL_VAR(cli_maxprotocol
),
670 .enum_list
= enum_protocol
673 .label
= "client min protocol",
676 .offset
= GLOBAL_VAR(cli_minprotocol
),
678 .enum_list
= enum_protocol
684 .offset
= GLOBAL_VAR(bUnicode
),
692 .offset
= GLOBAL_VAR(bReadRaw
),
697 .label
= "write raw",
700 .offset
= GLOBAL_VAR(bWriteRaw
),
705 .label
= "disable netbios",
708 .offset
= GLOBAL_VAR(bDisableNetbios
),
714 .label
= "nt status support",
717 .offset
= GLOBAL_VAR(bNTStatusSupport
),
726 .offset
= GLOBAL_VAR(max_mux
),
729 .flags
= FLAG_ADVANCED
,
735 .offset
= GLOBAL_VAR(max_xmit
),
738 .flags
= FLAG_ADVANCED
,
742 .label
= "name resolve order",
745 .offset
= GLOBAL_VAR(szNameResolveOrder
),
750 .label
= "max wins ttl",
753 .offset
= GLOBAL_VAR(max_wins_ttl
),
756 .flags
= FLAG_ADVANCED
,
759 .label
= "min wins ttl",
762 .offset
= GLOBAL_VAR(min_wins_ttl
),
765 .flags
= FLAG_ADVANCED
,
768 .label
= "time server",
771 .offset
= GLOBAL_VAR(bTimeServer
),
774 .flags
= FLAG_ADVANCED
,
777 .label
= "unix extensions",
780 .offset
= GLOBAL_VAR(bUnixExtensions
),
783 .flags
= FLAG_ADVANCED
,
786 .label
= "use spnego",
789 .offset
= GLOBAL_VAR(bUseSpnego
),
794 .label
= "server signing",
797 .offset
= GLOBAL_VAR(server_signing
),
799 .enum_list
= enum_smb_signing_vals
,
800 .flags
= FLAG_ADVANCED
,
803 .label
= "client signing",
806 .offset
= GLOBAL_VAR(client_signing
),
808 .enum_list
= enum_smb_signing_vals
811 .label
= "rpc big endian",
814 .offset
= GLOBAL_VAR(bRpcBigEndian
),
820 .label
= "max connections",
823 .offset
= LOCAL_VAR(iMaxConnections
),
826 .flags
= FLAG_ADVANCED
| FLAG_SHARE
,
829 .label
= "paranoid server security",
832 .offset
= GLOBAL_VAR(paranoid_server_security
),
837 .label
= "socket options",
840 .offset
= GLOBAL_VAR(socket_options
),
846 .label
= "strict sync",
849 .offset
= LOCAL_VAR(bStrictSync
),
857 .offset
= GLOBAL_VAR(bUseMmap
),
860 .flags
= FLAG_ADVANCED
,
863 .label
= "case insensitive filesystem",
866 .offset
= LOCAL_VAR(bCIFileSystem
),
872 .label
= "max print jobs",
875 .offset
= LOCAL_VAR(iMaxPrintJobs
),
880 .label
= "printable",
883 .offset
= LOCAL_VAR(bPrint_ok
),
891 .offset
= LOCAL_VAR(bPrint_ok
),
897 .label
= "printer name",
900 .offset
= LOCAL_VAR(szPrintername
),
903 .flags
= FLAG_ADVANCED
| FLAG_PRINT
,
909 .offset
= LOCAL_VAR(szPrintername
),
916 .label
= "map system",
919 .offset
= LOCAL_VAR(bMap_system
),
924 .label
= "map hidden",
927 .offset
= LOCAL_VAR(bMap_hidden
),
932 .label
= "map archive",
935 .offset
= LOCAL_VAR(bMap_archive
),
941 .label
= "preferred master",
944 .offset
= GLOBAL_VAR(bPreferredMaster
),
946 .enum_list
= enum_bool_auto
,
947 .flags
= FLAG_BASIC
| FLAG_ADVANCED
,
950 .label
= "prefered master",
953 .offset
= GLOBAL_VAR(bPreferredMaster
),
955 .enum_list
= enum_bool_auto
,
959 .label
= "local master",
962 .offset
= GLOBAL_VAR(bLocalMaster
),
967 .label
= "browseable",
970 .offset
= LOCAL_VAR(bBrowseable
),
973 .flags
= FLAG_BASIC
| FLAG_ADVANCED
| FLAG_SHARE
| FLAG_PRINT
,
976 .label
= "browsable",
979 .offset
= LOCAL_VAR(bBrowseable
),
985 .label
= "dns proxy",
988 .offset
= GLOBAL_VAR(bWINSdnsProxy
),
993 .label
= "wins server",
996 .offset
= GLOBAL_VAR(szWINSservers
),
999 .flags
= FLAG_BASIC
| FLAG_ADVANCED
| FLAG_WIZARD
,
1002 .label
= "wins support",
1004 .p_class
= P_GLOBAL
,
1005 .offset
= GLOBAL_VAR(bWINSsupport
),
1008 .flags
= FLAG_BASIC
| FLAG_ADVANCED
| FLAG_WIZARD
,
1011 .label
= "wins hook",
1013 .p_class
= P_GLOBAL
,
1014 .offset
= GLOBAL_VAR(szWINSHook
),
1017 .flags
= FLAG_ADVANCED
,
1021 .label
= "csc policy",
1024 .offset
= LOCAL_VAR(iCSCPolicy
),
1026 .enum_list
= enum_csc_policy
,
1027 .flags
= FLAG_ADVANCED
| FLAG_SHARE
| FLAG_GLOBAL
,
1031 .label
= "strict locking",
1034 .offset
= LOCAL_VAR(iStrictLocking
),
1042 .offset
= LOCAL_VAR(bOpLocks
),
1048 .label
= "share backend",
1050 .p_class
= P_GLOBAL
,
1051 .offset
= GLOBAL_VAR(szShareBackend
),
1058 .p_class
= P_GLOBAL
,
1059 .offset
= GLOBAL_VAR(szAutoServices
),
1062 .flags
= FLAG_ADVANCED
,
1065 .label
= "auto services",
1067 .p_class
= P_GLOBAL
,
1068 .offset
= GLOBAL_VAR(szAutoServices
),
1071 .flags
= FLAG_ADVANCED
,
1074 .label
= "lock directory",
1076 .p_class
= P_GLOBAL
,
1077 .offset
= GLOBAL_VAR(szLockDir
),
1080 .flags
= FLAG_ADVANCED
,
1083 .label
= "lock dir",
1085 .p_class
= P_GLOBAL
,
1086 .offset
= GLOBAL_VAR(szLockDir
),
1092 .label
= "state directory",
1094 .p_class
= P_GLOBAL
,
1095 .offset
= GLOBAL_VAR(szStateDir
),
1098 .flags
= FLAG_ADVANCED
,
1101 .label
= "cache directory",
1103 .p_class
= P_GLOBAL
,
1104 .offset
= GLOBAL_VAR(szCacheDir
),
1107 .flags
= FLAG_ADVANCED
,
1110 .label
= "pid directory",
1112 .p_class
= P_GLOBAL
,
1113 .offset
= GLOBAL_VAR(szPidDir
),
1119 .label
= "socket address",
1121 .p_class
= P_GLOBAL
,
1122 .offset
= GLOBAL_VAR(szSocketAddress
),
1130 .offset
= LOCAL_VAR(szCopy
),
1131 .special
= handle_copy
,
1139 .offset
= LOCAL_VAR(szInclude
),
1140 .special
= handle_include
,
1145 .label
= "available",
1148 .offset
= LOCAL_VAR(bAvailable
),
1156 .offset
= LOCAL_VAR(volume
),
1159 .flags
= FLAG_ADVANCED
| FLAG_SHARE
,
1165 .offset
= LOCAL_VAR(fstype
),
1171 .label
= "panic action",
1173 .p_class
= P_GLOBAL
,
1174 .offset
= GLOBAL_VAR(panic_action
),
1180 .label
= "msdfs root",
1183 .offset
= LOCAL_VAR(bMSDfsRoot
),
1188 .label
= "host msdfs",
1190 .p_class
= P_GLOBAL
,
1191 .offset
= GLOBAL_VAR(bHostMSDfs
),
1194 .flags
= FLAG_ADVANCED
,
1197 .label
= "winbind separator",
1199 .p_class
= P_GLOBAL
,
1200 .offset
= GLOBAL_VAR(szWinbindSeparator
),
1205 .label
= "winbindd socket directory",
1207 .p_class
= P_GLOBAL
,
1208 .offset
= GLOBAL_VAR(szWinbinddSocketDirectory
),
1211 .flags
= FLAG_ADVANCED
,
1214 .label
= "winbindd privileged socket directory",
1216 .p_class
= P_GLOBAL
,
1217 .offset
= GLOBAL_VAR(szWinbinddPrivilegedSocketDirectory
),
1220 .flags
= FLAG_ADVANCED
,
1223 .label
= "winbind sealed pipes",
1225 .p_class
= P_GLOBAL
,
1226 .offset
= GLOBAL_VAR(bWinbindSealedPipes
),
1229 .flags
= FLAG_ADVANCED
,
1232 .label
= "template shell",
1234 .p_class
= P_GLOBAL
,
1235 .offset
= GLOBAL_VAR(szTemplateShell
),
1238 .flags
= FLAG_ADVANCED
,
1241 .label
= "template homedir",
1243 .p_class
= P_GLOBAL
,
1244 .offset
= GLOBAL_VAR(szTemplateHomedir
),
1247 .flags
= FLAG_ADVANCED
,
1250 .label
= "idmap trusted only",
1252 .p_class
= P_GLOBAL
,
1253 .offset
= GLOBAL_VAR(bIdmapTrustedOnly
),
1256 .flags
= FLAG_ADVANCED
,
1260 .label
= "ntp signd socket directory",
1262 .p_class
= P_GLOBAL
,
1263 .offset
= GLOBAL_VAR(szNTPSignDSocketDirectory
),
1266 .flags
= FLAG_ADVANCED
,
1269 .label
= "rndc command",
1271 .p_class
= P_GLOBAL
,
1272 .offset
= GLOBAL_VAR(szRNDCCommand
),
1275 .flags
= FLAG_ADVANCED
,
1278 .label
= "dns update command",
1280 .p_class
= P_GLOBAL
,
1281 .offset
= GLOBAL_VAR(szDNSUpdateCommand
),
1284 .flags
= FLAG_ADVANCED
,
1287 .label
= "spn update command",
1289 .p_class
= P_GLOBAL
,
1290 .offset
= GLOBAL_VAR(szSPNUpdateCommand
),
1293 .flags
= FLAG_ADVANCED
,
1296 .label
= "samba kcc command",
1298 .p_class
= P_GLOBAL
,
1299 .offset
= GLOBAL_VAR(szSambaKCCCommand
),
1302 .flags
= FLAG_ADVANCED
,
1305 .label
= "nsupdate command",
1307 .p_class
= P_GLOBAL
,
1308 .offset
= GLOBAL_VAR(szNSUpdateCommand
),
1311 .flags
= FLAG_ADVANCED
,
1314 .label
= "allow dns updates",
1316 .p_class
= P_GLOBAL
,
1317 .offset
= GLOBAL_VAR(allow_dns_updates
),
1319 .enum_list
= enum_dns_update_settings
,
1320 .flags
= FLAG_ADVANCED
,
1323 .label
= "dns forwarder",
1325 .p_class
= P_GLOBAL
,
1326 .offset
= GLOBAL_VAR(dns_forwarder
),
1329 .flags
= FLAG_ADVANCED
,
1332 .label
= "dns recursive queries",
1334 .p_class
= P_GLOBAL
,
1335 .offset
= GLOBAL_VAR(dns_recursive_queries
),
1340 {NULL
, P_BOOL
, P_NONE
, 0, NULL
, NULL
, 0}
1344 /* local variables */
1345 struct loadparm_context
{
1346 const char *szConfigFile
;
1347 struct loadparm_global
*globals
;
1348 struct loadparm_service
**services
;
1349 struct loadparm_service
*sDefault
;
1350 struct smb_iconv_handle
*iconv_handle
;
1352 struct loadparm_service
*currentService
;
1353 bool bInGlobalSection
;
1355 struct file_lists
*next
;
1360 unsigned int flags
[NUMPARAMETERS
];
1363 bool global
; /* Is this the global context, which may set
1364 * global variables such as debug level etc? */
1365 const struct loadparm_s3_helpers
*s3_fns
;
1369 struct loadparm_service
*lpcfg_default_service(struct loadparm_context
*lp_ctx
)
1371 if (lp_ctx
->s3_fns
) {
1372 return lp_ctx
->s3_fns
->get_default_loadparm_service();
1374 return lp_ctx
->sDefault
;
1378 * Convenience routine to grab string parameters into temporary memory
1379 * and run standard_sub_basic on them.
1381 * The buffers can be written to by
1382 * callers without affecting the source string.
1385 static const char *lp_string(const char *s
)
1387 #if 0 /* until REWRITE done to make thread-safe */
1388 size_t len
= s
? strlen(s
) : 0;
1392 /* The follow debug is useful for tracking down memory problems
1393 especially if you have an inner loop that is calling a lp_*()
1394 function that returns a string. Perhaps this debug should be
1395 present all the time? */
1398 DEBUG(10, ("lp_string(%s)\n", s
));
1401 #if 0 /* until REWRITE done to make thread-safe */
1403 lp_talloc
= talloc_init("lp_talloc");
1405 ret
= talloc_array(lp_talloc
, char, len
+ 100); /* leave room for substitution */
1413 strlcpy(ret
, s
, len
);
1415 if (trim_string(ret
, "\"", "\"")) {
1416 if (strchr(ret
,'"') != NULL
)
1417 strlcpy(ret
, s
, len
);
1420 standard_sub_basic(ret
,len
+100);
1427 In this section all the functions that are used to access the
1428 parameters from the rest of the program are defined
1432 * the creation of separate lpcfg_*() and lp_*() functions is to allow
1433 * for code compatibility between existing Samba4 and Samba3 code.
1436 /* this global context supports the lp_*() function varients */
1437 static struct loadparm_context
*global_loadparm_context
;
1439 #define lpcfg_default_service global_loadparm_context->sDefault
1440 #define lpcfg_global_service(i) global_loadparm_context->services[i]
1442 #define FN_GLOBAL_STRING(fn_name,var_name) \
1443 _PUBLIC_ const char *lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) { \
1444 if (lp_ctx == NULL) return NULL; \
1445 if (lp_ctx->s3_fns) { \
1446 SMB_ASSERT(lp_ctx->s3_fns->fn_name); \
1447 return lp_ctx->s3_fns->fn_name(); \
1449 return lp_ctx->globals->var_name ? lp_string(lp_ctx->globals->var_name) : ""; \
1452 #define FN_GLOBAL_CONST_STRING(fn_name,var_name) \
1453 _PUBLIC_ const char *lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) {\
1454 if (lp_ctx == NULL) return NULL; \
1455 if (lp_ctx->s3_fns) { \
1456 SMB_ASSERT(lp_ctx->s3_fns->fn_name); \
1457 return lp_ctx->s3_fns->fn_name(); \
1459 return lp_ctx->globals->var_name ? lp_string(lp_ctx->globals->var_name) : ""; \
1462 #define FN_GLOBAL_LIST(fn_name,var_name) \
1463 _PUBLIC_ const char **lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) { \
1464 if (lp_ctx == NULL) return NULL; \
1465 if (lp_ctx->s3_fns) { \
1466 SMB_ASSERT(lp_ctx->s3_fns->fn_name); \
1467 return lp_ctx->s3_fns->fn_name(); \
1469 return lp_ctx->globals->var_name; \
1472 #define FN_GLOBAL_BOOL(fn_name,var_name) \
1473 _PUBLIC_ bool lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) {\
1474 if (lp_ctx == NULL) return false; \
1475 if (lp_ctx->s3_fns) { \
1476 SMB_ASSERT(lp_ctx->s3_fns->fn_name); \
1477 return lp_ctx->s3_fns->fn_name(); \
1479 return lp_ctx->globals->var_name; \
1482 #define FN_GLOBAL_INTEGER(fn_name,var_name) \
1483 _PUBLIC_ int lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) { \
1484 if (lp_ctx->s3_fns) { \
1485 SMB_ASSERT(lp_ctx->s3_fns->fn_name); \
1486 return lp_ctx->s3_fns->fn_name(); \
1488 return lp_ctx->globals->var_name; \
1491 /* Local parameters don't need the ->s3_fns because the struct
1492 * loadparm_service is shared and lpcfg_service() checks the ->s3_fns
1494 #define FN_LOCAL_STRING(fn_name,val) \
1495 _PUBLIC_ const char *lpcfg_ ## fn_name(struct loadparm_service *service, \
1496 struct loadparm_service *sDefault) { \
1497 return(lp_string((const char *)((service != NULL && service->val != NULL) ? service->val : sDefault->val))); \
1500 #define FN_LOCAL_CONST_STRING(fn_name,val) FN_LOCAL_STRING(fn_name, val)
1502 #define FN_LOCAL_LIST(fn_name,val) \
1503 _PUBLIC_ const char **lpcfg_ ## fn_name(struct loadparm_service *service, \
1504 struct loadparm_service *sDefault) {\
1505 return(const char **)(service != NULL && service->val != NULL? service->val : sDefault->val); \
1508 #define FN_LOCAL_PARM_BOOL(fn_name, val) FN_LOCAL_BOOL(fn_name, val)
1510 #define FN_LOCAL_BOOL(fn_name,val) \
1511 _PUBLIC_ bool lpcfg_ ## fn_name(struct loadparm_service *service, \
1512 struct loadparm_service *sDefault) { \
1513 return((service != NULL)? service->val : sDefault->val); \
1516 #define FN_LOCAL_INTEGER(fn_name,val) \
1517 _PUBLIC_ int lpcfg_ ## fn_name(struct loadparm_service *service, \
1518 struct loadparm_service *sDefault) { \
1519 return((service != NULL)? service->val : sDefault->val); \
1522 #define FN_LOCAL_PARM_INTEGER(fn_name, val) FN_LOCAL_INTEGER(fn_name, val)
1524 #define FN_LOCAL_PARM_CHAR(fn_name, val) FN_LOCAL_CHAR(fn_name, val)
1526 #define FN_LOCAL_CHAR(fn_name,val) \
1527 _PUBLIC_ char lpcfg_ ## fn_name(struct loadparm_service *service, \
1528 struct loadparm_service *sDefault) { \
1529 return((service != NULL)? service->val : sDefault->val); \
1532 #include "lib/param/param_functions.c"
1534 /* These functions remain only in lib/param for now */
1535 FN_GLOBAL_BOOL(idmap_trusted_only
, bIdmapTrustedOnly
)
1536 FN_GLOBAL_BOOL(readraw
, bReadRaw
)
1537 FN_GLOBAL_BOOL(time_server
, bTimeServer
)
1538 FN_GLOBAL_BOOL(unicode
, bUnicode
)
1539 FN_GLOBAL_BOOL(writeraw
, bWriteRaw
)
1540 FN_GLOBAL_LIST(name_resolve_order
, szNameResolveOrder
)
1541 FN_GLOBAL_LIST(smb_ports
, smb_ports
)
1542 FN_GLOBAL_STRING(cachedir
, szCacheDir
)
1543 FN_GLOBAL_STRING(socket_address
, szSocketAddress
)
1544 FN_GLOBAL_STRING(statedir
, szStateDir
)
1546 /* local prototypes */
1547 static int map_parameter(const char *pszParmName
);
1548 static struct loadparm_service
*getservicebyname(struct loadparm_context
*lp_ctx
,
1549 const char *pszServiceName
);
1550 static void copy_service(struct loadparm_service
*pserviceDest
,
1551 struct loadparm_service
*pserviceSource
,
1552 struct bitmap
*pcopymapDest
);
1553 static bool lpcfg_service_ok(struct loadparm_service
*service
);
1554 static bool do_section(const char *pszSectionName
, void *);
1555 static void init_copymap(struct loadparm_service
*pservice
);
1557 /* This is a helper function for parametrical options support. */
1558 /* It returns a pointer to parametrical option value if it exists or NULL otherwise */
1559 /* Actual parametrical functions are quite simple */
1560 const char *lpcfg_get_parametric(struct loadparm_context
*lp_ctx
,
1561 struct loadparm_service
*service
,
1562 const char *type
, const char *option
)
1564 char *vfskey_tmp
= NULL
;
1565 char *vfskey
= NULL
;
1566 struct parmlist_entry
*data
;
1571 if (lp_ctx
->s3_fns
) {
1572 return lp_ctx
->s3_fns
->get_parametric(service
, type
, option
);
1575 data
= (service
== NULL
? lp_ctx
->globals
->param_opt
: service
->param_opt
);
1577 vfskey_tmp
= talloc_asprintf(NULL
, "%s:%s", type
, option
);
1578 if (vfskey_tmp
== NULL
) return NULL
;
1579 vfskey
= strlower_talloc(NULL
, vfskey_tmp
);
1580 talloc_free(vfskey_tmp
);
1583 if (strcmp(data
->key
, vfskey
) == 0) {
1584 talloc_free(vfskey
);
1590 if (service
!= NULL
) {
1591 /* Try to fetch the same option but from globals */
1592 /* but only if we are not already working with globals */
1593 for (data
= lp_ctx
->globals
->param_opt
; data
;
1594 data
= data
->next
) {
1595 if (strcmp(data
->key
, vfskey
) == 0) {
1596 talloc_free(vfskey
);
1602 talloc_free(vfskey
);
1609 * convenience routine to return int parameters.
1611 static int lp_int(const char *s
)
1615 DEBUG(0,("lp_int(%s): is called with NULL!\n",s
));
1619 return strtol(s
, NULL
, 0);
1623 * convenience routine to return unsigned long parameters.
1625 static unsigned long lp_ulong(const char *s
)
1629 DEBUG(0,("lp_ulong(%s): is called with NULL!\n",s
));
1633 return strtoul(s
, NULL
, 0);
1637 * convenience routine to return unsigned long parameters.
1639 static long lp_long(const char *s
)
1643 DEBUG(0,("lp_long(%s): is called with NULL!\n",s
));
1647 return strtol(s
, NULL
, 0);
1651 * convenience routine to return unsigned long parameters.
1653 static double lp_double(const char *s
)
1657 DEBUG(0,("lp_double(%s): is called with NULL!\n",s
));
1661 return strtod(s
, NULL
);
1665 * convenience routine to return boolean parameters.
1667 static bool lp_bool(const char *s
)
1672 DEBUG(0,("lp_bool(%s): is called with NULL!\n",s
));
1676 if (!set_boolean(s
, &ret
)) {
1677 DEBUG(0,("lp_bool(%s): value is not boolean!\n",s
));
1686 * Return parametric option from a given service. Type is a part of option before ':'
1687 * Parametric option has following syntax: 'Type: option = value'
1688 * Returned value is allocated in 'lp_talloc' context
1691 const char *lpcfg_parm_string(struct loadparm_context
*lp_ctx
,
1692 struct loadparm_service
*service
, const char *type
,
1695 const char *value
= lpcfg_get_parametric(lp_ctx
, service
, type
, option
);
1698 return lp_string(value
);
1704 * Return parametric option from a given service. Type is a part of option before ':'
1705 * Parametric option has following syntax: 'Type: option = value'
1706 * Returned value is allocated in 'lp_talloc' context
1709 const char **lpcfg_parm_string_list(TALLOC_CTX
*mem_ctx
,
1710 struct loadparm_context
*lp_ctx
,
1711 struct loadparm_service
*service
,
1713 const char *option
, const char *separator
)
1715 const char *value
= lpcfg_get_parametric(lp_ctx
, service
, type
, option
);
1718 return (const char **)str_list_make(mem_ctx
, value
, separator
);
1724 * Return parametric option from a given service. Type is a part of option before ':'
1725 * Parametric option has following syntax: 'Type: option = value'
1728 int lpcfg_parm_int(struct loadparm_context
*lp_ctx
,
1729 struct loadparm_service
*service
, const char *type
,
1730 const char *option
, int default_v
)
1732 const char *value
= lpcfg_get_parametric(lp_ctx
, service
, type
, option
);
1735 return lp_int(value
);
1741 * Return parametric option from a given service. Type is a part of
1742 * option before ':'.
1743 * Parametric option has following syntax: 'Type: option = value'.
1746 int lpcfg_parm_bytes(struct loadparm_context
*lp_ctx
,
1747 struct loadparm_service
*service
, const char *type
,
1748 const char *option
, int default_v
)
1752 const char *value
= lpcfg_get_parametric(lp_ctx
, service
, type
, option
);
1754 if (value
&& conv_str_size_error(value
, &bval
)) {
1755 if (bval
<= INT_MAX
) {
1764 * Return parametric option from a given service.
1765 * Type is a part of option before ':'
1766 * Parametric option has following syntax: 'Type: option = value'
1768 unsigned long lpcfg_parm_ulong(struct loadparm_context
*lp_ctx
,
1769 struct loadparm_service
*service
, const char *type
,
1770 const char *option
, unsigned long default_v
)
1772 const char *value
= lpcfg_get_parametric(lp_ctx
, service
, type
, option
);
1775 return lp_ulong(value
);
1780 long lpcfg_parm_long(struct loadparm_context
*lp_ctx
,
1781 struct loadparm_service
*service
, const char *type
,
1782 const char *option
, long default_v
)
1784 const char *value
= lpcfg_get_parametric(lp_ctx
, service
, type
, option
);
1787 return lp_long(value
);
1792 double lpcfg_parm_double(struct loadparm_context
*lp_ctx
,
1793 struct loadparm_service
*service
, const char *type
,
1794 const char *option
, double default_v
)
1796 const char *value
= lpcfg_get_parametric(lp_ctx
, service
, type
, option
);
1799 return lp_double(value
);
1805 * Return parametric option from a given service. Type is a part of option before ':'
1806 * Parametric option has following syntax: 'Type: option = value'
1809 bool lpcfg_parm_bool(struct loadparm_context
*lp_ctx
,
1810 struct loadparm_service
*service
, const char *type
,
1811 const char *option
, bool default_v
)
1813 const char *value
= lpcfg_get_parametric(lp_ctx
, service
, type
, option
);
1816 return lp_bool(value
);
1823 * Initialise a service to the defaults.
1826 static struct loadparm_service
*init_service(TALLOC_CTX
*mem_ctx
, struct loadparm_service
*sDefault
)
1828 struct loadparm_service
*pservice
=
1829 talloc_zero(mem_ctx
, struct loadparm_service
);
1830 copy_service(pservice
, sDefault
, NULL
);
1835 * Set a string value, deallocating any existing space, and allocing the space
1838 static bool lpcfg_string_set(TALLOC_CTX
*mem_ctx
, char **dest
, const char *src
)
1845 *dest
= talloc_strdup(mem_ctx
, src
);
1846 if ((*dest
) == NULL
) {
1847 DEBUG(0,("Out of memory in string_set\n"));
1855 * Set a string value, deallocating any existing space, and allocing the space
1858 static bool lpcfg_string_set_upper(TALLOC_CTX
*mem_ctx
, char **dest
, const char *src
)
1865 *dest
= strupper_talloc(mem_ctx
, src
);
1866 if ((*dest
) == NULL
) {
1867 DEBUG(0,("Out of memory in string_set_upper\n"));
1877 * Add a new service to the services array initialising it with the given
1881 struct loadparm_service
*lpcfg_add_service(struct loadparm_context
*lp_ctx
,
1882 const struct loadparm_service
*pservice
,
1886 struct loadparm_service tservice
;
1887 int num_to_alloc
= lp_ctx
->iNumServices
+ 1;
1888 struct parmlist_entry
*data
, *pdata
;
1890 if (pservice
== NULL
) {
1891 pservice
= lp_ctx
->sDefault
;
1894 tservice
= *pservice
;
1896 /* it might already exist */
1898 struct loadparm_service
*service
= getservicebyname(lp_ctx
,
1900 if (service
!= NULL
) {
1901 /* Clean all parametric options for service */
1902 /* They will be added during parsing again */
1903 data
= service
->param_opt
;
1909 service
->param_opt
= NULL
;
1914 /* find an invalid one */
1915 for (i
= 0; i
< lp_ctx
->iNumServices
; i
++)
1916 if (lp_ctx
->services
[i
] == NULL
)
1919 /* if not, then create one */
1920 if (i
== lp_ctx
->iNumServices
) {
1921 struct loadparm_service
**tsp
;
1923 tsp
= talloc_realloc(lp_ctx
, lp_ctx
->services
, struct loadparm_service
*, num_to_alloc
);
1926 DEBUG(0,("lpcfg_add_service: failed to enlarge services!\n"));
1929 lp_ctx
->services
= tsp
;
1930 lp_ctx
->services
[lp_ctx
->iNumServices
] = NULL
;
1933 lp_ctx
->iNumServices
++;
1936 lp_ctx
->services
[i
] = init_service(lp_ctx
->services
, lp_ctx
->sDefault
);
1937 if (lp_ctx
->services
[i
] == NULL
) {
1938 DEBUG(0,("lpcfg_add_service: out of memory!\n"));
1941 copy_service(lp_ctx
->services
[i
], &tservice
, NULL
);
1943 lpcfg_string_set(lp_ctx
->services
[i
], &lp_ctx
->services
[i
]->szService
, name
);
1944 return lp_ctx
->services
[i
];
1948 * Add a new home service, with the specified home directory, defaults coming
1949 * from service ifrom.
1952 bool lpcfg_add_home(struct loadparm_context
*lp_ctx
,
1953 const char *pszHomename
,
1954 struct loadparm_service
*default_service
,
1955 const char *user
, const char *pszHomedir
)
1957 struct loadparm_service
*service
;
1959 service
= lpcfg_add_service(lp_ctx
, default_service
, pszHomename
);
1961 if (service
== NULL
)
1964 if (!(*(default_service
->szPath
))
1965 || strequal(default_service
->szPath
, lp_ctx
->sDefault
->szPath
)) {
1966 service
->szPath
= talloc_strdup(service
, pszHomedir
);
1968 service
->szPath
= string_sub_talloc(service
, lpcfg_pathname(default_service
, lp_ctx
->sDefault
), "%H", pszHomedir
);
1971 if (!(*(service
->comment
))) {
1972 service
->comment
= talloc_asprintf(service
, "Home directory of %s", user
);
1974 service
->bAvailable
= default_service
->bAvailable
;
1975 service
->bBrowseable
= default_service
->bBrowseable
;
1977 DEBUG(3, ("adding home's share [%s] for user '%s' at '%s'\n",
1978 pszHomename
, user
, service
->szPath
));
1984 * Add a new printer service, with defaults coming from service iFrom.
1987 bool lpcfg_add_printer(struct loadparm_context
*lp_ctx
,
1988 const char *pszPrintername
,
1989 struct loadparm_service
*default_service
)
1991 const char *comment
= "From Printcap";
1992 struct loadparm_service
*service
;
1993 service
= lpcfg_add_service(lp_ctx
, default_service
, pszPrintername
);
1995 if (service
== NULL
)
1998 /* note that we do NOT default the availability flag to True - */
1999 /* we take it from the default service passed. This allows all */
2000 /* dynamic printers to be disabled by disabling the [printers] */
2001 /* entry (if/when the 'available' keyword is implemented!). */
2003 /* the printer name is set to the service name. */
2004 lpcfg_string_set(service
, &service
->szPrintername
, pszPrintername
);
2005 lpcfg_string_set(service
, &service
->comment
, comment
);
2006 service
->bBrowseable
= default_service
->bBrowseable
;
2007 /* Printers cannot be read_only. */
2008 service
->bRead_only
= false;
2009 /* Printer services must be printable. */
2010 service
->bPrint_ok
= true;
2012 DEBUG(3, ("adding printer service %s\n", pszPrintername
));
2018 * Map a parameter's string representation to something we can use.
2019 * Returns False if the parameter string is not recognised, else TRUE.
2022 static int map_parameter(const char *pszParmName
)
2026 if (*pszParmName
== '-')
2029 for (iIndex
= 0; parm_table
[iIndex
].label
; iIndex
++)
2030 if (strwicmp(parm_table
[iIndex
].label
, pszParmName
) == 0)
2033 /* Warn only if it isn't parametric option */
2034 if (strchr(pszParmName
, ':') == NULL
)
2035 DEBUG(0, ("Unknown parameter encountered: \"%s\"\n", pszParmName
));
2036 /* We do return 'fail' for parametric options as well because they are
2037 stored in different storage
2044 return the parameter structure for a parameter
2046 struct parm_struct
*lpcfg_parm_struct(struct loadparm_context
*lp_ctx
, const char *name
)
2050 if (lp_ctx
->s3_fns
) {
2051 return lp_ctx
->s3_fns
->get_parm_struct(name
);
2054 parmnum
= map_parameter(name
);
2055 if (parmnum
== -1) return NULL
;
2056 return &parm_table
[parmnum
];
2060 return the parameter pointer for a parameter
2062 void *lpcfg_parm_ptr(struct loadparm_context
*lp_ctx
,
2063 struct loadparm_service
*service
, struct parm_struct
*parm
)
2065 if (lp_ctx
->s3_fns
) {
2066 return lp_ctx
->s3_fns
->get_parm_ptr(service
, parm
);
2069 if (service
== NULL
) {
2070 if (parm
->p_class
== P_LOCAL
)
2071 return ((char *)lp_ctx
->sDefault
)+parm
->offset
;
2072 else if (parm
->p_class
== P_GLOBAL
)
2073 return ((char *)lp_ctx
->globals
)+parm
->offset
;
2076 return ((char *)service
) + parm
->offset
;
2081 return the parameter pointer for a parameter
2083 bool lpcfg_parm_is_cmdline(struct loadparm_context
*lp_ctx
, const char *name
)
2087 if (lp_ctx
->s3_fns
) {
2088 struct parm_struct
*parm
= lp_ctx
->s3_fns
->get_parm_struct(name
);
2090 return parm
->flags
& FLAG_CMDLINE
;
2095 parmnum
= map_parameter(name
);
2096 if (parmnum
== -1) return false;
2098 return lp_ctx
->flags
[parmnum
] & FLAG_CMDLINE
;
2102 * Find a service by name. Otherwise works like get_service.
2105 static struct loadparm_service
*getservicebyname(struct loadparm_context
*lp_ctx
,
2106 const char *pszServiceName
)
2110 if (lp_ctx
->s3_fns
) {
2111 return lp_ctx
->s3_fns
->get_service(pszServiceName
);
2114 for (iService
= lp_ctx
->iNumServices
- 1; iService
>= 0; iService
--)
2115 if (lp_ctx
->services
[iService
] != NULL
&&
2116 strwicmp(lp_ctx
->services
[iService
]->szService
, pszServiceName
) == 0) {
2117 return lp_ctx
->services
[iService
];
2124 * Copy a service structure to another.
2125 * If pcopymapDest is NULL then copy all fields
2128 static void copy_service(struct loadparm_service
*pserviceDest
,
2129 struct loadparm_service
*pserviceSource
,
2130 struct bitmap
*pcopymapDest
)
2133 bool bcopyall
= (pcopymapDest
== NULL
);
2134 struct parmlist_entry
*data
, *pdata
, *paramo
;
2137 for (i
= 0; parm_table
[i
].label
; i
++)
2138 if (parm_table
[i
].p_class
== P_LOCAL
&&
2139 (bcopyall
|| bitmap_query(pcopymapDest
, i
))) {
2141 ((char *)pserviceSource
) + parm_table
[i
].offset
;
2143 ((char *)pserviceDest
) + parm_table
[i
].offset
;
2145 switch (parm_table
[i
].type
) {
2147 *(bool *)dest_ptr
= *(bool *)src_ptr
;
2154 *(int *)dest_ptr
= *(int *)src_ptr
;
2158 lpcfg_string_set(pserviceDest
,
2164 lpcfg_string_set_upper(pserviceDest
,
2169 *(const char ***)dest_ptr
= (const char **)str_list_copy(pserviceDest
,
2170 *(const char ***)src_ptr
);
2178 init_copymap(pserviceDest
);
2179 if (pserviceSource
->copymap
)
2180 bitmap_copy(pserviceDest
->copymap
,
2181 pserviceSource
->copymap
);
2184 data
= pserviceSource
->param_opt
;
2187 pdata
= pserviceDest
->param_opt
;
2188 /* Traverse destination */
2190 /* If we already have same option, override it */
2191 if (strcmp(pdata
->key
, data
->key
) == 0) {
2192 talloc_free(pdata
->value
);
2193 pdata
->value
= talloc_strdup(pdata
,
2198 pdata
= pdata
->next
;
2201 paramo
= talloc_zero(pserviceDest
, struct parmlist_entry
);
2204 paramo
->key
= talloc_strdup(paramo
, data
->key
);
2205 paramo
->value
= talloc_strdup(paramo
, data
->value
);
2206 DLIST_ADD(pserviceDest
->param_opt
, paramo
);
2213 * Check a service for consistency. Return False if the service is in any way
2214 * incomplete or faulty, else True.
2216 static bool lpcfg_service_ok(struct loadparm_service
*service
)
2221 if (service
->szService
[0] == '\0') {
2222 DEBUG(0, ("The following message indicates an internal error:\n"));
2223 DEBUG(0, ("No service name in service entry.\n"));
2227 /* The [printers] entry MUST be printable. I'm all for flexibility, but */
2228 /* I can't see why you'd want a non-printable printer service... */
2229 if (strwicmp(service
->szService
, PRINTERS_NAME
) == 0) {
2230 if (!service
->bPrint_ok
) {
2231 DEBUG(0, ("WARNING: [%s] service MUST be printable!\n",
2232 service
->szService
));
2233 service
->bPrint_ok
= true;
2235 /* [printers] service must also be non-browsable. */
2236 if (service
->bBrowseable
)
2237 service
->bBrowseable
= false;
2240 /* If a service is flagged unavailable, log the fact at level 0. */
2241 if (!service
->bAvailable
)
2242 DEBUG(1, ("NOTE: Service %s is flagged unavailable.\n",
2243 service
->szService
));
2249 /*******************************************************************
2250 Keep a linked list of all config files so we know when one has changed
2251 it's date and needs to be reloaded.
2252 ********************************************************************/
2254 static void add_to_file_list(struct loadparm_context
*lp_ctx
,
2255 const char *fname
, const char *subfname
)
2257 struct file_lists
*f
= lp_ctx
->file_lists
;
2260 if (f
->name
&& !strcmp(f
->name
, fname
))
2266 f
= talloc(lp_ctx
, struct file_lists
);
2269 f
->next
= lp_ctx
->file_lists
;
2270 f
->name
= talloc_strdup(f
, fname
);
2275 f
->subfname
= talloc_strdup(f
, subfname
);
2280 lp_ctx
->file_lists
= f
;
2281 f
->modtime
= file_modtime(subfname
);
2283 time_t t
= file_modtime(subfname
);
2289 /*******************************************************************
2290 Check if a config file has changed date.
2291 ********************************************************************/
2292 bool lpcfg_file_list_changed(struct loadparm_context
*lp_ctx
)
2294 struct file_lists
*f
;
2295 DEBUG(6, ("lp_file_list_changed()\n"));
2297 for (f
= lp_ctx
->file_lists
; f
!= NULL
; f
= f
->next
) {
2301 n2
= standard_sub_basic(lp_ctx
, f
->name
);
2303 DEBUGADD(6, ("file %s -> %s last mod_time: %s\n",
2304 f
->name
, n2
, ctime(&f
->modtime
)));
2306 mod_time
= file_modtime(n2
);
2308 if (mod_time
&& ((f
->modtime
!= mod_time
) || (f
->subfname
== NULL
) || (strcmp(n2
, f
->subfname
) != 0))) {
2309 DEBUGADD(6, ("file %s modified: %s\n", n2
,
2311 f
->modtime
= mod_time
;
2312 talloc_free(f
->subfname
);
2313 f
->subfname
= talloc_strdup(f
, n2
);
2320 /***************************************************************************
2321 Handle the "realm" parameter
2322 ***************************************************************************/
2324 static bool handle_realm(struct loadparm_context
*lp_ctx
, int unused
,
2325 const char *pszParmValue
, char **ptr
)
2327 lpcfg_string_set(lp_ctx
, ptr
, pszParmValue
);
2329 talloc_free(lp_ctx
->globals
->szRealm_upper
);
2330 talloc_free(lp_ctx
->globals
->szRealm_lower
);
2332 lp_ctx
->globals
->szRealm_upper
= strupper_talloc(lp_ctx
, pszParmValue
);
2333 lp_ctx
->globals
->szRealm_lower
= strlower_talloc(lp_ctx
, pszParmValue
);
2338 /***************************************************************************
2339 Handle the include operation.
2340 ***************************************************************************/
2342 static bool handle_include(struct loadparm_context
*lp_ctx
, int unused
,
2343 const char *pszParmValue
, char **ptr
)
2345 char *fname
= standard_sub_basic(lp_ctx
, pszParmValue
);
2347 add_to_file_list(lp_ctx
, pszParmValue
, fname
);
2349 lpcfg_string_set(lp_ctx
, ptr
, fname
);
2351 if (file_exist(fname
))
2352 return pm_process(fname
, do_section
, do_parameter
, lp_ctx
);
2354 DEBUG(2, ("Can't find include file %s\n", fname
));
2359 /***************************************************************************
2360 Handle the interpretation of the copy parameter.
2361 ***************************************************************************/
2363 static bool handle_copy(struct loadparm_context
*lp_ctx
, int unused
,
2364 const char *pszParmValue
, char **ptr
)
2367 struct loadparm_service
*serviceTemp
;
2369 lpcfg_string_set(lp_ctx
, ptr
, pszParmValue
);
2373 DEBUG(3, ("Copying service from service %s\n", pszParmValue
));
2375 if ((serviceTemp
= getservicebyname(lp_ctx
, pszParmValue
)) != NULL
) {
2376 if (serviceTemp
== lp_ctx
->currentService
) {
2377 DEBUG(0, ("Can't copy service %s - unable to copy self!\n", pszParmValue
));
2379 copy_service(lp_ctx
->currentService
,
2381 lp_ctx
->currentService
->copymap
);
2385 DEBUG(0, ("Unable to copy service - source not found: %s\n",
2393 static bool handle_debuglevel(struct loadparm_context
*lp_ctx
, int unused
,
2394 const char *pszParmValue
, char **ptr
)
2397 lpcfg_string_set(lp_ctx
, ptr
, pszParmValue
);
2398 if (lp_ctx
->global
) {
2399 return debug_parse_levels(pszParmValue
);
2404 static bool handle_logfile(struct loadparm_context
*lp_ctx
, int unused
,
2405 const char *pszParmValue
, char **ptr
)
2407 debug_set_logfile(pszParmValue
);
2408 if (lp_ctx
->global
) {
2409 lpcfg_string_set(lp_ctx
, ptr
, pszParmValue
);
2414 /***************************************************************************
2415 Initialise a copymap.
2416 ***************************************************************************/
2418 static void init_copymap(struct loadparm_service
*pservice
)
2422 TALLOC_FREE(pservice
->copymap
);
2424 pservice
->copymap
= bitmap_talloc(NULL
, NUMPARAMETERS
);
2425 if (!pservice
->copymap
)
2427 ("Couldn't allocate copymap!! (size %d)\n",
2428 (int)NUMPARAMETERS
));
2430 for (i
= 0; i
< NUMPARAMETERS
; i
++)
2431 bitmap_set(pservice
->copymap
, i
);
2435 * Process a parametric option
2437 static bool lp_do_parameter_parametric(struct loadparm_context
*lp_ctx
,
2438 struct loadparm_service
*service
,
2439 const char *pszParmName
,
2440 const char *pszParmValue
, int flags
)
2442 struct parmlist_entry
*paramo
, *data
;
2444 TALLOC_CTX
*mem_ctx
;
2446 while (isspace((unsigned char)*pszParmName
)) {
2450 name
= strlower_talloc(lp_ctx
, pszParmName
);
2451 if (!name
) return false;
2453 if (service
== NULL
) {
2454 data
= lp_ctx
->globals
->param_opt
;
2455 mem_ctx
= lp_ctx
->globals
;
2457 data
= service
->param_opt
;
2461 /* Traverse destination */
2462 for (paramo
=data
; paramo
; paramo
=paramo
->next
) {
2463 /* If we already have the option set, override it unless
2464 it was a command line option and the new one isn't */
2465 if (strcmp(paramo
->key
, name
) == 0) {
2466 if ((paramo
->priority
& FLAG_CMDLINE
) &&
2467 !(flags
& FLAG_CMDLINE
)) {
2472 talloc_free(paramo
->value
);
2473 paramo
->value
= talloc_strdup(paramo
, pszParmValue
);
2474 paramo
->priority
= flags
;
2480 paramo
= talloc_zero(mem_ctx
, struct parmlist_entry
);
2483 paramo
->key
= talloc_strdup(paramo
, name
);
2484 paramo
->value
= talloc_strdup(paramo
, pszParmValue
);
2485 paramo
->priority
= flags
;
2486 if (service
== NULL
) {
2487 DLIST_ADD(lp_ctx
->globals
->param_opt
, paramo
);
2489 DLIST_ADD(service
->param_opt
, paramo
);
2497 static bool set_variable(TALLOC_CTX
*mem_ctx
, int parmnum
, void *parm_ptr
,
2498 const char *pszParmName
, const char *pszParmValue
,
2499 struct loadparm_context
*lp_ctx
, bool on_globals
)
2502 /* if it is a special case then go ahead */
2503 if (parm_table
[parmnum
].special
) {
2505 ret
= parm_table
[parmnum
].special(lp_ctx
, -1, pszParmValue
,
2510 goto mark_non_default
;
2513 /* now switch on the type of variable it is */
2514 switch (parm_table
[parmnum
].type
)
2518 if (!set_boolean(pszParmValue
, &b
)) {
2519 DEBUG(0,("lp_do_parameter(%s): value is not boolean!\n", pszParmValue
));
2522 *(bool *)parm_ptr
= b
;
2528 if (!set_boolean(pszParmValue
, &b
)) {
2529 DEBUG(0,("lp_do_parameter(%s): value is not boolean!\n", pszParmValue
));
2532 *(bool *)parm_ptr
= !b
;
2537 *(int *)parm_ptr
= atoi(pszParmValue
);
2541 *(char *)parm_ptr
= *pszParmValue
;
2545 *(int *)parm_ptr
= strtol(pszParmValue
, NULL
, 8);
2551 if (conv_str_size_error(pszParmValue
, &val
)) {
2552 if (val
<= INT_MAX
) {
2553 *(int *)parm_ptr
= (int)val
;
2558 DEBUG(0,("lp_do_parameter(%s): value is not "
2559 "a valid size specifier!\n", pszParmValue
));
2564 *(const char ***)parm_ptr
= (const char **)str_list_make(mem_ctx
,
2565 pszParmValue
, NULL
);
2569 char **new_list
= str_list_make(mem_ctx
,
2570 pszParmValue
, NULL
);
2571 for (i
=0; new_list
[i
]; i
++) {
2572 if (new_list
[i
][0] == '+' && new_list
[i
][1]) {
2573 if (!str_list_check(*(const char ***)parm_ptr
,
2575 *(const char ***)parm_ptr
= str_list_add(*(const char ***)parm_ptr
,
2578 } else if (new_list
[i
][0] == '-' && new_list
[i
][1]) {
2579 str_list_remove(*(const char ***)parm_ptr
,
2583 DEBUG(0, ("Unsupported list syntax for: %s = %s\n",
2584 pszParmName
, pszParmValue
));
2587 *(const char ***)parm_ptr
= (const char **) new_list
;
2594 lpcfg_string_set(mem_ctx
, (char **)parm_ptr
, pszParmValue
);
2598 lpcfg_string_set_upper(mem_ctx
, (char **)parm_ptr
, pszParmValue
);
2602 for (i
= 0; parm_table
[parmnum
].enum_list
[i
].name
; i
++) {
2605 parm_table
[parmnum
].enum_list
[i
].name
)) {
2607 parm_table
[parmnum
].
2612 if (!parm_table
[parmnum
].enum_list
[i
].name
) {
2613 DEBUG(0,("Unknown enumerated value '%s' for '%s'\n",
2614 pszParmValue
, pszParmName
));
2624 if (on_globals
&& (lp_ctx
->flags
[parmnum
] & FLAG_DEFAULT
)) {
2625 lp_ctx
->flags
[parmnum
] &= ~FLAG_DEFAULT
;
2626 /* we have to also unset FLAG_DEFAULT on aliases */
2627 for (i
=parmnum
-1;i
>=0 && parm_table
[i
].offset
== parm_table
[parmnum
].offset
;i
--) {
2628 lp_ctx
->flags
[i
] &= ~FLAG_DEFAULT
;
2630 for (i
=parmnum
+1;i
<NUMPARAMETERS
&& parm_table
[i
].offset
== parm_table
[parmnum
].offset
;i
++) {
2631 lp_ctx
->flags
[i
] &= ~FLAG_DEFAULT
;
2638 bool lpcfg_do_global_parameter(struct loadparm_context
*lp_ctx
,
2639 const char *pszParmName
, const char *pszParmValue
)
2641 int parmnum
= map_parameter(pszParmName
);
2645 if (strchr(pszParmName
, ':')) {
2646 return lp_do_parameter_parametric(lp_ctx
, NULL
, pszParmName
, pszParmValue
, 0);
2648 DEBUG(0, ("Ignoring unknown parameter \"%s\"\n", pszParmName
));
2652 /* if the flag has been set on the command line, then don't allow override,
2653 but don't report an error */
2654 if (lp_ctx
->flags
[parmnum
] & FLAG_CMDLINE
) {
2658 parm_ptr
= lpcfg_parm_ptr(lp_ctx
, NULL
, &parm_table
[parmnum
]);
2660 return set_variable(lp_ctx
->globals
, parmnum
, parm_ptr
,
2661 pszParmName
, pszParmValue
, lp_ctx
, true);
2664 bool lpcfg_do_service_parameter(struct loadparm_context
*lp_ctx
,
2665 struct loadparm_service
*service
,
2666 const char *pszParmName
, const char *pszParmValue
)
2670 int parmnum
= map_parameter(pszParmName
);
2673 if (strchr(pszParmName
, ':')) {
2674 return lp_do_parameter_parametric(lp_ctx
, service
, pszParmName
, pszParmValue
, 0);
2676 DEBUG(0, ("Ignoring unknown parameter \"%s\"\n", pszParmName
));
2680 /* if the flag has been set on the command line, then don't allow override,
2681 but don't report an error */
2682 if (lp_ctx
->flags
[parmnum
] & FLAG_CMDLINE
) {
2686 if (parm_table
[parmnum
].p_class
== P_GLOBAL
) {
2688 ("Global parameter %s found in service section!\n",
2692 parm_ptr
= ((char *)service
) + parm_table
[parmnum
].offset
;
2694 if (!service
->copymap
)
2695 init_copymap(service
);
2697 /* this handles the aliases - set the copymap for other
2698 * entries with the same data pointer */
2699 for (i
= 0; parm_table
[i
].label
; i
++)
2700 if (parm_table
[i
].offset
== parm_table
[parmnum
].offset
&&
2701 parm_table
[i
].p_class
== parm_table
[parmnum
].p_class
)
2702 bitmap_clear(service
->copymap
, i
);
2704 return set_variable(service
, parmnum
, parm_ptr
, pszParmName
,
2705 pszParmValue
, lp_ctx
, false);
2709 * Process a parameter.
2712 static bool do_parameter(const char *pszParmName
, const char *pszParmValue
,
2715 struct loadparm_context
*lp_ctx
= (struct loadparm_context
*)userdata
;
2717 if (lp_ctx
->bInGlobalSection
)
2718 return lpcfg_do_global_parameter(lp_ctx
, pszParmName
,
2721 return lpcfg_do_service_parameter(lp_ctx
, lp_ctx
->currentService
,
2722 pszParmName
, pszParmValue
);
2726 variable argument do parameter
2728 bool lpcfg_do_global_parameter_var(struct loadparm_context
*lp_ctx
, const char *pszParmName
, const char *fmt
, ...) PRINTF_ATTRIBUTE(3, 4);
2729 bool lpcfg_do_global_parameter_var(struct loadparm_context
*lp_ctx
,
2730 const char *pszParmName
, const char *fmt
, ...)
2737 s
= talloc_vasprintf(NULL
, fmt
, ap
);
2739 ret
= lpcfg_do_global_parameter(lp_ctx
, pszParmName
, s
);
2746 set a parameter from the commandline - this is called from command line parameter
2747 parsing code. It sets the parameter then marks the parameter as unable to be modified
2748 by smb.conf processing
2750 bool lpcfg_set_cmdline(struct loadparm_context
*lp_ctx
, const char *pszParmName
,
2751 const char *pszParmValue
)
2756 if (lp_ctx
->s3_fns
) {
2757 return lp_ctx
->s3_fns
->set_cmdline(pszParmName
, pszParmValue
);
2760 parmnum
= map_parameter(pszParmName
);
2762 while (isspace((unsigned char)*pszParmValue
)) pszParmValue
++;
2765 if (parmnum
< 0 && strchr(pszParmName
, ':')) {
2766 /* set a parametric option */
2767 return lp_do_parameter_parametric(lp_ctx
, NULL
, pszParmName
,
2768 pszParmValue
, FLAG_CMDLINE
);
2772 DEBUG(0,("Unknown option '%s'\n", pszParmName
));
2776 /* reset the CMDLINE flag in case this has been called before */
2777 lp_ctx
->flags
[parmnum
] &= ~FLAG_CMDLINE
;
2779 if (!lpcfg_do_global_parameter(lp_ctx
, pszParmName
, pszParmValue
)) {
2783 lp_ctx
->flags
[parmnum
] |= FLAG_CMDLINE
;
2785 /* we have to also set FLAG_CMDLINE on aliases */
2786 for (i
=parmnum
-1;i
>=0 && parm_table
[i
].offset
== parm_table
[parmnum
].offset
;i
--) {
2787 lp_ctx
->flags
[i
] |= FLAG_CMDLINE
;
2789 for (i
=parmnum
+1;i
<NUMPARAMETERS
&& parm_table
[i
].offset
== parm_table
[parmnum
].offset
;i
++) {
2790 lp_ctx
->flags
[i
] |= FLAG_CMDLINE
;
2797 set a option from the commandline in 'a=b' format. Use to support --option
2799 bool lpcfg_set_option(struct loadparm_context
*lp_ctx
, const char *option
)
2804 s
= talloc_strdup(NULL
, option
);
2817 ret
= lpcfg_set_cmdline(lp_ctx
, s
, p
+1);
2823 #define BOOLSTR(b) ((b) ? "Yes" : "No")
2826 * Print a parameter of the specified type.
2829 static void print_parameter(struct parm_struct
*p
, void *ptr
, FILE * f
)
2831 /* For the seperation of lists values that we print below */
2832 const char *list_sep
= ", ";
2837 for (i
= 0; p
->enum_list
[i
].name
; i
++) {
2838 if (*(int *)ptr
== p
->enum_list
[i
].value
) {
2840 p
->enum_list
[i
].name
);
2847 fprintf(f
, "%s", BOOLSTR(*(bool *)ptr
));
2851 fprintf(f
, "%s", BOOLSTR(!*(bool *)ptr
));
2856 fprintf(f
, "%d", *(int *)ptr
);
2860 fprintf(f
, "%c", *(char *)ptr
);
2864 int val
= *(int *)ptr
;
2868 fprintf(f
, "0%o", val
);
2877 if ((char ***)ptr
&& *(char ***)ptr
) {
2878 char **list
= *(char ***)ptr
;
2879 for (; *list
; list
++) {
2880 /* surround strings with whitespace in double quotes */
2881 if (*(list
+1) == NULL
) {
2882 /* last item, no extra separator */
2885 if ( strchr_m( *list
, ' ' ) ) {
2886 fprintf(f
, "\"%s\"%s", *list
, list_sep
);
2888 fprintf(f
, "%s%s", *list
, list_sep
);
2896 if (*(char **)ptr
) {
2897 fprintf(f
, "%s", *(char **)ptr
);
2906 * Check if two parameters are equal.
2909 static bool equal_parameter(parm_type type
, void *ptr1
, void *ptr2
)
2914 return (*((bool *)ptr1
) == *((bool *)ptr2
));
2920 return (*((int *)ptr1
) == *((int *)ptr2
));
2923 return (*((char *)ptr1
) == *((char *)ptr2
));
2927 return str_list_equal(*(const char ***)ptr1
, *(const char ***)ptr2
);
2932 char *p1
= *(char **)ptr1
, *p2
= *(char **)ptr2
;
2937 return (p1
== p2
|| strequal(p1
, p2
));
2946 * Process a new section (service).
2948 * At this stage all sections are services.
2949 * Later we'll have special sections that permit server parameters to be set.
2950 * Returns True on success, False on failure.
2953 static bool do_section(const char *pszSectionName
, void *userdata
)
2955 struct loadparm_context
*lp_ctx
= (struct loadparm_context
*)userdata
;
2957 bool isglobal
= ((strwicmp(pszSectionName
, GLOBAL_NAME
) == 0) ||
2958 (strwicmp(pszSectionName
, GLOBAL_NAME2
) == 0));
2961 /* if we've just struck a global section, note the fact. */
2962 lp_ctx
->bInGlobalSection
= isglobal
;
2964 /* check for multiple global sections */
2965 if (lp_ctx
->bInGlobalSection
) {
2966 DEBUG(4, ("Processing section \"[%s]\"\n", pszSectionName
));
2970 /* if we have a current service, tidy it up before moving on */
2973 if (lp_ctx
->currentService
!= NULL
)
2974 bRetval
= lpcfg_service_ok(lp_ctx
->currentService
);
2976 /* if all is still well, move to the next record in the services array */
2978 /* We put this here to avoid an odd message order if messages are */
2979 /* issued by the post-processing of a previous section. */
2980 DEBUG(4, ("Processing section \"[%s]\"\n", pszSectionName
));
2982 if ((lp_ctx
->currentService
= lpcfg_add_service(lp_ctx
, lp_ctx
->sDefault
,
2985 DEBUG(0, ("Failed to add a new service\n"));
2995 * Determine if a particular base parameter is currently set to the default value.
2998 static bool is_default(struct loadparm_service
*sDefault
, int i
)
3000 void *def_ptr
= ((char *)sDefault
) + parm_table
[i
].offset
;
3001 if (!defaults_saved
)
3003 switch (parm_table
[i
].type
) {
3006 return str_list_equal((const char **)parm_table
[i
].def
.lvalue
,
3007 (const char **)def_ptr
);
3010 return strequal(parm_table
[i
].def
.svalue
,
3014 return parm_table
[i
].def
.bvalue
==
3021 return parm_table
[i
].def
.ivalue
==
3030 *Display the contents of the global structure.
3033 static void dump_globals(struct loadparm_context
*lp_ctx
, FILE *f
,
3037 struct parmlist_entry
*data
;
3039 fprintf(f
, "# Global parameters\n[global]\n");
3041 for (i
= 0; parm_table
[i
].label
; i
++)
3042 if (parm_table
[i
].p_class
== P_GLOBAL
&&
3043 (i
== 0 || (parm_table
[i
].offset
!= parm_table
[i
- 1].offset
))) {
3044 if (!show_defaults
&& (lp_ctx
->flags
[i
] & FLAG_DEFAULT
))
3046 fprintf(f
, "\t%s = ", parm_table
[i
].label
);
3047 print_parameter(&parm_table
[i
], lpcfg_parm_ptr(lp_ctx
, NULL
, &parm_table
[i
]), f
);
3050 if (lp_ctx
->globals
->param_opt
!= NULL
) {
3051 for (data
= lp_ctx
->globals
->param_opt
; data
;
3052 data
= data
->next
) {
3053 if (!show_defaults
&& (data
->priority
& FLAG_DEFAULT
)) {
3056 fprintf(f
, "\t%s = %s\n", data
->key
, data
->value
);
3063 * Display the contents of a single services record.
3066 static void dump_a_service(struct loadparm_service
* pService
, struct loadparm_service
*sDefault
, FILE * f
,
3067 unsigned int *flags
)
3070 struct parmlist_entry
*data
;
3072 if (pService
!= sDefault
)
3073 fprintf(f
, "\n[%s]\n", pService
->szService
);
3075 for (i
= 0; parm_table
[i
].label
; i
++) {
3076 if (parm_table
[i
].p_class
== P_LOCAL
&&
3077 (*parm_table
[i
].label
!= '-') &&
3078 (i
== 0 || (parm_table
[i
].offset
!= parm_table
[i
- 1].offset
)))
3080 if (pService
== sDefault
) {
3081 if (flags
&& (flags
[i
] & FLAG_DEFAULT
)) {
3084 if (defaults_saved
) {
3085 if (is_default(sDefault
, i
)) {
3090 if (equal_parameter(parm_table
[i
].type
,
3091 ((char *)pService
) +
3092 parm_table
[i
].offset
,
3093 ((char *)sDefault
) +
3094 parm_table
[i
].offset
))
3098 fprintf(f
, "\t%s = ", parm_table
[i
].label
);
3099 print_parameter(&parm_table
[i
],
3100 ((char *)pService
) + parm_table
[i
].offset
, f
);
3104 if (pService
->param_opt
!= NULL
) {
3105 for (data
= pService
->param_opt
; data
; data
= data
->next
) {
3106 fprintf(f
, "\t%s = %s\n", data
->key
, data
->value
);
3111 bool lpcfg_dump_a_parameter(struct loadparm_context
*lp_ctx
,
3112 struct loadparm_service
*service
,
3113 const char *parm_name
, FILE * f
)
3115 struct parm_struct
*parm
;
3118 parm
= lpcfg_parm_struct(lp_ctx
, parm_name
);
3123 ptr
= lpcfg_parm_ptr(lp_ctx
, service
,parm
);
3125 print_parameter(parm
, ptr
, f
);
3131 * Return info about the next parameter in a service.
3132 * snum==-1 gives the globals.
3133 * Return NULL when out of parameters.
3137 struct parm_struct
*lpcfg_next_parameter(struct loadparm_context
*lp_ctx
, int snum
, int *i
,
3141 /* do the globals */
3142 for (; parm_table
[*i
].label
; (*i
)++) {
3143 if ((*parm_table
[*i
].label
== '-'))
3147 && (parm_table
[*i
].offset
==
3148 parm_table
[(*i
) - 1].offset
)
3149 && (parm_table
[*i
].p_class
==
3150 parm_table
[(*i
) - 1].p_class
))
3153 return &parm_table
[(*i
)++];
3156 struct loadparm_service
*pService
= lp_ctx
->services
[snum
];
3158 for (; parm_table
[*i
].label
; (*i
)++) {
3159 if (parm_table
[*i
].p_class
== P_LOCAL
&&
3160 (*parm_table
[*i
].label
!= '-') &&
3162 (parm_table
[*i
].offset
!=
3163 parm_table
[(*i
) - 1].offset
)))
3165 if (allparameters
||
3166 !equal_parameter(parm_table
[*i
].type
,
3167 ((char *)pService
) +
3168 parm_table
[*i
].offset
,
3169 ((char *)lp_ctx
->sDefault
) +
3170 parm_table
[*i
].offset
))
3172 return &parm_table
[(*i
)++];
3183 * Auto-load some home services.
3185 static void lpcfg_add_auto_services(struct loadparm_context
*lp_ctx
,
3193 * Unload unused services.
3196 void lpcfg_killunused(struct loadparm_context
*lp_ctx
,
3197 struct smbsrv_connection
*smb
,
3198 bool (*snumused
) (struct smbsrv_connection
*, int))
3201 for (i
= 0; i
< lp_ctx
->iNumServices
; i
++) {
3202 if (lp_ctx
->services
[i
] == NULL
)
3205 if (!snumused
|| !snumused(smb
, i
)) {
3206 talloc_free(lp_ctx
->services
[i
]);
3207 lp_ctx
->services
[i
] = NULL
;
3213 static int lpcfg_destructor(struct loadparm_context
*lp_ctx
)
3215 struct parmlist_entry
*data
;
3217 if (lp_ctx
->refuse_free
) {
3218 /* someone is trying to free the
3219 global_loadparm_context.
3220 We can't allow that. */
3224 if (lp_ctx
->globals
->param_opt
!= NULL
) {
3225 struct parmlist_entry
*next
;
3226 for (data
= lp_ctx
->globals
->param_opt
; data
; data
=next
) {
3228 if (data
->priority
& FLAG_CMDLINE
) continue;
3229 DLIST_REMOVE(lp_ctx
->globals
->param_opt
, data
);
3238 * Initialise the global parameter structure.
3240 * Note that most callers should use loadparm_init_global() instead
3242 struct loadparm_context
*loadparm_init(TALLOC_CTX
*mem_ctx
)
3246 struct loadparm_context
*lp_ctx
;
3247 struct parmlist_entry
*parm
;
3250 lp_ctx
= talloc_zero(mem_ctx
, struct loadparm_context
);
3254 talloc_set_destructor(lp_ctx
, lpcfg_destructor
);
3255 lp_ctx
->bInGlobalSection
= true;
3256 lp_ctx
->globals
= talloc_zero(lp_ctx
, struct loadparm_global
);
3257 lp_ctx
->sDefault
= talloc_zero(lp_ctx
, struct loadparm_service
);
3259 lp_ctx
->sDefault
->iMaxPrintJobs
= 1000;
3260 lp_ctx
->sDefault
->bAvailable
= true;
3261 lp_ctx
->sDefault
->bBrowseable
= true;
3262 lp_ctx
->sDefault
->bRead_only
= true;
3263 lp_ctx
->sDefault
->bMap_archive
= true;
3264 lp_ctx
->sDefault
->iStrictLocking
= true;
3265 lp_ctx
->sDefault
->bOpLocks
= true;
3266 lp_ctx
->sDefault
->iCreate_mask
= 0744;
3267 lp_ctx
->sDefault
->iCreate_force_mode
= 0000;
3268 lp_ctx
->sDefault
->iDir_mask
= 0755;
3269 lp_ctx
->sDefault
->iDir_force_mode
= 0000;
3271 DEBUG(3, ("Initialising global parameters\n"));
3273 for (i
= 0; parm_table
[i
].label
; i
++) {
3274 if ((parm_table
[i
].type
== P_STRING
||
3275 parm_table
[i
].type
== P_USTRING
) &&
3276 !(lp_ctx
->flags
[i
] & FLAG_CMDLINE
)) {
3278 if (parm_table
[i
].p_class
== P_LOCAL
) {
3279 r
= (char **)(((char *)lp_ctx
->sDefault
) + parm_table
[i
].offset
);
3281 r
= (char **)(((char *)lp_ctx
->globals
) + parm_table
[i
].offset
);
3283 *r
= talloc_strdup(lp_ctx
, "");
3287 logfile
= talloc_asprintf(lp_ctx
, "%s/log.samba", dyn_LOGFILEBASE
);
3288 lpcfg_do_global_parameter(lp_ctx
, "log file", logfile
);
3289 talloc_free(logfile
);
3291 lpcfg_do_global_parameter(lp_ctx
, "log level", "0");
3293 lpcfg_do_global_parameter(lp_ctx
, "share backend", "classic");
3295 lpcfg_do_global_parameter(lp_ctx
, "server role", "auto");
3296 lpcfg_do_global_parameter(lp_ctx
, "domain logons", "No");
3297 lpcfg_do_global_parameter(lp_ctx
, "domain master", "Auto");
3299 /* options that can be set on the command line must be initialised via
3300 the slower lpcfg_do_global_parameter() to ensure that FLAG_CMDLINE is obeyed */
3302 lpcfg_do_global_parameter(lp_ctx
, "socket options", "TCP_NODELAY");
3304 lpcfg_do_global_parameter(lp_ctx
, "workgroup", DEFAULT_WORKGROUP
);
3305 myname
= get_myname(lp_ctx
);
3306 lpcfg_do_global_parameter(lp_ctx
, "netbios name", myname
);
3307 talloc_free(myname
);
3308 lpcfg_do_global_parameter(lp_ctx
, "name resolve order", "wins host bcast");
3310 lpcfg_do_global_parameter(lp_ctx
, "fstype", "NTFS");
3312 lpcfg_do_global_parameter(lp_ctx
, "ntvfs handler", "unixuid default");
3313 lpcfg_do_global_parameter(lp_ctx
, "max connections", "-1");
3315 lpcfg_do_global_parameter(lp_ctx
, "dcerpc endpoint servers", "epmapper wkssvc rpcecho samr netlogon lsarpc spoolss drsuapi dssetup unixinfo browser eventlog6 backupkey dnsserver");
3316 lpcfg_do_global_parameter(lp_ctx
, "server services", "s3fs rpc nbt wrepl ldap cldap kdc drepl winbind ntp_signd kcc dnsupdate");
3317 lpcfg_do_global_parameter(lp_ctx
, "ntptr providor", "simple_ldb");
3318 /* the winbind method for domain controllers is for both RODC
3319 auth forwarding and for trusted domains */
3320 lpcfg_do_global_parameter(lp_ctx
, "private dir", dyn_PRIVATE_DIR
);
3321 lpcfg_do_global_parameter(lp_ctx
, "registry:HKEY_LOCAL_MACHINE", "hklm.ldb");
3323 /* This hive should be dynamically generated by Samba using
3324 data from the sam, but for the moment leave it in a tdb to
3325 keep regedt32 from popping up an annoying dialog. */
3326 lpcfg_do_global_parameter(lp_ctx
, "registry:HKEY_USERS", "hku.ldb");
3328 /* using UTF8 by default allows us to support all chars */
3329 lpcfg_do_global_parameter(lp_ctx
, "unix charset", "UTF8");
3331 /* Use codepage 850 as a default for the dos character set */
3332 lpcfg_do_global_parameter(lp_ctx
, "dos charset", "CP850");
3335 * Allow the default PASSWD_CHAT to be overridden in local.h.
3337 lpcfg_do_global_parameter(lp_ctx
, "passwd chat", DEFAULT_PASSWD_CHAT
);
3339 lpcfg_do_global_parameter(lp_ctx
, "pid directory", dyn_PIDDIR
);
3340 lpcfg_do_global_parameter(lp_ctx
, "lock dir", dyn_LOCKDIR
);
3341 lpcfg_do_global_parameter(lp_ctx
, "state directory", dyn_STATEDIR
);
3342 lpcfg_do_global_parameter(lp_ctx
, "cache directory", dyn_CACHEDIR
);
3343 lpcfg_do_global_parameter(lp_ctx
, "ncalrpc dir", dyn_NCALRPCDIR
);
3345 lpcfg_do_global_parameter(lp_ctx
, "socket address", "");
3346 lpcfg_do_global_parameter_var(lp_ctx
, "server string",
3347 "Samba %s", SAMBA_VERSION_STRING
);
3349 lpcfg_do_global_parameter(lp_ctx
, "password server", "*");
3351 lpcfg_do_global_parameter(lp_ctx
, "max mux", "50");
3352 lpcfg_do_global_parameter(lp_ctx
, "max xmit", "12288");
3353 lpcfg_do_global_parameter(lp_ctx
, "host msdfs", "true");
3355 lpcfg_do_global_parameter(lp_ctx
, "password level", "0");
3356 lpcfg_do_global_parameter(lp_ctx
, "LargeReadwrite", "True");
3357 lpcfg_do_global_parameter(lp_ctx
, "server min protocol", "CORE");
3358 lpcfg_do_global_parameter(lp_ctx
, "server max protocol", "NT1");
3359 lpcfg_do_global_parameter(lp_ctx
, "client min protocol", "CORE");
3360 lpcfg_do_global_parameter(lp_ctx
, "client max protocol", "NT1");
3361 lpcfg_do_global_parameter(lp_ctx
, "security", "AUTO");
3362 lpcfg_do_global_parameter(lp_ctx
, "paranoid server security", "True");
3363 lpcfg_do_global_parameter(lp_ctx
, "EncryptPasswords", "True");
3364 lpcfg_do_global_parameter(lp_ctx
, "ReadRaw", "True");
3365 lpcfg_do_global_parameter(lp_ctx
, "WriteRaw", "True");
3366 lpcfg_do_global_parameter(lp_ctx
, "NullPasswords", "False");
3367 lpcfg_do_global_parameter(lp_ctx
, "ObeyPamRestrictions", "False");
3369 lpcfg_do_global_parameter(lp_ctx
, "TimeServer", "False");
3370 lpcfg_do_global_parameter(lp_ctx
, "BindInterfacesOnly", "False");
3371 lpcfg_do_global_parameter(lp_ctx
, "Unicode", "True");
3372 lpcfg_do_global_parameter(lp_ctx
, "ClientLanManAuth", "False");
3373 lpcfg_do_global_parameter(lp_ctx
, "ClientNTLMv2Auth", "True");
3374 lpcfg_do_global_parameter(lp_ctx
, "LanmanAuth", "False");
3375 lpcfg_do_global_parameter(lp_ctx
, "NTLMAuth", "True");
3376 lpcfg_do_global_parameter(lp_ctx
, "client use spnego principal", "False");
3378 lpcfg_do_global_parameter(lp_ctx
, "UnixExtensions", "False");
3380 lpcfg_do_global_parameter(lp_ctx
, "PreferredMaster", "Auto");
3381 lpcfg_do_global_parameter(lp_ctx
, "LocalMaster", "True");
3383 lpcfg_do_global_parameter(lp_ctx
, "wins support", "False");
3384 lpcfg_do_global_parameter(lp_ctx
, "dns proxy", "True");
3386 lpcfg_do_global_parameter(lp_ctx
, "winbind separator", "\\");
3387 lpcfg_do_global_parameter(lp_ctx
, "winbind sealed pipes", "True");
3388 lpcfg_do_global_parameter(lp_ctx
, "winbindd socket directory", dyn_WINBINDD_SOCKET_DIR
);
3389 #if _SAMBA_BUILD_ >= 4
3390 lpcfg_do_global_parameter(lp_ctx
, "winbindd privileged socket directory", dyn_WINBINDD_PRIVILEGED_SOCKET_DIR
);
3391 lpcfg_do_global_parameter(lp_ctx
, "ntp signd socket directory", dyn_NTP_SIGND_SOCKET_DIR
);
3392 lpcfg_do_global_parameter_var(lp_ctx
, "dns update command", "%s/samba_dnsupdate", dyn_SCRIPTSBINDIR
);
3393 lpcfg_do_global_parameter_var(lp_ctx
, "spn update command", "%s/samba_spnupdate", dyn_SCRIPTSBINDIR
);
3394 lpcfg_do_global_parameter_var(lp_ctx
, "samba kcc command",
3395 "%s/samba_kcc", dyn_SCRIPTSBINDIR
);
3397 lpcfg_do_global_parameter(lp_ctx
, "template shell", "/bin/false");
3398 lpcfg_do_global_parameter(lp_ctx
, "template homedir", "/home/%WORKGROUP%/%ACCOUNTNAME%");
3399 lpcfg_do_global_parameter(lp_ctx
, "idmap trusted only", "False");
3401 lpcfg_do_global_parameter(lp_ctx
, "client signing", "default");
3402 lpcfg_do_global_parameter(lp_ctx
, "server signing", "default");
3404 lpcfg_do_global_parameter(lp_ctx
, "use spnego", "True");
3406 lpcfg_do_global_parameter(lp_ctx
, "use mmap", "True");
3408 lpcfg_do_global_parameter(lp_ctx
, "smb ports", "445 139");
3409 lpcfg_do_global_parameter(lp_ctx
, "nbt port", "137");
3410 lpcfg_do_global_parameter(lp_ctx
, "dgram port", "138");
3411 lpcfg_do_global_parameter(lp_ctx
, "cldap port", "389");
3412 lpcfg_do_global_parameter(lp_ctx
, "krb5 port", "88");
3413 lpcfg_do_global_parameter(lp_ctx
, "kpasswd port", "464");
3414 lpcfg_do_global_parameter(lp_ctx
, "web port", "901");
3416 lpcfg_do_global_parameter(lp_ctx
, "nt status support", "True");
3418 lpcfg_do_global_parameter(lp_ctx
, "max wins ttl", "518400"); /* 6 days */
3419 lpcfg_do_global_parameter(lp_ctx
, "min wins ttl", "10");
3421 lpcfg_do_global_parameter(lp_ctx
, "tls enabled", "True");
3422 lpcfg_do_global_parameter(lp_ctx
, "tls keyfile", "tls/key.pem");
3423 lpcfg_do_global_parameter(lp_ctx
, "tls certfile", "tls/cert.pem");
3424 lpcfg_do_global_parameter(lp_ctx
, "tls cafile", "tls/ca.pem");
3425 lpcfg_do_global_parameter(lp_ctx
, "prefork children:smb", "4");
3427 lpcfg_do_global_parameter(lp_ctx
, "rndc command", "/usr/sbin/rndc");
3428 lpcfg_do_global_parameter(lp_ctx
, "nsupdate command", "/usr/bin/nsupdate -g");
3430 lpcfg_do_global_parameter(lp_ctx
, "allow dns updates", "False");
3431 lpcfg_do_global_parameter(lp_ctx
, "dns recursive queries", "False");
3432 lpcfg_do_global_parameter(lp_ctx
, "dns forwarder", "");
3434 for (i
= 0; parm_table
[i
].label
; i
++) {
3435 if (!(lp_ctx
->flags
[i
] & FLAG_CMDLINE
)) {
3436 lp_ctx
->flags
[i
] |= FLAG_DEFAULT
;
3440 for (parm
=lp_ctx
->globals
->param_opt
; parm
; parm
=parm
->next
) {
3441 if (!(parm
->priority
& FLAG_CMDLINE
)) {
3442 parm
->priority
|= FLAG_DEFAULT
;
3450 * Initialise the global parameter structure.
3452 struct loadparm_context
*loadparm_init_global(bool load_default
)
3454 if (global_loadparm_context
== NULL
) {
3455 global_loadparm_context
= loadparm_init(NULL
);
3457 if (global_loadparm_context
== NULL
) {
3460 global_loadparm_context
->global
= true;
3461 if (load_default
&& !global_loadparm_context
->loaded
) {
3462 lpcfg_load_default(global_loadparm_context
);
3464 global_loadparm_context
->refuse_free
= true;
3465 return global_loadparm_context
;
3469 * Initialise the global parameter structure.
3471 struct loadparm_context
*loadparm_init_s3(TALLOC_CTX
*mem_ctx
,
3472 const struct loadparm_s3_helpers
*s3_fns
)
3474 struct loadparm_context
*loadparm_context
= talloc_zero(mem_ctx
, struct loadparm_context
);
3475 if (!loadparm_context
) {
3478 loadparm_context
->s3_fns
= s3_fns
;
3479 return loadparm_context
;
3482 const char *lpcfg_configfile(struct loadparm_context
*lp_ctx
)
3484 return lp_ctx
->szConfigFile
;
3487 const char *lp_default_path(void)
3489 if (getenv("SMB_CONF_PATH"))
3490 return getenv("SMB_CONF_PATH");
3492 return dyn_CONFIGFILE
;
3496 * Update the internal state of a loadparm context after settings
3499 static bool lpcfg_update(struct loadparm_context
*lp_ctx
)
3501 struct debug_settings settings
;
3502 lpcfg_add_auto_services(lp_ctx
, lpcfg_auto_services(lp_ctx
));
3504 if (!lp_ctx
->globals
->szWINSservers
&& lp_ctx
->globals
->bWINSsupport
) {
3505 lpcfg_do_global_parameter(lp_ctx
, "wins server", "127.0.0.1");
3508 if (!lp_ctx
->global
) {
3512 panic_action
= lp_ctx
->globals
->panic_action
;
3514 reload_charcnv(lp_ctx
);
3516 ZERO_STRUCT(settings
);
3517 /* Add any more debug-related smb.conf parameters created in
3519 settings
.timestamp_logs
= true;
3520 debug_set_settings(&settings
);
3522 /* FIXME: This is a bit of a hack, but we can't use a global, since
3523 * not everything that uses lp also uses the socket library */
3524 if (lpcfg_parm_bool(lp_ctx
, NULL
, "socket", "testnonblock", false)) {
3525 setenv("SOCKET_TESTNONBLOCK", "1", 1);
3527 unsetenv("SOCKET_TESTNONBLOCK");
3533 bool lpcfg_load_default(struct loadparm_context
*lp_ctx
)
3537 path
= lp_default_path();
3539 if (!file_exist(path
)) {
3540 /* We allow the default smb.conf file to not exist,
3541 * basically the equivalent of an empty file. */
3542 return lpcfg_update(lp_ctx
);
3545 return lpcfg_load(lp_ctx
, path
);
3549 * Load the services array from the services file.
3551 * Return True on success, False on failure.
3553 bool lpcfg_load(struct loadparm_context
*lp_ctx
, const char *filename
)
3558 filename
= talloc_strdup(lp_ctx
, filename
);
3560 lp_ctx
->szConfigFile
= filename
;
3562 if (lp_ctx
->s3_fns
) {
3563 return lp_ctx
->s3_fns
->load(filename
);
3566 lp_ctx
->bInGlobalSection
= true;
3567 n2
= standard_sub_basic(lp_ctx
, lp_ctx
->szConfigFile
);
3568 DEBUG(2, ("lpcfg_load: refreshing parameters from %s\n", n2
));
3570 add_to_file_list(lp_ctx
, lp_ctx
->szConfigFile
, n2
);
3572 /* We get sections first, so have to start 'behind' to make up */
3573 lp_ctx
->currentService
= NULL
;
3574 bRetval
= pm_process(n2
, do_section
, do_parameter
, lp_ctx
);
3576 /* finish up the last section */
3577 DEBUG(4, ("pm_process() returned %s\n", BOOLSTR(bRetval
)));
3579 if (lp_ctx
->currentService
!= NULL
)
3580 bRetval
= lpcfg_service_ok(lp_ctx
->currentService
);
3582 bRetval
= bRetval
&& lpcfg_update(lp_ctx
);
3584 /* we do this unconditionally, so that it happens even
3585 for a missing smb.conf */
3586 reload_charcnv(lp_ctx
);
3588 if (bRetval
== true) {
3589 /* set this up so that any child python tasks will
3590 find the right smb.conf */
3591 setenv("SMB_CONF_PATH", filename
, 1);
3593 /* set the context used by the lp_*() function
3595 global_loadparm_context
= lp_ctx
;
3596 lp_ctx
->loaded
= true;
3603 * Return the max number of services.
3606 int lpcfg_numservices(struct loadparm_context
*lp_ctx
)
3608 if (lp_ctx
->s3_fns
) {
3609 return lp_ctx
->s3_fns
->get_numservices();
3612 return lp_ctx
->iNumServices
;
3616 * Display the contents of the services array in human-readable form.
3619 void lpcfg_dump(struct loadparm_context
*lp_ctx
, FILE *f
, bool show_defaults
,
3624 if (lp_ctx
->s3_fns
) {
3625 lp_ctx
->s3_fns
->dump(f
, show_defaults
, maxtoprint
);
3629 defaults_saved
= !show_defaults
;
3631 dump_globals(lp_ctx
, f
, show_defaults
);
3633 dump_a_service(lp_ctx
->sDefault
, lp_ctx
->sDefault
, f
, lp_ctx
->flags
);
3635 for (iService
= 0; iService
< maxtoprint
; iService
++)
3636 lpcfg_dump_one(f
, show_defaults
, lp_ctx
->services
[iService
], lp_ctx
->sDefault
);
3640 * Display the contents of one service in human-readable form.
3642 void lpcfg_dump_one(FILE *f
, bool show_defaults
, struct loadparm_service
*service
, struct loadparm_service
*sDefault
)
3644 if (service
!= NULL
) {
3645 if (service
->szService
[0] == '\0')
3647 dump_a_service(service
, sDefault
, f
, NULL
);
3651 struct loadparm_service
*lpcfg_servicebynum(struct loadparm_context
*lp_ctx
,
3654 if (lp_ctx
->s3_fns
) {
3655 return lp_ctx
->s3_fns
->get_servicebynum(snum
);
3658 return lp_ctx
->services
[snum
];
3661 struct loadparm_service
*lpcfg_service(struct loadparm_context
*lp_ctx
,
3662 const char *service_name
)
3667 if (lp_ctx
->s3_fns
) {
3668 return lp_ctx
->s3_fns
->get_service(service_name
);
3671 for (iService
= lp_ctx
->iNumServices
- 1; iService
>= 0; iService
--) {
3672 if (lp_ctx
->services
[iService
] &&
3673 lp_ctx
->services
[iService
]->szService
) {
3675 * The substitution here is used to support %U is
3678 serviceName
= standard_sub_basic(
3679 lp_ctx
->services
[iService
],
3680 lp_ctx
->services
[iService
]->szService
);
3681 if (strequal(serviceName
, service_name
)) {
3682 talloc_free(serviceName
);
3683 return lp_ctx
->services
[iService
];
3685 talloc_free(serviceName
);
3689 DEBUG(7,("lpcfg_servicenumber: couldn't find %s\n", service_name
));
3693 const char *lpcfg_servicename(const struct loadparm_service
*service
)
3695 return lp_string((const char *)service
->szService
);
3699 * A useful volume label function.
3701 const char *lpcfg_volume_label(struct loadparm_service
*service
, struct loadparm_service
*sDefault
)
3704 ret
= lp_string((const char *)((service
!= NULL
&& service
->volume
!= NULL
) ?
3705 service
->volume
: sDefault
->volume
));
3707 return lpcfg_servicename(service
);
3712 * If we are PDC then prefer us as DMB
3714 const char *lpcfg_printername(struct loadparm_service
*service
, struct loadparm_service
*sDefault
)
3717 ret
= lp_string((const char *)((service
!= NULL
&& service
->szPrintername
!= NULL
) ?
3718 service
->szPrintername
: sDefault
->szPrintername
));
3719 if (ret
== NULL
|| (ret
!= NULL
&& *ret
== '\0'))
3720 ret
= lpcfg_servicename(service
);
3727 * Return the max print jobs per queue.
3729 int lpcfg_maxprintjobs(struct loadparm_service
*service
, struct loadparm_service
*sDefault
)
3731 int maxjobs
= (service
!= NULL
) ? service
->iMaxPrintJobs
: sDefault
->iMaxPrintJobs
;
3732 if (maxjobs
<= 0 || maxjobs
>= PRINT_MAX_JOBID
)
3733 maxjobs
= PRINT_MAX_JOBID
- 1;
3738 struct smb_iconv_handle
*lpcfg_iconv_handle(struct loadparm_context
*lp_ctx
)
3740 if (lp_ctx
== NULL
) {
3741 return get_iconv_handle();
3743 return lp_ctx
->iconv_handle
;
3746 _PUBLIC_
void reload_charcnv(struct loadparm_context
*lp_ctx
)
3748 struct smb_iconv_handle
*old_ic
= lp_ctx
->iconv_handle
;
3749 if (!lp_ctx
->global
) {
3753 if (old_ic
== NULL
) {
3754 old_ic
= global_iconv_handle
;
3756 lp_ctx
->iconv_handle
= smb_iconv_handle_reinit_lp(lp_ctx
, lp_ctx
, old_ic
);
3757 global_iconv_handle
= lp_ctx
->iconv_handle
;
3760 _PUBLIC_
char *lpcfg_tls_keyfile(TALLOC_CTX
*mem_ctx
, struct loadparm_context
*lp_ctx
)
3762 return lpcfg_private_path(mem_ctx
, lp_ctx
, lp_ctx
->globals
->tls_keyfile
);
3765 _PUBLIC_
char *lpcfg_tls_certfile(TALLOC_CTX
*mem_ctx
, struct loadparm_context
*lp_ctx
)
3767 return lpcfg_private_path(mem_ctx
, lp_ctx
, lp_ctx
->globals
->tls_certfile
);
3770 _PUBLIC_
char *lpcfg_tls_cafile(TALLOC_CTX
*mem_ctx
, struct loadparm_context
*lp_ctx
)
3772 return lpcfg_private_path(mem_ctx
, lp_ctx
, lp_ctx
->globals
->tls_cafile
);
3775 _PUBLIC_
char *lpcfg_tls_crlfile(TALLOC_CTX
*mem_ctx
, struct loadparm_context
*lp_ctx
)
3777 return lpcfg_private_path(mem_ctx
, lp_ctx
, lp_ctx
->globals
->tls_crlfile
);
3780 _PUBLIC_
char *lpcfg_tls_dhpfile(TALLOC_CTX
*mem_ctx
, struct loadparm_context
*lp_ctx
)
3782 return lpcfg_private_path(mem_ctx
, lp_ctx
, lp_ctx
->globals
->tls_dhpfile
);
3785 struct gensec_settings
*lpcfg_gensec_settings(TALLOC_CTX
*mem_ctx
, struct loadparm_context
*lp_ctx
)
3787 struct gensec_settings
*settings
= talloc_zero(mem_ctx
, struct gensec_settings
);
3788 if (settings
== NULL
)
3790 SMB_ASSERT(lp_ctx
!= NULL
);
3791 settings
->lp_ctx
= talloc_reference(settings
, lp_ctx
);
3792 settings
->target_hostname
= lpcfg_parm_string(lp_ctx
, NULL
, "gensec", "target_hostname");
3796 int lpcfg_server_role(struct loadparm_context
*lp_ctx
)
3798 if (lp_ctx
->s3_fns
) {
3799 return lp_ctx
->s3_fns
->server_role();
3802 return lp_find_server_role(lp_ctx
->globals
->server_role
,
3803 lp_ctx
->globals
->security
,
3804 lp_ctx
->globals
->domain_logons
,
3805 (lp_ctx
->globals
->domain_master
== true) ||
3806 (lp_ctx
->globals
->domain_master
== Auto
));
3809 int lpcfg_security(struct loadparm_context
*lp_ctx
)
3811 if (lp_ctx
->s3_fns
) {
3812 return lp_ctx
->s3_fns
->security();
3815 return lp_find_security(lp_ctx
->globals
->server_role
,
3816 lp_ctx
->globals
->security
);