blob: 2d260432b3be0a7ddefbd6cb68c2bb2b18163525 [file] [log] [blame]
Wang Lei1a4240f2010-08-04 15:16:33 +01001/* Upcall routine, designed to work as a key type and working through
2 * /sbin/request-key to contact userspace when handling DNS queries.
3 *
4 * See Documentation/networking/dns_resolver.txt
5 *
6 * Copyright (c) 2007 Igor Mammedov
7 * Author(s): Igor Mammedov (niallain@gmail.com)
8 * Steve French (sfrench@us.ibm.com)
9 * Wang Lei (wang840925@gmail.com)
10 * David Howells (dhowells@redhat.com)
11 *
12 * The upcall wrapper used to make an arbitrary DNS query.
13 *
14 * This function requires the appropriate userspace tool dns.upcall to be
15 * installed and something like the following lines should be added to the
16 * /etc/request-key.conf file:
17 *
18 * create dns_resolver * * /sbin/dns.upcall %k
19 *
20 * For example to use this module to query AFSDB RR:
21 *
22 * create dns_resolver afsdb:* * /sbin/dns.afsdb %k
23 *
24 * This library is free software; you can redistribute it and/or modify
25 * it under the terms of the GNU Lesser General Public License as published
26 * by the Free Software Foundation; either version 2.1 of the License, or
27 * (at your option) any later version.
28 *
29 * This library is distributed in the hope that it will be useful,
30 * but WITHOUT ANY WARRANTY; without even the implied warranty of
31 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See
32 * the GNU Lesser General Public License for more details.
33 *
34 * You should have received a copy of the GNU Lesser General Public License
Jeff Kirsherc057b192013-12-06 09:13:44 -080035 * along with this library; if not, see <http://www.gnu.org/licenses/>.
Wang Lei1a4240f2010-08-04 15:16:33 +010036 */
37
38#include <linux/module.h>
39#include <linux/slab.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +010040#include <linux/cred.h>
Wang Lei1a4240f2010-08-04 15:16:33 +010041#include <linux/dns_resolver.h>
Stephen Rothwellaf352fe2010-08-06 03:13:47 +010042#include <linux/err.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +010043
Wang Lei1a4240f2010-08-04 15:16:33 +010044#include <keys/dns_resolver-type.h>
45#include <keys/user-type.h>
46
47#include "internal.h"
48
David Howellsff9517a2010-08-06 03:13:52 +010049/**
Wang Lei1a4240f2010-08-04 15:16:33 +010050 * dns_query - Query the DNS
51 * @type: Query type (or NULL for straight host->IP lookup)
52 * @name: Name to look up
53 * @namelen: Length of name
54 * @options: Request options (or NULL if no options)
David Howells4d673da2018-02-06 06:26:30 +000055 * @_result: Where to place the returned data (or NULL)
Wang Lei1a4240f2010-08-04 15:16:33 +010056 * @_expiry: Where to store the result expiry time (or NULL)
David Howellsd0660f02019-05-03 18:26:55 +010057 * @invalidate: Always invalidate the key after use
Wang Lei1a4240f2010-08-04 15:16:33 +010058 *
David Howells4d673da2018-02-06 06:26:30 +000059 * The data will be returned in the pointer at *result, if provided, and the
60 * caller is responsible for freeing it.
Wang Lei1a4240f2010-08-04 15:16:33 +010061 *
62 * The description should be of the form "[<query_type>:]<domain_name>", and
63 * the options need to be appropriate for the query type requested. If no
64 * query_type is given, then the query is a straight hostname to IP address
65 * lookup.
66 *
67 * The DNS resolution lookup is performed by upcalling to userspace by way of
68 * requesting a key of type dns_resolver.
69 *
70 * Returns the size of the result on success, -ve error code otherwise.
71 */
72int dns_query(const char *type, const char *name, size_t namelen,
David Howellsd0660f02019-05-03 18:26:55 +010073 const char *options, char **_result, time64_t *_expiry,
74 bool invalidate)
Wang Lei1a4240f2010-08-04 15:16:33 +010075{
76 struct key *rkey;
David Howells0837e492017-03-01 15:11:23 +000077 struct user_key_payload *upayload;
Wang Lei1a4240f2010-08-04 15:16:33 +010078 const struct cred *saved_cred;
79 size_t typelen, desclen;
80 char *desc, *cp;
81 int ret, len;
82
83 kenter("%s,%*.*s,%zu,%s",
84 type, (int)namelen, (int)namelen, name, namelen, options);
85
David Howells4d673da2018-02-06 06:26:30 +000086 if (!name || namelen == 0)
Wang Lei1a4240f2010-08-04 15:16:33 +010087 return -EINVAL;
88
89 /* construct the query key description as "[<type>:]<name>" */
90 typelen = 0;
91 desclen = 0;
92 if (type) {
93 typelen = strlen(type);
94 if (typelen < 1)
95 return -EINVAL;
96 desclen += typelen + 1;
97 }
98
Manuel Schölling9638f672014-05-31 23:37:40 +020099 if (namelen < 3 || namelen > 255)
Wang Lei1a4240f2010-08-04 15:16:33 +0100100 return -EINVAL;
101 desclen += namelen + 1;
102
103 desc = kmalloc(desclen, GFP_KERNEL);
104 if (!desc)
105 return -ENOMEM;
106
107 cp = desc;
108 if (type) {
109 memcpy(cp, type, typelen);
110 cp += typelen;
111 *cp++ = ':';
112 }
113 memcpy(cp, name, namelen);
114 cp += namelen;
115 *cp = '\0';
116
117 if (!options)
118 options = "";
119 kdebug("call request_key(,%s,%s)", desc, options);
120
121 /* make the upcall, using special credentials to prevent the use of
122 * add_key() to preinstall malicious redirections
123 */
124 saved_cred = override_creds(dns_resolver_cache);
125 rkey = request_key(&key_type_dns_resolver, desc, options);
126 revert_creds(saved_cred);
127 kfree(desc);
128 if (IS_ERR(rkey)) {
129 ret = PTR_ERR(rkey);
130 goto out;
131 }
132
133 down_read(&rkey->sem);
David Howells0c7774a2014-07-17 20:45:08 +0100134 set_bit(KEY_FLAG_ROOT_CAN_INVAL, &rkey->flags);
Wang Lei1a4240f2010-08-04 15:16:33 +0100135 rkey->perm |= KEY_USR_VIEW;
136
137 ret = key_validate(rkey);
138 if (ret < 0)
139 goto put;
140
Wang Lei4a2d7892010-08-11 09:37:58 +0100141 /* If the DNS server gave an error, return that to the caller */
David Howells146aa8b2015-10-21 14:04:48 +0100142 ret = PTR_ERR(rkey->payload.data[dns_key_error]);
Wang Lei4a2d7892010-08-11 09:37:58 +0100143 if (ret)
144 goto put;
145
David Howells0837e492017-03-01 15:11:23 +0000146 upayload = user_key_payload_locked(rkey);
Wang Lei1a4240f2010-08-04 15:16:33 +0100147 len = upayload->datalen;
148
David Howells4d673da2018-02-06 06:26:30 +0000149 if (_result) {
150 ret = -ENOMEM;
David Howellsbbb4c432018-10-04 14:27:55 +0100151 *_result = kmemdup_nul(upayload->data, len, GFP_KERNEL);
David Howells4d673da2018-02-06 06:26:30 +0000152 if (!*_result)
153 goto put;
David Howells4d673da2018-02-06 06:26:30 +0000154 }
Manuel Schölling84a7c0b2014-06-07 23:57:25 +0200155
Wang Lei1a4240f2010-08-04 15:16:33 +0100156 if (_expiry)
157 *_expiry = rkey->expiry;
158
159 ret = len;
160put:
161 up_read(&rkey->sem);
David Howellsd0660f02019-05-03 18:26:55 +0100162 if (invalidate)
163 key_invalidate(rkey);
Wang Lei1a4240f2010-08-04 15:16:33 +0100164 key_put(rkey);
165out:
166 kleave(" = %d", ret);
167 return ret;
168}
169EXPORT_SYMBOL(dns_query);