blob: cab4e0df924f5c5f3ae9d67b22903ae8411b53ba [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>
David Howellsa58946c2019-06-26 21:02:33 +010043#include <net/net_namespace.h>
Ingo Molnar5b825c32017-02-02 17:54:15 +010044
Wang Lei1a4240f2010-08-04 15:16:33 +010045#include <keys/dns_resolver-type.h>
46#include <keys/user-type.h>
47
48#include "internal.h"
49
David Howellsff9517a2010-08-06 03:13:52 +010050/**
Wang Lei1a4240f2010-08-04 15:16:33 +010051 * dns_query - Query the DNS
David Howellsa58946c2019-06-26 21:02:33 +010052 * @net: The network namespace to operate in.
Wang Lei1a4240f2010-08-04 15:16:33 +010053 * @type: Query type (or NULL for straight host->IP lookup)
54 * @name: Name to look up
55 * @namelen: Length of name
56 * @options: Request options (or NULL if no options)
David Howells4d673da2018-02-06 06:26:30 +000057 * @_result: Where to place the returned data (or NULL)
Wang Lei1a4240f2010-08-04 15:16:33 +010058 * @_expiry: Where to store the result expiry time (or NULL)
David Howellsd0660f02019-05-03 18:26:55 +010059 * @invalidate: Always invalidate the key after use
Wang Lei1a4240f2010-08-04 15:16:33 +010060 *
David Howells4d673da2018-02-06 06:26:30 +000061 * The data will be returned in the pointer at *result, if provided, and the
62 * caller is responsible for freeing it.
Wang Lei1a4240f2010-08-04 15:16:33 +010063 *
64 * The description should be of the form "[<query_type>:]<domain_name>", and
65 * the options need to be appropriate for the query type requested. If no
66 * query_type is given, then the query is a straight hostname to IP address
67 * lookup.
68 *
69 * The DNS resolution lookup is performed by upcalling to userspace by way of
70 * requesting a key of type dns_resolver.
71 *
72 * Returns the size of the result on success, -ve error code otherwise.
73 */
David Howellsa58946c2019-06-26 21:02:33 +010074int dns_query(struct net *net,
75 const char *type, const char *name, size_t namelen,
David Howellsd0660f02019-05-03 18:26:55 +010076 const char *options, char **_result, time64_t *_expiry,
77 bool invalidate)
Wang Lei1a4240f2010-08-04 15:16:33 +010078{
79 struct key *rkey;
David Howells0837e492017-03-01 15:11:23 +000080 struct user_key_payload *upayload;
Wang Lei1a4240f2010-08-04 15:16:33 +010081 const struct cred *saved_cred;
82 size_t typelen, desclen;
83 char *desc, *cp;
84 int ret, len;
85
86 kenter("%s,%*.*s,%zu,%s",
87 type, (int)namelen, (int)namelen, name, namelen, options);
88
David Howells4d673da2018-02-06 06:26:30 +000089 if (!name || namelen == 0)
Wang Lei1a4240f2010-08-04 15:16:33 +010090 return -EINVAL;
91
92 /* construct the query key description as "[<type>:]<name>" */
93 typelen = 0;
94 desclen = 0;
95 if (type) {
96 typelen = strlen(type);
97 if (typelen < 1)
98 return -EINVAL;
99 desclen += typelen + 1;
100 }
101
Manuel Schölling9638f672014-05-31 23:37:40 +0200102 if (namelen < 3 || namelen > 255)
Wang Lei1a4240f2010-08-04 15:16:33 +0100103 return -EINVAL;
104 desclen += namelen + 1;
105
106 desc = kmalloc(desclen, GFP_KERNEL);
107 if (!desc)
108 return -ENOMEM;
109
110 cp = desc;
111 if (type) {
112 memcpy(cp, type, typelen);
113 cp += typelen;
114 *cp++ = ':';
115 }
116 memcpy(cp, name, namelen);
117 cp += namelen;
118 *cp = '\0';
119
120 if (!options)
121 options = "";
122 kdebug("call request_key(,%s,%s)", desc, options);
123
124 /* make the upcall, using special credentials to prevent the use of
125 * add_key() to preinstall malicious redirections
126 */
127 saved_cred = override_creds(dns_resolver_cache);
Linus Torvalds028db3e2019-07-10 18:43:43 -0700128 rkey = request_key_net(&key_type_dns_resolver, desc, net, options);
Wang Lei1a4240f2010-08-04 15:16:33 +0100129 revert_creds(saved_cred);
130 kfree(desc);
131 if (IS_ERR(rkey)) {
132 ret = PTR_ERR(rkey);
133 goto out;
134 }
135
136 down_read(&rkey->sem);
David Howells0c7774a2014-07-17 20:45:08 +0100137 set_bit(KEY_FLAG_ROOT_CAN_INVAL, &rkey->flags);
Linus Torvalds028db3e2019-07-10 18:43:43 -0700138 rkey->perm |= KEY_USR_VIEW;
139
Wang Lei1a4240f2010-08-04 15:16:33 +0100140 ret = key_validate(rkey);
141 if (ret < 0)
142 goto put;
143
Wang Lei4a2d7892010-08-11 09:37:58 +0100144 /* If the DNS server gave an error, return that to the caller */
David Howells146aa8b2015-10-21 14:04:48 +0100145 ret = PTR_ERR(rkey->payload.data[dns_key_error]);
Wang Lei4a2d7892010-08-11 09:37:58 +0100146 if (ret)
147 goto put;
148
David Howells0837e492017-03-01 15:11:23 +0000149 upayload = user_key_payload_locked(rkey);
Wang Lei1a4240f2010-08-04 15:16:33 +0100150 len = upayload->datalen;
151
David Howells4d673da2018-02-06 06:26:30 +0000152 if (_result) {
153 ret = -ENOMEM;
David Howellsbbb4c432018-10-04 14:27:55 +0100154 *_result = kmemdup_nul(upayload->data, len, GFP_KERNEL);
David Howells4d673da2018-02-06 06:26:30 +0000155 if (!*_result)
156 goto put;
David Howells4d673da2018-02-06 06:26:30 +0000157 }
Manuel Schölling84a7c0b2014-06-07 23:57:25 +0200158
Wang Lei1a4240f2010-08-04 15:16:33 +0100159 if (_expiry)
160 *_expiry = rkey->expiry;
161
162 ret = len;
163put:
164 up_read(&rkey->sem);
David Howellsd0660f02019-05-03 18:26:55 +0100165 if (invalidate)
166 key_invalidate(rkey);
Wang Lei1a4240f2010-08-04 15:16:33 +0100167 key_put(rkey);
168out:
169 kleave(" = %d", ret);
170 return ret;
171}
172EXPORT_SYMBOL(dns_query);