blob: 786cd6533713a70d513ee3a1dfbfaa2f82b1133e [file] [log] [blame]
yuezonghe824eb0c2024-06-27 02:32:26 -07001/*
2 * linux/fs/nfs/dns_resolve.c
3 *
4 * Copyright (c) 2009 Trond Myklebust <Trond.Myklebust@netapp.com>
5 *
6 * Resolves DNS hostnames into valid ip addresses
7 */
8
9#ifdef CONFIG_NFS_USE_KERNEL_DNS
10
11#include <linux/sunrpc/clnt.h>
12#include <linux/dns_resolver.h>
13#include "dns_resolve.h"
14
15ssize_t nfs_dns_resolve_name(struct net *net, char *name, size_t namelen,
16 struct sockaddr *sa, size_t salen)
17{
18 ssize_t ret;
19 char *ip_addr = NULL;
20 int ip_len;
21
22 ip_len = dns_query(NULL, name, namelen, NULL, &ip_addr, NULL);
23 if (ip_len > 0)
24 ret = rpc_pton(net, ip_addr, ip_len, sa, salen);
25 else
26 ret = -ESRCH;
27 kfree(ip_addr);
28 return ret;
29}
30
31#else
32
33#include <linux/hash.h>
34#include <linux/string.h>
35#include <linux/kmod.h>
36#include <linux/slab.h>
37#include <linux/module.h>
38#include <linux/socket.h>
39#include <linux/seq_file.h>
40#include <linux/inet.h>
41#include <linux/sunrpc/clnt.h>
42#include <linux/sunrpc/cache.h>
43#include <linux/sunrpc/svcauth.h>
44#include <linux/sunrpc/rpc_pipe_fs.h>
45
46#include "dns_resolve.h"
47#include "cache_lib.h"
48#include "netns.h"
49
50#define NFS_DNS_HASHBITS 4
51#define NFS_DNS_HASHTBL_SIZE (1 << NFS_DNS_HASHBITS)
52
53struct nfs_dns_ent {
54 struct cache_head h;
55
56 char *hostname;
57 size_t namelen;
58
59 struct sockaddr_storage addr;
60 size_t addrlen;
61};
62
63
64static void nfs_dns_ent_update(struct cache_head *cnew,
65 struct cache_head *ckey)
66{
67 struct nfs_dns_ent *new;
68 struct nfs_dns_ent *key;
69
70 new = container_of(cnew, struct nfs_dns_ent, h);
71 key = container_of(ckey, struct nfs_dns_ent, h);
72
73 memcpy(&new->addr, &key->addr, key->addrlen);
74 new->addrlen = key->addrlen;
75}
76
77static void nfs_dns_ent_init(struct cache_head *cnew,
78 struct cache_head *ckey)
79{
80 struct nfs_dns_ent *new;
81 struct nfs_dns_ent *key;
82
83 new = container_of(cnew, struct nfs_dns_ent, h);
84 key = container_of(ckey, struct nfs_dns_ent, h);
85
86 kfree(new->hostname);
87 new->hostname = kstrndup(key->hostname, key->namelen, GFP_KERNEL);
88 if (new->hostname) {
89 new->namelen = key->namelen;
90 nfs_dns_ent_update(cnew, ckey);
91 } else {
92 new->namelen = 0;
93 new->addrlen = 0;
94 }
95}
96
97static void nfs_dns_ent_put(struct kref *ref)
98{
99 struct nfs_dns_ent *item;
100
101 item = container_of(ref, struct nfs_dns_ent, h.ref);
102 kfree(item->hostname);
103 kfree(item);
104}
105
106static struct cache_head *nfs_dns_ent_alloc(void)
107{
108 struct nfs_dns_ent *item = kmalloc(sizeof(*item), GFP_KERNEL);
109
110 if (item != NULL) {
111 item->hostname = NULL;
112 item->namelen = 0;
113 item->addrlen = 0;
114 return &item->h;
115 }
116 return NULL;
117};
118
119static unsigned int nfs_dns_hash(const struct nfs_dns_ent *key)
120{
121 return hash_str(key->hostname, NFS_DNS_HASHBITS);
122}
123
124static void nfs_dns_request(struct cache_detail *cd,
125 struct cache_head *ch,
126 char **bpp, int *blen)
127{
128 struct nfs_dns_ent *key = container_of(ch, struct nfs_dns_ent, h);
129
130 qword_add(bpp, blen, key->hostname);
131 (*bpp)[-1] = '\n';
132}
133
134static int nfs_dns_upcall(struct cache_detail *cd,
135 struct cache_head *ch)
136{
137 struct nfs_dns_ent *key = container_of(ch, struct nfs_dns_ent, h);
138 int ret;
139
140 ret = nfs_cache_upcall(cd, key->hostname);
141 if (ret)
142 ret = sunrpc_cache_pipe_upcall(cd, ch, nfs_dns_request);
143 return ret;
144}
145
146static int nfs_dns_match(struct cache_head *ca,
147 struct cache_head *cb)
148{
149 struct nfs_dns_ent *a;
150 struct nfs_dns_ent *b;
151
152 a = container_of(ca, struct nfs_dns_ent, h);
153 b = container_of(cb, struct nfs_dns_ent, h);
154
155 if (a->namelen == 0 || a->namelen != b->namelen)
156 return 0;
157 return memcmp(a->hostname, b->hostname, a->namelen) == 0;
158}
159
160static int nfs_dns_show(struct seq_file *m, struct cache_detail *cd,
161 struct cache_head *h)
162{
163 struct nfs_dns_ent *item;
164 long ttl;
165
166 if (h == NULL) {
167 seq_puts(m, "# ip address hostname ttl\n");
168 return 0;
169 }
170 item = container_of(h, struct nfs_dns_ent, h);
171 ttl = item->h.expiry_time - seconds_since_boot();
172 if (ttl < 0)
173 ttl = 0;
174
175 if (!test_bit(CACHE_NEGATIVE, &h->flags)) {
176 char buf[INET6_ADDRSTRLEN+IPV6_SCOPE_ID_LEN+1];
177
178 rpc_ntop((struct sockaddr *)&item->addr, buf, sizeof(buf));
179 seq_printf(m, "%15s ", buf);
180 } else
181 seq_puts(m, "<none> ");
182 seq_printf(m, "%15s %ld\n", item->hostname, ttl);
183 return 0;
184}
185
186static struct nfs_dns_ent *nfs_dns_lookup(struct cache_detail *cd,
187 struct nfs_dns_ent *key)
188{
189 struct cache_head *ch;
190
191 ch = sunrpc_cache_lookup(cd,
192 &key->h,
193 nfs_dns_hash(key));
194 if (!ch)
195 return NULL;
196 return container_of(ch, struct nfs_dns_ent, h);
197}
198
199static struct nfs_dns_ent *nfs_dns_update(struct cache_detail *cd,
200 struct nfs_dns_ent *new,
201 struct nfs_dns_ent *key)
202{
203 struct cache_head *ch;
204
205 ch = sunrpc_cache_update(cd,
206 &new->h, &key->h,
207 nfs_dns_hash(key));
208 if (!ch)
209 return NULL;
210 return container_of(ch, struct nfs_dns_ent, h);
211}
212
213static int nfs_dns_parse(struct cache_detail *cd, char *buf, int buflen)
214{
215 char buf1[NFS_DNS_HOSTNAME_MAXLEN+1];
216 struct nfs_dns_ent key, *item;
217 unsigned int ttl;
218 ssize_t len;
219 int ret = -EINVAL;
220
221 if (buf[buflen-1] != '\n')
222 goto out;
223 buf[buflen-1] = '\0';
224
225 len = qword_get(&buf, buf1, sizeof(buf1));
226 if (len <= 0)
227 goto out;
228 key.addrlen = rpc_pton(cd->net, buf1, len,
229 (struct sockaddr *)&key.addr,
230 sizeof(key.addr));
231
232 len = qword_get(&buf, buf1, sizeof(buf1));
233 if (len <= 0)
234 goto out;
235
236 key.hostname = buf1;
237 key.namelen = len;
238 memset(&key.h, 0, sizeof(key.h));
239
240 if (get_uint(&buf, &ttl) < 0)
241 goto out;
242 if (ttl == 0)
243 goto out;
244 key.h.expiry_time = ttl + seconds_since_boot();
245
246 ret = -ENOMEM;
247 item = nfs_dns_lookup(cd, &key);
248 if (item == NULL)
249 goto out;
250
251 if (key.addrlen == 0)
252 set_bit(CACHE_NEGATIVE, &key.h.flags);
253
254 item = nfs_dns_update(cd, &key, item);
255 if (item == NULL)
256 goto out;
257
258 ret = 0;
259 cache_put(&item->h, cd);
260out:
261 return ret;
262}
263
264static int do_cache_lookup(struct cache_detail *cd,
265 struct nfs_dns_ent *key,
266 struct nfs_dns_ent **item,
267 struct nfs_cache_defer_req *dreq)
268{
269 int ret = -ENOMEM;
270
271 *item = nfs_dns_lookup(cd, key);
272 if (*item) {
273 ret = cache_check(cd, &(*item)->h, &dreq->req);
274 if (ret)
275 *item = NULL;
276 }
277 return ret;
278}
279
280static int do_cache_lookup_nowait(struct cache_detail *cd,
281 struct nfs_dns_ent *key,
282 struct nfs_dns_ent **item)
283{
284 int ret = -ENOMEM;
285
286 *item = nfs_dns_lookup(cd, key);
287 if (!*item)
288 goto out_err;
289 ret = -ETIMEDOUT;
290 if (!test_bit(CACHE_VALID, &(*item)->h.flags)
291 || (*item)->h.expiry_time < seconds_since_boot()
292 || cd->flush_time > (*item)->h.last_refresh)
293 goto out_put;
294 ret = -ENOENT;
295 if (test_bit(CACHE_NEGATIVE, &(*item)->h.flags))
296 goto out_put;
297 return 0;
298out_put:
299 cache_put(&(*item)->h, cd);
300out_err:
301 *item = NULL;
302 return ret;
303}
304
305static int do_cache_lookup_wait(struct cache_detail *cd,
306 struct nfs_dns_ent *key,
307 struct nfs_dns_ent **item)
308{
309 struct nfs_cache_defer_req *dreq;
310 int ret = -ENOMEM;
311
312 dreq = nfs_cache_defer_req_alloc();
313 if (!dreq)
314 goto out;
315 ret = do_cache_lookup(cd, key, item, dreq);
316 if (ret == -EAGAIN) {
317 ret = nfs_cache_wait_for_upcall(dreq);
318 if (!ret)
319 ret = do_cache_lookup_nowait(cd, key, item);
320 }
321 nfs_cache_defer_req_put(dreq);
322out:
323 return ret;
324}
325
326ssize_t nfs_dns_resolve_name(struct net *net, char *name,
327 size_t namelen, struct sockaddr *sa, size_t salen)
328{
329 struct nfs_dns_ent key = {
330 .hostname = name,
331 .namelen = namelen,
332 };
333 struct nfs_dns_ent *item = NULL;
334 ssize_t ret;
335 struct nfs_net *nn = net_generic(net, nfs_net_id);
336
337 ret = do_cache_lookup_wait(nn->nfs_dns_resolve, &key, &item);
338 if (ret == 0) {
339 if (salen >= item->addrlen) {
340 memcpy(sa, &item->addr, item->addrlen);
341 ret = item->addrlen;
342 } else
343 ret = -EOVERFLOW;
344 cache_put(&item->h, nn->nfs_dns_resolve);
345 } else if (ret == -ENOENT)
346 ret = -ESRCH;
347 return ret;
348}
349
350int nfs_dns_resolver_cache_init(struct net *net)
351{
352 int err = -ENOMEM;
353 struct nfs_net *nn = net_generic(net, nfs_net_id);
354 struct cache_detail *cd;
355 struct cache_head **tbl;
356
357 cd = kzalloc(sizeof(struct cache_detail), GFP_KERNEL);
358 if (cd == NULL)
359 goto err_cd;
360
361 tbl = kzalloc(NFS_DNS_HASHTBL_SIZE * sizeof(struct cache_head *),
362 GFP_KERNEL);
363 if (tbl == NULL)
364 goto err_tbl;
365
366 cd->owner = THIS_MODULE,
367 cd->hash_size = NFS_DNS_HASHTBL_SIZE,
368 cd->hash_table = tbl,
369 cd->name = "dns_resolve",
370 cd->cache_put = nfs_dns_ent_put,
371 cd->cache_upcall = nfs_dns_upcall,
372 cd->cache_parse = nfs_dns_parse,
373 cd->cache_show = nfs_dns_show,
374 cd->match = nfs_dns_match,
375 cd->init = nfs_dns_ent_init,
376 cd->update = nfs_dns_ent_update,
377 cd->alloc = nfs_dns_ent_alloc,
378
379 nfs_cache_init(cd);
380 err = nfs_cache_register_net(net, cd);
381 if (err)
382 goto err_reg;
383 nn->nfs_dns_resolve = cd;
384 return 0;
385
386err_reg:
387 nfs_cache_destroy(cd);
388 kfree(cd->hash_table);
389err_tbl:
390 kfree(cd);
391err_cd:
392 return err;
393}
394
395void nfs_dns_resolver_cache_destroy(struct net *net)
396{
397 struct nfs_net *nn = net_generic(net, nfs_net_id);
398 struct cache_detail *cd = nn->nfs_dns_resolve;
399
400 nfs_cache_unregister_net(net, cd);
401 nfs_cache_destroy(cd);
402 kfree(cd->hash_table);
403 kfree(cd);
404}
405
406static int rpc_pipefs_event(struct notifier_block *nb, unsigned long event,
407 void *ptr)
408{
409 struct super_block *sb = ptr;
410 struct net *net = sb->s_fs_info;
411 struct nfs_net *nn = net_generic(net, nfs_net_id);
412 struct cache_detail *cd = nn->nfs_dns_resolve;
413 int ret = 0;
414
415 if (cd == NULL)
416 return 0;
417
418 if (!try_module_get(THIS_MODULE))
419 return 0;
420
421 switch (event) {
422 case RPC_PIPEFS_MOUNT:
423 ret = nfs_cache_register_sb(sb, cd);
424 break;
425 case RPC_PIPEFS_UMOUNT:
426 nfs_cache_unregister_sb(sb, cd);
427 break;
428 default:
429 ret = -ENOTSUPP;
430 break;
431 }
432 module_put(THIS_MODULE);
433 return ret;
434}
435
436static struct notifier_block nfs_dns_resolver_block = {
437 .notifier_call = rpc_pipefs_event,
438};
439
440int nfs_dns_resolver_init(void)
441{
442 return rpc_pipefs_notifier_register(&nfs_dns_resolver_block);
443}
444
445void nfs_dns_resolver_destroy(void)
446{
447 rpc_pipefs_notifier_unregister(&nfs_dns_resolver_block);
448}
449#endif