s4-param void function cannot return value
[Samba.git] / source4 / param / loadparm.c
blob524fd26df3405d865398e2776151a738f6552f89
1 /*
2 Unix SMB/CIFS implementation.
3 Parameter loading functions
4 Copyright (C) Karl Auer 1993-1998
6 Largely re-written by Andrew Tridgell, September 1994
8 Copyright (C) Simo Sorce 2001
9 Copyright (C) Alexander Bokovoy 2002
10 Copyright (C) Stefan (metze) Metzmacher 2002
11 Copyright (C) Jim McDonough (jmcd@us.ibm.com) 2003.
12 Copyright (C) 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/>.
30 * Load parameters.
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.
36 * To add a parameter:
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
45 * Notes:
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
51 * careful!
55 #include "includes.h"
56 #include "version.h"
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 "smb_server/smb_server.h"
62 #include "libcli/raw/signing.h"
63 #include "../lib/util/dlinklist.h"
64 #include "param/param.h"
65 #include "param/loadparm.h"
66 #include "libcli/raw/libcliraw.h"
67 #include "rpc_server/common/common.h"
68 #include "lib/socket/socket.h"
69 #include "auth/gensec/gensec.h"
70 #include "s3_param.h"
71 #include "../lib/util/bitmap.h"
73 #define standard_sub_basic talloc_strdup
75 static bool do_parameter(const char *, const char *, void *);
76 static bool defaults_saved = false;
78 #define LOADPARM_EXTRA_GLOBALS \
79 struct parmlist_entry *param_opt; \
80 char *szRealm; \
81 char *tls_keyfile; \
82 char *tls_certfile; \
83 char *tls_cafile; \
84 char *tls_crlfile; \
85 char *tls_dhpfile; \
86 char *loglevel; \
87 char *panic_action; \
88 int bPreferredMaster;
90 #include "param_global.h"
92 #define NUMPARAMETERS (sizeof(parm_table) / sizeof(struct parm_struct))
95 /* prototypes for the special type handlers */
96 static bool handle_include(struct loadparm_context *lp_ctx, int unused,
97 const char *pszParmValue, char **ptr);
98 static bool handle_realm(struct loadparm_context *lp_ctx, int unused,
99 const char *pszParmValue, char **ptr);
100 static bool handle_copy(struct loadparm_context *lp_ctx, int unused,
101 const char *pszParmValue, char **ptr);
102 static bool handle_debuglevel(struct loadparm_context *lp_ctx, int unused,
103 const char *pszParmValue, char **ptr);
104 static bool handle_logfile(struct loadparm_context *lp_ctx, int unused,
105 const char *pszParmValue, char **ptr);
107 static const struct enum_list enum_protocol[] = {
108 {PROTOCOL_SMB2_02, "SMB2"},
109 {PROTOCOL_SMB2_02, "SMB2_02"},
110 {PROTOCOL_NT1, "NT1"},
111 {PROTOCOL_LANMAN2, "LANMAN2"},
112 {PROTOCOL_LANMAN1, "LANMAN1"},
113 {PROTOCOL_CORE, "CORE"},
114 {PROTOCOL_COREPLUS, "COREPLUS"},
115 {PROTOCOL_COREPLUS, "CORE+"},
116 {-1, NULL}
119 static const struct enum_list enum_security[] = {
120 {SEC_SHARE, "SHARE"},
121 {SEC_USER, "USER"},
122 {SEC_ADS, "ADS"},
123 {-1, NULL}
126 static const struct enum_list enum_bool_auto[] = {
127 {false, "No"},
128 {false, "False"},
129 {false, "0"},
130 {true, "Yes"},
131 {true, "True"},
132 {true, "1"},
133 {Auto, "Auto"},
134 {-1, NULL}
137 /* Client-side offline caching policy types */
138 enum csc_policy {
139 CSC_POLICY_MANUAL=0,
140 CSC_POLICY_DOCUMENTS=1,
141 CSC_POLICY_PROGRAMS=2,
142 CSC_POLICY_DISABLE=3
145 static const struct enum_list enum_csc_policy[] = {
146 {CSC_POLICY_MANUAL, "manual"},
147 {CSC_POLICY_DOCUMENTS, "documents"},
148 {CSC_POLICY_PROGRAMS, "programs"},
149 {CSC_POLICY_DISABLE, "disable"},
150 {-1, NULL}
153 /* SMB signing types. */
154 static const struct enum_list enum_smb_signing_vals[] = {
155 {SMB_SIGNING_OFF, "No"},
156 {SMB_SIGNING_OFF, "False"},
157 {SMB_SIGNING_OFF, "0"},
158 {SMB_SIGNING_OFF, "Off"},
159 {SMB_SIGNING_OFF, "disabled"},
160 {SMB_SIGNING_SUPPORTED, "Yes"},
161 {SMB_SIGNING_SUPPORTED, "True"},
162 {SMB_SIGNING_SUPPORTED, "1"},
163 {SMB_SIGNING_SUPPORTED, "On"},
164 {SMB_SIGNING_SUPPORTED, "enabled"},
165 {SMB_SIGNING_REQUIRED, "required"},
166 {SMB_SIGNING_REQUIRED, "mandatory"},
167 {SMB_SIGNING_REQUIRED, "force"},
168 {SMB_SIGNING_REQUIRED, "forced"},
169 {SMB_SIGNING_REQUIRED, "enforced"},
170 {SMB_SIGNING_AUTO, "auto"},
171 {-1, NULL}
174 static const struct enum_list enum_server_role[] = {
175 {ROLE_STANDALONE, "standalone"},
176 {ROLE_DOMAIN_MEMBER, "member server"},
177 {ROLE_DOMAIN_MEMBER, "member"},
178 {ROLE_DOMAIN_CONTROLLER, "domain controller"},
179 {ROLE_DOMAIN_CONTROLLER, "dc"},
180 {-1, NULL}
183 #define GLOBAL_VAR(name) offsetof(struct loadparm_global, name)
184 #define LOCAL_VAR(name) offsetof(struct loadparm_service, name)
186 static struct parm_struct parm_table[] = {
188 .label = "server role",
189 .type = P_ENUM,
190 .p_class = P_GLOBAL,
191 .offset = GLOBAL_VAR(server_role),
192 .special = NULL,
193 .enum_list = enum_server_role
196 .label = "dos charset",
197 .type = P_STRING,
198 .p_class = P_GLOBAL,
199 .offset = GLOBAL_VAR(dos_charset),
200 .special = NULL,
201 .enum_list = NULL
204 .label = "unix charset",
205 .type = P_STRING,
206 .p_class = P_GLOBAL,
207 .offset = GLOBAL_VAR(unix_charset),
208 .special = NULL,
209 .enum_list = NULL
212 .label = "ncalrpc dir",
213 .type = P_STRING,
214 .p_class = P_GLOBAL,
215 .offset = GLOBAL_VAR(ncalrpc_dir),
216 .special = NULL,
217 .enum_list = NULL
220 .label = "comment",
221 .type = P_STRING,
222 .p_class = P_LOCAL,
223 .offset = LOCAL_VAR(comment),
224 .special = NULL,
225 .enum_list = NULL
228 .label = "path",
229 .type = P_STRING,
230 .p_class = P_LOCAL,
231 .offset = LOCAL_VAR(szPath),
232 .special = NULL,
233 .enum_list = NULL
236 .label = "directory",
237 .type = P_STRING,
238 .p_class = P_LOCAL,
239 .offset = LOCAL_VAR(szPath),
240 .special = NULL,
241 .enum_list = NULL
244 .label = "workgroup",
245 .type = P_USTRING,
246 .p_class = P_GLOBAL,
247 .offset = GLOBAL_VAR(szWorkgroup),
248 .special = NULL,
249 .enum_list = NULL
252 .label = "realm",
253 .type = P_STRING,
254 .p_class = P_GLOBAL,
255 .offset = GLOBAL_VAR(szRealm),
256 .special = handle_realm,
257 .enum_list = NULL
260 .label = "netbios name",
261 .type = P_USTRING,
262 .p_class = P_GLOBAL,
263 .offset = GLOBAL_VAR(szNetbiosName),
264 .special = NULL,
265 .enum_list = NULL
268 .label = "netbios aliases",
269 .type = P_LIST,
270 .p_class = P_GLOBAL,
271 .offset = GLOBAL_VAR(szNetbiosAliases),
272 .special = NULL,
273 .enum_list = NULL
276 .label = "netbios scope",
277 .type = P_USTRING,
278 .p_class = P_GLOBAL,
279 .offset = GLOBAL_VAR(szNetbiosScope),
280 .special = NULL,
281 .enum_list = NULL
284 .label = "server string",
285 .type = P_STRING,
286 .p_class = P_GLOBAL,
287 .offset = GLOBAL_VAR(szServerString),
288 .special = NULL,
289 .enum_list = NULL
292 .label = "interfaces",
293 .type = P_LIST,
294 .p_class = P_GLOBAL,
295 .offset = GLOBAL_VAR(szInterfaces),
296 .special = NULL,
297 .enum_list = NULL
300 .label = "bind interfaces only",
301 .type = P_BOOL,
302 .p_class = P_GLOBAL,
303 .offset = GLOBAL_VAR(bBindInterfacesOnly),
304 .special = NULL,
305 .enum_list = NULL
308 .label = "ntvfs handler",
309 .type = P_LIST,
310 .p_class = P_LOCAL,
311 .offset = LOCAL_VAR(ntvfs_handler),
312 .special = NULL,
313 .enum_list = NULL
316 .label = "ntptr providor",
317 .type = P_STRING,
318 .p_class = P_GLOBAL,
319 .offset = GLOBAL_VAR(ntptr_providor),
320 .special = NULL,
321 .enum_list = NULL
324 .label = "passdb backend",
325 .type = P_STRING,
326 .p_class = P_GLOBAL,
327 .offset = GLOBAL_VAR(passdb_backend),
328 .special = NULL,
329 .enum_list = NULL
332 .label = "dcerpc endpoint servers",
333 .type = P_LIST,
334 .p_class = P_GLOBAL,
335 .offset = GLOBAL_VAR(dcerpc_ep_servers),
336 .special = NULL,
337 .enum_list = NULL
340 .label = "server services",
341 .type = P_LIST,
342 .p_class = P_GLOBAL,
343 .offset = GLOBAL_VAR(server_services),
344 .special = NULL,
345 .enum_list = NULL
349 .label = "security",
350 .type = P_ENUM,
351 .p_class = P_GLOBAL,
352 .offset = GLOBAL_VAR(security),
353 .special = NULL,
354 .enum_list = enum_security
357 .label = "encrypt passwords",
358 .type = P_BOOL,
359 .p_class = P_GLOBAL,
360 .offset = GLOBAL_VAR(bEncryptPasswords),
361 .special = NULL,
362 .enum_list = NULL
365 .label = "null passwords",
366 .type = P_BOOL,
367 .p_class = P_GLOBAL,
368 .offset = GLOBAL_VAR(bNullPasswords),
369 .special = NULL,
370 .enum_list = NULL
373 .label = "obey pam restrictions",
374 .type = P_BOOL,
375 .p_class = P_GLOBAL,
376 .offset = GLOBAL_VAR(bObeyPamRestrictions),
377 .special = NULL,
378 .enum_list = NULL
381 .label = "password server",
382 .type = P_LIST,
383 .p_class = P_GLOBAL,
384 .offset = GLOBAL_VAR(szPasswordServers),
385 .special = NULL,
386 .enum_list = NULL
389 .label = "spoolss database",
390 .type = P_STRING,
391 .p_class = P_GLOBAL,
392 .offset = GLOBAL_VAR(szSPOOLSS_URL),
393 .special = NULL,
394 .enum_list = NULL
397 .label = "wins config database",
398 .type = P_STRING,
399 .p_class = P_GLOBAL,
400 .offset = GLOBAL_VAR(szWINS_CONFIG_URL),
401 .special = NULL,
402 .enum_list = NULL
405 .label = "wins database",
406 .type = P_STRING,
407 .p_class = P_GLOBAL,
408 .offset = GLOBAL_VAR(szWINS_URL),
409 .special = NULL,
410 .enum_list = NULL
413 .label = "private dir",
414 .type = P_STRING,
415 .p_class = P_GLOBAL,
416 .offset = GLOBAL_VAR(szPrivateDir),
417 .special = NULL,
418 .enum_list = NULL
421 .label = "passwd chat",
422 .type = P_STRING,
423 .p_class = P_GLOBAL,
424 .offset = GLOBAL_VAR(szPasswdChat),
425 .special = NULL,
426 .enum_list = NULL
429 .label = "password level",
430 .type = P_INTEGER,
431 .p_class = P_GLOBAL,
432 .offset = GLOBAL_VAR(pwordlevel),
433 .special = NULL,
434 .enum_list = NULL
437 .label = "lanman auth",
438 .type = P_BOOL,
439 .p_class = P_GLOBAL,
440 .offset = GLOBAL_VAR(bLanmanAuth),
441 .special = NULL,
442 .enum_list = NULL
445 .label = "ntlm auth",
446 .type = P_BOOL,
447 .p_class = P_GLOBAL,
448 .offset = GLOBAL_VAR(bNTLMAuth),
449 .special = NULL,
450 .enum_list = NULL
453 .label = "client NTLMv2 auth",
454 .type = P_BOOL,
455 .p_class = P_GLOBAL,
456 .offset = GLOBAL_VAR(bClientNTLMv2Auth),
457 .special = NULL,
458 .enum_list = NULL
461 .label = "client lanman auth",
462 .type = P_BOOL,
463 .p_class = P_GLOBAL,
464 .offset = GLOBAL_VAR(bClientLanManAuth),
465 .special = NULL,
466 .enum_list = NULL
469 .label = "client plaintext auth",
470 .type = P_BOOL,
471 .p_class = P_GLOBAL,
472 .offset = GLOBAL_VAR(bClientPlaintextAuth),
473 .special = NULL,
474 .enum_list = NULL
477 .label = "client use spnego principal",
478 .type = P_BOOL,
479 .p_class = P_GLOBAL,
480 .offset = GLOBAL_VAR(client_use_spnego_principal),
481 .special = NULL,
482 .enum_list = NULL
486 .label = "read only",
487 .type = P_BOOL,
488 .p_class = P_LOCAL,
489 .offset = LOCAL_VAR(bRead_only),
490 .special = NULL,
491 .enum_list = NULL
495 .label = "create mask",
496 .type = P_OCTAL,
497 .p_class = P_LOCAL,
498 .offset = LOCAL_VAR(iCreate_mask),
499 .special = NULL,
500 .enum_list = NULL
503 .label = "force create mode",
504 .type = P_OCTAL,
505 .p_class = P_LOCAL,
506 .offset = LOCAL_VAR(iCreate_force_mode),
507 .special = NULL,
508 .enum_list = NULL
511 .label = "directory mask",
512 .type = P_OCTAL,
513 .p_class = P_LOCAL,
514 .offset = LOCAL_VAR(iDir_mask),
515 .special = NULL,
516 .enum_list = NULL
519 .label = "force directory mode",
520 .type = P_OCTAL,
521 .p_class = P_LOCAL,
522 .offset = LOCAL_VAR(iDir_force_mode),
523 .special = NULL,
524 .enum_list = NULL
528 .label = "hosts allow",
529 .type = P_LIST,
530 .p_class = P_LOCAL,
531 .offset = LOCAL_VAR(szHostsallow),
532 .special = NULL,
533 .enum_list = NULL
536 .label = "hosts deny",
537 .type = P_LIST,
538 .p_class = P_LOCAL,
539 .offset = LOCAL_VAR(szHostsdeny),
540 .special = NULL,
541 .enum_list = NULL
545 .label = "log level",
546 .type = P_STRING,
547 .p_class = P_GLOBAL,
548 .offset = GLOBAL_VAR(loglevel),
549 .special = handle_debuglevel,
550 .enum_list = NULL
553 .label = "debuglevel",
554 .type = P_STRING,
555 .p_class = P_GLOBAL,
556 .offset = GLOBAL_VAR(loglevel),
557 .special = handle_debuglevel,
558 .enum_list = NULL
561 .label = "log file",
562 .type = P_STRING,
563 .p_class = P_GLOBAL,
564 .offset = GLOBAL_VAR(logfile),
565 .special = handle_logfile,
566 .enum_list = NULL
570 .label = "smb ports",
571 .type = P_LIST,
572 .p_class = P_GLOBAL,
573 .offset = GLOBAL_VAR(smb_ports),
574 .special = NULL,
575 .enum_list = NULL
578 .label = "nbt port",
579 .type = P_INTEGER,
580 .p_class = P_GLOBAL,
581 .offset = GLOBAL_VAR(nbt_port),
582 .special = NULL,
583 .enum_list = NULL
586 .label = "dgram port",
587 .type = P_INTEGER,
588 .p_class = P_GLOBAL,
589 .offset = GLOBAL_VAR(dgram_port),
590 .special = NULL,
591 .enum_list = NULL
594 .label = "cldap port",
595 .type = P_INTEGER,
596 .p_class = P_GLOBAL,
597 .offset = GLOBAL_VAR(cldap_port),
598 .special = NULL,
599 .enum_list = NULL
602 .label = "krb5 port",
603 .type = P_INTEGER,
604 .p_class = P_GLOBAL,
605 .offset = GLOBAL_VAR(krb5_port),
606 .special = NULL,
607 .enum_list = NULL
610 .label = "kpasswd port",
611 .type = P_INTEGER,
612 .p_class = P_GLOBAL,
613 .offset = GLOBAL_VAR(kpasswd_port),
614 .special = NULL,
615 .enum_list = NULL
618 .label = "web port",
619 .type = P_INTEGER,
620 .p_class = P_GLOBAL,
621 .offset = GLOBAL_VAR(web_port),
622 .special = NULL,
623 .enum_list = NULL
626 .label = "tls enabled",
627 .type = P_BOOL,
628 .p_class = P_GLOBAL,
629 .offset = GLOBAL_VAR(tls_enabled),
630 .special = NULL,
631 .enum_list = NULL
634 .label = "tls keyfile",
635 .type = P_STRING,
636 .p_class = P_GLOBAL,
637 .offset = GLOBAL_VAR(tls_keyfile),
638 .special = NULL,
639 .enum_list = NULL
642 .label = "tls certfile",
643 .type = P_STRING,
644 .p_class = P_GLOBAL,
645 .offset = GLOBAL_VAR(tls_certfile),
646 .special = NULL,
647 .enum_list = NULL
650 .label = "tls cafile",
651 .type = P_STRING,
652 .p_class = P_GLOBAL,
653 .offset = GLOBAL_VAR(tls_cafile),
654 .special = NULL,
655 .enum_list = NULL
658 .label = "tls crlfile",
659 .type = P_STRING,
660 .p_class = P_GLOBAL,
661 .offset = GLOBAL_VAR(tls_crlfile),
662 .special = NULL,
663 .enum_list = NULL
666 .label = "tls dh params file",
667 .type = P_STRING,
668 .p_class = P_GLOBAL,
669 .offset = GLOBAL_VAR(tls_dhpfile),
670 .special = NULL,
671 .enum_list = NULL
674 .label = "large readwrite",
675 .type = P_BOOL,
676 .p_class = P_GLOBAL,
677 .offset = GLOBAL_VAR(bLargeReadwrite),
678 .special = NULL,
679 .enum_list = NULL
682 .label = "server max protocol",
683 .type = P_ENUM,
684 .p_class = P_GLOBAL,
685 .offset = GLOBAL_VAR(srv_maxprotocol),
686 .special = NULL,
687 .enum_list = enum_protocol
690 .label = "server min protocol",
691 .type = P_ENUM,
692 .p_class = P_GLOBAL,
693 .offset = GLOBAL_VAR(srv_minprotocol),
694 .special = NULL,
695 .enum_list = enum_protocol
698 .label = "client max protocol",
699 .type = P_ENUM,
700 .p_class = P_GLOBAL,
701 .offset = GLOBAL_VAR(cli_maxprotocol),
702 .special = NULL,
703 .enum_list = enum_protocol
706 .label = "client min protocol",
707 .type = P_ENUM,
708 .p_class = P_GLOBAL,
709 .offset = GLOBAL_VAR(cli_minprotocol),
710 .special = NULL,
711 .enum_list = enum_protocol
714 .label = "unicode",
715 .type = P_BOOL,
716 .p_class = P_GLOBAL,
717 .offset = GLOBAL_VAR(bUnicode),
718 .special = NULL,
719 .enum_list = NULL
722 .label = "read raw",
723 .type = P_BOOL,
724 .p_class = P_GLOBAL,
725 .offset = GLOBAL_VAR(bReadRaw),
726 .special = NULL,
727 .enum_list = NULL
730 .label = "write raw",
731 .type = P_BOOL,
732 .p_class = P_GLOBAL,
733 .offset = GLOBAL_VAR(bWriteRaw),
734 .special = NULL,
735 .enum_list = NULL
738 .label = "disable netbios",
739 .type = P_BOOL,
740 .p_class = P_GLOBAL,
741 .offset = GLOBAL_VAR(bDisableNetbios),
742 .special = NULL,
743 .enum_list = NULL
747 .label = "nt status support",
748 .type = P_BOOL,
749 .p_class = P_GLOBAL,
750 .offset = GLOBAL_VAR(bNTStatusSupport),
751 .special = NULL,
752 .enum_list = NULL
756 .label = "max mux",
757 .type = P_INTEGER,
758 .p_class = P_GLOBAL,
759 .offset = GLOBAL_VAR(max_mux),
760 .special = NULL,
761 .enum_list = NULL
764 .label = "max xmit",
765 .type = P_BYTES,
766 .p_class = P_GLOBAL,
767 .offset = GLOBAL_VAR(max_xmit),
768 .special = NULL,
769 .enum_list = NULL
773 .label = "name resolve order",
774 .type = P_LIST,
775 .p_class = P_GLOBAL,
776 .offset = GLOBAL_VAR(szNameResolveOrder),
777 .special = NULL,
778 .enum_list = NULL
781 .label = "max wins ttl",
782 .type = P_INTEGER,
783 .p_class = P_GLOBAL,
784 .offset = GLOBAL_VAR(max_wins_ttl),
785 .special = NULL,
786 .enum_list = NULL
789 .label = "min wins ttl",
790 .type = P_INTEGER,
791 .p_class = P_GLOBAL,
792 .offset = GLOBAL_VAR(min_wins_ttl),
793 .special = NULL,
794 .enum_list = NULL
797 .label = "time server",
798 .type = P_BOOL,
799 .p_class = P_GLOBAL,
800 .offset = GLOBAL_VAR(bTimeServer),
801 .special = NULL,
802 .enum_list = NULL
805 .label = "unix extensions",
806 .type = P_BOOL,
807 .p_class = P_GLOBAL,
808 .offset = GLOBAL_VAR(bUnixExtensions),
809 .special = NULL,
810 .enum_list = NULL
813 .label = "use spnego",
814 .type = P_BOOL,
815 .p_class = P_GLOBAL,
816 .offset = GLOBAL_VAR(bUseSpnego),
817 .special = NULL,
818 .enum_list = NULL
821 .label = "server signing",
822 .type = P_ENUM,
823 .p_class = P_GLOBAL,
824 .offset = GLOBAL_VAR(server_signing),
825 .special = NULL,
826 .enum_list = enum_smb_signing_vals
829 .label = "client signing",
830 .type = P_ENUM,
831 .p_class = P_GLOBAL,
832 .offset = GLOBAL_VAR(client_signing),
833 .special = NULL,
834 .enum_list = enum_smb_signing_vals
837 .label = "rpc big endian",
838 .type = P_BOOL,
839 .p_class = P_GLOBAL,
840 .offset = GLOBAL_VAR(bRpcBigEndian),
841 .special = NULL,
842 .enum_list = NULL
846 .label = "max connections",
847 .type = P_INTEGER,
848 .p_class = P_LOCAL,
849 .offset = LOCAL_VAR(iMaxConnections),
850 .special = NULL,
851 .enum_list = NULL
854 .label = "paranoid server security",
855 .type = P_BOOL,
856 .p_class = P_GLOBAL,
857 .offset = GLOBAL_VAR(paranoid_server_security),
858 .special = NULL,
859 .enum_list = NULL
862 .label = "socket options",
863 .type = P_STRING,
864 .p_class = P_GLOBAL,
865 .offset = GLOBAL_VAR(socket_options),
866 .special = NULL,
867 .enum_list = NULL
871 .label = "strict sync",
872 .type = P_BOOL,
873 .p_class = P_LOCAL,
874 .offset = LOCAL_VAR(bStrictSync),
875 .special = NULL,
876 .enum_list = NULL
879 .label = "case insensitive filesystem",
880 .type = P_BOOL,
881 .p_class = P_LOCAL,
882 .offset = LOCAL_VAR(bCIFileSystem),
883 .special = NULL,
884 .enum_list = NULL
888 .label = "max print jobs",
889 .type = P_INTEGER,
890 .p_class = P_LOCAL,
891 .offset = LOCAL_VAR(iMaxPrintJobs),
892 .special = NULL,
893 .enum_list = NULL
896 .label = "printable",
897 .type = P_BOOL,
898 .p_class = P_LOCAL,
899 .offset = LOCAL_VAR(bPrint_ok),
900 .special = NULL,
901 .enum_list = NULL
904 .label = "print ok",
905 .type = P_BOOL,
906 .p_class = P_LOCAL,
907 .offset = LOCAL_VAR(bPrint_ok),
908 .special = NULL,
909 .enum_list = NULL
913 .label = "printer name",
914 .type = P_STRING,
915 .p_class = P_LOCAL,
916 .offset = LOCAL_VAR(szPrintername),
917 .special = NULL,
918 .enum_list = NULL
921 .label = "printer",
922 .type = P_STRING,
923 .p_class = P_LOCAL,
924 .offset = LOCAL_VAR(szPrintername),
925 .special = NULL,
926 .enum_list = NULL
930 .label = "map system",
931 .type = P_BOOL,
932 .p_class = P_LOCAL,
933 .offset = LOCAL_VAR(bMap_system),
934 .special = NULL,
935 .enum_list = NULL
938 .label = "map hidden",
939 .type = P_BOOL,
940 .p_class = P_LOCAL,
941 .offset = LOCAL_VAR(bMap_hidden),
942 .special = NULL,
943 .enum_list = NULL
946 .label = "map archive",
947 .type = P_BOOL,
948 .p_class = P_LOCAL,
949 .offset = LOCAL_VAR(bMap_archive),
950 .special = NULL,
951 .enum_list = NULL
955 .label = "preferred master",
956 .type = P_ENUM,
957 .p_class = P_GLOBAL,
958 .offset = GLOBAL_VAR(bPreferredMaster),
959 .special = NULL,
960 .enum_list = enum_bool_auto
963 .label = "prefered master",
964 .type = P_ENUM,
965 .p_class = P_GLOBAL,
966 .offset = GLOBAL_VAR(bPreferredMaster),
967 .special = NULL,
968 .enum_list = enum_bool_auto
971 .label = "local master",
972 .type = P_BOOL,
973 .p_class = P_GLOBAL,
974 .offset = GLOBAL_VAR(bLocalMaster),
975 .special = NULL,
976 .enum_list = NULL
979 .label = "browseable",
980 .type = P_BOOL,
981 .p_class = P_LOCAL,
982 .offset = LOCAL_VAR(bBrowseable),
983 .special = NULL,
984 .enum_list = NULL
987 .label = "browsable",
988 .type = P_BOOL,
989 .p_class = P_LOCAL,
990 .offset = LOCAL_VAR(bBrowseable),
991 .special = NULL,
992 .enum_list = NULL
996 .label = "wins server",
997 .type = P_LIST,
998 .p_class = P_GLOBAL,
999 .offset = GLOBAL_VAR(szWINSservers),
1000 .special = NULL,
1001 .enum_list = NULL
1004 .label = "wins support",
1005 .type = P_BOOL,
1006 .p_class = P_GLOBAL,
1007 .offset = GLOBAL_VAR(bWINSsupport),
1008 .special = NULL,
1009 .enum_list = NULL
1012 .label = "dns proxy",
1013 .type = P_BOOL,
1014 .p_class = P_GLOBAL,
1015 .offset = GLOBAL_VAR(bWINSdnsProxy),
1016 .special = NULL,
1017 .enum_list = NULL
1020 .label = "wins hook",
1021 .type = P_STRING,
1022 .p_class = P_GLOBAL,
1023 .offset = GLOBAL_VAR(szWINSHook),
1024 .special = NULL,
1025 .enum_list = NULL
1029 .label = "csc policy",
1030 .type = P_ENUM,
1031 .p_class = P_LOCAL,
1032 .offset = LOCAL_VAR(iCSCPolicy),
1033 .special = NULL,
1034 .enum_list = enum_csc_policy
1038 .label = "strict locking",
1039 .type = P_BOOL,
1040 .p_class = P_LOCAL,
1041 .offset = LOCAL_VAR(iStrictLocking),
1042 .special = NULL,
1043 .enum_list = NULL
1046 .label = "oplocks",
1047 .type = P_BOOL,
1048 .p_class = P_LOCAL,
1049 .offset = LOCAL_VAR(bOpLocks),
1050 .special = NULL,
1051 .enum_list = NULL
1055 .label = "share backend",
1056 .type = P_STRING,
1057 .p_class = P_GLOBAL,
1058 .offset = GLOBAL_VAR(szShareBackend),
1059 .special = NULL,
1060 .enum_list = NULL
1063 .label = "preload",
1064 .type = P_STRING,
1065 .p_class = P_GLOBAL,
1066 .offset = GLOBAL_VAR(szAutoServices),
1067 .special = NULL,
1068 .enum_list = NULL
1071 .label = "auto services",
1072 .type = P_STRING,
1073 .p_class = P_GLOBAL,
1074 .offset = GLOBAL_VAR(szAutoServices),
1075 .special = NULL,
1076 .enum_list = NULL
1079 .label = "lock dir",
1080 .type = P_STRING,
1081 .p_class = P_GLOBAL,
1082 .offset = GLOBAL_VAR(szLockDir),
1083 .special = NULL,
1084 .enum_list = NULL
1087 .label = "lock directory",
1088 .type = P_STRING,
1089 .p_class = P_GLOBAL,
1090 .offset = GLOBAL_VAR(szLockDir),
1091 .special = NULL,
1092 .enum_list = NULL
1095 .label = "state directory",
1096 .type = P_STRING,
1097 .p_class = P_GLOBAL,
1098 .offset = GLOBAL_VAR(szStateDir),
1099 .special = NULL,
1100 .enum_list = NULL
1103 .label = "cache directory",
1104 .type = P_STRING,
1105 .p_class = P_GLOBAL,
1106 .offset = GLOBAL_VAR(szCacheDir),
1107 .special = NULL,
1108 .enum_list = NULL
1111 .label = "pid directory",
1112 .type = P_STRING,
1113 .p_class = P_GLOBAL,
1114 .offset = GLOBAL_VAR(szPidDir),
1115 .special = NULL,
1116 .enum_list = NULL
1120 .label = "socket address",
1121 .type = P_STRING,
1122 .p_class = P_GLOBAL,
1123 .offset = GLOBAL_VAR(szSocketAddress),
1124 .special = NULL,
1125 .enum_list = NULL
1128 .label = "copy",
1129 .type = P_STRING,
1130 .p_class = P_LOCAL,
1131 .offset = LOCAL_VAR(szCopy),
1132 .special = handle_copy,
1133 .enum_list = NULL
1136 .label = "include",
1137 .type = P_STRING,
1138 .p_class = P_LOCAL,
1139 .offset = LOCAL_VAR(szInclude),
1140 .special = handle_include,
1141 .enum_list = NULL
1145 .label = "available",
1146 .type = P_BOOL,
1147 .p_class = P_LOCAL,
1148 .offset = LOCAL_VAR(bAvailable),
1149 .special = NULL,
1150 .enum_list = NULL
1153 .label = "volume",
1154 .type = P_STRING,
1155 .p_class = P_LOCAL,
1156 .offset = LOCAL_VAR(volume),
1157 .special = NULL,
1158 .enum_list = NULL
1161 .label = "fstype",
1162 .type = P_STRING,
1163 .p_class = P_LOCAL,
1164 .offset = LOCAL_VAR(fstype),
1165 .special = NULL,
1166 .enum_list = NULL
1170 .label = "panic action",
1171 .type = P_STRING,
1172 .p_class = P_GLOBAL,
1173 .offset = GLOBAL_VAR(panic_action),
1174 .special = NULL,
1175 .enum_list = NULL
1179 .label = "msdfs root",
1180 .type = P_BOOL,
1181 .p_class = P_LOCAL,
1182 .offset = LOCAL_VAR(bMSDfsRoot),
1183 .special = NULL,
1184 .enum_list = NULL
1187 .label = "host msdfs",
1188 .type = P_BOOL,
1189 .p_class = P_GLOBAL,
1190 .offset = GLOBAL_VAR(bHostMSDfs),
1191 .special = NULL,
1192 .enum_list = NULL
1195 .label = "winbind separator",
1196 .type = P_STRING,
1197 .p_class = P_GLOBAL,
1198 .offset = GLOBAL_VAR(szWinbindSeparator),
1199 .special = NULL,
1200 .enum_list = NULL
1203 .label = "winbindd socket directory",
1204 .type = P_STRING,
1205 .p_class = P_GLOBAL,
1206 .offset = GLOBAL_VAR(szWinbinddSocketDirectory),
1207 .special = NULL,
1208 .enum_list = NULL
1211 .label = "winbindd privileged socket directory",
1212 .type = P_STRING,
1213 .p_class = P_GLOBAL,
1214 .offset = GLOBAL_VAR(szWinbinddPrivilegedSocketDirectory),
1215 .special = NULL,
1216 .enum_list = NULL
1219 .label = "winbind sealed pipes",
1220 .type = P_BOOL,
1221 .p_class = P_GLOBAL,
1222 .offset = GLOBAL_VAR(bWinbindSealedPipes),
1223 .special = NULL,
1224 .enum_list = NULL
1227 .label = "template shell",
1228 .type = P_STRING,
1229 .p_class = P_GLOBAL,
1230 .offset = GLOBAL_VAR(szTemplateShell),
1231 .special = NULL,
1232 .enum_list = NULL
1235 .label = "template homedir",
1236 .type = P_STRING,
1237 .p_class = P_GLOBAL,
1238 .offset = GLOBAL_VAR(szTemplateHomedir),
1239 .special = NULL,
1240 .enum_list = NULL
1243 .label = "idmap trusted only",
1244 .type = P_BOOL,
1245 .p_class = P_GLOBAL,
1246 .offset = GLOBAL_VAR(bIdmapTrustedOnly),
1247 .special = NULL,
1248 .enum_list = NULL
1252 .label = "ntp signd socket directory",
1253 .type = P_STRING,
1254 .p_class = P_GLOBAL,
1255 .offset = GLOBAL_VAR(szNTPSignDSocketDirectory),
1256 .special = NULL,
1257 .enum_list = NULL
1260 .label = "rndc command",
1261 .type = P_CMDLIST,
1262 .p_class = P_GLOBAL,
1263 .offset = GLOBAL_VAR(szRNDCCommand),
1264 .special = NULL,
1265 .enum_list = NULL
1268 .label = "dns update command",
1269 .type = P_CMDLIST,
1270 .p_class = P_GLOBAL,
1271 .offset = GLOBAL_VAR(szDNSUpdateCommand),
1272 .special = NULL,
1273 .enum_list = NULL
1276 .label = "spn update command",
1277 .type = P_CMDLIST,
1278 .p_class = P_GLOBAL,
1279 .offset = GLOBAL_VAR(szSPNUpdateCommand),
1280 .special = NULL,
1281 .enum_list = NULL
1284 .label = "nsupdate command",
1285 .type = P_CMDLIST,
1286 .p_class = P_GLOBAL,
1287 .offset = GLOBAL_VAR(szNSUpdateCommand),
1288 .special = NULL,
1289 .enum_list = NULL
1292 {NULL, P_BOOL, P_NONE, 0, NULL, NULL, 0}
1296 /* local variables */
1297 struct loadparm_context {
1298 const char *szConfigFile;
1299 struct loadparm_global *globals;
1300 struct loadparm_service **services;
1301 struct loadparm_service *sDefault;
1302 struct smb_iconv_handle *iconv_handle;
1303 int iNumServices;
1304 struct loadparm_service *currentService;
1305 bool bInGlobalSection;
1306 struct file_lists {
1307 struct file_lists *next;
1308 char *name;
1309 char *subfname;
1310 time_t modtime;
1311 } *file_lists;
1312 unsigned int flags[NUMPARAMETERS];
1313 bool loaded;
1314 bool refuse_free;
1315 bool global; /* Is this the global context, which may set
1316 * global variables such as debug level etc? */
1317 const struct loadparm_s3_context *s3_fns;
1321 struct loadparm_service *lpcfg_default_service(struct loadparm_context *lp_ctx)
1323 if (lp_ctx->s3_fns) {
1324 return lp_ctx->s3_fns->get_default_loadparm_service();
1326 return lp_ctx->sDefault;
1330 * Convenience routine to grab string parameters into temporary memory
1331 * and run standard_sub_basic on them.
1333 * The buffers can be written to by
1334 * callers without affecting the source string.
1337 static const char *lp_string(const char *s)
1339 #if 0 /* until REWRITE done to make thread-safe */
1340 size_t len = s ? strlen(s) : 0;
1341 char *ret;
1342 #endif
1344 /* The follow debug is useful for tracking down memory problems
1345 especially if you have an inner loop that is calling a lp_*()
1346 function that returns a string. Perhaps this debug should be
1347 present all the time? */
1349 #if 0
1350 DEBUG(10, ("lp_string(%s)\n", s));
1351 #endif
1353 #if 0 /* until REWRITE done to make thread-safe */
1354 if (!lp_talloc)
1355 lp_talloc = talloc_init("lp_talloc");
1357 ret = talloc_array(lp_talloc, char, len + 100); /* leave room for substitution */
1359 if (!ret)
1360 return NULL;
1362 if (!s)
1363 *ret = 0;
1364 else
1365 strlcpy(ret, s, len);
1367 if (trim_string(ret, "\"", "\"")) {
1368 if (strchr(ret,'"') != NULL)
1369 strlcpy(ret, s, len);
1372 standard_sub_basic(ret,len+100);
1373 return (ret);
1374 #endif
1375 return s;
1379 In this section all the functions that are used to access the
1380 parameters from the rest of the program are defined
1384 * the creation of separate lpcfg_*() and lp_*() functions is to allow
1385 * for code compatibility between existing Samba4 and Samba3 code.
1388 /* this global context supports the lp_*() function varients */
1389 static struct loadparm_context *global_loadparm_context;
1391 #define lpcfg_default_service global_loadparm_context->sDefault
1392 #define lpcfg_global_service(i) global_loadparm_context->services[i]
1394 #define FN_GLOBAL_STRING(fn_name,var_name) \
1395 _PUBLIC_ const char *lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) { \
1396 if (lp_ctx == NULL) return NULL; \
1397 if (lp_ctx->s3_fns) { \
1398 SMB_ASSERT(lp_ctx->s3_fns->fn_name); \
1399 return lp_ctx->s3_fns->fn_name(); \
1401 return lp_ctx->globals->var_name ? lp_string(lp_ctx->globals->var_name) : ""; \
1404 #define FN_GLOBAL_CONST_STRING(fn_name,var_name) \
1405 _PUBLIC_ const char *lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) {\
1406 if (lp_ctx == NULL) return NULL; \
1407 if (lp_ctx->s3_fns) { \
1408 SMB_ASSERT(lp_ctx->s3_fns->fn_name); \
1409 return lp_ctx->s3_fns->fn_name(); \
1411 return lp_ctx->globals->var_name ? lp_string(lp_ctx->globals->var_name) : ""; \
1414 #define FN_GLOBAL_LIST(fn_name,var_name) \
1415 _PUBLIC_ const char **lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) { \
1416 if (lp_ctx == NULL) return NULL; \
1417 if (lp_ctx->s3_fns) { \
1418 SMB_ASSERT(lp_ctx->s3_fns->fn_name); \
1419 return lp_ctx->s3_fns->fn_name(); \
1421 return lp_ctx->globals->var_name; \
1424 #define FN_GLOBAL_BOOL(fn_name,var_name) \
1425 _PUBLIC_ bool lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) {\
1426 if (lp_ctx == NULL) return false; \
1427 if (lp_ctx->s3_fns) { \
1428 SMB_ASSERT(lp_ctx->s3_fns->fn_name); \
1429 return lp_ctx->s3_fns->fn_name(); \
1431 return lp_ctx->globals->var_name; \
1434 #define FN_GLOBAL_INTEGER(fn_name,var_name) \
1435 _PUBLIC_ int lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) { \
1436 if (lp_ctx->s3_fns) { \
1437 SMB_ASSERT(lp_ctx->s3_fns->fn_name); \
1438 return lp_ctx->s3_fns->fn_name(); \
1440 return lp_ctx->globals->var_name; \
1443 /* Local parameters don't need the ->s3_fns because the struct
1444 * loadparm_service is shared and lpcfg_service() checks the ->s3_fns
1445 * hook */
1446 #define FN_LOCAL_STRING(fn_name,val) \
1447 _PUBLIC_ const char *lpcfg_ ## fn_name(struct loadparm_service *service, \
1448 struct loadparm_service *sDefault) { \
1449 return(lp_string((const char *)((service != NULL && service->val != NULL) ? service->val : sDefault->val))); \
1452 #define FN_LOCAL_CONST_STRING(fn_name,val) FN_LOCAL_STRING(fn_name, val)
1454 #define FN_LOCAL_LIST(fn_name,val) \
1455 _PUBLIC_ const char **lpcfg_ ## fn_name(struct loadparm_service *service, \
1456 struct loadparm_service *sDefault) {\
1457 return(const char **)(service != NULL && service->val != NULL? service->val : sDefault->val); \
1460 #define FN_LOCAL_PARM_BOOL(fn_name, val) FN_LOCAL_BOOL(fn_name, val)
1462 #define FN_LOCAL_BOOL(fn_name,val) \
1463 _PUBLIC_ bool lpcfg_ ## fn_name(struct loadparm_service *service, \
1464 struct loadparm_service *sDefault) { \
1465 return((service != NULL)? service->val : sDefault->val); \
1468 #define FN_LOCAL_INTEGER(fn_name,val) \
1469 _PUBLIC_ int lpcfg_ ## fn_name(struct loadparm_service *service, \
1470 struct loadparm_service *sDefault) { \
1471 return((service != NULL)? service->val : sDefault->val); \
1474 #define FN_LOCAL_PARM_INTEGER(fn_name, val) FN_LOCAL_INTEGER(fn_name, val)
1476 #define FN_LOCAL_PARM_CHAR(fn_name, val) FN_LOCAL_CHAR(fn_name, val)
1478 #define FN_LOCAL_CHAR(fn_name,val) \
1479 _PUBLIC_ char lpcfg_ ## fn_name(struct loadparm_service *service, \
1480 struct loadparm_service *sDefault) { \
1481 return((service != NULL)? service->val : sDefault->val); \
1484 #include "lib/param/param_functions.c"
1486 FN_GLOBAL_INTEGER(server_role, server_role)
1487 FN_GLOBAL_LIST(smb_ports, smb_ports)
1488 FN_GLOBAL_INTEGER(nbt_port, nbt_port)
1489 FN_GLOBAL_INTEGER(dgram_port, dgram_port)
1490 FN_GLOBAL_INTEGER(cldap_port, cldap_port)
1491 FN_GLOBAL_INTEGER(krb5_port, krb5_port)
1492 FN_GLOBAL_INTEGER(kpasswd_port, kpasswd_port)
1493 FN_GLOBAL_INTEGER(web_port, web_port)
1494 FN_GLOBAL_BOOL(tls_enabled, tls_enabled)
1495 FN_GLOBAL_STRING(logfile, logfile)
1496 FN_GLOBAL_STRING(share_backend, szShareBackend)
1497 FN_GLOBAL_STRING(spoolss_url, szSPOOLSS_URL)
1498 FN_GLOBAL_STRING(wins_config_url, szWINS_CONFIG_URL)
1499 FN_GLOBAL_STRING(wins_url, szWINS_URL)
1500 FN_GLOBAL_CONST_STRING(winbind_separator, szWinbindSeparator)
1501 FN_GLOBAL_CONST_STRING(winbindd_socket_directory, szWinbinddSocketDirectory)
1502 FN_GLOBAL_CONST_STRING(winbindd_privileged_socket_directory, szWinbinddPrivilegedSocketDirectory)
1503 FN_GLOBAL_CONST_STRING(template_shell, szTemplateShell)
1504 FN_GLOBAL_CONST_STRING(template_homedir, szTemplateHomedir)
1505 FN_GLOBAL_BOOL(winbind_sealed_pipes, bWinbindSealedPipes)
1506 FN_GLOBAL_BOOL(idmap_trusted_only, bIdmapTrustedOnly)
1507 FN_GLOBAL_STRING(private_dir, szPrivateDir)
1508 FN_GLOBAL_STRING(serverstring, szServerString)
1509 FN_GLOBAL_STRING(lockdir, szLockDir)
1510 FN_GLOBAL_STRING(statedir, szStateDir)
1511 FN_GLOBAL_STRING(cachedir, szCacheDir)
1512 FN_GLOBAL_STRING(ncalrpc_dir, ncalrpc_dir)
1513 FN_GLOBAL_STRING(dos_charset, dos_charset)
1514 FN_GLOBAL_STRING(unix_charset, unix_charset)
1515 FN_GLOBAL_STRING(piddir, szPidDir)
1516 FN_GLOBAL_LIST(rndc_command, szRNDCCommand)
1517 FN_GLOBAL_LIST(dns_update_command, szDNSUpdateCommand)
1518 FN_GLOBAL_LIST(spn_update_command, szSPNUpdateCommand)
1519 FN_GLOBAL_LIST(nsupdate_command, szNSUpdateCommand)
1520 FN_GLOBAL_LIST(dcerpc_endpoint_servers, dcerpc_ep_servers)
1521 FN_GLOBAL_LIST(server_services, server_services)
1522 FN_GLOBAL_STRING(ntptr_providor, ntptr_providor)
1523 FN_GLOBAL_STRING(passdb_backend, passdb_backend)
1524 FN_GLOBAL_STRING(auto_services, szAutoServices)
1525 FN_GLOBAL_STRING(passwd_chat, szPasswdChat)
1526 FN_GLOBAL_LIST(passwordserver, szPasswordServers)
1527 FN_GLOBAL_LIST(name_resolve_order, szNameResolveOrder)
1528 FN_GLOBAL_STRING(realm, szRealm_upper)
1529 FN_GLOBAL_STRING(dnsdomain, szRealm_lower)
1530 FN_GLOBAL_STRING(socket_options, socket_options)
1531 FN_GLOBAL_STRING(workgroup, szWorkgroup)
1532 FN_GLOBAL_STRING(netbios_name, szNetbiosName)
1533 FN_GLOBAL_STRING(netbios_scope, szNetbiosScope)
1534 FN_GLOBAL_LIST(wins_server_list, szWINSservers)
1535 FN_GLOBAL_LIST(interfaces, szInterfaces)
1536 FN_GLOBAL_STRING(socket_address, szSocketAddress)
1537 FN_GLOBAL_LIST(netbios_aliases, szNetbiosAliases)
1538 FN_GLOBAL_BOOL(disable_netbios, bDisableNetbios)
1539 FN_GLOBAL_BOOL(we_are_a_wins_server, bWINSsupport)
1540 FN_GLOBAL_BOOL(wins_dns_proxy, bWINSdnsProxy)
1541 FN_GLOBAL_STRING(wins_hook, szWINSHook)
1542 FN_GLOBAL_BOOL(local_master, bLocalMaster)
1543 FN_GLOBAL_BOOL(readraw, bReadRaw)
1544 FN_GLOBAL_BOOL(large_readwrite, bLargeReadwrite)
1545 FN_GLOBAL_BOOL(writeraw, bWriteRaw)
1546 FN_GLOBAL_BOOL(null_passwords, bNullPasswords)
1547 FN_GLOBAL_BOOL(obey_pam_restrictions, bObeyPamRestrictions)
1548 FN_GLOBAL_BOOL(encrypted_passwords, bEncryptPasswords)
1549 FN_GLOBAL_BOOL(time_server, bTimeServer)
1550 FN_GLOBAL_BOOL(bind_interfaces_only, bBindInterfacesOnly)
1551 FN_GLOBAL_BOOL(unicode, bUnicode)
1552 FN_GLOBAL_BOOL(nt_status_support, bNTStatusSupport)
1553 FN_GLOBAL_BOOL(lanman_auth, bLanmanAuth)
1554 FN_GLOBAL_BOOL(ntlm_auth, bNTLMAuth)
1555 FN_GLOBAL_BOOL(client_plaintext_auth, bClientPlaintextAuth)
1556 FN_GLOBAL_BOOL(client_lanman_auth, bClientLanManAuth)
1557 FN_GLOBAL_BOOL(client_ntlmv2_auth, bClientNTLMv2Auth)
1558 FN_GLOBAL_BOOL(client_use_spnego_principal, client_use_spnego_principal)
1559 FN_GLOBAL_BOOL(host_msdfs, bHostMSDfs)
1560 FN_GLOBAL_BOOL(unix_extensions, bUnixExtensions)
1561 FN_GLOBAL_BOOL(use_spnego, bUseSpnego)
1562 FN_GLOBAL_BOOL(rpc_big_endian, bRpcBigEndian)
1563 FN_GLOBAL_INTEGER(max_wins_ttl, max_wins_ttl)
1564 FN_GLOBAL_INTEGER(min_wins_ttl, min_wins_ttl)
1565 FN_GLOBAL_INTEGER(maxmux, max_mux)
1566 FN_GLOBAL_INTEGER(max_xmit, max_xmit)
1567 FN_GLOBAL_INTEGER(passwordlevel, pwordlevel)
1568 FN_GLOBAL_INTEGER(srv_maxprotocol, srv_maxprotocol)
1569 FN_GLOBAL_INTEGER(srv_minprotocol, srv_minprotocol)
1570 FN_GLOBAL_INTEGER(cli_maxprotocol, cli_maxprotocol)
1571 FN_GLOBAL_INTEGER(cli_minprotocol, cli_minprotocol)
1572 FN_GLOBAL_INTEGER(security, security)
1573 FN_GLOBAL_BOOL(paranoid_server_security, paranoid_server_security)
1575 FN_GLOBAL_INTEGER(server_signing, server_signing)
1576 FN_GLOBAL_INTEGER(client_signing, client_signing)
1578 FN_GLOBAL_CONST_STRING(ntp_signd_socket_directory, szNTPSignDSocketDirectory)
1580 /* local prototypes */
1581 static int map_parameter(const char *pszParmName);
1582 static struct loadparm_service *getservicebyname(struct loadparm_context *lp_ctx,
1583 const char *pszServiceName);
1584 static void copy_service(struct loadparm_service *pserviceDest,
1585 struct loadparm_service *pserviceSource,
1586 struct bitmap *pcopymapDest);
1587 static bool service_ok(struct loadparm_service *service);
1588 static bool do_section(const char *pszSectionName, void *);
1589 static void init_copymap(struct loadparm_service *pservice);
1591 /* This is a helper function for parametrical options support. */
1592 /* It returns a pointer to parametrical option value if it exists or NULL otherwise */
1593 /* Actual parametrical functions are quite simple */
1594 const char *lpcfg_get_parametric(struct loadparm_context *lp_ctx,
1595 struct loadparm_service *service,
1596 const char *type, const char *option)
1598 char *vfskey_tmp = NULL;
1599 char *vfskey = NULL;
1600 struct parmlist_entry *data;
1602 if (lp_ctx == NULL)
1603 return NULL;
1605 if (lp_ctx->s3_fns) {
1606 return lp_ctx->s3_fns->get_parametric(service, type, option);
1609 data = (service == NULL ? lp_ctx->globals->param_opt : service->param_opt);
1611 vfskey_tmp = talloc_asprintf(NULL, "%s:%s", type, option);
1612 if (vfskey_tmp == NULL) return NULL;
1613 vfskey = strlower_talloc(NULL, vfskey_tmp);
1614 talloc_free(vfskey_tmp);
1616 while (data) {
1617 if (strcmp(data->key, vfskey) == 0) {
1618 talloc_free(vfskey);
1619 return data->value;
1621 data = data->next;
1624 if (service != NULL) {
1625 /* Try to fetch the same option but from globals */
1626 /* but only if we are not already working with globals */
1627 for (data = lp_ctx->globals->param_opt; data;
1628 data = data->next) {
1629 if (strcmp(data->key, vfskey) == 0) {
1630 talloc_free(vfskey);
1631 return data->value;
1636 talloc_free(vfskey);
1638 return NULL;
1643 * convenience routine to return int parameters.
1645 static int lp_int(const char *s)
1648 if (!s) {
1649 DEBUG(0,("lp_int(%s): is called with NULL!\n",s));
1650 return -1;
1653 return strtol(s, NULL, 0);
1657 * convenience routine to return unsigned long parameters.
1659 static int lp_ulong(const char *s)
1662 if (!s) {
1663 DEBUG(0,("lp_int(%s): is called with NULL!\n",s));
1664 return -1;
1667 return strtoul(s, NULL, 0);
1671 * convenience routine to return unsigned long parameters.
1673 static double lp_double(const char *s)
1676 if (!s) {
1677 DEBUG(0,("lp_double(%s): is called with NULL!\n",s));
1678 return -1;
1681 return strtod(s, NULL);
1685 * convenience routine to return boolean parameters.
1687 static bool lp_bool(const char *s)
1689 bool ret = false;
1691 if (!s) {
1692 DEBUG(0,("lp_bool(%s): is called with NULL!\n",s));
1693 return false;
1696 if (!set_boolean(s, &ret)) {
1697 DEBUG(0,("lp_bool(%s): value is not boolean!\n",s));
1698 return false;
1701 return ret;
1706 * Return parametric option from a given service. Type is a part of option before ':'
1707 * Parametric option has following syntax: 'Type: option = value'
1708 * Returned value is allocated in 'lp_talloc' context
1711 const char *lpcfg_parm_string(struct loadparm_context *lp_ctx,
1712 struct loadparm_service *service, const char *type,
1713 const char *option)
1715 const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
1717 if (value)
1718 return lp_string(value);
1720 return NULL;
1724 * Return parametric option from a given service. Type is a part of option before ':'
1725 * Parametric option has following syntax: 'Type: option = value'
1726 * Returned value is allocated in 'lp_talloc' context
1729 const char **lpcfg_parm_string_list(TALLOC_CTX *mem_ctx,
1730 struct loadparm_context *lp_ctx,
1731 struct loadparm_service *service,
1732 const char *type,
1733 const char *option, const char *separator)
1735 const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
1737 if (value != NULL)
1738 return (const char **)str_list_make(mem_ctx, value, separator);
1740 return NULL;
1744 * Return parametric option from a given service. Type is a part of option before ':'
1745 * Parametric option has following syntax: 'Type: option = value'
1748 int lpcfg_parm_int(struct loadparm_context *lp_ctx,
1749 struct loadparm_service *service, const char *type,
1750 const char *option, int default_v)
1752 const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
1754 if (value)
1755 return lp_int(value);
1757 return default_v;
1761 * Return parametric option from a given service. Type is a part of
1762 * option before ':'.
1763 * Parametric option has following syntax: 'Type: option = value'.
1766 int lpcfg_parm_bytes(struct loadparm_context *lp_ctx,
1767 struct loadparm_service *service, const char *type,
1768 const char *option, int default_v)
1770 uint64_t bval;
1772 const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
1774 if (value && conv_str_size_error(value, &bval)) {
1775 if (bval <= INT_MAX) {
1776 return (int)bval;
1780 return default_v;
1784 * Return parametric option from a given service.
1785 * Type is a part of option before ':'
1786 * Parametric option has following syntax: 'Type: option = value'
1788 unsigned long lpcfg_parm_ulong(struct loadparm_context *lp_ctx,
1789 struct loadparm_service *service, const char *type,
1790 const char *option, unsigned long default_v)
1792 const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
1794 if (value)
1795 return lp_ulong(value);
1797 return default_v;
1801 double lpcfg_parm_double(struct loadparm_context *lp_ctx,
1802 struct loadparm_service *service, const char *type,
1803 const char *option, double default_v)
1805 const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
1807 if (value != NULL)
1808 return lp_double(value);
1810 return default_v;
1814 * Return parametric option from a given service. Type is a part of option before ':'
1815 * Parametric option has following syntax: 'Type: option = value'
1818 bool lpcfg_parm_bool(struct loadparm_context *lp_ctx,
1819 struct loadparm_service *service, const char *type,
1820 const char *option, bool default_v)
1822 const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
1824 if (value != NULL)
1825 return lp_bool(value);
1827 return default_v;
1832 * Initialise a service to the defaults.
1835 static struct loadparm_service *init_service(TALLOC_CTX *mem_ctx, struct loadparm_service *sDefault)
1837 struct loadparm_service *pservice =
1838 talloc_zero(mem_ctx, struct loadparm_service);
1839 copy_service(pservice, sDefault, NULL);
1840 return pservice;
1844 * Set a string value, deallocating any existing space, and allocing the space
1845 * for the string
1847 static bool string_set(TALLOC_CTX *mem_ctx, char **dest, const char *src)
1849 talloc_free(*dest);
1851 if (src == NULL)
1852 src = "";
1854 *dest = talloc_strdup(mem_ctx, src);
1855 if ((*dest) == NULL) {
1856 DEBUG(0,("Out of memory in string_set\n"));
1857 return false;
1860 return true;
1864 * Set a string value, deallocating any existing space, and allocing the space
1865 * for the string
1867 static bool string_set_upper(TALLOC_CTX *mem_ctx, char **dest, const char *src)
1869 talloc_free(*dest);
1871 if (src == NULL)
1872 src = "";
1874 *dest = strupper_talloc(mem_ctx, src);
1875 if ((*dest) == NULL) {
1876 DEBUG(0,("Out of memory in string_set_upper\n"));
1877 return false;
1880 return true;
1886 * Add a new service to the services array initialising it with the given
1887 * service.
1890 struct loadparm_service *lpcfg_add_service(struct loadparm_context *lp_ctx,
1891 const struct loadparm_service *pservice,
1892 const char *name)
1894 int i;
1895 struct loadparm_service tservice;
1896 int num_to_alloc = lp_ctx->iNumServices + 1;
1897 struct parmlist_entry *data, *pdata;
1899 if (pservice == NULL) {
1900 pservice = lp_ctx->sDefault;
1903 tservice = *pservice;
1905 /* it might already exist */
1906 if (name) {
1907 struct loadparm_service *service = getservicebyname(lp_ctx,
1908 name);
1909 if (service != NULL) {
1910 /* Clean all parametric options for service */
1911 /* They will be added during parsing again */
1912 data = service->param_opt;
1913 while (data) {
1914 pdata = data->next;
1915 talloc_free(data);
1916 data = pdata;
1918 service->param_opt = NULL;
1919 return service;
1923 /* find an invalid one */
1924 for (i = 0; i < lp_ctx->iNumServices; i++)
1925 if (lp_ctx->services[i] == NULL)
1926 break;
1928 /* if not, then create one */
1929 if (i == lp_ctx->iNumServices) {
1930 struct loadparm_service **tsp;
1932 tsp = talloc_realloc(lp_ctx, lp_ctx->services, struct loadparm_service *, num_to_alloc);
1934 if (!tsp) {
1935 DEBUG(0,("lpcfg_add_service: failed to enlarge services!\n"));
1936 return NULL;
1937 } else {
1938 lp_ctx->services = tsp;
1939 lp_ctx->services[lp_ctx->iNumServices] = NULL;
1942 lp_ctx->iNumServices++;
1945 lp_ctx->services[i] = init_service(lp_ctx->services, lp_ctx->sDefault);
1946 if (lp_ctx->services[i] == NULL) {
1947 DEBUG(0,("lpcfg_add_service: out of memory!\n"));
1948 return NULL;
1950 copy_service(lp_ctx->services[i], &tservice, NULL);
1951 if (name != NULL)
1952 string_set(lp_ctx->services[i], &lp_ctx->services[i]->szService, name);
1953 return lp_ctx->services[i];
1957 * Add a new home service, with the specified home directory, defaults coming
1958 * from service ifrom.
1961 bool lpcfg_add_home(struct loadparm_context *lp_ctx,
1962 const char *pszHomename,
1963 struct loadparm_service *default_service,
1964 const char *user, const char *pszHomedir)
1966 struct loadparm_service *service;
1968 service = lpcfg_add_service(lp_ctx, default_service, pszHomename);
1970 if (service == NULL)
1971 return false;
1973 if (!(*(default_service->szPath))
1974 || strequal(default_service->szPath, lp_ctx->sDefault->szPath)) {
1975 service->szPath = talloc_strdup(service, pszHomedir);
1976 } else {
1977 service->szPath = string_sub_talloc(service, lpcfg_pathname(default_service, lp_ctx->sDefault), "%H", pszHomedir);
1980 if (!(*(service->comment))) {
1981 service->comment = talloc_asprintf(service, "Home directory of %s", user);
1983 service->bAvailable = default_service->bAvailable;
1984 service->bBrowseable = default_service->bBrowseable;
1986 DEBUG(3, ("adding home's share [%s] for user '%s' at '%s'\n",
1987 pszHomename, user, service->szPath));
1989 return true;
1993 * Add a new printer service, with defaults coming from service iFrom.
1996 bool lpcfg_add_printer(struct loadparm_context *lp_ctx,
1997 const char *pszPrintername,
1998 struct loadparm_service *default_service)
2000 const char *comment = "From Printcap";
2001 struct loadparm_service *service;
2002 service = lpcfg_add_service(lp_ctx, default_service, pszPrintername);
2004 if (service == NULL)
2005 return false;
2007 /* note that we do NOT default the availability flag to True - */
2008 /* we take it from the default service passed. This allows all */
2009 /* dynamic printers to be disabled by disabling the [printers] */
2010 /* entry (if/when the 'available' keyword is implemented!). */
2012 /* the printer name is set to the service name. */
2013 string_set(service, &service->szPrintername, pszPrintername);
2014 string_set(service, &service->comment, comment);
2015 service->bBrowseable = default_service->bBrowseable;
2016 /* Printers cannot be read_only. */
2017 service->bRead_only = false;
2018 /* Printer services must be printable. */
2019 service->bPrint_ok = true;
2021 DEBUG(3, ("adding printer service %s\n", pszPrintername));
2023 return true;
2027 * Map a parameter's string representation to something we can use.
2028 * Returns False if the parameter string is not recognised, else TRUE.
2031 static int map_parameter(const char *pszParmName)
2033 int iIndex;
2035 if (*pszParmName == '-')
2036 return -1;
2038 for (iIndex = 0; parm_table[iIndex].label; iIndex++)
2039 if (strwicmp(parm_table[iIndex].label, pszParmName) == 0)
2040 return iIndex;
2042 /* Warn only if it isn't parametric option */
2043 if (strchr(pszParmName, ':') == NULL)
2044 DEBUG(0, ("Unknown parameter encountered: \"%s\"\n", pszParmName));
2045 /* We do return 'fail' for parametric options as well because they are
2046 stored in different storage
2048 return -1;
2053 return the parameter structure for a parameter
2055 struct parm_struct *lpcfg_parm_struct(struct loadparm_context *lp_ctx, const char *name)
2057 int parmnum;
2059 if (lp_ctx->s3_fns) {
2060 return lp_ctx->s3_fns->get_parm_struct(name);
2063 parmnum = map_parameter(name);
2064 if (parmnum == -1) return NULL;
2065 return &parm_table[parmnum];
2069 return the parameter pointer for a parameter
2071 void *lpcfg_parm_ptr(struct loadparm_context *lp_ctx,
2072 struct loadparm_service *service, struct parm_struct *parm)
2074 if (lp_ctx->s3_fns) {
2075 return lp_ctx->s3_fns->get_parm_ptr(service, parm);
2078 if (service == NULL) {
2079 if (parm->p_class == P_LOCAL)
2080 return ((char *)lp_ctx->sDefault)+parm->offset;
2081 else if (parm->p_class == P_GLOBAL)
2082 return ((char *)lp_ctx->globals)+parm->offset;
2083 else return NULL;
2084 } else {
2085 return ((char *)service) + parm->offset;
2090 * Find a service by name. Otherwise works like get_service.
2093 static struct loadparm_service *getservicebyname(struct loadparm_context *lp_ctx,
2094 const char *pszServiceName)
2096 int iService;
2098 if (lp_ctx->s3_fns) {
2099 return lp_ctx->s3_fns->get_service(pszServiceName);
2102 for (iService = lp_ctx->iNumServices - 1; iService >= 0; iService--)
2103 if (lp_ctx->services[iService] != NULL &&
2104 strwicmp(lp_ctx->services[iService]->szService, pszServiceName) == 0) {
2105 return lp_ctx->services[iService];
2108 return NULL;
2112 * Copy a service structure to another.
2113 * If pcopymapDest is NULL then copy all fields
2116 static void copy_service(struct loadparm_service *pserviceDest,
2117 struct loadparm_service *pserviceSource,
2118 struct bitmap *pcopymapDest)
2120 int i;
2121 bool bcopyall = (pcopymapDest == NULL);
2122 struct parmlist_entry *data, *pdata, *paramo;
2123 bool not_added;
2125 for (i = 0; parm_table[i].label; i++)
2126 if (parm_table[i].p_class == P_LOCAL &&
2127 (bcopyall || bitmap_query(pcopymapDest, i))) {
2128 void *src_ptr =
2129 ((char *)pserviceSource) + parm_table[i].offset;
2130 void *dest_ptr =
2131 ((char *)pserviceDest) + parm_table[i].offset;
2133 switch (parm_table[i].type) {
2134 case P_BOOL:
2135 *(int *)dest_ptr = *(int *)src_ptr;
2136 break;
2138 case P_INTEGER:
2139 case P_OCTAL:
2140 case P_ENUM:
2141 *(int *)dest_ptr = *(int *)src_ptr;
2142 break;
2144 case P_STRING:
2145 string_set(pserviceDest,
2146 (char **)dest_ptr,
2147 *(char **)src_ptr);
2148 break;
2150 case P_USTRING:
2151 string_set_upper(pserviceDest,
2152 (char **)dest_ptr,
2153 *(char **)src_ptr);
2154 break;
2155 case P_LIST:
2156 *(const char ***)dest_ptr = (const char **)str_list_copy(pserviceDest,
2157 *(const char ***)src_ptr);
2158 break;
2159 default:
2160 break;
2164 if (bcopyall) {
2165 init_copymap(pserviceDest);
2166 if (pserviceSource->copymap)
2167 bitmap_copy(pserviceDest->copymap,
2168 pserviceSource->copymap);
2171 data = pserviceSource->param_opt;
2172 while (data) {
2173 not_added = true;
2174 pdata = pserviceDest->param_opt;
2175 /* Traverse destination */
2176 while (pdata) {
2177 /* If we already have same option, override it */
2178 if (strcmp(pdata->key, data->key) == 0) {
2179 talloc_free(pdata->value);
2180 pdata->value = talloc_reference(pdata,
2181 data->value);
2182 not_added = false;
2183 break;
2185 pdata = pdata->next;
2187 if (not_added) {
2188 paramo = talloc_zero(pserviceDest, struct parmlist_entry);
2189 if (paramo == NULL)
2190 smb_panic("OOM");
2191 paramo->key = talloc_reference(paramo, data->key);
2192 paramo->value = talloc_reference(paramo, data->value);
2193 DLIST_ADD(pserviceDest->param_opt, paramo);
2195 data = data->next;
2200 * Check a service for consistency. Return False if the service is in any way
2201 * incomplete or faulty, else True.
2203 static bool service_ok(struct loadparm_service *service)
2205 bool bRetval;
2207 bRetval = true;
2208 if (service->szService[0] == '\0') {
2209 DEBUG(0, ("The following message indicates an internal error:\n"));
2210 DEBUG(0, ("No service name in service entry.\n"));
2211 bRetval = false;
2214 /* The [printers] entry MUST be printable. I'm all for flexibility, but */
2215 /* I can't see why you'd want a non-printable printer service... */
2216 if (strwicmp(service->szService, PRINTERS_NAME) == 0) {
2217 if (!service->bPrint_ok) {
2218 DEBUG(0, ("WARNING: [%s] service MUST be printable!\n",
2219 service->szService));
2220 service->bPrint_ok = true;
2222 /* [printers] service must also be non-browsable. */
2223 if (service->bBrowseable)
2224 service->bBrowseable = false;
2227 /* If a service is flagged unavailable, log the fact at level 0. */
2228 if (!service->bAvailable)
2229 DEBUG(1, ("NOTE: Service %s is flagged unavailable.\n",
2230 service->szService));
2232 return bRetval;
2236 /*******************************************************************
2237 Keep a linked list of all config files so we know when one has changed
2238 it's date and needs to be reloaded.
2239 ********************************************************************/
2241 static void add_to_file_list(struct loadparm_context *lp_ctx,
2242 const char *fname, const char *subfname)
2244 struct file_lists *f = lp_ctx->file_lists;
2246 while (f) {
2247 if (f->name && !strcmp(f->name, fname))
2248 break;
2249 f = f->next;
2252 if (!f) {
2253 f = talloc(lp_ctx, struct file_lists);
2254 if (!f)
2255 return;
2256 f->next = lp_ctx->file_lists;
2257 f->name = talloc_strdup(f, fname);
2258 if (!f->name) {
2259 talloc_free(f);
2260 return;
2262 f->subfname = talloc_strdup(f, subfname);
2263 if (!f->subfname) {
2264 talloc_free(f);
2265 return;
2267 lp_ctx->file_lists = f;
2268 f->modtime = file_modtime(subfname);
2269 } else {
2270 time_t t = file_modtime(subfname);
2271 if (t)
2272 f->modtime = t;
2276 /*******************************************************************
2277 Check if a config file has changed date.
2278 ********************************************************************/
2279 bool lpcfg_file_list_changed(struct loadparm_context *lp_ctx)
2281 struct file_lists *f;
2282 DEBUG(6, ("lp_file_list_changed()\n"));
2284 for (f = lp_ctx->file_lists; f != NULL; f = f->next) {
2285 char *n2;
2286 time_t mod_time;
2288 n2 = standard_sub_basic(lp_ctx, f->name);
2290 DEBUGADD(6, ("file %s -> %s last mod_time: %s\n",
2291 f->name, n2, ctime(&f->modtime)));
2293 mod_time = file_modtime(n2);
2295 if (mod_time && ((f->modtime != mod_time) || (f->subfname == NULL) || (strcmp(n2, f->subfname) != 0))) {
2296 DEBUGADD(6, ("file %s modified: %s\n", n2,
2297 ctime(&mod_time)));
2298 f->modtime = mod_time;
2299 talloc_free(f->subfname);
2300 f->subfname = talloc_strdup(f, n2);
2301 return true;
2304 return false;
2307 /***************************************************************************
2308 Handle the "realm" parameter
2309 ***************************************************************************/
2311 static bool handle_realm(struct loadparm_context *lp_ctx, int unused,
2312 const char *pszParmValue, char **ptr)
2314 string_set(lp_ctx, ptr, pszParmValue);
2316 talloc_free(lp_ctx->globals->szRealm_upper);
2317 talloc_free(lp_ctx->globals->szRealm_lower);
2319 lp_ctx->globals->szRealm_upper = strupper_talloc(lp_ctx, pszParmValue);
2320 lp_ctx->globals->szRealm_lower = strlower_talloc(lp_ctx, pszParmValue);
2322 return true;
2325 /***************************************************************************
2326 Handle the include operation.
2327 ***************************************************************************/
2329 static bool handle_include(struct loadparm_context *lp_ctx, int unused,
2330 const char *pszParmValue, char **ptr)
2332 char *fname = standard_sub_basic(lp_ctx, pszParmValue);
2334 add_to_file_list(lp_ctx, pszParmValue, fname);
2336 string_set(lp_ctx, ptr, fname);
2338 if (file_exist(fname))
2339 return pm_process(fname, do_section, do_parameter, lp_ctx);
2341 DEBUG(2, ("Can't find include file %s\n", fname));
2343 return false;
2346 /***************************************************************************
2347 Handle the interpretation of the copy parameter.
2348 ***************************************************************************/
2350 static bool handle_copy(struct loadparm_context *lp_ctx, int unused,
2351 const char *pszParmValue, char **ptr)
2353 bool bRetval;
2354 struct loadparm_service *serviceTemp;
2356 string_set(lp_ctx, ptr, pszParmValue);
2358 bRetval = false;
2360 DEBUG(3, ("Copying service from service %s\n", pszParmValue));
2362 if ((serviceTemp = getservicebyname(lp_ctx, pszParmValue)) != NULL) {
2363 if (serviceTemp == lp_ctx->currentService) {
2364 DEBUG(0, ("Can't copy service %s - unable to copy self!\n", pszParmValue));
2365 } else {
2366 copy_service(lp_ctx->currentService,
2367 serviceTemp,
2368 lp_ctx->currentService->copymap);
2369 bRetval = true;
2371 } else {
2372 DEBUG(0, ("Unable to copy service - source not found: %s\n",
2373 pszParmValue));
2374 bRetval = false;
2377 return bRetval;
2380 static bool handle_debuglevel(struct loadparm_context *lp_ctx, int unused,
2381 const char *pszParmValue, char **ptr)
2384 string_set(lp_ctx, ptr, pszParmValue);
2385 if (lp_ctx->global) {
2386 return debug_parse_levels(pszParmValue);
2388 return true;
2391 static bool handle_logfile(struct loadparm_context *lp_ctx, int unused,
2392 const char *pszParmValue, char **ptr)
2394 debug_set_logfile(pszParmValue);
2395 if (lp_ctx->global) {
2396 string_set(lp_ctx, ptr, pszParmValue);
2398 return true;
2401 /***************************************************************************
2402 Initialise a copymap.
2403 ***************************************************************************/
2405 static void init_copymap(struct loadparm_service *pservice)
2407 int i;
2409 TALLOC_FREE(pservice->copymap);
2411 pservice->copymap = bitmap_talloc(NULL, NUMPARAMETERS);
2412 if (!pservice->copymap)
2413 DEBUG(0,
2414 ("Couldn't allocate copymap!! (size %d)\n",
2415 (int)NUMPARAMETERS));
2416 else
2417 for (i = 0; i < NUMPARAMETERS; i++)
2418 bitmap_set(pservice->copymap, i);
2422 * Process a parametric option
2424 static bool lp_do_parameter_parametric(struct loadparm_context *lp_ctx,
2425 struct loadparm_service *service,
2426 const char *pszParmName,
2427 const char *pszParmValue, int flags)
2429 struct parmlist_entry *paramo, *data;
2430 char *name;
2431 TALLOC_CTX *mem_ctx;
2433 while (isspace((unsigned char)*pszParmName)) {
2434 pszParmName++;
2437 name = strlower_talloc(lp_ctx, pszParmName);
2438 if (!name) return false;
2440 if (service == NULL) {
2441 data = lp_ctx->globals->param_opt;
2442 mem_ctx = lp_ctx->globals;
2443 } else {
2444 data = service->param_opt;
2445 mem_ctx = service;
2448 /* Traverse destination */
2449 for (paramo=data; paramo; paramo=paramo->next) {
2450 /* If we already have the option set, override it unless
2451 it was a command line option and the new one isn't */
2452 if (strcmp(paramo->key, name) == 0) {
2453 if ((paramo->priority & FLAG_CMDLINE) &&
2454 !(flags & FLAG_CMDLINE)) {
2455 talloc_free(name);
2456 return true;
2459 talloc_free(paramo->value);
2460 paramo->value = talloc_strdup(paramo, pszParmValue);
2461 paramo->priority = flags;
2462 talloc_free(name);
2463 return true;
2467 paramo = talloc_zero(mem_ctx, struct parmlist_entry);
2468 if (!paramo)
2469 smb_panic("OOM");
2470 paramo->key = talloc_strdup(paramo, name);
2471 paramo->value = talloc_strdup(paramo, pszParmValue);
2472 paramo->priority = flags;
2473 if (service == NULL) {
2474 DLIST_ADD(lp_ctx->globals->param_opt, paramo);
2475 } else {
2476 DLIST_ADD(service->param_opt, paramo);
2479 talloc_free(name);
2481 return true;
2484 static bool set_variable(TALLOC_CTX *mem_ctx, int parmnum, void *parm_ptr,
2485 const char *pszParmName, const char *pszParmValue,
2486 struct loadparm_context *lp_ctx, bool on_globals)
2488 int i;
2489 /* if it is a special case then go ahead */
2490 if (parm_table[parmnum].special) {
2491 bool ret;
2492 ret = parm_table[parmnum].special(lp_ctx, -1, pszParmValue,
2493 (char **)parm_ptr);
2494 if (!ret) {
2495 return false;
2497 goto mark_non_default;
2500 /* now switch on the type of variable it is */
2501 switch (parm_table[parmnum].type)
2503 case P_BOOL: {
2504 bool b;
2505 if (!set_boolean(pszParmValue, &b)) {
2506 DEBUG(0,("lp_do_parameter(%s): value is not boolean!\n", pszParmValue));
2507 return false;
2509 *(int *)parm_ptr = b;
2511 break;
2513 case P_BOOLREV: {
2514 bool b;
2515 if (!set_boolean(pszParmValue, &b)) {
2516 DEBUG(0,("lp_do_parameter(%s): value is not boolean!\n", pszParmValue));
2517 return false;
2519 *(int *)parm_ptr = !b;
2521 break;
2523 case P_INTEGER:
2524 *(int *)parm_ptr = atoi(pszParmValue);
2525 break;
2527 case P_CHAR:
2528 *(char *)parm_ptr = *pszParmValue;
2529 break;
2531 case P_OCTAL:
2532 *(int *)parm_ptr = strtol(pszParmValue, NULL, 8);
2533 break;
2535 case P_BYTES:
2537 uint64_t val;
2538 if (conv_str_size_error(pszParmValue, &val)) {
2539 if (val <= INT_MAX) {
2540 *(int *)parm_ptr = (int)val;
2541 break;
2545 DEBUG(0,("lp_do_parameter(%s): value is not "
2546 "a valid size specifier!\n", pszParmValue));
2547 return false;
2550 case P_CMDLIST:
2551 *(const char ***)parm_ptr = (const char **)str_list_make(mem_ctx,
2552 pszParmValue, NULL);
2553 break;
2554 case P_LIST:
2556 char **new_list = str_list_make(mem_ctx,
2557 pszParmValue, NULL);
2558 for (i=0; new_list[i]; i++) {
2559 if (new_list[i][0] == '+' && new_list[i][1] &&
2560 (!str_list_check(*(const char ***)parm_ptr,
2561 &new_list[i][1]))) {
2562 *(const char ***)parm_ptr = str_list_add(*(const char ***)parm_ptr,
2563 &new_list[i][1]);
2564 } else if (new_list[i][0] == '-' && new_list[i][1]) {
2565 #if 0 /* This is commented out because we sometimes parse the list
2566 * twice, and so we can't assert on this */
2567 if (!str_list_check(*(const char ***)parm_ptr,
2568 &new_list[i][1])) {
2569 DEBUG(0, ("Unsupported value for: %s = %s, %s is not in the original list [%s]\n",
2570 pszParmName, pszParmValue, new_list[i],
2571 str_list_join_shell(mem_ctx, *(const char ***)parm_ptr, ' ')));
2572 return false;
2575 #endif
2576 str_list_remove(*(const char ***)parm_ptr,
2577 &new_list[i][1]);
2578 } else {
2579 if (i != 0) {
2580 DEBUG(0, ("Unsupported list syntax for: %s = %s\n",
2581 pszParmName, pszParmValue));
2582 return false;
2584 *(const char ***)parm_ptr = (const char **) new_list;
2585 break;
2588 break;
2590 case P_STRING:
2591 string_set(mem_ctx, (char **)parm_ptr, pszParmValue);
2592 break;
2594 case P_USTRING:
2595 string_set_upper(mem_ctx, (char **)parm_ptr, pszParmValue);
2596 break;
2598 case P_ENUM:
2599 for (i = 0; parm_table[parmnum].enum_list[i].name; i++) {
2600 if (strequal
2601 (pszParmValue,
2602 parm_table[parmnum].enum_list[i].name)) {
2603 *(int *)parm_ptr =
2604 parm_table[parmnum].
2605 enum_list[i].value;
2606 break;
2609 if (!parm_table[parmnum].enum_list[i].name) {
2610 DEBUG(0,("Unknown enumerated value '%s' for '%s'\n",
2611 pszParmValue, pszParmName));
2612 return false;
2614 break;
2617 mark_non_default:
2618 if (on_globals && (lp_ctx->flags[parmnum] & FLAG_DEFAULT)) {
2619 lp_ctx->flags[parmnum] &= ~FLAG_DEFAULT;
2620 /* we have to also unset FLAG_DEFAULT on aliases */
2621 for (i=parmnum-1;i>=0 && parm_table[i].offset == parm_table[parmnum].offset;i--) {
2622 lp_ctx->flags[i] &= ~FLAG_DEFAULT;
2624 for (i=parmnum+1;i<NUMPARAMETERS && parm_table[i].offset == parm_table[parmnum].offset;i++) {
2625 lp_ctx->flags[i] &= ~FLAG_DEFAULT;
2628 return true;
2632 bool lpcfg_do_global_parameter(struct loadparm_context *lp_ctx,
2633 const char *pszParmName, const char *pszParmValue)
2635 int parmnum = map_parameter(pszParmName);
2636 void *parm_ptr;
2638 if (parmnum < 0) {
2639 if (strchr(pszParmName, ':')) {
2640 return lp_do_parameter_parametric(lp_ctx, NULL, pszParmName, pszParmValue, 0);
2642 DEBUG(0, ("Ignoring unknown parameter \"%s\"\n", pszParmName));
2643 return true;
2646 /* if the flag has been set on the command line, then don't allow override,
2647 but don't report an error */
2648 if (lp_ctx->flags[parmnum] & FLAG_CMDLINE) {
2649 return true;
2652 parm_ptr = lpcfg_parm_ptr(lp_ctx, NULL, &parm_table[parmnum]);
2654 return set_variable(lp_ctx->globals, parmnum, parm_ptr,
2655 pszParmName, pszParmValue, lp_ctx, true);
2658 bool lpcfg_do_service_parameter(struct loadparm_context *lp_ctx,
2659 struct loadparm_service *service,
2660 const char *pszParmName, const char *pszParmValue)
2662 void *parm_ptr;
2663 int i;
2664 int parmnum = map_parameter(pszParmName);
2666 if (parmnum < 0) {
2667 if (strchr(pszParmName, ':')) {
2668 return lp_do_parameter_parametric(lp_ctx, service, pszParmName, pszParmValue, 0);
2670 DEBUG(0, ("Ignoring unknown parameter \"%s\"\n", pszParmName));
2671 return true;
2674 /* if the flag has been set on the command line, then don't allow override,
2675 but don't report an error */
2676 if (lp_ctx->flags[parmnum] & FLAG_CMDLINE) {
2677 return true;
2680 if (parm_table[parmnum].p_class == P_GLOBAL) {
2681 DEBUG(0,
2682 ("Global parameter %s found in service section!\n",
2683 pszParmName));
2684 return true;
2686 parm_ptr = ((char *)service) + parm_table[parmnum].offset;
2688 if (!service->copymap)
2689 init_copymap(service);
2691 /* this handles the aliases - set the copymap for other
2692 * entries with the same data pointer */
2693 for (i = 0; parm_table[i].label; i++)
2694 if (parm_table[i].offset == parm_table[parmnum].offset &&
2695 parm_table[i].p_class == parm_table[parmnum].p_class)
2696 bitmap_clear(service->copymap, i);
2698 return set_variable(service, parmnum, parm_ptr, pszParmName,
2699 pszParmValue, lp_ctx, false);
2703 * Process a parameter.
2706 static bool do_parameter(const char *pszParmName, const char *pszParmValue,
2707 void *userdata)
2709 struct loadparm_context *lp_ctx = (struct loadparm_context *)userdata;
2711 if (lp_ctx->bInGlobalSection)
2712 return lpcfg_do_global_parameter(lp_ctx, pszParmName,
2713 pszParmValue);
2714 else
2715 return lpcfg_do_service_parameter(lp_ctx, lp_ctx->currentService,
2716 pszParmName, pszParmValue);
2720 variable argument do parameter
2722 bool lpcfg_do_global_parameter_var(struct loadparm_context *lp_ctx, const char *pszParmName, const char *fmt, ...) PRINTF_ATTRIBUTE(3, 4);
2723 bool lpcfg_do_global_parameter_var(struct loadparm_context *lp_ctx,
2724 const char *pszParmName, const char *fmt, ...)
2726 char *s;
2727 bool ret;
2728 va_list ap;
2730 va_start(ap, fmt);
2731 s = talloc_vasprintf(NULL, fmt, ap);
2732 va_end(ap);
2733 ret = lpcfg_do_global_parameter(lp_ctx, pszParmName, s);
2734 talloc_free(s);
2735 return ret;
2740 set a parameter from the commandline - this is called from command line parameter
2741 parsing code. It sets the parameter then marks the parameter as unable to be modified
2742 by smb.conf processing
2744 bool lpcfg_set_cmdline(struct loadparm_context *lp_ctx, const char *pszParmName,
2745 const char *pszParmValue)
2747 int parmnum;
2748 int i;
2750 if (lp_ctx->s3_fns) {
2751 return lp_ctx->s3_fns->set_cmdline(pszParmName, pszParmValue);
2754 parmnum = map_parameter(pszParmName);
2756 while (isspace((unsigned char)*pszParmValue)) pszParmValue++;
2759 if (parmnum < 0 && strchr(pszParmName, ':')) {
2760 /* set a parametric option */
2761 return lp_do_parameter_parametric(lp_ctx, NULL, pszParmName,
2762 pszParmValue, FLAG_CMDLINE);
2765 if (parmnum < 0) {
2766 DEBUG(0,("Unknown option '%s'\n", pszParmName));
2767 return false;
2770 /* reset the CMDLINE flag in case this has been called before */
2771 lp_ctx->flags[parmnum] &= ~FLAG_CMDLINE;
2773 if (!lpcfg_do_global_parameter(lp_ctx, pszParmName, pszParmValue)) {
2774 return false;
2777 lp_ctx->flags[parmnum] |= FLAG_CMDLINE;
2779 /* we have to also set FLAG_CMDLINE on aliases */
2780 for (i=parmnum-1;i>=0 && parm_table[i].offset == parm_table[parmnum].offset;i--) {
2781 lp_ctx->flags[i] |= FLAG_CMDLINE;
2783 for (i=parmnum+1;i<NUMPARAMETERS && parm_table[i].offset == parm_table[parmnum].offset;i++) {
2784 lp_ctx->flags[i] |= FLAG_CMDLINE;
2787 return true;
2791 set a option from the commandline in 'a=b' format. Use to support --option
2793 bool lpcfg_set_option(struct loadparm_context *lp_ctx, const char *option)
2795 char *p, *s;
2796 bool ret;
2798 s = strdup(option);
2799 if (!s) {
2800 return false;
2803 p = strchr(s, '=');
2804 if (!p) {
2805 free(s);
2806 return false;
2809 *p = 0;
2811 ret = lpcfg_set_cmdline(lp_ctx, s, p+1);
2812 free(s);
2813 return ret;
2817 #define BOOLSTR(b) ((b) ? "Yes" : "No")
2820 * Print a parameter of the specified type.
2823 static void print_parameter(struct parm_struct *p, void *ptr, FILE * f)
2825 int i;
2826 const char *list_sep = ", "; /* For the seperation of lists values that we print below */
2827 switch (p->type)
2829 case P_ENUM:
2830 for (i = 0; p->enum_list[i].name; i++) {
2831 if (*(int *)ptr == p->enum_list[i].value) {
2832 fprintf(f, "%s",
2833 p->enum_list[i].name);
2834 break;
2837 break;
2839 case P_BOOL:
2840 fprintf(f, "%s", BOOLSTR((bool)*(int *)ptr));
2841 break;
2843 case P_BOOLREV:
2844 fprintf(f, "%s", BOOLSTR(!(bool)*(int *)ptr));
2845 break;
2847 case P_INTEGER:
2848 case P_BYTES:
2849 fprintf(f, "%d", *(int *)ptr);
2850 break;
2852 case P_CHAR:
2853 fprintf(f, "%c", *(char *)ptr);
2854 break;
2856 case P_OCTAL:
2857 fprintf(f, "0%o", *(int *)ptr);
2858 break;
2860 case P_CMDLIST:
2861 list_sep = " ";
2862 /* fall through */
2863 case P_LIST:
2864 if ((char ***)ptr && *(char ***)ptr) {
2865 char **list = *(char ***)ptr;
2867 for (; *list; list++) {
2868 if (*(list+1) == NULL) {
2869 /* last item, print no extra seperator after */
2870 list_sep = "";
2872 fprintf(f, "%s%s", *list, list_sep);
2875 break;
2877 case P_STRING:
2878 case P_USTRING:
2879 if (*(char **)ptr) {
2880 fprintf(f, "%s", *(char **)ptr);
2882 break;
2887 * Check if two parameters are equal.
2890 static bool equal_parameter(parm_type type, void *ptr1, void *ptr2)
2892 switch (type) {
2893 case P_BOOL:
2894 case P_BOOLREV:
2895 return (*((int *)ptr1) == *((int *)ptr2));
2897 case P_INTEGER:
2898 case P_OCTAL:
2899 case P_BYTES:
2900 case P_ENUM:
2901 return (*((int *)ptr1) == *((int *)ptr2));
2903 case P_CHAR:
2904 return (*((char *)ptr1) == *((char *)ptr2));
2906 case P_CMDLIST:
2907 case P_LIST:
2908 return str_list_equal((const char **)(*(char ***)ptr1),
2909 (const char **)(*(char ***)ptr2));
2911 case P_STRING:
2912 case P_USTRING:
2914 char *p1 = *(char **)ptr1, *p2 = *(char **)ptr2;
2915 if (p1 && !*p1)
2916 p1 = NULL;
2917 if (p2 && !*p2)
2918 p2 = NULL;
2919 return (p1 == p2 || strequal(p1, p2));
2922 return false;
2926 * Process a new section (service).
2928 * At this stage all sections are services.
2929 * Later we'll have special sections that permit server parameters to be set.
2930 * Returns True on success, False on failure.
2933 static bool do_section(const char *pszSectionName, void *userdata)
2935 struct loadparm_context *lp_ctx = (struct loadparm_context *)userdata;
2936 bool bRetval;
2937 bool isglobal = ((strwicmp(pszSectionName, GLOBAL_NAME) == 0) ||
2938 (strwicmp(pszSectionName, GLOBAL_NAME2) == 0));
2939 bRetval = false;
2941 /* if we've just struck a global section, note the fact. */
2942 lp_ctx->bInGlobalSection = isglobal;
2944 /* check for multiple global sections */
2945 if (lp_ctx->bInGlobalSection) {
2946 DEBUG(4, ("Processing section \"[%s]\"\n", pszSectionName));
2947 return true;
2950 /* if we have a current service, tidy it up before moving on */
2951 bRetval = true;
2953 if (lp_ctx->currentService != NULL)
2954 bRetval = service_ok(lp_ctx->currentService);
2956 /* if all is still well, move to the next record in the services array */
2957 if (bRetval) {
2958 /* We put this here to avoid an odd message order if messages are */
2959 /* issued by the post-processing of a previous section. */
2960 DEBUG(4, ("Processing section \"[%s]\"\n", pszSectionName));
2962 if ((lp_ctx->currentService = lpcfg_add_service(lp_ctx, lp_ctx->sDefault,
2963 pszSectionName))
2964 == NULL) {
2965 DEBUG(0, ("Failed to add a new service\n"));
2966 return false;
2970 return bRetval;
2975 * Determine if a particular base parameter is currently set to the default value.
2978 static bool is_default(struct loadparm_service *sDefault, int i)
2980 void *def_ptr = ((char *)sDefault) + parm_table[i].offset;
2981 if (!defaults_saved)
2982 return false;
2983 switch (parm_table[i].type) {
2984 case P_CMDLIST:
2985 case P_LIST:
2986 return str_list_equal((const char **)parm_table[i].def.lvalue,
2987 (const char **)def_ptr);
2988 case P_STRING:
2989 case P_USTRING:
2990 return strequal(parm_table[i].def.svalue,
2991 *(char **)def_ptr);
2992 case P_BOOL:
2993 case P_BOOLREV:
2994 return parm_table[i].def.bvalue ==
2995 *(int *)def_ptr;
2996 case P_INTEGER:
2997 case P_CHAR:
2998 case P_OCTAL:
2999 case P_BYTES:
3000 case P_ENUM:
3001 return parm_table[i].def.ivalue ==
3002 *(int *)def_ptr;
3004 return false;
3008 *Display the contents of the global structure.
3011 static void dump_globals(struct loadparm_context *lp_ctx, FILE *f,
3012 bool show_defaults)
3014 int i;
3015 struct parmlist_entry *data;
3017 fprintf(f, "# Global parameters\n[global]\n");
3019 for (i = 0; parm_table[i].label; i++)
3020 if (parm_table[i].p_class == P_GLOBAL &&
3021 (i == 0 || (parm_table[i].offset != parm_table[i - 1].offset))) {
3022 if (!show_defaults && (lp_ctx->flags[i] & FLAG_DEFAULT))
3023 continue;
3024 fprintf(f, "\t%s = ", parm_table[i].label);
3025 print_parameter(&parm_table[i], lpcfg_parm_ptr(lp_ctx, NULL, &parm_table[i]), f);
3026 fprintf(f, "\n");
3028 if (lp_ctx->globals->param_opt != NULL) {
3029 for (data = lp_ctx->globals->param_opt; data;
3030 data = data->next) {
3031 if (!show_defaults && (data->priority & FLAG_DEFAULT)) {
3032 continue;
3034 fprintf(f, "\t%s = %s\n", data->key, data->value);
3041 * Display the contents of a single services record.
3044 static void dump_a_service(struct loadparm_service * pService, struct loadparm_service *sDefault, FILE * f,
3045 unsigned int *flags)
3047 int i;
3048 struct parmlist_entry *data;
3050 if (pService != sDefault)
3051 fprintf(f, "\n[%s]\n", pService->szService);
3053 for (i = 0; parm_table[i].label; i++) {
3054 if (parm_table[i].p_class == P_LOCAL &&
3055 (*parm_table[i].label != '-') &&
3056 (i == 0 || (parm_table[i].offset != parm_table[i - 1].offset)))
3058 if (pService == sDefault) {
3059 if (flags && (flags[i] & FLAG_DEFAULT)) {
3060 continue;
3062 if (defaults_saved) {
3063 if (is_default(sDefault, i)) {
3064 continue;
3067 } else {
3068 if (equal_parameter(parm_table[i].type,
3069 ((char *)pService) +
3070 parm_table[i].offset,
3071 ((char *)sDefault) +
3072 parm_table[i].offset))
3073 continue;
3076 fprintf(f, "\t%s = ", parm_table[i].label);
3077 print_parameter(&parm_table[i],
3078 ((char *)pService) + parm_table[i].offset, f);
3079 fprintf(f, "\n");
3082 if (pService->param_opt != NULL) {
3083 for (data = pService->param_opt; data; data = data->next) {
3084 fprintf(f, "\t%s = %s\n", data->key, data->value);
3089 bool lpcfg_dump_a_parameter(struct loadparm_context *lp_ctx,
3090 struct loadparm_service *service,
3091 const char *parm_name, FILE * f)
3093 struct parm_struct *parm;
3094 void *ptr;
3096 parm = lpcfg_parm_struct(lp_ctx, parm_name);
3097 if (!parm) {
3098 return false;
3101 ptr = lpcfg_parm_ptr(lp_ctx, service,parm);
3103 print_parameter(parm, ptr, f);
3104 fprintf(f, "\n");
3105 return true;
3109 * Return info about the next parameter in a service.
3110 * snum==-1 gives the globals.
3111 * Return NULL when out of parameters.
3115 struct parm_struct *lpcfg_next_parameter(struct loadparm_context *lp_ctx, int snum, int *i,
3116 int allparameters)
3118 if (snum == -1) {
3119 /* do the globals */
3120 for (; parm_table[*i].label; (*i)++) {
3121 if ((*parm_table[*i].label == '-'))
3122 continue;
3124 if ((*i) > 0
3125 && (parm_table[*i].offset ==
3126 parm_table[(*i) - 1].offset)
3127 && (parm_table[*i].p_class ==
3128 parm_table[(*i) - 1].p_class))
3129 continue;
3131 return &parm_table[(*i)++];
3133 } else {
3134 struct loadparm_service *pService = lp_ctx->services[snum];
3136 for (; parm_table[*i].label; (*i)++) {
3137 if (parm_table[*i].p_class == P_LOCAL &&
3138 (*parm_table[*i].label != '-') &&
3139 ((*i) == 0 ||
3140 (parm_table[*i].offset !=
3141 parm_table[(*i) - 1].offset)))
3143 if (allparameters ||
3144 !equal_parameter(parm_table[*i].type,
3145 ((char *)pService) +
3146 parm_table[*i].offset,
3147 ((char *)lp_ctx->sDefault) +
3148 parm_table[*i].offset))
3150 return &parm_table[(*i)++];
3156 return NULL;
3161 * Auto-load some home services.
3163 static void lpcfg_add_auto_services(struct loadparm_context *lp_ctx,
3164 const char *str)
3166 return;
3171 * Unload unused services.
3174 void lpcfg_killunused(struct loadparm_context *lp_ctx,
3175 struct smbsrv_connection *smb,
3176 bool (*snumused) (struct smbsrv_connection *, int))
3178 int i;
3179 for (i = 0; i < lp_ctx->iNumServices; i++) {
3180 if (lp_ctx->services[i] == NULL)
3181 continue;
3183 if (!snumused || !snumused(smb, i)) {
3184 talloc_free(lp_ctx->services[i]);
3185 lp_ctx->services[i] = NULL;
3191 static int lpcfg_destructor(struct loadparm_context *lp_ctx)
3193 struct parmlist_entry *data;
3195 if (lp_ctx->refuse_free) {
3196 /* someone is trying to free the
3197 global_loadparm_context.
3198 We can't allow that. */
3199 return -1;
3202 if (lp_ctx->globals->param_opt != NULL) {
3203 struct parmlist_entry *next;
3204 for (data = lp_ctx->globals->param_opt; data; data=next) {
3205 next = data->next;
3206 if (data->priority & FLAG_CMDLINE) continue;
3207 DLIST_REMOVE(lp_ctx->globals->param_opt, data);
3208 talloc_free(data);
3212 return 0;
3216 * Initialise the global parameter structure.
3218 * Note that most callers should use loadparm_init_global() instead
3220 struct loadparm_context *loadparm_init(TALLOC_CTX *mem_ctx)
3222 int i;
3223 char *myname;
3224 struct loadparm_context *lp_ctx;
3225 struct parmlist_entry *parm;
3226 char *logfile;
3228 lp_ctx = talloc_zero(mem_ctx, struct loadparm_context);
3229 if (lp_ctx == NULL)
3230 return NULL;
3232 talloc_set_destructor(lp_ctx, lpcfg_destructor);
3233 lp_ctx->bInGlobalSection = true;
3234 lp_ctx->globals = talloc_zero(lp_ctx, struct loadparm_global);
3235 lp_ctx->sDefault = talloc_zero(lp_ctx, struct loadparm_service);
3237 lp_ctx->sDefault->iMaxPrintJobs = 1000;
3238 lp_ctx->sDefault->bAvailable = true;
3239 lp_ctx->sDefault->bBrowseable = true;
3240 lp_ctx->sDefault->bRead_only = true;
3241 lp_ctx->sDefault->bMap_archive = true;
3242 lp_ctx->sDefault->iStrictLocking = true;
3243 lp_ctx->sDefault->bOpLocks = true;
3244 lp_ctx->sDefault->iCreate_mask = 0744;
3245 lp_ctx->sDefault->iCreate_force_mode = 0000;
3246 lp_ctx->sDefault->iDir_mask = 0755;
3247 lp_ctx->sDefault->iDir_force_mode = 0000;
3249 DEBUG(3, ("Initialising global parameters\n"));
3251 for (i = 0; parm_table[i].label; i++) {
3252 if ((parm_table[i].type == P_STRING ||
3253 parm_table[i].type == P_USTRING) &&
3254 !(lp_ctx->flags[i] & FLAG_CMDLINE)) {
3255 char **r;
3256 if (parm_table[i].p_class == P_LOCAL) {
3257 r = (char **)(((char *)lp_ctx->sDefault) + parm_table[i].offset);
3258 } else {
3259 r = (char **)(((char *)lp_ctx->globals) + parm_table[i].offset);
3261 *r = talloc_strdup(lp_ctx, "");
3265 logfile = talloc_asprintf(lp_ctx, "%s/log.samba", dyn_LOGFILEBASE);
3266 lpcfg_do_global_parameter(lp_ctx, "log file", logfile);
3267 talloc_free(logfile);
3269 lpcfg_do_global_parameter(lp_ctx, "log level", "0");
3271 lpcfg_do_global_parameter(lp_ctx, "share backend", "classic");
3273 lpcfg_do_global_parameter(lp_ctx, "share backend", "classic");
3275 lpcfg_do_global_parameter(lp_ctx, "server role", "standalone");
3277 /* options that can be set on the command line must be initialised via
3278 the slower lpcfg_do_global_parameter() to ensure that FLAG_CMDLINE is obeyed */
3279 #ifdef TCP_NODELAY
3280 lpcfg_do_global_parameter(lp_ctx, "socket options", "TCP_NODELAY");
3281 #endif
3282 lpcfg_do_global_parameter(lp_ctx, "workgroup", DEFAULT_WORKGROUP);
3283 myname = get_myname(lp_ctx);
3284 lpcfg_do_global_parameter(lp_ctx, "netbios name", myname);
3285 talloc_free(myname);
3286 lpcfg_do_global_parameter(lp_ctx, "name resolve order", "wins host bcast");
3288 lpcfg_do_global_parameter(lp_ctx, "fstype", "NTFS");
3290 lpcfg_do_global_parameter(lp_ctx, "ntvfs handler", "unixuid default");
3291 lpcfg_do_global_parameter(lp_ctx, "max connections", "-1");
3293 lpcfg_do_global_parameter(lp_ctx, "dcerpc endpoint servers", "epmapper srvsvc wkssvc rpcecho samr netlogon lsarpc spoolss drsuapi winreg dssetup unixinfo browser eventlog6 backupkey");
3294 lpcfg_do_global_parameter(lp_ctx, "server services", "smb rpc nbt wrepl ldap cldap kdc drepl winbind ntp_signd kcc dnsupdate");
3295 lpcfg_do_global_parameter(lp_ctx, "ntptr providor", "simple_ldb");
3296 /* the winbind method for domain controllers is for both RODC
3297 auth forwarding and for trusted domains */
3298 lpcfg_do_global_parameter(lp_ctx, "private dir", dyn_PRIVATE_DIR);
3299 lpcfg_do_global_parameter(lp_ctx, "spoolss database", "spoolss.ldb");
3300 lpcfg_do_global_parameter(lp_ctx, "wins config database", "wins_config.ldb");
3301 lpcfg_do_global_parameter(lp_ctx, "wins database", "wins.ldb");
3302 lpcfg_do_global_parameter(lp_ctx, "registry:HKEY_LOCAL_MACHINE", "hklm.ldb");
3304 /* This hive should be dynamically generated by Samba using
3305 data from the sam, but for the moment leave it in a tdb to
3306 keep regedt32 from popping up an annoying dialog. */
3307 lpcfg_do_global_parameter(lp_ctx, "registry:HKEY_USERS", "hku.ldb");
3309 /* using UTF8 by default allows us to support all chars */
3310 lpcfg_do_global_parameter(lp_ctx, "unix charset", "UTF8");
3312 /* Use codepage 850 as a default for the dos character set */
3313 lpcfg_do_global_parameter(lp_ctx, "dos charset", "CP850");
3316 * Allow the default PASSWD_CHAT to be overridden in local.h.
3318 lpcfg_do_global_parameter(lp_ctx, "passwd chat", DEFAULT_PASSWD_CHAT);
3320 lpcfg_do_global_parameter(lp_ctx, "pid directory", dyn_PIDDIR);
3321 lpcfg_do_global_parameter(lp_ctx, "lock dir", dyn_LOCKDIR);
3322 lpcfg_do_global_parameter(lp_ctx, "state directory", dyn_STATEDIR);
3323 lpcfg_do_global_parameter(lp_ctx, "cache directory", dyn_CACHEDIR);
3324 lpcfg_do_global_parameter(lp_ctx, "ncalrpc dir", dyn_NCALRPCDIR);
3326 lpcfg_do_global_parameter(lp_ctx, "socket address", "");
3327 lpcfg_do_global_parameter_var(lp_ctx, "server string",
3328 "Samba %s", SAMBA_VERSION_STRING);
3330 lpcfg_do_global_parameter(lp_ctx, "password server", "*");
3332 lpcfg_do_global_parameter(lp_ctx, "max mux", "50");
3333 lpcfg_do_global_parameter(lp_ctx, "max xmit", "12288");
3334 lpcfg_do_global_parameter(lp_ctx, "password level", "0");
3335 lpcfg_do_global_parameter(lp_ctx, "LargeReadwrite", "True");
3336 lpcfg_do_global_parameter(lp_ctx, "server min protocol", "CORE");
3337 lpcfg_do_global_parameter(lp_ctx, "server max protocol", "NT1");
3338 lpcfg_do_global_parameter(lp_ctx, "client min protocol", "CORE");
3339 lpcfg_do_global_parameter(lp_ctx, "client max protocol", "NT1");
3340 lpcfg_do_global_parameter(lp_ctx, "security", "USER");
3341 lpcfg_do_global_parameter(lp_ctx, "paranoid server security", "True");
3342 lpcfg_do_global_parameter(lp_ctx, "EncryptPasswords", "True");
3343 lpcfg_do_global_parameter(lp_ctx, "ReadRaw", "True");
3344 lpcfg_do_global_parameter(lp_ctx, "WriteRaw", "True");
3345 lpcfg_do_global_parameter(lp_ctx, "NullPasswords", "False");
3346 lpcfg_do_global_parameter(lp_ctx, "ObeyPamRestrictions", "False");
3348 lpcfg_do_global_parameter(lp_ctx, "TimeServer", "False");
3349 lpcfg_do_global_parameter(lp_ctx, "BindInterfacesOnly", "False");
3350 lpcfg_do_global_parameter(lp_ctx, "Unicode", "True");
3351 lpcfg_do_global_parameter(lp_ctx, "ClientLanManAuth", "False");
3352 lpcfg_do_global_parameter(lp_ctx, "ClientNTLMv2Auth", "True");
3353 lpcfg_do_global_parameter(lp_ctx, "LanmanAuth", "False");
3354 lpcfg_do_global_parameter(lp_ctx, "NTLMAuth", "True");
3355 lpcfg_do_global_parameter(lp_ctx, "client use spnego principal", "False");
3357 lpcfg_do_global_parameter(lp_ctx, "UnixExtensions", "False");
3359 lpcfg_do_global_parameter(lp_ctx, "PreferredMaster", "Auto");
3360 lpcfg_do_global_parameter(lp_ctx, "LocalMaster", "True");
3362 lpcfg_do_global_parameter(lp_ctx, "wins support", "False");
3363 lpcfg_do_global_parameter(lp_ctx, "dns proxy", "True");
3365 lpcfg_do_global_parameter(lp_ctx, "winbind separator", "\\");
3366 lpcfg_do_global_parameter(lp_ctx, "winbind sealed pipes", "True");
3367 lpcfg_do_global_parameter(lp_ctx, "winbindd socket directory", dyn_WINBINDD_SOCKET_DIR);
3368 lpcfg_do_global_parameter(lp_ctx, "winbindd privileged socket directory", dyn_WINBINDD_PRIVILEGED_SOCKET_DIR);
3369 lpcfg_do_global_parameter(lp_ctx, "template shell", "/bin/false");
3370 lpcfg_do_global_parameter(lp_ctx, "template homedir", "/home/%WORKGROUP%/%ACCOUNTNAME%");
3371 lpcfg_do_global_parameter(lp_ctx, "idmap trusted only", "False");
3373 lpcfg_do_global_parameter(lp_ctx, "client signing", "Yes");
3374 lpcfg_do_global_parameter(lp_ctx, "server signing", "auto");
3376 lpcfg_do_global_parameter(lp_ctx, "use spnego", "True");
3378 lpcfg_do_global_parameter(lp_ctx, "smb ports", "445 139");
3379 lpcfg_do_global_parameter(lp_ctx, "nbt port", "137");
3380 lpcfg_do_global_parameter(lp_ctx, "dgram port", "138");
3381 lpcfg_do_global_parameter(lp_ctx, "cldap port", "389");
3382 lpcfg_do_global_parameter(lp_ctx, "krb5 port", "88");
3383 lpcfg_do_global_parameter(lp_ctx, "kpasswd port", "464");
3384 lpcfg_do_global_parameter(lp_ctx, "web port", "901");
3386 lpcfg_do_global_parameter(lp_ctx, "nt status support", "True");
3388 lpcfg_do_global_parameter(lp_ctx, "max wins ttl", "518400"); /* 6 days */
3389 lpcfg_do_global_parameter(lp_ctx, "min wins ttl", "10");
3391 lpcfg_do_global_parameter(lp_ctx, "tls enabled", "True");
3392 lpcfg_do_global_parameter(lp_ctx, "tls keyfile", "tls/key.pem");
3393 lpcfg_do_global_parameter(lp_ctx, "tls certfile", "tls/cert.pem");
3394 lpcfg_do_global_parameter(lp_ctx, "tls cafile", "tls/ca.pem");
3395 lpcfg_do_global_parameter(lp_ctx, "prefork children:smb", "4");
3397 lpcfg_do_global_parameter(lp_ctx, "ntp signd socket directory", dyn_NTP_SIGND_SOCKET_DIR);
3398 lpcfg_do_global_parameter(lp_ctx, "rndc command", "/usr/sbin/rndc");
3399 lpcfg_do_global_parameter_var(lp_ctx, "dns update command", "%s/samba_dnsupdate", dyn_SCRIPTSBINDIR);
3400 lpcfg_do_global_parameter_var(lp_ctx, "spn update command", "%s/samba_spnupdate", dyn_SCRIPTSBINDIR);
3401 lpcfg_do_global_parameter(lp_ctx, "nsupdate command", "/usr/bin/nsupdate -g");
3403 for (i = 0; parm_table[i].label; i++) {
3404 if (!(lp_ctx->flags[i] & FLAG_CMDLINE)) {
3405 lp_ctx->flags[i] |= FLAG_DEFAULT;
3409 for (parm=lp_ctx->globals->param_opt; parm; parm=parm->next) {
3410 if (!(parm->priority & FLAG_CMDLINE)) {
3411 parm->priority |= FLAG_DEFAULT;
3415 return lp_ctx;
3419 * Initialise the global parameter structure.
3421 struct loadparm_context *loadparm_init_global(bool load_default)
3423 if (global_loadparm_context == NULL) {
3424 global_loadparm_context = loadparm_init(NULL);
3426 if (global_loadparm_context == NULL) {
3427 return NULL;
3429 global_loadparm_context->global = true;
3430 if (load_default && !global_loadparm_context->loaded) {
3431 lpcfg_load_default(global_loadparm_context);
3433 global_loadparm_context->refuse_free = true;
3434 return global_loadparm_context;
3438 * Initialise the global parameter structure.
3440 struct loadparm_context *loadparm_init_s3(TALLOC_CTX *mem_ctx,
3441 const struct loadparm_s3_context *s3_fns)
3443 struct loadparm_context *loadparm_context = loadparm_init(mem_ctx);
3444 if (!loadparm_context) {
3445 return NULL;
3447 loadparm_context->s3_fns = s3_fns;
3448 return loadparm_context;
3451 const char *lpcfg_configfile(struct loadparm_context *lp_ctx)
3453 return lp_ctx->szConfigFile;
3456 const char *lp_default_path(void)
3458 if (getenv("SMB_CONF_PATH"))
3459 return getenv("SMB_CONF_PATH");
3460 else
3461 return dyn_CONFIGFILE;
3465 * Update the internal state of a loadparm context after settings
3466 * have changed.
3468 static bool lpcfg_update(struct loadparm_context *lp_ctx)
3470 struct debug_settings settings;
3471 lpcfg_add_auto_services(lp_ctx, lpcfg_auto_services(lp_ctx));
3473 if (!lp_ctx->globals->szWINSservers && lp_ctx->globals->bWINSsupport) {
3474 lpcfg_do_global_parameter(lp_ctx, "wins server", "127.0.0.1");
3477 if (!lp_ctx->global) {
3478 return true;
3481 panic_action = lp_ctx->globals->panic_action;
3483 reload_charcnv(lp_ctx);
3485 ZERO_STRUCT(settings);
3486 /* Add any more debug-related smb.conf parameters created in
3487 * future here */
3488 settings.timestamp_logs = true;
3489 debug_set_settings(&settings);
3491 /* FIXME: This is a bit of a hack, but we can't use a global, since
3492 * not everything that uses lp also uses the socket library */
3493 if (lpcfg_parm_bool(lp_ctx, NULL, "socket", "testnonblock", false)) {
3494 setenv("SOCKET_TESTNONBLOCK", "1", 1);
3495 } else {
3496 unsetenv("SOCKET_TESTNONBLOCK");
3499 return true;
3502 bool lpcfg_load_default(struct loadparm_context *lp_ctx)
3504 const char *path;
3506 path = lp_default_path();
3508 if (!file_exist(path)) {
3509 /* We allow the default smb.conf file to not exist,
3510 * basically the equivalent of an empty file. */
3511 return lpcfg_update(lp_ctx);
3514 return lpcfg_load(lp_ctx, path);
3518 * Load the services array from the services file.
3520 * Return True on success, False on failure.
3522 bool lpcfg_load(struct loadparm_context *lp_ctx, const char *filename)
3524 char *n2;
3525 bool bRetval;
3527 filename = talloc_strdup(lp_ctx, filename);
3529 lp_ctx->szConfigFile = filename;
3531 if (lp_ctx->s3_fns) {
3532 return lp_ctx->s3_fns->load(filename);
3535 lp_ctx->bInGlobalSection = true;
3536 n2 = standard_sub_basic(lp_ctx, lp_ctx->szConfigFile);
3537 DEBUG(2, ("lpcfg_load: refreshing parameters from %s\n", n2));
3539 add_to_file_list(lp_ctx, lp_ctx->szConfigFile, n2);
3541 /* We get sections first, so have to start 'behind' to make up */
3542 lp_ctx->currentService = NULL;
3543 bRetval = pm_process(n2, do_section, do_parameter, lp_ctx);
3545 /* finish up the last section */
3546 DEBUG(4, ("pm_process() returned %s\n", BOOLSTR(bRetval)));
3547 if (bRetval)
3548 if (lp_ctx->currentService != NULL)
3549 bRetval = service_ok(lp_ctx->currentService);
3551 bRetval = bRetval && lpcfg_update(lp_ctx);
3553 /* we do this unconditionally, so that it happens even
3554 for a missing smb.conf */
3555 reload_charcnv(lp_ctx);
3557 if (bRetval == true) {
3558 /* set this up so that any child python tasks will
3559 find the right smb.conf */
3560 setenv("SMB_CONF_PATH", filename, 1);
3562 /* set the context used by the lp_*() function
3563 varients */
3564 global_loadparm_context = lp_ctx;
3565 lp_ctx->loaded = true;
3568 return bRetval;
3572 * Return the max number of services.
3575 int lpcfg_numservices(struct loadparm_context *lp_ctx)
3577 if (lp_ctx->s3_fns) {
3578 return lp_ctx->s3_fns->get_numservices();
3581 return lp_ctx->iNumServices;
3585 * Display the contents of the services array in human-readable form.
3588 void lpcfg_dump(struct loadparm_context *lp_ctx, FILE *f, bool show_defaults,
3589 int maxtoprint)
3591 int iService;
3593 if (lp_ctx->s3_fns) {
3594 lp_ctx->s3_fns->dump(f, show_defaults, maxtoprint);
3595 return;
3598 defaults_saved = !show_defaults;
3600 dump_globals(lp_ctx, f, show_defaults);
3602 dump_a_service(lp_ctx->sDefault, lp_ctx->sDefault, f, lp_ctx->flags);
3604 for (iService = 0; iService < maxtoprint; iService++)
3605 lpcfg_dump_one(f, show_defaults, lp_ctx->services[iService], lp_ctx->sDefault);
3609 * Display the contents of one service in human-readable form.
3611 void lpcfg_dump_one(FILE *f, bool show_defaults, struct loadparm_service *service, struct loadparm_service *sDefault)
3613 if (service != NULL) {
3614 if (service->szService[0] == '\0')
3615 return;
3616 dump_a_service(service, sDefault, f, NULL);
3620 struct loadparm_service *lpcfg_servicebynum(struct loadparm_context *lp_ctx,
3621 int snum)
3623 if (lp_ctx->s3_fns) {
3624 return lp_ctx->s3_fns->get_servicebynum(snum);
3627 return lp_ctx->services[snum];
3630 struct loadparm_service *lpcfg_service(struct loadparm_context *lp_ctx,
3631 const char *service_name)
3633 int iService;
3634 char *serviceName;
3636 if (lp_ctx->s3_fns) {
3637 return lp_ctx->s3_fns->get_service(service_name);
3640 for (iService = lp_ctx->iNumServices - 1; iService >= 0; iService--) {
3641 if (lp_ctx->services[iService] &&
3642 lp_ctx->services[iService]->szService) {
3644 * The substitution here is used to support %U is
3645 * service names
3647 serviceName = standard_sub_basic(
3648 lp_ctx->services[iService],
3649 lp_ctx->services[iService]->szService);
3650 if (strequal(serviceName, service_name)) {
3651 talloc_free(serviceName);
3652 return lp_ctx->services[iService];
3654 talloc_free(serviceName);
3658 DEBUG(7,("lpcfg_servicenumber: couldn't find %s\n", service_name));
3659 return NULL;
3662 const char *lpcfg_servicename(const struct loadparm_service *service)
3664 return lp_string((const char *)service->szService);
3668 * A useful volume label function.
3670 const char *lpcfg_volume_label(struct loadparm_service *service, struct loadparm_service *sDefault)
3672 const char *ret;
3673 ret = lp_string((const char *)((service != NULL && service->volume != NULL) ?
3674 service->volume : sDefault->volume));
3675 if (!*ret)
3676 return lpcfg_servicename(service);
3677 return ret;
3681 * If we are PDC then prefer us as DMB
3683 const char *lpcfg_printername(struct loadparm_service *service, struct loadparm_service *sDefault)
3685 const char *ret;
3686 ret = lp_string((const char *)((service != NULL && service->szPrintername != NULL) ?
3687 service->szPrintername : sDefault->szPrintername));
3688 if (ret == NULL || (ret != NULL && *ret == '\0'))
3689 ret = lpcfg_servicename(service);
3691 return ret;
3696 * Return the max print jobs per queue.
3698 int lpcfg_maxprintjobs(struct loadparm_service *service, struct loadparm_service *sDefault)
3700 int maxjobs = (service != NULL) ? service->iMaxPrintJobs : sDefault->iMaxPrintJobs;
3701 if (maxjobs <= 0 || maxjobs >= PRINT_MAX_JOBID)
3702 maxjobs = PRINT_MAX_JOBID - 1;
3704 return maxjobs;
3707 struct smb_iconv_handle *lpcfg_iconv_handle(struct loadparm_context *lp_ctx)
3709 if (lp_ctx == NULL) {
3710 return get_iconv_handle();
3712 return lp_ctx->iconv_handle;
3715 _PUBLIC_ void reload_charcnv(struct loadparm_context *lp_ctx)
3717 struct smb_iconv_handle *old_ic = lp_ctx->iconv_handle;
3718 if (!lp_ctx->global) {
3719 return;
3722 if (old_ic == NULL) {
3723 old_ic = global_iconv_handle;
3725 lp_ctx->iconv_handle = smb_iconv_handle_reinit_lp(lp_ctx, lp_ctx, old_ic);
3726 global_iconv_handle = lp_ctx->iconv_handle;
3729 void lpcfg_smbcli_options(struct loadparm_context *lp_ctx,
3730 struct smbcli_options *options)
3732 options->max_xmit = lpcfg_max_xmit(lp_ctx);
3733 options->max_mux = lpcfg_maxmux(lp_ctx);
3734 options->use_spnego = lpcfg_nt_status_support(lp_ctx) && lpcfg_use_spnego(lp_ctx);
3735 options->signing = lpcfg_client_signing(lp_ctx);
3736 options->request_timeout = SMB_REQUEST_TIMEOUT;
3737 options->ntstatus_support = lpcfg_nt_status_support(lp_ctx);
3738 options->max_protocol = lpcfg_cli_maxprotocol(lp_ctx);
3739 options->unicode = lpcfg_unicode(lp_ctx);
3740 options->use_oplocks = true;
3741 options->use_level2_oplocks = true;
3744 void lpcfg_smbcli_session_options(struct loadparm_context *lp_ctx,
3745 struct smbcli_session_options *options)
3747 options->lanman_auth = lpcfg_client_lanman_auth(lp_ctx);
3748 options->ntlmv2_auth = lpcfg_client_ntlmv2_auth(lp_ctx);
3749 options->plaintext_auth = lpcfg_client_plaintext_auth(lp_ctx);
3752 _PUBLIC_ char *lpcfg_tls_keyfile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3754 return lpcfg_private_path(mem_ctx, lp_ctx, lp_ctx->globals->tls_keyfile);
3757 _PUBLIC_ char *lpcfg_tls_certfile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3759 return lpcfg_private_path(mem_ctx, lp_ctx, lp_ctx->globals->tls_certfile);
3762 _PUBLIC_ char *lpcfg_tls_cafile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3764 return lpcfg_private_path(mem_ctx, lp_ctx, lp_ctx->globals->tls_cafile);
3767 _PUBLIC_ char *lpcfg_tls_crlfile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3769 return lpcfg_private_path(mem_ctx, lp_ctx, lp_ctx->globals->tls_crlfile);
3772 _PUBLIC_ char *lpcfg_tls_dhpfile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3774 return lpcfg_private_path(mem_ctx, lp_ctx, lp_ctx->globals->tls_dhpfile);
3777 _PUBLIC_ struct dcerpc_server_info *lpcfg_dcerpc_server_info(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3779 struct dcerpc_server_info *ret = talloc_zero(mem_ctx, struct dcerpc_server_info);
3781 ret->domain_name = talloc_reference(mem_ctx, lpcfg_workgroup(lp_ctx));
3782 ret->version_major = lpcfg_parm_int(lp_ctx, NULL, "server_info", "version_major", 5);
3783 ret->version_minor = lpcfg_parm_int(lp_ctx, NULL, "server_info", "version_minor", 2);
3784 ret->version_build = lpcfg_parm_int(lp_ctx, NULL, "server_info", "version_build", 3790);
3786 return ret;
3789 struct gensec_settings *lpcfg_gensec_settings(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3791 struct gensec_settings *settings = talloc(mem_ctx, struct gensec_settings);
3792 if (settings == NULL)
3793 return NULL;
3794 SMB_ASSERT(lp_ctx != NULL);
3795 settings->lp_ctx = talloc_reference(settings, lp_ctx);
3796 settings->target_hostname = lpcfg_parm_string(lp_ctx, NULL, "gensec", "target_hostname");
3797 return settings;