Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 1 | /* 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 Kirsher | c057b19 | 2013-12-06 09:13:44 -0800 | [diff] [blame] | 22 | * along with this library; if not, see <http://www.gnu.org/licenses/>. |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 23 | */ |
| 24 | #include <linux/module.h> |
| 25 | #include <linux/moduleparam.h> |
| 26 | #include <linux/slab.h> |
| 27 | #include <linux/string.h> |
| 28 | #include <linux/kernel.h> |
| 29 | #include <linux/keyctl.h> |
Stephen Rothwell | af352fe | 2010-08-06 03:13:47 +0100 | [diff] [blame] | 30 | #include <linux/err.h> |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 31 | #include <linux/seq_file.h> |
David Howells | bbb4c43 | 2018-10-04 14:27:55 +0100 | [diff] [blame] | 32 | #include <linux/dns_resolver.h> |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 33 | #include <keys/dns_resolver-type.h> |
| 34 | #include <keys/user-type.h> |
| 35 | #include "internal.h" |
| 36 | |
| 37 | MODULE_DESCRIPTION("DNS Resolver"); |
| 38 | MODULE_AUTHOR("Wang Lei"); |
| 39 | MODULE_LICENSE("GPL"); |
| 40 | |
Eric Dumazet | 95c9617 | 2012-04-15 05:58:06 +0000 | [diff] [blame] | 41 | unsigned int dns_resolver_debug; |
Joe Perches | d644406 | 2018-03-23 15:54:38 -0700 | [diff] [blame] | 42 | module_param_named(debug, dns_resolver_debug, uint, 0644); |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 43 | MODULE_PARM_DESC(debug, "DNS Resolver debugging mask"); |
| 44 | |
| 45 | const struct cred *dns_resolver_cache; |
| 46 | |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 47 | #define DNS_ERRORNO_OPTION "dnserror" |
| 48 | |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 49 | /* |
David Howells | d46d494 | 2014-07-18 18:56:36 +0100 | [diff] [blame] | 50 | * Preparse instantiation data for a dns_resolver key. |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 51 | * |
David Howells | bbb4c43 | 2018-10-04 14:27:55 +0100 | [diff] [blame] | 52 | * For normal hostname lookups, the data must be a NUL-terminated string, with |
| 53 | * the NUL char accounted in datalen. |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 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" |
David Howells | bbb4c43 | 2018-10-04 14:27:55 +0100 | [diff] [blame] | 60 | * |
| 61 | * For server list requests, the data must begin with a NUL char and be |
| 62 | * followed by a byte indicating the version of the data format. Version 1 |
| 63 | * looks something like (note this is packed): |
| 64 | * |
| 65 | * u8 Non-string marker (ie. 0) |
| 66 | * u8 Content (DNS_PAYLOAD_IS_*) |
| 67 | * u8 Version (e.g. 1) |
| 68 | * u8 Source of server list |
| 69 | * u8 Lookup status of server list |
| 70 | * u8 Number of servers |
| 71 | * foreach-server { |
| 72 | * __le16 Name length |
| 73 | * __le16 Priority (as per SRV record, low first) |
| 74 | * __le16 Weight (as per SRV record, higher first) |
| 75 | * __le16 Port |
| 76 | * u8 Source of address list |
| 77 | * u8 Lookup status of address list |
| 78 | * u8 Protocol (DNS_SERVER_PROTOCOL_*) |
| 79 | * u8 Number of addresses |
| 80 | * char[] Name (not NUL-terminated) |
| 81 | * foreach-address { |
| 82 | * u8 Family (DNS_ADDRESS_IS_*) |
| 83 | * union { |
| 84 | * u8[4] ipv4_addr |
| 85 | * u8[16] ipv6_addr |
| 86 | * } |
| 87 | * } |
| 88 | * } |
| 89 | * |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 90 | */ |
| 91 | static int |
David Howells | d46d494 | 2014-07-18 18:56:36 +0100 | [diff] [blame] | 92 | dns_resolver_preparse(struct key_preparsed_payload *prep) |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 93 | { |
David Howells | bbb4c43 | 2018-10-04 14:27:55 +0100 | [diff] [blame] | 94 | const struct dns_payload_header *bin; |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 95 | struct user_key_payload *upayload; |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 96 | unsigned long derrno; |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 97 | int ret; |
David Howells | d46d494 | 2014-07-18 18:56:36 +0100 | [diff] [blame] | 98 | int datalen = prep->datalen, result_len = 0; |
David Howells | cf7f601 | 2012-09-13 13:06:29 +0100 | [diff] [blame] | 99 | const char *data = prep->data, *end, *opt; |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 100 | |
David Howells | bbb4c43 | 2018-10-04 14:27:55 +0100 | [diff] [blame] | 101 | if (datalen <= 1 || !data) |
| 102 | return -EINVAL; |
| 103 | |
| 104 | if (data[0] == 0) { |
| 105 | /* It may be a server list. */ |
| 106 | if (datalen <= sizeof(*bin)) |
| 107 | return -EINVAL; |
| 108 | |
| 109 | bin = (const struct dns_payload_header *)data; |
| 110 | kenter("[%u,%u],%u", bin->content, bin->version, datalen); |
| 111 | if (bin->content != DNS_PAYLOAD_IS_SERVER_LIST) { |
| 112 | pr_warn_ratelimited( |
| 113 | "dns_resolver: Unsupported content type (%u)\n", |
| 114 | bin->content); |
| 115 | return -EINVAL; |
| 116 | } |
| 117 | |
| 118 | if (bin->version != 1) { |
| 119 | pr_warn_ratelimited( |
| 120 | "dns_resolver: Unsupported server list version (%u)\n", |
| 121 | bin->version); |
| 122 | return -EINVAL; |
| 123 | } |
| 124 | |
| 125 | result_len = datalen; |
| 126 | goto store_result; |
| 127 | } |
| 128 | |
David Howells | d46d494 | 2014-07-18 18:56:36 +0100 | [diff] [blame] | 129 | kenter("'%*.*s',%u", datalen, datalen, data, datalen); |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 130 | |
David Howells | bbb4c43 | 2018-10-04 14:27:55 +0100 | [diff] [blame] | 131 | if (!data || data[datalen - 1] != '\0') |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 132 | return -EINVAL; |
| 133 | datalen--; |
| 134 | |
| 135 | /* deal with any options embedded in the data */ |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 136 | end = data + datalen; |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 137 | opt = memchr(data, '#', datalen); |
| 138 | if (!opt) { |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 139 | /* no options: the entire data is the result */ |
| 140 | kdebug("no options"); |
| 141 | result_len = datalen; |
| 142 | } else { |
| 143 | const char *next_opt; |
| 144 | |
| 145 | result_len = opt - data; |
| 146 | opt++; |
| 147 | kdebug("options: '%s'", opt); |
| 148 | do { |
Eric Biggers | c604cb7 | 2018-07-11 10:46:29 -0700 | [diff] [blame] | 149 | int opt_len, opt_nlen; |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 150 | const char *eq; |
Eric Biggers | c604cb7 | 2018-07-11 10:46:29 -0700 | [diff] [blame] | 151 | char optval[128]; |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 152 | |
| 153 | next_opt = memchr(opt, '#', end - opt) ?: end; |
| 154 | opt_len = next_opt - opt; |
Eric Biggers | c604cb7 | 2018-07-11 10:46:29 -0700 | [diff] [blame] | 155 | if (opt_len <= 0 || opt_len > sizeof(optval)) { |
Eric Biggers | 9c438d7 | 2018-04-17 12:07:06 -0700 | [diff] [blame] | 156 | pr_warn_ratelimited("Invalid option length (%d) for dns_resolver key\n", |
| 157 | opt_len); |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 158 | return -EINVAL; |
| 159 | } |
| 160 | |
Eric Biggers | c604cb7 | 2018-07-11 10:46:29 -0700 | [diff] [blame] | 161 | eq = memchr(opt, '=', opt_len); |
| 162 | if (eq) { |
| 163 | opt_nlen = eq - opt; |
| 164 | eq++; |
| 165 | memcpy(optval, eq, next_opt - eq); |
| 166 | optval[next_opt - eq] = '\0'; |
| 167 | } else { |
| 168 | opt_nlen = opt_len; |
| 169 | optval[0] = '\0'; |
| 170 | } |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 171 | |
Eric Biggers | c604cb7 | 2018-07-11 10:46:29 -0700 | [diff] [blame] | 172 | kdebug("option '%*.*s' val '%s'", |
| 173 | opt_nlen, opt_nlen, opt, optval); |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 174 | |
| 175 | /* see if it's an error number representing a DNS error |
| 176 | * that's to be recorded as the result in this key */ |
| 177 | if (opt_nlen == sizeof(DNS_ERRORNO_OPTION) - 1 && |
| 178 | memcmp(opt, DNS_ERRORNO_OPTION, opt_nlen) == 0) { |
| 179 | kdebug("dns error number option"); |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 180 | |
Eric Biggers | c604cb7 | 2018-07-11 10:46:29 -0700 | [diff] [blame] | 181 | ret = kstrtoul(optval, 10, &derrno); |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 182 | if (ret < 0) |
| 183 | goto bad_option_value; |
| 184 | |
| 185 | if (derrno < 1 || derrno > 511) |
| 186 | goto bad_option_value; |
| 187 | |
| 188 | kdebug("dns error no. = %lu", derrno); |
David Howells | 146aa8b | 2015-10-21 14:04:48 +0100 | [diff] [blame] | 189 | prep->payload.data[dns_key_error] = ERR_PTR(-derrno); |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 190 | continue; |
| 191 | } |
| 192 | |
| 193 | bad_option_value: |
Eric Biggers | 9c438d7 | 2018-04-17 12:07:06 -0700 | [diff] [blame] | 194 | pr_warn_ratelimited("Option '%*.*s' to dns_resolver key: bad/missing value\n", |
| 195 | opt_nlen, opt_nlen, opt); |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 196 | return -EINVAL; |
| 197 | } while (opt = next_opt + 1, opt < end); |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 198 | } |
| 199 | |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 200 | /* don't cache the result if we're caching an error saying there's no |
| 201 | * result */ |
David Howells | 146aa8b | 2015-10-21 14:04:48 +0100 | [diff] [blame] | 202 | if (prep->payload.data[dns_key_error]) { |
| 203 | kleave(" = 0 [h_error %ld]", PTR_ERR(prep->payload.data[dns_key_error])); |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 204 | return 0; |
| 205 | } |
| 206 | |
David Howells | bbb4c43 | 2018-10-04 14:27:55 +0100 | [diff] [blame] | 207 | store_result: |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 208 | kdebug("store result"); |
David Howells | d46d494 | 2014-07-18 18:56:36 +0100 | [diff] [blame] | 209 | prep->quotalen = result_len; |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 210 | |
| 211 | upayload = kmalloc(sizeof(*upayload) + result_len + 1, GFP_KERNEL); |
| 212 | if (!upayload) { |
| 213 | kleave(" = -ENOMEM"); |
| 214 | return -ENOMEM; |
| 215 | } |
| 216 | |
| 217 | upayload->datalen = result_len; |
| 218 | memcpy(upayload->data, data, result_len); |
| 219 | upayload->data[result_len] = '\0'; |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 220 | |
David Howells | 146aa8b | 2015-10-21 14:04:48 +0100 | [diff] [blame] | 221 | prep->payload.data[dns_key_data] = upayload; |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 222 | kleave(" = 0"); |
| 223 | return 0; |
| 224 | } |
| 225 | |
| 226 | /* |
David Howells | d46d494 | 2014-07-18 18:56:36 +0100 | [diff] [blame] | 227 | * Clean up the preparse data |
| 228 | */ |
| 229 | static void dns_resolver_free_preparse(struct key_preparsed_payload *prep) |
| 230 | { |
| 231 | pr_devel("==>%s()\n", __func__); |
| 232 | |
David Howells | 146aa8b | 2015-10-21 14:04:48 +0100 | [diff] [blame] | 233 | kfree(prep->payload.data[dns_key_data]); |
David Howells | d46d494 | 2014-07-18 18:56:36 +0100 | [diff] [blame] | 234 | } |
| 235 | |
| 236 | /* |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 237 | * The description is of the form "[<type>:]<domain_name>" |
| 238 | * |
| 239 | * The domain name may be a simple name or an absolute domain name (which |
| 240 | * should end with a period). The domain name is case-independent. |
| 241 | */ |
David Howells | 0c903ab | 2014-09-16 17:36:08 +0100 | [diff] [blame] | 242 | static bool dns_resolver_cmp(const struct key *key, |
| 243 | const struct key_match_data *match_data) |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 244 | { |
| 245 | int slen, dlen, ret = 0; |
David Howells | 4629195 | 2014-09-16 17:36:02 +0100 | [diff] [blame] | 246 | const char *src = key->description, *dsp = match_data->raw_data; |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 247 | |
| 248 | kenter("%s,%s", src, dsp); |
| 249 | |
| 250 | if (!src || !dsp) |
| 251 | goto no_match; |
| 252 | |
| 253 | if (strcasecmp(src, dsp) == 0) |
| 254 | goto matched; |
| 255 | |
| 256 | slen = strlen(src); |
| 257 | dlen = strlen(dsp); |
| 258 | if (slen <= 0 || dlen <= 0) |
| 259 | goto no_match; |
| 260 | if (src[slen - 1] == '.') |
| 261 | slen--; |
| 262 | if (dsp[dlen - 1] == '.') |
| 263 | dlen--; |
| 264 | if (slen != dlen || strncasecmp(src, dsp, slen) != 0) |
| 265 | goto no_match; |
| 266 | |
| 267 | matched: |
| 268 | ret = 1; |
| 269 | no_match: |
| 270 | kleave(" = %d", ret); |
| 271 | return ret; |
| 272 | } |
| 273 | |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 274 | /* |
David Howells | c06cfb0 | 2014-09-16 17:36:06 +0100 | [diff] [blame] | 275 | * Preparse the match criterion. |
| 276 | */ |
| 277 | static int dns_resolver_match_preparse(struct key_match_data *match_data) |
| 278 | { |
| 279 | match_data->lookup_type = KEYRING_SEARCH_LOOKUP_ITERATE; |
| 280 | match_data->cmp = dns_resolver_cmp; |
| 281 | return 0; |
| 282 | } |
| 283 | |
| 284 | /* |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 285 | * Describe a DNS key |
| 286 | */ |
| 287 | static void dns_resolver_describe(const struct key *key, struct seq_file *m) |
| 288 | { |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 289 | seq_puts(m, key->description); |
David Howells | 363b02d | 2017-10-04 16:43:25 +0100 | [diff] [blame] | 290 | if (key_is_positive(key)) { |
David Howells | 146aa8b | 2015-10-21 14:04:48 +0100 | [diff] [blame] | 291 | int err = PTR_ERR(key->payload.data[dns_key_error]); |
| 292 | |
David Howells | 78b7280 | 2011-03-11 17:57:23 +0000 | [diff] [blame] | 293 | if (err) |
| 294 | seq_printf(m, ": %d", err); |
| 295 | else |
| 296 | seq_printf(m, ": %u", key->datalen); |
| 297 | } |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 298 | } |
| 299 | |
David Howells | 1362fa0 | 2011-03-03 11:28:58 +0000 | [diff] [blame] | 300 | /* |
| 301 | * read the DNS data |
| 302 | * - the key's semaphore is read-locked |
| 303 | */ |
| 304 | static long dns_resolver_read(const struct key *key, |
| 305 | char __user *buffer, size_t buflen) |
| 306 | { |
David Howells | 146aa8b | 2015-10-21 14:04:48 +0100 | [diff] [blame] | 307 | int err = PTR_ERR(key->payload.data[dns_key_error]); |
| 308 | |
| 309 | if (err) |
| 310 | return err; |
David Howells | 1362fa0 | 2011-03-03 11:28:58 +0000 | [diff] [blame] | 311 | |
| 312 | return user_read(key, buffer, buflen); |
| 313 | } |
| 314 | |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 315 | struct key_type key_type_dns_resolver = { |
| 316 | .name = "dns_resolver", |
David Howells | d46d494 | 2014-07-18 18:56:36 +0100 | [diff] [blame] | 317 | .preparse = dns_resolver_preparse, |
| 318 | .free_preparse = dns_resolver_free_preparse, |
| 319 | .instantiate = generic_key_instantiate, |
David Howells | c06cfb0 | 2014-09-16 17:36:06 +0100 | [diff] [blame] | 320 | .match_preparse = dns_resolver_match_preparse, |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 321 | .revoke = user_revoke, |
| 322 | .destroy = user_destroy, |
Wang Lei | 4a2d789 | 2010-08-11 09:37:58 +0100 | [diff] [blame] | 323 | .describe = dns_resolver_describe, |
David Howells | 1362fa0 | 2011-03-03 11:28:58 +0000 | [diff] [blame] | 324 | .read = dns_resolver_read, |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 325 | }; |
| 326 | |
| 327 | static int __init init_dns_resolver(void) |
| 328 | { |
| 329 | struct cred *cred; |
| 330 | struct key *keyring; |
| 331 | int ret; |
| 332 | |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 333 | /* create an override credential set with a special thread keyring in |
| 334 | * which DNS requests are cached |
| 335 | * |
| 336 | * this is used to prevent malicious redirections from being installed |
| 337 | * with add_key(). |
| 338 | */ |
| 339 | cred = prepare_kernel_cred(NULL); |
| 340 | if (!cred) |
| 341 | return -ENOMEM; |
| 342 | |
Linus Torvalds | 2a74dbb | 2012-12-16 15:40:50 -0800 | [diff] [blame] | 343 | keyring = keyring_alloc(".dns_resolver", |
| 344 | GLOBAL_ROOT_UID, GLOBAL_ROOT_GID, cred, |
David Howells | f8aa23a | 2012-10-02 19:24:56 +0100 | [diff] [blame] | 345 | (KEY_POS_ALL & ~KEY_POS_SETATTR) | |
| 346 | KEY_USR_VIEW | KEY_USR_READ, |
David Howells | 5ac7eac | 2016-04-06 16:14:24 +0100 | [diff] [blame] | 347 | KEY_ALLOC_NOT_IN_QUOTA, NULL, NULL); |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 348 | if (IS_ERR(keyring)) { |
| 349 | ret = PTR_ERR(keyring); |
| 350 | goto failed_put_cred; |
| 351 | } |
| 352 | |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 353 | ret = register_key_type(&key_type_dns_resolver); |
| 354 | if (ret < 0) |
| 355 | goto failed_put_key; |
| 356 | |
| 357 | /* instruct request_key() to use this special keyring as a cache for |
| 358 | * the results it looks up */ |
David Howells | 700920e | 2012-01-18 15:31:45 +0000 | [diff] [blame] | 359 | set_bit(KEY_FLAG_ROOT_CAN_CLEAR, &keyring->flags); |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 360 | cred->thread_keyring = keyring; |
| 361 | cred->jit_keyring = KEY_REQKEY_DEFL_THREAD_KEYRING; |
| 362 | dns_resolver_cache = cred; |
| 363 | |
| 364 | kdebug("DNS resolver keyring: %d\n", key_serial(keyring)); |
| 365 | return 0; |
| 366 | |
| 367 | failed_put_key: |
| 368 | key_put(keyring); |
| 369 | failed_put_cred: |
| 370 | put_cred(cred); |
| 371 | return ret; |
| 372 | } |
| 373 | |
| 374 | static void __exit exit_dns_resolver(void) |
| 375 | { |
| 376 | key_revoke(dns_resolver_cache->thread_keyring); |
| 377 | unregister_key_type(&key_type_dns_resolver); |
| 378 | put_cred(dns_resolver_cache); |
Wang Lei | 1a4240f | 2010-08-04 15:16:33 +0100 | [diff] [blame] | 379 | } |
| 380 | |
| 381 | module_init(init_dns_resolver) |
| 382 | module_exit(exit_dns_resolver) |
| 383 | MODULE_LICENSE("GPL"); |