blob: 5f5d9eafccf5965b3deb23b2449a1392e07e6c61 [file] [log] [blame]
Wang Lei1a4240f2010-08-04 15:16:33 +01001/* Key type used to cache DNS lookups made by the kernel
2 *
3 * See Documentation/networking/dns_resolver.txt
4 *
5 * Copyright (c) 2007 Igor Mammedov
6 * Author(s): Igor Mammedov (niallain@gmail.com)
7 * Steve French (sfrench@us.ibm.com)
8 * Wang Lei (wang840925@gmail.com)
9 * David Howells (dhowells@redhat.com)
10 *
11 * This library is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU Lesser General Public License as published
13 * by the Free Software Foundation; either version 2.1 of the License, or
14 * (at your option) any later version.
15 *
16 * This library is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
19 * the GNU Lesser General Public License for more details.
20 *
21 * You should have received a copy of the GNU Lesser General Public License
Jeff Kirsherc057b192013-12-06 09:13:44 -080022 * along with this library; if not, see <http://www.gnu.org/licenses/>.
Wang Lei1a4240f2010-08-04 15:16:33 +010023 */
24#include <linux/module.h>
25#include <linux/moduleparam.h>
26#include <linux/slab.h>
27#include <linux/string.h>
Eric Biggers06a02a82018-04-17 12:07:06 -070028#include <linux/ratelimit.h>
Wang Lei1a4240f2010-08-04 15:16:33 +010029#include <linux/kernel.h>
30#include <linux/keyctl.h>
Stephen Rothwellaf352fe2010-08-06 03:13:47 +010031#include <linux/err.h>
Wang Lei4a2d7892010-08-11 09:37:58 +010032#include <linux/seq_file.h>
Wang Lei1a4240f2010-08-04 15:16:33 +010033#include <keys/dns_resolver-type.h>
34#include <keys/user-type.h>
35#include "internal.h"
36
37MODULE_DESCRIPTION("DNS Resolver");
38MODULE_AUTHOR("Wang Lei");
39MODULE_LICENSE("GPL");
40
Eric Dumazet95c96172012-04-15 05:58:06 +000041unsigned int dns_resolver_debug;
Wang Lei1a4240f2010-08-04 15:16:33 +010042module_param_named(debug, dns_resolver_debug, uint, S_IWUSR | S_IRUGO);
43MODULE_PARM_DESC(debug, "DNS Resolver debugging mask");
44
45const struct cred *dns_resolver_cache;
46
Wang Lei4a2d7892010-08-11 09:37:58 +010047#define DNS_ERRORNO_OPTION "dnserror"
48
Wang Lei1a4240f2010-08-04 15:16:33 +010049/*
David Howellsd46d4942014-07-18 18:56:36 +010050 * Preparse instantiation data for a dns_resolver key.
Wang Lei1a4240f2010-08-04 15:16:33 +010051 *
52 * The data must be a NUL-terminated string, with the NUL char accounted in
53 * datalen.
54 *
55 * If the data contains a '#' characters, then we take the clause after each
56 * one to be an option of the form 'key=value'. The actual data of interest is
57 * the string leading up to the first '#'. For instance:
58 *
59 * "ip1,ip2,...#foo=bar"
60 */
61static int
David Howellsd46d4942014-07-18 18:56:36 +010062dns_resolver_preparse(struct key_preparsed_payload *prep)
Wang Lei1a4240f2010-08-04 15:16:33 +010063{
64 struct user_key_payload *upayload;
Wang Lei4a2d7892010-08-11 09:37:58 +010065 unsigned long derrno;
Wang Lei1a4240f2010-08-04 15:16:33 +010066 int ret;
David Howellsd46d4942014-07-18 18:56:36 +010067 int datalen = prep->datalen, result_len = 0;
David Howellscf7f6012012-09-13 13:06:29 +010068 const char *data = prep->data, *end, *opt;
Wang Lei1a4240f2010-08-04 15:16:33 +010069
David Howellsd46d4942014-07-18 18:56:36 +010070 kenter("'%*.*s',%u", datalen, datalen, data, datalen);
Wang Lei1a4240f2010-08-04 15:16:33 +010071
72 if (datalen <= 1 || !data || data[datalen - 1] != '\0')
73 return -EINVAL;
74 datalen--;
75
76 /* deal with any options embedded in the data */
Wang Lei4a2d7892010-08-11 09:37:58 +010077 end = data + datalen;
Wang Lei1a4240f2010-08-04 15:16:33 +010078 opt = memchr(data, '#', datalen);
79 if (!opt) {
Wang Lei4a2d7892010-08-11 09:37:58 +010080 /* no options: the entire data is the result */
81 kdebug("no options");
82 result_len = datalen;
83 } else {
84 const char *next_opt;
85
86 result_len = opt - data;
87 opt++;
88 kdebug("options: '%s'", opt);
89 do {
Eric Biggers3d0ce44d2018-07-11 10:46:29 -070090 int opt_len, opt_nlen;
Wang Lei4a2d7892010-08-11 09:37:58 +010091 const char *eq;
Eric Biggers3d0ce44d2018-07-11 10:46:29 -070092 char optval[128];
Wang Lei4a2d7892010-08-11 09:37:58 +010093
94 next_opt = memchr(opt, '#', end - opt) ?: end;
95 opt_len = next_opt - opt;
Eric Biggers3d0ce44d2018-07-11 10:46:29 -070096 if (opt_len <= 0 || opt_len > sizeof(optval)) {
Eric Biggers06a02a82018-04-17 12:07:06 -070097 pr_warn_ratelimited("Invalid option length (%d) for dns_resolver key\n",
98 opt_len);
Wang Lei4a2d7892010-08-11 09:37:58 +010099 return -EINVAL;
100 }
101
Eric Biggers3d0ce44d2018-07-11 10:46:29 -0700102 eq = memchr(opt, '=', opt_len);
103 if (eq) {
104 opt_nlen = eq - opt;
105 eq++;
106 memcpy(optval, eq, next_opt - eq);
107 optval[next_opt - eq] = '\0';
108 } else {
109 opt_nlen = opt_len;
110 optval[0] = '\0';
111 }
Wang Lei4a2d7892010-08-11 09:37:58 +0100112
Eric Biggers3d0ce44d2018-07-11 10:46:29 -0700113 kdebug("option '%*.*s' val '%s'",
114 opt_nlen, opt_nlen, opt, optval);
Wang Lei4a2d7892010-08-11 09:37:58 +0100115
116 /* see if it's an error number representing a DNS error
117 * that's to be recorded as the result in this key */
118 if (opt_nlen == sizeof(DNS_ERRORNO_OPTION) - 1 &&
119 memcmp(opt, DNS_ERRORNO_OPTION, opt_nlen) == 0) {
120 kdebug("dns error number option");
Wang Lei4a2d7892010-08-11 09:37:58 +0100121
Eric Biggers3d0ce44d2018-07-11 10:46:29 -0700122 ret = kstrtoul(optval, 10, &derrno);
Wang Lei4a2d7892010-08-11 09:37:58 +0100123 if (ret < 0)
124 goto bad_option_value;
125
126 if (derrno < 1 || derrno > 511)
127 goto bad_option_value;
128
129 kdebug("dns error no. = %lu", derrno);
David Howells146aa8b2015-10-21 14:04:48 +0100130 prep->payload.data[dns_key_error] = ERR_PTR(-derrno);
Wang Lei4a2d7892010-08-11 09:37:58 +0100131 continue;
132 }
133
134 bad_option_value:
Eric Biggers06a02a82018-04-17 12:07:06 -0700135 pr_warn_ratelimited("Option '%*.*s' to dns_resolver key: bad/missing value\n",
136 opt_nlen, opt_nlen, opt);
Wang Lei4a2d7892010-08-11 09:37:58 +0100137 return -EINVAL;
138 } while (opt = next_opt + 1, opt < end);
Wang Lei1a4240f2010-08-04 15:16:33 +0100139 }
140
Wang Lei4a2d7892010-08-11 09:37:58 +0100141 /* don't cache the result if we're caching an error saying there's no
142 * result */
David Howells146aa8b2015-10-21 14:04:48 +0100143 if (prep->payload.data[dns_key_error]) {
144 kleave(" = 0 [h_error %ld]", PTR_ERR(prep->payload.data[dns_key_error]));
Wang Lei4a2d7892010-08-11 09:37:58 +0100145 return 0;
146 }
147
148 kdebug("store result");
David Howellsd46d4942014-07-18 18:56:36 +0100149 prep->quotalen = result_len;
Wang Lei1a4240f2010-08-04 15:16:33 +0100150
151 upayload = kmalloc(sizeof(*upayload) + result_len + 1, GFP_KERNEL);
152 if (!upayload) {
153 kleave(" = -ENOMEM");
154 return -ENOMEM;
155 }
156
157 upayload->datalen = result_len;
158 memcpy(upayload->data, data, result_len);
159 upayload->data[result_len] = '\0';
Wang Lei1a4240f2010-08-04 15:16:33 +0100160
David Howells146aa8b2015-10-21 14:04:48 +0100161 prep->payload.data[dns_key_data] = upayload;
Wang Lei1a4240f2010-08-04 15:16:33 +0100162 kleave(" = 0");
163 return 0;
164}
165
166/*
David Howellsd46d4942014-07-18 18:56:36 +0100167 * Clean up the preparse data
168 */
169static void dns_resolver_free_preparse(struct key_preparsed_payload *prep)
170{
171 pr_devel("==>%s()\n", __func__);
172
David Howells146aa8b2015-10-21 14:04:48 +0100173 kfree(prep->payload.data[dns_key_data]);
David Howellsd46d4942014-07-18 18:56:36 +0100174}
175
176/*
Wang Lei1a4240f2010-08-04 15:16:33 +0100177 * The description is of the form "[<type>:]<domain_name>"
178 *
179 * The domain name may be a simple name or an absolute domain name (which
180 * should end with a period). The domain name is case-independent.
181 */
David Howells0c903ab2014-09-16 17:36:08 +0100182static bool dns_resolver_cmp(const struct key *key,
183 const struct key_match_data *match_data)
Wang Lei1a4240f2010-08-04 15:16:33 +0100184{
185 int slen, dlen, ret = 0;
David Howells46291952014-09-16 17:36:02 +0100186 const char *src = key->description, *dsp = match_data->raw_data;
Wang Lei1a4240f2010-08-04 15:16:33 +0100187
188 kenter("%s,%s", src, dsp);
189
190 if (!src || !dsp)
191 goto no_match;
192
193 if (strcasecmp(src, dsp) == 0)
194 goto matched;
195
196 slen = strlen(src);
197 dlen = strlen(dsp);
198 if (slen <= 0 || dlen <= 0)
199 goto no_match;
200 if (src[slen - 1] == '.')
201 slen--;
202 if (dsp[dlen - 1] == '.')
203 dlen--;
204 if (slen != dlen || strncasecmp(src, dsp, slen) != 0)
205 goto no_match;
206
207matched:
208 ret = 1;
209no_match:
210 kleave(" = %d", ret);
211 return ret;
212}
213
Wang Lei4a2d7892010-08-11 09:37:58 +0100214/*
David Howellsc06cfb02014-09-16 17:36:06 +0100215 * Preparse the match criterion.
216 */
217static int dns_resolver_match_preparse(struct key_match_data *match_data)
218{
219 match_data->lookup_type = KEYRING_SEARCH_LOOKUP_ITERATE;
220 match_data->cmp = dns_resolver_cmp;
221 return 0;
222}
223
224/*
Wang Lei4a2d7892010-08-11 09:37:58 +0100225 * Describe a DNS key
226 */
227static void dns_resolver_describe(const struct key *key, struct seq_file *m)
228{
Wang Lei4a2d7892010-08-11 09:37:58 +0100229 seq_puts(m, key->description);
David Howells63c8e452017-10-04 16:43:25 +0100230 if (key_is_positive(key)) {
David Howells146aa8b2015-10-21 14:04:48 +0100231 int err = PTR_ERR(key->payload.data[dns_key_error]);
232
David Howells78b72802011-03-11 17:57:23 +0000233 if (err)
234 seq_printf(m, ": %d", err);
235 else
236 seq_printf(m, ": %u", key->datalen);
237 }
Wang Lei4a2d7892010-08-11 09:37:58 +0100238}
239
David Howells1362fa02011-03-03 11:28:58 +0000240/*
241 * read the DNS data
242 * - the key's semaphore is read-locked
243 */
244static long dns_resolver_read(const struct key *key,
245 char __user *buffer, size_t buflen)
246{
David Howells146aa8b2015-10-21 14:04:48 +0100247 int err = PTR_ERR(key->payload.data[dns_key_error]);
248
249 if (err)
250 return err;
David Howells1362fa02011-03-03 11:28:58 +0000251
252 return user_read(key, buffer, buflen);
253}
254
Wang Lei1a4240f2010-08-04 15:16:33 +0100255struct key_type key_type_dns_resolver = {
256 .name = "dns_resolver",
David Howellsd46d4942014-07-18 18:56:36 +0100257 .preparse = dns_resolver_preparse,
258 .free_preparse = dns_resolver_free_preparse,
259 .instantiate = generic_key_instantiate,
David Howellsc06cfb02014-09-16 17:36:06 +0100260 .match_preparse = dns_resolver_match_preparse,
Wang Lei1a4240f2010-08-04 15:16:33 +0100261 .revoke = user_revoke,
262 .destroy = user_destroy,
Wang Lei4a2d7892010-08-11 09:37:58 +0100263 .describe = dns_resolver_describe,
David Howells1362fa02011-03-03 11:28:58 +0000264 .read = dns_resolver_read,
Wang Lei1a4240f2010-08-04 15:16:33 +0100265};
266
267static int __init init_dns_resolver(void)
268{
269 struct cred *cred;
270 struct key *keyring;
271 int ret;
272
Wang Lei1a4240f2010-08-04 15:16:33 +0100273 /* create an override credential set with a special thread keyring in
274 * which DNS requests are cached
275 *
276 * this is used to prevent malicious redirections from being installed
277 * with add_key().
278 */
279 cred = prepare_kernel_cred(NULL);
280 if (!cred)
281 return -ENOMEM;
282
Linus Torvalds2a74dbb2012-12-16 15:40:50 -0800283 keyring = keyring_alloc(".dns_resolver",
284 GLOBAL_ROOT_UID, GLOBAL_ROOT_GID, cred,
David Howellsf8aa23a2012-10-02 19:24:56 +0100285 (KEY_POS_ALL & ~KEY_POS_SETATTR) |
286 KEY_USR_VIEW | KEY_USR_READ,
David Howells5ac7eac2016-04-06 16:14:24 +0100287 KEY_ALLOC_NOT_IN_QUOTA, NULL, NULL);
Wang Lei1a4240f2010-08-04 15:16:33 +0100288 if (IS_ERR(keyring)) {
289 ret = PTR_ERR(keyring);
290 goto failed_put_cred;
291 }
292
Wang Lei1a4240f2010-08-04 15:16:33 +0100293 ret = register_key_type(&key_type_dns_resolver);
294 if (ret < 0)
295 goto failed_put_key;
296
297 /* instruct request_key() to use this special keyring as a cache for
298 * the results it looks up */
David Howells700920e2012-01-18 15:31:45 +0000299 set_bit(KEY_FLAG_ROOT_CAN_CLEAR, &keyring->flags);
Wang Lei1a4240f2010-08-04 15:16:33 +0100300 cred->thread_keyring = keyring;
301 cred->jit_keyring = KEY_REQKEY_DEFL_THREAD_KEYRING;
302 dns_resolver_cache = cred;
303
304 kdebug("DNS resolver keyring: %d\n", key_serial(keyring));
305 return 0;
306
307failed_put_key:
308 key_put(keyring);
309failed_put_cred:
310 put_cred(cred);
311 return ret;
312}
313
314static void __exit exit_dns_resolver(void)
315{
316 key_revoke(dns_resolver_cache->thread_keyring);
317 unregister_key_type(&key_type_dns_resolver);
318 put_cred(dns_resolver_cache);
Wang Lei1a4240f2010-08-04 15:16:33 +0100319}
320
321module_init(init_dns_resolver)
322module_exit(exit_dns_resolver)
323MODULE_LICENSE("GPL");
David Howellsf8aa23a2012-10-02 19:24:56 +0100324