lib/param: Merge struct loadparm_service into common
[samba.git] / source4 / param / loadparm.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Parameter loading functions
4    Copyright (C) Karl Auer 1993-1998
5
6    Largely re-written by Andrew Tridgell, September 1994
7
8    Copyright (C) Simo Sorce 2001
9    Copyright (C) Alexander Bokovoy 2002
10    Copyright (C) Stefan (metze) Metzmacher 2002
11    Copyright (C) Jim McDonough (jmcd@us.ibm.com)  2003.
12    Copyright (C) James Myers 2003 <myersjj@samba.org>
13    Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
14
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.
19
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.
24
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/>.
27 */
28
29 /*
30  *  Load parameters.
31  *
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.
35  *
36  * To add a parameter:
37  *
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
43  *
44  *
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!
52  *
53  */
54
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"
72
73 #define standard_sub_basic talloc_strdup
74
75 static bool do_parameter(const char *, const char *, void *);
76 static bool defaults_saved = false;
77
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;
89
90 #include "param_global.h"
91
92 #define NUMPARAMETERS (sizeof(parm_table) / sizeof(struct parm_struct))
93
94
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);
106
107 static const struct enum_list enum_protocol[] = {
108         {PROTOCOL_SMB2, "SMB2"},
109         {PROTOCOL_NT1, "NT1"},
110         {PROTOCOL_LANMAN2, "LANMAN2"},
111         {PROTOCOL_LANMAN1, "LANMAN1"},
112         {PROTOCOL_CORE, "CORE"},
113         {PROTOCOL_COREPLUS, "COREPLUS"},
114         {PROTOCOL_COREPLUS, "CORE+"},
115         {-1, NULL}
116 };
117
118 static const struct enum_list enum_security[] = {
119         {SEC_SHARE, "SHARE"},
120         {SEC_USER, "USER"},
121         {SEC_ADS, "ADS"},
122         {-1, NULL}
123 };
124
125 static const struct enum_list enum_bool_auto[] = {
126         {false, "No"},
127         {false, "False"},
128         {false, "0"},
129         {true, "Yes"},
130         {true, "True"},
131         {true, "1"},
132         {Auto, "Auto"},
133         {-1, NULL}
134 };
135
136 /* Client-side offline caching policy types */
137 enum csc_policy {
138         CSC_POLICY_MANUAL=0,
139         CSC_POLICY_DOCUMENTS=1,
140         CSC_POLICY_PROGRAMS=2,
141         CSC_POLICY_DISABLE=3
142 };
143
144 static const struct enum_list enum_csc_policy[] = {
145         {CSC_POLICY_MANUAL, "manual"},
146         {CSC_POLICY_DOCUMENTS, "documents"},
147         {CSC_POLICY_PROGRAMS, "programs"},
148         {CSC_POLICY_DISABLE, "disable"},
149         {-1, NULL}
150 };
151
152 /* SMB signing types. */
153 static const struct enum_list enum_smb_signing_vals[] = {
154         {SMB_SIGNING_OFF, "No"},
155         {SMB_SIGNING_OFF, "False"},
156         {SMB_SIGNING_OFF, "0"},
157         {SMB_SIGNING_OFF, "Off"},
158         {SMB_SIGNING_OFF, "disabled"},
159         {SMB_SIGNING_SUPPORTED, "Yes"},
160         {SMB_SIGNING_SUPPORTED, "True"},
161         {SMB_SIGNING_SUPPORTED, "1"},
162         {SMB_SIGNING_SUPPORTED, "On"},
163         {SMB_SIGNING_SUPPORTED, "enabled"},
164         {SMB_SIGNING_REQUIRED, "required"},
165         {SMB_SIGNING_REQUIRED, "mandatory"},
166         {SMB_SIGNING_REQUIRED, "force"},
167         {SMB_SIGNING_REQUIRED, "forced"},
168         {SMB_SIGNING_REQUIRED, "enforced"},
169         {SMB_SIGNING_AUTO, "auto"},
170         {-1, NULL}
171 };
172
173 static const struct enum_list enum_server_role[] = {
174         {ROLE_STANDALONE, "standalone"},
175         {ROLE_DOMAIN_MEMBER, "member server"},
176         {ROLE_DOMAIN_MEMBER, "member"},
177         {ROLE_DOMAIN_CONTROLLER, "domain controller"},
178         {ROLE_DOMAIN_CONTROLLER, "dc"},
179         {-1, NULL}
180 };
181
182 #define GLOBAL_VAR(name) offsetof(struct loadparm_global, name)
183 #define LOCAL_VAR(name) offsetof(struct loadparm_service, name)
184
185 static struct parm_struct parm_table[] = {
186         {
187                 .label          = "server role",
188                 .type           = P_ENUM,
189                 .p_class        = P_GLOBAL,
190                 .offset         = GLOBAL_VAR(server_role),
191                 .special        = NULL,
192                 .enum_list      = enum_server_role
193         },
194         {
195                 .label          = "dos charset",
196                 .type           = P_STRING,
197                 .p_class        = P_GLOBAL,
198                 .offset         = GLOBAL_VAR(dos_charset),
199                 .special        = NULL,
200                 .enum_list      = NULL
201         },
202         {
203                 .label          = "unix charset",
204                 .type           = P_STRING,
205                 .p_class        = P_GLOBAL,
206                 .offset         = GLOBAL_VAR(unix_charset),
207                 .special        = NULL,
208                 .enum_list      = NULL
209         },
210         {
211                 .label          = "ncalrpc dir",
212                 .type           = P_STRING,
213                 .p_class        = P_GLOBAL,
214                 .offset         = GLOBAL_VAR(ncalrpc_dir),
215                 .special        = NULL,
216                 .enum_list      = NULL
217         },
218         {
219                 .label          = "comment",
220                 .type           = P_STRING,
221                 .p_class        = P_LOCAL,
222                 .offset         = LOCAL_VAR(comment),
223                 .special        = NULL,
224                 .enum_list      = NULL
225         },
226         {
227                 .label          = "path",
228                 .type           = P_STRING,
229                 .p_class        = P_LOCAL,
230                 .offset         = LOCAL_VAR(szPath),
231                 .special        = NULL,
232                 .enum_list      = NULL
233         },
234         {
235                 .label          = "directory",
236                 .type           = P_STRING,
237                 .p_class        = P_LOCAL,
238                 .offset         = LOCAL_VAR(szPath),
239                 .special        = NULL,
240                 .enum_list      = NULL
241         },
242         {
243                 .label          = "workgroup",
244                 .type           = P_USTRING,
245                 .p_class        = P_GLOBAL,
246                 .offset         = GLOBAL_VAR(szWorkgroup),
247                 .special        = NULL,
248                 .enum_list      = NULL
249         },
250         {
251                 .label          = "realm",
252                 .type           = P_STRING,
253                 .p_class        = P_GLOBAL,
254                 .offset         = GLOBAL_VAR(szRealm),
255                 .special        = handle_realm,
256                 .enum_list      = NULL
257         },
258         {
259                 .label          = "netbios name",
260                 .type           = P_USTRING,
261                 .p_class        = P_GLOBAL,
262                 .offset         = GLOBAL_VAR(szNetbiosName),
263                 .special        = NULL,
264                 .enum_list      = NULL
265         },
266         {
267                 .label          = "netbios aliases",
268                 .type           = P_LIST,
269                 .p_class        = P_GLOBAL,
270                 .offset         = GLOBAL_VAR(szNetbiosAliases),
271                 .special        = NULL,
272                 .enum_list      = NULL
273         },
274         {
275                 .label          = "netbios scope",
276                 .type           = P_USTRING,
277                 .p_class        = P_GLOBAL,
278                 .offset         = GLOBAL_VAR(szNetbiosScope),
279                 .special        = NULL,
280                 .enum_list      = NULL
281         },
282         {
283                 .label          = "server string",
284                 .type           = P_STRING,
285                 .p_class        = P_GLOBAL,
286                 .offset         = GLOBAL_VAR(szServerString),
287                 .special        = NULL,
288                 .enum_list      = NULL
289         },
290         {
291                 .label          = "interfaces",
292                 .type           = P_LIST,
293                 .p_class        = P_GLOBAL,
294                 .offset         = GLOBAL_VAR(szInterfaces),
295                 .special        = NULL,
296                 .enum_list      = NULL
297         },
298         {
299                 .label          = "bind interfaces only",
300                 .type           = P_BOOL,
301                 .p_class        = P_GLOBAL,
302                 .offset         = GLOBAL_VAR(bBindInterfacesOnly),
303                 .special        = NULL,
304                 .enum_list      = NULL
305         },
306         {
307                 .label          = "ntvfs handler",
308                 .type           = P_LIST,
309                 .p_class        = P_LOCAL,
310                 .offset         = LOCAL_VAR(ntvfs_handler),
311                 .special        = NULL,
312                 .enum_list      = NULL
313         },
314         {
315                 .label          = "ntptr providor",
316                 .type           = P_STRING,
317                 .p_class        = P_GLOBAL,
318                 .offset         = GLOBAL_VAR(ntptr_providor),
319                 .special        = NULL,
320                 .enum_list      = NULL
321         },
322         {
323                 .label          = "dcerpc endpoint servers",
324                 .type           = P_LIST,
325                 .p_class        = P_GLOBAL,
326                 .offset         = GLOBAL_VAR(dcerpc_ep_servers),
327                 .special        = NULL,
328                 .enum_list      = NULL
329         },
330         {
331                 .label          = "server services",
332                 .type           = P_LIST,
333                 .p_class        = P_GLOBAL,
334                 .offset         = GLOBAL_VAR(server_services),
335                 .special        = NULL,
336                 .enum_list      = NULL
337         },
338
339         {
340                 .label          = "security",
341                 .type           = P_ENUM,
342                 .p_class        = P_GLOBAL,
343                 .offset         = GLOBAL_VAR(security),
344                 .special        = NULL,
345                 .enum_list      = enum_security
346         },
347         {
348                 .label          = "encrypt passwords",
349                 .type           = P_BOOL,
350                 .p_class        = P_GLOBAL,
351                 .offset         = GLOBAL_VAR(bEncryptPasswords),
352                 .special        = NULL,
353                 .enum_list      = NULL
354         },
355         {
356                 .label          = "null passwords",
357                 .type           = P_BOOL,
358                 .p_class        = P_GLOBAL,
359                 .offset         = GLOBAL_VAR(bNullPasswords),
360                 .special        = NULL,
361                 .enum_list      = NULL
362         },
363         {
364                 .label          = "obey pam restrictions",
365                 .type           = P_BOOL,
366                 .p_class        = P_GLOBAL,
367                 .offset         = GLOBAL_VAR(bObeyPamRestrictions),
368                 .special        = NULL,
369                 .enum_list      = NULL
370         },
371         {
372                 .label          = "password server",
373                 .type           = P_LIST,
374                 .p_class        = P_GLOBAL,
375                 .offset         = GLOBAL_VAR(szPasswordServers),
376                 .special        = NULL,
377                 .enum_list      = NULL
378         },
379         {
380                 .label          = "spoolss database",
381                 .type           = P_STRING,
382                 .p_class        = P_GLOBAL,
383                 .offset         = GLOBAL_VAR(szSPOOLSS_URL),
384                 .special        = NULL,
385                 .enum_list      = NULL
386         },
387         {
388                 .label          = "wins config database",
389                 .type           = P_STRING,
390                 .p_class        = P_GLOBAL,
391                 .offset         = GLOBAL_VAR(szWINS_CONFIG_URL),
392                 .special        = NULL,
393                 .enum_list      = NULL
394         },
395         {
396                 .label          = "wins database",
397                 .type           = P_STRING,
398                 .p_class        = P_GLOBAL,
399                 .offset         = GLOBAL_VAR(szWINS_URL),
400                 .special        = NULL,
401                 .enum_list      = NULL
402         },
403         {
404                 .label          = "private dir",
405                 .type           = P_STRING,
406                 .p_class        = P_GLOBAL,
407                 .offset         = GLOBAL_VAR(szPrivateDir),
408                 .special        = NULL,
409                 .enum_list      = NULL
410         },
411         {
412                 .label          = "passwd chat",
413                 .type           = P_STRING,
414                 .p_class        = P_GLOBAL,
415                 .offset         = GLOBAL_VAR(szPasswdChat),
416                 .special        = NULL,
417                 .enum_list      = NULL
418         },
419         {
420                 .label          = "password level",
421                 .type           = P_INTEGER,
422                 .p_class        = P_GLOBAL,
423                 .offset         = GLOBAL_VAR(pwordlevel),
424                 .special        = NULL,
425                 .enum_list      = NULL
426         },
427         {
428                 .label          = "lanman auth",
429                 .type           = P_BOOL,
430                 .p_class        = P_GLOBAL,
431                 .offset         = GLOBAL_VAR(bLanmanAuth),
432                 .special        = NULL,
433                 .enum_list      = NULL
434         },
435         {
436                 .label          = "ntlm auth",
437                 .type           = P_BOOL,
438                 .p_class        = P_GLOBAL,
439                 .offset         = GLOBAL_VAR(bNTLMAuth),
440                 .special        = NULL,
441                 .enum_list      = NULL
442         },
443         {
444                 .label          = "client NTLMv2 auth",
445                 .type           = P_BOOL,
446                 .p_class        = P_GLOBAL,
447                 .offset         = GLOBAL_VAR(bClientNTLMv2Auth),
448                 .special        = NULL,
449                 .enum_list      = NULL
450         },
451         {
452                 .label          = "client lanman auth",
453                 .type           = P_BOOL,
454                 .p_class        = P_GLOBAL,
455                 .offset         = GLOBAL_VAR(bClientLanManAuth),
456                 .special        = NULL,
457                 .enum_list      = NULL
458         },
459         {
460                 .label          = "client plaintext auth",
461                 .type           = P_BOOL,
462                 .p_class        = P_GLOBAL,
463                 .offset         = GLOBAL_VAR(bClientPlaintextAuth),
464                 .special        = NULL,
465                 .enum_list      = NULL
466         },
467         {
468                 .label          = "client use spnego principal",
469                 .type           = P_BOOL,
470                 .p_class        = P_GLOBAL,
471                 .offset         = GLOBAL_VAR(client_use_spnego_principal),
472                 .special        = NULL,
473                 .enum_list      = NULL
474         },
475
476         {
477                 .label          = "read only",
478                 .type           = P_BOOL,
479                 .p_class        = P_LOCAL,
480                 .offset         = LOCAL_VAR(bRead_only),
481                 .special        = NULL,
482                 .enum_list      = NULL
483         },
484
485         {
486                 .label          = "create mask",
487                 .type           = P_OCTAL,
488                 .p_class        = P_LOCAL,
489                 .offset         = LOCAL_VAR(iCreate_mask),
490                 .special        = NULL,
491                 .enum_list      = NULL
492         },
493         {
494                 .label          = "force create mode",
495                 .type           = P_OCTAL,
496                 .p_class        = P_LOCAL,
497                 .offset         = LOCAL_VAR(iCreate_force_mode),
498                 .special        = NULL,
499                 .enum_list      = NULL
500         },
501         {
502                 .label          = "directory mask",
503                 .type           = P_OCTAL,
504                 .p_class        = P_LOCAL,
505                 .offset         = LOCAL_VAR(iDir_mask),
506                 .special        = NULL,
507                 .enum_list      = NULL
508         },
509         {
510                 .label          = "force directory mode",
511                 .type           = P_OCTAL,
512                 .p_class        = P_LOCAL,
513                 .offset         = LOCAL_VAR(iDir_force_mode),
514                 .special        = NULL,
515                 .enum_list      = NULL
516         },
517
518         {
519                 .label          = "hosts allow",
520                 .type           = P_LIST,
521                 .p_class        = P_LOCAL,
522                 .offset         = LOCAL_VAR(szHostsallow),
523                 .special        = NULL,
524                 .enum_list      = NULL
525         },
526         {
527                 .label          = "hosts deny",
528                 .type           = P_LIST,
529                 .p_class        = P_LOCAL,
530                 .offset         = LOCAL_VAR(szHostsdeny),
531                 .special        = NULL,
532                 .enum_list      = NULL
533         },
534
535         {
536                 .label          = "log level",
537                 .type           = P_STRING,
538                 .p_class        = P_GLOBAL,
539                 .offset         = GLOBAL_VAR(loglevel),
540                 .special        = handle_debuglevel,
541                 .enum_list      = NULL
542         },
543         {
544                 .label          = "debuglevel",
545                 .type           = P_STRING,
546                 .p_class        = P_GLOBAL,
547                 .offset         = GLOBAL_VAR(loglevel),
548                 .special        = handle_debuglevel,
549                 .enum_list      = NULL
550         },
551         {
552                 .label          = "log file",
553                 .type           = P_STRING,
554                 .p_class        = P_GLOBAL,
555                 .offset         = GLOBAL_VAR(logfile),
556                 .special        = handle_logfile,
557                 .enum_list      = NULL
558         },
559
560         {
561                 .label          = "smb ports",
562                 .type           = P_LIST,
563                 .p_class        = P_GLOBAL,
564                 .offset         = GLOBAL_VAR(smb_ports),
565                 .special        = NULL,
566                 .enum_list      = NULL
567         },
568         {
569                 .label          = "nbt port",
570                 .type           = P_INTEGER,
571                 .p_class        = P_GLOBAL,
572                 .offset         = GLOBAL_VAR(nbt_port),
573                 .special        = NULL,
574                 .enum_list      = NULL
575         },
576         {
577                 .label          = "dgram port",
578                 .type           = P_INTEGER,
579                 .p_class        = P_GLOBAL,
580                 .offset         = GLOBAL_VAR(dgram_port),
581                 .special        = NULL,
582                 .enum_list      = NULL
583         },
584         {
585                 .label          = "cldap port",
586                 .type           = P_INTEGER,
587                 .p_class        = P_GLOBAL,
588                 .offset         = GLOBAL_VAR(cldap_port),
589                 .special        = NULL,
590                 .enum_list      = NULL
591         },
592         {
593                 .label          = "krb5 port",
594                 .type           = P_INTEGER,
595                 .p_class        = P_GLOBAL,
596                 .offset         = GLOBAL_VAR(krb5_port),
597                 .special        = NULL,
598                 .enum_list      = NULL
599         },
600         {
601                 .label          = "kpasswd port",
602                 .type           = P_INTEGER,
603                 .p_class        = P_GLOBAL,
604                 .offset         = GLOBAL_VAR(kpasswd_port),
605                 .special        = NULL,
606                 .enum_list      = NULL
607         },
608         {
609                 .label          = "web port",
610                 .type           = P_INTEGER,
611                 .p_class        = P_GLOBAL,
612                 .offset         = GLOBAL_VAR(web_port),
613                 .special        = NULL,
614                 .enum_list      = NULL
615         },
616         {
617                 .label          = "tls enabled",
618                 .type           = P_BOOL,
619                 .p_class        = P_GLOBAL,
620                 .offset         = GLOBAL_VAR(tls_enabled),
621                 .special        = NULL,
622                 .enum_list      = NULL
623         },
624         {
625                 .label          = "tls keyfile",
626                 .type           = P_STRING,
627                 .p_class        = P_GLOBAL,
628                 .offset         = GLOBAL_VAR(tls_keyfile),
629                 .special        = NULL,
630                 .enum_list      = NULL
631         },
632         {
633                 .label          = "tls certfile",
634                 .type           = P_STRING,
635                 .p_class        = P_GLOBAL,
636                 .offset         = GLOBAL_VAR(tls_certfile),
637                 .special        = NULL,
638                 .enum_list      = NULL
639         },
640         {
641                 .label          = "tls cafile",
642                 .type           = P_STRING,
643                 .p_class        = P_GLOBAL,
644                 .offset         = GLOBAL_VAR(tls_cafile),
645                 .special        = NULL,
646                 .enum_list      = NULL
647         },
648         {
649                 .label          = "tls crlfile",
650                 .type           = P_STRING,
651                 .p_class        = P_GLOBAL,
652                 .offset         = GLOBAL_VAR(tls_crlfile),
653                 .special        = NULL,
654                 .enum_list      = NULL
655         },
656         {
657                 .label          = "tls dh params file",
658                 .type           = P_STRING,
659                 .p_class        = P_GLOBAL,
660                 .offset         = GLOBAL_VAR(tls_dhpfile),
661                 .special        = NULL,
662                 .enum_list      = NULL
663         },
664         {
665                 .label          = "large readwrite",
666                 .type           = P_BOOL,
667                 .p_class        = P_GLOBAL,
668                 .offset         = GLOBAL_VAR(bLargeReadwrite),
669                 .special        = NULL,
670                 .enum_list      = NULL
671         },
672         {
673                 .label          = "server max protocol",
674                 .type           = P_ENUM,
675                 .p_class        = P_GLOBAL,
676                 .offset         = GLOBAL_VAR(srv_maxprotocol),
677                 .special        = NULL,
678                 .enum_list      = enum_protocol
679         },
680         {
681                 .label          = "server min protocol",
682                 .type           = P_ENUM,
683                 .p_class        = P_GLOBAL,
684                 .offset         = GLOBAL_VAR(srv_minprotocol),
685                 .special        = NULL,
686                 .enum_list      = enum_protocol
687         },
688         {
689                 .label          = "client max protocol",
690                 .type           = P_ENUM,
691                 .p_class        = P_GLOBAL,
692                 .offset         = GLOBAL_VAR(cli_maxprotocol),
693                 .special        = NULL,
694                 .enum_list      = enum_protocol
695         },
696         {
697                 .label          = "client min protocol",
698                 .type           = P_ENUM,
699                 .p_class        = P_GLOBAL,
700                 .offset         = GLOBAL_VAR(cli_minprotocol),
701                 .special        = NULL,
702                 .enum_list      = enum_protocol
703         },
704         {
705                 .label          = "unicode",
706                 .type           = P_BOOL,
707                 .p_class        = P_GLOBAL,
708                 .offset         = GLOBAL_VAR(bUnicode),
709                 .special        = NULL,
710                 .enum_list      = NULL
711         },
712         {
713                 .label          = "read raw",
714                 .type           = P_BOOL,
715                 .p_class        = P_GLOBAL,
716                 .offset         = GLOBAL_VAR(bReadRaw),
717                 .special        = NULL,
718                 .enum_list      = NULL
719         },
720         {
721                 .label          = "write raw",
722                 .type           = P_BOOL,
723                 .p_class        = P_GLOBAL,
724                 .offset         = GLOBAL_VAR(bWriteRaw),
725                 .special        = NULL,
726                 .enum_list      = NULL
727         },
728         {
729                 .label          = "disable netbios",
730                 .type           = P_BOOL,
731                 .p_class        = P_GLOBAL,
732                 .offset         = GLOBAL_VAR(bDisableNetbios),
733                 .special        = NULL,
734                 .enum_list      = NULL
735         },
736
737         {
738                 .label          = "nt status support",
739                 .type           = P_BOOL,
740                 .p_class        = P_GLOBAL,
741                 .offset         = GLOBAL_VAR(bNTStatusSupport),
742                 .special        = NULL,
743                 .enum_list      = NULL
744         },
745
746         {
747                 .label          = "max mux",
748                 .type           = P_INTEGER,
749                 .p_class        = P_GLOBAL,
750                 .offset         = GLOBAL_VAR(max_mux),
751                 .special        = NULL,
752                 .enum_list      = NULL
753         },
754         {
755                 .label          = "max xmit",
756                 .type           = P_BYTES,
757                 .p_class        = P_GLOBAL,
758                 .offset         = GLOBAL_VAR(max_xmit),
759                 .special        = NULL,
760                 .enum_list      = NULL
761         },
762
763         {
764                 .label          = "name resolve order",
765                 .type           = P_LIST,
766                 .p_class        = P_GLOBAL,
767                 .offset         = GLOBAL_VAR(szNameResolveOrder),
768                 .special        = NULL,
769                 .enum_list      = NULL
770         },
771         {
772                 .label          = "max wins ttl",
773                 .type           = P_INTEGER,
774                 .p_class        = P_GLOBAL,
775                 .offset         = GLOBAL_VAR(max_wins_ttl),
776                 .special        = NULL,
777                 .enum_list      = NULL
778         },
779         {
780                 .label          = "min wins ttl",
781                 .type           = P_INTEGER,
782                 .p_class        = P_GLOBAL,
783                 .offset         = GLOBAL_VAR(min_wins_ttl),
784                 .special        = NULL,
785                 .enum_list      = NULL
786         },
787         {
788                 .label          = "time server",
789                 .type           = P_BOOL,
790                 .p_class        = P_GLOBAL,
791                 .offset         = GLOBAL_VAR(bTimeServer),
792                 .special        = NULL,
793                 .enum_list      = NULL
794         },
795         {
796                 .label          = "unix extensions",
797                 .type           = P_BOOL,
798                 .p_class        = P_GLOBAL,
799                 .offset         = GLOBAL_VAR(bUnixExtensions),
800                 .special        = NULL,
801                 .enum_list      = NULL
802         },
803         {
804                 .label          = "use spnego",
805                 .type           = P_BOOL,
806                 .p_class        = P_GLOBAL,
807                 .offset         = GLOBAL_VAR(bUseSpnego),
808                 .special        = NULL,
809                 .enum_list      = NULL
810         },
811         {
812                 .label          = "server signing",
813                 .type           = P_ENUM,
814                 .p_class        = P_GLOBAL,
815                 .offset         = GLOBAL_VAR(server_signing),
816                 .special        = NULL,
817                 .enum_list      = enum_smb_signing_vals
818         },
819         {
820                 .label          = "client signing",
821                 .type           = P_ENUM,
822                 .p_class        = P_GLOBAL,
823                 .offset         = GLOBAL_VAR(client_signing),
824                 .special        = NULL,
825                 .enum_list      = enum_smb_signing_vals
826         },
827         {
828                 .label          = "rpc big endian",
829                 .type           = P_BOOL,
830                 .p_class        = P_GLOBAL,
831                 .offset         = GLOBAL_VAR(bRpcBigEndian),
832                 .special        = NULL,
833                 .enum_list      = NULL
834         },
835
836         {
837                 .label          = "max connections",
838                 .type           = P_INTEGER,
839                 .p_class        = P_LOCAL,
840                 .offset         = LOCAL_VAR(iMaxConnections),
841                 .special        = NULL,
842                 .enum_list      = NULL
843         },
844         {
845                 .label          = "paranoid server security",
846                 .type           = P_BOOL,
847                 .p_class        = P_GLOBAL,
848                 .offset         = GLOBAL_VAR(paranoid_server_security),
849                 .special        = NULL,
850                 .enum_list      = NULL
851         },
852         {
853                 .label          = "socket options",
854                 .type           = P_STRING,
855                 .p_class        = P_GLOBAL,
856                 .offset         = GLOBAL_VAR(socket_options),
857                 .special        = NULL,
858                 .enum_list      = NULL
859         },
860
861         {
862                 .label          = "strict sync",
863                 .type           = P_BOOL,
864                 .p_class        = P_LOCAL,
865                 .offset         = LOCAL_VAR(bStrictSync),
866                 .special        = NULL,
867                 .enum_list      = NULL
868         },
869         {
870                 .label          = "case insensitive filesystem",
871                 .type           = P_BOOL,
872                 .p_class        = P_LOCAL,
873                 .offset         = LOCAL_VAR(bCIFileSystem),
874                 .special        = NULL,
875                 .enum_list      = NULL
876         },
877
878         {
879                 .label          = "max print jobs",
880                 .type           = P_INTEGER,
881                 .p_class        = P_LOCAL,
882                 .offset         = LOCAL_VAR(iMaxPrintJobs),
883                 .special        = NULL,
884                 .enum_list      = NULL
885         },
886         {
887                 .label          = "printable",
888                 .type           = P_BOOL,
889                 .p_class        = P_LOCAL,
890                 .offset         = LOCAL_VAR(bPrint_ok),
891                 .special        = NULL,
892                 .enum_list      = NULL
893         },
894         {
895                 .label          = "print ok",
896                 .type           = P_BOOL,
897                 .p_class        = P_LOCAL,
898                 .offset         = LOCAL_VAR(bPrint_ok),
899                 .special        = NULL,
900                 .enum_list      = NULL
901         },
902
903         {
904                 .label          = "printer name",
905                 .type           = P_STRING,
906                 .p_class        = P_LOCAL,
907                 .offset         = LOCAL_VAR(szPrintername),
908                 .special        = NULL,
909                 .enum_list      = NULL
910         },
911         {
912                 .label          = "printer",
913                 .type           = P_STRING,
914                 .p_class        = P_LOCAL,
915                 .offset         = LOCAL_VAR(szPrintername),
916                 .special        = NULL,
917                 .enum_list      = NULL
918         },
919
920         {
921                 .label          = "map system",
922                 .type           = P_BOOL,
923                 .p_class        = P_LOCAL,
924                 .offset         = LOCAL_VAR(bMap_system),
925                 .special        = NULL,
926                 .enum_list      = NULL
927         },
928         {
929                 .label          = "map hidden",
930                 .type           = P_BOOL,
931                 .p_class        = P_LOCAL,
932                 .offset         = LOCAL_VAR(bMap_hidden),
933                 .special        = NULL,
934                 .enum_list      = NULL
935         },
936         {
937                 .label          = "map archive",
938                 .type           = P_BOOL,
939                 .p_class        = P_LOCAL,
940                 .offset         = LOCAL_VAR(bMap_archive),
941                 .special        = NULL,
942                 .enum_list      = NULL
943         },
944
945         {
946                 .label          = "preferred master",
947                 .type           = P_ENUM,
948                 .p_class        = P_GLOBAL,
949                 .offset         = GLOBAL_VAR(bPreferredMaster),
950                 .special        = NULL,
951                 .enum_list      = enum_bool_auto
952         },
953         {
954                 .label          = "prefered master",
955                 .type           = P_ENUM,
956                 .p_class        = P_GLOBAL,
957                 .offset         = GLOBAL_VAR(bPreferredMaster),
958                 .special        = NULL,
959                 .enum_list      = enum_bool_auto
960         },
961         {
962                 .label          = "local master",
963                 .type           = P_BOOL,
964                 .p_class        = P_GLOBAL,
965                 .offset         = GLOBAL_VAR(bLocalMaster),
966                 .special        = NULL,
967                 .enum_list      = NULL
968         },
969         {
970                 .label          = "browseable",
971                 .type           = P_BOOL,
972                 .p_class        = P_LOCAL,
973                 .offset         = LOCAL_VAR(bBrowseable),
974                 .special        = NULL,
975                 .enum_list      = NULL
976         },
977         {
978                 .label          = "browsable",
979                 .type           = P_BOOL,
980                 .p_class        = P_LOCAL,
981                 .offset         = LOCAL_VAR(bBrowseable),
982                 .special        = NULL,
983                 .enum_list      = NULL
984         },
985
986         {
987                 .label          = "wins server",
988                 .type           = P_LIST,
989                 .p_class        = P_GLOBAL,
990                 .offset         = GLOBAL_VAR(szWINSservers),
991                 .special        = NULL,
992                 .enum_list      = NULL
993         },
994         {
995                 .label          = "wins support",
996                 .type           = P_BOOL,
997                 .p_class        = P_GLOBAL,
998                 .offset         = GLOBAL_VAR(bWINSsupport),
999                 .special        = NULL,
1000                 .enum_list      = NULL
1001         },
1002         {
1003                 .label          = "dns proxy",
1004                 .type           = P_BOOL,
1005                 .p_class        = P_GLOBAL,
1006                 .offset         = GLOBAL_VAR(bWINSdnsProxy),
1007                 .special        = NULL,
1008                 .enum_list      = NULL
1009         },
1010         {
1011                 .label          = "wins hook",
1012                 .type           = P_STRING,
1013                 .p_class        = P_GLOBAL,
1014                 .offset         = GLOBAL_VAR(szWINSHook),
1015                 .special        = NULL,
1016                 .enum_list      = NULL
1017         },
1018
1019         {
1020                 .label          = "csc policy",
1021                 .type           = P_ENUM,
1022                 .p_class        = P_LOCAL,
1023                 .offset         = LOCAL_VAR(iCSCPolicy),
1024                 .special        = NULL,
1025                 .enum_list      = enum_csc_policy
1026         },
1027
1028         {
1029                 .label          = "strict locking",
1030                 .type           = P_BOOL,
1031                 .p_class        = P_LOCAL,
1032                 .offset         = LOCAL_VAR(iStrictLocking),
1033                 .special        = NULL,
1034                 .enum_list      = NULL
1035         },
1036         {
1037                 .label          = "oplocks",
1038                 .type           = P_BOOL,
1039                 .p_class        = P_LOCAL,
1040                 .offset         = LOCAL_VAR(bOpLocks),
1041                 .special        = NULL,
1042                 .enum_list      = NULL
1043         },
1044
1045         {
1046                 .label          = "share backend",
1047                 .type           = P_STRING,
1048                 .p_class        = P_GLOBAL,
1049                 .offset         = GLOBAL_VAR(szShareBackend),
1050                 .special        = NULL,
1051                 .enum_list      = NULL
1052         },
1053         {
1054                 .label          = "preload",
1055                 .type           = P_STRING,
1056                 .p_class        = P_GLOBAL,
1057                 .offset         = GLOBAL_VAR(szAutoServices),
1058                 .special        = NULL,
1059                 .enum_list      = NULL
1060         },
1061         {
1062                 .label          = "auto services",
1063                 .type           = P_STRING,
1064                 .p_class        = P_GLOBAL,
1065                 .offset         = GLOBAL_VAR(szAutoServices),
1066                 .special        = NULL,
1067                 .enum_list      = NULL
1068         },
1069         {
1070                 .label          = "lock dir",
1071                 .type           = P_STRING,
1072                 .p_class        = P_GLOBAL,
1073                 .offset         = GLOBAL_VAR(szLockDir),
1074                 .special        = NULL,
1075                 .enum_list      = NULL
1076         },
1077         {
1078                 .label          = "lock directory",
1079                 .type           = P_STRING,
1080                 .p_class        = P_GLOBAL,
1081                 .offset         = GLOBAL_VAR(szLockDir),
1082                 .special        = NULL,
1083                 .enum_list      = NULL
1084         },
1085         {
1086                 .label          = "pid directory",
1087                 .type           = P_STRING,
1088                 .p_class        = P_GLOBAL,
1089                 .offset         = GLOBAL_VAR(szPidDir),
1090                 .special        = NULL,
1091                 .enum_list      = NULL
1092         },
1093
1094         {
1095                 .label          = "socket address",
1096                 .type           = P_STRING,
1097                 .p_class        = P_GLOBAL,
1098                 .offset         = GLOBAL_VAR(szSocketAddress),
1099                 .special        = NULL,
1100                 .enum_list      = NULL
1101         },
1102         {
1103                 .label          = "copy",
1104                 .type           = P_STRING,
1105                 .p_class        = P_LOCAL,
1106                 .offset         = LOCAL_VAR(szCopy),
1107                 .special        = handle_copy,
1108                 .enum_list      = NULL
1109         },
1110         {
1111                 .label          = "include",
1112                 .type           = P_STRING,
1113                 .p_class        = P_LOCAL,
1114                 .offset         = LOCAL_VAR(szInclude),
1115                 .special        = handle_include,
1116                 .enum_list      = NULL
1117         },
1118
1119         {
1120                 .label          = "available",
1121                 .type           = P_BOOL,
1122                 .p_class        = P_LOCAL,
1123                 .offset         = LOCAL_VAR(bAvailable),
1124                 .special        = NULL,
1125                 .enum_list      = NULL
1126         },
1127         {
1128                 .label          = "volume",
1129                 .type           = P_STRING,
1130                 .p_class        = P_LOCAL,
1131                 .offset         = LOCAL_VAR(volume),
1132                 .special        = NULL,
1133                 .enum_list      = NULL
1134         },
1135         {
1136                 .label          = "fstype",
1137                 .type           = P_STRING,
1138                 .p_class        = P_LOCAL,
1139                 .offset         = LOCAL_VAR(fstype),
1140                 .special        = NULL,
1141                 .enum_list      = NULL
1142         },
1143
1144         {
1145                 .label          = "panic action",
1146                 .type           = P_STRING,
1147                 .p_class        = P_GLOBAL,
1148                 .offset         = GLOBAL_VAR(panic_action),
1149                 .special        = NULL,
1150                 .enum_list      = NULL
1151         },
1152
1153         {
1154                 .label          = "msdfs root",
1155                 .type           = P_BOOL,
1156                 .p_class        = P_LOCAL,
1157                 .offset         = LOCAL_VAR(bMSDfsRoot),
1158                 .special        = NULL,
1159                 .enum_list      = NULL
1160         },
1161         {
1162                 .label          = "host msdfs",
1163                 .type           = P_BOOL,
1164                 .p_class        = P_GLOBAL,
1165                 .offset         = GLOBAL_VAR(bHostMSDfs),
1166                 .special        = NULL,
1167                 .enum_list      = NULL
1168         },
1169         {
1170                 .label          = "winbind separator",
1171                 .type           = P_STRING,
1172                 .p_class        = P_GLOBAL,
1173                 .offset         = GLOBAL_VAR(szWinbindSeparator),
1174                 .special        = NULL,
1175                 .enum_list      = NULL
1176         },
1177         {
1178                 .label          = "winbindd socket directory",
1179                 .type           = P_STRING,
1180                 .p_class        = P_GLOBAL,
1181                 .offset         = GLOBAL_VAR(szWinbinddSocketDirectory),
1182                 .special        = NULL,
1183                 .enum_list      = NULL
1184         },
1185         {
1186                 .label          = "winbindd privileged socket directory",
1187                 .type           = P_STRING,
1188                 .p_class        = P_GLOBAL,
1189                 .offset         = GLOBAL_VAR(szWinbinddPrivilegedSocketDirectory),
1190                 .special        = NULL,
1191                 .enum_list      = NULL
1192         },
1193         {
1194                 .label          = "winbind sealed pipes",
1195                 .type           = P_BOOL,
1196                 .p_class        = P_GLOBAL,
1197                 .offset         = GLOBAL_VAR(bWinbindSealedPipes),
1198                 .special        = NULL,
1199                 .enum_list      = NULL
1200         },
1201         {
1202                 .label          = "template shell",
1203                 .type           = P_STRING,
1204                 .p_class        = P_GLOBAL,
1205                 .offset         = GLOBAL_VAR(szTemplateShell),
1206                 .special        = NULL,
1207                 .enum_list      = NULL
1208         },
1209         {
1210                 .label          = "template homedir",
1211                 .type           = P_STRING,
1212                 .p_class        = P_GLOBAL,
1213                 .offset         = GLOBAL_VAR(szTemplateHomedir),
1214                 .special        = NULL,
1215                 .enum_list      = NULL
1216         },
1217         {
1218                 .label          = "idmap trusted only",
1219                 .type           = P_BOOL,
1220                 .p_class        = P_GLOBAL,
1221                 .offset         = GLOBAL_VAR(bIdmapTrustedOnly),
1222                 .special        = NULL,
1223                 .enum_list      = NULL
1224         },
1225
1226         {
1227                 .label          = "ntp signd socket directory",
1228                 .type           = P_STRING,
1229                 .p_class        = P_GLOBAL,
1230                 .offset         = GLOBAL_VAR(szNTPSignDSocketDirectory),
1231                 .special        = NULL,
1232                 .enum_list      = NULL
1233         },
1234         {
1235                 .label          = "rndc command",
1236                 .type           = P_CMDLIST,
1237                 .p_class        = P_GLOBAL,
1238                 .offset         = GLOBAL_VAR(szRNDCCommand),
1239                 .special        = NULL,
1240                 .enum_list      = NULL
1241         },
1242         {
1243                 .label          = "dns update command",
1244                 .type           = P_CMDLIST,
1245                 .p_class        = P_GLOBAL,
1246                 .offset         = GLOBAL_VAR(szDNSUpdateCommand),
1247                 .special        = NULL,
1248                 .enum_list      = NULL
1249         },
1250         {
1251                 .label          = "spn update command",
1252                 .type           = P_CMDLIST,
1253                 .p_class        = P_GLOBAL,
1254                 .offset         = GLOBAL_VAR(szSPNUpdateCommand),
1255                 .special        = NULL,
1256                 .enum_list      = NULL
1257         },
1258         {
1259                 .label          = "nsupdate command",
1260                 .type           = P_CMDLIST,
1261                 .p_class        = P_GLOBAL,
1262                 .offset         = GLOBAL_VAR(szNSUpdateCommand),
1263                 .special        = NULL,
1264                 .enum_list      = NULL
1265         },
1266
1267         {NULL,  P_BOOL,  P_NONE,  0,  NULL,  NULL,  0}
1268 };
1269
1270
1271 /* local variables */
1272 struct loadparm_context {
1273         const char *szConfigFile;
1274         struct loadparm_global *globals;
1275         struct loadparm_service **services;
1276         struct loadparm_service *sDefault;
1277         struct smb_iconv_handle *iconv_handle;
1278         int iNumServices;
1279         struct loadparm_service *currentService;
1280         bool bInGlobalSection;
1281         struct file_lists {
1282                 struct file_lists *next;
1283                 char *name;
1284                 char *subfname;
1285                 time_t modtime;
1286         } *file_lists;
1287         unsigned int flags[NUMPARAMETERS];
1288         bool loaded;
1289         bool refuse_free;
1290         bool global; /* Is this the global context, which may set
1291                       * global variables such as debug level etc? */
1292         const struct loadparm_s3_context *s3_fns;
1293 };
1294
1295
1296 struct loadparm_service *lpcfg_default_service(struct loadparm_context *lp_ctx)
1297 {
1298         return lp_ctx->sDefault;
1299 }
1300
1301 /**
1302  * Convenience routine to grab string parameters into temporary memory
1303  * and run standard_sub_basic on them.
1304  *
1305  * The buffers can be written to by
1306  * callers without affecting the source string.
1307  */
1308
1309 static const char *lp_string(const char *s)
1310 {
1311 #if 0  /* until REWRITE done to make thread-safe */
1312         size_t len = s ? strlen(s) : 0;
1313         char *ret;
1314 #endif
1315
1316         /* The follow debug is useful for tracking down memory problems
1317            especially if you have an inner loop that is calling a lp_*()
1318            function that returns a string.  Perhaps this debug should be
1319            present all the time? */
1320
1321 #if 0
1322         DEBUG(10, ("lp_string(%s)\n", s));
1323 #endif
1324
1325 #if 0  /* until REWRITE done to make thread-safe */
1326         if (!lp_talloc)
1327                 lp_talloc = talloc_init("lp_talloc");
1328
1329         ret = talloc_array(lp_talloc, char, len + 100); /* leave room for substitution */
1330
1331         if (!ret)
1332                 return NULL;
1333
1334         if (!s)
1335                 *ret = 0;
1336         else
1337                 strlcpy(ret, s, len);
1338
1339         if (trim_string(ret, "\"", "\"")) {
1340                 if (strchr(ret,'"') != NULL)
1341                         strlcpy(ret, s, len);
1342         }
1343
1344         standard_sub_basic(ret,len+100);
1345         return (ret);
1346 #endif
1347         return s;
1348 }
1349
1350 /*
1351    In this section all the functions that are used to access the
1352    parameters from the rest of the program are defined
1353 */
1354
1355 /*
1356  * the creation of separate lpcfg_*() and lp_*() functions is to allow
1357  * for code compatibility between existing Samba4 and Samba3 code.
1358  */
1359
1360 /* this global context supports the lp_*() function varients */
1361 static struct loadparm_context *global_loadparm_context;
1362
1363 #define lpcfg_default_service global_loadparm_context->sDefault
1364 #define lpcfg_global_service(i) global_loadparm_context->services[i]
1365
1366 #define FN_GLOBAL_STRING(fn_name,var_name)                              \
1367  _PUBLIC_ const char *lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) { \
1368         if (lp_ctx == NULL) return NULL;                                \
1369         if (lp_ctx->s3_fns) {                                           \
1370                 SMB_ASSERT(lp_ctx->s3_fns->fn_name);                    \
1371                 return lp_ctx->s3_fns->fn_name();                       \
1372         }                                                               \
1373         return lp_ctx->globals->var_name ? lp_string(lp_ctx->globals->var_name) : ""; \
1374 }
1375
1376 #define FN_GLOBAL_CONST_STRING(fn_name,var_name) \
1377  _PUBLIC_ const char *lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) {\
1378          if (lp_ctx == NULL) return NULL;                               \
1379          if (lp_ctx->s3_fns) {                                          \
1380                  SMB_ASSERT(lp_ctx->s3_fns->fn_name);                   \
1381                  return lp_ctx->s3_fns->fn_name();                      \
1382          }                                                              \
1383          return lp_ctx->globals->var_name ? lp_string(lp_ctx->globals->var_name) : ""; \
1384  }
1385
1386 #define FN_GLOBAL_LIST(fn_name,var_name)                                \
1387  _PUBLIC_ const char **lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) { \
1388          if (lp_ctx == NULL) return NULL;                               \
1389          if (lp_ctx->s3_fns) {                                          \
1390                  SMB_ASSERT(lp_ctx->s3_fns->fn_name);                   \
1391                  return lp_ctx->s3_fns->fn_name();                      \
1392          }                                                              \
1393          return lp_ctx->globals->var_name;                              \
1394  }
1395
1396 #define FN_GLOBAL_BOOL(fn_name,var_name) \
1397  _PUBLIC_ bool lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) {\
1398          if (lp_ctx == NULL) return false;                              \
1399          if (lp_ctx->s3_fns) {                                          \
1400                  SMB_ASSERT(lp_ctx->s3_fns->fn_name);                   \
1401                  return lp_ctx->s3_fns->fn_name();                      \
1402          }                                                              \
1403          return lp_ctx->globals->var_name;                              \
1404 }
1405
1406 #define FN_GLOBAL_INTEGER(fn_name,var_name) \
1407  _PUBLIC_ int lpcfg_ ## fn_name(struct loadparm_context *lp_ctx) { \
1408          if (lp_ctx->s3_fns) {                                          \
1409                  SMB_ASSERT(lp_ctx->s3_fns->fn_name);                   \
1410                  return lp_ctx->s3_fns->fn_name();                      \
1411          }                                                              \
1412          return lp_ctx->globals->var_name;                              \
1413  }
1414
1415 #define FN_LOCAL_STRING(fn_name,val) \
1416  _PUBLIC_ const char *lpcfg_ ## fn_name(struct loadparm_service *service, \
1417                                         struct loadparm_service *sDefault) { \
1418          return(lp_string((const char *)((service != NULL && service->val != NULL) ? service->val : sDefault->val))); \
1419  }
1420
1421 #define FN_LOCAL_CONST_STRING(fn_name,val) FN_LOCAL_STRING(fn_name, val)
1422
1423 #define FN_LOCAL_LIST(fn_name,val) \
1424  _PUBLIC_ const char **lpcfg_ ## fn_name(struct loadparm_service *service, \
1425                                          struct loadparm_service *sDefault) {\
1426          return(const char **)(service != NULL && service->val != NULL? service->val : sDefault->val); \
1427  }
1428
1429 #define FN_LOCAL_PARM_BOOL(fn_name, val) FN_LOCAL_BOOL(fn_name, val)
1430
1431 #define FN_LOCAL_BOOL(fn_name,val) \
1432  _PUBLIC_ bool lpcfg_ ## fn_name(struct loadparm_service *service, \
1433                                  struct loadparm_service *sDefault) {   \
1434          return((service != NULL)? service->val : sDefault->val); \
1435  }
1436
1437 #define FN_LOCAL_INTEGER(fn_name,val) \
1438  _PUBLIC_ int lpcfg_ ## fn_name(struct loadparm_service *service, \
1439                                 struct loadparm_service *sDefault) {    \
1440          return((service != NULL)? service->val : sDefault->val); \
1441  }
1442
1443 #define FN_LOCAL_PARM_INTEGER(fn_name, val) FN_LOCAL_INTEGER(fn_name, val)
1444
1445 #define FN_LOCAL_PARM_CHAR(fn_name, val) FN_LOCAL_CHAR(fn_name, val)
1446
1447 #define FN_LOCAL_CHAR(fn_name,val) \
1448  _PUBLIC_ char lpcfg_ ## fn_name(struct loadparm_service *service, \
1449                                 struct loadparm_service *sDefault) {    \
1450          return((service != NULL)? service->val : sDefault->val); \
1451  }
1452
1453 #include "lib/param/param_functions.c"
1454
1455 FN_GLOBAL_INTEGER(server_role, server_role)
1456 FN_GLOBAL_LIST(smb_ports, smb_ports)
1457 FN_GLOBAL_INTEGER(nbt_port, nbt_port)
1458 FN_GLOBAL_INTEGER(dgram_port, dgram_port)
1459 FN_GLOBAL_INTEGER(cldap_port, cldap_port)
1460 FN_GLOBAL_INTEGER(krb5_port, krb5_port)
1461 FN_GLOBAL_INTEGER(kpasswd_port, kpasswd_port)
1462 FN_GLOBAL_INTEGER(web_port, web_port)
1463 FN_GLOBAL_BOOL(tls_enabled, tls_enabled)
1464 FN_GLOBAL_STRING(logfile, logfile)
1465 FN_GLOBAL_STRING(share_backend, szShareBackend)
1466 FN_GLOBAL_STRING(spoolss_url, szSPOOLSS_URL)
1467 FN_GLOBAL_STRING(wins_config_url, szWINS_CONFIG_URL)
1468 FN_GLOBAL_STRING(wins_url, szWINS_URL)
1469 FN_GLOBAL_CONST_STRING(winbind_separator, szWinbindSeparator)
1470 FN_GLOBAL_CONST_STRING(winbindd_socket_directory, szWinbinddSocketDirectory)
1471 FN_GLOBAL_CONST_STRING(winbindd_privileged_socket_directory, szWinbinddPrivilegedSocketDirectory)
1472 FN_GLOBAL_CONST_STRING(template_shell, szTemplateShell)
1473 FN_GLOBAL_CONST_STRING(template_homedir, szTemplateHomedir)
1474 FN_GLOBAL_BOOL(winbind_sealed_pipes, bWinbindSealedPipes)
1475 FN_GLOBAL_BOOL(idmap_trusted_only, bIdmapTrustedOnly)
1476 FN_GLOBAL_STRING(private_dir, szPrivateDir)
1477 FN_GLOBAL_STRING(serverstring, szServerString)
1478 FN_GLOBAL_STRING(lockdir, szLockDir)
1479 FN_GLOBAL_STRING(ncalrpc_dir, ncalrpc_dir)
1480 FN_GLOBAL_STRING(dos_charset, dos_charset)
1481 FN_GLOBAL_STRING(unix_charset, unix_charset)
1482 FN_GLOBAL_STRING(piddir, szPidDir)
1483 FN_GLOBAL_LIST(rndc_command, szRNDCCommand)
1484 FN_GLOBAL_LIST(dns_update_command, szDNSUpdateCommand)
1485 FN_GLOBAL_LIST(spn_update_command, szSPNUpdateCommand)
1486 FN_GLOBAL_LIST(nsupdate_command, szNSUpdateCommand)
1487 FN_GLOBAL_LIST(dcerpc_endpoint_servers, dcerpc_ep_servers)
1488 FN_GLOBAL_LIST(server_services, server_services)
1489 FN_GLOBAL_STRING(ntptr_providor, ntptr_providor)
1490 FN_GLOBAL_STRING(auto_services, szAutoServices)
1491 FN_GLOBAL_STRING(passwd_chat, szPasswdChat)
1492 FN_GLOBAL_LIST(passwordserver, szPasswordServers)
1493 FN_GLOBAL_LIST(name_resolve_order, szNameResolveOrder)
1494 FN_GLOBAL_STRING(realm, szRealm_upper)
1495 FN_GLOBAL_STRING(dnsdomain, szRealm_lower)
1496 FN_GLOBAL_STRING(socket_options, socket_options)
1497 FN_GLOBAL_STRING(workgroup, szWorkgroup)
1498 FN_GLOBAL_STRING(netbios_name, szNetbiosName)
1499 FN_GLOBAL_STRING(netbios_scope, szNetbiosScope)
1500 FN_GLOBAL_LIST(wins_server_list, szWINSservers)
1501 FN_GLOBAL_LIST(interfaces, szInterfaces)
1502 FN_GLOBAL_STRING(socket_address, szSocketAddress)
1503 FN_GLOBAL_LIST(netbios_aliases, szNetbiosAliases)
1504 FN_GLOBAL_BOOL(disable_netbios, bDisableNetbios)
1505 FN_GLOBAL_BOOL(we_are_a_wins_server, bWINSsupport)
1506 FN_GLOBAL_BOOL(wins_dns_proxy, bWINSdnsProxy)
1507 FN_GLOBAL_STRING(wins_hook, szWINSHook)
1508 FN_GLOBAL_BOOL(local_master, bLocalMaster)
1509 FN_GLOBAL_BOOL(readraw, bReadRaw)
1510 FN_GLOBAL_BOOL(large_readwrite, bLargeReadwrite)
1511 FN_GLOBAL_BOOL(writeraw, bWriteRaw)
1512 FN_GLOBAL_BOOL(null_passwords, bNullPasswords)
1513 FN_GLOBAL_BOOL(obey_pam_restrictions, bObeyPamRestrictions)
1514 FN_GLOBAL_BOOL(encrypted_passwords, bEncryptPasswords)
1515 FN_GLOBAL_BOOL(time_server, bTimeServer)
1516 FN_GLOBAL_BOOL(bind_interfaces_only, bBindInterfacesOnly)
1517 FN_GLOBAL_BOOL(unicode, bUnicode)
1518 FN_GLOBAL_BOOL(nt_status_support, bNTStatusSupport)
1519 FN_GLOBAL_BOOL(lanman_auth, bLanmanAuth)
1520 FN_GLOBAL_BOOL(ntlm_auth, bNTLMAuth)
1521 FN_GLOBAL_BOOL(client_plaintext_auth, bClientPlaintextAuth)
1522 FN_GLOBAL_BOOL(client_lanman_auth, bClientLanManAuth)
1523 FN_GLOBAL_BOOL(client_ntlmv2_auth, bClientNTLMv2Auth)
1524 FN_GLOBAL_BOOL(client_use_spnego_principal, client_use_spnego_principal)
1525 FN_GLOBAL_BOOL(host_msdfs, bHostMSDfs)
1526 FN_GLOBAL_BOOL(unix_extensions, bUnixExtensions)
1527 FN_GLOBAL_BOOL(use_spnego, bUseSpnego)
1528 FN_GLOBAL_BOOL(rpc_big_endian, bRpcBigEndian)
1529 FN_GLOBAL_INTEGER(max_wins_ttl, max_wins_ttl)
1530 FN_GLOBAL_INTEGER(min_wins_ttl, min_wins_ttl)
1531 FN_GLOBAL_INTEGER(maxmux, max_mux)
1532 FN_GLOBAL_INTEGER(max_xmit, max_xmit)
1533 FN_GLOBAL_INTEGER(passwordlevel, pwordlevel)
1534 FN_GLOBAL_INTEGER(srv_maxprotocol, srv_maxprotocol)
1535 FN_GLOBAL_INTEGER(srv_minprotocol, srv_minprotocol)
1536 FN_GLOBAL_INTEGER(cli_maxprotocol, cli_maxprotocol)
1537 FN_GLOBAL_INTEGER(cli_minprotocol, cli_minprotocol)
1538 FN_GLOBAL_INTEGER(security, security)
1539 FN_GLOBAL_BOOL(paranoid_server_security, paranoid_server_security)
1540
1541 FN_GLOBAL_INTEGER(server_signing, server_signing)
1542 FN_GLOBAL_INTEGER(client_signing, client_signing)
1543
1544 FN_GLOBAL_CONST_STRING(ntp_signd_socket_directory, szNTPSignDSocketDirectory)
1545
1546 /* local prototypes */
1547 static int map_parameter(const char *pszParmName);
1548 static struct loadparm_service *getservicebyname(struct loadparm_context *lp_ctx,
1549                                         const char *pszServiceName);
1550 static void copy_service(struct loadparm_service *pserviceDest,
1551                          struct loadparm_service *pserviceSource,
1552                          struct bitmap *pcopymapDest);
1553 static bool service_ok(struct loadparm_service *service);
1554 static bool do_section(const char *pszSectionName, void *);
1555 static void init_copymap(struct loadparm_service *pservice);
1556
1557 /* This is a helper function for parametrical options support. */
1558 /* It returns a pointer to parametrical option value if it exists or NULL otherwise */
1559 /* Actual parametrical functions are quite simple */
1560 const char *lpcfg_get_parametric(struct loadparm_context *lp_ctx,
1561                               struct loadparm_service *service,
1562                               const char *type, const char *option)
1563 {
1564         char *vfskey_tmp = NULL;
1565         char *vfskey = NULL;
1566         struct parmlist_entry *data;
1567
1568         if (lp_ctx == NULL)
1569                 return NULL;
1570
1571         if (lp_ctx->s3_fns) {
1572                 return lp_ctx->s3_fns->get_parametric(service, type, option);
1573         }
1574
1575         data = (service == NULL ? lp_ctx->globals->param_opt : service->param_opt);
1576
1577         vfskey_tmp = talloc_asprintf(NULL, "%s:%s", type, option);
1578         if (vfskey_tmp == NULL) return NULL;
1579         vfskey = strlower_talloc(NULL, vfskey_tmp);
1580         talloc_free(vfskey_tmp);
1581
1582         while (data) {
1583                 if (strcmp(data->key, vfskey) == 0) {
1584                         talloc_free(vfskey);
1585                         return data->value;
1586                 }
1587                 data = data->next;
1588         }
1589
1590         if (service != NULL) {
1591                 /* Try to fetch the same option but from globals */
1592                 /* but only if we are not already working with globals */
1593                 for (data = lp_ctx->globals->param_opt; data;
1594                      data = data->next) {
1595                         if (strcmp(data->key, vfskey) == 0) {
1596                                 talloc_free(vfskey);
1597                                 return data->value;
1598                         }
1599                 }
1600         }
1601
1602         talloc_free(vfskey);
1603
1604         return NULL;
1605 }
1606
1607
1608 /**
1609  * convenience routine to return int parameters.
1610  */
1611 static int lp_int(const char *s)
1612 {
1613
1614         if (!s) {
1615                 DEBUG(0,("lp_int(%s): is called with NULL!\n",s));
1616                 return -1;
1617         }
1618
1619         return strtol(s, NULL, 0);
1620 }
1621
1622 /**
1623  * convenience routine to return unsigned long parameters.
1624  */
1625 static int lp_ulong(const char *s)
1626 {
1627
1628         if (!s) {
1629                 DEBUG(0,("lp_int(%s): is called with NULL!\n",s));
1630                 return -1;
1631         }
1632
1633         return strtoul(s, NULL, 0);
1634 }
1635
1636 /**
1637  * convenience routine to return unsigned long parameters.
1638  */
1639 static double lp_double(const char *s)
1640 {
1641
1642         if (!s) {
1643                 DEBUG(0,("lp_double(%s): is called with NULL!\n",s));
1644                 return -1;
1645         }
1646
1647         return strtod(s, NULL);
1648 }
1649
1650 /**
1651  * convenience routine to return boolean parameters.
1652  */
1653 static bool lp_bool(const char *s)
1654 {
1655         bool ret = false;
1656
1657         if (!s) {
1658                 DEBUG(0,("lp_bool(%s): is called with NULL!\n",s));
1659                 return false;
1660         }
1661
1662         if (!set_boolean(s, &ret)) {
1663                 DEBUG(0,("lp_bool(%s): value is not boolean!\n",s));
1664                 return false;
1665         }
1666
1667         return ret;
1668 }
1669
1670
1671 /**
1672  * Return parametric option from a given service. Type is a part of option before ':'
1673  * Parametric option has following syntax: 'Type: option = value'
1674  * Returned value is allocated in 'lp_talloc' context
1675  */
1676
1677 const char *lpcfg_parm_string(struct loadparm_context *lp_ctx,
1678                               struct loadparm_service *service, const char *type,
1679                               const char *option)
1680 {
1681         const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
1682
1683         if (value)
1684                 return lp_string(value);
1685
1686         return NULL;
1687 }
1688
1689 /**
1690  * Return parametric option from a given service. Type is a part of option before ':'
1691  * Parametric option has following syntax: 'Type: option = value'
1692  * Returned value is allocated in 'lp_talloc' context
1693  */
1694
1695 const char **lpcfg_parm_string_list(TALLOC_CTX *mem_ctx,
1696                                     struct loadparm_context *lp_ctx,
1697                                     struct loadparm_service *service,
1698                                     const char *type,
1699                                     const char *option, const char *separator)
1700 {
1701         const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
1702
1703         if (value != NULL)
1704                 return (const char **)str_list_make(mem_ctx, value, separator);
1705
1706         return NULL;
1707 }
1708
1709 /**
1710  * Return parametric option from a given service. Type is a part of option before ':'
1711  * Parametric option has following syntax: 'Type: option = value'
1712  */
1713
1714 int lpcfg_parm_int(struct loadparm_context *lp_ctx,
1715                    struct loadparm_service *service, const char *type,
1716                    const char *option, int default_v)
1717 {
1718         const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
1719
1720         if (value)
1721                 return lp_int(value);
1722
1723         return default_v;
1724 }
1725
1726 /**
1727  * Return parametric option from a given service. Type is a part of
1728  * option before ':'.
1729  * Parametric option has following syntax: 'Type: option = value'.
1730  */
1731
1732 int lpcfg_parm_bytes(struct loadparm_context *lp_ctx,
1733                   struct loadparm_service *service, const char *type,
1734                   const char *option, int default_v)
1735 {
1736         uint64_t bval;
1737
1738         const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
1739
1740         if (value && conv_str_size_error(value, &bval)) {
1741                 if (bval <= INT_MAX) {
1742                         return (int)bval;
1743                 }
1744         }
1745
1746         return default_v;
1747 }
1748
1749 /**
1750  * Return parametric option from a given service.
1751  * Type is a part of option before ':'
1752  * Parametric option has following syntax: 'Type: option = value'
1753  */
1754 unsigned long lpcfg_parm_ulong(struct loadparm_context *lp_ctx,
1755                             struct loadparm_service *service, const char *type,
1756                             const char *option, unsigned long default_v)
1757 {
1758         const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
1759
1760         if (value)
1761                 return lp_ulong(value);
1762
1763         return default_v;
1764 }
1765
1766
1767 double lpcfg_parm_double(struct loadparm_context *lp_ctx,
1768                       struct loadparm_service *service, const char *type,
1769                       const char *option, double default_v)
1770 {
1771         const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
1772
1773         if (value != NULL)
1774                 return lp_double(value);
1775
1776         return default_v;
1777 }
1778
1779 /**
1780  * Return parametric option from a given service. Type is a part of option before ':'
1781  * Parametric option has following syntax: 'Type: option = value'
1782  */
1783
1784 bool lpcfg_parm_bool(struct loadparm_context *lp_ctx,
1785                      struct loadparm_service *service, const char *type,
1786                      const char *option, bool default_v)
1787 {
1788         const char *value = lpcfg_get_parametric(lp_ctx, service, type, option);
1789
1790         if (value != NULL)
1791                 return lp_bool(value);
1792
1793         return default_v;
1794 }
1795
1796
1797 /**
1798  * Initialise a service to the defaults.
1799  */
1800
1801 static struct loadparm_service *init_service(TALLOC_CTX *mem_ctx, struct loadparm_service *sDefault)
1802 {
1803         struct loadparm_service *pservice =
1804                 talloc_zero(mem_ctx, struct loadparm_service);
1805         copy_service(pservice, sDefault, NULL);
1806         return pservice;
1807 }
1808
1809 /**
1810  * Set a string value, deallocating any existing space, and allocing the space
1811  * for the string
1812  */
1813 static bool string_set(TALLOC_CTX *mem_ctx, char **dest, const char *src)
1814 {
1815         talloc_free(*dest);
1816
1817         if (src == NULL)
1818                 src = "";
1819
1820         *dest = talloc_strdup(mem_ctx, src);
1821         if ((*dest) == NULL) {
1822                 DEBUG(0,("Out of memory in string_set\n"));
1823                 return false;
1824         }
1825
1826         return true;
1827 }
1828
1829 /**
1830  * Set a string value, deallocating any existing space, and allocing the space
1831  * for the string
1832  */
1833 static bool string_set_upper(TALLOC_CTX *mem_ctx, char **dest, const char *src)
1834 {
1835         talloc_free(*dest);
1836
1837         if (src == NULL)
1838                 src = "";
1839
1840         *dest = strupper_talloc(mem_ctx, src);
1841         if ((*dest) == NULL) {
1842                 DEBUG(0,("Out of memory in string_set_upper\n"));
1843                 return false;
1844         }
1845
1846         return true;
1847 }
1848
1849
1850
1851 /**
1852  * Add a new service to the services array initialising it with the given
1853  * service.
1854  */
1855
1856 struct loadparm_service *lpcfg_add_service(struct loadparm_context *lp_ctx,
1857                                            const struct loadparm_service *pservice,
1858                                            const char *name)
1859 {
1860         int i;
1861         struct loadparm_service tservice;
1862         int num_to_alloc = lp_ctx->iNumServices + 1;
1863         struct parmlist_entry *data, *pdata;
1864
1865         if (pservice == NULL) {
1866                 pservice = lp_ctx->sDefault;
1867         }
1868
1869         tservice = *pservice;
1870
1871         /* it might already exist */
1872         if (name) {
1873                 struct loadparm_service *service = getservicebyname(lp_ctx,
1874                                                                     name);
1875                 if (service != NULL) {
1876                         /* Clean all parametric options for service */
1877                         /* They will be added during parsing again */
1878                         data = service->param_opt;
1879                         while (data) {
1880                                 pdata = data->next;
1881                                 talloc_free(data);
1882                                 data = pdata;
1883                         }
1884                         service->param_opt = NULL;
1885                         return service;
1886                 }
1887         }
1888
1889         /* find an invalid one */
1890         for (i = 0; i < lp_ctx->iNumServices; i++)
1891                 if (lp_ctx->services[i] == NULL)
1892                         break;
1893
1894         /* if not, then create one */
1895         if (i == lp_ctx->iNumServices) {
1896                 struct loadparm_service **tsp;
1897
1898                 tsp = talloc_realloc(lp_ctx, lp_ctx->services, struct loadparm_service *, num_to_alloc);
1899
1900                 if (!tsp) {
1901                         DEBUG(0,("lpcfg_add_service: failed to enlarge services!\n"));
1902                         return NULL;
1903                 } else {
1904                         lp_ctx->services = tsp;
1905                         lp_ctx->services[lp_ctx->iNumServices] = NULL;
1906                 }
1907
1908                 lp_ctx->iNumServices++;
1909         }
1910
1911         lp_ctx->services[i] = init_service(lp_ctx->services, lp_ctx->sDefault);
1912         if (lp_ctx->services[i] == NULL) {
1913                 DEBUG(0,("lpcfg_add_service: out of memory!\n"));
1914                 return NULL;
1915         }
1916         copy_service(lp_ctx->services[i], &tservice, NULL);
1917         if (name != NULL)
1918                 string_set(lp_ctx->services[i], &lp_ctx->services[i]->szService, name);
1919         return lp_ctx->services[i];
1920 }
1921
1922 /**
1923  * Add a new home service, with the specified home directory, defaults coming
1924  * from service ifrom.
1925  */
1926
1927 bool lpcfg_add_home(struct loadparm_context *lp_ctx,
1928                  const char *pszHomename,
1929                  struct loadparm_service *default_service,
1930                  const char *user, const char *pszHomedir)
1931 {
1932         struct loadparm_service *service;
1933
1934         service = lpcfg_add_service(lp_ctx, default_service, pszHomename);
1935
1936         if (service == NULL)
1937                 return false;
1938
1939         if (!(*(default_service->szPath))
1940             || strequal(default_service->szPath, lp_ctx->sDefault->szPath)) {
1941                 service->szPath = talloc_strdup(service, pszHomedir);
1942         } else {
1943                 service->szPath = string_sub_talloc(service, lpcfg_pathname(default_service, lp_ctx->sDefault), "%H", pszHomedir);
1944         }
1945
1946         if (!(*(service->comment))) {
1947                 service->comment = talloc_asprintf(service, "Home directory of %s", user);
1948         }
1949         service->bAvailable = default_service->bAvailable;
1950         service->bBrowseable = default_service->bBrowseable;
1951
1952         DEBUG(3, ("adding home's share [%s] for user '%s' at '%s'\n",
1953                   pszHomename, user, service->szPath));
1954
1955         return true;
1956 }
1957
1958 /**
1959  * Add a new printer service, with defaults coming from service iFrom.
1960  */
1961
1962 bool lpcfg_add_printer(struct loadparm_context *lp_ctx,
1963                        const char *pszPrintername,
1964                        struct loadparm_service *default_service)
1965 {
1966         const char *comment = "From Printcap";
1967         struct loadparm_service *service;
1968         service = lpcfg_add_service(lp_ctx, default_service, pszPrintername);
1969
1970         if (service == NULL)
1971                 return false;
1972
1973         /* note that we do NOT default the availability flag to True - */
1974         /* we take it from the default service passed. This allows all */
1975         /* dynamic printers to be disabled by disabling the [printers] */
1976         /* entry (if/when the 'available' keyword is implemented!).    */
1977
1978         /* the printer name is set to the service name. */
1979         string_set(service, &service->szPrintername, pszPrintername);
1980         string_set(service, &service->comment, comment);
1981         service->bBrowseable = default_service->bBrowseable;
1982         /* Printers cannot be read_only. */
1983         service->bRead_only = false;
1984         /* Printer services must be printable. */
1985         service->bPrint_ok = true;
1986
1987         DEBUG(3, ("adding printer service %s\n", pszPrintername));
1988
1989         return true;
1990 }
1991
1992 /**
1993  * Map a parameter's string representation to something we can use.
1994  * Returns False if the parameter string is not recognised, else TRUE.
1995  */
1996
1997 static int map_parameter(const char *pszParmName)
1998 {
1999         int iIndex;
2000
2001         if (*pszParmName == '-')
2002                 return -1;
2003
2004         for (iIndex = 0; parm_table[iIndex].label; iIndex++)
2005                 if (strwicmp(parm_table[iIndex].label, pszParmName) == 0)
2006                         return iIndex;
2007
2008         /* Warn only if it isn't parametric option */
2009         if (strchr(pszParmName, ':') == NULL)
2010                 DEBUG(0, ("Unknown parameter encountered: \"%s\"\n", pszParmName));
2011         /* We do return 'fail' for parametric options as well because they are
2012            stored in different storage
2013          */
2014         return -1;
2015 }
2016
2017
2018 /**
2019   return the parameter structure for a parameter
2020 */
2021 struct parm_struct *lpcfg_parm_struct(struct loadparm_context *lp_ctx, const char *name)
2022 {
2023         int parmnum;
2024
2025         if (lp_ctx->s3_fns) {
2026                 return lp_ctx->s3_fns->get_parm_struct(name);
2027         }
2028
2029         parmnum = map_parameter(name);
2030         if (parmnum == -1) return NULL;
2031         return &parm_table[parmnum];
2032 }
2033
2034 /**
2035   return the parameter pointer for a parameter
2036 */
2037 void *lpcfg_parm_ptr(struct loadparm_context *lp_ctx,
2038                   struct loadparm_service *service, struct parm_struct *parm)
2039 {
2040         if (lp_ctx->s3_fns) {
2041                 return lp_ctx->s3_fns->get_parm_ptr(service, parm);
2042         }
2043
2044         if (service == NULL) {
2045                 if (parm->p_class == P_LOCAL)
2046                         return ((char *)lp_ctx->sDefault)+parm->offset;
2047                 else if (parm->p_class == P_GLOBAL)
2048                         return ((char *)lp_ctx->globals)+parm->offset;
2049                 else return NULL;
2050         } else {
2051                 return ((char *)service) + parm->offset;
2052         }
2053 }
2054
2055 /**
2056  * Find a service by name. Otherwise works like get_service.
2057  */
2058
2059 static struct loadparm_service *getservicebyname(struct loadparm_context *lp_ctx,
2060                                         const char *pszServiceName)
2061 {
2062         int iService;
2063
2064         for (iService = lp_ctx->iNumServices - 1; iService >= 0; iService--)
2065                 if (lp_ctx->services[iService] != NULL &&
2066                     strwicmp(lp_ctx->services[iService]->szService, pszServiceName) == 0) {
2067                         return lp_ctx->services[iService];
2068                 }
2069
2070         return NULL;
2071 }
2072
2073 /**
2074  * Copy a service structure to another.
2075  * If pcopymapDest is NULL then copy all fields
2076  */
2077
2078 static void copy_service(struct loadparm_service *pserviceDest,
2079                          struct loadparm_service *pserviceSource,
2080                          struct bitmap *pcopymapDest)
2081 {
2082         int i;
2083         bool bcopyall = (pcopymapDest == NULL);
2084         struct parmlist_entry *data, *pdata, *paramo;
2085         bool not_added;
2086
2087         for (i = 0; parm_table[i].label; i++)
2088                 if (parm_table[i].p_class == P_LOCAL &&
2089                     (bcopyall || bitmap_query(pcopymapDest, i))) {
2090                         void *src_ptr =
2091                                 ((char *)pserviceSource) + parm_table[i].offset;
2092                         void *dest_ptr =
2093                                 ((char *)pserviceDest) + parm_table[i].offset;
2094
2095                         switch (parm_table[i].type) {
2096                                 case P_BOOL:
2097                                         *(int *)dest_ptr = *(int *)src_ptr;
2098                                         break;
2099
2100                                 case P_INTEGER:
2101                                 case P_OCTAL:
2102                                 case P_ENUM:
2103                                         *(int *)dest_ptr = *(int *)src_ptr;
2104                                         break;
2105
2106                                 case P_STRING:
2107                                         string_set(pserviceDest,
2108                                                    (char **)dest_ptr,
2109                                                    *(char **)src_ptr);
2110                                         break;
2111
2112                                 case P_USTRING:
2113                                         string_set_upper(pserviceDest,
2114                                                          (char **)dest_ptr,
2115                                                          *(char **)src_ptr);
2116                                         break;
2117                                 case P_LIST:
2118                                         *(const char ***)dest_ptr = (const char **)str_list_copy(pserviceDest, 
2119                                                                                   *(const char ***)src_ptr);
2120                                         break;
2121                                 default:
2122                                         break;
2123                         }
2124                 }
2125
2126         if (bcopyall) {
2127                 init_copymap(pserviceDest);
2128                 if (pserviceSource->copymap)
2129                         bitmap_copy(pserviceDest->copymap,
2130                                     pserviceSource->copymap);
2131         }
2132
2133         data = pserviceSource->param_opt;
2134         while (data) {
2135                 not_added = true;
2136                 pdata = pserviceDest->param_opt;
2137                 /* Traverse destination */
2138                 while (pdata) {
2139                         /* If we already have same option, override it */
2140                         if (strcmp(pdata->key, data->key) == 0) {
2141                                 talloc_free(pdata->value);
2142                                 pdata->value = talloc_reference(pdata,
2143                                                              data->value);
2144                                 not_added = false;
2145                                 break;
2146                         }
2147                         pdata = pdata->next;
2148                 }
2149                 if (not_added) {
2150                         paramo = talloc_zero(pserviceDest, struct parmlist_entry);
2151                         if (paramo == NULL)
2152                                 smb_panic("OOM");
2153                         paramo->key = talloc_reference(paramo, data->key);
2154                         paramo->value = talloc_reference(paramo, data->value);
2155                         DLIST_ADD(pserviceDest->param_opt, paramo);
2156                 }
2157                 data = data->next;
2158         }
2159 }
2160
2161 /**
2162  * Check a service for consistency. Return False if the service is in any way
2163  * incomplete or faulty, else True.
2164  */
2165 static bool service_ok(struct loadparm_service *service)
2166 {
2167         bool bRetval;
2168
2169         bRetval = true;
2170         if (service->szService[0] == '\0') {
2171                 DEBUG(0, ("The following message indicates an internal error:\n"));
2172                 DEBUG(0, ("No service name in service entry.\n"));
2173                 bRetval = false;
2174         }
2175
2176         /* The [printers] entry MUST be printable. I'm all for flexibility, but */
2177         /* I can't see why you'd want a non-printable printer service...        */
2178         if (strwicmp(service->szService, PRINTERS_NAME) == 0) {
2179                 if (!service->bPrint_ok) {
2180                         DEBUG(0, ("WARNING: [%s] service MUST be printable!\n",
2181                                service->szService));
2182                         service->bPrint_ok = true;
2183                 }
2184                 /* [printers] service must also be non-browsable. */
2185                 if (service->bBrowseable)
2186                         service->bBrowseable = false;
2187         }
2188
2189         /* If a service is flagged unavailable, log the fact at level 0. */
2190         if (!service->bAvailable)
2191                 DEBUG(1, ("NOTE: Service %s is flagged unavailable.\n",
2192                           service->szService));
2193
2194         return bRetval;
2195 }
2196
2197
2198 /*******************************************************************
2199  Keep a linked list of all config files so we know when one has changed
2200  it's date and needs to be reloaded.
2201 ********************************************************************/
2202
2203 static void add_to_file_list(struct loadparm_context *lp_ctx,
2204                              const char *fname, const char *subfname)
2205 {
2206         struct file_lists *f = lp_ctx->file_lists;
2207
2208         while (f) {
2209                 if (f->name && !strcmp(f->name, fname))
2210                         break;
2211                 f = f->next;
2212         }
2213
2214         if (!f) {
2215                 f = talloc(lp_ctx, struct file_lists);
2216                 if (!f)
2217                         return;
2218                 f->next = lp_ctx->file_lists;
2219                 f->name = talloc_strdup(f, fname);
2220                 if (!f->name) {
2221                         talloc_free(f);
2222                         return;
2223                 }
2224                 f->subfname = talloc_strdup(f, subfname);
2225                 if (!f->subfname) {
2226                         talloc_free(f);
2227                         return;
2228                 }
2229                 lp_ctx->file_lists = f;
2230                 f->modtime = file_modtime(subfname);
2231         } else {
2232                 time_t t = file_modtime(subfname);
2233                 if (t)
2234                         f->modtime = t;
2235         }
2236 }
2237
2238 /*******************************************************************
2239  Check if a config file has changed date.
2240 ********************************************************************/
2241 bool lpcfg_file_list_changed(struct loadparm_context *lp_ctx)
2242 {
2243         struct file_lists *f;
2244         DEBUG(6, ("lp_file_list_changed()\n"));
2245
2246         for (f = lp_ctx->file_lists; f != NULL; f = f->next) {
2247                 char *n2;
2248                 time_t mod_time;
2249
2250                 n2 = standard_sub_basic(lp_ctx, f->name);
2251
2252                 DEBUGADD(6, ("file %s -> %s  last mod_time: %s\n",
2253                              f->name, n2, ctime(&f->modtime)));
2254
2255                 mod_time = file_modtime(n2);
2256
2257                 if (mod_time && ((f->modtime != mod_time) || (f->subfname == NULL) || (strcmp(n2, f->subfname) != 0))) {
2258                         DEBUGADD(6, ("file %s modified: %s\n", n2,
2259                                   ctime(&mod_time)));
2260                         f->modtime = mod_time;
2261                         talloc_free(f->subfname);
2262                         f->subfname = talloc_strdup(f, n2);
2263                         return true;
2264                 }
2265         }
2266         return false;
2267 }
2268
2269 /***************************************************************************
2270  Handle the "realm" parameter
2271 ***************************************************************************/
2272
2273 static bool handle_realm(struct loadparm_context *lp_ctx, int unused,
2274                          const char *pszParmValue, char **ptr)
2275 {
2276         string_set(lp_ctx, ptr, pszParmValue);
2277
2278         talloc_free(lp_ctx->globals->szRealm_upper);
2279         talloc_free(lp_ctx->globals->szRealm_lower);
2280
2281         lp_ctx->globals->szRealm_upper = strupper_talloc(lp_ctx, pszParmValue);
2282         lp_ctx->globals->szRealm_lower = strlower_talloc(lp_ctx, pszParmValue);
2283
2284         return true;
2285 }
2286
2287 /***************************************************************************
2288  Handle the include operation.
2289 ***************************************************************************/
2290
2291 static bool handle_include(struct loadparm_context *lp_ctx, int unused,
2292                            const char *pszParmValue, char **ptr)
2293 {
2294         char *fname = standard_sub_basic(lp_ctx, pszParmValue);
2295
2296         add_to_file_list(lp_ctx, pszParmValue, fname);
2297
2298         string_set(lp_ctx, ptr, fname);
2299
2300         if (file_exist(fname))
2301                 return pm_process(fname, do_section, do_parameter, lp_ctx);
2302
2303         DEBUG(2, ("Can't find include file %s\n", fname));
2304
2305         return false;
2306 }
2307
2308 /***************************************************************************
2309  Handle the interpretation of the copy parameter.
2310 ***************************************************************************/
2311
2312 static bool handle_copy(struct loadparm_context *lp_ctx, int unused,
2313                         const char *pszParmValue, char **ptr)
2314 {
2315         bool bRetval;
2316         struct loadparm_service *serviceTemp;
2317
2318         string_set(lp_ctx, ptr, pszParmValue);
2319
2320         bRetval = false;
2321
2322         DEBUG(3, ("Copying service from service %s\n", pszParmValue));
2323
2324         if ((serviceTemp = getservicebyname(lp_ctx, pszParmValue)) != NULL) {
2325                 if (serviceTemp == lp_ctx->currentService) {
2326                         DEBUG(0, ("Can't copy service %s - unable to copy self!\n", pszParmValue));
2327                 } else {
2328                         copy_service(lp_ctx->currentService,
2329                                      serviceTemp,
2330                                      lp_ctx->currentService->copymap);
2331                         bRetval = true;
2332                 }
2333         } else {
2334                 DEBUG(0, ("Unable to copy service - source not found: %s\n",
2335                           pszParmValue));
2336                 bRetval = false;
2337         }
2338
2339         return bRetval;
2340 }
2341
2342 static bool handle_debuglevel(struct loadparm_context *lp_ctx, int unused,
2343                         const char *pszParmValue, char **ptr)
2344 {
2345
2346         string_set(lp_ctx, ptr, pszParmValue);
2347         if (lp_ctx->global) {
2348                 return debug_parse_levels(pszParmValue);
2349         }
2350         return true;
2351 }
2352
2353 static bool handle_logfile(struct loadparm_context *lp_ctx, int unused,
2354                         const char *pszParmValue, char **ptr)
2355 {
2356         debug_set_logfile(pszParmValue);
2357         if (lp_ctx->global) {
2358                 string_set(lp_ctx, ptr, pszParmValue);
2359         }
2360         return true;
2361 }
2362
2363 /***************************************************************************
2364  Initialise a copymap.
2365 ***************************************************************************/
2366
2367 static void init_copymap(struct loadparm_service *pservice)
2368 {
2369         int i;
2370
2371         TALLOC_FREE(pservice->copymap);
2372
2373         pservice->copymap = bitmap_talloc(NULL, NUMPARAMETERS);
2374         if (!pservice->copymap)
2375                 DEBUG(0,
2376                       ("Couldn't allocate copymap!! (size %d)\n",
2377                        (int)NUMPARAMETERS));
2378         else
2379                 for (i = 0; i < NUMPARAMETERS; i++)
2380                         bitmap_set(pservice->copymap, i);
2381 }
2382
2383 /**
2384  * Process a parametric option
2385  */
2386 static bool lp_do_parameter_parametric(struct loadparm_context *lp_ctx,
2387                                        struct loadparm_service *service,
2388                                        const char *pszParmName,
2389                                        const char *pszParmValue, int flags)
2390 {
2391         struct parmlist_entry *paramo, *data;
2392         char *name;
2393         TALLOC_CTX *mem_ctx;
2394
2395         while (isspace((unsigned char)*pszParmName)) {
2396                 pszParmName++;
2397         }
2398
2399         name = strlower_talloc(lp_ctx, pszParmName);
2400         if (!name) return false;
2401
2402         if (service == NULL) {
2403                 data = lp_ctx->globals->param_opt;
2404                 mem_ctx = lp_ctx->globals;
2405         } else {
2406                 data = service->param_opt;
2407                 mem_ctx = service;
2408         }
2409
2410         /* Traverse destination */
2411         for (paramo=data; paramo; paramo=paramo->next) {
2412                 /* If we already have the option set, override it unless
2413                    it was a command line option and the new one isn't */
2414                 if (strcmp(paramo->key, name) == 0) {
2415                         if ((paramo->priority & FLAG_CMDLINE) &&
2416                             !(flags & FLAG_CMDLINE)) {
2417                                 talloc_free(name);
2418                                 return true;
2419                         }
2420
2421                         talloc_free(paramo->value);
2422                         paramo->value = talloc_strdup(paramo, pszParmValue);
2423                         paramo->priority = flags;
2424                         talloc_free(name);
2425                         return true;
2426                 }
2427         }
2428
2429         paramo = talloc_zero(mem_ctx, struct parmlist_entry);
2430         if (!paramo)
2431                 smb_panic("OOM");
2432         paramo->key = talloc_strdup(paramo, name);
2433         paramo->value = talloc_strdup(paramo, pszParmValue);
2434         paramo->priority = flags;
2435         if (service == NULL) {
2436                 DLIST_ADD(lp_ctx->globals->param_opt, paramo);
2437         } else {
2438                 DLIST_ADD(service->param_opt, paramo);
2439         }
2440
2441         talloc_free(name);
2442
2443         return true;
2444 }
2445
2446 static bool set_variable(TALLOC_CTX *mem_ctx, int parmnum, void *parm_ptr,
2447                          const char *pszParmName, const char *pszParmValue,
2448                          struct loadparm_context *lp_ctx, bool on_globals)
2449 {
2450         int i;
2451         /* if it is a special case then go ahead */
2452         if (parm_table[parmnum].special) {
2453                 bool ret;
2454                 ret = parm_table[parmnum].special(lp_ctx, -1, pszParmValue,
2455                                                   (char **)parm_ptr);
2456                 if (!ret) {
2457                         return false;
2458                 }
2459                 goto mark_non_default;
2460         }
2461
2462         /* now switch on the type of variable it is */
2463         switch (parm_table[parmnum].type)
2464         {
2465                 case P_BOOL: {
2466                         bool b;
2467                         if (!set_boolean(pszParmValue, &b)) {
2468                                 DEBUG(0,("lp_do_parameter(%s): value is not boolean!\n", pszParmValue));
2469                                 return false;
2470                         }
2471                         *(int *)parm_ptr = b;
2472                         }
2473                         break;
2474
2475                 case P_BOOLREV: {
2476                         bool b;
2477                         if (!set_boolean(pszParmValue, &b)) {
2478                                 DEBUG(0,("lp_do_parameter(%s): value is not boolean!\n", pszParmValue));
2479                                 return false;
2480                         }
2481                         *(int *)parm_ptr = !b;
2482                         }
2483                         break;
2484
2485                 case P_INTEGER:
2486                         *(int *)parm_ptr = atoi(pszParmValue);
2487                         break;
2488
2489                 case P_OCTAL:
2490                         *(int *)parm_ptr = strtol(pszParmValue, NULL, 8);
2491                         break;
2492
2493                 case P_BYTES:
2494                 {
2495                         uint64_t val;
2496                         if (conv_str_size_error(pszParmValue, &val)) {
2497                                 if (val <= INT_MAX) {
2498                                         *(int *)parm_ptr = (int)val;
2499                                         break;
2500                                 }
2501                         }
2502
2503                         DEBUG(0,("lp_do_parameter(%s): value is not "
2504                             "a valid size specifier!\n", pszParmValue));
2505                         return false;
2506                 }
2507
2508                 case P_CMDLIST:
2509                         *(const char ***)parm_ptr = (const char **)str_list_make(mem_ctx,
2510                                                                   pszParmValue, NULL);
2511                         break;
2512                 case P_LIST:
2513                 {
2514                         char **new_list = str_list_make(mem_ctx,
2515                                                         pszParmValue, NULL);
2516                         for (i=0; new_list[i]; i++) {
2517                                 if (new_list[i][0] == '+' && new_list[i][1] &&
2518                                     (!str_list_check(*(const char ***)parm_ptr,
2519                                                      &new_list[i][1]))) {
2520                                         *(const char ***)parm_ptr = str_list_add(*(const char ***)parm_ptr,
2521                                                                                  &new_list[i][1]);
2522                                 } else if (new_list[i][0] == '-' && new_list[i][1]) {
2523 #if 0 /* This is commented out because we sometimes parse the list
2524        * twice, and so we can't assert on this */
2525                                         if (!str_list_check(*(const char ***)parm_ptr,
2526                                                             &new_list[i][1])) {
2527                                                 DEBUG(0, ("Unsupported value for: %s = %s, %s is not in the original list [%s]\n",
2528                                                           pszParmName, pszParmValue, new_list[i],
2529                                                           str_list_join_shell(mem_ctx, *(const char ***)parm_ptr, ' ')));
2530                                                 return false;
2531
2532                                         }
2533 #endif
2534                                         str_list_remove(*(const char ***)parm_ptr,
2535                                                         &new_list[i][1]);
2536                                 } else {
2537                                         if (i != 0) {
2538                                                 DEBUG(0, ("Unsupported list syntax for: %s = %s\n",
2539                                                           pszParmName, pszParmValue));
2540                                                 return false;
2541                                         }
2542                                         *(const char ***)parm_ptr = (const char **) new_list;
2543                                         break;
2544                                 }
2545                         }
2546                         break;
2547                 }
2548                 case P_STRING:
2549                         string_set(mem_ctx, (char **)parm_ptr, pszParmValue);
2550                         break;
2551
2552                 case P_USTRING:
2553                         string_set_upper(mem_ctx, (char **)parm_ptr, pszParmValue);
2554                         break;
2555
2556                 case P_ENUM:
2557                         for (i = 0; parm_table[parmnum].enum_list[i].name; i++) {
2558                                 if (strequal
2559                                     (pszParmValue,
2560                                      parm_table[parmnum].enum_list[i].name)) {
2561                                         *(int *)parm_ptr =
2562                                                 parm_table[parmnum].
2563                                                 enum_list[i].value;
2564                                         break;
2565                                 }
2566                         }
2567                         if (!parm_table[parmnum].enum_list[i].name) {
2568                                 DEBUG(0,("Unknown enumerated value '%s' for '%s'\n", 
2569                                          pszParmValue, pszParmName));
2570                                 return false;
2571                         }
2572                         break;
2573         }
2574
2575 mark_non_default:
2576         if (on_globals && (lp_ctx->flags[parmnum] & FLAG_DEFAULT)) {
2577                 lp_ctx->flags[parmnum] &= ~FLAG_DEFAULT;
2578                 /* we have to also unset FLAG_DEFAULT on aliases */
2579                 for (i=parmnum-1;i>=0 && parm_table[i].offset == parm_table[parmnum].offset;i--) {
2580                         lp_ctx->flags[i] &= ~FLAG_DEFAULT;
2581                 }
2582                 for (i=parmnum+1;i<NUMPARAMETERS && parm_table[i].offset == parm_table[parmnum].offset;i++) {
2583                         lp_ctx->flags[i] &= ~FLAG_DEFAULT;
2584                 }
2585         }
2586         return true;
2587 }
2588
2589
2590 bool lpcfg_do_global_parameter(struct loadparm_context *lp_ctx,
2591                                const char *pszParmName, const char *pszParmValue)
2592 {
2593         int parmnum = map_parameter(pszParmName);
2594         void *parm_ptr;
2595
2596         if (parmnum < 0) {
2597                 if (strchr(pszParmName, ':')) {
2598                         return lp_do_parameter_parametric(lp_ctx, NULL, pszParmName, pszParmValue, 0);
2599                 }
2600                 DEBUG(0, ("Ignoring unknown parameter \"%s\"\n", pszParmName));
2601                 return true;
2602         }
2603
2604         /* if the flag has been set on the command line, then don't allow override,
2605            but don't report an error */
2606         if (lp_ctx->flags[parmnum] & FLAG_CMDLINE) {
2607                 return true;
2608         }
2609
2610         parm_ptr = lpcfg_parm_ptr(lp_ctx, NULL, &parm_table[parmnum]);
2611
2612         return set_variable(lp_ctx->globals, parmnum, parm_ptr,
2613                             pszParmName, pszParmValue, lp_ctx, true);
2614 }
2615
2616 bool lpcfg_do_service_parameter(struct loadparm_context *lp_ctx,
2617                                 struct loadparm_service *service,
2618                                 const char *pszParmName, const char *pszParmValue)
2619 {
2620         void *parm_ptr;
2621         int i;
2622         int parmnum = map_parameter(pszParmName);
2623
2624         if (parmnum < 0) {
2625                 if (strchr(pszParmName, ':')) {
2626                         return lp_do_parameter_parametric(lp_ctx, service, pszParmName, pszParmValue, 0);
2627                 }
2628                 DEBUG(0, ("Ignoring unknown parameter \"%s\"\n", pszParmName));
2629                 return true;
2630         }
2631
2632         /* if the flag has been set on the command line, then don't allow override,
2633            but don't report an error */
2634         if (lp_ctx->flags[parmnum] & FLAG_CMDLINE) {
2635                 return true;
2636         }
2637
2638         if (parm_table[parmnum].p_class == P_GLOBAL) {
2639                 DEBUG(0,
2640                       ("Global parameter %s found in service section!\n",
2641                        pszParmName));
2642                 return true;
2643         }
2644         parm_ptr = ((char *)service) + parm_table[parmnum].offset;
2645
2646         if (!service->copymap)
2647                 init_copymap(service);
2648
2649         /* this handles the aliases - set the copymap for other
2650          * entries with the same data pointer */
2651         for (i = 0; parm_table[i].label; i++)
2652                 if (parm_table[i].offset == parm_table[parmnum].offset &&
2653                     parm_table[i].p_class == parm_table[parmnum].p_class)
2654                         bitmap_clear(service->copymap, i);
2655
2656         return set_variable(service, parmnum, parm_ptr, pszParmName,
2657                             pszParmValue, lp_ctx, false);
2658 }
2659
2660 /**
2661  * Process a parameter.
2662  */
2663
2664 static bool do_parameter(const char *pszParmName, const char *pszParmValue,
2665                          void *userdata)
2666 {
2667         struct loadparm_context *lp_ctx = (struct loadparm_context *)userdata;
2668
2669         if (lp_ctx->bInGlobalSection)
2670                 return lpcfg_do_global_parameter(lp_ctx, pszParmName,
2671                                               pszParmValue);
2672         else
2673                 return lpcfg_do_service_parameter(lp_ctx, lp_ctx->currentService,
2674                                                   pszParmName, pszParmValue);
2675 }
2676
2677 /*
2678   variable argument do parameter
2679 */
2680 bool lpcfg_do_global_parameter_var(struct loadparm_context *lp_ctx, const char *pszParmName, const char *fmt, ...) PRINTF_ATTRIBUTE(3, 4);
2681 bool lpcfg_do_global_parameter_var(struct loadparm_context *lp_ctx,
2682                                 const char *pszParmName, const char *fmt, ...)
2683 {
2684         char *s;
2685         bool ret;
2686         va_list ap;
2687
2688         va_start(ap, fmt);
2689         s = talloc_vasprintf(NULL, fmt, ap);
2690         va_end(ap);
2691         ret = lpcfg_do_global_parameter(lp_ctx, pszParmName, s);
2692         talloc_free(s);
2693         return ret;
2694 }
2695
2696
2697 /*
2698   set a parameter from the commandline - this is called from command line parameter
2699   parsing code. It sets the parameter then marks the parameter as unable to be modified
2700   by smb.conf processing
2701 */
2702 bool lpcfg_set_cmdline(struct loadparm_context *lp_ctx, const char *pszParmName,
2703                        const char *pszParmValue)
2704 {
2705         int parmnum = map_parameter(pszParmName);
2706         int i;
2707
2708         while (isspace((unsigned char)*pszParmValue)) pszParmValue++;
2709
2710
2711         if (parmnum < 0 && strchr(pszParmName, ':')) {
2712                 /* set a parametric option */
2713                 return lp_do_parameter_parametric(lp_ctx, NULL, pszParmName,
2714                                                   pszParmValue, FLAG_CMDLINE);
2715         }
2716
2717         if (parmnum < 0) {
2718                 DEBUG(0,("Unknown option '%s'\n", pszParmName));
2719                 return false;
2720         }
2721
2722         /* reset the CMDLINE flag in case this has been called before */
2723         lp_ctx->flags[parmnum] &= ~FLAG_CMDLINE;
2724
2725         if (!lpcfg_do_global_parameter(lp_ctx, pszParmName, pszParmValue)) {
2726                 return false;
2727         }
2728
2729         lp_ctx->flags[parmnum] |= FLAG_CMDLINE;
2730
2731         /* we have to also set FLAG_CMDLINE on aliases */
2732         for (i=parmnum-1;i>=0 && parm_table[i].offset == parm_table[parmnum].offset;i--) {
2733                 lp_ctx->flags[i] |= FLAG_CMDLINE;
2734         }
2735         for (i=parmnum+1;i<NUMPARAMETERS && parm_table[i].offset == parm_table[parmnum].offset;i++) {
2736                 lp_ctx->flags[i] |= FLAG_CMDLINE;
2737         }
2738
2739         return true;
2740 }
2741
2742 /*
2743   set a option from the commandline in 'a=b' format. Use to support --option
2744 */
2745 bool lpcfg_set_option(struct loadparm_context *lp_ctx, const char *option)
2746 {
2747         char *p, *s;
2748         bool ret;
2749
2750         s = strdup(option);
2751         if (!s) {
2752                 return false;
2753         }
2754
2755         p = strchr(s, '=');
2756         if (!p) {
2757                 free(s);
2758                 return false;
2759         }
2760
2761         *p = 0;
2762
2763         ret = lpcfg_set_cmdline(lp_ctx, s, p+1);
2764         free(s);
2765         return ret;
2766 }
2767
2768
2769 #define BOOLSTR(b) ((b) ? "Yes" : "No")
2770
2771 /**
2772  * Print a parameter of the specified type.
2773  */
2774
2775 static void print_parameter(struct parm_struct *p, void *ptr, FILE * f)
2776 {
2777         int i;
2778         const char *list_sep = ", "; /* For the seperation of lists values that we print below */
2779         switch (p->type)
2780         {
2781                 case P_ENUM:
2782                         for (i = 0; p->enum_list[i].name; i++) {
2783                                 if (*(int *)ptr == p->enum_list[i].value) {
2784                                         fprintf(f, "%s",
2785                                                 p->enum_list[i].name);
2786                                         break;
2787                                 }
2788                         }
2789                         break;
2790
2791                 case P_BOOL:
2792                         fprintf(f, "%s", BOOLSTR((bool)*(int *)ptr));
2793                         break;
2794
2795                 case P_BOOLREV:
2796                         fprintf(f, "%s", BOOLSTR(!(bool)*(int *)ptr));
2797                         break;
2798
2799                 case P_INTEGER:
2800                 case P_BYTES:
2801                         fprintf(f, "%d", *(int *)ptr);
2802                         break;
2803
2804                 case P_OCTAL:
2805                         fprintf(f, "0%o", *(int *)ptr);
2806                         break;
2807
2808                 case P_CMDLIST:
2809                         list_sep = " ";
2810                         /* fall through */
2811                 case P_LIST:
2812                         if ((char ***)ptr && *(char ***)ptr) {
2813                                 char **list = *(char ***)ptr;
2814
2815                                 for (; *list; list++) {
2816                                         if (*(list+1) == NULL) {
2817                                                 /* last item, print no extra seperator after */
2818                                                 list_sep = "";
2819                                         }
2820                                         fprintf(f, "%s%s", *list, list_sep);
2821                                 }
2822                         }
2823                         break;
2824
2825                 case P_STRING:
2826                 case P_USTRING:
2827                         if (*(char **)ptr) {
2828                                 fprintf(f, "%s", *(char **)ptr);
2829                         }
2830                         break;
2831         }
2832 }
2833
2834 /**
2835  * Check if two parameters are equal.
2836  */
2837
2838 static bool equal_parameter(parm_type type, void *ptr1, void *ptr2)
2839 {
2840         switch (type) {
2841                 case P_BOOL:
2842                 case P_BOOLREV:
2843                         return (*((int *)ptr1) == *((int *)ptr2));
2844
2845                 case P_INTEGER:
2846                 case P_OCTAL:
2847                 case P_BYTES:
2848                 case P_ENUM:
2849                         return (*((int *)ptr1) == *((int *)ptr2));
2850
2851                 case P_CMDLIST:
2852                 case P_LIST:
2853                         return str_list_equal((const char **)(*(char ***)ptr1),
2854                                               (const char **)(*(char ***)ptr2));
2855
2856                 case P_STRING:
2857                 case P_USTRING:
2858                 {
2859                         char *p1 = *(char **)ptr1, *p2 = *(char **)ptr2;
2860                         if (p1 && !*p1)
2861                                 p1 = NULL;
2862                         if (p2 && !*p2)
2863                                 p2 = NULL;
2864                         return (p1 == p2 || strequal(p1, p2));
2865                 }
2866         }
2867         return false;
2868 }
2869
2870 /**
2871  * Process a new section (service).
2872  *
2873  * At this stage all sections are services.
2874  * Later we'll have special sections that permit server parameters to be set.
2875  * Returns True on success, False on failure.
2876  */
2877
2878 static bool do_section(const char *pszSectionName, void *userdata)
2879 {
2880         struct loadparm_context *lp_ctx = (struct loadparm_context *)userdata;
2881         bool bRetval;
2882         bool isglobal = ((strwicmp(pszSectionName, GLOBAL_NAME) == 0) ||
2883                          (strwicmp(pszSectionName, GLOBAL_NAME2) == 0));
2884         bRetval = false;
2885
2886         /* if we've just struck a global section, note the fact. */
2887         lp_ctx->bInGlobalSection = isglobal;
2888
2889         /* check for multiple global sections */
2890         if (lp_ctx->bInGlobalSection) {
2891                 DEBUG(4, ("Processing section \"[%s]\"\n", pszSectionName));
2892                 return true;
2893         }
2894
2895         /* if we have a current service, tidy it up before moving on */
2896         bRetval = true;
2897
2898         if (lp_ctx->currentService != NULL)
2899                 bRetval = service_ok(lp_ctx->currentService);
2900
2901         /* if all is still well, move to the next record in the services array */
2902         if (bRetval) {
2903                 /* We put this here to avoid an odd message order if messages are */
2904                 /* issued by the post-processing of a previous section. */
2905                 DEBUG(4, ("Processing section \"[%s]\"\n", pszSectionName));
2906
2907                 if ((lp_ctx->currentService = lpcfg_add_service(lp_ctx, lp_ctx->sDefault,
2908                                                                    pszSectionName))
2909                     == NULL) {
2910                         DEBUG(0, ("Failed to add a new service\n"));
2911                         return false;
2912                 }
2913         }
2914
2915         return bRetval;
2916 }
2917
2918
2919 /**
2920  * Determine if a particular base parameter is currently set to the default value.
2921  */
2922
2923 static bool is_default(struct loadparm_service *sDefault, int i)
2924 {
2925         void *def_ptr = ((char *)sDefault) + parm_table[i].offset;
2926         if (!defaults_saved)
2927                 return false;
2928         switch (parm_table[i].type) {
2929                 case P_CMDLIST:
2930                 case P_LIST:
2931                         return str_list_equal((const char **)parm_table[i].def.lvalue, 
2932                                               (const char **)def_ptr);
2933                 case P_STRING:
2934                 case P_USTRING:
2935                         return strequal(parm_table[i].def.svalue,
2936                                         *(char **)def_ptr);
2937                 case P_BOOL:
2938                 case P_BOOLREV:
2939                         return parm_table[i].def.bvalue ==
2940                                 *(int *)def_ptr;
2941                 case P_INTEGER:
2942                 case P_OCTAL:
2943                 case P_BYTES:
2944                 case P_ENUM:
2945                         return parm_table[i].def.ivalue ==
2946                                 *(int *)def_ptr;
2947         }
2948         return false;
2949 }
2950
2951 /**
2952  *Display the contents of the global structure.
2953  */
2954
2955 static void dump_globals(struct loadparm_context *lp_ctx, FILE *f,
2956                          bool show_defaults)
2957 {
2958         int i;
2959         struct parmlist_entry *data;
2960
2961         fprintf(f, "# Global parameters\n[global]\n");
2962
2963         for (i = 0; parm_table[i].label; i++)
2964                 if (parm_table[i].p_class == P_GLOBAL &&
2965                     (i == 0 || (parm_table[i].offset != parm_table[i - 1].offset))) {
2966                         if (!show_defaults && (lp_ctx->flags[i] & FLAG_DEFAULT))
2967                                 continue;
2968                         fprintf(f, "\t%s = ", parm_table[i].label);
2969                         print_parameter(&parm_table[i], lpcfg_parm_ptr(lp_ctx, NULL, &parm_table[i]), f);
2970                         fprintf(f, "\n");
2971         }
2972         if (lp_ctx->globals->param_opt != NULL) {
2973                 for (data = lp_ctx->globals->param_opt; data;
2974                      data = data->next) {
2975                         if (!show_defaults && (data->priority & FLAG_DEFAULT)) {
2976                                 continue;
2977                         }
2978                         fprintf(f, "\t%s = %s\n", data->key, data->value);
2979                 }
2980         }
2981
2982 }
2983
2984 /**
2985  * Display the contents of a single services record.
2986  */
2987
2988 static void dump_a_service(struct loadparm_service * pService, struct loadparm_service *sDefault, FILE * f,
2989                            unsigned int *flags)
2990 {
2991         int i;
2992         struct parmlist_entry *data;
2993
2994         if (pService != sDefault)
2995                 fprintf(f, "\n[%s]\n", pService->szService);
2996
2997         for (i = 0; parm_table[i].label; i++) {
2998                 if (parm_table[i].p_class == P_LOCAL &&
2999                     (*parm_table[i].label != '-') &&
3000                     (i == 0 || (parm_table[i].offset != parm_table[i - 1].offset)))
3001                 {
3002                         if (pService == sDefault) {
3003                                 if (flags && (flags[i] & FLAG_DEFAULT)) {
3004                                         continue;
3005                                 }
3006                                 if (defaults_saved) {
3007                                         if (is_default(sDefault, i)) {
3008                                                 continue;
3009                                         }
3010                                 }
3011                         } else {
3012                                 if (equal_parameter(parm_table[i].type,
3013                                                     ((char *)pService) +
3014                                                     parm_table[i].offset,
3015                                                     ((char *)sDefault) +
3016                                                     parm_table[i].offset))
3017                                         continue;
3018                         }
3019
3020                         fprintf(f, "\t%s = ", parm_table[i].label);
3021                         print_parameter(&parm_table[i],
3022                                         ((char *)pService) + parm_table[i].offset, f);
3023                         fprintf(f, "\n");
3024                 }
3025         }
3026         if (pService->param_opt != NULL) {
3027                 for (data = pService->param_opt; data; data = data->next) {
3028                         fprintf(f, "\t%s = %s\n", data->key, data->value);
3029                 }
3030         }
3031 }
3032
3033 bool lpcfg_dump_a_parameter(struct loadparm_context *lp_ctx,
3034                             struct loadparm_service *service,
3035                             const char *parm_name, FILE * f)
3036 {
3037         struct parm_struct *parm;
3038         void *ptr;
3039
3040         parm = lpcfg_parm_struct(lp_ctx, parm_name);
3041         if (!parm) {
3042                 return false;
3043         }
3044
3045         ptr = lpcfg_parm_ptr(lp_ctx, service,parm);
3046
3047         print_parameter(parm, ptr, f);
3048         fprintf(f, "\n");
3049         return true;
3050 }
3051
3052 /**
3053  * Return info about the next parameter in a service.
3054  * snum==-1 gives the globals.
3055  * Return NULL when out of parameters.
3056  */
3057
3058
3059 struct parm_struct *lpcfg_next_parameter(struct loadparm_context *lp_ctx, int snum, int *i,
3060                                          int allparameters)
3061 {
3062         if (snum == -1) {
3063                 /* do the globals */
3064                 for (; parm_table[*i].label; (*i)++) {
3065                         if ((*parm_table[*i].label == '-'))
3066                                 continue;
3067
3068                         if ((*i) > 0
3069                             && (parm_table[*i].offset ==
3070                                 parm_table[(*i) - 1].offset)
3071                             && (parm_table[*i].p_class ==
3072                                 parm_table[(*i) - 1].p_class))
3073                                 continue;
3074
3075                         return &parm_table[(*i)++];
3076                 }
3077         } else {
3078                 struct loadparm_service *pService = lp_ctx->services[snum];
3079
3080                 for (; parm_table[*i].label; (*i)++) {
3081                         if (parm_table[*i].p_class == P_LOCAL &&
3082                             (*parm_table[*i].label != '-') &&
3083                             ((*i) == 0 ||
3084                              (parm_table[*i].offset !=
3085                               parm_table[(*i) - 1].offset)))
3086                         {
3087                                 if (allparameters ||
3088                                     !equal_parameter(parm_table[*i].type,
3089                                                      ((char *)pService) +
3090                                                      parm_table[*i].offset,
3091                                                      ((char *)lp_ctx->sDefault) +
3092                                                      parm_table[*i].offset))
3093                                 {
3094                                         return &parm_table[(*i)++];
3095                                 }
3096                         }
3097                 }
3098         }
3099
3100         return NULL;
3101 }
3102
3103
3104 /**
3105  * Auto-load some home services.
3106  */
3107 static void lpcfg_add_auto_services(struct loadparm_context *lp_ctx,
3108                                     const char *str)
3109 {
3110         return;
3111 }
3112
3113
3114 /**
3115  * Unload unused services.
3116  */
3117
3118 void lpcfg_killunused(struct loadparm_context *lp_ctx,
3119                    struct smbsrv_connection *smb,
3120                    bool (*snumused) (struct smbsrv_connection *, int))
3121 {
3122         int i;
3123         for (i = 0; i < lp_ctx->iNumServices; i++) {
3124                 if (lp_ctx->services[i] == NULL)
3125                         continue;
3126
3127                 if (!snumused || !snumused(smb, i)) {
3128                         talloc_free(lp_ctx->services[i]);
3129                         lp_ctx->services[i] = NULL;
3130                 }
3131         }
3132 }
3133
3134
3135 static int lpcfg_destructor(struct loadparm_context *lp_ctx)
3136 {
3137         struct parmlist_entry *data;
3138
3139         if (lp_ctx->refuse_free) {
3140                 /* someone is trying to free the
3141                    global_loadparm_context.
3142                    We can't allow that. */
3143                 return -1;
3144         }
3145
3146         if (lp_ctx->globals->param_opt != NULL) {
3147                 struct parmlist_entry *next;
3148                 for (data = lp_ctx->globals->param_opt; data; data=next) {
3149                         next = data->next;
3150                         if (data->priority & FLAG_CMDLINE) continue;
3151                         DLIST_REMOVE(lp_ctx->globals->param_opt, data);
3152                         talloc_free(data);
3153                 }
3154         }
3155
3156         return 0;
3157 }
3158
3159 /**
3160  * Initialise the global parameter structure.
3161  *
3162  * Note that most callers should use loadparm_init_global() instead
3163  */
3164 struct loadparm_context *loadparm_init(TALLOC_CTX *mem_ctx)
3165 {
3166         int i;
3167         char *myname;
3168         struct loadparm_context *lp_ctx;
3169         struct parmlist_entry *parm;
3170         char *logfile;
3171
3172         lp_ctx = talloc_zero(mem_ctx, struct loadparm_context);
3173         if (lp_ctx == NULL)
3174                 return NULL;
3175
3176         talloc_set_destructor(lp_ctx, lpcfg_destructor);
3177         lp_ctx->bInGlobalSection = true;
3178         lp_ctx->globals = talloc_zero(lp_ctx, struct loadparm_global);
3179         lp_ctx->sDefault = talloc_zero(lp_ctx, struct loadparm_service);
3180
3181         lp_ctx->sDefault->iMaxPrintJobs = 1000;
3182         lp_ctx->sDefault->bAvailable = true;
3183         lp_ctx->sDefault->bBrowseable = true;
3184         lp_ctx->sDefault->bRead_only = true;
3185         lp_ctx->sDefault->bMap_archive = true;
3186         lp_ctx->sDefault->iStrictLocking = true;
3187         lp_ctx->sDefault->bOpLocks = true;
3188         lp_ctx->sDefault->iCreate_mask = 0744;
3189         lp_ctx->sDefault->iCreate_force_mode = 0000;
3190         lp_ctx->sDefault->iDir_mask = 0755;
3191         lp_ctx->sDefault->iDir_force_mode = 0000;
3192
3193         DEBUG(3, ("Initialising global parameters\n"));
3194
3195         for (i = 0; parm_table[i].label; i++) {
3196                 if ((parm_table[i].type == P_STRING ||
3197                      parm_table[i].type == P_USTRING) &&
3198                     !(lp_ctx->flags[i] & FLAG_CMDLINE)) {
3199                         char **r;
3200                         if (parm_table[i].p_class == P_LOCAL) {
3201                                 r = (char **)(((char *)lp_ctx->sDefault) + parm_table[i].offset);
3202                         } else {
3203                                 r = (char **)(((char *)lp_ctx->globals) + parm_table[i].offset);
3204                         }
3205                         *r = talloc_strdup(lp_ctx, "");
3206                 }
3207         }
3208
3209         logfile = talloc_asprintf(lp_ctx, "%s/log.samba", dyn_LOGFILEBASE);
3210         lpcfg_do_global_parameter(lp_ctx, "log file", logfile);
3211         talloc_free(logfile);
3212
3213         lpcfg_do_global_parameter(lp_ctx, "log level", "0");
3214
3215         lpcfg_do_global_parameter(lp_ctx, "share backend", "classic");
3216
3217         lpcfg_do_global_parameter(lp_ctx, "share backend", "classic");
3218
3219         lpcfg_do_global_parameter(lp_ctx, "server role", "standalone");
3220
3221         /* options that can be set on the command line must be initialised via
3222            the slower lpcfg_do_global_parameter() to ensure that FLAG_CMDLINE is obeyed */
3223 #ifdef TCP_NODELAY
3224         lpcfg_do_global_parameter(lp_ctx, "socket options", "TCP_NODELAY");
3225 #endif
3226         lpcfg_do_global_parameter(lp_ctx, "workgroup", DEFAULT_WORKGROUP);
3227         myname = get_myname(lp_ctx);
3228         lpcfg_do_global_parameter(lp_ctx, "netbios name", myname);
3229         talloc_free(myname);
3230         lpcfg_do_global_parameter(lp_ctx, "name resolve order", "wins host bcast");
3231
3232         lpcfg_do_global_parameter(lp_ctx, "fstype", "NTFS");
3233
3234         lpcfg_do_global_parameter(lp_ctx, "ntvfs handler", "unixuid default");
3235         lpcfg_do_global_parameter(lp_ctx, "max connections", "-1");
3236
3237         lpcfg_do_global_parameter(lp_ctx, "dcerpc endpoint servers", "epmapper srvsvc wkssvc rpcecho samr netlogon lsarpc spoolss drsuapi winreg dssetup unixinfo browser eventlog6 backupkey");
3238         lpcfg_do_global_parameter(lp_ctx, "server services", "smb rpc nbt wrepl ldap cldap kdc drepl winbind ntp_signd kcc dnsupdate web");
3239         lpcfg_do_global_parameter(lp_ctx, "ntptr providor", "simple_ldb");
3240         /* the winbind method for domain controllers is for both RODC
3241            auth forwarding and for trusted domains */
3242         lpcfg_do_global_parameter(lp_ctx, "private dir", dyn_PRIVATE_DIR);
3243         lpcfg_do_global_parameter(lp_ctx, "spoolss database", "spoolss.ldb");
3244         lpcfg_do_global_parameter(lp_ctx, "wins config database", "wins_config.ldb");
3245         lpcfg_do_global_parameter(lp_ctx, "wins database", "wins.ldb");
3246         lpcfg_do_global_parameter(lp_ctx, "registry:HKEY_LOCAL_MACHINE", "hklm.ldb");
3247
3248         /* This hive should be dynamically generated by Samba using
3249            data from the sam, but for the moment leave it in a tdb to
3250            keep regedt32 from popping up an annoying dialog. */
3251         lpcfg_do_global_parameter(lp_ctx, "registry:HKEY_USERS", "hku.ldb");
3252
3253         /* using UTF8 by default allows us to support all chars */
3254         lpcfg_do_global_parameter(lp_ctx, "unix charset", "UTF8");
3255
3256         /* Use codepage 850 as a default for the dos character set */
3257         lpcfg_do_global_parameter(lp_ctx, "dos charset", "CP850");
3258
3259         /*
3260          * Allow the default PASSWD_CHAT to be overridden in local.h.
3261          */
3262         lpcfg_do_global_parameter(lp_ctx, "passwd chat", DEFAULT_PASSWD_CHAT);
3263
3264         lpcfg_do_global_parameter(lp_ctx, "pid directory", dyn_PIDDIR);
3265         lpcfg_do_global_parameter(lp_ctx, "lock dir", dyn_LOCKDIR);
3266         lpcfg_do_global_parameter(lp_ctx, "ncalrpc dir", dyn_NCALRPCDIR);
3267
3268         lpcfg_do_global_parameter(lp_ctx, "socket address", "");
3269         lpcfg_do_global_parameter_var(lp_ctx, "server string",
3270                                    "Samba %s", SAMBA_VERSION_STRING);
3271
3272         lpcfg_do_global_parameter(lp_ctx, "password server", "*");
3273
3274         lpcfg_do_global_parameter(lp_ctx, "max mux", "50");
3275         lpcfg_do_global_parameter(lp_ctx, "max xmit", "12288");
3276         lpcfg_do_global_parameter(lp_ctx, "password level", "0");
3277         lpcfg_do_global_parameter(lp_ctx, "LargeReadwrite", "True");
3278         lpcfg_do_global_parameter(lp_ctx, "server min protocol", "CORE");
3279         lpcfg_do_global_parameter(lp_ctx, "server max protocol", "NT1");
3280         lpcfg_do_global_parameter(lp_ctx, "client min protocol", "CORE");
3281         lpcfg_do_global_parameter(lp_ctx, "client max protocol", "NT1");
3282         lpcfg_do_global_parameter(lp_ctx, "security", "USER");
3283         lpcfg_do_global_parameter(lp_ctx, "paranoid server security", "True");
3284         lpcfg_do_global_parameter(lp_ctx, "EncryptPasswords", "True");
3285         lpcfg_do_global_parameter(lp_ctx, "ReadRaw", "True");
3286         lpcfg_do_global_parameter(lp_ctx, "WriteRaw", "True");
3287         lpcfg_do_global_parameter(lp_ctx, "NullPasswords", "False");
3288         lpcfg_do_global_parameter(lp_ctx, "ObeyPamRestrictions", "False");
3289
3290         lpcfg_do_global_parameter(lp_ctx, "TimeServer", "False");
3291         lpcfg_do_global_parameter(lp_ctx, "BindInterfacesOnly", "False");
3292         lpcfg_do_global_parameter(lp_ctx, "Unicode", "True");
3293         lpcfg_do_global_parameter(lp_ctx, "ClientLanManAuth", "False");
3294         lpcfg_do_global_parameter(lp_ctx, "ClientNTLMv2Auth", "True");
3295         lpcfg_do_global_parameter(lp_ctx, "LanmanAuth", "False");
3296         lpcfg_do_global_parameter(lp_ctx, "NTLMAuth", "True");
3297         lpcfg_do_global_parameter(lp_ctx, "client use spnego principal", "False");
3298
3299         lpcfg_do_global_parameter(lp_ctx, "UnixExtensions", "False");
3300
3301         lpcfg_do_global_parameter(lp_ctx, "PreferredMaster", "Auto");
3302         lpcfg_do_global_parameter(lp_ctx, "LocalMaster", "True");
3303
3304         lpcfg_do_global_parameter(lp_ctx, "wins support", "False");
3305         lpcfg_do_global_parameter(lp_ctx, "dns proxy", "True");
3306
3307         lpcfg_do_global_parameter(lp_ctx, "winbind separator", "\\");
3308         lpcfg_do_global_parameter(lp_ctx, "winbind sealed pipes", "True");
3309         lpcfg_do_global_parameter(lp_ctx, "winbindd socket directory", dyn_WINBINDD_SOCKET_DIR);
3310         lpcfg_do_global_parameter(lp_ctx, "winbindd privileged socket directory", dyn_WINBINDD_PRIVILEGED_SOCKET_DIR);
3311         lpcfg_do_global_parameter(lp_ctx, "template shell", "/bin/false");
3312         lpcfg_do_global_parameter(lp_ctx, "template homedir", "/home/%WORKGROUP%/%ACCOUNTNAME%");
3313         lpcfg_do_global_parameter(lp_ctx, "idmap trusted only", "False");
3314
3315         lpcfg_do_global_parameter(lp_ctx, "client signing", "Yes");
3316         lpcfg_do_global_parameter(lp_ctx, "server signing", "auto");
3317
3318         lpcfg_do_global_parameter(lp_ctx, "use spnego", "True");
3319
3320         lpcfg_do_global_parameter(lp_ctx, "smb ports", "445 139");
3321         lpcfg_do_global_parameter(lp_ctx, "nbt port", "137");
3322         lpcfg_do_global_parameter(lp_ctx, "dgram port", "138");
3323         lpcfg_do_global_parameter(lp_ctx, "cldap port", "389");
3324         lpcfg_do_global_parameter(lp_ctx, "krb5 port", "88");
3325         lpcfg_do_global_parameter(lp_ctx, "kpasswd port", "464");
3326         lpcfg_do_global_parameter(lp_ctx, "web port", "901");
3327
3328         lpcfg_do_global_parameter(lp_ctx, "nt status support", "True");
3329
3330         lpcfg_do_global_parameter(lp_ctx, "max wins ttl", "518400"); /* 6 days */
3331         lpcfg_do_global_parameter(lp_ctx, "min wins ttl", "10");
3332
3333         lpcfg_do_global_parameter(lp_ctx, "tls enabled", "True");
3334         lpcfg_do_global_parameter(lp_ctx, "tls keyfile", "tls/key.pem");
3335         lpcfg_do_global_parameter(lp_ctx, "tls certfile", "tls/cert.pem");
3336         lpcfg_do_global_parameter(lp_ctx, "tls cafile", "tls/ca.pem");
3337         lpcfg_do_global_parameter(lp_ctx, "prefork children:smb", "4");
3338
3339         lpcfg_do_global_parameter(lp_ctx, "ntp signd socket directory", dyn_NTP_SIGND_SOCKET_DIR);
3340         lpcfg_do_global_parameter(lp_ctx, "rndc command", "/usr/sbin/rndc");
3341         lpcfg_do_global_parameter_var(lp_ctx, "dns update command", "%s/samba_dnsupdate", dyn_SCRIPTSBINDIR);
3342         lpcfg_do_global_parameter_var(lp_ctx, "spn update command", "%s/samba_spnupdate", dyn_SCRIPTSBINDIR);
3343         lpcfg_do_global_parameter(lp_ctx, "nsupdate command", "/usr/bin/nsupdate -g");
3344
3345         for (i = 0; parm_table[i].label; i++) {
3346                 if (!(lp_ctx->flags[i] & FLAG_CMDLINE)) {
3347                         lp_ctx->flags[i] |= FLAG_DEFAULT;
3348                 }
3349         }
3350
3351         for (parm=lp_ctx->globals->param_opt; parm; parm=parm->next) {
3352                 if (!(parm->priority & FLAG_CMDLINE)) {
3353                         parm->priority |= FLAG_DEFAULT;
3354                 }
3355         }
3356
3357         return lp_ctx;
3358 }
3359
3360 /**
3361  * Initialise the global parameter structure.
3362  */
3363 struct loadparm_context *loadparm_init_global(bool load_default)
3364 {
3365         if (global_loadparm_context == NULL) {
3366                 global_loadparm_context = loadparm_init(NULL);
3367         }
3368         if (global_loadparm_context == NULL) {
3369                 return NULL;
3370         }
3371         global_loadparm_context->global = true;
3372         if (load_default && !global_loadparm_context->loaded) {
3373                 lpcfg_load_default(global_loadparm_context);
3374         }
3375         global_loadparm_context->refuse_free = true;
3376         return global_loadparm_context;
3377 }
3378
3379 /**
3380  * Initialise the global parameter structure.
3381  */
3382 struct loadparm_context *loadparm_init_s3(TALLOC_CTX *mem_ctx, 
3383                                           const struct loadparm_s3_context *s3_fns)
3384 {
3385         struct loadparm_context *loadparm_context = loadparm_init(mem_ctx);
3386         if (!loadparm_context) {
3387                 return NULL;
3388         }
3389         loadparm_context->s3_fns = s3_fns;
3390         return loadparm_context;
3391 }
3392
3393 const char *lpcfg_configfile(struct loadparm_context *lp_ctx)
3394 {
3395         return lp_ctx->szConfigFile;
3396 }
3397
3398 const char *lp_default_path(void)
3399 {
3400     if (getenv("SMB_CONF_PATH"))
3401         return getenv("SMB_CONF_PATH");
3402     else
3403         return dyn_CONFIGFILE;
3404 }
3405
3406 /**
3407  * Update the internal state of a loadparm context after settings 
3408  * have changed.
3409  */
3410 static bool lpcfg_update(struct loadparm_context *lp_ctx)
3411 {
3412         struct debug_settings settings;
3413         lpcfg_add_auto_services(lp_ctx, lpcfg_auto_services(lp_ctx));
3414
3415         if (!lp_ctx->globals->szWINSservers && lp_ctx->globals->bWINSsupport) {
3416                 lpcfg_do_global_parameter(lp_ctx, "wins server", "127.0.0.1");
3417         }
3418
3419         if (!lp_ctx->global) {
3420                 return true;
3421         }
3422
3423         panic_action = lp_ctx->globals->panic_action;
3424
3425         reload_charcnv(lp_ctx);
3426
3427         ZERO_STRUCT(settings);
3428         /* Add any more debug-related smb.conf parameters created in
3429          * future here */
3430         settings.timestamp_logs = true;
3431         debug_set_settings(&settings);
3432
3433         /* FIXME: This is a bit of a hack, but we can't use a global, since 
3434          * not everything that uses lp also uses the socket library */
3435         if (lpcfg_parm_bool(lp_ctx, NULL, "socket", "testnonblock", false)) {
3436                 setenv("SOCKET_TESTNONBLOCK", "1", 1);
3437         } else {
3438                 unsetenv("SOCKET_TESTNONBLOCK");
3439         }
3440
3441         return true;
3442 }
3443
3444 bool lpcfg_load_default(struct loadparm_context *lp_ctx)
3445 {
3446     const char *path;
3447
3448     path = lp_default_path();
3449
3450     if (!file_exist(path)) {
3451             /* We allow the default smb.conf file to not exist, 
3452              * basically the equivalent of an empty file. */
3453             return lpcfg_update(lp_ctx);
3454     }
3455
3456     return lpcfg_load(lp_ctx, path);
3457 }
3458
3459 /**
3460  * Load the services array from the services file.
3461  *
3462  * Return True on success, False on failure.
3463  */
3464 bool lpcfg_load(struct loadparm_context *lp_ctx, const char *filename)
3465 {
3466         char *n2;
3467         bool bRetval;
3468
3469         filename = talloc_strdup(lp_ctx, filename);
3470
3471         lp_ctx->szConfigFile = filename;
3472
3473         lp_ctx->bInGlobalSection = true;
3474         n2 = standard_sub_basic(lp_ctx, lp_ctx->szConfigFile);
3475         DEBUG(2, ("lpcfg_load: refreshing parameters from %s\n", n2));
3476
3477         add_to_file_list(lp_ctx, lp_ctx->szConfigFile, n2);
3478
3479         /* We get sections first, so have to start 'behind' to make up */
3480         lp_ctx->currentService = NULL;
3481         bRetval = pm_process(n2, do_section, do_parameter, lp_ctx);
3482
3483         /* finish up the last section */
3484         DEBUG(4, ("pm_process() returned %s\n", BOOLSTR(bRetval)));
3485         if (bRetval)
3486                 if (lp_ctx->currentService != NULL)
3487                         bRetval = service_ok(lp_ctx->currentService);
3488
3489         bRetval = bRetval && lpcfg_update(lp_ctx);
3490
3491         /* we do this unconditionally, so that it happens even
3492            for a missing smb.conf */
3493         reload_charcnv(lp_ctx);
3494
3495         if (bRetval == true) {
3496                 /* set this up so that any child python tasks will
3497                    find the right smb.conf */
3498                 setenv("SMB_CONF_PATH", filename, 1);
3499
3500                 /* set the context used by the lp_*() function
3501                    varients */
3502                 global_loadparm_context = lp_ctx;
3503                 lp_ctx->loaded = true;
3504         }
3505
3506         return bRetval;
3507 }
3508
3509 /**
3510  * Return the max number of services.
3511  */
3512
3513 int lpcfg_numservices(struct loadparm_context *lp_ctx)
3514 {
3515         return lp_ctx->iNumServices;
3516 }
3517
3518 /**
3519  * Display the contents of the services array in human-readable form.
3520  */
3521
3522 void lpcfg_dump(struct loadparm_context *lp_ctx, FILE *f, bool show_defaults,
3523              int maxtoprint)
3524 {
3525         int iService;
3526
3527         defaults_saved = !show_defaults;
3528
3529         dump_globals(lp_ctx, f, show_defaults);
3530
3531         dump_a_service(lp_ctx->sDefault, lp_ctx->sDefault, f, lp_ctx->flags);
3532
3533         for (iService = 0; iService < maxtoprint; iService++)
3534                 lpcfg_dump_one(f, show_defaults, lp_ctx->services[iService], lp_ctx->sDefault);
3535 }
3536
3537 /**
3538  * Display the contents of one service in human-readable form.
3539  */
3540 void lpcfg_dump_one(FILE *f, bool show_defaults, struct loadparm_service *service, struct loadparm_service *sDefault)
3541 {
3542         if (service != NULL) {
3543                 if (service->szService[0] == '\0')
3544                         return;
3545                 dump_a_service(service, sDefault, f, NULL);
3546         }
3547 }
3548
3549 struct loadparm_service *lpcfg_servicebynum(struct loadparm_context *lp_ctx,
3550                                          int snum)
3551 {
3552         return lp_ctx->services[snum];
3553 }
3554
3555 struct loadparm_service *lpcfg_service(struct loadparm_context *lp_ctx,
3556                                     const char *service_name)
3557 {
3558         int iService;
3559         char *serviceName;
3560
3561         if (lp_ctx->s3_fns) {
3562                 return lp_ctx->s3_fns->get_service(service_name);
3563         }
3564
3565         for (iService = lp_ctx->iNumServices - 1; iService >= 0; iService--) {
3566                 if (lp_ctx->services[iService] &&
3567                     lp_ctx->services[iService]->szService) {
3568                         /*
3569                          * The substitution here is used to support %U is
3570                          * service names
3571                          */
3572                         serviceName = standard_sub_basic(
3573                                         lp_ctx->services[iService],
3574                                         lp_ctx->services[iService]->szService);
3575                         if (strequal(serviceName, service_name)) {
3576                                 talloc_free(serviceName);
3577                                 return lp_ctx->services[iService];
3578                         }
3579                         talloc_free(serviceName);
3580                 }
3581         }
3582
3583         DEBUG(7,("lpcfg_servicenumber: couldn't find %s\n", service_name));
3584         return NULL;
3585 }
3586
3587 const char *lpcfg_servicename(const struct loadparm_service *service)
3588 {
3589         return lp_string((const char *)service->szService);
3590 }
3591
3592 /**
3593  * A useful volume label function.
3594  */
3595 const char *lpcfg_volume_label(struct loadparm_service *service, struct loadparm_service *sDefault)
3596 {
3597         const char *ret;
3598         ret = lp_string((const char *)((service != NULL && service->volume != NULL) ?
3599                                        service->volume : sDefault->volume));
3600         if (!*ret)
3601                 return lpcfg_servicename(service);
3602         return ret;
3603 }
3604
3605 /**
3606  * If we are PDC then prefer us as DMB
3607  */
3608 const char *lpcfg_printername(struct loadparm_service *service, struct loadparm_service *sDefault)
3609 {
3610         const char *ret;
3611         ret = lp_string((const char *)((service != NULL && service->szPrintername != NULL) ?
3612                                        service->szPrintername : sDefault->szPrintername));
3613         if (ret == NULL || (ret != NULL && *ret == '\0'))
3614                 ret = lpcfg_servicename(service);
3615
3616         return ret;
3617 }
3618
3619
3620 /**
3621  * Return the max print jobs per queue.
3622  */
3623 int lpcfg_maxprintjobs(struct loadparm_service *service, struct loadparm_service *sDefault)
3624 {
3625         int maxjobs = (service != NULL) ? service->iMaxPrintJobs : sDefault->iMaxPrintJobs;
3626         if (maxjobs <= 0 || maxjobs >= PRINT_MAX_JOBID)
3627                 maxjobs = PRINT_MAX_JOBID - 1;
3628
3629         return maxjobs;
3630 }
3631
3632 struct smb_iconv_handle *lpcfg_iconv_handle(struct loadparm_context *lp_ctx)
3633 {
3634         if (lp_ctx == NULL) {
3635                 return get_iconv_handle();
3636         }
3637         return lp_ctx->iconv_handle;
3638 }
3639
3640 _PUBLIC_ void reload_charcnv(struct loadparm_context *lp_ctx)
3641 {
3642         struct smb_iconv_handle *old_ic = lp_ctx->iconv_handle;
3643         if (!lp_ctx->global) {
3644                 return;
3645         }
3646
3647         if (old_ic == NULL) {
3648                 old_ic = global_iconv_handle;
3649         }
3650         lp_ctx->iconv_handle = smb_iconv_handle_reinit_lp(lp_ctx, lp_ctx, old_ic);
3651         global_iconv_handle = lp_ctx->iconv_handle;
3652 }
3653
3654 void lpcfg_smbcli_options(struct loadparm_context *lp_ctx,
3655                          struct smbcli_options *options)
3656 {
3657         options->max_xmit = lpcfg_max_xmit(lp_ctx);
3658         options->max_mux = lpcfg_maxmux(lp_ctx);
3659         options->use_spnego = lpcfg_nt_status_support(lp_ctx) && lpcfg_use_spnego(lp_ctx);
3660         options->signing = lpcfg_client_signing(lp_ctx);
3661         options->request_timeout = SMB_REQUEST_TIMEOUT;
3662         options->ntstatus_support = lpcfg_nt_status_support(lp_ctx);
3663         options->max_protocol = lpcfg_cli_maxprotocol(lp_ctx);
3664         options->unicode = lpcfg_unicode(lp_ctx);
3665         options->use_oplocks = true;
3666         options->use_level2_oplocks = true;
3667 }
3668
3669 void lpcfg_smbcli_session_options(struct loadparm_context *lp_ctx,
3670                                  struct smbcli_session_options *options)
3671 {
3672         options->lanman_auth = lpcfg_client_lanman_auth(lp_ctx);
3673         options->ntlmv2_auth = lpcfg_client_ntlmv2_auth(lp_ctx);
3674         options->plaintext_auth = lpcfg_client_plaintext_auth(lp_ctx);
3675 }
3676
3677 _PUBLIC_ char *lpcfg_tls_keyfile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3678 {
3679         return lpcfg_private_path(mem_ctx, lp_ctx, lp_ctx->globals->tls_keyfile);
3680 }
3681
3682 _PUBLIC_ char *lpcfg_tls_certfile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3683 {
3684         return lpcfg_private_path(mem_ctx, lp_ctx, lp_ctx->globals->tls_certfile);
3685 }
3686
3687 _PUBLIC_ char *lpcfg_tls_cafile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3688 {
3689         return lpcfg_private_path(mem_ctx, lp_ctx, lp_ctx->globals->tls_cafile);
3690 }
3691
3692 _PUBLIC_ char *lpcfg_tls_crlfile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3693 {
3694         return lpcfg_private_path(mem_ctx, lp_ctx, lp_ctx->globals->tls_crlfile);
3695 }
3696
3697 _PUBLIC_ char *lpcfg_tls_dhpfile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3698 {
3699         return lpcfg_private_path(mem_ctx, lp_ctx, lp_ctx->globals->tls_dhpfile);
3700 }
3701
3702 _PUBLIC_ struct dcerpc_server_info *lpcfg_dcerpc_server_info(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3703 {
3704         struct dcerpc_server_info *ret = talloc_zero(mem_ctx, struct dcerpc_server_info);
3705
3706         ret->domain_name = talloc_reference(mem_ctx, lpcfg_workgroup(lp_ctx));
3707         ret->version_major = lpcfg_parm_int(lp_ctx, NULL, "server_info", "version_major", 5);
3708         ret->version_minor = lpcfg_parm_int(lp_ctx, NULL, "server_info", "version_minor", 2);
3709         ret->version_build = lpcfg_parm_int(lp_ctx, NULL, "server_info", "version_build", 3790);
3710
3711         return ret;
3712 }
3713
3714 struct gensec_settings *lpcfg_gensec_settings(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3715 {
3716         struct gensec_settings *settings = talloc(mem_ctx, struct gensec_settings);
3717         if (settings == NULL)
3718                 return NULL;
3719         SMB_ASSERT(lp_ctx != NULL);
3720         settings->lp_ctx = talloc_reference(settings, lp_ctx);
3721         settings->target_hostname = lpcfg_parm_string(lp_ctx, NULL, "gensec", "target_hostname");
3722         return settings;
3723 }
3724