]> git.ipfire.org Git - thirdparty/systemd.git/blob - src/resolve/resolved-dns-rr.h
Merge pull request #2331 from yuwata/journal-remote-unit-v2
[thirdparty/systemd.git] / src / resolve / resolved-dns-rr.h
1 /*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3 #pragma once
4
5 /***
6 This file is part of systemd.
7
8 Copyright 2014 Lennart Poettering
9
10 systemd is free software; you can redistribute it and/or modify it
11 under the terms of the GNU Lesser General Public License as published by
12 the Free Software Foundation; either version 2.1 of the License, or
13 (at your option) any later version.
14
15 systemd is distributed in the hope that it will be useful, but
16 WITHOUT ANY WARRANTY; without even the implied warranty of
17 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
18 Lesser General Public License for more details.
19
20 You should have received a copy of the GNU Lesser General Public License
21 along with systemd; If not, see <http://www.gnu.org/licenses/>.
22 ***/
23
24 #include <netinet/in.h>
25
26 #include "bitmap.h"
27 #include "dns-type.h"
28 #include "hashmap.h"
29 #include "in-addr-util.h"
30 #include "list.h"
31
32 typedef struct DnsResourceKey DnsResourceKey;
33 typedef struct DnsResourceRecord DnsResourceRecord;
34 typedef struct DnsTxtItem DnsTxtItem;
35
36 /* DNSKEY RR flags */
37 #define DNSKEY_FLAG_SEP (UINT16_C(1) << 0)
38 #define DNSKEY_FLAG_REVOKE (UINT16_C(1) << 7)
39 #define DNSKEY_FLAG_ZONE_KEY (UINT16_C(1) << 8)
40
41 /* mDNS RR flags */
42 #define MDNS_RR_CACHE_FLUSH (UINT16_C(1) << 15)
43
44 /* DNSSEC algorithm identifiers, see
45 * http://tools.ietf.org/html/rfc4034#appendix-A.1 and
46 * https://www.iana.org/assignments/dns-sec-alg-numbers/dns-sec-alg-numbers.xhtml */
47 enum {
48 DNSSEC_ALGORITHM_RSAMD5 = 1,
49 DNSSEC_ALGORITHM_DH,
50 DNSSEC_ALGORITHM_DSA,
51 DNSSEC_ALGORITHM_ECC,
52 DNSSEC_ALGORITHM_RSASHA1,
53 DNSSEC_ALGORITHM_DSA_NSEC3_SHA1,
54 DNSSEC_ALGORITHM_RSASHA1_NSEC3_SHA1,
55 DNSSEC_ALGORITHM_RSASHA256 = 8, /* RFC 5702 */
56 DNSSEC_ALGORITHM_RSASHA512 = 10, /* RFC 5702 */
57 DNSSEC_ALGORITHM_ECC_GOST = 12, /* RFC 5933 */
58 DNSSEC_ALGORITHM_ECDSAP256SHA256 = 13, /* RFC 6605 */
59 DNSSEC_ALGORITHM_ECDSAP384SHA384 = 14, /* RFC 6605 */
60 DNSSEC_ALGORITHM_INDIRECT = 252,
61 DNSSEC_ALGORITHM_PRIVATEDNS,
62 DNSSEC_ALGORITHM_PRIVATEOID,
63 _DNSSEC_ALGORITHM_MAX_DEFINED
64 };
65
66 /* DNSSEC digest identifiers, see
67 * https://www.iana.org/assignments/ds-rr-types/ds-rr-types.xhtml */
68 enum {
69 DNSSEC_DIGEST_SHA1 = 1,
70 DNSSEC_DIGEST_SHA256 = 2, /* RFC 4509 */
71 DNSSEC_DIGEST_GOST_R_34_11_94 = 3, /* RFC 5933 */
72 DNSSEC_DIGEST_SHA384 = 4, /* RFC 6605 */
73 _DNSSEC_DIGEST_MAX_DEFINED
74 };
75
76 /* DNSSEC NSEC3 hash algorithms, see
77 * https://www.iana.org/assignments/dnssec-nsec3-parameters/dnssec-nsec3-parameters.xhtml */
78 enum {
79 NSEC3_ALGORITHM_SHA1 = 1,
80 _NSEC3_ALGORITHM_MAX_DEFINED
81 };
82
83 struct DnsResourceKey {
84 unsigned n_ref; /* (unsigned -1) for const keys, see below */
85 uint16_t class, type;
86 char *_name; /* don't access directy, use DNS_RESOURCE_KEY_NAME()! */
87 };
88
89 /* Creates a temporary resource key. This is only useful to quickly
90 * look up something, without allocating a full DnsResourceKey object
91 * for it. Note that it is not OK to take references to this kind of
92 * resource key object. */
93 #define DNS_RESOURCE_KEY_CONST(c, t, n) \
94 ((DnsResourceKey) { \
95 .n_ref = (unsigned) -1, \
96 .class = c, \
97 .type = t, \
98 ._name = (char*) n, \
99 })
100
101
102 struct DnsTxtItem {
103 size_t length;
104 LIST_FIELDS(DnsTxtItem, items);
105 uint8_t data[];
106 };
107
108 struct DnsResourceRecord {
109 unsigned n_ref;
110 DnsResourceKey *key;
111
112 char *to_string;
113
114 uint32_t ttl;
115 usec_t expiry; /* RRSIG signature expiry */
116
117 /* How many labels to strip to determine "signer" of the RRSIG (aka, the zone). -1 if not signed. */
118 unsigned n_skip_labels_signer;
119 /* How many labels to strip to determine "synthesizing source" of this RR, i.e. the wildcard's immediate parent. -1 if not signed. */
120 unsigned n_skip_labels_source;
121
122 bool unparseable:1;
123
124 bool wire_format_canonical:1;
125 void *wire_format;
126 size_t wire_format_size;
127 size_t wire_format_rdata_offset;
128
129 union {
130 struct {
131 void *data;
132 size_t size;
133 } generic, opt;
134
135 struct {
136 uint16_t priority;
137 uint16_t weight;
138 uint16_t port;
139 char *name;
140 } srv;
141
142 struct {
143 char *name;
144 } ptr, ns, cname, dname;
145
146 struct {
147 char *cpu;
148 char *os;
149 } hinfo;
150
151 struct {
152 DnsTxtItem *items;
153 } txt, spf;
154
155 struct {
156 struct in_addr in_addr;
157 } a;
158
159 struct {
160 struct in6_addr in6_addr;
161 } aaaa;
162
163 struct {
164 char *mname;
165 char *rname;
166 uint32_t serial;
167 uint32_t refresh;
168 uint32_t retry;
169 uint32_t expire;
170 uint32_t minimum;
171 } soa;
172
173 struct {
174 uint16_t priority;
175 char *exchange;
176 } mx;
177
178 /* https://tools.ietf.org/html/rfc1876 */
179 struct {
180 uint8_t version;
181 uint8_t size;
182 uint8_t horiz_pre;
183 uint8_t vert_pre;
184 uint32_t latitude;
185 uint32_t longitude;
186 uint32_t altitude;
187 } loc;
188
189 /* https://tools.ietf.org/html/rfc4255#section-3.1 */
190 struct {
191 uint8_t algorithm;
192 uint8_t fptype;
193 void *fingerprint;
194 size_t fingerprint_size;
195 } sshfp;
196
197 /* http://tools.ietf.org/html/rfc4034#section-2.1 */
198 struct {
199 uint16_t flags;
200 uint8_t protocol;
201 uint8_t algorithm;
202 void* key;
203 size_t key_size;
204 } dnskey;
205
206 /* http://tools.ietf.org/html/rfc4034#section-3.1 */
207 struct {
208 uint16_t type_covered;
209 uint8_t algorithm;
210 uint8_t labels;
211 uint32_t original_ttl;
212 uint32_t expiration;
213 uint32_t inception;
214 uint16_t key_tag;
215 char *signer;
216 void *signature;
217 size_t signature_size;
218 } rrsig;
219
220 /* https://tools.ietf.org/html/rfc4034#section-4.1 */
221 struct {
222 char *next_domain_name;
223 Bitmap *types;
224 } nsec;
225
226 /* https://tools.ietf.org/html/rfc4034#section-5.1 */
227 struct {
228 uint16_t key_tag;
229 uint8_t algorithm;
230 uint8_t digest_type;
231 void *digest;
232 size_t digest_size;
233 } ds;
234
235 struct {
236 uint8_t algorithm;
237 uint8_t flags;
238 uint16_t iterations;
239 void *salt;
240 size_t salt_size;
241 void *next_hashed_name;
242 size_t next_hashed_name_size;
243 Bitmap *types;
244 } nsec3;
245 };
246 };
247
248 static inline const char* DNS_RESOURCE_KEY_NAME(const DnsResourceKey *key) {
249 if (!key)
250 return NULL;
251
252 if (key->_name)
253 return key->_name;
254
255 return (char*) key + sizeof(DnsResourceKey);
256 }
257
258 static inline const void* DNS_RESOURCE_RECORD_RDATA(DnsResourceRecord *rr) {
259 if (!rr)
260 return NULL;
261
262 if (!rr->wire_format)
263 return NULL;
264
265 assert(rr->wire_format_rdata_offset <= rr->wire_format_size);
266 return (uint8_t*) rr->wire_format + rr->wire_format_rdata_offset;
267 }
268
269 static inline size_t DNS_RESOURCE_RECORD_RDATA_SIZE(DnsResourceRecord *rr) {
270 if (!rr)
271 return 0;
272 if (!rr->wire_format)
273 return 0;
274
275 assert(rr->wire_format_rdata_offset <= rr->wire_format_size);
276 return rr->wire_format_size - rr->wire_format_rdata_offset;
277 }
278
279 DnsResourceKey* dns_resource_key_new(uint16_t class, uint16_t type, const char *name);
280 DnsResourceKey* dns_resource_key_new_redirect(const DnsResourceKey *key, const DnsResourceRecord *cname);
281 int dns_resource_key_new_append_suffix(DnsResourceKey **ret, DnsResourceKey *key, char *name);
282 DnsResourceKey* dns_resource_key_new_consume(uint16_t class, uint16_t type, char *name);
283 DnsResourceKey* dns_resource_key_ref(DnsResourceKey *key);
284 DnsResourceKey* dns_resource_key_unref(DnsResourceKey *key);
285 bool dns_resource_key_is_address(const DnsResourceKey *key);
286 int dns_resource_key_equal(const DnsResourceKey *a, const DnsResourceKey *b);
287 int dns_resource_key_match_rr(const DnsResourceKey *key, DnsResourceRecord *rr, const char *search_domain);
288 int dns_resource_key_match_cname_or_dname(const DnsResourceKey *key, const DnsResourceKey *cname, const char *search_domain);
289 int dns_resource_key_match_soa(const DnsResourceKey *key, const DnsResourceKey *soa);
290 int dns_resource_key_to_string(const DnsResourceKey *key, char **ret);
291 DEFINE_TRIVIAL_CLEANUP_FUNC(DnsResourceKey*, dns_resource_key_unref);
292
293 static inline bool dns_key_is_shared(const DnsResourceKey *key) {
294 return IN_SET(key->type, DNS_TYPE_PTR);
295 }
296
297 bool dns_resource_key_reduce(DnsResourceKey **a, DnsResourceKey **b);
298
299 DnsResourceRecord* dns_resource_record_new(DnsResourceKey *key);
300 DnsResourceRecord* dns_resource_record_new_full(uint16_t class, uint16_t type, const char *name);
301 DnsResourceRecord* dns_resource_record_ref(DnsResourceRecord *rr);
302 DnsResourceRecord* dns_resource_record_unref(DnsResourceRecord *rr);
303 int dns_resource_record_new_reverse(DnsResourceRecord **ret, int family, const union in_addr_union *address, const char *name);
304 int dns_resource_record_new_address(DnsResourceRecord **ret, int family, const union in_addr_union *address, const char *name);
305 int dns_resource_record_equal(const DnsResourceRecord *a, const DnsResourceRecord *b);
306 const char* dns_resource_record_to_string(DnsResourceRecord *rr);
307 DEFINE_TRIVIAL_CLEANUP_FUNC(DnsResourceRecord*, dns_resource_record_unref);
308
309 int dns_resource_record_to_wire_format(DnsResourceRecord *rr, bool canonical);
310
311 int dns_resource_record_signer(DnsResourceRecord *rr, const char **ret);
312 int dns_resource_record_source(DnsResourceRecord *rr, const char **ret);
313 int dns_resource_record_is_signer(DnsResourceRecord *rr, const char *zone);
314 int dns_resource_record_is_synthetic(DnsResourceRecord *rr);
315
316 DnsTxtItem *dns_txt_item_free_all(DnsTxtItem *i);
317 bool dns_txt_item_equal(DnsTxtItem *a, DnsTxtItem *b);
318
319 extern const struct hash_ops dns_resource_key_hash_ops;
320 extern const struct hash_ops dns_resource_record_hash_ops;
321
322 int dnssec_algorithm_to_string_alloc(int i, char **ret);
323 int dnssec_algorithm_from_string(const char *s) _pure_;
324
325 int dnssec_digest_to_string_alloc(int i, char **ret);
326 int dnssec_digest_from_string(const char *s) _pure_;