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