xref: /minix/external/bsd/bind/dist/lib/isccfg/dnsconf.c (revision fb9c64b2)
1 /*	$NetBSD: dnsconf.c,v 1.4 2014/12/10 04:38:02 christos Exp $	*/
2 
3 /*
4  * Copyright (C) 2009  Internet Systems Consortium, Inc. ("ISC")
5  *
6  * Permission to use, copy, modify, and/or distribute this software for any
7  * purpose with or without fee is hereby granted, provided that the above
8  * copyright notice and this permission notice appear in all copies.
9  *
10  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
11  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
12  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
13  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
14  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
15  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
16  * PERFORMANCE OF THIS SOFTWARE.
17  */
18 
19 /* Id: dnsconf.c,v 1.4 2009/09/02 23:48:03 tbox Exp  */
20 
21 /*! \file */
22 
23 #include <config.h>
24 
25 #include <isccfg/cfg.h>
26 #include <isccfg/grammar.h>
27 
28 /*%
29  * A trusted key, as used in the "trusted-keys" statement.
30  */
31 static cfg_tuplefielddef_t trustedkey_fields[] = {
32 	{ "name", &cfg_type_astring, 0 },
33 	{ "flags", &cfg_type_uint32, 0 },
34 	{ "protocol", &cfg_type_uint32, 0 },
35 	{ "algorithm", &cfg_type_uint32, 0 },
36 	{ "key", &cfg_type_qstring, 0 },
37 	{ NULL, NULL, 0 }
38 };
39 
40 static cfg_type_t cfg_type_trustedkey = {
41 	"trustedkey", cfg_parse_tuple, cfg_print_tuple, cfg_doc_tuple,
42 	&cfg_rep_tuple, trustedkey_fields
43 };
44 
45 static cfg_type_t cfg_type_trustedkeys = {
46 	"trusted-keys", cfg_parse_bracketed_list, cfg_print_bracketed_list,
47 	cfg_doc_bracketed_list, &cfg_rep_list, &cfg_type_trustedkey
48 };
49 
50 /*%
51  * Clauses that can be found within the top level of the dns.conf
52  * file only.
53  */
54 static cfg_clausedef_t
55 dnsconf_clauses[] = {
56 	{ "trusted-keys", &cfg_type_trustedkeys, CFG_CLAUSEFLAG_MULTI },
57 	{ NULL, NULL, 0 }
58 };
59 
60 /*% The top-level dns.conf syntax. */
61 
62 static cfg_clausedef_t *
63 dnsconf_clausesets[] = {
64 	dnsconf_clauses,
65 	NULL
66 };
67 
68 LIBISCCFG_EXTERNAL_DATA cfg_type_t cfg_type_dnsconf = {
69 	"dnsconf", cfg_parse_mapbody, cfg_print_mapbody, cfg_doc_mapbody,
70 	&cfg_rep_map, dnsconf_clausesets
71 };
72