1 /* Upcall routine, designed to work as a key type and working through
2 * /sbin/request-key to contact userspace when handling DNS queries.
4 * See Documentation/networking/dns_resolver.txt
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)
12 * The upcall wrapper used to make an arbitrary DNS query.
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:
18 * create dns_resolver * * /sbin/dns.upcall %k
20 * For example to use this module to query AFSDB RR:
22 * create dns_resolver afsdb:* * /sbin/dns.afsdb %k
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.
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.
34 * You should have received a copy of the GNU Lesser General Public License
35 * along with this library; if not, see <http://www.gnu.org/licenses/>.
38 #include <linux/module.h>
39 #include <linux/slab.h>
40 #include <linux/cred.h>
41 #include <linux/dns_resolver.h>
42 #include <linux/err.h>
44 #include <keys/dns_resolver-type.h>
45 #include <keys/user-type.h>
50 * 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)
55 * @_result: Where to place the returned data (or NULL)
56 * @_expiry: Where to store the result expiry time (or NULL)
58 * The data will be returned in the pointer at *result, if provided, and the
59 * caller is responsible for freeing it.
61 * The description should be of the form "[<query_type>:]<domain_name>", and
62 * the options need to be appropriate for the query type requested. If no
63 * query_type is given, then the query is a straight hostname to IP address
66 * The DNS resolution lookup is performed by upcalling to userspace by way of
67 * requesting a key of type dns_resolver.
69 * Returns the size of the result on success, -ve error code otherwise.
71 int dns_query(const char *type
, const char *name
, size_t namelen
,
72 const char *options
, char **_result
, time64_t
*_expiry
)
75 struct user_key_payload
*upayload
;
76 const struct cred
*saved_cred
;
77 size_t typelen
, desclen
;
81 kenter("%s,%*.*s,%zu,%s",
82 type
, (int)namelen
, (int)namelen
, name
, namelen
, options
);
84 if (!name
|| namelen
== 0)
87 /* construct the query key description as "[<type>:]<name>" */
91 typelen
= strlen(type
);
94 desclen
+= typelen
+ 1;
98 namelen
= strnlen(name
, 256);
99 if (namelen
< 3 || namelen
> 255)
101 desclen
+= namelen
+ 1;
103 desc
= kmalloc(desclen
, GFP_KERNEL
);
109 memcpy(cp
, type
, typelen
);
113 memcpy(cp
, name
, namelen
);
119 kdebug("call request_key(,%s,%s)", desc
, options
);
121 /* make the upcall, using special credentials to prevent the use of
122 * add_key() to preinstall malicious redirections
124 saved_cred
= override_creds(dns_resolver_cache
);
125 rkey
= request_key(&key_type_dns_resolver
, desc
, options
);
126 revert_creds(saved_cred
);
133 down_read(&rkey
->sem
);
134 set_bit(KEY_FLAG_ROOT_CAN_INVAL
, &rkey
->flags
);
135 rkey
->perm
|= KEY_USR_VIEW
;
137 ret
= key_validate(rkey
);
141 /* If the DNS server gave an error, return that to the caller */
142 ret
= PTR_ERR(rkey
->payload
.data
[dns_key_error
]);
146 upayload
= user_key_payload_locked(rkey
);
147 len
= upayload
->datalen
;
151 *_result
= kmemdup_nul(upayload
->data
, len
, GFP_KERNEL
);
157 *_expiry
= rkey
->expiry
;
164 kleave(" = %d", ret
);
167 EXPORT_SYMBOL(dns_query
);