]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - contrib/bind9/lib/dns/include/dns/nsec3.h
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / contrib / bind9 / lib / dns / include / dns / nsec3.h
1 /*
2  * Copyright (C) 2008, 2009  Internet Systems Consortium, Inc. ("ISC")
3  *
4  * Permission to use, copy, modify, and/or distribute this software for any
5  * purpose with or without fee is hereby granted, provided that the above
6  * copyright notice and this permission notice appear in all copies.
7  *
8  * THE SOFTWARE IS PROVIDED "AS IS" AND ISC DISCLAIMS ALL WARRANTIES WITH
9  * REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF MERCHANTABILITY
10  * AND FITNESS.  IN NO EVENT SHALL ISC BE LIABLE FOR ANY SPECIAL, DIRECT,
11  * INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM
12  * LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE
13  * OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
14  * PERFORMANCE OF THIS SOFTWARE.
15  */
16
17 /* $Id: nsec3.h,v 1.5.48.3 2009/10/06 21:20:18 each Exp $ */
18
19 #ifndef DNS_NSEC3_H
20 #define DNS_NSEC3_H 1
21
22 #include <isc/lang.h>
23 #include <isc/iterated_hash.h>
24
25 #include <dns/db.h>
26 #include <dns/diff.h>
27 #include <dns/name.h>
28 #include <dns/rdatastruct.h>
29 #include <dns/types.h>
30
31 #define DNS_NSEC3_SALTSIZE 255
32
33 /*
34  * hash = 1, flags =1, iterations = 2, salt length = 1, salt = 255 (max)
35  * hash length = 1, hash = 255 (max), bitmap = 8192 + 512 (max)
36  */
37 #define DNS_NSEC3_BUFFERSIZE (6 + 255 + 255 + 8192 + 512)
38 /*
39  * hash = 1, flags = 1, iterations = 2, salt length = 1, salt = 255 (max)
40  */
41 #define DNS_NSEC3PARAM_BUFFERSIZE (5 + 255)
42
43 /*
44  * Test "unknown" algorithm.  Is mapped to dns_hash_sha1.
45  */
46 #define DNS_NSEC3_UNKNOWNALG 245U
47
48 ISC_LANG_BEGINDECLS
49
50 isc_result_t
51 dns_nsec3_buildrdata(dns_db_t *db, dns_dbversion_t *version,
52                      dns_dbnode_t *node, unsigned int hashalg,
53                      unsigned int optin, unsigned int iterations,
54                      const unsigned char *salt, size_t salt_length,
55                      const unsigned char *nexthash, size_t hash_length,
56                      unsigned char *buffer, dns_rdata_t *rdata);
57 /*%<
58  * Build the rdata of a NSEC3 record for the data at 'node'.
59  * Note: 'node' is not the node where the NSEC3 record will be stored.
60  *
61  * Requires:
62  *      buffer  Points to a temporary buffer of at least
63  *              DNS_NSEC_BUFFERSIZE bytes.
64  *      rdata   Points to an initialized dns_rdata_t.
65  *
66  * Ensures:
67  *      *rdata  Contains a valid NSEC3 rdata.  The 'data' member refers
68  *              to 'buffer'.
69  */
70
71 isc_boolean_t
72 dns_nsec3_typepresent(dns_rdata_t *nsec, dns_rdatatype_t type);
73 /*%<
74  * Determine if a type is marked as present in an NSEC3 record.
75  *
76  * Requires:
77  *      'nsec' points to a valid rdataset of type NSEC3
78  */
79
80 isc_result_t
81 dns_nsec3_hashname(dns_fixedname_t *result,
82                    unsigned char rethash[NSEC3_MAX_HASH_LENGTH],
83                    size_t *hash_length, dns_name_t *name, dns_name_t *origin,
84                    dns_hash_t hashalg, unsigned int iterations,
85                    const unsigned char *salt, size_t saltlength);
86 /*%<
87  * Make a hashed domain name from an unhashed one. If rethash is not NULL
88  * the raw hash is stored there.
89  */
90
91 unsigned int
92 dns_nsec3_hashlength(dns_hash_t hash);
93 /*%<
94  * Return the length of the hash produced by the specified algorithm
95  * or zero when unknown.
96  */
97
98 isc_boolean_t
99 dns_nsec3_supportedhash(dns_hash_t hash);
100 /*%<
101  * Return whether we support this hash algorithm or not.
102  */
103
104 isc_result_t
105 dns_nsec3_addnsec3(dns_db_t *db, dns_dbversion_t *version,
106                    dns_name_t *name, const dns_rdata_nsec3param_t *nsec3param,
107                    dns_ttl_t nsecttl, isc_boolean_t unsecure, dns_diff_t *diff);
108
109 isc_result_t
110 dns_nsec3_addnsec3s(dns_db_t *db, dns_dbversion_t *version,
111                     dns_name_t *name, dns_ttl_t nsecttl,
112                     isc_boolean_t unsecure, dns_diff_t *diff);
113 /*%<
114  * Add NSEC3 records for 'name', recording the change in 'diff'.
115  * Adjust previous NSEC3 records, if any, to reflect the addition.
116  * The existing NSEC3 records are removed.
117  *
118  * dns_nsec3_addnsec3() will only add records to the chain identified by
119  * 'nsec3param'.
120  *
121  * 'unsecure' should be set to reflect if this is a potentially
122  * unsecure delegation (no DS record).
123  *
124  * dns_nsec3_addnsec3s() will examine the NSEC3PARAM RRset to determine which
125  * chains to be updated.  NSEC3PARAM records with the DNS_NSEC3FLAG_CREATE
126  * will be preferentially chosen over NSEC3PARAM records without
127  * DNS_NSEC3FLAG_CREATE set.  NSEC3PARAM records with DNS_NSEC3FLAG_REMOVE
128  * set will be ignored by dns_nsec3_addnsec3s().  If DNS_NSEC3FLAG_CREATE
129  * is set then the new NSEC3 will have OPTOUT set to match the that in the
130  * NSEC3PARAM record otherwise OPTOUT will be inherited from the previous
131  * record in the chain.
132  *
133  * Requires:
134  *      'db' to be valid.
135  *      'version' to be valid or NULL.
136  *      'name' to be valid.
137  *      'nsec3param' to be valid.
138  *      'diff' to be valid.
139  */
140
141 isc_result_t
142 dns_nsec3_delnsec3(dns_db_t *db, dns_dbversion_t *version, dns_name_t *name,
143                    const dns_rdata_nsec3param_t *nsec3param, dns_diff_t *diff);
144
145 isc_result_t
146 dns_nsec3_delnsec3s(dns_db_t *db, dns_dbversion_t *version, dns_name_t *name,
147                     dns_diff_t *diff);
148 /*%<
149  * Remove NSEC3 records for 'name', recording the change in 'diff'.
150  * Adjust previous NSEC3 records, if any, to reflect the removal.
151  *
152  * dns_nsec3_delnsec3() performs the above for the chain identified by
153  * 'nsec3param'.
154  *
155  * dns_nsec3_delnsec3s() examines the NSEC3PARAM RRset in a similar manner
156  * to dns_nsec3_addnsec3s().  Unlike dns_nsec3_addnsec3s() updated NSEC3
157  * records have the OPTOUT flag preserved.
158  *
159  * Requires:
160  *      'db' to be valid.
161  *      'version' to be valid or NULL.
162  *      'name' to be valid.
163  *      'nsec3param' to be valid.
164  *      'diff' to be valid.
165  */
166
167 isc_result_t
168 dns_nsec3_active(dns_db_t *db, dns_dbversion_t *version,
169                  isc_boolean_t complete, isc_boolean_t *answer);
170 /*%<
171  * Check if there are any complete/to be built NSEC3 chains.
172  * If 'complete' is ISC_TRUE only complete chains will be recognized.
173  *
174  * Requires:
175  *      'db' to be valid.
176  *      'version' to be valid or NULL.
177  *      'answer' to be non NULL.
178  */
179
180 isc_result_t
181 dns_nsec3_maxiterations(dns_db_t *db, dns_dbversion_t *version,
182                         isc_mem_t *mctx, unsigned int *iterationsp);
183 /*%<
184  * Find the maximum permissible number of iterations allowed based on
185  * the key strength.
186  *
187  * Requires:
188  *      'db' to be valid.
189  *      'version' to be valid or NULL.
190  *      'mctx' to be valid.
191  *      'iterationsp' to be non NULL.
192  */
193
194 ISC_LANG_ENDDECLS
195
196 #endif /* DNS_NSEC3_H */