1 /* Key type used to cache DNS lookups made by the kernel
3 * See Documentation/networking/dns_resolver.txt
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)
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.
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.
21 * You should have received a copy of the GNU Lesser General Public License
22 * along with this library; if not, write to the Free Software
23 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
25 #include <linux/module.h>
26 #include <linux/moduleparam.h>
27 #include <linux/slab.h>
28 #include <linux/string.h>
29 #include <linux/kernel.h>
30 #include <linux/keyctl.h>
31 #include <linux/err.h>
32 #include <linux/seq_file.h>
33 #include <keys/dns_resolver-type.h>
34 #include <keys/user-type.h>
37 MODULE_DESCRIPTION("DNS Resolver");
38 MODULE_AUTHOR("Wang Lei");
39 MODULE_LICENSE("GPL");
41 unsigned dns_resolver_debug
;
42 module_param_named(debug
, dns_resolver_debug
, uint
, S_IWUSR
| S_IRUGO
);
43 MODULE_PARM_DESC(debug
, "DNS Resolver debugging mask");
45 const struct cred
*dns_resolver_cache
;
47 #define DNS_ERRORNO_OPTION "dnserror"
50 * Instantiate a user defined key for dns_resolver.
52 * The data must be a NUL-terminated string, with the NUL char accounted in
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:
59 * "ip1,ip2,...#foo=bar"
62 dns_resolver_instantiate(struct key
*key
, const void *_data
, size_t datalen
)
64 struct user_key_payload
*upayload
;
67 size_t result_len
= 0;
68 const char *data
= _data
, *end
, *opt
;
70 kenter("%%%d,%s,'%s',%zu",
71 key
->serial
, key
->description
, data
, datalen
);
73 if (datalen
<= 1 || !data
|| data
[datalen
- 1] != '\0')
77 /* deal with any options embedded in the data */
79 opt
= memchr(data
, '#', datalen
);
81 /* no options: the entire data is the result */
87 result_len
= opt
- data
;
89 kdebug("options: '%s'", opt
);
92 int opt_len
, opt_nlen
, opt_vlen
, tmp
;
94 next_opt
= memchr(opt
, '#', end
- opt
) ?: end
;
95 opt_len
= next_opt
- opt
;
98 "Empty option to dns_resolver key %d\n",
103 eq
= memchr(opt
, '=', opt_len
) ?: end
;
106 opt_vlen
= next_opt
- eq
; /* will be -1 if no value */
108 tmp
= opt_vlen
>= 0 ? opt_vlen
: 0;
109 kdebug("option '%*.*s' val '%*.*s'",
110 opt_nlen
, opt_nlen
, opt
, tmp
, tmp
, eq
);
112 /* see if it's an error number representing a DNS error
113 * that's to be recorded as the result in this key */
114 if (opt_nlen
== sizeof(DNS_ERRORNO_OPTION
) - 1 &&
115 memcmp(opt
, DNS_ERRORNO_OPTION
, opt_nlen
) == 0) {
116 kdebug("dns error number option");
118 goto bad_option_value
;
120 ret
= strict_strtoul(eq
, 10, &derrno
);
122 goto bad_option_value
;
124 if (derrno
< 1 || derrno
> 511)
125 goto bad_option_value
;
127 kdebug("dns error no. = %lu", derrno
);
128 key
->type_data
.x
[0] = -derrno
;
134 "Option '%*.*s' to dns_resolver key %d:"
135 " bad/missing value\n",
136 opt_nlen
, opt_nlen
, opt
, key
->serial
);
138 } while (opt
= next_opt
+ 1, opt
< end
);
141 /* don't cache the result if we're caching an error saying there's no
143 if (key
->type_data
.x
[0]) {
144 kleave(" = 0 [h_error %ld]", key
->type_data
.x
[0]);
148 kdebug("store result");
149 ret
= key_payload_reserve(key
, result_len
);
153 upayload
= kmalloc(sizeof(*upayload
) + result_len
+ 1, GFP_KERNEL
);
155 kleave(" = -ENOMEM");
159 upayload
->datalen
= result_len
;
160 memcpy(upayload
->data
, data
, result_len
);
161 upayload
->data
[result_len
] = '\0';
162 rcu_assign_pointer(key
->payload
.data
, upayload
);
169 * The description is of the form "[<type>:]<domain_name>"
171 * The domain name may be a simple name or an absolute domain name (which
172 * should end with a period). The domain name is case-independent.
175 dns_resolver_match(const struct key
*key
, const void *description
)
177 int slen
, dlen
, ret
= 0;
178 const char *src
= key
->description
, *dsp
= description
;
180 kenter("%s,%s", src
, dsp
);
185 if (strcasecmp(src
, dsp
) == 0)
190 if (slen
<= 0 || dlen
<= 0)
192 if (src
[slen
- 1] == '.')
194 if (dsp
[dlen
- 1] == '.')
196 if (slen
!= dlen
|| strncasecmp(src
, dsp
, slen
) != 0)
202 kleave(" = %d", ret
);
209 static void dns_resolver_describe(const struct key
*key
, struct seq_file
*m
)
211 int err
= key
->type_data
.x
[0];
213 seq_puts(m
, key
->description
);
215 seq_printf(m
, ": %d", err
);
217 seq_printf(m
, ": %u", key
->datalen
);
220 struct key_type key_type_dns_resolver
= {
221 .name
= "dns_resolver",
222 .instantiate
= dns_resolver_instantiate
,
223 .match
= dns_resolver_match
,
224 .revoke
= user_revoke
,
225 .destroy
= user_destroy
,
226 .describe
= dns_resolver_describe
,
230 static int __init
init_dns_resolver(void)
236 printk(KERN_NOTICE
"Registering the %s key type\n",
237 key_type_dns_resolver
.name
);
239 /* create an override credential set with a special thread keyring in
240 * which DNS requests are cached
242 * this is used to prevent malicious redirections from being installed
245 cred
= prepare_kernel_cred(NULL
);
249 keyring
= key_alloc(&key_type_keyring
, ".dns_resolver", 0, 0, cred
,
250 (KEY_POS_ALL
& ~KEY_POS_SETATTR
) |
251 KEY_USR_VIEW
| KEY_USR_READ
,
252 KEY_ALLOC_NOT_IN_QUOTA
);
253 if (IS_ERR(keyring
)) {
254 ret
= PTR_ERR(keyring
);
255 goto failed_put_cred
;
258 ret
= key_instantiate_and_link(keyring
, NULL
, 0, NULL
, NULL
);
262 ret
= register_key_type(&key_type_dns_resolver
);
266 /* instruct request_key() to use this special keyring as a cache for
267 * the results it looks up */
268 cred
->thread_keyring
= keyring
;
269 cred
->jit_keyring
= KEY_REQKEY_DEFL_THREAD_KEYRING
;
270 dns_resolver_cache
= cred
;
272 kdebug("DNS resolver keyring: %d\n", key_serial(keyring
));
282 static void __exit
exit_dns_resolver(void)
284 key_revoke(dns_resolver_cache
->thread_keyring
);
285 unregister_key_type(&key_type_dns_resolver
);
286 put_cred(dns_resolver_cache
);
287 printk(KERN_NOTICE
"Unregistered %s key type\n",
288 key_type_dns_resolver
.name
);
291 module_init(init_dns_resolver
)
292 module_exit(exit_dns_resolver
)
293 MODULE_LICENSE("GPL");