param: Finish conversion from lp_wins_support() -> lp_we_are_a_wins_server()
[samba.git] / source4 / param / loadparm.c
1 /* 
2    Unix SMB/CIFS implementation.
3    Parameter loading functions
4    Copyright (C) Karl Auer 1993-1998
5
6    Largely re-written by Andrew Tridgell, September 1994
7
8    Copyright (C) Simo Sorce 2001
9    Copyright (C) Alexander Bokovoy 2002
10    Copyright (C) Stefan (metze) Metzmacher 2002
11    Copyright (C) Jim McDonough (jmcd@us.ibm.com)  2003.
12    Copyright (C) James Myers 2003 <myersjj@samba.org>
13    Copyright (C) Jelmer Vernooij <jelmer@samba.org> 2007
14
15    This program is free software; you can redistribute it and/or modify
16    it under the terms of the GNU General Public License as published by
17    the Free Software Foundation; either version 3 of the License, or
18    (at your option) any later version.
19
20    This program is distributed in the hope that it will be useful,
21    but WITHOUT ANY WARRANTY; without even the implied warranty of
22    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
23    GNU General Public License for more details.
24
25    You should have received a copy of the GNU General Public License
26    along with this program.  If not, see <http://www.gnu.org/licenses/>.
27 */
28
29 /*
30  *  Load parameters.
31  *
32  *  This module provides suitable callback functions for the params
33  *  module. It builds the internal table of service details which is
34  *  then used by the rest of the server.
35  *
36  * To add a parameter:
37  *
38  * 1) add it to the global or service structure definition
39  * 2) add it to the parm_table
40  * 3) add it to the list of available functions (eg: using FN_GLOBAL_STRING())
41  * 4) If it's a global then initialise it in init_globals. If a local
42  *    (ie. service) parameter then initialise it in the sDefault structure
43  *
44  *
45  * Notes:
46  *   The configuration file is processed sequentially for speed. It is NOT
47  *   accessed randomly as happens in 'real' Windows. For this reason, there
48  *   is a fair bit of sequence-dependent code here - ie., code which assumes
49  *   that certain things happen before others. In particular, the code which
50  *   happens at the boundary between sections is delicately poised, so be
51  *   careful!
52  *
53  */
54
55 #include "includes.h"
56 #include "version.h"
57 #include "dynconfig/dynconfig.h"
58 #include "system/time.h"
59 #include "system/locale.h"
60 #include "system/network.h" /* needed for TCP_NODELAY */
61 #include "smb_server/smb_server.h"
62 #include "libcli/raw/signing.h"
63 #include "../lib/util/dlinklist.h"
64 #include "../lib/util/parmlist.h"
65 #include "param/param.h"
66 #include "param/loadparm.h"
67 #include "libcli/raw/libcliraw.h"
68 #include "rpc_server/common/common.h"
69 #include "lib/socket/socket.h"
70 #include "auth/gensec/gensec.h"
71 #include "s3_param.h"
72
73 #define standard_sub_basic talloc_strdup
74
75 static bool do_parameter(const char *, const char *, void *);
76 static bool defaults_saved = false;
77
78 #define LOADPARM_EXTRA_GLOBALS \
79         struct parmlist_entry *param_opt;                               \
80         char *szRealm;                                                  \
81         char *tls_keyfile;                                              \
82         char *tls_certfile;                                             \
83         char *tls_cafile;                                               \
84         char *tls_crlfile;                                              \
85         char *tls_dhpfile;                                              \
86         char *loglevel;                                                 \
87         char *panic_action;                                             \
88         int bPreferredMaster;                                           \
89         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(we_are_a_wins_server, 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_BOOLREV: {
2503                         bool b;
2504                         if (!set_boolean(pszParmValue, &b)) {
2505                                 DEBUG(0,("lp_do_parameter(%s): value is not boolean!\n", pszParmValue));
2506                                 return false;
2507                         }
2508                         *(int *)parm_ptr = !b;
2509                         }
2510                         break;
2511
2512                 case P_INTEGER:
2513                         *(int *)parm_ptr = atoi(pszParmValue);
2514                         break;
2515
2516                 case P_OCTAL:
2517                         *(int *)parm_ptr = strtol(pszParmValue, NULL, 8);
2518                         break;
2519
2520                 case P_BYTES:
2521                 {
2522                         uint64_t val;
2523                         if (conv_str_size_error(pszParmValue, &val)) {
2524                                 if (val <= INT_MAX) {
2525                                         *(int *)parm_ptr = (int)val;
2526                                         break;
2527                                 }
2528                         }
2529
2530                         DEBUG(0,("lp_do_parameter(%s): value is not "
2531                             "a valid size specifier!\n", pszParmValue));
2532                         return false;
2533                 }
2534
2535                 case P_CMDLIST:
2536                         *(const char ***)parm_ptr = (const char **)str_list_make(mem_ctx,
2537                                                                   pszParmValue, NULL);
2538                         break;
2539                 case P_LIST:
2540                 {
2541                         char **new_list = str_list_make(mem_ctx,
2542                                                         pszParmValue, NULL);
2543                         for (i=0; new_list[i]; i++) {
2544                                 if (new_list[i][0] == '+' && new_list[i][1] &&
2545                                     (!str_list_check(*(const char ***)parm_ptr,
2546                                                      &new_list[i][1]))) {
2547                                         *(const char ***)parm_ptr = str_list_add(*(const char ***)parm_ptr,
2548                                                                                  &new_list[i][1]);
2549                                 } else if (new_list[i][0] == '-' && new_list[i][1]) {
2550 #if 0 /* This is commented out because we sometimes parse the list
2551        * twice, and so we can't assert on this */
2552                                         if (!str_list_check(*(const char ***)parm_ptr,
2553                                                             &new_list[i][1])) {
2554                                                 DEBUG(0, ("Unsupported value for: %s = %s, %s is not in the original list [%s]\n",
2555                                                           pszParmName, pszParmValue, new_list[i],
2556                                                           str_list_join_shell(mem_ctx, *(const char ***)parm_ptr, ' ')));
2557                                                 return false;
2558
2559                                         }
2560 #endif
2561                                         str_list_remove(*(const char ***)parm_ptr,
2562                                                         &new_list[i][1]);
2563                                 } else {
2564                                         if (i != 0) {
2565                                                 DEBUG(0, ("Unsupported list syntax for: %s = %s\n",
2566                                                           pszParmName, pszParmValue));
2567                                                 return false;
2568                                         }
2569                                         *(const char ***)parm_ptr = (const char **) new_list;
2570                                         break;
2571                                 }
2572                         }
2573                         break;
2574                 }
2575                 case P_STRING:
2576                         string_set(mem_ctx, (char **)parm_ptr, pszParmValue);
2577                         break;
2578
2579                 case P_USTRING:
2580                         string_set_upper(mem_ctx, (char **)parm_ptr, pszParmValue);
2581                         break;
2582
2583                 case P_ENUM:
2584                         for (i = 0; parm_table[parmnum].enum_list[i].name; i++) {
2585                                 if (strequal
2586                                     (pszParmValue,
2587                                      parm_table[parmnum].enum_list[i].name)) {
2588                                         *(int *)parm_ptr =
2589                                                 parm_table[parmnum].
2590                                                 enum_list[i].value;
2591                                         break;
2592                                 }
2593                         }
2594                         if (!parm_table[parmnum].enum_list[i].name) {
2595                                 DEBUG(0,("Unknown enumerated value '%s' for '%s'\n", 
2596                                          pszParmValue, pszParmName));
2597                                 return false;
2598                         }
2599                         break;
2600         }
2601
2602 mark_non_default:
2603         if (on_globals && (lp_ctx->flags[parmnum] & FLAG_DEFAULT)) {
2604                 lp_ctx->flags[parmnum] &= ~FLAG_DEFAULT;
2605                 /* we have to also unset FLAG_DEFAULT on aliases */
2606                 for (i=parmnum-1;i>=0 && parm_table[i].offset == parm_table[parmnum].offset;i--) {
2607                         lp_ctx->flags[i] &= ~FLAG_DEFAULT;
2608                 }
2609                 for (i=parmnum+1;i<NUMPARAMETERS && parm_table[i].offset == parm_table[parmnum].offset;i++) {
2610                         lp_ctx->flags[i] &= ~FLAG_DEFAULT;
2611                 }
2612         }
2613         return true;
2614 }
2615
2616
2617 bool lpcfg_do_global_parameter(struct loadparm_context *lp_ctx,
2618                                const char *pszParmName, const char *pszParmValue)
2619 {
2620         int parmnum = map_parameter(pszParmName);
2621         void *parm_ptr;
2622
2623         if (parmnum < 0) {
2624                 if (strchr(pszParmName, ':')) {
2625                         return lp_do_parameter_parametric(lp_ctx, NULL, pszParmName, pszParmValue, 0);
2626                 }
2627                 DEBUG(0, ("Ignoring unknown parameter \"%s\"\n", pszParmName));
2628                 return true;
2629         }
2630
2631         /* if the flag has been set on the command line, then don't allow override,
2632            but don't report an error */
2633         if (lp_ctx->flags[parmnum] & FLAG_CMDLINE) {
2634                 return true;
2635         }
2636
2637         parm_ptr = lpcfg_parm_ptr(lp_ctx, NULL, &parm_table[parmnum]);
2638
2639         return set_variable(lp_ctx->globals, parmnum, parm_ptr,
2640                             pszParmName, pszParmValue, lp_ctx, true);
2641 }
2642
2643 bool lpcfg_do_service_parameter(struct loadparm_context *lp_ctx,
2644                                 struct loadparm_service *service,
2645                                 const char *pszParmName, const char *pszParmValue)
2646 {
2647         void *parm_ptr;
2648         int i;
2649         int parmnum = map_parameter(pszParmName);
2650
2651         if (parmnum < 0) {
2652                 if (strchr(pszParmName, ':')) {
2653                         return lp_do_parameter_parametric(lp_ctx, service, pszParmName, pszParmValue, 0);
2654                 }
2655                 DEBUG(0, ("Ignoring unknown parameter \"%s\"\n", pszParmName));
2656                 return true;
2657         }
2658
2659         /* if the flag has been set on the command line, then don't allow override,
2660            but don't report an error */
2661         if (lp_ctx->flags[parmnum] & FLAG_CMDLINE) {
2662                 return true;
2663         }
2664
2665         if (parm_table[parmnum].p_class == P_GLOBAL) {
2666                 DEBUG(0,
2667                       ("Global parameter %s found in service section!\n",
2668                        pszParmName));
2669                 return true;
2670         }
2671         parm_ptr = ((char *)service) + parm_table[parmnum].offset;
2672
2673         if (!service->copymap)
2674                 init_copymap(service);
2675
2676         /* this handles the aliases - set the copymap for other
2677          * entries with the same data pointer */
2678         for (i = 0; parm_table[i].label; i++)
2679                 if (parm_table[i].offset == parm_table[parmnum].offset &&
2680                     parm_table[i].p_class == parm_table[parmnum].p_class)
2681                         service->copymap[i] = false;
2682
2683         return set_variable(service, parmnum, parm_ptr, pszParmName,
2684                             pszParmValue, lp_ctx, false);
2685 }
2686
2687 /**
2688  * Process a parameter.
2689  */
2690
2691 static bool do_parameter(const char *pszParmName, const char *pszParmValue,
2692                          void *userdata)
2693 {
2694         struct loadparm_context *lp_ctx = (struct loadparm_context *)userdata;
2695
2696         if (lp_ctx->bInGlobalSection)
2697                 return lpcfg_do_global_parameter(lp_ctx, pszParmName,
2698                                               pszParmValue);
2699         else
2700                 return lpcfg_do_service_parameter(lp_ctx, lp_ctx->currentService,
2701                                                   pszParmName, pszParmValue);
2702 }
2703
2704 /*
2705   variable argument do parameter
2706 */
2707 bool lpcfg_do_global_parameter_var(struct loadparm_context *lp_ctx, const char *pszParmName, const char *fmt, ...) PRINTF_ATTRIBUTE(3, 4);
2708 bool lpcfg_do_global_parameter_var(struct loadparm_context *lp_ctx,
2709                                 const char *pszParmName, const char *fmt, ...)
2710 {
2711         char *s;
2712         bool ret;
2713         va_list ap;
2714
2715         va_start(ap, fmt);
2716         s = talloc_vasprintf(NULL, fmt, ap);
2717         va_end(ap);
2718         ret = lpcfg_do_global_parameter(lp_ctx, pszParmName, s);
2719         talloc_free(s);
2720         return ret;
2721 }
2722
2723
2724 /*
2725   set a parameter from the commandline - this is called from command line parameter
2726   parsing code. It sets the parameter then marks the parameter as unable to be modified
2727   by smb.conf processing
2728 */
2729 bool lpcfg_set_cmdline(struct loadparm_context *lp_ctx, const char *pszParmName,
2730                        const char *pszParmValue)
2731 {
2732         int parmnum = map_parameter(pszParmName);
2733         int i;
2734
2735         while (isspace((unsigned char)*pszParmValue)) pszParmValue++;
2736
2737
2738         if (parmnum < 0 && strchr(pszParmName, ':')) {
2739                 /* set a parametric option */
2740                 return lp_do_parameter_parametric(lp_ctx, NULL, pszParmName,
2741                                                   pszParmValue, FLAG_CMDLINE);
2742         }
2743
2744         if (parmnum < 0) {
2745                 DEBUG(0,("Unknown option '%s'\n", pszParmName));
2746                 return false;
2747         }
2748
2749         /* reset the CMDLINE flag in case this has been called before */
2750         lp_ctx->flags[parmnum] &= ~FLAG_CMDLINE;
2751
2752         if (!lpcfg_do_global_parameter(lp_ctx, pszParmName, pszParmValue)) {
2753                 return false;
2754         }
2755
2756         lp_ctx->flags[parmnum] |= FLAG_CMDLINE;
2757
2758         /* we have to also set FLAG_CMDLINE on aliases */
2759         for (i=parmnum-1;i>=0 && parm_table[i].offset == parm_table[parmnum].offset;i--) {
2760                 lp_ctx->flags[i] |= FLAG_CMDLINE;
2761         }
2762         for (i=parmnum+1;i<NUMPARAMETERS && parm_table[i].offset == parm_table[parmnum].offset;i++) {
2763                 lp_ctx->flags[i] |= FLAG_CMDLINE;
2764         }
2765
2766         return true;
2767 }
2768
2769 /*
2770   set a option from the commandline in 'a=b' format. Use to support --option
2771 */
2772 bool lpcfg_set_option(struct loadparm_context *lp_ctx, const char *option)
2773 {
2774         char *p, *s;
2775         bool ret;
2776
2777         s = strdup(option);
2778         if (!s) {
2779                 return false;
2780         }
2781
2782         p = strchr(s, '=');
2783         if (!p) {
2784                 free(s);
2785                 return false;
2786         }
2787
2788         *p = 0;
2789
2790         ret = lpcfg_set_cmdline(lp_ctx, s, p+1);
2791         free(s);
2792         return ret;
2793 }
2794
2795
2796 #define BOOLSTR(b) ((b) ? "Yes" : "No")
2797
2798 /**
2799  * Print a parameter of the specified type.
2800  */
2801
2802 static void print_parameter(struct parm_struct *p, void *ptr, FILE * f)
2803 {
2804         int i;
2805         const char *list_sep = ", "; /* For the seperation of lists values that we print below */
2806         switch (p->type)
2807         {
2808                 case P_ENUM:
2809                         for (i = 0; p->enum_list[i].name; i++) {
2810                                 if (*(int *)ptr == p->enum_list[i].value) {
2811                                         fprintf(f, "%s",
2812                                                 p->enum_list[i].name);
2813                                         break;
2814                                 }
2815                         }
2816                         break;
2817
2818                 case P_BOOL:
2819                         fprintf(f, "%s", BOOLSTR((bool)*(int *)ptr));
2820                         break;
2821
2822                 case P_BOOLREV:
2823                         fprintf(f, "%s", BOOLSTR(!(bool)*(int *)ptr));
2824                         break;
2825
2826                 case P_INTEGER:
2827                 case P_BYTES:
2828                         fprintf(f, "%d", *(int *)ptr);
2829                         break;
2830
2831                 case P_OCTAL:
2832                         fprintf(f, "0%o", *(int *)ptr);
2833                         break;
2834
2835                 case P_CMDLIST:
2836                         list_sep = " ";
2837                         /* fall through */
2838                 case P_LIST:
2839                         if ((char ***)ptr && *(char ***)ptr) {
2840                                 char **list = *(char ***)ptr;
2841
2842                                 for (; *list; list++) {
2843                                         if (*(list+1) == NULL) {
2844                                                 /* last item, print no extra seperator after */
2845                                                 list_sep = "";
2846                                         }
2847                                         fprintf(f, "%s%s", *list, list_sep);
2848                                 }
2849                         }
2850                         break;
2851
2852                 case P_STRING:
2853                 case P_USTRING:
2854                         if (*(char **)ptr) {
2855                                 fprintf(f, "%s", *(char **)ptr);
2856                         }
2857                         break;
2858         }
2859 }
2860
2861 /**
2862  * Check if two parameters are equal.
2863  */
2864
2865 static bool equal_parameter(parm_type type, void *ptr1, void *ptr2)
2866 {
2867         switch (type) {
2868                 case P_BOOL:
2869                 case P_BOOLREV:
2870                         return (*((int *)ptr1) == *((int *)ptr2));
2871
2872                 case P_INTEGER:
2873                 case P_OCTAL:
2874                 case P_BYTES:
2875                 case P_ENUM:
2876                         return (*((int *)ptr1) == *((int *)ptr2));
2877
2878                 case P_CMDLIST:
2879                 case P_LIST:
2880                         return str_list_equal((const char **)(*(char ***)ptr1),
2881                                               (const char **)(*(char ***)ptr2));
2882
2883                 case P_STRING:
2884                 case P_USTRING:
2885                 {
2886                         char *p1 = *(char **)ptr1, *p2 = *(char **)ptr2;
2887                         if (p1 && !*p1)
2888                                 p1 = NULL;
2889                         if (p2 && !*p2)
2890                                 p2 = NULL;
2891                         return (p1 == p2 || strequal(p1, p2));
2892                 }
2893         }
2894         return false;
2895 }
2896
2897 /**
2898  * Process a new section (service).
2899  *
2900  * At this stage all sections are services.
2901  * Later we'll have special sections that permit server parameters to be set.
2902  * Returns True on success, False on failure.
2903  */
2904
2905 static bool do_section(const char *pszSectionName, void *userdata)
2906 {
2907         struct loadparm_context *lp_ctx = (struct loadparm_context *)userdata;
2908         bool bRetval;
2909         bool isglobal = ((strwicmp(pszSectionName, GLOBAL_NAME) == 0) ||
2910                          (strwicmp(pszSectionName, GLOBAL_NAME2) == 0));
2911         bRetval = false;
2912
2913         /* if we've just struck a global section, note the fact. */
2914         lp_ctx->bInGlobalSection = isglobal;
2915
2916         /* check for multiple global sections */
2917         if (lp_ctx->bInGlobalSection) {
2918                 DEBUG(4, ("Processing section \"[%s]\"\n", pszSectionName));
2919                 return true;
2920         }
2921
2922         /* if we have a current service, tidy it up before moving on */
2923         bRetval = true;
2924
2925         if (lp_ctx->currentService != NULL)
2926                 bRetval = service_ok(lp_ctx->currentService);
2927
2928         /* if all is still well, move to the next record in the services array */
2929         if (bRetval) {
2930                 /* We put this here to avoid an odd message order if messages are */
2931                 /* issued by the post-processing of a previous section. */
2932                 DEBUG(4, ("Processing section \"[%s]\"\n", pszSectionName));
2933
2934                 if ((lp_ctx->currentService = lpcfg_add_service(lp_ctx, lp_ctx->sDefault,
2935                                                                    pszSectionName))
2936                     == NULL) {
2937                         DEBUG(0, ("Failed to add a new service\n"));
2938                         return false;
2939                 }
2940         }
2941
2942         return bRetval;
2943 }
2944
2945
2946 /**
2947  * Determine if a particular base parameter is currently set to the default value.
2948  */
2949
2950 static bool is_default(struct loadparm_service *sDefault, int i)
2951 {
2952         void *def_ptr = ((char *)sDefault) + parm_table[i].offset;
2953         if (!defaults_saved)
2954                 return false;
2955         switch (parm_table[i].type) {
2956                 case P_CMDLIST:
2957                 case P_LIST:
2958                         return str_list_equal((const char **)parm_table[i].def.lvalue, 
2959                                               (const char **)def_ptr);
2960                 case P_STRING:
2961                 case P_USTRING:
2962                         return strequal(parm_table[i].def.svalue,
2963                                         *(char **)def_ptr);
2964                 case P_BOOL:
2965                 case P_BOOLREV:
2966                         return parm_table[i].def.bvalue ==
2967                                 *(int *)def_ptr;
2968                 case P_INTEGER:
2969                 case P_OCTAL:
2970                 case P_BYTES:
2971                 case P_ENUM:
2972                         return parm_table[i].def.ivalue ==
2973                                 *(int *)def_ptr;
2974         }
2975         return false;
2976 }
2977
2978 /**
2979  *Display the contents of the global structure.
2980  */
2981
2982 static void dump_globals(struct loadparm_context *lp_ctx, FILE *f,
2983                          bool show_defaults)
2984 {
2985         int i;
2986         struct parmlist_entry *data;
2987
2988         fprintf(f, "# Global parameters\n[global]\n");
2989
2990         for (i = 0; parm_table[i].label; i++)
2991                 if (parm_table[i].p_class == P_GLOBAL &&
2992                     parm_table[i].offset != -1 &&
2993                     (i == 0 || (parm_table[i].offset != parm_table[i - 1].offset))) {
2994                         if (!show_defaults && (lp_ctx->flags[i] & FLAG_DEFAULT))
2995                                 continue;
2996                         fprintf(f, "\t%s = ", parm_table[i].label);
2997                         print_parameter(&parm_table[i], lpcfg_parm_ptr(lp_ctx, NULL, &parm_table[i]), f);
2998                         fprintf(f, "\n");
2999         }
3000         if (lp_ctx->globals->param_opt != NULL) {
3001                 for (data = lp_ctx->globals->param_opt; data;
3002                      data = data->next) {
3003                         if (!show_defaults && (data->priority & FLAG_DEFAULT)) {
3004                                 continue;
3005                         }
3006                         fprintf(f, "\t%s = %s\n", data->key, data->value);
3007                 }
3008         }
3009
3010 }
3011
3012 /**
3013  * Display the contents of a single services record.
3014  */
3015
3016 static void dump_a_service(struct loadparm_service * pService, struct loadparm_service *sDefault, FILE * f,
3017                            unsigned int *flags)
3018 {
3019         int i;
3020         struct parmlist_entry *data;
3021
3022         if (pService != sDefault)
3023                 fprintf(f, "\n[%s]\n", pService->szService);
3024
3025         for (i = 0; parm_table[i].label; i++) {
3026                 if (parm_table[i].p_class == P_LOCAL &&
3027                     parm_table[i].offset != -1 &&
3028                     (*parm_table[i].label != '-') &&
3029                     (i == 0 || (parm_table[i].offset != parm_table[i - 1].offset)))
3030                 {
3031                         if (pService == sDefault) {
3032                                 if (flags && (flags[i] & FLAG_DEFAULT)) {
3033                                         continue;
3034                                 }
3035                                 if (defaults_saved) {
3036                                         if (is_default(sDefault, i)) {
3037                                                 continue;
3038                                         }
3039                                 }
3040                         } else {
3041                                 if (equal_parameter(parm_table[i].type,
3042                                                     ((char *)pService) +
3043                                                     parm_table[i].offset,
3044                                                     ((char *)sDefault) +
3045                                                     parm_table[i].offset))
3046                                         continue;
3047                         }
3048
3049                         fprintf(f, "\t%s = ", parm_table[i].label);
3050                         print_parameter(&parm_table[i],
3051                                         ((char *)pService) + parm_table[i].offset, f);
3052                         fprintf(f, "\n");
3053                 }
3054         }
3055         if (pService->param_opt != NULL) {
3056                 for (data = pService->param_opt; data; data = data->next) {
3057                         fprintf(f, "\t%s = %s\n", data->key, data->value);
3058                 }
3059         }
3060 }
3061
3062 bool lpcfg_dump_a_parameter(struct loadparm_context *lp_ctx,
3063                             struct loadparm_service *service,
3064                             const char *parm_name, FILE * f)
3065 {
3066         struct parm_struct *parm;
3067         void *ptr;
3068
3069         parm = lpcfg_parm_struct(parm_name);
3070         if (!parm) {
3071                 return false;
3072         }
3073
3074         ptr = lpcfg_parm_ptr(lp_ctx, service,parm);
3075
3076         print_parameter(parm, ptr, f);
3077         fprintf(f, "\n");
3078         return true;
3079 }
3080
3081 /**
3082  * Return info about the next parameter in a service.
3083  * snum==-1 gives the globals.
3084  * Return NULL when out of parameters.
3085  */
3086
3087
3088 struct parm_struct *lpcfg_next_parameter(struct loadparm_context *lp_ctx, int snum, int *i,
3089                                          int allparameters)
3090 {
3091         if (snum == -1) {
3092                 /* do the globals */
3093                 for (; parm_table[*i].label; (*i)++) {
3094                         if (parm_table[*i].offset == -1
3095                             || (*parm_table[*i].label == '-'))
3096                                 continue;
3097
3098                         if ((*i) > 0
3099                             && (parm_table[*i].offset ==
3100                                 parm_table[(*i) - 1].offset))
3101                                 continue;
3102
3103                         return &parm_table[(*i)++];
3104                 }
3105         } else {
3106                 struct loadparm_service *pService = lp_ctx->services[snum];
3107
3108                 for (; parm_table[*i].label; (*i)++) {
3109                         if (parm_table[*i].p_class == P_LOCAL &&
3110                             parm_table[*i].offset != -1 &&
3111                             (*parm_table[*i].label != '-') &&
3112                             ((*i) == 0 ||
3113                              (parm_table[*i].offset !=
3114                               parm_table[(*i) - 1].offset)))
3115                         {
3116                                 if (allparameters ||
3117                                     !equal_parameter(parm_table[*i].type,
3118                                                      ((char *)pService) +
3119                                                      parm_table[*i].offset,
3120                                                      ((char *)lp_ctx->sDefault) +
3121                                                      parm_table[*i].offset))
3122                                 {
3123                                         return &parm_table[(*i)++];
3124                                 }
3125                         }
3126                 }
3127         }
3128
3129         return NULL;
3130 }
3131
3132
3133 /**
3134  * Auto-load some home services.
3135  */
3136 static void lpcfg_add_auto_services(struct loadparm_context *lp_ctx,
3137                                     const char *str)
3138 {
3139         return;
3140 }
3141
3142
3143 /**
3144  * Unload unused services.
3145  */
3146
3147 void lpcfg_killunused(struct loadparm_context *lp_ctx,
3148                    struct smbsrv_connection *smb,
3149                    bool (*snumused) (struct smbsrv_connection *, int))
3150 {
3151         int i;
3152         for (i = 0; i < lp_ctx->iNumServices; i++) {
3153                 if (lp_ctx->services[i] == NULL)
3154                         continue;
3155
3156                 if (!snumused || !snumused(smb, i)) {
3157                         talloc_free(lp_ctx->services[i]);
3158                         lp_ctx->services[i] = NULL;
3159                 }
3160         }
3161 }
3162
3163
3164 static int lpcfg_destructor(struct loadparm_context *lp_ctx)
3165 {
3166         struct parmlist_entry *data;
3167
3168         if (lp_ctx->refuse_free) {
3169                 /* someone is trying to free the
3170                    global_loadparm_context.
3171                    We can't allow that. */
3172                 return -1;
3173         }
3174
3175         if (lp_ctx->globals->param_opt != NULL) {
3176                 struct parmlist_entry *next;
3177                 for (data = lp_ctx->globals->param_opt; data; data=next) {
3178                         next = data->next;
3179                         if (data->priority & FLAG_CMDLINE) continue;
3180                         DLIST_REMOVE(lp_ctx->globals->param_opt, data);
3181                         talloc_free(data);
3182                 }
3183         }
3184
3185         return 0;
3186 }
3187
3188 /**
3189  * Initialise the global parameter structure.
3190  *
3191  * Note that most callers should use loadparm_init_global() instead
3192  */
3193 struct loadparm_context *loadparm_init(TALLOC_CTX *mem_ctx)
3194 {
3195         int i;
3196         char *myname;
3197         struct loadparm_context *lp_ctx;
3198         struct parmlist_entry *parm;
3199         char *logfile;
3200
3201         lp_ctx = talloc_zero(mem_ctx, struct loadparm_context);
3202         if (lp_ctx == NULL)
3203                 return NULL;
3204
3205         talloc_set_destructor(lp_ctx, lpcfg_destructor);
3206         lp_ctx->bInGlobalSection = true;
3207         lp_ctx->globals = talloc_zero(lp_ctx, struct loadparm_global);
3208         lp_ctx->sDefault = talloc_zero(lp_ctx, struct loadparm_service);
3209
3210         lp_ctx->sDefault->iMaxPrintJobs = 1000;
3211         lp_ctx->sDefault->bAvailable = true;
3212         lp_ctx->sDefault->bBrowseable = true;
3213         lp_ctx->sDefault->bRead_only = true;
3214         lp_ctx->sDefault->bMap_archive = true;
3215         lp_ctx->sDefault->bStrictLocking = true;
3216         lp_ctx->sDefault->bOplocks = true;
3217         lp_ctx->sDefault->iCreate_mask = 0744;
3218         lp_ctx->sDefault->iCreate_force_mode = 0000;
3219         lp_ctx->sDefault->iDir_mask = 0755;
3220         lp_ctx->sDefault->iDir_force_mode = 0000;
3221
3222         DEBUG(3, ("Initialising global parameters\n"));
3223
3224         for (i = 0; parm_table[i].label; i++) {
3225                 if ((parm_table[i].type == P_STRING ||
3226                      parm_table[i].type == P_USTRING) &&
3227                     parm_table[i].offset != -1 &&
3228                     !(lp_ctx->flags[i] & FLAG_CMDLINE)) {
3229                         char **r;
3230                         if (parm_table[i].p_class == P_LOCAL) {
3231                                 r = (char **)(((char *)lp_ctx->sDefault) + parm_table[i].offset);
3232                         } else {
3233                                 r = (char **)(((char *)lp_ctx->globals) + parm_table[i].offset);
3234                         }
3235                         *r = talloc_strdup(lp_ctx, "");
3236                 }
3237         }
3238
3239         logfile = talloc_asprintf(lp_ctx, "%s/log.samba", dyn_LOGFILEBASE);
3240         lpcfg_do_global_parameter(lp_ctx, "log file", logfile);
3241         talloc_free(logfile);
3242
3243         lpcfg_do_global_parameter(lp_ctx, "log level", "0");
3244
3245         lpcfg_do_global_parameter(lp_ctx, "share backend", "classic");
3246
3247         lpcfg_do_global_parameter(lp_ctx, "share backend", "classic");
3248
3249         lpcfg_do_global_parameter(lp_ctx, "server role", "standalone");
3250
3251         /* options that can be set on the command line must be initialised via
3252            the slower lpcfg_do_global_parameter() to ensure that FLAG_CMDLINE is obeyed */
3253 #ifdef TCP_NODELAY
3254         lpcfg_do_global_parameter(lp_ctx, "socket options", "TCP_NODELAY");
3255 #endif
3256         lpcfg_do_global_parameter(lp_ctx, "workgroup", DEFAULT_WORKGROUP);
3257         myname = get_myname(lp_ctx);
3258         lpcfg_do_global_parameter(lp_ctx, "netbios name", myname);
3259         talloc_free(myname);
3260         lpcfg_do_global_parameter(lp_ctx, "name resolve order", "wins host bcast");
3261
3262         lpcfg_do_global_parameter(lp_ctx, "fstype", "NTFS");
3263
3264         lpcfg_do_global_parameter(lp_ctx, "ntvfs handler", "unixuid default");
3265         lpcfg_do_global_parameter(lp_ctx, "max connections", "-1");
3266
3267         lpcfg_do_global_parameter(lp_ctx, "dcerpc endpoint servers", "epmapper srvsvc wkssvc rpcecho samr netlogon lsarpc spoolss drsuapi winreg dssetup unixinfo browser eventlog6 backupkey");
3268         lpcfg_do_global_parameter(lp_ctx, "server services", "smb rpc nbt wrepl ldap cldap kdc drepl winbind ntp_signd kcc dnsupdate web");
3269         lpcfg_do_global_parameter(lp_ctx, "ntptr providor", "simple_ldb");
3270         /* the winbind method for domain controllers is for both RODC
3271            auth forwarding and for trusted domains */
3272         lpcfg_do_global_parameter(lp_ctx, "private dir", dyn_PRIVATE_DIR);
3273         lpcfg_do_global_parameter(lp_ctx, "spoolss database", "spoolss.ldb");
3274         lpcfg_do_global_parameter(lp_ctx, "wins config database", "wins_config.ldb");
3275         lpcfg_do_global_parameter(lp_ctx, "wins database", "wins.ldb");
3276         lpcfg_do_global_parameter(lp_ctx, "registry:HKEY_LOCAL_MACHINE", "hklm.ldb");
3277
3278         /* This hive should be dynamically generated by Samba using
3279            data from the sam, but for the moment leave it in a tdb to
3280            keep regedt32 from popping up an annoying dialog. */
3281         lpcfg_do_global_parameter(lp_ctx, "registry:HKEY_USERS", "hku.ldb");
3282
3283         /* using UTF8 by default allows us to support all chars */
3284         lpcfg_do_global_parameter(lp_ctx, "unix charset", "UTF8");
3285
3286         /* Use codepage 850 as a default for the dos character set */
3287         lpcfg_do_global_parameter(lp_ctx, "dos charset", "CP850");
3288
3289         /*
3290          * Allow the default PASSWD_CHAT to be overridden in local.h.
3291          */
3292         lpcfg_do_global_parameter(lp_ctx, "passwd chat", DEFAULT_PASSWD_CHAT);
3293
3294         lpcfg_do_global_parameter(lp_ctx, "pid directory", dyn_PIDDIR);
3295         lpcfg_do_global_parameter(lp_ctx, "lock dir", dyn_LOCKDIR);
3296         lpcfg_do_global_parameter(lp_ctx, "ncalrpc dir", dyn_NCALRPCDIR);
3297
3298         lpcfg_do_global_parameter(lp_ctx, "socket address", "");
3299         lpcfg_do_global_parameter_var(lp_ctx, "server string",
3300                                    "Samba %s", SAMBA_VERSION_STRING);
3301
3302         lpcfg_do_global_parameter(lp_ctx, "password server", "*");
3303
3304         lpcfg_do_global_parameter(lp_ctx, "max mux", "50");
3305         lpcfg_do_global_parameter(lp_ctx, "max xmit", "12288");
3306         lpcfg_do_global_parameter(lp_ctx, "password level", "0");
3307         lpcfg_do_global_parameter(lp_ctx, "LargeReadwrite", "True");
3308         lpcfg_do_global_parameter(lp_ctx, "server min protocol", "CORE");
3309         lpcfg_do_global_parameter(lp_ctx, "server max protocol", "NT1");
3310         lpcfg_do_global_parameter(lp_ctx, "client min protocol", "CORE");
3311         lpcfg_do_global_parameter(lp_ctx, "client max protocol", "NT1");
3312         lpcfg_do_global_parameter(lp_ctx, "security", "USER");
3313         lpcfg_do_global_parameter(lp_ctx, "paranoid server security", "True");
3314         lpcfg_do_global_parameter(lp_ctx, "EncryptPasswords", "True");
3315         lpcfg_do_global_parameter(lp_ctx, "ReadRaw", "True");
3316         lpcfg_do_global_parameter(lp_ctx, "WriteRaw", "True");
3317         lpcfg_do_global_parameter(lp_ctx, "NullPasswords", "False");
3318         lpcfg_do_global_parameter(lp_ctx, "ObeyPamRestrictions", "False");
3319
3320         lpcfg_do_global_parameter(lp_ctx, "TimeServer", "False");
3321         lpcfg_do_global_parameter(lp_ctx, "BindInterfacesOnly", "False");
3322         lpcfg_do_global_parameter(lp_ctx, "Unicode", "True");
3323         lpcfg_do_global_parameter(lp_ctx, "ClientLanManAuth", "False");
3324         lpcfg_do_global_parameter(lp_ctx, "ClientNTLMv2Auth", "True");
3325         lpcfg_do_global_parameter(lp_ctx, "LanmanAuth", "False");
3326         lpcfg_do_global_parameter(lp_ctx, "NTLMAuth", "True");
3327         lpcfg_do_global_parameter(lp_ctx, "client use spnego principal", "False");
3328
3329         lpcfg_do_global_parameter(lp_ctx, "UnixExtensions", "False");
3330
3331         lpcfg_do_global_parameter(lp_ctx, "PreferredMaster", "Auto");
3332         lpcfg_do_global_parameter(lp_ctx, "LocalMaster", "True");
3333
3334         lpcfg_do_global_parameter(lp_ctx, "wins support", "False");
3335         lpcfg_do_global_parameter(lp_ctx, "dns proxy", "True");
3336
3337         lpcfg_do_global_parameter(lp_ctx, "winbind separator", "\\");
3338         lpcfg_do_global_parameter(lp_ctx, "winbind sealed pipes", "True");
3339         lpcfg_do_global_parameter(lp_ctx, "winbindd socket directory", dyn_WINBINDD_SOCKET_DIR);
3340         lpcfg_do_global_parameter(lp_ctx, "winbindd privileged socket directory", dyn_WINBINDD_PRIVILEGED_SOCKET_DIR);
3341         lpcfg_do_global_parameter(lp_ctx, "template shell", "/bin/false");
3342         lpcfg_do_global_parameter(lp_ctx, "template homedir", "/home/%WORKGROUP%/%ACCOUNTNAME%");
3343         lpcfg_do_global_parameter(lp_ctx, "idmap trusted only", "False");
3344
3345         lpcfg_do_global_parameter(lp_ctx, "client signing", "Yes");
3346         lpcfg_do_global_parameter(lp_ctx, "server signing", "auto");
3347
3348         lpcfg_do_global_parameter(lp_ctx, "use spnego", "True");
3349
3350         lpcfg_do_global_parameter(lp_ctx, "smb ports", "445 139");
3351         lpcfg_do_global_parameter(lp_ctx, "nbt port", "137");
3352         lpcfg_do_global_parameter(lp_ctx, "dgram port", "138");
3353         lpcfg_do_global_parameter(lp_ctx, "cldap port", "389");
3354         lpcfg_do_global_parameter(lp_ctx, "krb5 port", "88");
3355         lpcfg_do_global_parameter(lp_ctx, "kpasswd port", "464");
3356         lpcfg_do_global_parameter(lp_ctx, "web port", "901");
3357
3358         lpcfg_do_global_parameter(lp_ctx, "nt status support", "True");
3359
3360         lpcfg_do_global_parameter(lp_ctx, "max wins ttl", "518400"); /* 6 days */
3361         lpcfg_do_global_parameter(lp_ctx, "min wins ttl", "10");
3362
3363         lpcfg_do_global_parameter(lp_ctx, "tls enabled", "True");
3364         lpcfg_do_global_parameter(lp_ctx, "tls keyfile", "tls/key.pem");
3365         lpcfg_do_global_parameter(lp_ctx, "tls certfile", "tls/cert.pem");
3366         lpcfg_do_global_parameter(lp_ctx, "tls cafile", "tls/ca.pem");
3367         lpcfg_do_global_parameter(lp_ctx, "prefork children:smb", "4");
3368
3369         lpcfg_do_global_parameter(lp_ctx, "ntp signd socket directory", dyn_NTP_SIGND_SOCKET_DIR);
3370         lpcfg_do_global_parameter(lp_ctx, "rndc command", "/usr/sbin/rndc");
3371         lpcfg_do_global_parameter_var(lp_ctx, "dns update command", "%s/samba_dnsupdate", dyn_SCRIPTSBINDIR);
3372         lpcfg_do_global_parameter_var(lp_ctx, "spn update command", "%s/samba_spnupdate", dyn_SCRIPTSBINDIR);
3373         lpcfg_do_global_parameter(lp_ctx, "nsupdate command", "/usr/bin/nsupdate -g");
3374
3375         for (i = 0; parm_table[i].label; i++) {
3376                 if (!(lp_ctx->flags[i] & FLAG_CMDLINE)) {
3377                         lp_ctx->flags[i] |= FLAG_DEFAULT;
3378                 }
3379         }
3380
3381         for (parm=lp_ctx->globals->param_opt; parm; parm=parm->next) {
3382                 if (!(parm->priority & FLAG_CMDLINE)) {
3383                         parm->priority |= FLAG_DEFAULT;
3384                 }
3385         }
3386
3387         return lp_ctx;
3388 }
3389
3390 /**
3391  * Initialise the global parameter structure.
3392  */
3393 struct loadparm_context *loadparm_init_global(bool load_default)
3394 {
3395         if (global_loadparm_context == NULL) {
3396                 global_loadparm_context = loadparm_init(NULL);
3397         }
3398         if (global_loadparm_context == NULL) {
3399                 return NULL;
3400         }
3401         global_loadparm_context->global = true;
3402         if (load_default && !global_loadparm_context->loaded) {
3403                 lpcfg_load_default(global_loadparm_context);
3404         }
3405         global_loadparm_context->refuse_free = true;
3406         return global_loadparm_context;
3407 }
3408
3409 /**
3410  * Initialise the global parameter structure.
3411  */
3412 struct loadparm_context *loadparm_init_s3(TALLOC_CTX *mem_ctx, 
3413                                           const struct loadparm_s3_context *s3_fns)
3414 {
3415         struct loadparm_context *loadparm_context = loadparm_init(mem_ctx);
3416         if (!loadparm_context) {
3417                 return NULL;
3418         }
3419         loadparm_context->s3_fns = s3_fns;
3420         return loadparm_context;
3421 }
3422
3423 const char *lpcfg_configfile(struct loadparm_context *lp_ctx)
3424 {
3425         return lp_ctx->szConfigFile;
3426 }
3427
3428 const char *lp_default_path(void)
3429 {
3430     if (getenv("SMB_CONF_PATH"))
3431         return getenv("SMB_CONF_PATH");
3432     else
3433         return dyn_CONFIGFILE;
3434 }
3435
3436 /**
3437  * Update the internal state of a loadparm context after settings 
3438  * have changed.
3439  */
3440 static bool lpcfg_update(struct loadparm_context *lp_ctx)
3441 {
3442         struct debug_settings settings;
3443         lpcfg_add_auto_services(lp_ctx, lpcfg_auto_services(lp_ctx));
3444
3445         if (!lp_ctx->globals->szWINSservers && lp_ctx->globals->bWINSsupport) {
3446                 lpcfg_do_global_parameter(lp_ctx, "wins server", "127.0.0.1");
3447         }
3448
3449         if (!lp_ctx->global) {
3450                 return true;
3451         }
3452
3453         panic_action = lp_ctx->globals->panic_action;
3454
3455         reload_charcnv(lp_ctx);
3456
3457         ZERO_STRUCT(settings);
3458         /* Add any more debug-related smb.conf parameters created in
3459          * future here */
3460         settings.timestamp_logs = true;
3461         debug_set_settings(&settings);
3462
3463         /* FIXME: This is a bit of a hack, but we can't use a global, since 
3464          * not everything that uses lp also uses the socket library */
3465         if (lpcfg_parm_bool(lp_ctx, NULL, "socket", "testnonblock", false)) {
3466                 setenv("SOCKET_TESTNONBLOCK", "1", 1);
3467         } else {
3468                 unsetenv("SOCKET_TESTNONBLOCK");
3469         }
3470
3471         return true;
3472 }
3473
3474 bool lpcfg_load_default(struct loadparm_context *lp_ctx)
3475 {
3476     const char *path;
3477
3478     path = lp_default_path();
3479
3480     if (!file_exist(path)) {
3481             /* We allow the default smb.conf file to not exist, 
3482              * basically the equivalent of an empty file. */
3483             return lpcfg_update(lp_ctx);
3484     }
3485
3486     return lpcfg_load(lp_ctx, path);
3487 }
3488
3489 /**
3490  * Load the services array from the services file.
3491  *
3492  * Return True on success, False on failure.
3493  */
3494 bool lpcfg_load(struct loadparm_context *lp_ctx, const char *filename)
3495 {
3496         char *n2;
3497         bool bRetval;
3498
3499         filename = talloc_strdup(lp_ctx, filename);
3500
3501         lp_ctx->szConfigFile = filename;
3502
3503         lp_ctx->bInGlobalSection = true;
3504         n2 = standard_sub_basic(lp_ctx, lp_ctx->szConfigFile);
3505         DEBUG(2, ("lpcfg_load: refreshing parameters from %s\n", n2));
3506
3507         add_to_file_list(lp_ctx, lp_ctx->szConfigFile, n2);
3508
3509         /* We get sections first, so have to start 'behind' to make up */
3510         lp_ctx->currentService = NULL;
3511         bRetval = pm_process(n2, do_section, do_parameter, lp_ctx);
3512
3513         /* finish up the last section */
3514         DEBUG(4, ("pm_process() returned %s\n", BOOLSTR(bRetval)));
3515         if (bRetval)
3516                 if (lp_ctx->currentService != NULL)
3517                         bRetval = service_ok(lp_ctx->currentService);
3518
3519         bRetval = bRetval && lpcfg_update(lp_ctx);
3520
3521         /* we do this unconditionally, so that it happens even
3522            for a missing smb.conf */
3523         reload_charcnv(lp_ctx);
3524
3525         if (bRetval == true) {
3526                 /* set this up so that any child python tasks will
3527                    find the right smb.conf */
3528                 setenv("SMB_CONF_PATH", filename, 1);
3529
3530                 /* set the context used by the lp_*() function
3531                    varients */
3532                 global_loadparm_context = lp_ctx;
3533                 lp_ctx->loaded = true;
3534         }
3535
3536         return bRetval;
3537 }
3538
3539 /**
3540  * Return the max number of services.
3541  */
3542
3543 int lpcfg_numservices(struct loadparm_context *lp_ctx)
3544 {
3545         return lp_ctx->iNumServices;
3546 }
3547
3548 /**
3549  * Display the contents of the services array in human-readable form.
3550  */
3551
3552 void lpcfg_dump(struct loadparm_context *lp_ctx, FILE *f, bool show_defaults,
3553              int maxtoprint)
3554 {
3555         int iService;
3556
3557         defaults_saved = !show_defaults;
3558
3559         dump_globals(lp_ctx, f, show_defaults);
3560
3561         dump_a_service(lp_ctx->sDefault, lp_ctx->sDefault, f, lp_ctx->flags);
3562
3563         for (iService = 0; iService < maxtoprint; iService++)
3564                 lpcfg_dump_one(f, show_defaults, lp_ctx->services[iService], lp_ctx->sDefault);
3565 }
3566
3567 /**
3568  * Display the contents of one service in human-readable form.
3569  */
3570 void lpcfg_dump_one(FILE *f, bool show_defaults, struct loadparm_service *service, struct loadparm_service *sDefault)
3571 {
3572         if (service != NULL) {
3573                 if (service->szService[0] == '\0')
3574                         return;
3575                 dump_a_service(service, sDefault, f, NULL);
3576         }
3577 }
3578
3579 struct loadparm_service *lpcfg_servicebynum(struct loadparm_context *lp_ctx,
3580                                          int snum)
3581 {
3582         return lp_ctx->services[snum];
3583 }
3584
3585 struct loadparm_service *lpcfg_service(struct loadparm_context *lp_ctx,
3586                                     const char *service_name)
3587 {
3588         int iService;
3589         char *serviceName;
3590
3591         for (iService = lp_ctx->iNumServices - 1; iService >= 0; iService--) {
3592                 if (lp_ctx->services[iService] &&
3593                     lp_ctx->services[iService]->szService) {
3594                         /*
3595                          * The substitution here is used to support %U is
3596                          * service names
3597                          */
3598                         serviceName = standard_sub_basic(
3599                                         lp_ctx->services[iService],
3600                                         lp_ctx->services[iService]->szService);
3601                         if (strequal(serviceName, service_name)) {
3602                                 talloc_free(serviceName);
3603                                 return lp_ctx->services[iService];
3604                         }
3605                         talloc_free(serviceName);
3606                 }
3607         }
3608
3609         DEBUG(7,("lpcfg_servicenumber: couldn't find %s\n", service_name));
3610         return NULL;
3611 }
3612
3613 const char *lpcfg_servicename(const struct loadparm_service *service)
3614 {
3615         return lp_string((const char *)service->szService);
3616 }
3617
3618 /**
3619  * A useful volume label function.
3620  */
3621 const char *lpcfg_volume_label(struct loadparm_service *service, struct loadparm_service *sDefault)
3622 {
3623         const char *ret;
3624         ret = lp_string((const char *)((service != NULL && service->volume != NULL) ?
3625                                        service->volume : sDefault->volume));
3626         if (!*ret)
3627                 return lpcfg_servicename(service);
3628         return ret;
3629 }
3630
3631 /**
3632  * If we are PDC then prefer us as DMB
3633  */
3634 const char *lpcfg_printername(struct loadparm_service *service, struct loadparm_service *sDefault)
3635 {
3636         const char *ret;
3637         ret = lp_string((const char *)((service != NULL && service->szPrintername != NULL) ?
3638                                        service->szPrintername : sDefault->szPrintername));
3639         if (ret == NULL || (ret != NULL && *ret == '\0'))
3640                 ret = lpcfg_servicename(service);
3641
3642         return ret;
3643 }
3644
3645
3646 /**
3647  * Return the max print jobs per queue.
3648  */
3649 int lpcfg_maxprintjobs(struct loadparm_service *service, struct loadparm_service *sDefault)
3650 {
3651         int maxjobs = (service != NULL) ? service->iMaxPrintJobs : sDefault->iMaxPrintJobs;
3652         if (maxjobs <= 0 || maxjobs >= PRINT_MAX_JOBID)
3653                 maxjobs = PRINT_MAX_JOBID - 1;
3654
3655         return maxjobs;
3656 }
3657
3658 struct smb_iconv_handle *lpcfg_iconv_handle(struct loadparm_context *lp_ctx)
3659 {
3660         if (lp_ctx == NULL) {
3661                 return get_iconv_handle();
3662         }
3663         return lp_ctx->iconv_handle;
3664 }
3665
3666 _PUBLIC_ void reload_charcnv(struct loadparm_context *lp_ctx)
3667 {
3668         struct smb_iconv_handle *old_ic = lp_ctx->iconv_handle;
3669         if (!lp_ctx->global) {
3670                 return;
3671         }
3672
3673         if (old_ic == NULL) {
3674                 old_ic = global_iconv_handle;
3675         }
3676         lp_ctx->iconv_handle = smb_iconv_handle_reinit_lp(lp_ctx, lp_ctx, old_ic);
3677         global_iconv_handle = lp_ctx->iconv_handle;
3678 }
3679
3680 void lpcfg_smbcli_options(struct loadparm_context *lp_ctx,
3681                          struct smbcli_options *options)
3682 {
3683         options->max_xmit = lpcfg_max_xmit(lp_ctx);
3684         options->max_mux = lpcfg_maxmux(lp_ctx);
3685         options->use_spnego = lpcfg_nt_status_support(lp_ctx) && lpcfg_use_spnego(lp_ctx);
3686         options->signing = lpcfg_client_signing(lp_ctx);
3687         options->request_timeout = SMB_REQUEST_TIMEOUT;
3688         options->ntstatus_support = lpcfg_nt_status_support(lp_ctx);
3689         options->max_protocol = lpcfg_cli_maxprotocol(lp_ctx);
3690         options->unicode = lpcfg_unicode(lp_ctx);
3691         options->use_oplocks = true;
3692         options->use_level2_oplocks = true;
3693 }
3694
3695 void lpcfg_smbcli_session_options(struct loadparm_context *lp_ctx,
3696                                  struct smbcli_session_options *options)
3697 {
3698         options->lanman_auth = lpcfg_client_lanman_auth(lp_ctx);
3699         options->ntlmv2_auth = lpcfg_client_ntlmv2_auth(lp_ctx);
3700         options->plaintext_auth = lpcfg_client_plaintext_auth(lp_ctx);
3701 }
3702
3703 _PUBLIC_ char *lpcfg_tls_keyfile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3704 {
3705         return lpcfg_private_path(mem_ctx, lp_ctx, lp_ctx->globals->tls_keyfile);
3706 }
3707
3708 _PUBLIC_ char *lpcfg_tls_certfile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3709 {
3710         return lpcfg_private_path(mem_ctx, lp_ctx, lp_ctx->globals->tls_certfile);
3711 }
3712
3713 _PUBLIC_ char *lpcfg_tls_cafile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3714 {
3715         return lpcfg_private_path(mem_ctx, lp_ctx, lp_ctx->globals->tls_cafile);
3716 }
3717
3718 _PUBLIC_ char *lpcfg_tls_crlfile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3719 {
3720         return lpcfg_private_path(mem_ctx, lp_ctx, lp_ctx->globals->tls_crlfile);
3721 }
3722
3723 _PUBLIC_ char *lpcfg_tls_dhpfile(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3724 {
3725         return lpcfg_private_path(mem_ctx, lp_ctx, lp_ctx->globals->tls_dhpfile);
3726 }
3727
3728 _PUBLIC_ struct dcerpc_server_info *lpcfg_dcerpc_server_info(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3729 {
3730         struct dcerpc_server_info *ret = talloc_zero(mem_ctx, struct dcerpc_server_info);
3731
3732         ret->domain_name = talloc_reference(mem_ctx, lpcfg_workgroup(lp_ctx));
3733         ret->version_major = lpcfg_parm_int(lp_ctx, NULL, "server_info", "version_major", 5);
3734         ret->version_minor = lpcfg_parm_int(lp_ctx, NULL, "server_info", "version_minor", 2);
3735         ret->version_build = lpcfg_parm_int(lp_ctx, NULL, "server_info", "version_build", 3790);
3736
3737         return ret;
3738 }
3739
3740 struct gensec_settings *lpcfg_gensec_settings(TALLOC_CTX *mem_ctx, struct loadparm_context *lp_ctx)
3741 {
3742         struct gensec_settings *settings = talloc(mem_ctx, struct gensec_settings);
3743         if (settings == NULL)
3744                 return NULL;
3745         SMB_ASSERT(lp_ctx != NULL);
3746         settings->lp_ctx = talloc_reference(settings, lp_ctx);
3747         settings->target_hostname = lpcfg_parm_string(lp_ctx, NULL, "gensec", "target_hostname");
3748         return settings;
3749 }
3750