]> git.ipfire.org Git - thirdparty/systemd.git/blame - src/resolve/dns-type.c
resolved: refuse validating wildcard RRs for SOA, NSEC3, DNAME
[thirdparty/systemd.git] / src / resolve / dns-type.c
CommitLineData
7263f724
ZJS
1/*-*- Mode: C; c-basic-offset: 8; indent-tabs-mode: nil -*-*/
2
3/***
4 This file is part of systemd.
5
6 Copyright 2014 Zbigniew Jędrzejewski-Szmek
7
8 systemd is free software; you can redistribute it and/or modify it
9 under the terms of the GNU Lesser General Public License as published by
10 the Free Software Foundation; either version 2.1 of the License, or
11 (at your option) any later version.
12
13 systemd is distributed in the hope that it will be useful, but
14 WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 Lesser General Public License for more details.
17
18 You should have received a copy of the GNU Lesser General Public License
19 along with systemd; If not, see <http://www.gnu.org/licenses/>.
20***/
21
22#include "dns-type.h"
4b548ef3 23#include "string-util.h"
7263f724
ZJS
24
25typedef const struct {
26 uint16_t type;
27 const char *name;
28} dns_type;
29
30static const struct dns_type_name *
31lookup_dns_type (register const char *str, register unsigned int len);
32
33#include "dns_type-from-name.h"
34#include "dns_type-to-name.h"
35
de292aa1 36int dns_type_from_string(const char *s) {
7263f724
ZJS
37 const struct dns_type_name *sc;
38
39 assert(s);
7263f724
ZJS
40
41 sc = lookup_dns_type(s, strlen(s));
42 if (!sc)
de292aa1 43 return _DNS_TYPE_INVALID;
7263f724 44
de292aa1 45 return sc->id;
7263f724 46}
8e6edc49 47
bea4c76f
LP
48bool dns_type_is_pseudo(uint16_t type) {
49
50 /* Checks whether the specified type is a "pseudo-type". What
51 * a "pseudo-type" precisely is, is defined only very weakly,
52 * but apparently entails all RR types that are not actually
53 * stored as RRs on the server and should hence also not be
54 * cached. We use this list primarily to validate NSEC type
c33be4a6 55 * bitfields, and to verify what to cache. */
bea4c76f
LP
56
57 return IN_SET(type,
58 0, /* A Pseudo RR type, according to RFC 2931 */
59 DNS_TYPE_ANY,
60 DNS_TYPE_AXFR,
61 DNS_TYPE_IXFR,
62 DNS_TYPE_OPT,
63 DNS_TYPE_TSIG,
64 DNS_TYPE_TKEY
65 );
8e6edc49 66}
c463eb78 67
4b548ef3
LP
68bool dns_class_is_pseudo(uint16_t class) {
69 return class == DNS_TYPE_ANY;
70}
71
c463eb78
LP
72bool dns_type_is_valid_query(uint16_t type) {
73
74 /* The types valid as questions in packets */
75
76 return !IN_SET(type,
77 0,
78 DNS_TYPE_OPT,
79 DNS_TYPE_TSIG,
04680e36
LP
80 DNS_TYPE_TKEY,
81
82 /* RRSIG are technically valid as questions, but we refuse doing explicit queries for them, as
83 * they aren't really payload, but signatures for payload, and cannot be validated on their
84 * own. After all they are the signatures, and have no signatures of their own validating
85 * them. */
86 DNS_TYPE_RRSIG);
c463eb78
LP
87}
88
89bool dns_type_is_valid_rr(uint16_t type) {
90
91 /* The types valid as RR in packets (but not necessarily
92 * stored on servers). */
93
94 return !IN_SET(type,
95 DNS_TYPE_ANY,
96 DNS_TYPE_AXFR,
97 DNS_TYPE_IXFR);
98}
4b548ef3
LP
99
100bool dns_class_is_valid_rr(uint16_t class) {
101 return class != DNS_CLASS_ANY;
102}
103
d3c7e913
LP
104bool dns_type_may_redirect(uint16_t type) {
105 /* The following record types should never be redirected using
106 * CNAME/DNAME RRs. See
107 * <https://tools.ietf.org/html/rfc4035#section-2.5>. */
108
109 if (dns_type_is_pseudo(type))
110 return false;
111
112 return !IN_SET(type,
113 DNS_TYPE_CNAME,
114 DNS_TYPE_DNAME,
115 DNS_TYPE_NSEC3,
116 DNS_TYPE_NSEC,
117 DNS_TYPE_RRSIG,
118 DNS_TYPE_NXT,
119 DNS_TYPE_SIG,
120 DNS_TYPE_KEY);
121}
122
e8233bce
LP
123bool dns_type_may_wildcard(uint16_t type) {
124
125 /* The following records may not be expanded from wildcard RRsets */
126
127 if (dns_type_is_pseudo(type))
128 return false;
129
130 return !IN_SET(type,
131 DNS_TYPE_NSEC3,
132 DNS_TYPE_SOA,
133
134 /* Prohibited by https://tools.ietf.org/html/rfc4592#section-4.4 */
135 DNS_TYPE_DNAME);
136}
137
91adc4db
LP
138bool dns_type_is_dnssec(uint16_t type) {
139 return IN_SET(type,
140 DNS_TYPE_DS,
141 DNS_TYPE_DNSKEY,
142 DNS_TYPE_RRSIG,
143 DNS_TYPE_NSEC,
144 DNS_TYPE_NSEC3,
145 DNS_TYPE_NSEC3PARAM);
146}
147
d0129ddb
LP
148bool dns_type_is_obsolete(uint16_t type) {
149 return IN_SET(type,
150 /* Obsoleted by RFC 973 */
151 DNS_TYPE_MD,
152 DNS_TYPE_MF,
153 DNS_TYPE_MAILA,
154
155 /* Kinda obsoleted by RFC 2505 */
156 DNS_TYPE_MB,
157 DNS_TYPE_MG,
158 DNS_TYPE_MR,
159 DNS_TYPE_MINFO,
160 DNS_TYPE_MAILB,
161
162 /* RFC1127 kinda obsoleted this by recommending against its use */
163 DNS_TYPE_WKS,
164
165 /* Declared historical by RFC 6563 */
166 DNS_TYPE_A6,
167
168 /* Obsoleted by DNSSEC-bis */
169 DNS_TYPE_NXT,
170
171 /* RFC 1035 removed support for concepts that needed this from RFC 883 */
172 DNS_TYPE_NULL);
173}
174
4b548ef3
LP
175const char *dns_class_to_string(uint16_t class) {
176
177 switch (class) {
178
179 case DNS_CLASS_IN:
180 return "IN";
181
182 case DNS_CLASS_ANY:
183 return "ANY";
184 }
185
186 return NULL;
187}
188
189int dns_class_from_string(const char *s) {
190
191 if (!s)
192 return _DNS_CLASS_INVALID;
193
194 if (strcaseeq(s, "IN"))
195 return DNS_CLASS_IN;
196 else if (strcaseeq(s, "ANY"))
197 return DNS_CLASS_ANY;
198
199 return _DNS_CLASS_INVALID;
200}