blob: 265c4c179b9c8571a3aedf34c2ca4de8f6d357d8 [file] [log] [blame]
b.liue9582032025-04-17 19:18:16 +08001/*
2* Copyright (c) 2004 The Regents of the University of Michigan.
3* Copyright (c) 2012 Jeff Layton <jlayton@redhat.com>
4* All rights reserved.
5*
6* Andy Adamson <andros@citi.umich.edu>
7*
8* Redistribution and use in source and binary forms, with or without
9* modification, are permitted provided that the following conditions
10* are met:
11*
12* 1. Redistributions of source code must retain the above copyright
13* notice, this list of conditions and the following disclaimer.
14* 2. Redistributions in binary form must reproduce the above copyright
15* notice, this list of conditions and the following disclaimer in the
16* documentation and/or other materials provided with the distribution.
17* 3. Neither the name of the University nor the names of its
18* contributors may be used to endorse or promote products derived
19* from this software without specific prior written permission.
20*
21* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
22* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
23* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
24* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
28* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
29* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
30* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
31* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32*
33*/
34
35#include <crypto/hash.h>
36#include <linux/file.h>
37#include <linux/slab.h>
38#include <linux/namei.h>
39#include <linux/sched.h>
40#include <linux/fs.h>
41#include <linux/module.h>
42#include <net/net_namespace.h>
43#include <linux/sunrpc/rpc_pipe_fs.h>
44#include <linux/sunrpc/clnt.h>
45#include <linux/nfsd/cld.h>
46
47#include "nfsd.h"
48#include "state.h"
49#include "vfs.h"
50#include "netns.h"
51
52#define NFSDDBG_FACILITY NFSDDBG_PROC
53
54/* Declarations */
55struct nfsd4_client_tracking_ops {
56 int (*init)(struct net *);
57 void (*exit)(struct net *);
58 void (*create)(struct nfs4_client *);
59 void (*remove)(struct nfs4_client *);
60 int (*check)(struct nfs4_client *);
61 void (*grace_done)(struct nfsd_net *);
62 uint8_t version;
63 size_t msglen;
64};
65
66static const struct nfsd4_client_tracking_ops nfsd4_cld_tracking_ops;
67static const struct nfsd4_client_tracking_ops nfsd4_cld_tracking_ops_v2;
68
69/* Globals */
70static char user_recovery_dirname[PATH_MAX] = "/var/lib/nfs/v4recovery";
71
72static int
73nfs4_save_creds(const struct cred **original_creds)
74{
75 struct cred *new;
76
77 new = prepare_creds();
78 if (!new)
79 return -ENOMEM;
80
81 new->fsuid = GLOBAL_ROOT_UID;
82 new->fsgid = GLOBAL_ROOT_GID;
83 *original_creds = override_creds(new);
84 put_cred(new);
85 return 0;
86}
87
88static void
89nfs4_reset_creds(const struct cred *original)
90{
91 revert_creds(original);
92}
93
94static void
95md5_to_hex(char *out, char *md5)
96{
97 int i;
98
99 for (i=0; i<16; i++) {
100 unsigned char c = md5[i];
101
102 *out++ = '0' + ((c&0xf0)>>4) + (c>=0xa0)*('a'-'9'-1);
103 *out++ = '0' + (c&0x0f) + ((c&0x0f)>=0x0a)*('a'-'9'-1);
104 }
105 *out = '\0';
106}
107
108static int
109nfs4_make_rec_clidname(char *dname, const struct xdr_netobj *clname)
110{
111 struct xdr_netobj cksum;
112 struct crypto_shash *tfm;
113 int status;
114
115 dprintk("NFSD: nfs4_make_rec_clidname for %.*s\n",
116 clname->len, clname->data);
117 tfm = crypto_alloc_shash("md5", 0, 0);
118 if (IS_ERR(tfm)) {
119 status = PTR_ERR(tfm);
120 goto out_no_tfm;
121 }
122
123 cksum.len = crypto_shash_digestsize(tfm);
124 cksum.data = kmalloc(cksum.len, GFP_KERNEL);
125 if (cksum.data == NULL) {
126 status = -ENOMEM;
127 goto out;
128 }
129
130 {
131 SHASH_DESC_ON_STACK(desc, tfm);
132
133 desc->tfm = tfm;
134
135 status = crypto_shash_digest(desc, clname->data, clname->len,
136 cksum.data);
137 shash_desc_zero(desc);
138 }
139
140 if (status)
141 goto out;
142
143 md5_to_hex(dname, cksum.data);
144
145 status = 0;
146out:
147 kfree(cksum.data);
148 crypto_free_shash(tfm);
149out_no_tfm:
150 return status;
151}
152
153/*
154 * If we had an error generating the recdir name for the legacy tracker
155 * then warn the admin. If the error doesn't appear to be transient,
156 * then disable recovery tracking.
157 */
158static void
159legacy_recdir_name_error(struct nfs4_client *clp, int error)
160{
161 printk(KERN_ERR "NFSD: unable to generate recoverydir "
162 "name (%d).\n", error);
163
164 /*
165 * if the algorithm just doesn't exist, then disable the recovery
166 * tracker altogether. The crypto libs will generally return this if
167 * FIPS is enabled as well.
168 */
169 if (error == -ENOENT) {
170 printk(KERN_ERR "NFSD: disabling legacy clientid tracking. "
171 "Reboot recovery will not function correctly!\n");
172 nfsd4_client_tracking_exit(clp->net);
173 }
174}
175
176static void
177__nfsd4_create_reclaim_record_grace(struct nfs4_client *clp,
178 const char *dname, int len, struct nfsd_net *nn)
179{
180 struct xdr_netobj name;
181 struct xdr_netobj princhash = { .len = 0, .data = NULL };
182 struct nfs4_client_reclaim *crp;
183
184 name.data = kmemdup(dname, len, GFP_KERNEL);
185 if (!name.data) {
186 dprintk("%s: failed to allocate memory for name.data!\n",
187 __func__);
188 return;
189 }
190 name.len = len;
191 crp = nfs4_client_to_reclaim(name, princhash, nn);
192 if (!crp) {
193 kfree(name.data);
194 return;
195 }
196 crp->cr_clp = clp;
197}
198
199static void
200nfsd4_create_clid_dir(struct nfs4_client *clp)
201{
202 const struct cred *original_cred;
203 char dname[HEXDIR_LEN];
204 struct dentry *dir, *dentry;
205 int status;
206 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
207
208 if (test_and_set_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
209 return;
210 if (!nn->rec_file)
211 return;
212
213 status = nfs4_make_rec_clidname(dname, &clp->cl_name);
214 if (status)
215 return legacy_recdir_name_error(clp, status);
216
217 status = nfs4_save_creds(&original_cred);
218 if (status < 0)
219 return;
220
221 status = mnt_want_write_file(nn->rec_file);
222 if (status)
223 goto out_creds;
224
225 dir = nn->rec_file->f_path.dentry;
226 /* lock the parent */
227 inode_lock(d_inode(dir));
228
229 dentry = lookup_one_len(dname, dir, HEXDIR_LEN-1);
230 if (IS_ERR(dentry)) {
231 status = PTR_ERR(dentry);
232 goto out_unlock;
233 }
234 if (d_really_is_positive(dentry))
235 /*
236 * In the 4.1 case, where we're called from
237 * reclaim_complete(), records from the previous reboot
238 * may still be left, so this is OK.
239 *
240 * In the 4.0 case, we should never get here; but we may
241 * as well be forgiving and just succeed silently.
242 */
243 goto out_put;
244 status = vfs_mkdir(d_inode(dir), dentry, S_IRWXU);
245out_put:
246 dput(dentry);
247out_unlock:
248 inode_unlock(d_inode(dir));
249 if (status == 0) {
250 if (nn->in_grace)
251 __nfsd4_create_reclaim_record_grace(clp, dname,
252 HEXDIR_LEN, nn);
253 vfs_fsync(nn->rec_file, 0);
254 } else {
255 printk(KERN_ERR "NFSD: failed to write recovery record"
256 " (err %d); please check that %s exists"
257 " and is writeable", status,
258 user_recovery_dirname);
259 }
260 mnt_drop_write_file(nn->rec_file);
261out_creds:
262 nfs4_reset_creds(original_cred);
263}
264
265typedef int (recdir_func)(struct dentry *, struct dentry *, struct nfsd_net *);
266
267struct name_list {
268 char name[HEXDIR_LEN];
269 struct list_head list;
270};
271
272struct nfs4_dir_ctx {
273 struct dir_context ctx;
274 struct list_head names;
275};
276
277static int
278nfsd4_build_namelist(struct dir_context *__ctx, const char *name, int namlen,
279 loff_t offset, u64 ino, unsigned int d_type)
280{
281 struct nfs4_dir_ctx *ctx =
282 container_of(__ctx, struct nfs4_dir_ctx, ctx);
283 struct name_list *entry;
284
285 if (namlen != HEXDIR_LEN - 1)
286 return 0;
287 entry = kmalloc(sizeof(struct name_list), GFP_KERNEL);
288 if (entry == NULL)
289 return -ENOMEM;
290 memcpy(entry->name, name, HEXDIR_LEN - 1);
291 entry->name[HEXDIR_LEN - 1] = '\0';
292 list_add(&entry->list, &ctx->names);
293 return 0;
294}
295
296static int
297nfsd4_list_rec_dir(recdir_func *f, struct nfsd_net *nn)
298{
299 const struct cred *original_cred;
300 struct dentry *dir = nn->rec_file->f_path.dentry;
301 struct nfs4_dir_ctx ctx = {
302 .ctx.actor = nfsd4_build_namelist,
303 .names = LIST_HEAD_INIT(ctx.names)
304 };
305 struct name_list *entry, *tmp;
306 int status;
307
308 status = nfs4_save_creds(&original_cred);
309 if (status < 0)
310 return status;
311
312 status = vfs_llseek(nn->rec_file, 0, SEEK_SET);
313 if (status < 0) {
314 nfs4_reset_creds(original_cred);
315 return status;
316 }
317
318 status = iterate_dir(nn->rec_file, &ctx.ctx);
319 inode_lock_nested(d_inode(dir), I_MUTEX_PARENT);
320
321 list_for_each_entry_safe(entry, tmp, &ctx.names, list) {
322 if (!status) {
323 struct dentry *dentry;
324 dentry = lookup_one_len(entry->name, dir, HEXDIR_LEN-1);
325 if (IS_ERR(dentry)) {
326 status = PTR_ERR(dentry);
327 break;
328 }
329 status = f(dir, dentry, nn);
330 dput(dentry);
331 }
332 list_del(&entry->list);
333 kfree(entry);
334 }
335 inode_unlock(d_inode(dir));
336 nfs4_reset_creds(original_cred);
337
338 list_for_each_entry_safe(entry, tmp, &ctx.names, list) {
339 dprintk("NFSD: %s. Left entry %s\n", __func__, entry->name);
340 list_del(&entry->list);
341 kfree(entry);
342 }
343 return status;
344}
345
346static int
347nfsd4_unlink_clid_dir(char *name, int namlen, struct nfsd_net *nn)
348{
349 struct dentry *dir, *dentry;
350 int status;
351
352 dprintk("NFSD: nfsd4_unlink_clid_dir. name %.*s\n", namlen, name);
353
354 dir = nn->rec_file->f_path.dentry;
355 inode_lock_nested(d_inode(dir), I_MUTEX_PARENT);
356 dentry = lookup_one_len(name, dir, namlen);
357 if (IS_ERR(dentry)) {
358 status = PTR_ERR(dentry);
359 goto out_unlock;
360 }
361 status = -ENOENT;
362 if (d_really_is_negative(dentry))
363 goto out;
364 status = vfs_rmdir(d_inode(dir), dentry);
365out:
366 dput(dentry);
367out_unlock:
368 inode_unlock(d_inode(dir));
369 return status;
370}
371
372static void
373__nfsd4_remove_reclaim_record_grace(const char *dname, int len,
374 struct nfsd_net *nn)
375{
376 struct xdr_netobj name;
377 struct nfs4_client_reclaim *crp;
378
379 name.data = kmemdup(dname, len, GFP_KERNEL);
380 if (!name.data) {
381 dprintk("%s: failed to allocate memory for name.data!\n",
382 __func__);
383 return;
384 }
385 name.len = len;
386 crp = nfsd4_find_reclaim_client(name, nn);
387 kfree(name.data);
388 if (crp)
389 nfs4_remove_reclaim_record(crp, nn);
390}
391
392static void
393nfsd4_remove_clid_dir(struct nfs4_client *clp)
394{
395 const struct cred *original_cred;
396 char dname[HEXDIR_LEN];
397 int status;
398 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
399
400 if (!nn->rec_file || !test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
401 return;
402
403 status = nfs4_make_rec_clidname(dname, &clp->cl_name);
404 if (status)
405 return legacy_recdir_name_error(clp, status);
406
407 status = mnt_want_write_file(nn->rec_file);
408 if (status)
409 goto out;
410 clear_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
411
412 status = nfs4_save_creds(&original_cred);
413 if (status < 0)
414 goto out_drop_write;
415
416 status = nfsd4_unlink_clid_dir(dname, HEXDIR_LEN-1, nn);
417 nfs4_reset_creds(original_cred);
418 if (status == 0) {
419 vfs_fsync(nn->rec_file, 0);
420 if (nn->in_grace)
421 __nfsd4_remove_reclaim_record_grace(dname,
422 HEXDIR_LEN, nn);
423 }
424out_drop_write:
425 mnt_drop_write_file(nn->rec_file);
426out:
427 if (status)
428 printk("NFSD: Failed to remove expired client state directory"
429 " %.*s\n", HEXDIR_LEN, dname);
430}
431
432static int
433purge_old(struct dentry *parent, struct dentry *child, struct nfsd_net *nn)
434{
435 int status;
436 struct xdr_netobj name;
437
438 if (child->d_name.len != HEXDIR_LEN - 1) {
439 printk("%s: illegal name %pd in recovery directory\n",
440 __func__, child);
441 /* Keep trying; maybe the others are OK: */
442 return 0;
443 }
444 name.data = kmemdup_nul(child->d_name.name, child->d_name.len, GFP_KERNEL);
445 if (!name.data) {
446 dprintk("%s: failed to allocate memory for name.data!\n",
447 __func__);
448 goto out;
449 }
450 name.len = HEXDIR_LEN;
451 if (nfs4_has_reclaimed_state(name, nn))
452 goto out_free;
453
454 status = vfs_rmdir(d_inode(parent), child);
455 if (status)
456 printk("failed to remove client recovery directory %pd\n",
457 child);
458out_free:
459 kfree(name.data);
460out:
461 /* Keep trying, success or failure: */
462 return 0;
463}
464
465static void
466nfsd4_recdir_purge_old(struct nfsd_net *nn)
467{
468 int status;
469
470 nn->in_grace = false;
471 if (!nn->rec_file)
472 return;
473 status = mnt_want_write_file(nn->rec_file);
474 if (status)
475 goto out;
476 status = nfsd4_list_rec_dir(purge_old, nn);
477 if (status == 0)
478 vfs_fsync(nn->rec_file, 0);
479 mnt_drop_write_file(nn->rec_file);
480out:
481 nfs4_release_reclaim(nn);
482 if (status)
483 printk("nfsd4: failed to purge old clients from recovery"
484 " directory %pD\n", nn->rec_file);
485}
486
487static int
488load_recdir(struct dentry *parent, struct dentry *child, struct nfsd_net *nn)
489{
490 struct xdr_netobj name;
491 struct xdr_netobj princhash = { .len = 0, .data = NULL };
492
493 if (child->d_name.len != HEXDIR_LEN - 1) {
494 printk("%s: illegal name %pd in recovery directory\n",
495 __func__, child);
496 /* Keep trying; maybe the others are OK: */
497 return 0;
498 }
499 name.data = kmemdup_nul(child->d_name.name, child->d_name.len, GFP_KERNEL);
500 if (!name.data) {
501 dprintk("%s: failed to allocate memory for name.data!\n",
502 __func__);
503 goto out;
504 }
505 name.len = HEXDIR_LEN;
506 if (!nfs4_client_to_reclaim(name, princhash, nn))
507 kfree(name.data);
508out:
509 return 0;
510}
511
512static int
513nfsd4_recdir_load(struct net *net) {
514 int status;
515 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
516
517 if (!nn->rec_file)
518 return 0;
519
520 status = nfsd4_list_rec_dir(load_recdir, nn);
521 if (status)
522 printk("nfsd4: failed loading clients from recovery"
523 " directory %pD\n", nn->rec_file);
524 return status;
525}
526
527/*
528 * Hold reference to the recovery directory.
529 */
530
531static int
532nfsd4_init_recdir(struct net *net)
533{
534 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
535 const struct cred *original_cred;
536 int status;
537
538 printk("NFSD: Using %s as the NFSv4 state recovery directory\n",
539 user_recovery_dirname);
540
541 BUG_ON(nn->rec_file);
542
543 status = nfs4_save_creds(&original_cred);
544 if (status < 0) {
545 printk("NFSD: Unable to change credentials to find recovery"
546 " directory: error %d\n",
547 status);
548 return status;
549 }
550
551 nn->rec_file = filp_open(user_recovery_dirname, O_RDONLY | O_DIRECTORY, 0);
552 if (IS_ERR(nn->rec_file)) {
553 printk("NFSD: unable to find recovery directory %s\n",
554 user_recovery_dirname);
555 status = PTR_ERR(nn->rec_file);
556 nn->rec_file = NULL;
557 }
558
559 nfs4_reset_creds(original_cred);
560 if (!status)
561 nn->in_grace = true;
562 return status;
563}
564
565static void
566nfsd4_shutdown_recdir(struct net *net)
567{
568 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
569
570 if (!nn->rec_file)
571 return;
572 fput(nn->rec_file);
573 nn->rec_file = NULL;
574}
575
576static int
577nfs4_legacy_state_init(struct net *net)
578{
579 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
580 int i;
581
582 nn->reclaim_str_hashtbl = kmalloc_array(CLIENT_HASH_SIZE,
583 sizeof(struct list_head),
584 GFP_KERNEL);
585 if (!nn->reclaim_str_hashtbl)
586 return -ENOMEM;
587
588 for (i = 0; i < CLIENT_HASH_SIZE; i++)
589 INIT_LIST_HEAD(&nn->reclaim_str_hashtbl[i]);
590 nn->reclaim_str_hashtbl_size = 0;
591
592 return 0;
593}
594
595static void
596nfs4_legacy_state_shutdown(struct net *net)
597{
598 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
599
600 kfree(nn->reclaim_str_hashtbl);
601}
602
603static int
604nfsd4_load_reboot_recovery_data(struct net *net)
605{
606 int status;
607
608 status = nfsd4_init_recdir(net);
609 if (status)
610 return status;
611
612 status = nfsd4_recdir_load(net);
613 if (status)
614 nfsd4_shutdown_recdir(net);
615
616 return status;
617}
618
619static int
620nfsd4_legacy_tracking_init(struct net *net)
621{
622 int status;
623
624 /* XXX: The legacy code won't work in a container */
625 if (net != &init_net) {
626 pr_warn("NFSD: attempt to initialize legacy client tracking in a container ignored.\n");
627 return -EINVAL;
628 }
629
630 status = nfs4_legacy_state_init(net);
631 if (status)
632 return status;
633
634 status = nfsd4_load_reboot_recovery_data(net);
635 if (status)
636 goto err;
637 printk("NFSD: Using legacy client tracking operations.\n");
638 return 0;
639
640err:
641 nfs4_legacy_state_shutdown(net);
642 return status;
643}
644
645static void
646nfsd4_legacy_tracking_exit(struct net *net)
647{
648 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
649
650 nfs4_release_reclaim(nn);
651 nfsd4_shutdown_recdir(net);
652 nfs4_legacy_state_shutdown(net);
653}
654
655/*
656 * Change the NFSv4 recovery directory to recdir.
657 */
658int
659nfs4_reset_recoverydir(char *recdir)
660{
661 int status;
662 struct path path;
663
664 status = kern_path(recdir, LOOKUP_FOLLOW, &path);
665 if (status)
666 return status;
667 status = -ENOTDIR;
668 if (d_is_dir(path.dentry)) {
669 strscpy(user_recovery_dirname, recdir,
670 sizeof(user_recovery_dirname));
671 status = 0;
672 }
673 path_put(&path);
674 return status;
675}
676
677char *
678nfs4_recoverydir(void)
679{
680 return user_recovery_dirname;
681}
682
683static int
684nfsd4_check_legacy_client(struct nfs4_client *clp)
685{
686 int status;
687 char dname[HEXDIR_LEN];
688 struct nfs4_client_reclaim *crp;
689 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
690 struct xdr_netobj name;
691
692 /* did we already find that this client is stable? */
693 if (test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
694 return 0;
695
696 status = nfs4_make_rec_clidname(dname, &clp->cl_name);
697 if (status) {
698 legacy_recdir_name_error(clp, status);
699 return status;
700 }
701
702 /* look for it in the reclaim hashtable otherwise */
703 name.data = kmemdup(dname, HEXDIR_LEN, GFP_KERNEL);
704 if (!name.data) {
705 dprintk("%s: failed to allocate memory for name.data!\n",
706 __func__);
707 goto out_enoent;
708 }
709 name.len = HEXDIR_LEN;
710 crp = nfsd4_find_reclaim_client(name, nn);
711 kfree(name.data);
712 if (crp) {
713 set_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
714 crp->cr_clp = clp;
715 return 0;
716 }
717
718out_enoent:
719 return -ENOENT;
720}
721
722static const struct nfsd4_client_tracking_ops nfsd4_legacy_tracking_ops = {
723 .init = nfsd4_legacy_tracking_init,
724 .exit = nfsd4_legacy_tracking_exit,
725 .create = nfsd4_create_clid_dir,
726 .remove = nfsd4_remove_clid_dir,
727 .check = nfsd4_check_legacy_client,
728 .grace_done = nfsd4_recdir_purge_old,
729 .version = 1,
730 .msglen = 0,
731};
732
733/* Globals */
734#define NFSD_PIPE_DIR "nfsd"
735#define NFSD_CLD_PIPE "cld"
736
737/* per-net-ns structure for holding cld upcall info */
738struct cld_net {
739 struct rpc_pipe *cn_pipe;
740 spinlock_t cn_lock;
741 struct list_head cn_list;
742 unsigned int cn_xid;
743 bool cn_has_legacy;
744 struct crypto_shash *cn_tfm;
745};
746
747struct cld_upcall {
748 struct list_head cu_list;
749 struct cld_net *cu_net;
750 struct completion cu_done;
751 union {
752 struct cld_msg_hdr cu_hdr;
753 struct cld_msg cu_msg;
754 struct cld_msg_v2 cu_msg_v2;
755 } cu_u;
756};
757
758static int
759__cld_pipe_upcall(struct rpc_pipe *pipe, void *cmsg)
760{
761 int ret;
762 struct rpc_pipe_msg msg;
763 struct cld_upcall *cup = container_of(cmsg, struct cld_upcall, cu_u);
764 struct nfsd_net *nn = net_generic(pipe->dentry->d_sb->s_fs_info,
765 nfsd_net_id);
766
767 memset(&msg, 0, sizeof(msg));
768 msg.data = cmsg;
769 msg.len = nn->client_tracking_ops->msglen;
770
771 ret = rpc_queue_upcall(pipe, &msg);
772 if (ret < 0) {
773 goto out;
774 }
775
776 wait_for_completion(&cup->cu_done);
777
778 if (msg.errno < 0)
779 ret = msg.errno;
780out:
781 return ret;
782}
783
784static int
785cld_pipe_upcall(struct rpc_pipe *pipe, void *cmsg)
786{
787 int ret;
788
789 /*
790 * -EAGAIN occurs when pipe is closed and reopened while there are
791 * upcalls queued.
792 */
793 do {
794 ret = __cld_pipe_upcall(pipe, cmsg);
795 } while (ret == -EAGAIN);
796
797 return ret;
798}
799
800static ssize_t
801__cld_pipe_inprogress_downcall(const struct cld_msg_v2 __user *cmsg,
802 struct nfsd_net *nn)
803{
804 uint8_t cmd, princhashlen;
805 struct xdr_netobj name, princhash = { .len = 0, .data = NULL };
806 uint16_t namelen;
807 struct cld_net *cn = nn->cld_net;
808
809 if (get_user(cmd, &cmsg->cm_cmd)) {
810 dprintk("%s: error when copying cmd from userspace", __func__);
811 return -EFAULT;
812 }
813 if (cmd == Cld_GraceStart) {
814 if (nn->client_tracking_ops->version >= 2) {
815 const struct cld_clntinfo __user *ci;
816
817 ci = &cmsg->cm_u.cm_clntinfo;
818 if (get_user(namelen, &ci->cc_name.cn_len))
819 return -EFAULT;
820 if (!namelen) {
821 dprintk("%s: namelen should not be zero", __func__);
822 return -EINVAL;
823 }
824 name.data = memdup_user(&ci->cc_name.cn_id, namelen);
825 if (IS_ERR_OR_NULL(name.data))
826 return -EFAULT;
827 name.len = namelen;
828 get_user(princhashlen, &ci->cc_princhash.cp_len);
829 if (princhashlen > 0) {
830 princhash.data = memdup_user(
831 &ci->cc_princhash.cp_data,
832 princhashlen);
833 if (IS_ERR_OR_NULL(princhash.data)) {
834 kfree(name.data);
835 return -EFAULT;
836 }
837 princhash.len = princhashlen;
838 } else
839 princhash.len = 0;
840 } else {
841 const struct cld_name __user *cnm;
842
843 cnm = &cmsg->cm_u.cm_name;
844 if (get_user(namelen, &cnm->cn_len))
845 return -EFAULT;
846 if (!namelen) {
847 dprintk("%s: namelen should not be zero", __func__);
848 return -EINVAL;
849 }
850 name.data = memdup_user(&cnm->cn_id, namelen);
851 if (IS_ERR_OR_NULL(name.data))
852 return -EFAULT;
853 name.len = namelen;
854 }
855 if (name.len > 5 && memcmp(name.data, "hash:", 5) == 0) {
856 name.len = name.len - 5;
857 memmove(name.data, name.data + 5, name.len);
858 cn->cn_has_legacy = true;
859 }
860 if (!nfs4_client_to_reclaim(name, princhash, nn)) {
861 kfree(name.data);
862 kfree(princhash.data);
863 return -EFAULT;
864 }
865 return nn->client_tracking_ops->msglen;
866 }
867 return -EFAULT;
868}
869
870static ssize_t
871cld_pipe_downcall(struct file *filp, const char __user *src, size_t mlen)
872{
873 struct cld_upcall *tmp, *cup;
874 struct cld_msg_hdr __user *hdr = (struct cld_msg_hdr __user *)src;
875 struct cld_msg_v2 __user *cmsg = (struct cld_msg_v2 __user *)src;
876 uint32_t xid;
877 struct nfsd_net *nn = net_generic(file_inode(filp)->i_sb->s_fs_info,
878 nfsd_net_id);
879 struct cld_net *cn = nn->cld_net;
880 int16_t status;
881
882 if (mlen != nn->client_tracking_ops->msglen) {
883 dprintk("%s: got %zu bytes, expected %zu\n", __func__, mlen,
884 nn->client_tracking_ops->msglen);
885 return -EINVAL;
886 }
887
888 /* copy just the xid so we can try to find that */
889 if (copy_from_user(&xid, &hdr->cm_xid, sizeof(xid)) != 0) {
890 dprintk("%s: error when copying xid from userspace", __func__);
891 return -EFAULT;
892 }
893
894 /*
895 * copy the status so we know whether to remove the upcall from the
896 * list (for -EINPROGRESS, we just want to make sure the xid is
897 * valid, not remove the upcall from the list)
898 */
899 if (get_user(status, &hdr->cm_status)) {
900 dprintk("%s: error when copying status from userspace", __func__);
901 return -EFAULT;
902 }
903
904 /* walk the list and find corresponding xid */
905 cup = NULL;
906 spin_lock(&cn->cn_lock);
907 list_for_each_entry(tmp, &cn->cn_list, cu_list) {
908 if (get_unaligned(&tmp->cu_u.cu_hdr.cm_xid) == xid) {
909 cup = tmp;
910 if (status != -EINPROGRESS)
911 list_del_init(&cup->cu_list);
912 break;
913 }
914 }
915 spin_unlock(&cn->cn_lock);
916
917 /* couldn't find upcall? */
918 if (!cup) {
919 dprintk("%s: couldn't find upcall -- xid=%u\n", __func__, xid);
920 return -EINVAL;
921 }
922
923 if (status == -EINPROGRESS)
924 return __cld_pipe_inprogress_downcall(cmsg, nn);
925
926 if (copy_from_user(&cup->cu_u.cu_msg_v2, src, mlen) != 0)
927 return -EFAULT;
928
929 complete(&cup->cu_done);
930 return mlen;
931}
932
933static void
934cld_pipe_destroy_msg(struct rpc_pipe_msg *msg)
935{
936 struct cld_msg *cmsg = msg->data;
937 struct cld_upcall *cup = container_of(cmsg, struct cld_upcall,
938 cu_u.cu_msg);
939
940 /* errno >= 0 means we got a downcall */
941 if (msg->errno >= 0)
942 return;
943
944 complete(&cup->cu_done);
945}
946
947static const struct rpc_pipe_ops cld_upcall_ops = {
948 .upcall = rpc_pipe_generic_upcall,
949 .downcall = cld_pipe_downcall,
950 .destroy_msg = cld_pipe_destroy_msg,
951};
952
953static struct dentry *
954nfsd4_cld_register_sb(struct super_block *sb, struct rpc_pipe *pipe)
955{
956 struct dentry *dir, *dentry;
957
958 dir = rpc_d_lookup_sb(sb, NFSD_PIPE_DIR);
959 if (dir == NULL)
960 return ERR_PTR(-ENOENT);
961 dentry = rpc_mkpipe_dentry(dir, NFSD_CLD_PIPE, NULL, pipe);
962 dput(dir);
963 return dentry;
964}
965
966static void
967nfsd4_cld_unregister_sb(struct rpc_pipe *pipe)
968{
969 if (pipe->dentry)
970 rpc_unlink(pipe->dentry);
971}
972
973static struct dentry *
974nfsd4_cld_register_net(struct net *net, struct rpc_pipe *pipe)
975{
976 struct super_block *sb;
977 struct dentry *dentry;
978
979 sb = rpc_get_sb_net(net);
980 if (!sb)
981 return NULL;
982 dentry = nfsd4_cld_register_sb(sb, pipe);
983 rpc_put_sb_net(net);
984 return dentry;
985}
986
987static void
988nfsd4_cld_unregister_net(struct net *net, struct rpc_pipe *pipe)
989{
990 struct super_block *sb;
991
992 sb = rpc_get_sb_net(net);
993 if (sb) {
994 nfsd4_cld_unregister_sb(pipe);
995 rpc_put_sb_net(net);
996 }
997}
998
999/* Initialize rpc_pipefs pipe for communication with client tracking daemon */
1000static int
1001__nfsd4_init_cld_pipe(struct net *net)
1002{
1003 int ret;
1004 struct dentry *dentry;
1005 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1006 struct cld_net *cn;
1007
1008 if (nn->cld_net)
1009 return 0;
1010
1011 cn = kzalloc(sizeof(*cn), GFP_KERNEL);
1012 if (!cn) {
1013 ret = -ENOMEM;
1014 goto err;
1015 }
1016
1017 cn->cn_pipe = rpc_mkpipe_data(&cld_upcall_ops, RPC_PIPE_WAIT_FOR_OPEN);
1018 if (IS_ERR(cn->cn_pipe)) {
1019 ret = PTR_ERR(cn->cn_pipe);
1020 goto err;
1021 }
1022 spin_lock_init(&cn->cn_lock);
1023 INIT_LIST_HEAD(&cn->cn_list);
1024
1025 dentry = nfsd4_cld_register_net(net, cn->cn_pipe);
1026 if (IS_ERR(dentry)) {
1027 ret = PTR_ERR(dentry);
1028 goto err_destroy_data;
1029 }
1030
1031 cn->cn_pipe->dentry = dentry;
1032 cn->cn_has_legacy = false;
1033 nn->cld_net = cn;
1034 return 0;
1035
1036err_destroy_data:
1037 rpc_destroy_pipe_data(cn->cn_pipe);
1038err:
1039 kfree(cn);
1040 printk(KERN_ERR "NFSD: unable to create nfsdcld upcall pipe (%d)\n",
1041 ret);
1042 return ret;
1043}
1044
1045static int
1046nfsd4_init_cld_pipe(struct net *net)
1047{
1048 int status;
1049
1050 status = __nfsd4_init_cld_pipe(net);
1051 if (!status)
1052 printk("NFSD: Using old nfsdcld client tracking operations.\n");
1053 return status;
1054}
1055
1056static void
1057nfsd4_remove_cld_pipe(struct net *net)
1058{
1059 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1060 struct cld_net *cn = nn->cld_net;
1061
1062 nfsd4_cld_unregister_net(net, cn->cn_pipe);
1063 rpc_destroy_pipe_data(cn->cn_pipe);
1064 if (cn->cn_tfm)
1065 crypto_free_shash(cn->cn_tfm);
1066 kfree(nn->cld_net);
1067 nn->cld_net = NULL;
1068}
1069
1070static struct cld_upcall *
1071alloc_cld_upcall(struct nfsd_net *nn)
1072{
1073 struct cld_upcall *new, *tmp;
1074 struct cld_net *cn = nn->cld_net;
1075
1076 new = kzalloc(sizeof(*new), GFP_KERNEL);
1077 if (!new)
1078 return new;
1079
1080 /* FIXME: hard cap on number in flight? */
1081restart_search:
1082 spin_lock(&cn->cn_lock);
1083 list_for_each_entry(tmp, &cn->cn_list, cu_list) {
1084 if (tmp->cu_u.cu_msg.cm_xid == cn->cn_xid) {
1085 cn->cn_xid++;
1086 spin_unlock(&cn->cn_lock);
1087 goto restart_search;
1088 }
1089 }
1090 init_completion(&new->cu_done);
1091 new->cu_u.cu_msg.cm_vers = nn->client_tracking_ops->version;
1092 put_unaligned(cn->cn_xid++, &new->cu_u.cu_msg.cm_xid);
1093 new->cu_net = cn;
1094 list_add(&new->cu_list, &cn->cn_list);
1095 spin_unlock(&cn->cn_lock);
1096
1097 dprintk("%s: allocated xid %u\n", __func__, new->cu_u.cu_msg.cm_xid);
1098
1099 return new;
1100}
1101
1102static void
1103free_cld_upcall(struct cld_upcall *victim)
1104{
1105 struct cld_net *cn = victim->cu_net;
1106
1107 spin_lock(&cn->cn_lock);
1108 list_del(&victim->cu_list);
1109 spin_unlock(&cn->cn_lock);
1110 kfree(victim);
1111}
1112
1113/* Ask daemon to create a new record */
1114static void
1115nfsd4_cld_create(struct nfs4_client *clp)
1116{
1117 int ret;
1118 struct cld_upcall *cup;
1119 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1120 struct cld_net *cn = nn->cld_net;
1121
1122 /* Don't upcall if it's already stored */
1123 if (test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
1124 return;
1125
1126 cup = alloc_cld_upcall(nn);
1127 if (!cup) {
1128 ret = -ENOMEM;
1129 goto out_err;
1130 }
1131
1132 cup->cu_u.cu_msg.cm_cmd = Cld_Create;
1133 cup->cu_u.cu_msg.cm_u.cm_name.cn_len = clp->cl_name.len;
1134 memcpy(cup->cu_u.cu_msg.cm_u.cm_name.cn_id, clp->cl_name.data,
1135 clp->cl_name.len);
1136
1137 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_u.cu_msg);
1138 if (!ret) {
1139 ret = cup->cu_u.cu_msg.cm_status;
1140 set_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
1141 }
1142
1143 free_cld_upcall(cup);
1144out_err:
1145 if (ret)
1146 printk(KERN_ERR "NFSD: Unable to create client "
1147 "record on stable storage: %d\n", ret);
1148}
1149
1150/* Ask daemon to create a new record */
1151static void
1152nfsd4_cld_create_v2(struct nfs4_client *clp)
1153{
1154 int ret;
1155 struct cld_upcall *cup;
1156 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1157 struct cld_net *cn = nn->cld_net;
1158 struct cld_msg_v2 *cmsg;
1159 struct crypto_shash *tfm = cn->cn_tfm;
1160 struct xdr_netobj cksum;
1161 char *principal = NULL;
1162 SHASH_DESC_ON_STACK(desc, tfm);
1163
1164 /* Don't upcall if it's already stored */
1165 if (test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
1166 return;
1167
1168 cup = alloc_cld_upcall(nn);
1169 if (!cup) {
1170 ret = -ENOMEM;
1171 goto out_err;
1172 }
1173
1174 cmsg = &cup->cu_u.cu_msg_v2;
1175 cmsg->cm_cmd = Cld_Create;
1176 cmsg->cm_u.cm_clntinfo.cc_name.cn_len = clp->cl_name.len;
1177 memcpy(cmsg->cm_u.cm_clntinfo.cc_name.cn_id, clp->cl_name.data,
1178 clp->cl_name.len);
1179 if (clp->cl_cred.cr_raw_principal)
1180 principal = clp->cl_cred.cr_raw_principal;
1181 else if (clp->cl_cred.cr_principal)
1182 principal = clp->cl_cred.cr_principal;
1183 if (principal) {
1184 desc->tfm = tfm;
1185 cksum.len = crypto_shash_digestsize(tfm);
1186 cksum.data = kmalloc(cksum.len, GFP_KERNEL);
1187 if (cksum.data == NULL) {
1188 ret = -ENOMEM;
1189 goto out;
1190 }
1191 ret = crypto_shash_digest(desc, principal, strlen(principal),
1192 cksum.data);
1193 shash_desc_zero(desc);
1194 if (ret) {
1195 kfree(cksum.data);
1196 goto out;
1197 }
1198 cmsg->cm_u.cm_clntinfo.cc_princhash.cp_len = cksum.len;
1199 memcpy(cmsg->cm_u.cm_clntinfo.cc_princhash.cp_data,
1200 cksum.data, cksum.len);
1201 kfree(cksum.data);
1202 } else
1203 cmsg->cm_u.cm_clntinfo.cc_princhash.cp_len = 0;
1204
1205 ret = cld_pipe_upcall(cn->cn_pipe, cmsg);
1206 if (!ret) {
1207 ret = cmsg->cm_status;
1208 set_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
1209 }
1210
1211out:
1212 free_cld_upcall(cup);
1213out_err:
1214 if (ret)
1215 pr_err("NFSD: Unable to create client record on stable storage: %d\n",
1216 ret);
1217}
1218
1219/* Ask daemon to create a new record */
1220static void
1221nfsd4_cld_remove(struct nfs4_client *clp)
1222{
1223 int ret;
1224 struct cld_upcall *cup;
1225 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1226 struct cld_net *cn = nn->cld_net;
1227
1228 /* Don't upcall if it's already removed */
1229 if (!test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
1230 return;
1231
1232 cup = alloc_cld_upcall(nn);
1233 if (!cup) {
1234 ret = -ENOMEM;
1235 goto out_err;
1236 }
1237
1238 cup->cu_u.cu_msg.cm_cmd = Cld_Remove;
1239 cup->cu_u.cu_msg.cm_u.cm_name.cn_len = clp->cl_name.len;
1240 memcpy(cup->cu_u.cu_msg.cm_u.cm_name.cn_id, clp->cl_name.data,
1241 clp->cl_name.len);
1242
1243 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_u.cu_msg);
1244 if (!ret) {
1245 ret = cup->cu_u.cu_msg.cm_status;
1246 clear_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
1247 }
1248
1249 free_cld_upcall(cup);
1250out_err:
1251 if (ret)
1252 printk(KERN_ERR "NFSD: Unable to remove client "
1253 "record from stable storage: %d\n", ret);
1254}
1255
1256/*
1257 * For older nfsdcld's that do not allow us to "slurp" the clients
1258 * from the tracking database during startup.
1259 *
1260 * Check for presence of a record, and update its timestamp
1261 */
1262static int
1263nfsd4_cld_check_v0(struct nfs4_client *clp)
1264{
1265 int ret;
1266 struct cld_upcall *cup;
1267 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1268 struct cld_net *cn = nn->cld_net;
1269
1270 /* Don't upcall if one was already stored during this grace pd */
1271 if (test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
1272 return 0;
1273
1274 cup = alloc_cld_upcall(nn);
1275 if (!cup) {
1276 printk(KERN_ERR "NFSD: Unable to check client record on "
1277 "stable storage: %d\n", -ENOMEM);
1278 return -ENOMEM;
1279 }
1280
1281 cup->cu_u.cu_msg.cm_cmd = Cld_Check;
1282 cup->cu_u.cu_msg.cm_u.cm_name.cn_len = clp->cl_name.len;
1283 memcpy(cup->cu_u.cu_msg.cm_u.cm_name.cn_id, clp->cl_name.data,
1284 clp->cl_name.len);
1285
1286 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_u.cu_msg);
1287 if (!ret) {
1288 ret = cup->cu_u.cu_msg.cm_status;
1289 set_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
1290 }
1291
1292 free_cld_upcall(cup);
1293 return ret;
1294}
1295
1296/*
1297 * For newer nfsdcld's that allow us to "slurp" the clients
1298 * from the tracking database during startup.
1299 *
1300 * Check for presence of a record in the reclaim_str_hashtbl
1301 */
1302static int
1303nfsd4_cld_check(struct nfs4_client *clp)
1304{
1305 struct nfs4_client_reclaim *crp;
1306 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1307 struct cld_net *cn = nn->cld_net;
1308 int status;
1309 char dname[HEXDIR_LEN];
1310 struct xdr_netobj name;
1311
1312 /* did we already find that this client is stable? */
1313 if (test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
1314 return 0;
1315
1316 /* look for it in the reclaim hashtable otherwise */
1317 crp = nfsd4_find_reclaim_client(clp->cl_name, nn);
1318 if (crp)
1319 goto found;
1320
1321 if (cn->cn_has_legacy) {
1322 status = nfs4_make_rec_clidname(dname, &clp->cl_name);
1323 if (status)
1324 return -ENOENT;
1325
1326 name.data = kmemdup(dname, HEXDIR_LEN, GFP_KERNEL);
1327 if (!name.data) {
1328 dprintk("%s: failed to allocate memory for name.data!\n",
1329 __func__);
1330 return -ENOENT;
1331 }
1332 name.len = HEXDIR_LEN;
1333 crp = nfsd4_find_reclaim_client(name, nn);
1334 kfree(name.data);
1335 if (crp)
1336 goto found;
1337
1338 }
1339 return -ENOENT;
1340found:
1341 crp->cr_clp = clp;
1342 return 0;
1343}
1344
1345static int
1346nfsd4_cld_check_v2(struct nfs4_client *clp)
1347{
1348 struct nfs4_client_reclaim *crp;
1349 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1350 struct cld_net *cn = nn->cld_net;
1351 int status;
1352 char dname[HEXDIR_LEN];
1353 struct xdr_netobj name;
1354 struct crypto_shash *tfm = cn->cn_tfm;
1355 struct xdr_netobj cksum;
1356 char *principal = NULL;
1357 SHASH_DESC_ON_STACK(desc, tfm);
1358
1359 /* did we already find that this client is stable? */
1360 if (test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
1361 return 0;
1362
1363 /* look for it in the reclaim hashtable otherwise */
1364 crp = nfsd4_find_reclaim_client(clp->cl_name, nn);
1365 if (crp)
1366 goto found;
1367
1368 if (cn->cn_has_legacy) {
1369 status = nfs4_make_rec_clidname(dname, &clp->cl_name);
1370 if (status)
1371 return -ENOENT;
1372
1373 name.data = kmemdup(dname, HEXDIR_LEN, GFP_KERNEL);
1374 if (!name.data) {
1375 dprintk("%s: failed to allocate memory for name.data\n",
1376 __func__);
1377 return -ENOENT;
1378 }
1379 name.len = HEXDIR_LEN;
1380 crp = nfsd4_find_reclaim_client(name, nn);
1381 kfree(name.data);
1382 if (crp)
1383 goto found;
1384
1385 }
1386 return -ENOENT;
1387found:
1388 if (crp->cr_princhash.len) {
1389 if (clp->cl_cred.cr_raw_principal)
1390 principal = clp->cl_cred.cr_raw_principal;
1391 else if (clp->cl_cred.cr_principal)
1392 principal = clp->cl_cred.cr_principal;
1393 if (principal == NULL)
1394 return -ENOENT;
1395 desc->tfm = tfm;
1396 cksum.len = crypto_shash_digestsize(tfm);
1397 cksum.data = kmalloc(cksum.len, GFP_KERNEL);
1398 if (cksum.data == NULL)
1399 return -ENOENT;
1400 status = crypto_shash_digest(desc, principal, strlen(principal),
1401 cksum.data);
1402 shash_desc_zero(desc);
1403 if (status) {
1404 kfree(cksum.data);
1405 return -ENOENT;
1406 }
1407 if (memcmp(crp->cr_princhash.data, cksum.data,
1408 crp->cr_princhash.len)) {
1409 kfree(cksum.data);
1410 return -ENOENT;
1411 }
1412 kfree(cksum.data);
1413 }
1414 crp->cr_clp = clp;
1415 return 0;
1416}
1417
1418static int
1419nfsd4_cld_grace_start(struct nfsd_net *nn)
1420{
1421 int ret;
1422 struct cld_upcall *cup;
1423 struct cld_net *cn = nn->cld_net;
1424
1425 cup = alloc_cld_upcall(nn);
1426 if (!cup) {
1427 ret = -ENOMEM;
1428 goto out_err;
1429 }
1430
1431 cup->cu_u.cu_msg.cm_cmd = Cld_GraceStart;
1432 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_u.cu_msg);
1433 if (!ret)
1434 ret = cup->cu_u.cu_msg.cm_status;
1435
1436 free_cld_upcall(cup);
1437out_err:
1438 if (ret)
1439 dprintk("%s: Unable to get clients from userspace: %d\n",
1440 __func__, ret);
1441 return ret;
1442}
1443
1444/* For older nfsdcld's that need cm_gracetime */
1445static void
1446nfsd4_cld_grace_done_v0(struct nfsd_net *nn)
1447{
1448 int ret;
1449 struct cld_upcall *cup;
1450 struct cld_net *cn = nn->cld_net;
1451
1452 cup = alloc_cld_upcall(nn);
1453 if (!cup) {
1454 ret = -ENOMEM;
1455 goto out_err;
1456 }
1457
1458 cup->cu_u.cu_msg.cm_cmd = Cld_GraceDone;
1459 cup->cu_u.cu_msg.cm_u.cm_gracetime = nn->boot_time;
1460 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_u.cu_msg);
1461 if (!ret)
1462 ret = cup->cu_u.cu_msg.cm_status;
1463
1464 free_cld_upcall(cup);
1465out_err:
1466 if (ret)
1467 printk(KERN_ERR "NFSD: Unable to end grace period: %d\n", ret);
1468}
1469
1470/*
1471 * For newer nfsdcld's that do not need cm_gracetime. We also need to call
1472 * nfs4_release_reclaim() to clear out the reclaim_str_hashtbl.
1473 */
1474static void
1475nfsd4_cld_grace_done(struct nfsd_net *nn)
1476{
1477 int ret;
1478 struct cld_upcall *cup;
1479 struct cld_net *cn = nn->cld_net;
1480
1481 cup = alloc_cld_upcall(nn);
1482 if (!cup) {
1483 ret = -ENOMEM;
1484 goto out_err;
1485 }
1486
1487 cup->cu_u.cu_msg.cm_cmd = Cld_GraceDone;
1488 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_u.cu_msg);
1489 if (!ret)
1490 ret = cup->cu_u.cu_msg.cm_status;
1491
1492 free_cld_upcall(cup);
1493out_err:
1494 nfs4_release_reclaim(nn);
1495 if (ret)
1496 printk(KERN_ERR "NFSD: Unable to end grace period: %d\n", ret);
1497}
1498
1499static int
1500nfs4_cld_state_init(struct net *net)
1501{
1502 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1503 int i;
1504
1505 nn->reclaim_str_hashtbl = kmalloc_array(CLIENT_HASH_SIZE,
1506 sizeof(struct list_head),
1507 GFP_KERNEL);
1508 if (!nn->reclaim_str_hashtbl)
1509 return -ENOMEM;
1510
1511 for (i = 0; i < CLIENT_HASH_SIZE; i++)
1512 INIT_LIST_HEAD(&nn->reclaim_str_hashtbl[i]);
1513 nn->reclaim_str_hashtbl_size = 0;
1514 nn->track_reclaim_completes = true;
1515 atomic_set(&nn->nr_reclaim_complete, 0);
1516
1517 return 0;
1518}
1519
1520static void
1521nfs4_cld_state_shutdown(struct net *net)
1522{
1523 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1524
1525 nn->track_reclaim_completes = false;
1526 kfree(nn->reclaim_str_hashtbl);
1527}
1528
1529static bool
1530cld_running(struct nfsd_net *nn)
1531{
1532 struct cld_net *cn = nn->cld_net;
1533 struct rpc_pipe *pipe = cn->cn_pipe;
1534
1535 return pipe->nreaders || pipe->nwriters;
1536}
1537
1538static int
1539nfsd4_cld_get_version(struct nfsd_net *nn)
1540{
1541 int ret = 0;
1542 struct cld_upcall *cup;
1543 struct cld_net *cn = nn->cld_net;
1544 uint8_t version;
1545
1546 cup = alloc_cld_upcall(nn);
1547 if (!cup) {
1548 ret = -ENOMEM;
1549 goto out_err;
1550 }
1551 cup->cu_u.cu_msg.cm_cmd = Cld_GetVersion;
1552 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_u.cu_msg);
1553 if (!ret) {
1554 ret = cup->cu_u.cu_msg.cm_status;
1555 if (ret)
1556 goto out_free;
1557 version = cup->cu_u.cu_msg.cm_u.cm_version;
1558 dprintk("%s: userspace returned version %u\n",
1559 __func__, version);
1560 if (version < 1)
1561 version = 1;
1562 else if (version > CLD_UPCALL_VERSION)
1563 version = CLD_UPCALL_VERSION;
1564
1565 switch (version) {
1566 case 1:
1567 nn->client_tracking_ops = &nfsd4_cld_tracking_ops;
1568 break;
1569 case 2:
1570 nn->client_tracking_ops = &nfsd4_cld_tracking_ops_v2;
1571 break;
1572 default:
1573 break;
1574 }
1575 }
1576out_free:
1577 free_cld_upcall(cup);
1578out_err:
1579 if (ret)
1580 dprintk("%s: Unable to get version from userspace: %d\n",
1581 __func__, ret);
1582 return ret;
1583}
1584
1585static int
1586nfsd4_cld_tracking_init(struct net *net)
1587{
1588 int status;
1589 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1590 bool running;
1591 int retries = 10;
1592 struct crypto_shash *tfm;
1593
1594 status = nfs4_cld_state_init(net);
1595 if (status)
1596 return status;
1597
1598 status = __nfsd4_init_cld_pipe(net);
1599 if (status)
1600 goto err_shutdown;
1601
1602 /*
1603 * rpc pipe upcalls take 30 seconds to time out, so we don't want to
1604 * queue an upcall unless we know that nfsdcld is running (because we
1605 * want this to fail fast so that nfsd4_client_tracking_init() can try
1606 * the next client tracking method). nfsdcld should already be running
1607 * before nfsd is started, so the wait here is for nfsdcld to open the
1608 * pipefs file we just created.
1609 */
1610 while (!(running = cld_running(nn)) && retries--)
1611 msleep(100);
1612
1613 if (!running) {
1614 status = -ETIMEDOUT;
1615 goto err_remove;
1616 }
1617 tfm = crypto_alloc_shash("sha256", 0, 0);
1618 if (IS_ERR(tfm)) {
1619 status = PTR_ERR(tfm);
1620 goto err_remove;
1621 }
1622 nn->cld_net->cn_tfm = tfm;
1623
1624 status = nfsd4_cld_get_version(nn);
1625 if (status == -EOPNOTSUPP)
1626 pr_warn("NFSD: nfsdcld GetVersion upcall failed. Please upgrade nfsdcld.\n");
1627
1628 status = nfsd4_cld_grace_start(nn);
1629 if (status) {
1630 if (status == -EOPNOTSUPP)
1631 pr_warn("NFSD: nfsdcld GraceStart upcall failed. Please upgrade nfsdcld.\n");
1632 nfs4_release_reclaim(nn);
1633 goto err_remove;
1634 } else
1635 printk("NFSD: Using nfsdcld client tracking operations.\n");
1636 return 0;
1637
1638err_remove:
1639 nfsd4_remove_cld_pipe(net);
1640err_shutdown:
1641 nfs4_cld_state_shutdown(net);
1642 return status;
1643}
1644
1645static void
1646nfsd4_cld_tracking_exit(struct net *net)
1647{
1648 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1649
1650 nfs4_release_reclaim(nn);
1651 nfsd4_remove_cld_pipe(net);
1652 nfs4_cld_state_shutdown(net);
1653}
1654
1655/* For older nfsdcld's */
1656static const struct nfsd4_client_tracking_ops nfsd4_cld_tracking_ops_v0 = {
1657 .init = nfsd4_init_cld_pipe,
1658 .exit = nfsd4_remove_cld_pipe,
1659 .create = nfsd4_cld_create,
1660 .remove = nfsd4_cld_remove,
1661 .check = nfsd4_cld_check_v0,
1662 .grace_done = nfsd4_cld_grace_done_v0,
1663 .version = 1,
1664 .msglen = sizeof(struct cld_msg),
1665};
1666
1667/* For newer nfsdcld's */
1668static const struct nfsd4_client_tracking_ops nfsd4_cld_tracking_ops = {
1669 .init = nfsd4_cld_tracking_init,
1670 .exit = nfsd4_cld_tracking_exit,
1671 .create = nfsd4_cld_create,
1672 .remove = nfsd4_cld_remove,
1673 .check = nfsd4_cld_check,
1674 .grace_done = nfsd4_cld_grace_done,
1675 .version = 1,
1676 .msglen = sizeof(struct cld_msg),
1677};
1678
1679/* v2 create/check ops include the principal, if available */
1680static const struct nfsd4_client_tracking_ops nfsd4_cld_tracking_ops_v2 = {
1681 .init = nfsd4_cld_tracking_init,
1682 .exit = nfsd4_cld_tracking_exit,
1683 .create = nfsd4_cld_create_v2,
1684 .remove = nfsd4_cld_remove,
1685 .check = nfsd4_cld_check_v2,
1686 .grace_done = nfsd4_cld_grace_done,
1687 .version = 2,
1688 .msglen = sizeof(struct cld_msg_v2),
1689};
1690
1691/* upcall via usermodehelper */
1692static char cltrack_prog[PATH_MAX] = "/sbin/nfsdcltrack";
1693module_param_string(cltrack_prog, cltrack_prog, sizeof(cltrack_prog),
1694 S_IRUGO|S_IWUSR);
1695MODULE_PARM_DESC(cltrack_prog, "Path to the nfsdcltrack upcall program");
1696
1697static bool cltrack_legacy_disable;
1698module_param(cltrack_legacy_disable, bool, S_IRUGO|S_IWUSR);
1699MODULE_PARM_DESC(cltrack_legacy_disable,
1700 "Disable legacy recoverydir conversion. Default: false");
1701
1702#define LEGACY_TOPDIR_ENV_PREFIX "NFSDCLTRACK_LEGACY_TOPDIR="
1703#define LEGACY_RECDIR_ENV_PREFIX "NFSDCLTRACK_LEGACY_RECDIR="
1704#define HAS_SESSION_ENV_PREFIX "NFSDCLTRACK_CLIENT_HAS_SESSION="
1705#define GRACE_START_ENV_PREFIX "NFSDCLTRACK_GRACE_START="
1706
1707static char *
1708nfsd4_cltrack_legacy_topdir(void)
1709{
1710 int copied;
1711 size_t len;
1712 char *result;
1713
1714 if (cltrack_legacy_disable)
1715 return NULL;
1716
1717 len = strlen(LEGACY_TOPDIR_ENV_PREFIX) +
1718 strlen(nfs4_recoverydir()) + 1;
1719
1720 result = kmalloc(len, GFP_KERNEL);
1721 if (!result)
1722 return result;
1723
1724 copied = snprintf(result, len, LEGACY_TOPDIR_ENV_PREFIX "%s",
1725 nfs4_recoverydir());
1726 if (copied >= len) {
1727 /* just return nothing if output was truncated */
1728 kfree(result);
1729 return NULL;
1730 }
1731
1732 return result;
1733}
1734
1735static char *
1736nfsd4_cltrack_legacy_recdir(const struct xdr_netobj *name)
1737{
1738 int copied;
1739 size_t len;
1740 char *result;
1741
1742 if (cltrack_legacy_disable)
1743 return NULL;
1744
1745 /* +1 is for '/' between "topdir" and "recdir" */
1746 len = strlen(LEGACY_RECDIR_ENV_PREFIX) +
1747 strlen(nfs4_recoverydir()) + 1 + HEXDIR_LEN;
1748
1749 result = kmalloc(len, GFP_KERNEL);
1750 if (!result)
1751 return result;
1752
1753 copied = snprintf(result, len, LEGACY_RECDIR_ENV_PREFIX "%s/",
1754 nfs4_recoverydir());
1755 if (copied > (len - HEXDIR_LEN)) {
1756 /* just return nothing if output will be truncated */
1757 kfree(result);
1758 return NULL;
1759 }
1760
1761 copied = nfs4_make_rec_clidname(result + copied, name);
1762 if (copied) {
1763 kfree(result);
1764 return NULL;
1765 }
1766
1767 return result;
1768}
1769
1770static char *
1771nfsd4_cltrack_client_has_session(struct nfs4_client *clp)
1772{
1773 int copied;
1774 size_t len;
1775 char *result;
1776
1777 /* prefix + Y/N character + terminating NULL */
1778 len = strlen(HAS_SESSION_ENV_PREFIX) + 1 + 1;
1779
1780 result = kmalloc(len, GFP_KERNEL);
1781 if (!result)
1782 return result;
1783
1784 copied = snprintf(result, len, HAS_SESSION_ENV_PREFIX "%c",
1785 clp->cl_minorversion ? 'Y' : 'N');
1786 if (copied >= len) {
1787 /* just return nothing if output was truncated */
1788 kfree(result);
1789 return NULL;
1790 }
1791
1792 return result;
1793}
1794
1795static char *
1796nfsd4_cltrack_grace_start(time64_t grace_start)
1797{
1798 int copied;
1799 size_t len;
1800 char *result;
1801
1802 /* prefix + max width of int64_t string + terminating NULL */
1803 len = strlen(GRACE_START_ENV_PREFIX) + 22 + 1;
1804
1805 result = kmalloc(len, GFP_KERNEL);
1806 if (!result)
1807 return result;
1808
1809 copied = snprintf(result, len, GRACE_START_ENV_PREFIX "%lld",
1810 grace_start);
1811 if (copied >= len) {
1812 /* just return nothing if output was truncated */
1813 kfree(result);
1814 return NULL;
1815 }
1816
1817 return result;
1818}
1819
1820static int
1821nfsd4_umh_cltrack_upcall(char *cmd, char *arg, char *env0, char *env1)
1822{
1823 char *envp[3];
1824 char *argv[4];
1825 int ret;
1826
1827 if (unlikely(!cltrack_prog[0])) {
1828 dprintk("%s: cltrack_prog is disabled\n", __func__);
1829 return -EACCES;
1830 }
1831
1832 dprintk("%s: cmd: %s\n", __func__, cmd);
1833 dprintk("%s: arg: %s\n", __func__, arg ? arg : "(null)");
1834 dprintk("%s: env0: %s\n", __func__, env0 ? env0 : "(null)");
1835 dprintk("%s: env1: %s\n", __func__, env1 ? env1 : "(null)");
1836
1837 envp[0] = env0;
1838 envp[1] = env1;
1839 envp[2] = NULL;
1840
1841 argv[0] = (char *)cltrack_prog;
1842 argv[1] = cmd;
1843 argv[2] = arg;
1844 argv[3] = NULL;
1845
1846 ret = call_usermodehelper(argv[0], argv, envp, UMH_WAIT_PROC);
1847 /*
1848 * Disable the upcall mechanism if we're getting an ENOENT or EACCES
1849 * error. The admin can re-enable it on the fly by using sysfs
1850 * once the problem has been fixed.
1851 */
1852 if (ret == -ENOENT || ret == -EACCES) {
1853 dprintk("NFSD: %s was not found or isn't executable (%d). "
1854 "Setting cltrack_prog to blank string!",
1855 cltrack_prog, ret);
1856 cltrack_prog[0] = '\0';
1857 }
1858 dprintk("%s: %s return value: %d\n", __func__, cltrack_prog, ret);
1859
1860 return ret;
1861}
1862
1863static char *
1864bin_to_hex_dup(const unsigned char *src, int srclen)
1865{
1866 int i;
1867 char *buf, *hex;
1868
1869 /* +1 for terminating NULL */
1870 buf = kmalloc((srclen * 2) + 1, GFP_KERNEL);
1871 if (!buf)
1872 return buf;
1873
1874 hex = buf;
1875 for (i = 0; i < srclen; i++) {
1876 sprintf(hex, "%2.2x", *src++);
1877 hex += 2;
1878 }
1879 return buf;
1880}
1881
1882static int
1883nfsd4_umh_cltrack_init(struct net *net)
1884{
1885 int ret;
1886 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1887 char *grace_start = nfsd4_cltrack_grace_start(nn->boot_time);
1888
1889 /* XXX: The usermode helper s not working in container yet. */
1890 if (net != &init_net) {
1891 pr_warn("NFSD: attempt to initialize umh client tracking in a container ignored.\n");
1892 kfree(grace_start);
1893 return -EINVAL;
1894 }
1895
1896 ret = nfsd4_umh_cltrack_upcall("init", NULL, grace_start, NULL);
1897 kfree(grace_start);
1898 if (!ret)
1899 printk("NFSD: Using UMH upcall client tracking operations.\n");
1900 return ret;
1901}
1902
1903static void
1904nfsd4_cltrack_upcall_lock(struct nfs4_client *clp)
1905{
1906 wait_on_bit_lock(&clp->cl_flags, NFSD4_CLIENT_UPCALL_LOCK,
1907 TASK_UNINTERRUPTIBLE);
1908}
1909
1910static void
1911nfsd4_cltrack_upcall_unlock(struct nfs4_client *clp)
1912{
1913 smp_mb__before_atomic();
1914 clear_bit(NFSD4_CLIENT_UPCALL_LOCK, &clp->cl_flags);
1915 smp_mb__after_atomic();
1916 wake_up_bit(&clp->cl_flags, NFSD4_CLIENT_UPCALL_LOCK);
1917}
1918
1919static void
1920nfsd4_umh_cltrack_create(struct nfs4_client *clp)
1921{
1922 char *hexid, *has_session, *grace_start;
1923 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
1924
1925 /*
1926 * With v4.0 clients, there's little difference in outcome between a
1927 * create and check operation, and we can end up calling into this
1928 * function multiple times per client (once for each openowner). So,
1929 * for v4.0 clients skip upcalling once the client has been recorded
1930 * on stable storage.
1931 *
1932 * For v4.1+ clients, the outcome of the two operations is different,
1933 * so we must ensure that we upcall for the create operation. v4.1+
1934 * clients call this on RECLAIM_COMPLETE though, so we should only end
1935 * up doing a single create upcall per client.
1936 */
1937 if (clp->cl_minorversion == 0 &&
1938 test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
1939 return;
1940
1941 hexid = bin_to_hex_dup(clp->cl_name.data, clp->cl_name.len);
1942 if (!hexid) {
1943 dprintk("%s: can't allocate memory for upcall!\n", __func__);
1944 return;
1945 }
1946
1947 has_session = nfsd4_cltrack_client_has_session(clp);
1948 grace_start = nfsd4_cltrack_grace_start(nn->boot_time);
1949
1950 nfsd4_cltrack_upcall_lock(clp);
1951 if (!nfsd4_umh_cltrack_upcall("create", hexid, has_session, grace_start))
1952 set_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
1953 nfsd4_cltrack_upcall_unlock(clp);
1954
1955 kfree(has_session);
1956 kfree(grace_start);
1957 kfree(hexid);
1958}
1959
1960static void
1961nfsd4_umh_cltrack_remove(struct nfs4_client *clp)
1962{
1963 char *hexid;
1964
1965 if (!test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
1966 return;
1967
1968 hexid = bin_to_hex_dup(clp->cl_name.data, clp->cl_name.len);
1969 if (!hexid) {
1970 dprintk("%s: can't allocate memory for upcall!\n", __func__);
1971 return;
1972 }
1973
1974 nfsd4_cltrack_upcall_lock(clp);
1975 if (test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags) &&
1976 nfsd4_umh_cltrack_upcall("remove", hexid, NULL, NULL) == 0)
1977 clear_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
1978 nfsd4_cltrack_upcall_unlock(clp);
1979
1980 kfree(hexid);
1981}
1982
1983static int
1984nfsd4_umh_cltrack_check(struct nfs4_client *clp)
1985{
1986 int ret;
1987 char *hexid, *has_session, *legacy;
1988
1989 if (test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
1990 return 0;
1991
1992 hexid = bin_to_hex_dup(clp->cl_name.data, clp->cl_name.len);
1993 if (!hexid) {
1994 dprintk("%s: can't allocate memory for upcall!\n", __func__);
1995 return -ENOMEM;
1996 }
1997
1998 has_session = nfsd4_cltrack_client_has_session(clp);
1999 legacy = nfsd4_cltrack_legacy_recdir(&clp->cl_name);
2000
2001 nfsd4_cltrack_upcall_lock(clp);
2002 if (test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags)) {
2003 ret = 0;
2004 } else {
2005 ret = nfsd4_umh_cltrack_upcall("check", hexid, has_session, legacy);
2006 if (ret == 0)
2007 set_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
2008 }
2009 nfsd4_cltrack_upcall_unlock(clp);
2010 kfree(has_session);
2011 kfree(legacy);
2012 kfree(hexid);
2013
2014 return ret;
2015}
2016
2017static void
2018nfsd4_umh_cltrack_grace_done(struct nfsd_net *nn)
2019{
2020 char *legacy;
2021 char timestr[22]; /* FIXME: better way to determine max size? */
2022
2023 sprintf(timestr, "%lld", nn->boot_time);
2024 legacy = nfsd4_cltrack_legacy_topdir();
2025 nfsd4_umh_cltrack_upcall("gracedone", timestr, legacy, NULL);
2026 kfree(legacy);
2027}
2028
2029static const struct nfsd4_client_tracking_ops nfsd4_umh_tracking_ops = {
2030 .init = nfsd4_umh_cltrack_init,
2031 .exit = NULL,
2032 .create = nfsd4_umh_cltrack_create,
2033 .remove = nfsd4_umh_cltrack_remove,
2034 .check = nfsd4_umh_cltrack_check,
2035 .grace_done = nfsd4_umh_cltrack_grace_done,
2036 .version = 1,
2037 .msglen = 0,
2038};
2039
2040int
2041nfsd4_client_tracking_init(struct net *net)
2042{
2043 int status;
2044 struct path path;
2045 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
2046
2047 /* just run the init if it the method is already decided */
2048 if (nn->client_tracking_ops)
2049 goto do_init;
2050
2051 /* First, try to use nfsdcld */
2052 nn->client_tracking_ops = &nfsd4_cld_tracking_ops;
2053 status = nn->client_tracking_ops->init(net);
2054 if (!status)
2055 return status;
2056 if (status != -ETIMEDOUT) {
2057 nn->client_tracking_ops = &nfsd4_cld_tracking_ops_v0;
2058 status = nn->client_tracking_ops->init(net);
2059 if (!status)
2060 return status;
2061 }
2062
2063 /*
2064 * Next, try the UMH upcall.
2065 */
2066 nn->client_tracking_ops = &nfsd4_umh_tracking_ops;
2067 status = nn->client_tracking_ops->init(net);
2068 if (!status)
2069 return status;
2070
2071 /*
2072 * Finally, See if the recoverydir exists and is a directory.
2073 * If it is, then use the legacy ops.
2074 */
2075 nn->client_tracking_ops = &nfsd4_legacy_tracking_ops;
2076 status = kern_path(nfs4_recoverydir(), LOOKUP_FOLLOW, &path);
2077 if (!status) {
2078 status = d_is_dir(path.dentry);
2079 path_put(&path);
2080 if (!status) {
2081 status = -EINVAL;
2082 goto out;
2083 }
2084 }
2085
2086do_init:
2087 status = nn->client_tracking_ops->init(net);
2088out:
2089 if (status) {
2090 printk(KERN_WARNING "NFSD: Unable to initialize client "
2091 "recovery tracking! (%d)\n", status);
2092 nn->client_tracking_ops = NULL;
2093 }
2094 return status;
2095}
2096
2097void
2098nfsd4_client_tracking_exit(struct net *net)
2099{
2100 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
2101
2102 if (nn->client_tracking_ops) {
2103 if (nn->client_tracking_ops->exit)
2104 nn->client_tracking_ops->exit(net);
2105 nn->client_tracking_ops = NULL;
2106 }
2107}
2108
2109void
2110nfsd4_client_record_create(struct nfs4_client *clp)
2111{
2112 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2113
2114 if (nn->client_tracking_ops)
2115 nn->client_tracking_ops->create(clp);
2116}
2117
2118void
2119nfsd4_client_record_remove(struct nfs4_client *clp)
2120{
2121 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2122
2123 if (nn->client_tracking_ops)
2124 nn->client_tracking_ops->remove(clp);
2125}
2126
2127int
2128nfsd4_client_record_check(struct nfs4_client *clp)
2129{
2130 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
2131
2132 if (nn->client_tracking_ops)
2133 return nn->client_tracking_ops->check(clp);
2134
2135 return -EOPNOTSUPP;
2136}
2137
2138void
2139nfsd4_record_grace_done(struct nfsd_net *nn)
2140{
2141 if (nn->client_tracking_ops)
2142 nn->client_tracking_ops->grace_done(nn);
2143}
2144
2145static int
2146rpc_pipefs_event(struct notifier_block *nb, unsigned long event, void *ptr)
2147{
2148 struct super_block *sb = ptr;
2149 struct net *net = sb->s_fs_info;
2150 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
2151 struct cld_net *cn = nn->cld_net;
2152 struct dentry *dentry;
2153 int ret = 0;
2154
2155 if (!try_module_get(THIS_MODULE))
2156 return 0;
2157
2158 if (!cn) {
2159 module_put(THIS_MODULE);
2160 return 0;
2161 }
2162
2163 switch (event) {
2164 case RPC_PIPEFS_MOUNT:
2165 dentry = nfsd4_cld_register_sb(sb, cn->cn_pipe);
2166 if (IS_ERR(dentry)) {
2167 ret = PTR_ERR(dentry);
2168 break;
2169 }
2170 cn->cn_pipe->dentry = dentry;
2171 break;
2172 case RPC_PIPEFS_UMOUNT:
2173 if (cn->cn_pipe->dentry)
2174 nfsd4_cld_unregister_sb(cn->cn_pipe);
2175 break;
2176 default:
2177 ret = -ENOTSUPP;
2178 break;
2179 }
2180 module_put(THIS_MODULE);
2181 return ret;
2182}
2183
2184static struct notifier_block nfsd4_cld_block = {
2185 .notifier_call = rpc_pipefs_event,
2186};
2187
2188int
2189register_cld_notifier(void)
2190{
2191 WARN_ON(!nfsd_net_id);
2192 return rpc_pipefs_notifier_register(&nfsd4_cld_block);
2193}
2194
2195void
2196unregister_cld_notifier(void)
2197{
2198 rpc_pipefs_notifier_unregister(&nfsd4_cld_block);
2199}