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
|
/* $OpenBSD: clparse.c,v 1.139 2017/10/14 01:15:36 krw Exp $ */
/* Parser for dhclient config and lease files. */
/*
* Copyright (c) 1997 The Internet Software Consortium.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
*
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of The Internet Software Consortium nor the names
* of its contributors may be used to endorse or promote products derived
* from this software without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE INTERNET SOFTWARE CONSORTIUM AND
* CONTRIBUTORS ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES,
* INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL THE INTERNET SOFTWARE CONSORTIUM OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
* OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
* OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* This software has been written for the Internet Software Consortium
* by Ted Lemon <mellon@fugue.com> in cooperation with Vixie
* Enterprises. To learn more about the Internet Software Consortium,
* see ``http://www.vix.com/isc''. To learn more about Vixie
* Enterprises, see ``http://www.vix.com''.
*/
#include <sys/queue.h>
#include <sys/socket.h>
#include <sys/types.h>
#include <net/if.h>
#include <net/if_arp.h>
#include <netinet/in.h>
#include <netinet/if_ether.h>
#include <signal.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include "dhcp.h"
#include "dhcpd.h"
#include "dhctoken.h"
#include "log.h"
void parse_client_statement(FILE *, char *);
int parse_X(FILE *, uint8_t *, int);
int parse_option_list(FILE *, int *, uint8_t *);
void parse_interface_declaration(FILE *, char *);
struct client_lease *parse_client_lease_statement(FILE *, char *);
void parse_client_lease_declaration(FILE *, struct client_lease *, char *);
int parse_option_decl(FILE *, int *, struct option_data *);
void parse_reject_statement(FILE *);
void add_lease(struct client_lease_tq *, struct client_lease *);
void
add_lease(struct client_lease_tq *tq, struct client_lease *lease)
{
struct client_lease *lp, *nlp;
if (lease == NULL)
return;
/*
* The new lease will supersede a lease with the same ssid
* AND the same Client Identifier AND the same
* IP address.
*/
TAILQ_FOREACH_SAFE(lp, tq, next, nlp) {
if (lp->ssid_len != lease->ssid_len)
continue;
if (memcmp(lp->ssid, lease->ssid, lp->ssid_len) != 0)
continue;
if ((lease->options[DHO_DHCP_CLIENT_IDENTIFIER].len != 0) &&
((lp->options[DHO_DHCP_CLIENT_IDENTIFIER].len !=
lease->options[DHO_DHCP_CLIENT_IDENTIFIER].len) ||
memcmp(lp->options[DHO_DHCP_CLIENT_IDENTIFIER].data,
lease->options[DHO_DHCP_CLIENT_IDENTIFIER].data,
lp->options[DHO_DHCP_CLIENT_IDENTIFIER].len)))
continue;
if (lp->address.s_addr != lease->address.s_addr)
continue;
TAILQ_REMOVE(tq, lp, next);
free_client_lease(lp);
}
TAILQ_INSERT_TAIL(tq, lease, next);
}
/*
* client-conf-file :== client-declarations EOF
* client-declarations :== <nil>
* | client-declaration
* | client-declarations client-declaration
*/
void
read_client_conf(char *name)
{
FILE *cfile;
int token;
new_parse(path_dhclient_conf);
TAILQ_INIT(&config->static_leases);
TAILQ_INIT(&config->reject_list);
/* Set some defaults. */
config->link_timeout = 10; /* secs before going daemon w/o link */
config->timeout = 30; /* secs to wait for an OFFER */
config->select_interval = 0; /* secs to wait for other OFFERs */
config->reboot_timeout = 1; /* secs before giving up on reboot */
config->retry_interval = 1; /* secs before asking for OFFER */
config->backoff_cutoff = 10; /* max secs between packet retries */
config->initial_interval = 1; /* secs before 1st retry */
config->requested_options
[config->requested_option_count++] = DHO_SUBNET_MASK;
config->requested_options
[config->requested_option_count++] = DHO_BROADCAST_ADDRESS;
config->requested_options
[config->requested_option_count++] = DHO_TIME_OFFSET;
/* RFC 3442 says CLASSLESS_STATIC_ROUTES must be before ROUTERS! */
config->requested_options
[config->requested_option_count++] = DHO_CLASSLESS_STATIC_ROUTES;
config->requested_options
[config->requested_option_count++] = DHO_ROUTERS;
config->requested_options
[config->requested_option_count++] = DHO_DOMAIN_NAME;
config->requested_options
[config->requested_option_count++] = DHO_DOMAIN_SEARCH;
config->requested_options
[config->requested_option_count++] = DHO_DOMAIN_NAME_SERVERS;
config->requested_options
[config->requested_option_count++] = DHO_HOST_NAME;
config->requested_options
[config->requested_option_count++] = DHO_BOOTFILE_NAME;
config->requested_options
[config->requested_option_count++] = DHO_TFTP_SERVER;
if ((cfile = fopen(path_dhclient_conf, "r")) != NULL) {
do {
token = peek_token(NULL, cfile);
if (token == EOF)
break;
parse_client_statement(cfile, name);
} while (1);
fclose(cfile);
}
}
/*
* lease-file :== client-lease-statements EOF
* client-lease-statements :== <nil>
* | client-lease-statements LEASE client-lease-statement
*/
void
read_client_leases(char *name, struct client_lease_tq *tq)
{
FILE *cfile;
int token;
TAILQ_INIT(tq);
if ((cfile = fopen(path_dhclient_db, "r")) == NULL)
return;
new_parse(path_dhclient_db);
do {
token = next_token(NULL, cfile);
if (token == EOF)
break;
if (token != TOK_LEASE) {
log_warnx("%s: expecting lease", log_procname);
break;
}
add_lease(tq, parse_client_lease_statement(cfile, name));
} while (1);
fclose(cfile);
}
/*
* client-declaration :==
* TOK_SEND option-decl |
* TOK_DEFAULT option-decl |
* TOK_SUPERSEDE option-decl |
* TOK_APPEND option-decl |
* TOK_PREPEND option-decl |
* TOK_REQUEST option-list |
* TOK_REQUIRE option-list |
* TOK_IGNORE option-list |
* TOK_TIMEOUT number |
* TOK_RETRY number |
* TOK_SELECT_TIMEOUT number |
* TOK_REBOOT number |
* TOK_BACKOFF_CUTOFF number |
* TOK_INITIAL_INTERVAL number |
* interface-declaration |
* TOK_LEASE client-lease-statement |
* TOK_REJECT reject-statement
*/
void
parse_client_statement(FILE *cfile, char *name)
{
char *val;
int i, token;
token = next_token(NULL, cfile);
switch (token) {
case TOK_SEND:
if (parse_option_decl(cfile, &i, config->send_options) == 1)
parse_semi(cfile);
break;
case TOK_DEFAULT:
if (parse_option_decl(cfile, &i, config->defaults) == 1) {
config->default_actions[i] = ACTION_DEFAULT;
parse_semi(cfile);
}
break;
case TOK_SUPERSEDE:
if (parse_option_decl(cfile, &i, config->defaults) == 1) {
config->default_actions[i] = ACTION_SUPERSEDE;
parse_semi(cfile);
}
break;
case TOK_APPEND:
if (parse_option_decl(cfile, &i, config->defaults) == 1) {
config->default_actions[i] = ACTION_APPEND;
parse_semi(cfile);
}
break;
case TOK_PREPEND:
if (parse_option_decl(cfile, &i, config->defaults) == 1) {
config->default_actions[i] = ACTION_PREPEND;
parse_semi(cfile);
}
break;
case TOK_REQUEST:
if (parse_option_list(cfile, &config->requested_option_count,
config->requested_options) == 1)
parse_semi(cfile);
break;
case TOK_REQUIRE:
if (parse_option_list(cfile, &config->required_option_count,
config->required_options) == 1)
parse_semi(cfile);
break;
case TOK_IGNORE:
if (parse_option_list(cfile, &config->ignored_option_count,
config->ignored_options) == 1)
parse_semi(cfile);
break;
case TOK_LINK_TIMEOUT:
if (parse_lease_time(cfile, &config->link_timeout) == 1)
parse_semi(cfile);
break;
case TOK_TIMEOUT:
if (parse_lease_time(cfile, &config->timeout) == 1)
parse_semi(cfile);
break;
case TOK_RETRY:
if (parse_lease_time(cfile, &config->retry_interval) == 1)
parse_semi(cfile);
break;
case TOK_SELECT_TIMEOUT:
if (parse_lease_time(cfile, &config->select_interval) == 1)
parse_semi(cfile);
break;
case TOK_REBOOT:
if (parse_lease_time(cfile, &config->reboot_timeout) == 1)
parse_semi(cfile);
break;
case TOK_BACKOFF_CUTOFF:
if (parse_lease_time(cfile, &config->backoff_cutoff) == 1)
parse_semi(cfile);
break;
case TOK_INITIAL_INTERVAL:
if (parse_lease_time(cfile, &config->initial_interval) == 1)
parse_semi(cfile);
break;
case TOK_INTERFACE:
parse_interface_declaration(cfile, name);
break;
case TOK_LEASE:
add_lease(&config->static_leases,
parse_client_lease_statement(cfile, name));
break;
case TOK_REJECT:
parse_reject_statement(cfile);
break;
case TOK_FILENAME:
if (parse_string(cfile, NULL, &val) == 1) {
free(config->filename);
config->filename = val;
parse_semi(cfile);
}
break;
case TOK_SERVER_NAME:
if (parse_string(cfile, NULL, &val) == 1) {
free(config->server_name);
config->server_name = val;
parse_semi(cfile);
}
break;
case TOK_FIXED_ADDR:
if (parse_ip_addr(cfile, &config->address) == 1)
parse_semi(cfile);
break;
case TOK_NEXT_SERVER:
if (parse_ip_addr(cfile, &config->next_server) == 1)
parse_semi(cfile);
break;
default:
parse_warn("expecting statement.");
if (token != ';')
skip_to_semi(cfile);
break;
}
}
int
parse_X(FILE *cfile, uint8_t *buf, int max)
{
int token;
char *val;
int len;
token = peek_token(&val, cfile);
if (token == TOK_NUMBER_OR_NAME) {
len = 0;
for (token = ':'; token == ':';
token = next_token(NULL, cfile)) {
if (parse_hex(cfile, &buf[len]) == 0)
break;
if (++len == max)
break;
if (peek_token(NULL, cfile) == ';')
return len;
}
if (token != ':') {
parse_warn("expecting ':'.");
skip_to_semi(cfile);
return -1;
} else {
parse_warn("expecting hex value.");
skip_to_semi(cfile);
return -1;
}
} else if (token == TOK_STRING) {
token = next_token(&val, cfile);
len = strlen(val);
if (len + 1 > max) {
parse_warn("string constant too long.");
skip_to_semi(cfile);
return -1;
}
memcpy(buf, val, len + 1);
} else {
token = next_token(NULL, cfile);
parse_warn("expecting string or hex data.");
if (token != ';')
skip_to_semi(cfile);
return -1;
}
return len;
}
/*
* option-list :== option_name |
* option_list COMMA option_name
*/
int
parse_option_list(FILE *cfile, int *count, uint8_t *optlist)
{
uint8_t list[DHO_COUNT];
unsigned int ix, j;
int i;
int token;
char *val;
/* Empty list of option names is allowed, to re-init optlist. */
if (peek_token(NULL, cfile) == ';') {
memset(optlist, DHO_PAD, sizeof(list));
*count = 0;
return 1;
}
memset(list, DHO_PAD, sizeof(list));
ix = 0;
do {
/* Next token must be an option name. */
token = next_token(&val, cfile);
i = name_to_code(val);
if (i == DHO_END)
break;
/* Avoid storing duplicate options in the list. */
for (j = 0; j < ix && list[j] != i; j++)
;
if (j == ix)
list[ix++] = i;
if (peek_token(NULL, cfile) == ';') {
memcpy(optlist, list, sizeof(list));
*count = ix;
return 1;
}
token = next_token(NULL, cfile);
} while (token == ',');
parse_warn("expecting comma delimited list of option names.");
if (token != ';')
skip_to_semi(cfile);
return 0;
}
/*
* interface-declaration :==
* INTERFACE string LBRACE client-declarations RBRACE
*/
void
parse_interface_declaration(FILE *cfile, char *name)
{
char *val;
int token;
token = next_token(&val, cfile);
if (token != TOK_STRING) {
parse_warn("expecting string.");
if (token != ';')
skip_to_semi(cfile);
return;
}
if (strcmp(name, val) != 0) {
skip_to_semi(cfile);
return;
}
token = next_token(&val, cfile);
if (token != '{') {
parse_warn("expecting '{'.");
if (token != ';')
skip_to_semi(cfile);
return;
}
do {
token = peek_token(&val, cfile);
if (token == EOF) {
parse_warn("unterminated interface declaration.");
return;
}
if (token == '}')
break;
parse_client_statement(cfile, name);
} while (1);
token = next_token(&val, cfile);
}
/*
* client-lease-statement :==
* RBRACE client-lease-declarations LBRACE
*
* client-lease-declarations :==
* <nil> |
* client-lease-declaration |
* client-lease-declarations client-lease-declaration
*/
struct client_lease *
parse_client_lease_statement(FILE *cfile, char *name)
{
struct client_lease *lease;
int token;
token = next_token(NULL, cfile);
if (token != '{') {
parse_warn("expecting '{'.");
if (token != ';')
skip_to_semi(cfile);
return NULL;
}
lease = calloc(1, sizeof(*lease));
if (lease == NULL)
fatal("lease");
do {
token = peek_token(NULL, cfile);
if (token == EOF) {
parse_warn("unterminated lease declaration.");
free_client_lease(lease);
return NULL;
}
if (token == '}')
break;
parse_client_lease_declaration(cfile, lease, name);
} while (1);
token = next_token(NULL, cfile);
return lease;
}
/*
* client-lease-declaration :==
* BOOTP |
* INTERFACE string |
* FIXED_ADDR ip_address |
* FILENAME string |
* SERVER_NAME string |
* OPTION option-decl |
* RENEW time-decl |
* REBIND time-decl |
* EXPIRE time-decl
*/
void
parse_client_lease_declaration(FILE *cfile, struct client_lease *lease,
char *name)
{
char *val;
unsigned int len;
int i, rslt, token;
token = next_token(&val, cfile);
switch (token) {
case TOK_BOOTP:
/* 'bootp' is just a comment. See BOOTP_LEASE(). */
break;
case TOK_INTERFACE:
if (parse_string(cfile, NULL, &val) == 0)
return;
rslt = strcmp(name, val);
free(val);
if (rslt != 0) {
if (lease->is_static == 0)
parse_warn("wrong interface name.");
skip_to_semi(cfile);
return;
}
break;
case TOK_FIXED_ADDR:
if (parse_ip_addr(cfile, &lease->address) == 0)
return;
break;
case TOK_NEXT_SERVER:
if (parse_ip_addr(cfile, &lease->next_server) == 0)
return;
break;
case TOK_FILENAME:
if (parse_string(cfile, NULL, &val) == 0)
return;
free(lease->filename);
lease->filename = val;
break;
case TOK_SERVER_NAME:
if (parse_string(cfile, NULL, &val) == 0)
return;
free(lease->server_name);
lease->server_name = val;
break;
case TOK_SSID:
if (parse_string(cfile, &len, &val) == 0)
return;
if (len > sizeof(lease->ssid)) {
free(val);
parse_warn("ssid > 32 bytes");
skip_to_semi(cfile);
return;
}
memset(lease->ssid, 0, sizeof(lease->ssid));
memcpy(lease->ssid, val, len);
free(val);
lease->ssid_len = len;
break;
case TOK_RENEW:
if (parse_date(cfile, &lease->renewal) == 0)
return;
break;
case TOK_REBIND:
if (parse_date(cfile, &lease->rebind) == 0)
return;
break;
case TOK_EXPIRE:
if (parse_date(cfile, &lease->expiry) == 0)
return;
break;
case TOK_OPTION:
if (parse_option_decl(cfile, &i, lease->options) == 0)
return;
break;
default:
parse_warn("expecting lease declaration.");
if (token != ';')
skip_to_semi(cfile);
return;
}
parse_semi(cfile);
}
int
parse_option_decl(FILE *cfile, int *code, struct option_data *options)
{
uint8_t hunkbuf[1024], cidr[5], buf[4];
struct in_addr ip_addr;
uint8_t *dp;
char *fmt, *val;
unsigned int hunkix = 0;
int i, len, token;
int nul_term = 0;
token = next_token(&val, cfile);
if (is_identifier(token) == 0) {
parse_warn("expecting identifier.");
if (token != ';')
skip_to_semi(cfile);
return 0;
}
/* Look up the actual option info. */
i = name_to_code(val);
if (i == DHO_END) {
parse_warn("unknown option name.");
skip_to_semi(cfile);
return 0;
}
/* Parse the option data. */
do {
for (fmt = code_to_format(i); *fmt != '\0'; fmt++) {
if (*fmt == 'A')
break;
switch (*fmt) {
case 'X':
len = parse_X(cfile, &hunkbuf[hunkix],
sizeof(hunkbuf) - hunkix);
if (len == -1)
return 0;
hunkix += len;
dp = NULL;
break;
case 't': /* Text string. */
if (parse_string(cfile, &len, &val) == 0)
return -1;
if (hunkix + len + 1 > sizeof(hunkbuf)) {
free(val);
parse_warn("option data buffer "
"overflow");
skip_to_semi(cfile);
return 0;
}
memcpy(&hunkbuf[hunkix], val, len + 1);
free(val);
nul_term = 1;
hunkix += len;
dp = NULL;
break;
case 'I': /* IP address. */
if (parse_ip_addr(cfile, &ip_addr) == 0)
return 0;
len = sizeof(ip_addr);
dp = (uint8_t *)&ip_addr;
break;
case 'l': /* Signed 32-bit integer. */
if (parse_decimal(cfile, buf, 'l') == 0)
return 0;
len = 4;
dp = buf;
break;
case 'L': /* Unsigned 32-bit integer. */
if (parse_decimal(cfile, buf, 'L') == 0)
return 0;
len = 4;
dp = buf;
break;
case 'S': /* Unsigned 16-bit integer. */
if (parse_decimal(cfile, buf, 'S') == 0)
return 0;
len = 2;
dp = buf;
break;
case 'B': /* Unsigned 8-bit integer. */
if (parse_decimal(cfile, buf, 'B') == 0)
return 0;
len = 1;
dp = buf;
break;
case 'f': /* Boolean flag. */
if (parse_boolean(cfile, buf) == 0)
return 0;
len = 1;
dp = buf;
break;
case 'C':
if (parse_cidr(cfile, cidr) == 0)
return 0;
len = 1 + (cidr[0] + 7) / 8;
dp = cidr;
break;
default:
log_warnx("%s: bad format %c in "
"parse_option_param", log_procname, *fmt);
skip_to_semi(cfile);
return 0;
}
if (dp != NULL && len > 0) {
if (hunkix + len > sizeof(hunkbuf)) {
parse_warn("option data buffer "
"overflow");
skip_to_semi(cfile);
return 0;
}
memcpy(&hunkbuf[hunkix], dp, len);
hunkix += len;
}
}
token = peek_token(NULL, cfile);
if (*fmt == 'A' && token == ',')
token = next_token(NULL, cfile);
} while (*fmt == 'A' && token == ',');
free(options[i].data);
options[i].data = malloc(hunkix + nul_term);
if (options[i].data == NULL)
fatal("option data");
memcpy(options[i].data, hunkbuf, hunkix + nul_term);
options[i].len = hunkix;
*code = i;
return 1;
}
void
parse_reject_statement(FILE *cfile)
{
struct in_addr addr;
struct reject_elem *elem;
int token;
do {
if (parse_ip_addr(cfile, &addr) == 0)
return;
elem = malloc(sizeof(*elem));
if (elem == NULL)
fatal("reject address");
elem->addr = addr;
TAILQ_INSERT_TAIL(&config->reject_list, elem, next);
token = peek_token(NULL, cfile);
if (token == ',')
token = next_token(NULL, cfile);
} while (token == ',');
parse_semi(cfile);
}
|