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