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