-
Notifications
You must be signed in to change notification settings - Fork 80
/
Copy pathconfpars.c
6439 lines (5791 loc) · 161 KB
/
confpars.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
/* confpars.c
Parser for dhcpd config file... */
/*
* Copyright (C) 2004-2022 Internet Systems Consortium, Inc. ("ISC")
* Copyright (c) 1995-2003 by Internet Software Consortium
*
* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/.
*
* THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL ISC BE LIABLE FOR
* ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
* OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
*
* Internet Systems Consortium, Inc.
* PO Box 360
* Newmarket, NH 03857 USA
* https://www.isc.org/
*
*/
/*! \file server/confpars.c */
#include "dhcpd.h"
static unsigned char global_host_once = 1;
static int parse_binding_value(struct parse *cfile,
struct binding_value *value);
static void parse_authoring_byte_order (struct parse *cfile);
static void parse_lease_id_format (struct parse *cfile);
#ifdef DHCPv6
static int parse_iaid_duid(struct parse *cfile, struct ia_xx** ia,
u_int32_t *iaid, const char* file, int line);
#endif
#if defined (TRACING)
trace_type_t *trace_readconf_type;
trace_type_t *trace_readleases_type;
void parse_trace_setup ()
{
trace_readconf_type = trace_type_register ("readconf", (void *)0,
trace_conf_input,
trace_conf_stop, MDL);
trace_readleases_type = trace_type_register ("readleases", (void *)0,
trace_conf_input,
trace_conf_stop, MDL);
}
#endif
/* conf-file :== parameters declarations END_OF_FILE
parameters :== <nil> | parameter | parameters parameter
declarations :== <nil> | declaration | declarations declaration */
isc_result_t readconf ()
{
isc_result_t res;
res = read_conf_file (path_dhcpd_conf, root_group, ROOT_GROUP, 0);
#if defined(LDAP_CONFIGURATION)
if (res != ISC_R_SUCCESS)
return (res);
return ldap_read_config ();
#else
return (res);
#endif
}
isc_result_t read_conf_file (const char *filename, struct group *group,
int group_type, int leasep)
{
int file;
struct parse *cfile;
isc_result_t status;
#if defined (TRACING)
char *fbuf, *dbuf;
off_t flen;
int result;
unsigned tflen, ulen;
trace_type_t *ttype;
if (leasep)
ttype = trace_readleases_type;
else
ttype = trace_readconf_type;
/* If we're in playback, we need to snarf the contents of the
named file out of the playback file rather than trying to
open and read it. */
if (trace_playback ()) {
dbuf = (char *)0;
tflen = 0;
status = trace_get_file (ttype, filename, &tflen, &dbuf);
if (status != ISC_R_SUCCESS)
return status;
ulen = tflen;
/* What we get back is filename\0contents, where contents is
terminated just by the length. So we figure out the length
of the filename, and subtract that and the NUL from the
total length to get the length of the contents of the file.
We make fbuf a pointer to the contents of the file, and
leave dbuf as it is so we can free it later. */
tflen = strlen (dbuf);
ulen = ulen - tflen - 1;
fbuf = dbuf + tflen + 1;
goto memfile;
}
#endif
if ((file = open (filename, O_RDONLY)) < 0) {
if (leasep) {
log_error ("Can't open lease database %s: %m --",
path_dhcpd_db);
log_error (" check for failed database %s!",
"rewrite attempt");
log_error ("Please read the dhcpd.leases manual%s",
" page if you");
log_fatal ("don't know what to do about this.");
} else {
log_fatal ("Can't open %s: %m", filename);
}
}
cfile = (struct parse *)0;
#if defined (TRACING)
flen = lseek (file, (off_t)0, SEEK_END);
if (flen < 0) {
boom:
log_fatal ("Can't lseek on %s: %m", filename);
}
if (lseek (file, (off_t)0, SEEK_SET) < 0)
goto boom;
/* Can't handle files greater than 2^31-1. */
if ((sizeof(void*) < 8) && flen > 0x7FFFFFFFUL)
log_fatal ("%s: file is too long to buffer.", filename);
ulen = flen;
/* Allocate a buffer that will be what's written to the tracefile,
and also will be what we parse from. */
tflen = strlen (filename);
dbuf = dmalloc (ulen + tflen + 1, MDL);
if (!dbuf)
log_fatal ("No memory for %s (%d bytes)",
filename, ulen);
/* Copy the name into the beginning, nul-terminated. */
strcpy (dbuf, filename);
/* Load the file in after the NUL. */
fbuf = dbuf + tflen + 1;
result = read (file, fbuf, ulen);
if (result < 0)
log_fatal ("Can't read in %s: %m", filename);
if (result != ulen)
log_fatal ("%s: short read of %d bytes instead of %d.",
filename, ulen, result);
close (file);
memfile:
/* If we're recording, write out the filename and file contents. */
if (trace_record ())
trace_write_packet (ttype, ulen + tflen + 1, dbuf, MDL);
status = new_parse(&cfile, -1, fbuf, ulen, filename, 0); /* XXX */
#else
status = new_parse(&cfile, file, NULL, 0, filename, 0);
#endif
if (status != ISC_R_SUCCESS || cfile == NULL)
return status;
if (leasep)
status = lease_file_subparse (cfile);
else
status = conf_file_subparse (cfile, group, group_type);
end_parse (&cfile);
#if defined (TRACING)
dfree (dbuf, MDL);
#endif
return status;
}
#if defined (TRACING)
void trace_conf_input (trace_type_t *ttype, unsigned len, char *data)
{
char *fbuf;
unsigned flen;
unsigned tflen;
struct parse *cfile = (struct parse *)0;
static int postconf_initialized;
static int leaseconf_initialized;
isc_result_t status;
/* Do what's done above, except that we don't have to read in the
data, because it's already been read for us. */
tflen = strlen (data);
flen = len - tflen - 1;
fbuf = data + tflen + 1;
/* If we're recording, write out the filename and file contents. */
if (trace_record ())
trace_write_packet (ttype, len, data, MDL);
status = new_parse(&cfile, -1, fbuf, flen, data, 0);
if (status == ISC_R_SUCCESS || cfile != NULL) {
if (ttype == trace_readleases_type)
lease_file_subparse (cfile);
else
conf_file_subparse (cfile, root_group, ROOT_GROUP);
end_parse (&cfile);
}
/* Postconfiguration needs to be done after the config file
has been loaded. */
if (!postconf_initialized && ttype == trace_readconf_type) {
postconf_initialization (0);
postconf_initialized = 1;
}
if (!leaseconf_initialized && ttype == trace_readleases_type) {
db_startup (0);
leaseconf_initialized = 1;
postdb_startup ();
}
}
void trace_conf_stop (trace_type_t *ttype) { }
#endif
/* conf-file :== parameters declarations END_OF_FILE
parameters :== <nil> | parameter | parameters parameter
declarations :== <nil> | declaration | declarations declaration */
isc_result_t conf_file_subparse (struct parse *cfile, struct group *group,
int group_type)
{
const char *val;
enum dhcp_token token;
int declaration = 0;
int status;
do {
token = peek_token (&val, (unsigned *)0, cfile);
if (token == END_OF_FILE)
break;
declaration = parse_statement (cfile, group, group_type,
(struct host_decl *)0,
declaration);
} while (1);
skip_token(&val, (unsigned *)0, cfile);
status = cfile->warnings_occurred ? DHCP_R_BADPARSE : ISC_R_SUCCESS;
return status;
}
/* lease-file :== lease-declarations END_OF_FILE
lease-statements :== <nil>
| lease-declaration
| lease-declarations lease-declaration */
isc_result_t lease_file_subparse (struct parse *cfile)
{
const char *val;
enum dhcp_token token;
isc_result_t status;
do {
token = next_token (&val, (unsigned *)0, cfile);
if (token == END_OF_FILE)
break;
if (token == LEASE) {
struct lease *lease = (struct lease *)0;
if (parse_lease_declaration (&lease, cfile)) {
enter_lease (lease);
lease_dereference (&lease, MDL);
} else
parse_warn (cfile,
"possibly corrupt lease file");
} else if (token == IA_NA) {
parse_ia_na_declaration(cfile);
} else if (token == IA_TA) {
parse_ia_ta_declaration(cfile);
} else if (token == IA_PD) {
parse_ia_pd_declaration(cfile);
} else if (token == CLASS) {
parse_class_declaration(0, cfile, root_group,
CLASS_TYPE_CLASS);
} else if (token == SUBCLASS) {
parse_class_declaration(0, cfile, root_group,
CLASS_TYPE_SUBCLASS);
} else if (token == HOST) {
parse_host_declaration (cfile, root_group);
} else if (token == GROUP) {
parse_group_declaration (cfile, root_group);
#if defined (FAILOVER_PROTOCOL)
} else if (token == FAILOVER) {
parse_failover_state_declaration
(cfile, (dhcp_failover_state_t *)0);
#endif
#ifdef DHCPv6
} else if (token == SERVER_DUID) {
parse_server_duid(cfile);
#endif /* DHCPv6 */
} else if (token == AUTHORING_BYTE_ORDER) {
parse_authoring_byte_order(cfile);
} else {
log_error ("Corrupt lease file - possible data loss!");
skip_to_semi (cfile);
}
} while (1);
status = cfile->warnings_occurred ? DHCP_R_BADPARSE : ISC_R_SUCCESS;
return status;
}
/* statement :== parameter | declaration
parameter :== DEFAULT_LEASE_TIME lease_time
| MAX_LEASE_TIME lease_time
| DYNAMIC_BOOTP_LEASE_CUTOFF date
| DYNAMIC_BOOTP_LEASE_LENGTH lease_time
| BOOT_UNKNOWN_CLIENTS boolean
| ONE_LEASE_PER_CLIENT boolean
| GET_LEASE_HOSTNAMES boolean
| USE_HOST_DECL_NAME boolean
| NEXT_SERVER ip-addr-or-hostname SEMI
| option_parameter
| SERVER-IDENTIFIER ip-addr-or-hostname SEMI
| FILENAME string-parameter
| SERVER_NAME string-parameter
| hardware-parameter
| fixed-address-parameter
| ALLOW allow-deny-keyword
| DENY allow-deny-keyword
| USE_LEASE_ADDR_FOR_DEFAULT_ROUTE boolean
| AUTHORITATIVE
| NOT AUTHORITATIVE
declaration :== host-declaration
| group-declaration
| shared-network-declaration
| subnet-declaration
| VENDOR_CLASS class-declaration
| USER_CLASS class-declaration
| RANGE address-range-declaration */
int parse_statement (cfile, group, type, host_decl, declaration)
struct parse *cfile;
struct group *group;
int type;
struct host_decl *host_decl;
int declaration;
{
enum dhcp_token token;
const char *val;
struct shared_network *share;
char *n;
struct hardware hardware;
struct executable_statement *et, *ep;
struct option *option = NULL;
struct option_cache *cache;
int lose;
int known;
isc_result_t status;
unsigned code;
token = peek_token (&val, (unsigned *)0, cfile);
switch (token) {
case INCLUDE:
skip_token(&val, (unsigned *)0, cfile);
token = next_token (&val, (unsigned *)0, cfile);
if (token != STRING) {
parse_warn (cfile, "filename string expected.");
skip_to_semi (cfile);
} else {
status = read_conf_file (val, group, type, 0);
if (status != ISC_R_SUCCESS)
parse_warn (cfile, "%s: bad parse.", val);
parse_semi (cfile);
}
return 1;
case HOST:
skip_token(&val, (unsigned *)0, cfile);
if (type != HOST_DECL && type != CLASS_DECL) {
if (global_host_once &&
(type == SUBNET_DECL || type == SHARED_NET_DECL)) {
global_host_once = 0;
log_error("WARNING: Host declarations are "
"global. They are not limited to "
"the scope you declared them in.");
}
parse_host_declaration (cfile, group);
} else {
parse_warn (cfile,
"host declarations not allowed here.");
skip_to_semi (cfile);
}
return 1;
case GROUP:
skip_token(&val, (unsigned *)0, cfile);
if (type != HOST_DECL && type != CLASS_DECL)
parse_group_declaration (cfile, group);
else {
parse_warn (cfile,
"group declarations not allowed here.");
skip_to_semi (cfile);
}
return 1;
case SHARED_NETWORK:
skip_token(&val, (unsigned *)0, cfile);
if (type == SHARED_NET_DECL ||
type == HOST_DECL ||
type == SUBNET_DECL ||
type == CLASS_DECL) {
parse_warn (cfile, "shared-network parameters not %s.",
"allowed here");
skip_to_semi (cfile);
break;
}
parse_shared_net_declaration (cfile, group);
return 1;
case SUBNET:
case SUBNET6:
skip_token(&val, (unsigned *)0, cfile);
if (type == HOST_DECL || type == SUBNET_DECL ||
type == CLASS_DECL) {
parse_warn (cfile,
"subnet declarations not allowed here.");
skip_to_semi (cfile);
return 1;
}
/* If we're in a subnet declaration, just do the parse. */
if (group->shared_network != NULL) {
if (token == SUBNET) {
parse_subnet_declaration(cfile,
group->shared_network);
} else {
parse_subnet6_declaration(cfile,
group->shared_network);
}
break;
}
/*
* Otherwise, cons up a fake shared network structure
* and populate it with the lone subnet...because the
* intention most likely is to refer to the entire link
* by shorthand, any configuration inside the subnet is
* actually placed in the shared-network's group.
*/
share = NULL;
status = shared_network_allocate (&share, MDL);
if (status != ISC_R_SUCCESS)
log_fatal ("Can't allocate shared subnet: %s",
isc_result_totext (status));
if (!clone_group (&share -> group, group, MDL))
log_fatal ("Can't allocate group for shared net");
shared_network_reference (&share -> group -> shared_network,
share, MDL);
/*
* This is an implicit shared network, not explicit in
* the config.
*/
share->flags |= SHARED_IMPLICIT;
if (token == SUBNET) {
parse_subnet_declaration(cfile, share);
} else {
parse_subnet6_declaration(cfile, share);
}
/* share -> subnets is the subnet we just parsed. */
if (share->subnets) {
interface_reference(&share->interface,
share->subnets->interface,
MDL);
/* Make the shared network name from network number. */
if (token == SUBNET) {
n = piaddrmask(&share->subnets->net,
&share->subnets->netmask);
} else {
n = piaddrcidr(&share->subnets->net,
share->subnets->prefix_len);
}
share->name = strdup(n);
if (share->name == NULL)
log_fatal("Out of memory allocating default "
"shared network name (\"%s\").", n);
/* Copy the authoritative parameter from the subnet,
since there is no opportunity to declare it here. */
share->group->authoritative =
share->subnets->group->authoritative;
enter_shared_network(share);
}
shared_network_dereference(&share, MDL);
return 1;
case VENDOR_CLASS:
skip_token(&val, (unsigned *)0, cfile);
if (type == CLASS_DECL) {
parse_warn (cfile,
"class declarations not allowed here.");
skip_to_semi (cfile);
break;
}
parse_class_declaration(NULL, cfile, group, CLASS_TYPE_VENDOR);
return 1;
case USER_CLASS:
skip_token(&val, (unsigned *)0, cfile);
if (type == CLASS_DECL) {
parse_warn (cfile,
"class declarations not allowed here.");
skip_to_semi (cfile);
break;
}
parse_class_declaration(NULL, cfile, group, CLASS_TYPE_USER);
return 1;
case CLASS:
skip_token(&val, (unsigned *)0, cfile);
if (type == CLASS_DECL) {
parse_warn (cfile,
"class declarations not allowed here.");
skip_to_semi (cfile);
break;
}
parse_class_declaration(NULL, cfile, group, CLASS_TYPE_CLASS);
return 1;
case SUBCLASS:
skip_token(&val, (unsigned *)0, cfile);
if (type == CLASS_DECL) {
parse_warn (cfile,
"class declarations not allowed here.");
skip_to_semi (cfile);
break;
}
parse_class_declaration(NULL, cfile, group,
CLASS_TYPE_SUBCLASS);
return 1;
case HARDWARE:
skip_token(&val, (unsigned *)0, cfile);
memset (&hardware, 0, sizeof hardware);
if (host_decl && memcmp(&hardware, &(host_decl->interface),
sizeof(hardware)) != 0) {
parse_warn(cfile, "Host %s hardware address already "
"configured.", host_decl->name);
break;
}
parse_hardware_param (cfile, &hardware);
if (host_decl)
host_decl -> interface = hardware;
else
parse_warn (cfile, "hardware address parameter %s",
"not allowed here.");
break;
case FIXED_ADDR:
case FIXED_ADDR6:
skip_token(&val, NULL, cfile);
cache = NULL;
if (parse_fixed_addr_param(&cache, cfile, token)) {
if (host_decl) {
if (host_decl->fixed_addr) {
option_cache_dereference(&cache, MDL);
parse_warn(cfile,
"Only one fixed address "
"declaration per host.");
} else {
host_decl->fixed_addr = cache;
}
} else {
parse_warn(cfile,
"fixed-address parameter not "
"allowed here.");
option_cache_dereference(&cache, MDL);
}
}
break;
case POOL:
skip_token(&val, (unsigned *)0, cfile);
if (type == POOL_DECL) {
parse_warn (cfile, "pool declared within pool.");
skip_to_semi(cfile);
} else if (type != SUBNET_DECL && type != SHARED_NET_DECL) {
parse_warn (cfile, "pool declared outside of network");
skip_to_semi(cfile);
} else
parse_pool_statement (cfile, group, type);
return declaration;
case RANGE:
skip_token(&val, (unsigned *)0, cfile);
if (type != SUBNET_DECL || !group -> subnet) {
parse_warn (cfile,
"range declaration not allowed here.");
skip_to_semi (cfile);
return declaration;
}
parse_address_range (cfile, group, type, (struct pool *)0,
(struct lease **)0);
return declaration;
#ifdef DHCPv6
case RANGE6:
skip_token(NULL, NULL, cfile);
if ((type != SUBNET_DECL) || (group->subnet == NULL)) {
parse_warn (cfile,
"range6 declaration not allowed here.");
skip_to_semi(cfile);
return declaration;
}
parse_address_range6(cfile, group, NULL);
return declaration;
case PREFIX6:
skip_token(NULL, NULL, cfile);
if ((type != SUBNET_DECL) || (group->subnet == NULL)) {
parse_warn (cfile,
"prefix6 declaration not allowed here.");
skip_to_semi(cfile);
return declaration;
}
parse_prefix6(cfile, group, NULL);
return declaration;
case FIXED_PREFIX6:
skip_token(&val, NULL, cfile);
if (!host_decl) {
parse_warn (cfile,
"fixed-prefix6 declaration not "
"allowed here.");
skip_to_semi(cfile);
break;
}
parse_fixed_prefix6(cfile, host_decl);
break;
case POOL6:
skip_token(&val, NULL, cfile);
if (type == POOL_DECL) {
parse_warn (cfile, "pool6 declared within pool.");
skip_to_semi(cfile);
} else if (type != SUBNET_DECL) {
parse_warn (cfile, "pool6 declared outside of network");
skip_to_semi(cfile);
} else
parse_pool6_statement (cfile, group, type);
return declaration;
#endif /* DHCPv6 */
case TOKEN_NOT:
skip_token(&val, (unsigned *)0, cfile);
token = next_token (&val, (unsigned *)0, cfile);
switch (token) {
case AUTHORITATIVE:
group -> authoritative = 0;
goto authoritative;
default:
parse_warn (cfile, "expecting assertion");
skip_to_semi (cfile);
break;
}
break;
case AUTHORITATIVE:
skip_token(&val, (unsigned *)0, cfile);
group -> authoritative = 1;
authoritative:
if (type == HOST_DECL)
parse_warn (cfile, "authority makes no sense here.");
parse_semi (cfile);
break;
/* "server-identifier" is a special hack, equivalent to
"option dhcp-server-identifier". */
case SERVER_IDENTIFIER:
code = DHO_DHCP_SERVER_IDENTIFIER;
if (!option_code_hash_lookup(&option, dhcp_universe.code_hash,
&code, 0, MDL))
log_fatal("Server identifier not in hash (%s:%d).",
MDL);
skip_token(&val, (unsigned *)0, cfile);
goto finish_option;
case OPTION:
skip_token(&val, (unsigned *)0, cfile);
token = peek_token (&val, (unsigned *)0, cfile);
if (token == SPACE) {
if (type != ROOT_GROUP) {
parse_warn (cfile,
"option space definitions %s",
"may not be scoped.");
skip_to_semi (cfile);
break;
}
parse_option_space_decl (cfile);
return declaration;
}
known = 0;
status = parse_option_name(cfile, 1, &known, &option);
if (status == ISC_R_SUCCESS) {
token = peek_token (&val, (unsigned *)0, cfile);
if (token == CODE) {
if (type != ROOT_GROUP) {
parse_warn (cfile,
"option definitions%s",
" may not be scoped.");
skip_to_semi (cfile);
option_dereference(&option, MDL);
break;
}
skip_token(&val, (unsigned *)0, cfile);
/*
* If the option was known, remove it from the
* code and name hashes before redefining it.
*/
if (known) {
option_name_hash_delete(
option->universe->name_hash,
option->name, 0, MDL);
option_code_hash_delete(
option->universe->code_hash,
&option->code, 0, MDL);
}
parse_option_code_definition(cfile, option);
option_dereference(&option, MDL);
return declaration;
}
/* If this wasn't an option code definition, don't
allow an unknown option. */
if (!known) {
parse_warn (cfile, "unknown option %s.%s",
option -> universe -> name,
option -> name);
skip_to_semi (cfile);
option_dereference(&option, MDL);
return declaration;
}
finish_option:
et = (struct executable_statement *)0;
if (!parse_option_statement
(&et, cfile, 1, option,
supersede_option_statement)) {
option_dereference(&option, MDL);
return declaration;
}
option_dereference(&option, MDL);
goto insert_statement;
} else
return declaration;
break;
case FAILOVER:
if (type != ROOT_GROUP && type != SHARED_NET_DECL) {
parse_warn (cfile, "failover peers may only be %s",
"defined in shared-network");
log_error ("declarations and the outer scope.");
skip_to_semi (cfile);
break;
}
token = next_token (&val, (unsigned *)0, cfile);
#if defined (FAILOVER_PROTOCOL)
parse_failover_peer (cfile, group, type);
#else
parse_warn (cfile, "No failover support.");
skip_to_semi (cfile);
#endif
break;
#ifdef DHCPv6
case SERVER_DUID:
parse_server_duid_conf(cfile);
break;
#endif /* DHCPv6 */
case LEASE_ID_FORMAT:
token = next_token (&val, (unsigned *)0, cfile);
parse_lease_id_format(cfile);
break;
case PERCENT:
/* Used by the MA so simply ignore... */
skip_to_semi (cfile);
break;
default:
et = (struct executable_statement *)0;
lose = 0;
if (!parse_executable_statement (&et, cfile, &lose,
context_any)) {
if (!lose) {
if (declaration)
parse_warn (cfile,
"expecting a declaration");
else
parse_warn (cfile,
"expecting a parameter %s",
"or declaration");
skip_to_semi (cfile);
}
return declaration;
}
if (!et)
return declaration;
insert_statement:
if (group -> statements) {
int multi = 0;
/* If this set of statements is only referenced
by this group, just add the current statement
to the end of the chain. */
for (ep = group -> statements; ep -> next;
ep = ep -> next)
if (ep -> refcnt > 1) /* XXX */
multi = 1;
if (!multi) {
executable_statement_reference (&ep -> next,
et, MDL);
executable_statement_dereference (&et, MDL);
return declaration;
}
/* Otherwise, make a parent chain, and put the
current group statements first and the new
statement in the next pointer. */
ep = (struct executable_statement *)0;
if (!executable_statement_allocate (&ep, MDL))
log_fatal ("No memory for statements.");
ep -> op = statements_statement;
executable_statement_reference (&ep -> data.statements,
group -> statements,
MDL);
executable_statement_reference (&ep -> next, et, MDL);
executable_statement_dereference (&group -> statements,
MDL);
executable_statement_reference (&group -> statements,
ep, MDL);
executable_statement_dereference (&ep, MDL);
} else {
executable_statement_reference (&group -> statements,
et, MDL);
}
executable_statement_dereference (&et, MDL);
return declaration;
}
return 0;
}
#if defined (FAILOVER_PROTOCOL)
void parse_failover_peer (cfile, group, type)
struct parse *cfile;
struct group *group;
int type;
{
enum dhcp_token token;
const char *val;
dhcp_failover_state_t *peer;
u_int32_t *tp;
char *name;
u_int32_t split;
u_int8_t hba [32];
unsigned hba_len = sizeof hba;
int i;
struct expression *expr;
isc_result_t status;
dhcp_failover_config_t *cp;
token = next_token (&val, (unsigned *)0, cfile);
if (token != PEER) {
parse_warn (cfile, "expecting \"peer\"");
skip_to_semi (cfile);
return;
}
token = next_token (&val, (unsigned *)0, cfile);
if (is_identifier (token) || token == STRING) {
name = dmalloc (strlen (val) + 1, MDL);
if (!name)
log_fatal ("no memory for peer name %s", val);
strcpy (name, val);
} else {
parse_warn (cfile, "expecting failover peer name.");
skip_to_semi (cfile);
return;
}
/* See if there's a peer declaration by this name. */
peer = (dhcp_failover_state_t *)0;
find_failover_peer (&peer, name, MDL);
token = next_token (&val, (unsigned *)0, cfile);
if (token == SEMI) {
if (type != SHARED_NET_DECL)
parse_warn (cfile, "failover peer reference not %s",
"in shared-network declaration");
else {
if (!peer) {
parse_warn (cfile, "reference to unknown%s%s",
" failover peer ", name);
dfree (name, MDL);
return;
}
dhcp_failover_state_reference
(&group -> shared_network -> failover_peer,
peer, MDL);
}
dhcp_failover_state_dereference (&peer, MDL);
dfree (name, MDL);
return;
} else if (token == STATE) {
if (!peer) {
parse_warn (cfile, "state declaration for unknown%s%s",
" failover peer ", name);
dfree (name, MDL);
return;
}
parse_failover_state_declaration (cfile, peer);
dhcp_failover_state_dereference (&peer, MDL);
dfree (name, MDL);
return;
} else if (token != LBRACE) {
parse_warn (cfile, "expecting left brace");
skip_to_semi (cfile);
}
/* Make sure this isn't a redeclaration. */
if (peer) {
parse_warn (cfile, "redeclaration of failover peer %s", name);
skip_to_rbrace (cfile, 1);
dhcp_failover_state_dereference (&peer, MDL);
dfree (name, MDL);
return;
}
status = dhcp_failover_state_allocate (&peer, MDL);
if (status != ISC_R_SUCCESS)
log_fatal ("Can't allocate failover peer %s: %s",
name, isc_result_totext (status));
/* Save the name. */
peer -> name = name;
do {
cp = &peer -> me;
peer:
token = next_token (&val, (unsigned *)0, cfile);
switch (token) {
case RBRACE:
break;
case PRIMARY:
peer -> i_am = primary;
break;
case SECONDARY:
peer -> i_am = secondary;
if (peer -> hba)
parse_warn (cfile,
"secondary may not define %s",
"load balance settings.");
break;