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
|
/*
* configparser.y -- yacc grammar for NSD configuration files
*
* Copyright (c) 2001-2011, NLnet Labs. All rights reserved.
*
* See LICENSE for the license.
*
*/
%{
#include "config.h"
#include <stdarg.h>
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include <assert.h>
#include "options.h"
#include "util.h"
#include "configyyrename.h"
int c_lex(void);
void c_error(const char *message);
#ifdef __cplusplus
extern "C"
#endif /* __cplusplus */
/* these need to be global, otherwise they cannot be used inside yacc */
extern config_parser_state_t* cfg_parser;
static int server_settings_seen = 0;
#if 0
#define OUTYY(s) printf s /* used ONLY when debugging */
#else
#define OUTYY(s)
#endif
%}
%union {
char* str;
}
%token SPACE LETTER NEWLINE COMMENT COLON ANY ZONESTR
%token <str> STRING
%token VAR_SERVER VAR_NAME VAR_IP_ADDRESS VAR_DEBUG_MODE
%token VAR_IP4_ONLY VAR_IP6_ONLY VAR_DATABASE VAR_IDENTITY VAR_NSID VAR_LOGFILE
%token VAR_SERVER_COUNT VAR_TCP_COUNT VAR_PIDFILE VAR_PORT VAR_STATISTICS
%token VAR_ZONESTATSFILE VAR_CHROOT VAR_USERNAME VAR_ZONESDIR
%token VAR_XFRDFILE VAR_DIFFFILE
%token VAR_XFRD_RELOAD_TIMEOUT VAR_TCP_QUERY_COUNT VAR_TCP_TIMEOUT
%token VAR_IPV4_EDNS_SIZE VAR_IPV6_EDNS_SIZE
%token VAR_ZONEFILE
%token VAR_ZONE
%token VAR_ALLOW_NOTIFY VAR_REQUEST_XFR VAR_NOTIFY VAR_PROVIDE_XFR
%token VAR_NOTIFY_RETRY VAR_OUTGOING_INTERFACE VAR_ALLOW_AXFR_FALLBACK
%token VAR_KEY
%token VAR_ALGORITHM VAR_SECRET
%token VAR_AXFR VAR_UDP
%token VAR_VERBOSITY VAR_HIDE_VERSION
%%
toplevelvars: /* empty */ | toplevelvars toplevelvar ;
toplevelvar: serverstart contents_server | zonestart contents_zone |
keystart contents_key;
/* server: declaration */
serverstart: VAR_SERVER
{ OUTYY(("\nP(server:)\n"));
if(server_settings_seen) {
yyerror("duplicate server: element.");
}
server_settings_seen = 1;
}
;
contents_server: contents_server content_server | ;
content_server: server_ip_address | server_debug_mode | server_ip4_only |
server_ip6_only | server_database | server_identity | server_nsid | server_logfile |
server_server_count | server_tcp_count | server_pidfile | server_port |
server_statistics | server_zonestatsfile | server_chroot |
server_username | server_zonesdir |
server_difffile | server_xfrdfile | server_xfrd_reload_timeout |
server_tcp_query_count | server_tcp_timeout | server_ipv4_edns_size |
server_ipv6_edns_size | server_verbosity | server_hide_version;
server_ip_address: VAR_IP_ADDRESS STRING
{
OUTYY(("P(server_ip_address:%s)\n", $2));
if(cfg_parser->current_ip_address_option) {
cfg_parser->current_ip_address_option->next =
(ip_address_option_t*)region_alloc(
cfg_parser->opt->region, sizeof(ip_address_option_t));
cfg_parser->current_ip_address_option =
cfg_parser->current_ip_address_option->next;
cfg_parser->current_ip_address_option->next=0;
} else {
cfg_parser->current_ip_address_option =
(ip_address_option_t*)region_alloc(
cfg_parser->opt->region, sizeof(ip_address_option_t));
cfg_parser->current_ip_address_option->next=0;
cfg_parser->opt->ip_addresses = cfg_parser->current_ip_address_option;
}
cfg_parser->current_ip_address_option->address =
region_strdup(cfg_parser->opt->region, $2);
}
;
server_debug_mode: VAR_DEBUG_MODE STRING
{
OUTYY(("P(server_debug_mode:%s)\n", $2));
if(strcmp($2, "yes") != 0 && strcmp($2, "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->opt->debug_mode = (strcmp($2, "yes")==0);
}
;
server_verbosity: VAR_VERBOSITY STRING
{
OUTYY(("P(server_verbosity:%s)\n", $2));
if(atoi($2) == 0 && strcmp($2, "0") != 0)
yyerror("number expected");
else cfg_parser->opt->verbosity = atoi($2);
}
;
server_hide_version: VAR_HIDE_VERSION STRING
{
OUTYY(("P(server_hide_version:%s)\n", $2));
if(strcmp($2, "yes") != 0 && strcmp($2, "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->opt->hide_version = (strcmp($2, "yes")==0);
}
;
server_ip4_only: VAR_IP4_ONLY STRING
{
OUTYY(("P(server_ip4_only:%s)\n", $2));
if(strcmp($2, "yes") != 0 && strcmp($2, "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->opt->ip4_only = (strcmp($2, "yes")==0);
}
;
server_ip6_only: VAR_IP6_ONLY STRING
{
OUTYY(("P(server_ip6_only:%s)\n", $2));
if(strcmp($2, "yes") != 0 && strcmp($2, "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->opt->ip6_only = (strcmp($2, "yes")==0);
}
;
server_database: VAR_DATABASE STRING
{
OUTYY(("P(server_database:%s)\n", $2));
cfg_parser->opt->database = region_strdup(cfg_parser->opt->region, $2);
}
;
server_identity: VAR_IDENTITY STRING
{
OUTYY(("P(server_identity:%s)\n", $2));
cfg_parser->opt->identity = region_strdup(cfg_parser->opt->region, $2);
}
;
server_nsid: VAR_NSID STRING
{
unsigned char* nsid = 0;
uint16_t nsid_len = 0;
OUTYY(("P(server_nsid:%s)\n", $2));
if (strlen($2) % 2 != 0) {
yyerror("the NSID must be a hex string of an even length.");
} else {
nsid_len = strlen($2) / 2;
nsid = xalloc(nsid_len);
if (hex_pton($2, nsid, nsid_len) == -1)
yyerror("hex string cannot be parsed in NSID.");
else
cfg_parser->opt->nsid = region_strdup(cfg_parser->opt->region, $2);
free(nsid);
}
}
;
server_logfile: VAR_LOGFILE STRING
{
OUTYY(("P(server_logfile:%s)\n", $2));
cfg_parser->opt->logfile = region_strdup(cfg_parser->opt->region, $2);
}
;
server_server_count: VAR_SERVER_COUNT STRING
{
OUTYY(("P(server_server_count:%s)\n", $2));
if(atoi($2) <= 0)
yyerror("number greater than zero expected");
else cfg_parser->opt->server_count = atoi($2);
}
;
server_tcp_count: VAR_TCP_COUNT STRING
{
OUTYY(("P(server_tcp_count:%s)\n", $2));
if(atoi($2) <= 0)
yyerror("number greater than zero expected");
else cfg_parser->opt->tcp_count = atoi($2);
}
;
server_pidfile: VAR_PIDFILE STRING
{
OUTYY(("P(server_pidfile:%s)\n", $2));
cfg_parser->opt->pidfile = region_strdup(cfg_parser->opt->region, $2);
}
;
server_port: VAR_PORT STRING
{
OUTYY(("P(server_port:%s)\n", $2));
cfg_parser->opt->port = region_strdup(cfg_parser->opt->region, $2);
}
;
server_statistics: VAR_STATISTICS STRING
{
OUTYY(("P(server_statistics:%s)\n", $2));
if(atoi($2) == 0 && strcmp($2, "0") != 0)
yyerror("number expected");
else cfg_parser->opt->statistics = atoi($2);
}
;
server_zonestatsfile: VAR_ZONESTATSFILE STRING
{
OUTYY(("P(server_zonestatsfile:%s)\n", $2));
cfg_parser->opt->zonestatsfile = region_strdup(cfg_parser->opt->region, $2);
}
;
server_chroot: VAR_CHROOT STRING
{
OUTYY(("P(server_chroot:%s)\n", $2));
cfg_parser->opt->chroot = region_strdup(cfg_parser->opt->region, $2);
}
;
server_username: VAR_USERNAME STRING
{
OUTYY(("P(server_username:%s)\n", $2));
cfg_parser->opt->username = region_strdup(cfg_parser->opt->region, $2);
}
;
server_zonesdir: VAR_ZONESDIR STRING
{
OUTYY(("P(server_zonesdir:%s)\n", $2));
cfg_parser->opt->zonesdir = region_strdup(cfg_parser->opt->region, $2);
}
;
server_difffile: VAR_DIFFFILE STRING
{
OUTYY(("P(server_difffile:%s)\n", $2));
cfg_parser->opt->difffile = region_strdup(cfg_parser->opt->region, $2);
}
;
server_xfrdfile: VAR_XFRDFILE STRING
{
OUTYY(("P(server_xfrdfile:%s)\n", $2));
cfg_parser->opt->xfrdfile = region_strdup(cfg_parser->opt->region, $2);
}
;
server_xfrd_reload_timeout: VAR_XFRD_RELOAD_TIMEOUT STRING
{
OUTYY(("P(server_xfrd_reload_timeout:%s)\n", $2));
if(atoi($2) == 0 && strcmp($2, "0") != 0)
yyerror("number expected");
cfg_parser->opt->xfrd_reload_timeout = atoi($2);
}
;
server_tcp_query_count: VAR_TCP_QUERY_COUNT STRING
{
OUTYY(("P(server_tcp_query_count:%s)\n", $2));
if(atoi($2) == 0 && strcmp($2, "0") != 0)
yyerror("number expected");
cfg_parser->opt->tcp_query_count = atoi($2);
}
;
server_tcp_timeout: VAR_TCP_TIMEOUT STRING
{
OUTYY(("P(server_tcp_timeout:%s)\n", $2));
if(atoi($2) == 0 && strcmp($2, "0") != 0)
yyerror("number expected");
cfg_parser->opt->tcp_timeout = atoi($2);
}
;
server_ipv4_edns_size: VAR_IPV4_EDNS_SIZE STRING
{
OUTYY(("P(server_ipv4_edns_size:%s)\n", $2));
if(atoi($2) == 0 && strcmp($2, "0") != 0)
yyerror("number expected");
cfg_parser->opt->ipv4_edns_size = atoi($2);
}
;
server_ipv6_edns_size: VAR_IPV6_EDNS_SIZE STRING
{
OUTYY(("P(server_ipv6_edns_size:%s)\n", $2));
if(atoi($2) == 0 && strcmp($2, "0") != 0)
yyerror("number expected");
cfg_parser->opt->ipv6_edns_size = atoi($2);
}
;
/* zone: declaration */
zonestart: VAR_ZONE
{
OUTYY(("\nP(zone:)\n"));
if(cfg_parser->current_zone) {
if(!cfg_parser->current_zone->name)
c_error("previous zone has no name");
else {
if(!nsd_options_insert_zone(cfg_parser->opt,
cfg_parser->current_zone))
c_error("duplicate zone");
}
if(!cfg_parser->current_zone->zonefile)
c_error("previous zone has no zonefile");
}
cfg_parser->current_zone = zone_options_create(cfg_parser->opt->region);
cfg_parser->current_allow_notify = 0;
cfg_parser->current_request_xfr = 0;
cfg_parser->current_notify = 0;
cfg_parser->current_provide_xfr = 0;
cfg_parser->current_outgoing_interface = 0;
}
;
contents_zone: contents_zone content_zone | content_zone;
content_zone: zone_name | zone_zonefile | zone_allow_notify |
zone_request_xfr | zone_notify | zone_notify_retry | zone_provide_xfr |
zone_outgoing_interface | zone_allow_axfr_fallback;
zone_name: VAR_NAME STRING
{
OUTYY(("P(zone_name:%s)\n", $2));
#ifndef NDEBUG
assert(cfg_parser->current_zone);
#endif
cfg_parser->current_zone->name = region_strdup(cfg_parser->opt->region, $2);
}
;
zone_zonefile: VAR_ZONEFILE STRING
{
OUTYY(("P(zone_zonefile:%s)\n", $2));
#ifndef NDEBUG
assert(cfg_parser->current_zone);
#endif
cfg_parser->current_zone->zonefile = region_strdup(cfg_parser->opt->region, $2);
}
;
zone_allow_notify: VAR_ALLOW_NOTIFY STRING STRING
{
acl_options_t* acl = parse_acl_info(cfg_parser->opt->region, $2, $3);
OUTYY(("P(zone_allow_notify:%s %s)\n", $2, $3));
if(cfg_parser->current_allow_notify)
cfg_parser->current_allow_notify->next = acl;
else
cfg_parser->current_zone->allow_notify = acl;
cfg_parser->current_allow_notify = acl;
}
;
zone_request_xfr: VAR_REQUEST_XFR zone_request_xfr_data
{
}
;
zone_request_xfr_data: STRING STRING
{
acl_options_t* acl = parse_acl_info(cfg_parser->opt->region, $1, $2);
OUTYY(("P(zone_request_xfr:%s %s)\n", $1, $2));
if(acl->blocked) c_error("blocked address used for request-xfr");
if(acl->rangetype!=acl_range_single) c_error("address range used for request-xfr");
if(cfg_parser->current_request_xfr)
cfg_parser->current_request_xfr->next = acl;
else
cfg_parser->current_zone->request_xfr = acl;
cfg_parser->current_request_xfr = acl;
}
| VAR_AXFR STRING STRING
{
acl_options_t* acl = parse_acl_info(cfg_parser->opt->region, $2, $3);
acl->use_axfr_only = 1;
OUTYY(("P(zone_request_xfr:%s %s)\n", $2, $3));
if(acl->blocked) c_error("blocked address used for request-xfr");
if(acl->rangetype!=acl_range_single) c_error("address range used for request-xfr");
if(cfg_parser->current_request_xfr)
cfg_parser->current_request_xfr->next = acl;
else
cfg_parser->current_zone->request_xfr = acl;
cfg_parser->current_request_xfr = acl;
}
| VAR_UDP STRING STRING
{
acl_options_t* acl = parse_acl_info(cfg_parser->opt->region, $2, $3);
acl->allow_udp = 1;
OUTYY(("P(zone_request_xfr:%s %s)\n", $2, $3));
if(acl->blocked) c_error("blocked address used for request-xfr");
if(acl->rangetype!=acl_range_single) c_error("address range used for request-xfr");
if(cfg_parser->current_request_xfr)
cfg_parser->current_request_xfr->next = acl;
else
cfg_parser->current_zone->request_xfr = acl;
cfg_parser->current_request_xfr = acl;
}
;
zone_notify: VAR_NOTIFY STRING STRING
{
acl_options_t* acl = parse_acl_info(cfg_parser->opt->region, $2, $3);
OUTYY(("P(zone_notify:%s %s)\n", $2, $3));
if(acl->blocked) c_error("blocked address used for notify");
if(acl->rangetype!=acl_range_single) c_error("address range used for notify");
if(cfg_parser->current_notify)
cfg_parser->current_notify->next = acl;
else
cfg_parser->current_zone->notify = acl;
cfg_parser->current_notify = acl;
}
;
zone_notify_retry: VAR_NOTIFY_RETRY STRING
{
OUTYY(("P(zone_notify_retry:%s)\n", $2));
if(atoi($2) == 0 && strcmp($2, "0") != 0)
yyerror("number expected");
else cfg_parser->current_zone->notify_retry = atoi($2);
}
;
zone_provide_xfr: VAR_PROVIDE_XFR STRING STRING
{
acl_options_t* acl = parse_acl_info(cfg_parser->opt->region, $2, $3);
OUTYY(("P(zone_provide_xfr:%s %s)\n", $2, $3));
if(cfg_parser->current_provide_xfr)
cfg_parser->current_provide_xfr->next = acl;
else
cfg_parser->current_zone->provide_xfr = acl;
cfg_parser->current_provide_xfr = acl;
}
;
zone_outgoing_interface: VAR_OUTGOING_INTERFACE STRING
{
acl_options_t* acl = parse_acl_info(cfg_parser->opt->region, $2, "NOKEY");
OUTYY(("P(zone_outgoing_interface:%s)\n", $2));
if(acl->rangetype!=acl_range_single) c_error("address range used for outgoing interface");
if(cfg_parser->current_outgoing_interface)
cfg_parser->current_outgoing_interface->next = acl;
else
cfg_parser->current_zone->outgoing_interface = acl;
cfg_parser->current_outgoing_interface = acl;
}
;
zone_allow_axfr_fallback: VAR_ALLOW_AXFR_FALLBACK STRING
{
OUTYY(("P(zone_allow_axfr_fallback:%s)\n", $2));
if(strcmp($2, "yes") != 0 && strcmp($2, "no") != 0)
yyerror("expected yes or no.");
else cfg_parser->current_zone->allow_axfr_fallback = (strcmp($2, "yes")==0);
}
;
/* key: declaration */
keystart: VAR_KEY
{
OUTYY(("\nP(key:)\n"));
if(cfg_parser->current_key) {
if(!cfg_parser->current_key->name) c_error("previous key has no name");
if(!cfg_parser->current_key->algorithm) c_error("previous key has no algorithm");
if(!cfg_parser->current_key->secret) c_error("previous key has no secret blob");
cfg_parser->current_key->next = key_options_create(cfg_parser->opt->region);
cfg_parser->current_key = cfg_parser->current_key->next;
} else {
cfg_parser->current_key = key_options_create(cfg_parser->opt->region);
cfg_parser->opt->keys = cfg_parser->current_key;
}
cfg_parser->opt->numkeys++;
}
;
contents_key: contents_key content_key | content_key;
content_key: key_name | key_algorithm | key_secret;
key_name: VAR_NAME STRING
{
OUTYY(("P(key_name:%s)\n", $2));
#ifndef NDEBUG
assert(cfg_parser->current_key);
#endif
cfg_parser->current_key->name = region_strdup(cfg_parser->opt->region, $2);
}
;
key_algorithm: VAR_ALGORITHM STRING
{
OUTYY(("P(key_algorithm:%s)\n", $2));
#ifndef NDEBUG
assert(cfg_parser->current_key);
#endif
cfg_parser->current_key->algorithm = region_strdup(cfg_parser->opt->region, $2);
}
;
key_secret: VAR_SECRET STRING
{
OUTYY(("key_secret:%s)\n", $2));
#ifndef NDEBUG
assert(cfg_parser->current_key);
#endif
cfg_parser->current_key->secret = region_strdup(cfg_parser->opt->region, $2);
}
;
%%
/* parse helper routines could be here */
|