blob: 3048c012d4bcf0c6695d6dc725646ab73ffc2302 [file] [log] [blame]
NeilBrowna55370a2005-06-23 22:03:52 -07001/*
NeilBrowna55370a2005-06-23 22:03:52 -07002* Copyright (c) 2004 The Regents of the University of Michigan.
Jeff Laytonf3f80142012-03-21 09:52:07 -04003* Copyright (c) 2012 Jeff Layton <jlayton@redhat.com>
NeilBrowna55370a2005-06-23 22:03:52 -07004* 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
NeilBrown190e4fb2005-06-23 22:04:25 -070035#include <linux/file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090036#include <linux/slab.h>
NeilBrown190e4fb2005-06-23 22:04:25 -070037#include <linux/namei.h>
NeilBrowna55370a2005-06-23 22:03:52 -070038#include <linux/crypto.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040039#include <linux/sched.h>
Jeff Laytonf3f80142012-03-21 09:52:07 -040040#include <linux/fs.h>
Jeff Layton813fd322012-03-21 09:52:08 -040041#include <linux/module.h>
Jeff Laytonf3f80142012-03-21 09:52:07 -040042#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>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020046
47#include "nfsd.h"
48#include "state.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050049#include "vfs.h"
Jeff Laytonf3f80142012-03-21 09:52:07 -040050#include "netns.h"
NeilBrowna55370a2005-06-23 22:03:52 -070051
52#define NFSDDBG_FACILITY NFSDDBG_PROC
53
Jeff Layton2a4317c2012-03-21 16:42:43 -040054/* 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 net *, time_t);
62};
63
NeilBrown190e4fb2005-06-23 22:04:25 -070064/* Globals */
Christoph Hellwige970a572010-03-22 17:32:14 +010065static struct file *rec_file;
J. Bruce Fields48483bf2011-08-26 20:40:28 -040066static char user_recovery_dirname[PATH_MAX] = "/var/lib/nfs/v4recovery";
Jeff Layton2a4317c2012-03-21 16:42:43 -040067static struct nfsd4_client_tracking_ops *client_tracking_ops;
Jeff Layton0ce0c2b2012-11-12 15:00:55 -050068static bool in_grace;
NeilBrown190e4fb2005-06-23 22:04:25 -070069
David Howellsd84f4f92008-11-14 10:39:23 +110070static int
71nfs4_save_creds(const struct cred **original_creds)
NeilBrown190e4fb2005-06-23 22:04:25 -070072{
David Howellsd84f4f92008-11-14 10:39:23 +110073 struct cred *new;
74
75 new = prepare_creds();
76 if (!new)
77 return -ENOMEM;
78
79 new->fsuid = 0;
80 new->fsgid = 0;
81 *original_creds = override_creds(new);
82 put_cred(new);
83 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -070084}
85
86static void
David Howellsd84f4f92008-11-14 10:39:23 +110087nfs4_reset_creds(const struct cred *original)
NeilBrown190e4fb2005-06-23 22:04:25 -070088{
David Howellsd84f4f92008-11-14 10:39:23 +110089 revert_creds(original);
NeilBrown190e4fb2005-06-23 22:04:25 -070090}
91
NeilBrowna55370a2005-06-23 22:03:52 -070092static void
93md5_to_hex(char *out, char *md5)
94{
95 int i;
96
97 for (i=0; i<16; i++) {
98 unsigned char c = md5[i];
99
100 *out++ = '0' + ((c&0xf0)>>4) + (c>=0xa0)*('a'-'9'-1);
101 *out++ = '0' + (c&0x0f) + ((c&0x0f)>=0x0a)*('a'-'9'-1);
102 }
103 *out = '\0';
104}
105
Al Virob37ad282006-10-19 23:28:59 -0700106__be32
NeilBrowna55370a2005-06-23 22:03:52 -0700107nfs4_make_rec_clidname(char *dname, struct xdr_netobj *clname)
108{
109 struct xdr_netobj cksum;
Herbert Xu35058682006-08-24 19:10:20 +1000110 struct hash_desc desc;
Jens Axboe60c74f82007-10-22 19:43:30 +0200111 struct scatterlist sg;
J. Bruce Fields3e772462011-08-10 19:07:33 -0400112 __be32 status = nfserr_jukebox;
NeilBrowna55370a2005-06-23 22:03:52 -0700113
114 dprintk("NFSD: nfs4_make_rec_clidname for %.*s\n",
115 clname->len, clname->data);
Herbert Xu35058682006-08-24 19:10:20 +1000116 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
117 desc.tfm = crypto_alloc_hash("md5", 0, CRYPTO_ALG_ASYNC);
118 if (IS_ERR(desc.tfm))
119 goto out_no_tfm;
120 cksum.len = crypto_hash_digestsize(desc.tfm);
NeilBrowna55370a2005-06-23 22:03:52 -0700121 cksum.data = kmalloc(cksum.len, GFP_KERNEL);
122 if (cksum.data == NULL)
123 goto out;
NeilBrowna55370a2005-06-23 22:03:52 -0700124
Jens Axboe60c74f82007-10-22 19:43:30 +0200125 sg_init_one(&sg, clname->data, clname->len);
NeilBrowna55370a2005-06-23 22:03:52 -0700126
Jens Axboe60c74f82007-10-22 19:43:30 +0200127 if (crypto_hash_digest(&desc, &sg, sg.length, cksum.data))
Herbert Xu35058682006-08-24 19:10:20 +1000128 goto out;
NeilBrowna55370a2005-06-23 22:03:52 -0700129
130 md5_to_hex(dname, cksum.data);
131
NeilBrowna55370a2005-06-23 22:03:52 -0700132 status = nfs_ok;
133out:
Krishna Kumar2bd9e7b2008-10-20 11:47:09 +0530134 kfree(cksum.data);
Herbert Xu35058682006-08-24 19:10:20 +1000135 crypto_free_hash(desc.tfm);
136out_no_tfm:
NeilBrowna55370a2005-06-23 22:03:52 -0700137 return status;
138}
NeilBrown190e4fb2005-06-23 22:04:25 -0700139
Jeff Layton2a4317c2012-03-21 16:42:43 -0400140static void
141nfsd4_create_clid_dir(struct nfs4_client *clp)
NeilBrownc7b9a452005-06-23 22:04:30 -0700142{
David Howellsd84f4f92008-11-14 10:39:23 +1100143 const struct cred *original_cred;
NeilBrownc7b9a452005-06-23 22:04:30 -0700144 char *dname = clp->cl_recdir;
Christoph Hellwige970a572010-03-22 17:32:14 +0100145 struct dentry *dir, *dentry;
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500146 struct nfs4_client_reclaim *crp;
NeilBrownc7b9a452005-06-23 22:04:30 -0700147 int status;
148
149 dprintk("NFSD: nfsd4_create_clid_dir for \"%s\"\n", dname);
150
Jeff Laytona52d7262012-03-21 09:52:02 -0400151 if (test_and_set_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
J. Bruce Fields7a6ef8c2012-01-05 15:38:41 -0500152 return;
J. Bruce Fieldsb8548892012-01-02 17:49:12 -0500153 if (!rec_file)
J. Bruce Fields7a6ef8c2012-01-05 15:38:41 -0500154 return;
David Howellsd84f4f92008-11-14 10:39:23 +1100155 status = nfs4_save_creds(&original_cred);
156 if (status < 0)
J. Bruce Fields7a6ef8c2012-01-05 15:38:41 -0500157 return;
NeilBrownc7b9a452005-06-23 22:04:30 -0700158
Jan Kara4a55c102012-06-12 16:20:33 +0200159 status = mnt_want_write_file(rec_file);
160 if (status)
161 return;
162
Christoph Hellwige970a572010-03-22 17:32:14 +0100163 dir = rec_file->f_path.dentry;
NeilBrownc7b9a452005-06-23 22:04:30 -0700164 /* lock the parent */
Christoph Hellwige970a572010-03-22 17:32:14 +0100165 mutex_lock(&dir->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700166
Christoph Hellwige970a572010-03-22 17:32:14 +0100167 dentry = lookup_one_len(dname, dir, HEXDIR_LEN-1);
NeilBrownc7b9a452005-06-23 22:04:30 -0700168 if (IS_ERR(dentry)) {
169 status = PTR_ERR(dentry);
170 goto out_unlock;
171 }
Boaz Harrosh6577aac2011-08-12 17:30:12 -0700172 if (dentry->d_inode)
J. Bruce Fieldsaec39682012-01-02 17:30:05 -0500173 /*
174 * In the 4.1 case, where we're called from
175 * reclaim_complete(), records from the previous reboot
176 * may still be left, so this is OK.
177 *
178 * In the 4.0 case, we should never get here; but we may
179 * as well be forgiving and just succeed silently.
180 */
NeilBrownc7b9a452005-06-23 22:04:30 -0700181 goto out_put;
Christoph Hellwige970a572010-03-22 17:32:14 +0100182 status = vfs_mkdir(dir->d_inode, dentry, S_IRWXU);
NeilBrownc7b9a452005-06-23 22:04:30 -0700183out_put:
184 dput(dentry);
185out_unlock:
Christoph Hellwige970a572010-03-22 17:32:14 +0100186 mutex_unlock(&dir->d_inode->i_mutex);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500187 if (status == 0) {
188 if (in_grace) {
189 crp = nfs4_client_to_reclaim(clp->cl_recdir);
190 if (crp)
191 crp->cr_clp = clp;
192 }
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100193 vfs_fsync(rec_file, 0);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500194 } else {
Boaz Harrosh6577aac2011-08-12 17:30:12 -0700195 printk(KERN_ERR "NFSD: failed to write recovery record"
196 " (err %d); please check that %s exists"
197 " and is writeable", status,
198 user_recovery_dirname);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500199 }
Jan Kara4a55c102012-06-12 16:20:33 +0200200 mnt_drop_write_file(rec_file);
David Howellsd84f4f92008-11-14 10:39:23 +1100201 nfs4_reset_creds(original_cred);
NeilBrownc7b9a452005-06-23 22:04:30 -0700202}
203
NeilBrown190e4fb2005-06-23 22:04:25 -0700204typedef int (recdir_func)(struct dentry *, struct dentry *);
205
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400206struct name_list {
207 char name[HEXDIR_LEN];
NeilBrown190e4fb2005-06-23 22:04:25 -0700208 struct list_head list;
209};
210
NeilBrown190e4fb2005-06-23 22:04:25 -0700211static int
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400212nfsd4_build_namelist(void *arg, const char *name, int namlen,
David Howellsafefdbb2006-10-03 01:13:46 -0700213 loff_t offset, u64 ino, unsigned int d_type)
NeilBrown190e4fb2005-06-23 22:04:25 -0700214{
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400215 struct list_head *names = arg;
216 struct name_list *entry;
NeilBrown190e4fb2005-06-23 22:04:25 -0700217
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400218 if (namlen != HEXDIR_LEN - 1)
Al Virob37ad282006-10-19 23:28:59 -0700219 return 0;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400220 entry = kmalloc(sizeof(struct name_list), GFP_KERNEL);
221 if (entry == NULL)
NeilBrown190e4fb2005-06-23 22:04:25 -0700222 return -ENOMEM;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400223 memcpy(entry->name, name, HEXDIR_LEN - 1);
224 entry->name[HEXDIR_LEN - 1] = '\0';
225 list_add(&entry->list, names);
NeilBrown190e4fb2005-06-23 22:04:25 -0700226 return 0;
227}
228
229static int
Al Viro5b4b2992011-07-07 18:43:21 -0400230nfsd4_list_rec_dir(recdir_func *f)
NeilBrown190e4fb2005-06-23 22:04:25 -0700231{
David Howellsd84f4f92008-11-14 10:39:23 +1100232 const struct cred *original_cred;
Al Viro5b4b2992011-07-07 18:43:21 -0400233 struct dentry *dir = rec_file->f_path.dentry;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400234 LIST_HEAD(names);
NeilBrown190e4fb2005-06-23 22:04:25 -0700235 int status;
236
David Howellsd84f4f92008-11-14 10:39:23 +1100237 status = nfs4_save_creds(&original_cred);
238 if (status < 0)
239 return status;
NeilBrown190e4fb2005-06-23 22:04:25 -0700240
Al Viro5b4b2992011-07-07 18:43:21 -0400241 status = vfs_llseek(rec_file, 0, SEEK_SET);
242 if (status < 0) {
243 nfs4_reset_creds(original_cred);
244 return status;
245 }
246
247 status = vfs_readdir(rec_file, nfsd4_build_namelist, &names);
J. Bruce Fields8daed1e2009-05-11 16:10:19 -0400248 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT);
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400249 while (!list_empty(&names)) {
Al Viro5b4b2992011-07-07 18:43:21 -0400250 struct name_list *entry;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400251 entry = list_entry(names.next, struct name_list, list);
Al Viro5b4b2992011-07-07 18:43:21 -0400252 if (!status) {
253 struct dentry *dentry;
254 dentry = lookup_one_len(entry->name, dir, HEXDIR_LEN-1);
255 if (IS_ERR(dentry)) {
256 status = PTR_ERR(dentry);
257 break;
258 }
259 status = f(dir, dentry);
260 dput(dentry);
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400261 }
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400262 list_del(&entry->list);
263 kfree(entry);
NeilBrown190e4fb2005-06-23 22:04:25 -0700264 }
David Woodhouse2f9092e2009-04-20 23:18:37 +0100265 mutex_unlock(&dir->d_inode->i_mutex);
David Howellsd84f4f92008-11-14 10:39:23 +1100266 nfs4_reset_creds(original_cred);
NeilBrown190e4fb2005-06-23 22:04:25 -0700267 return status;
268}
269
270static int
NeilBrownc7b9a452005-06-23 22:04:30 -0700271nfsd4_unlink_clid_dir(char *name, int namlen)
272{
Christoph Hellwige970a572010-03-22 17:32:14 +0100273 struct dentry *dir, *dentry;
NeilBrownc7b9a452005-06-23 22:04:30 -0700274 int status;
275
276 dprintk("NFSD: nfsd4_unlink_clid_dir. name %.*s\n", namlen, name);
277
Christoph Hellwige970a572010-03-22 17:32:14 +0100278 dir = rec_file->f_path.dentry;
279 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT);
280 dentry = lookup_one_len(name, dir, namlen);
NeilBrownc7b9a452005-06-23 22:04:30 -0700281 if (IS_ERR(dentry)) {
282 status = PTR_ERR(dentry);
David Woodhouse2f9092e2009-04-20 23:18:37 +0100283 goto out_unlock;
NeilBrownc7b9a452005-06-23 22:04:30 -0700284 }
285 status = -ENOENT;
286 if (!dentry->d_inode)
287 goto out;
Christoph Hellwige970a572010-03-22 17:32:14 +0100288 status = vfs_rmdir(dir->d_inode, dentry);
NeilBrownc7b9a452005-06-23 22:04:30 -0700289out:
290 dput(dentry);
David Woodhouse2f9092e2009-04-20 23:18:37 +0100291out_unlock:
Christoph Hellwige970a572010-03-22 17:32:14 +0100292 mutex_unlock(&dir->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700293 return status;
294}
295
Jeff Layton2a4317c2012-03-21 16:42:43 -0400296static void
NeilBrownc7b9a452005-06-23 22:04:30 -0700297nfsd4_remove_clid_dir(struct nfs4_client *clp)
298{
David Howellsd84f4f92008-11-14 10:39:23 +1100299 const struct cred *original_cred;
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500300 struct nfs4_client_reclaim *crp;
NeilBrownc7b9a452005-06-23 22:04:30 -0700301 int status;
302
Jeff Laytona52d7262012-03-21 09:52:02 -0400303 if (!rec_file || !test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
NeilBrownc7b9a452005-06-23 22:04:30 -0700304 return;
305
Al Viroa561be72011-11-23 11:57:51 -0500306 status = mnt_want_write_file(rec_file);
Dave Hansen06227532008-02-15 14:37:34 -0800307 if (status)
308 goto out;
Jeff Laytona52d7262012-03-21 09:52:02 -0400309 clear_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
David Howellsd84f4f92008-11-14 10:39:23 +1100310
311 status = nfs4_save_creds(&original_cred);
312 if (status < 0)
Jeff Layton698d8d82012-11-09 15:31:53 -0500313 goto out_drop_write;
David Howellsd84f4f92008-11-14 10:39:23 +1100314
NeilBrownc7b9a452005-06-23 22:04:30 -0700315 status = nfsd4_unlink_clid_dir(clp->cl_recdir, HEXDIR_LEN-1);
David Howellsd84f4f92008-11-14 10:39:23 +1100316 nfs4_reset_creds(original_cred);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500317 if (status == 0) {
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100318 vfs_fsync(rec_file, 0);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500319 if (in_grace) {
320 /* remove reclaim record */
321 crp = nfsd4_find_reclaim_client(clp->cl_recdir);
322 if (crp)
323 nfs4_remove_reclaim_record(crp);
324 }
325 }
Jeff Layton698d8d82012-11-09 15:31:53 -0500326out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -0500327 mnt_drop_write_file(rec_file);
Dave Hansen06227532008-02-15 14:37:34 -0800328out:
NeilBrownc7b9a452005-06-23 22:04:30 -0700329 if (status)
330 printk("NFSD: Failed to remove expired client state directory"
331 " %.*s\n", HEXDIR_LEN, clp->cl_recdir);
NeilBrownc7b9a452005-06-23 22:04:30 -0700332}
333
334static int
335purge_old(struct dentry *parent, struct dentry *child)
336{
337 int status;
338
Jeff Laytona0af7102012-11-09 15:06:38 -0500339 if (nfs4_has_reclaimed_state(child->d_name.name))
Al Virob37ad282006-10-19 23:28:59 -0700340 return 0;
NeilBrownc7b9a452005-06-23 22:04:30 -0700341
David Woodhouse2f9092e2009-04-20 23:18:37 +0100342 status = vfs_rmdir(parent->d_inode, child);
NeilBrownc7b9a452005-06-23 22:04:30 -0700343 if (status)
344 printk("failed to remove client recovery directory %s\n",
345 child->d_name.name);
346 /* Keep trying, success or failure: */
Al Virob37ad282006-10-19 23:28:59 -0700347 return 0;
NeilBrownc7b9a452005-06-23 22:04:30 -0700348}
349
Jeff Layton2a4317c2012-03-21 16:42:43 -0400350static void
351nfsd4_recdir_purge_old(struct net *net, time_t boot_time)
352{
NeilBrownc7b9a452005-06-23 22:04:30 -0700353 int status;
354
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500355 in_grace = false;
Christoph Hellwige970a572010-03-22 17:32:14 +0100356 if (!rec_file)
NeilBrownc7b9a452005-06-23 22:04:30 -0700357 return;
Al Viroa561be72011-11-23 11:57:51 -0500358 status = mnt_want_write_file(rec_file);
Dave Hansen06227532008-02-15 14:37:34 -0800359 if (status)
360 goto out;
Al Viro5b4b2992011-07-07 18:43:21 -0400361 status = nfsd4_list_rec_dir(purge_old);
NeilBrownc7b9a452005-06-23 22:04:30 -0700362 if (status == 0)
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100363 vfs_fsync(rec_file, 0);
Al Viro2a79f172011-12-09 08:06:57 -0500364 mnt_drop_write_file(rec_file);
Dave Hansen06227532008-02-15 14:37:34 -0800365out:
NeilBrownc7b9a452005-06-23 22:04:30 -0700366 if (status)
367 printk("nfsd4: failed to purge old clients from recovery"
Christoph Hellwige970a572010-03-22 17:32:14 +0100368 " directory %s\n", rec_file->f_path.dentry->d_name.name);
NeilBrownc7b9a452005-06-23 22:04:30 -0700369}
370
371static int
NeilBrown190e4fb2005-06-23 22:04:25 -0700372load_recdir(struct dentry *parent, struct dentry *child)
373{
374 if (child->d_name.len != HEXDIR_LEN - 1) {
375 printk("nfsd4: illegal name %s in recovery directory\n",
376 child->d_name.name);
377 /* Keep trying; maybe the others are OK: */
Al Virob37ad282006-10-19 23:28:59 -0700378 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -0700379 }
380 nfs4_client_to_reclaim(child->d_name.name);
Al Virob37ad282006-10-19 23:28:59 -0700381 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -0700382}
383
Jeff Layton2a4317c2012-03-21 16:42:43 -0400384static int
NeilBrown190e4fb2005-06-23 22:04:25 -0700385nfsd4_recdir_load(void) {
386 int status;
387
Christoph Hellwige970a572010-03-22 17:32:14 +0100388 if (!rec_file)
389 return 0;
390
Al Viro5b4b2992011-07-07 18:43:21 -0400391 status = nfsd4_list_rec_dir(load_recdir);
NeilBrown190e4fb2005-06-23 22:04:25 -0700392 if (status)
393 printk("nfsd4: failed loading clients from recovery"
Christoph Hellwige970a572010-03-22 17:32:14 +0100394 " directory %s\n", rec_file->f_path.dentry->d_name.name);
NeilBrown190e4fb2005-06-23 22:04:25 -0700395 return status;
396}
397
398/*
399 * Hold reference to the recovery directory.
400 */
401
Jeff Layton2a4317c2012-03-21 16:42:43 -0400402static int
403nfsd4_init_recdir(void)
NeilBrown190e4fb2005-06-23 22:04:25 -0700404{
David Howellsd84f4f92008-11-14 10:39:23 +1100405 const struct cred *original_cred;
406 int status;
NeilBrown190e4fb2005-06-23 22:04:25 -0700407
408 printk("NFSD: Using %s as the NFSv4 state recovery directory\n",
J. Bruce Fields48483bf2011-08-26 20:40:28 -0400409 user_recovery_dirname);
NeilBrown190e4fb2005-06-23 22:04:25 -0700410
Christoph Hellwige970a572010-03-22 17:32:14 +0100411 BUG_ON(rec_file);
NeilBrown190e4fb2005-06-23 22:04:25 -0700412
David Howellsd84f4f92008-11-14 10:39:23 +1100413 status = nfs4_save_creds(&original_cred);
414 if (status < 0) {
415 printk("NFSD: Unable to change credentials to find recovery"
416 " directory: error %d\n",
417 status);
Jeff Layton2a4317c2012-03-21 16:42:43 -0400418 return status;
David Howellsd84f4f92008-11-14 10:39:23 +1100419 }
NeilBrown190e4fb2005-06-23 22:04:25 -0700420
J. Bruce Fields48483bf2011-08-26 20:40:28 -0400421 rec_file = filp_open(user_recovery_dirname, O_RDONLY | O_DIRECTORY, 0);
Christoph Hellwige970a572010-03-22 17:32:14 +0100422 if (IS_ERR(rec_file)) {
J. Bruce Fieldsc2642ab2006-01-18 17:43:29 -0800423 printk("NFSD: unable to find recovery directory %s\n",
J. Bruce Fields48483bf2011-08-26 20:40:28 -0400424 user_recovery_dirname);
Jeff Layton2a4317c2012-03-21 16:42:43 -0400425 status = PTR_ERR(rec_file);
Christoph Hellwige970a572010-03-22 17:32:14 +0100426 rec_file = NULL;
427 }
NeilBrown190e4fb2005-06-23 22:04:25 -0700428
David Howellsd84f4f92008-11-14 10:39:23 +1100429 nfs4_reset_creds(original_cred);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500430 if (!status)
431 in_grace = true;
Jeff Layton2a4317c2012-03-21 16:42:43 -0400432 return status;
NeilBrown190e4fb2005-06-23 22:04:25 -0700433}
434
Jeff Layton2a4317c2012-03-21 16:42:43 -0400435static int
436nfsd4_load_reboot_recovery_data(struct net *net)
437{
438 int status;
439
Jeff Laytoncc27e0d2012-03-21 09:52:09 -0400440 /* XXX: The legacy code won't work in a container */
441 if (net != &init_net) {
442 WARN(1, KERN_ERR "NFSD: attempt to initialize legacy client "
443 "tracking in a container!\n");
444 return -EINVAL;
445 }
446
Jeff Layton2a4317c2012-03-21 16:42:43 -0400447 nfs4_lock_state();
448 status = nfsd4_init_recdir();
449 if (!status)
450 status = nfsd4_recdir_load();
451 nfs4_unlock_state();
452 if (status)
453 printk(KERN_ERR "NFSD: Failure reading reboot recovery data\n");
454 return status;
455}
456
457static void
NeilBrown190e4fb2005-06-23 22:04:25 -0700458nfsd4_shutdown_recdir(void)
459{
Christoph Hellwige970a572010-03-22 17:32:14 +0100460 if (!rec_file)
NeilBrown190e4fb2005-06-23 22:04:25 -0700461 return;
Christoph Hellwige970a572010-03-22 17:32:14 +0100462 fput(rec_file);
463 rec_file = NULL;
NeilBrown190e4fb2005-06-23 22:04:25 -0700464}
J. Bruce Fields48483bf2011-08-26 20:40:28 -0400465
Jeff Layton2a4317c2012-03-21 16:42:43 -0400466static void
467nfsd4_legacy_tracking_exit(struct net *net)
468{
469 nfs4_release_reclaim();
470 nfsd4_shutdown_recdir();
471}
472
J. Bruce Fields48483bf2011-08-26 20:40:28 -0400473/*
474 * Change the NFSv4 recovery directory to recdir.
475 */
476int
477nfs4_reset_recoverydir(char *recdir)
478{
479 int status;
480 struct path path;
481
482 status = kern_path(recdir, LOOKUP_FOLLOW, &path);
483 if (status)
484 return status;
485 status = -ENOTDIR;
486 if (S_ISDIR(path.dentry->d_inode->i_mode)) {
487 strcpy(user_recovery_dirname, recdir);
488 status = 0;
489 }
490 path_put(&path);
491 return status;
492}
493
494char *
495nfs4_recoverydir(void)
496{
497 return user_recovery_dirname;
498}
Jeff Layton2a4317c2012-03-21 16:42:43 -0400499
500static int
501nfsd4_check_legacy_client(struct nfs4_client *clp)
502{
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500503 struct nfs4_client_reclaim *crp;
504
Jeff Layton2a4317c2012-03-21 16:42:43 -0400505 /* did we already find that this client is stable? */
506 if (test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
507 return 0;
508
509 /* look for it in the reclaim hashtable otherwise */
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500510 crp = nfsd4_find_reclaim_client(clp->cl_recdir);
511 if (crp) {
Jeff Layton2a4317c2012-03-21 16:42:43 -0400512 set_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500513 crp->cr_clp = clp;
Jeff Layton2a4317c2012-03-21 16:42:43 -0400514 return 0;
515 }
516
517 return -ENOENT;
518}
519
520static struct nfsd4_client_tracking_ops nfsd4_legacy_tracking_ops = {
521 .init = nfsd4_load_reboot_recovery_data,
522 .exit = nfsd4_legacy_tracking_exit,
523 .create = nfsd4_create_clid_dir,
524 .remove = nfsd4_remove_clid_dir,
525 .check = nfsd4_check_legacy_client,
526 .grace_done = nfsd4_recdir_purge_old,
527};
528
Jeff Laytonf3f80142012-03-21 09:52:07 -0400529/* Globals */
530#define NFSD_PIPE_DIR "nfsd"
531#define NFSD_CLD_PIPE "cld"
532
533/* per-net-ns structure for holding cld upcall info */
534struct cld_net {
535 struct rpc_pipe *cn_pipe;
536 spinlock_t cn_lock;
537 struct list_head cn_list;
538 unsigned int cn_xid;
539};
540
541struct cld_upcall {
542 struct list_head cu_list;
543 struct cld_net *cu_net;
544 struct task_struct *cu_task;
545 struct cld_msg cu_msg;
546};
547
548static int
549__cld_pipe_upcall(struct rpc_pipe *pipe, struct cld_msg *cmsg)
550{
551 int ret;
552 struct rpc_pipe_msg msg;
553
554 memset(&msg, 0, sizeof(msg));
555 msg.data = cmsg;
556 msg.len = sizeof(*cmsg);
557
558 /*
559 * Set task state before we queue the upcall. That prevents
560 * wake_up_process in the downcall from racing with schedule.
561 */
562 set_current_state(TASK_UNINTERRUPTIBLE);
563 ret = rpc_queue_upcall(pipe, &msg);
564 if (ret < 0) {
565 set_current_state(TASK_RUNNING);
566 goto out;
567 }
568
569 schedule();
570 set_current_state(TASK_RUNNING);
571
572 if (msg.errno < 0)
573 ret = msg.errno;
574out:
575 return ret;
576}
577
578static int
579cld_pipe_upcall(struct rpc_pipe *pipe, struct cld_msg *cmsg)
580{
581 int ret;
582
583 /*
584 * -EAGAIN occurs when pipe is closed and reopened while there are
585 * upcalls queued.
586 */
587 do {
588 ret = __cld_pipe_upcall(pipe, cmsg);
589 } while (ret == -EAGAIN);
590
591 return ret;
592}
593
594static ssize_t
595cld_pipe_downcall(struct file *filp, const char __user *src, size_t mlen)
596{
597 struct cld_upcall *tmp, *cup;
J. Bruce Fieldsbc1b5422012-04-25 16:58:05 -0400598 struct cld_msg __user *cmsg = (struct cld_msg __user *)src;
Jeff Laytonf3f80142012-03-21 09:52:07 -0400599 uint32_t xid;
600 struct nfsd_net *nn = net_generic(filp->f_dentry->d_sb->s_fs_info,
601 nfsd_net_id);
602 struct cld_net *cn = nn->cld_net;
603
604 if (mlen != sizeof(*cmsg)) {
Randy Dunlap8a7dc4b2012-04-30 12:25:31 -0700605 dprintk("%s: got %zu bytes, expected %zu\n", __func__, mlen,
Jeff Laytonf3f80142012-03-21 09:52:07 -0400606 sizeof(*cmsg));
607 return -EINVAL;
608 }
609
610 /* copy just the xid so we can try to find that */
611 if (copy_from_user(&xid, &cmsg->cm_xid, sizeof(xid)) != 0) {
612 dprintk("%s: error when copying xid from userspace", __func__);
613 return -EFAULT;
614 }
615
616 /* walk the list and find corresponding xid */
617 cup = NULL;
618 spin_lock(&cn->cn_lock);
619 list_for_each_entry(tmp, &cn->cn_list, cu_list) {
620 if (get_unaligned(&tmp->cu_msg.cm_xid) == xid) {
621 cup = tmp;
622 list_del_init(&cup->cu_list);
623 break;
624 }
625 }
626 spin_unlock(&cn->cn_lock);
627
628 /* couldn't find upcall? */
629 if (!cup) {
Jeff Layton21f72c92012-03-28 07:36:01 -0400630 dprintk("%s: couldn't find upcall -- xid=%u\n", __func__, xid);
Jeff Laytonf3f80142012-03-21 09:52:07 -0400631 return -EINVAL;
632 }
633
634 if (copy_from_user(&cup->cu_msg, src, mlen) != 0)
635 return -EFAULT;
636
637 wake_up_process(cup->cu_task);
638 return mlen;
639}
640
641static void
642cld_pipe_destroy_msg(struct rpc_pipe_msg *msg)
643{
644 struct cld_msg *cmsg = msg->data;
645 struct cld_upcall *cup = container_of(cmsg, struct cld_upcall,
646 cu_msg);
647
648 /* errno >= 0 means we got a downcall */
649 if (msg->errno >= 0)
650 return;
651
652 wake_up_process(cup->cu_task);
653}
654
655static const struct rpc_pipe_ops cld_upcall_ops = {
656 .upcall = rpc_pipe_generic_upcall,
657 .downcall = cld_pipe_downcall,
658 .destroy_msg = cld_pipe_destroy_msg,
659};
660
661static struct dentry *
662nfsd4_cld_register_sb(struct super_block *sb, struct rpc_pipe *pipe)
663{
664 struct dentry *dir, *dentry;
665
666 dir = rpc_d_lookup_sb(sb, NFSD_PIPE_DIR);
667 if (dir == NULL)
668 return ERR_PTR(-ENOENT);
669 dentry = rpc_mkpipe_dentry(dir, NFSD_CLD_PIPE, NULL, pipe);
670 dput(dir);
671 return dentry;
672}
673
674static void
675nfsd4_cld_unregister_sb(struct rpc_pipe *pipe)
676{
677 if (pipe->dentry)
678 rpc_unlink(pipe->dentry);
679}
680
681static struct dentry *
682nfsd4_cld_register_net(struct net *net, struct rpc_pipe *pipe)
683{
684 struct super_block *sb;
685 struct dentry *dentry;
686
687 sb = rpc_get_sb_net(net);
688 if (!sb)
689 return NULL;
690 dentry = nfsd4_cld_register_sb(sb, pipe);
691 rpc_put_sb_net(net);
692 return dentry;
693}
694
695static void
696nfsd4_cld_unregister_net(struct net *net, struct rpc_pipe *pipe)
697{
698 struct super_block *sb;
699
700 sb = rpc_get_sb_net(net);
701 if (sb) {
702 nfsd4_cld_unregister_sb(pipe);
703 rpc_put_sb_net(net);
704 }
705}
706
707/* Initialize rpc_pipefs pipe for communication with client tracking daemon */
708static int
709nfsd4_init_cld_pipe(struct net *net)
710{
711 int ret;
712 struct dentry *dentry;
713 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
714 struct cld_net *cn;
715
716 if (nn->cld_net)
717 return 0;
718
719 cn = kzalloc(sizeof(*cn), GFP_KERNEL);
720 if (!cn) {
721 ret = -ENOMEM;
722 goto err;
723 }
724
725 cn->cn_pipe = rpc_mkpipe_data(&cld_upcall_ops, RPC_PIPE_WAIT_FOR_OPEN);
726 if (IS_ERR(cn->cn_pipe)) {
727 ret = PTR_ERR(cn->cn_pipe);
728 goto err;
729 }
730 spin_lock_init(&cn->cn_lock);
731 INIT_LIST_HEAD(&cn->cn_list);
732
733 dentry = nfsd4_cld_register_net(net, cn->cn_pipe);
734 if (IS_ERR(dentry)) {
735 ret = PTR_ERR(dentry);
736 goto err_destroy_data;
737 }
738
739 cn->cn_pipe->dentry = dentry;
740 nn->cld_net = cn;
741 return 0;
742
743err_destroy_data:
744 rpc_destroy_pipe_data(cn->cn_pipe);
745err:
746 kfree(cn);
747 printk(KERN_ERR "NFSD: unable to create nfsdcld upcall pipe (%d)\n",
748 ret);
749 return ret;
750}
751
752static void
753nfsd4_remove_cld_pipe(struct net *net)
754{
755 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
756 struct cld_net *cn = nn->cld_net;
757
758 nfsd4_cld_unregister_net(net, cn->cn_pipe);
759 rpc_destroy_pipe_data(cn->cn_pipe);
760 kfree(nn->cld_net);
761 nn->cld_net = NULL;
762}
763
764static struct cld_upcall *
765alloc_cld_upcall(struct cld_net *cn)
766{
767 struct cld_upcall *new, *tmp;
768
769 new = kzalloc(sizeof(*new), GFP_KERNEL);
770 if (!new)
771 return new;
772
773 /* FIXME: hard cap on number in flight? */
774restart_search:
775 spin_lock(&cn->cn_lock);
776 list_for_each_entry(tmp, &cn->cn_list, cu_list) {
777 if (tmp->cu_msg.cm_xid == cn->cn_xid) {
778 cn->cn_xid++;
779 spin_unlock(&cn->cn_lock);
780 goto restart_search;
781 }
782 }
783 new->cu_task = current;
784 new->cu_msg.cm_vers = CLD_UPCALL_VERSION;
785 put_unaligned(cn->cn_xid++, &new->cu_msg.cm_xid);
786 new->cu_net = cn;
787 list_add(&new->cu_list, &cn->cn_list);
788 spin_unlock(&cn->cn_lock);
789
790 dprintk("%s: allocated xid %u\n", __func__, new->cu_msg.cm_xid);
791
792 return new;
793}
794
795static void
796free_cld_upcall(struct cld_upcall *victim)
797{
798 struct cld_net *cn = victim->cu_net;
799
800 spin_lock(&cn->cn_lock);
801 list_del(&victim->cu_list);
802 spin_unlock(&cn->cn_lock);
803 kfree(victim);
804}
805
806/* Ask daemon to create a new record */
807static void
808nfsd4_cld_create(struct nfs4_client *clp)
809{
810 int ret;
811 struct cld_upcall *cup;
812 /* FIXME: determine net from clp */
813 struct nfsd_net *nn = net_generic(&init_net, nfsd_net_id);
814 struct cld_net *cn = nn->cld_net;
815
816 /* Don't upcall if it's already stored */
817 if (test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
818 return;
819
820 cup = alloc_cld_upcall(cn);
821 if (!cup) {
822 ret = -ENOMEM;
823 goto out_err;
824 }
825
826 cup->cu_msg.cm_cmd = Cld_Create;
827 cup->cu_msg.cm_u.cm_name.cn_len = clp->cl_name.len;
828 memcpy(cup->cu_msg.cm_u.cm_name.cn_id, clp->cl_name.data,
829 clp->cl_name.len);
830
831 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_msg);
832 if (!ret) {
833 ret = cup->cu_msg.cm_status;
834 set_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
835 }
836
837 free_cld_upcall(cup);
838out_err:
839 if (ret)
840 printk(KERN_ERR "NFSD: Unable to create client "
841 "record on stable storage: %d\n", ret);
842}
843
844/* Ask daemon to create a new record */
845static void
846nfsd4_cld_remove(struct nfs4_client *clp)
847{
848 int ret;
849 struct cld_upcall *cup;
850 /* FIXME: determine net from clp */
851 struct nfsd_net *nn = net_generic(&init_net, nfsd_net_id);
852 struct cld_net *cn = nn->cld_net;
853
854 /* Don't upcall if it's already removed */
855 if (!test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
856 return;
857
858 cup = alloc_cld_upcall(cn);
859 if (!cup) {
860 ret = -ENOMEM;
861 goto out_err;
862 }
863
864 cup->cu_msg.cm_cmd = Cld_Remove;
865 cup->cu_msg.cm_u.cm_name.cn_len = clp->cl_name.len;
866 memcpy(cup->cu_msg.cm_u.cm_name.cn_id, clp->cl_name.data,
867 clp->cl_name.len);
868
869 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_msg);
870 if (!ret) {
871 ret = cup->cu_msg.cm_status;
872 clear_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
873 }
874
875 free_cld_upcall(cup);
876out_err:
877 if (ret)
878 printk(KERN_ERR "NFSD: Unable to remove client "
879 "record from stable storage: %d\n", ret);
880}
881
882/* Check for presence of a record, and update its timestamp */
883static int
884nfsd4_cld_check(struct nfs4_client *clp)
885{
886 int ret;
887 struct cld_upcall *cup;
888 /* FIXME: determine net from clp */
889 struct nfsd_net *nn = net_generic(&init_net, nfsd_net_id);
890 struct cld_net *cn = nn->cld_net;
891
892 /* Don't upcall if one was already stored during this grace pd */
893 if (test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
894 return 0;
895
896 cup = alloc_cld_upcall(cn);
897 if (!cup) {
898 printk(KERN_ERR "NFSD: Unable to check client record on "
899 "stable storage: %d\n", -ENOMEM);
900 return -ENOMEM;
901 }
902
903 cup->cu_msg.cm_cmd = Cld_Check;
904 cup->cu_msg.cm_u.cm_name.cn_len = clp->cl_name.len;
905 memcpy(cup->cu_msg.cm_u.cm_name.cn_id, clp->cl_name.data,
906 clp->cl_name.len);
907
908 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_msg);
909 if (!ret) {
910 ret = cup->cu_msg.cm_status;
911 set_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
912 }
913
914 free_cld_upcall(cup);
915 return ret;
916}
917
918static void
919nfsd4_cld_grace_done(struct net *net, time_t boot_time)
920{
921 int ret;
922 struct cld_upcall *cup;
923 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
924 struct cld_net *cn = nn->cld_net;
925
926 cup = alloc_cld_upcall(cn);
927 if (!cup) {
928 ret = -ENOMEM;
929 goto out_err;
930 }
931
932 cup->cu_msg.cm_cmd = Cld_GraceDone;
933 cup->cu_msg.cm_u.cm_gracetime = (int64_t)boot_time;
934 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_msg);
935 if (!ret)
936 ret = cup->cu_msg.cm_status;
937
938 free_cld_upcall(cup);
939out_err:
940 if (ret)
941 printk(KERN_ERR "NFSD: Unable to end grace period: %d\n", ret);
942}
943
944static struct nfsd4_client_tracking_ops nfsd4_cld_tracking_ops = {
945 .init = nfsd4_init_cld_pipe,
946 .exit = nfsd4_remove_cld_pipe,
947 .create = nfsd4_cld_create,
948 .remove = nfsd4_cld_remove,
949 .check = nfsd4_cld_check,
950 .grace_done = nfsd4_cld_grace_done,
951};
952
Jeff Layton2873d212012-11-12 15:00:48 -0500953/* upcall via usermodehelper */
954static char cltrack_prog[PATH_MAX] = "/sbin/nfsdcltrack";
955module_param_string(cltrack_prog, cltrack_prog, sizeof(cltrack_prog),
956 S_IRUGO|S_IWUSR);
957MODULE_PARM_DESC(cltrack_prog, "Path to the nfsdcltrack upcall program");
958
Jeff Laytonf3aa7e22012-11-12 15:00:50 -0500959static bool cltrack_legacy_disable;
960module_param(cltrack_legacy_disable, bool, S_IRUGO|S_IWUSR);
961MODULE_PARM_DESC(cltrack_legacy_disable,
962 "Disable legacy recoverydir conversion. Default: false");
963
964#define LEGACY_TOPDIR_ENV_PREFIX "NFSDCLTRACK_LEGACY_TOPDIR="
965#define LEGACY_RECDIR_ENV_PREFIX "NFSDCLTRACK_LEGACY_RECDIR="
966
967static char *
968nfsd4_cltrack_legacy_topdir(void)
Jeff Layton2873d212012-11-12 15:00:48 -0500969{
Jeff Laytonf3aa7e22012-11-12 15:00:50 -0500970 int copied;
971 size_t len;
972 char *result;
973
974 if (cltrack_legacy_disable)
975 return NULL;
976
977 len = strlen(LEGACY_TOPDIR_ENV_PREFIX) +
978 strlen(nfs4_recoverydir()) + 1;
979
980 result = kmalloc(len, GFP_KERNEL);
981 if (!result)
982 return result;
983
984 copied = snprintf(result, len, LEGACY_TOPDIR_ENV_PREFIX "%s",
985 nfs4_recoverydir());
986 if (copied >= len) {
987 /* just return nothing if output was truncated */
988 kfree(result);
989 return NULL;
990 }
991
992 return result;
993}
994
995static char *
996nfsd4_cltrack_legacy_recdir(const char *recdir)
997{
998 int copied;
999 size_t len;
1000 char *result;
1001
1002 if (cltrack_legacy_disable)
1003 return NULL;
1004
1005 /* +1 is for '/' between "topdir" and "recdir" */
1006 len = strlen(LEGACY_RECDIR_ENV_PREFIX) +
1007 strlen(nfs4_recoverydir()) + 1 + HEXDIR_LEN;
1008
1009 result = kmalloc(len, GFP_KERNEL);
1010 if (!result)
1011 return result;
1012
1013 copied = snprintf(result, len, LEGACY_RECDIR_ENV_PREFIX "%s/%s",
1014 nfs4_recoverydir(), recdir);
1015 if (copied >= len) {
1016 /* just return nothing if output was truncated */
1017 kfree(result);
1018 return NULL;
1019 }
1020
1021 return result;
1022}
1023
1024static int
1025nfsd4_umh_cltrack_upcall(char *cmd, char *arg, char *legacy)
1026{
1027 char *envp[2];
Jeff Layton2873d212012-11-12 15:00:48 -05001028 char *argv[4];
1029 int ret;
1030
1031 if (unlikely(!cltrack_prog[0])) {
1032 dprintk("%s: cltrack_prog is disabled\n", __func__);
1033 return -EACCES;
1034 }
1035
1036 dprintk("%s: cmd: %s\n", __func__, cmd);
1037 dprintk("%s: arg: %s\n", __func__, arg ? arg : "(null)");
Jeff Laytonf3aa7e22012-11-12 15:00:50 -05001038 dprintk("%s: legacy: %s\n", __func__, legacy ? legacy : "(null)");
1039
1040 envp[0] = legacy;
1041 envp[1] = NULL;
Jeff Layton2873d212012-11-12 15:00:48 -05001042
1043 argv[0] = (char *)cltrack_prog;
1044 argv[1] = cmd;
1045 argv[2] = arg;
1046 argv[3] = NULL;
1047
1048 ret = call_usermodehelper(argv[0], argv, envp, UMH_WAIT_PROC);
1049 /*
1050 * Disable the upcall mechanism if we're getting an ENOENT or EACCES
1051 * error. The admin can re-enable it on the fly by using sysfs
1052 * once the problem has been fixed.
1053 */
1054 if (ret == -ENOENT || ret == -EACCES) {
1055 dprintk("NFSD: %s was not found or isn't executable (%d). "
1056 "Setting cltrack_prog to blank string!",
1057 cltrack_prog, ret);
1058 cltrack_prog[0] = '\0';
1059 }
1060 dprintk("%s: %s return value: %d\n", __func__, cltrack_prog, ret);
1061
1062 return ret;
1063}
1064
1065static char *
1066bin_to_hex_dup(const unsigned char *src, int srclen)
1067{
1068 int i;
1069 char *buf, *hex;
1070
1071 /* +1 for terminating NULL */
1072 buf = kmalloc((srclen * 2) + 1, GFP_KERNEL);
1073 if (!buf)
1074 return buf;
1075
1076 hex = buf;
1077 for (i = 0; i < srclen; i++) {
1078 sprintf(hex, "%2.2x", *src++);
1079 hex += 2;
1080 }
1081 return buf;
1082}
1083
1084static int
1085nfsd4_umh_cltrack_init(struct net __attribute__((unused)) *net)
1086{
Jeff Laytonf3aa7e22012-11-12 15:00:50 -05001087 return nfsd4_umh_cltrack_upcall("init", NULL, NULL);
Jeff Layton2873d212012-11-12 15:00:48 -05001088}
1089
1090static void
1091nfsd4_umh_cltrack_create(struct nfs4_client *clp)
1092{
1093 char *hexid;
1094
1095 hexid = bin_to_hex_dup(clp->cl_name.data, clp->cl_name.len);
1096 if (!hexid) {
1097 dprintk("%s: can't allocate memory for upcall!\n", __func__);
1098 return;
1099 }
Jeff Laytonf3aa7e22012-11-12 15:00:50 -05001100 nfsd4_umh_cltrack_upcall("create", hexid, NULL);
Jeff Layton2873d212012-11-12 15:00:48 -05001101 kfree(hexid);
1102}
1103
1104static void
1105nfsd4_umh_cltrack_remove(struct nfs4_client *clp)
1106{
1107 char *hexid;
1108
1109 hexid = bin_to_hex_dup(clp->cl_name.data, clp->cl_name.len);
1110 if (!hexid) {
1111 dprintk("%s: can't allocate memory for upcall!\n", __func__);
1112 return;
1113 }
Jeff Laytonf3aa7e22012-11-12 15:00:50 -05001114 nfsd4_umh_cltrack_upcall("remove", hexid, NULL);
Jeff Layton2873d212012-11-12 15:00:48 -05001115 kfree(hexid);
1116}
1117
1118static int
1119nfsd4_umh_cltrack_check(struct nfs4_client *clp)
1120{
1121 int ret;
Jeff Laytonf3aa7e22012-11-12 15:00:50 -05001122 char *hexid, *legacy;
Jeff Layton2873d212012-11-12 15:00:48 -05001123
1124 hexid = bin_to_hex_dup(clp->cl_name.data, clp->cl_name.len);
1125 if (!hexid) {
1126 dprintk("%s: can't allocate memory for upcall!\n", __func__);
1127 return -ENOMEM;
1128 }
Jeff Laytonf3aa7e22012-11-12 15:00:50 -05001129 legacy = nfsd4_cltrack_legacy_recdir(clp->cl_recdir);
1130 ret = nfsd4_umh_cltrack_upcall("check", hexid, legacy);
1131 kfree(legacy);
Jeff Layton2873d212012-11-12 15:00:48 -05001132 kfree(hexid);
1133 return ret;
1134}
1135
1136static void
1137nfsd4_umh_cltrack_grace_done(struct net __attribute__((unused)) *net,
1138 time_t boot_time)
1139{
Jeff Laytonf3aa7e22012-11-12 15:00:50 -05001140 char *legacy;
Jeff Layton2873d212012-11-12 15:00:48 -05001141 char timestr[22]; /* FIXME: better way to determine max size? */
1142
1143 sprintf(timestr, "%ld", boot_time);
Jeff Laytonf3aa7e22012-11-12 15:00:50 -05001144 legacy = nfsd4_cltrack_legacy_topdir();
1145 nfsd4_umh_cltrack_upcall("gracedone", timestr, legacy);
1146 kfree(legacy);
Jeff Layton2873d212012-11-12 15:00:48 -05001147}
1148
1149static struct nfsd4_client_tracking_ops nfsd4_umh_tracking_ops = {
1150 .init = nfsd4_umh_cltrack_init,
1151 .exit = NULL,
1152 .create = nfsd4_umh_cltrack_create,
1153 .remove = nfsd4_umh_cltrack_remove,
1154 .check = nfsd4_umh_cltrack_check,
1155 .grace_done = nfsd4_umh_cltrack_grace_done,
1156};
1157
Jeff Layton2a4317c2012-03-21 16:42:43 -04001158int
1159nfsd4_client_tracking_init(struct net *net)
1160{
1161 int status;
Jeff Laytonf3f80142012-03-21 09:52:07 -04001162 struct path path;
Jeff Layton2a4317c2012-03-21 16:42:43 -04001163
Jeff Layton2d77bf02012-11-12 15:00:49 -05001164 /* just run the init if it the method is already decided */
1165 if (client_tracking_ops)
1166 goto do_init;
1167
1168 /*
1169 * First, try a UMH upcall. It should succeed or fail quickly, so
1170 * there's little harm in trying that first.
1171 */
1172 client_tracking_ops = &nfsd4_umh_tracking_ops;
1173 status = client_tracking_ops->init(net);
1174 if (!status)
1175 return status;
1176
1177 /*
1178 * See if the recoverydir exists and is a directory. If it is,
1179 * then use the legacy ops.
1180 */
1181 client_tracking_ops = &nfsd4_legacy_tracking_ops;
1182 status = kern_path(nfs4_recoverydir(), LOOKUP_FOLLOW, &path);
1183 if (!status) {
1184 status = S_ISDIR(path.dentry->d_inode->i_mode);
1185 path_put(&path);
1186 if (status)
1187 goto do_init;
Jeff Laytonf3f80142012-03-21 09:52:07 -04001188 }
Jeff Layton2a4317c2012-03-21 16:42:43 -04001189
Jeff Layton2d77bf02012-11-12 15:00:49 -05001190 /* Finally, try to use nfsdcld */
1191 client_tracking_ops = &nfsd4_cld_tracking_ops;
Jeff Layton8b0554e2012-11-12 15:00:51 -05001192 printk(KERN_WARNING "NFSD: the nfsdcld client tracking upcall will be "
1193 "removed in 3.10. Please transition to using "
1194 "nfsdcltrack.\n");
Jeff Layton2d77bf02012-11-12 15:00:49 -05001195do_init:
Jeff Layton2a4317c2012-03-21 16:42:43 -04001196 status = client_tracking_ops->init(net);
1197 if (status) {
1198 printk(KERN_WARNING "NFSD: Unable to initialize client "
1199 "recovery tracking! (%d)\n", status);
1200 client_tracking_ops = NULL;
1201 }
1202 return status;
1203}
1204
1205void
1206nfsd4_client_tracking_exit(struct net *net)
1207{
1208 if (client_tracking_ops) {
Jeff Layton2873d212012-11-12 15:00:48 -05001209 if (client_tracking_ops->exit)
1210 client_tracking_ops->exit(net);
Jeff Layton2a4317c2012-03-21 16:42:43 -04001211 client_tracking_ops = NULL;
1212 }
1213}
1214
1215void
1216nfsd4_client_record_create(struct nfs4_client *clp)
1217{
1218 if (client_tracking_ops)
1219 client_tracking_ops->create(clp);
1220}
1221
1222void
1223nfsd4_client_record_remove(struct nfs4_client *clp)
1224{
1225 if (client_tracking_ops)
1226 client_tracking_ops->remove(clp);
1227}
1228
1229int
1230nfsd4_client_record_check(struct nfs4_client *clp)
1231{
1232 if (client_tracking_ops)
1233 return client_tracking_ops->check(clp);
1234
1235 return -EOPNOTSUPP;
1236}
1237
1238void
1239nfsd4_record_grace_done(struct net *net, time_t boot_time)
1240{
1241 if (client_tracking_ops)
1242 client_tracking_ops->grace_done(net, boot_time);
1243}
Jeff Layton813fd322012-03-21 09:52:08 -04001244
1245static int
1246rpc_pipefs_event(struct notifier_block *nb, unsigned long event, void *ptr)
1247{
1248 struct super_block *sb = ptr;
1249 struct net *net = sb->s_fs_info;
1250 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1251 struct cld_net *cn = nn->cld_net;
1252 struct dentry *dentry;
1253 int ret = 0;
1254
1255 if (!try_module_get(THIS_MODULE))
1256 return 0;
1257
1258 if (!cn) {
1259 module_put(THIS_MODULE);
1260 return 0;
1261 }
1262
1263 switch (event) {
1264 case RPC_PIPEFS_MOUNT:
1265 dentry = nfsd4_cld_register_sb(sb, cn->cn_pipe);
1266 if (IS_ERR(dentry)) {
1267 ret = PTR_ERR(dentry);
1268 break;
1269 }
1270 cn->cn_pipe->dentry = dentry;
1271 break;
1272 case RPC_PIPEFS_UMOUNT:
1273 if (cn->cn_pipe->dentry)
1274 nfsd4_cld_unregister_sb(cn->cn_pipe);
1275 break;
1276 default:
1277 ret = -ENOTSUPP;
1278 break;
1279 }
1280 module_put(THIS_MODULE);
1281 return ret;
1282}
1283
J. Bruce Fields2355c592012-04-25 16:56:22 -04001284static struct notifier_block nfsd4_cld_block = {
Jeff Layton813fd322012-03-21 09:52:08 -04001285 .notifier_call = rpc_pipefs_event,
1286};
Jeff Layton797a9d72012-03-29 07:52:49 -04001287
1288int
1289register_cld_notifier(void)
1290{
1291 return rpc_pipefs_notifier_register(&nfsd4_cld_block);
1292}
1293
1294void
1295unregister_cld_notifier(void)
1296{
1297 rpc_pipefs_notifier_unregister(&nfsd4_cld_block);
1298}