blob: b03b6aa7a6a0da46bfd25c93ee1bd98bcb04f691 [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
Jeff Layton2216d442012-11-12 15:00:57 -0500106static int
107nfs4_make_rec_clidname(char *dname, const struct xdr_netobj *clname)
NeilBrowna55370a2005-06-23 22:03:52 -0700108{
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;
Jeff Layton2216d442012-11-12 15:00:57 -0500112 int status;
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);
Jeff Layton2216d442012-11-12 15:00:57 -0500118 if (IS_ERR(desc.tfm)) {
119 status = PTR_ERR(desc.tfm);
Herbert Xu35058682006-08-24 19:10:20 +1000120 goto out_no_tfm;
Jeff Layton2216d442012-11-12 15:00:57 -0500121 }
122
Herbert Xu35058682006-08-24 19:10:20 +1000123 cksum.len = crypto_hash_digestsize(desc.tfm);
NeilBrowna55370a2005-06-23 22:03:52 -0700124 cksum.data = kmalloc(cksum.len, GFP_KERNEL);
Jeff Layton2216d442012-11-12 15:00:57 -0500125 if (cksum.data == NULL) {
126 status = -ENOMEM;
NeilBrowna55370a2005-06-23 22:03:52 -0700127 goto out;
Jeff Layton2216d442012-11-12 15:00:57 -0500128 }
NeilBrowna55370a2005-06-23 22:03:52 -0700129
Jens Axboe60c74f82007-10-22 19:43:30 +0200130 sg_init_one(&sg, clname->data, clname->len);
NeilBrowna55370a2005-06-23 22:03:52 -0700131
Jeff Layton2216d442012-11-12 15:00:57 -0500132 status = crypto_hash_digest(&desc, &sg, sg.length, cksum.data);
133 if (status)
Herbert Xu35058682006-08-24 19:10:20 +1000134 goto out;
NeilBrowna55370a2005-06-23 22:03:52 -0700135
136 md5_to_hex(dname, cksum.data);
137
Jeff Layton2216d442012-11-12 15:00:57 -0500138 status = 0;
NeilBrowna55370a2005-06-23 22:03:52 -0700139out:
Krishna Kumar2bd9e7b2008-10-20 11:47:09 +0530140 kfree(cksum.data);
Herbert Xu35058682006-08-24 19:10:20 +1000141 crypto_free_hash(desc.tfm);
142out_no_tfm:
NeilBrowna55370a2005-06-23 22:03:52 -0700143 return status;
144}
NeilBrown190e4fb2005-06-23 22:04:25 -0700145
Jeff Layton2216d442012-11-12 15:00:57 -0500146/*
147 * If we had an error generating the recdir name for the legacy tracker
148 * then warn the admin. If the error doesn't appear to be transient,
149 * then disable recovery tracking.
150 */
151static void
152legacy_recdir_name_error(int error)
153{
154 printk(KERN_ERR "NFSD: unable to generate recoverydir "
155 "name (%d).\n", error);
156
157 /*
158 * if the algorithm just doesn't exist, then disable the recovery
159 * tracker altogether. The crypto libs will generally return this if
160 * FIPS is enabled as well.
161 */
162 if (error == -ENOENT) {
163 printk(KERN_ERR "NFSD: disabling legacy clientid tracking. "
164 "Reboot recovery will not function correctly!\n");
165
166 /* the argument is ignored by the legacy exit function */
167 nfsd4_client_tracking_exit(NULL);
168 }
169}
170
Jeff Layton2a4317c2012-03-21 16:42:43 -0400171static void
172nfsd4_create_clid_dir(struct nfs4_client *clp)
NeilBrownc7b9a452005-06-23 22:04:30 -0700173{
David Howellsd84f4f92008-11-14 10:39:23 +1100174 const struct cred *original_cred;
Jeff Layton2216d442012-11-12 15:00:57 -0500175 char dname[HEXDIR_LEN];
Christoph Hellwige970a572010-03-22 17:32:14 +0100176 struct dentry *dir, *dentry;
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500177 struct nfs4_client_reclaim *crp;
NeilBrownc7b9a452005-06-23 22:04:30 -0700178 int status;
179
180 dprintk("NFSD: nfsd4_create_clid_dir for \"%s\"\n", dname);
181
Jeff Laytona52d7262012-03-21 09:52:02 -0400182 if (test_and_set_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
J. Bruce Fields7a6ef8c2012-01-05 15:38:41 -0500183 return;
J. Bruce Fieldsb8548892012-01-02 17:49:12 -0500184 if (!rec_file)
J. Bruce Fields7a6ef8c2012-01-05 15:38:41 -0500185 return;
Jeff Layton2216d442012-11-12 15:00:57 -0500186
187 status = nfs4_make_rec_clidname(dname, &clp->cl_name);
188 if (status)
189 return legacy_recdir_name_error(status);
190
David Howellsd84f4f92008-11-14 10:39:23 +1100191 status = nfs4_save_creds(&original_cred);
192 if (status < 0)
J. Bruce Fields7a6ef8c2012-01-05 15:38:41 -0500193 return;
NeilBrownc7b9a452005-06-23 22:04:30 -0700194
Jan Kara4a55c102012-06-12 16:20:33 +0200195 status = mnt_want_write_file(rec_file);
196 if (status)
197 return;
198
Christoph Hellwige970a572010-03-22 17:32:14 +0100199 dir = rec_file->f_path.dentry;
NeilBrownc7b9a452005-06-23 22:04:30 -0700200 /* lock the parent */
Christoph Hellwige970a572010-03-22 17:32:14 +0100201 mutex_lock(&dir->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700202
Christoph Hellwige970a572010-03-22 17:32:14 +0100203 dentry = lookup_one_len(dname, dir, HEXDIR_LEN-1);
NeilBrownc7b9a452005-06-23 22:04:30 -0700204 if (IS_ERR(dentry)) {
205 status = PTR_ERR(dentry);
206 goto out_unlock;
207 }
Boaz Harrosh6577aac2011-08-12 17:30:12 -0700208 if (dentry->d_inode)
J. Bruce Fieldsaec39682012-01-02 17:30:05 -0500209 /*
210 * In the 4.1 case, where we're called from
211 * reclaim_complete(), records from the previous reboot
212 * may still be left, so this is OK.
213 *
214 * In the 4.0 case, we should never get here; but we may
215 * as well be forgiving and just succeed silently.
216 */
NeilBrownc7b9a452005-06-23 22:04:30 -0700217 goto out_put;
Christoph Hellwige970a572010-03-22 17:32:14 +0100218 status = vfs_mkdir(dir->d_inode, dentry, S_IRWXU);
NeilBrownc7b9a452005-06-23 22:04:30 -0700219out_put:
220 dput(dentry);
221out_unlock:
Christoph Hellwige970a572010-03-22 17:32:14 +0100222 mutex_unlock(&dir->d_inode->i_mutex);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500223 if (status == 0) {
224 if (in_grace) {
Jeff Layton2216d442012-11-12 15:00:57 -0500225 crp = nfs4_client_to_reclaim(dname);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500226 if (crp)
227 crp->cr_clp = clp;
228 }
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100229 vfs_fsync(rec_file, 0);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500230 } else {
Boaz Harrosh6577aac2011-08-12 17:30:12 -0700231 printk(KERN_ERR "NFSD: failed to write recovery record"
232 " (err %d); please check that %s exists"
233 " and is writeable", status,
234 user_recovery_dirname);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500235 }
Jan Kara4a55c102012-06-12 16:20:33 +0200236 mnt_drop_write_file(rec_file);
David Howellsd84f4f92008-11-14 10:39:23 +1100237 nfs4_reset_creds(original_cred);
NeilBrownc7b9a452005-06-23 22:04:30 -0700238}
239
NeilBrown190e4fb2005-06-23 22:04:25 -0700240typedef int (recdir_func)(struct dentry *, struct dentry *);
241
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400242struct name_list {
243 char name[HEXDIR_LEN];
NeilBrown190e4fb2005-06-23 22:04:25 -0700244 struct list_head list;
245};
246
NeilBrown190e4fb2005-06-23 22:04:25 -0700247static int
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400248nfsd4_build_namelist(void *arg, const char *name, int namlen,
David Howellsafefdbb2006-10-03 01:13:46 -0700249 loff_t offset, u64 ino, unsigned int d_type)
NeilBrown190e4fb2005-06-23 22:04:25 -0700250{
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400251 struct list_head *names = arg;
252 struct name_list *entry;
NeilBrown190e4fb2005-06-23 22:04:25 -0700253
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400254 if (namlen != HEXDIR_LEN - 1)
Al Virob37ad282006-10-19 23:28:59 -0700255 return 0;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400256 entry = kmalloc(sizeof(struct name_list), GFP_KERNEL);
257 if (entry == NULL)
NeilBrown190e4fb2005-06-23 22:04:25 -0700258 return -ENOMEM;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400259 memcpy(entry->name, name, HEXDIR_LEN - 1);
260 entry->name[HEXDIR_LEN - 1] = '\0';
261 list_add(&entry->list, names);
NeilBrown190e4fb2005-06-23 22:04:25 -0700262 return 0;
263}
264
265static int
Al Viro5b4b2992011-07-07 18:43:21 -0400266nfsd4_list_rec_dir(recdir_func *f)
NeilBrown190e4fb2005-06-23 22:04:25 -0700267{
David Howellsd84f4f92008-11-14 10:39:23 +1100268 const struct cred *original_cred;
Al Viro5b4b2992011-07-07 18:43:21 -0400269 struct dentry *dir = rec_file->f_path.dentry;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400270 LIST_HEAD(names);
NeilBrown190e4fb2005-06-23 22:04:25 -0700271 int status;
272
David Howellsd84f4f92008-11-14 10:39:23 +1100273 status = nfs4_save_creds(&original_cred);
274 if (status < 0)
275 return status;
NeilBrown190e4fb2005-06-23 22:04:25 -0700276
Al Viro5b4b2992011-07-07 18:43:21 -0400277 status = vfs_llseek(rec_file, 0, SEEK_SET);
278 if (status < 0) {
279 nfs4_reset_creds(original_cred);
280 return status;
281 }
282
283 status = vfs_readdir(rec_file, nfsd4_build_namelist, &names);
J. Bruce Fields8daed1e2009-05-11 16:10:19 -0400284 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT);
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400285 while (!list_empty(&names)) {
Al Viro5b4b2992011-07-07 18:43:21 -0400286 struct name_list *entry;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400287 entry = list_entry(names.next, struct name_list, list);
Al Viro5b4b2992011-07-07 18:43:21 -0400288 if (!status) {
289 struct dentry *dentry;
290 dentry = lookup_one_len(entry->name, dir, HEXDIR_LEN-1);
291 if (IS_ERR(dentry)) {
292 status = PTR_ERR(dentry);
293 break;
294 }
295 status = f(dir, dentry);
296 dput(dentry);
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400297 }
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400298 list_del(&entry->list);
299 kfree(entry);
NeilBrown190e4fb2005-06-23 22:04:25 -0700300 }
David Woodhouse2f9092e2009-04-20 23:18:37 +0100301 mutex_unlock(&dir->d_inode->i_mutex);
David Howellsd84f4f92008-11-14 10:39:23 +1100302 nfs4_reset_creds(original_cred);
NeilBrown190e4fb2005-06-23 22:04:25 -0700303 return status;
304}
305
306static int
NeilBrownc7b9a452005-06-23 22:04:30 -0700307nfsd4_unlink_clid_dir(char *name, int namlen)
308{
Christoph Hellwige970a572010-03-22 17:32:14 +0100309 struct dentry *dir, *dentry;
NeilBrownc7b9a452005-06-23 22:04:30 -0700310 int status;
311
312 dprintk("NFSD: nfsd4_unlink_clid_dir. name %.*s\n", namlen, name);
313
Christoph Hellwige970a572010-03-22 17:32:14 +0100314 dir = rec_file->f_path.dentry;
315 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT);
316 dentry = lookup_one_len(name, dir, namlen);
NeilBrownc7b9a452005-06-23 22:04:30 -0700317 if (IS_ERR(dentry)) {
318 status = PTR_ERR(dentry);
David Woodhouse2f9092e2009-04-20 23:18:37 +0100319 goto out_unlock;
NeilBrownc7b9a452005-06-23 22:04:30 -0700320 }
321 status = -ENOENT;
322 if (!dentry->d_inode)
323 goto out;
Christoph Hellwige970a572010-03-22 17:32:14 +0100324 status = vfs_rmdir(dir->d_inode, dentry);
NeilBrownc7b9a452005-06-23 22:04:30 -0700325out:
326 dput(dentry);
David Woodhouse2f9092e2009-04-20 23:18:37 +0100327out_unlock:
Christoph Hellwige970a572010-03-22 17:32:14 +0100328 mutex_unlock(&dir->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700329 return status;
330}
331
Jeff Layton2a4317c2012-03-21 16:42:43 -0400332static void
NeilBrownc7b9a452005-06-23 22:04:30 -0700333nfsd4_remove_clid_dir(struct nfs4_client *clp)
334{
David Howellsd84f4f92008-11-14 10:39:23 +1100335 const struct cred *original_cred;
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500336 struct nfs4_client_reclaim *crp;
Jeff Layton2216d442012-11-12 15:00:57 -0500337 char dname[HEXDIR_LEN];
NeilBrownc7b9a452005-06-23 22:04:30 -0700338 int status;
339
Jeff Laytona52d7262012-03-21 09:52:02 -0400340 if (!rec_file || !test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
NeilBrownc7b9a452005-06-23 22:04:30 -0700341 return;
342
Jeff Layton2216d442012-11-12 15:00:57 -0500343 status = nfs4_make_rec_clidname(dname, &clp->cl_name);
344 if (status)
345 return legacy_recdir_name_error(status);
346
Al Viroa561be72011-11-23 11:57:51 -0500347 status = mnt_want_write_file(rec_file);
Dave Hansen06227532008-02-15 14:37:34 -0800348 if (status)
349 goto out;
Jeff Laytona52d7262012-03-21 09:52:02 -0400350 clear_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
David Howellsd84f4f92008-11-14 10:39:23 +1100351
352 status = nfs4_save_creds(&original_cred);
353 if (status < 0)
Jeff Layton698d8d82012-11-09 15:31:53 -0500354 goto out_drop_write;
David Howellsd84f4f92008-11-14 10:39:23 +1100355
Jeff Layton2216d442012-11-12 15:00:57 -0500356 status = nfsd4_unlink_clid_dir(dname, HEXDIR_LEN-1);
David Howellsd84f4f92008-11-14 10:39:23 +1100357 nfs4_reset_creds(original_cred);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500358 if (status == 0) {
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100359 vfs_fsync(rec_file, 0);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500360 if (in_grace) {
361 /* remove reclaim record */
Jeff Layton2216d442012-11-12 15:00:57 -0500362 crp = nfsd4_find_reclaim_client(dname);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500363 if (crp)
364 nfs4_remove_reclaim_record(crp);
365 }
366 }
Jeff Layton698d8d82012-11-09 15:31:53 -0500367out_drop_write:
Al Viro2a79f172011-12-09 08:06:57 -0500368 mnt_drop_write_file(rec_file);
Dave Hansen06227532008-02-15 14:37:34 -0800369out:
NeilBrownc7b9a452005-06-23 22:04:30 -0700370 if (status)
371 printk("NFSD: Failed to remove expired client state directory"
Jeff Layton2216d442012-11-12 15:00:57 -0500372 " %.*s\n", HEXDIR_LEN, dname);
NeilBrownc7b9a452005-06-23 22:04:30 -0700373}
374
375static int
376purge_old(struct dentry *parent, struct dentry *child)
377{
378 int status;
379
Jeff Laytona0af7102012-11-09 15:06:38 -0500380 if (nfs4_has_reclaimed_state(child->d_name.name))
Al Virob37ad282006-10-19 23:28:59 -0700381 return 0;
NeilBrownc7b9a452005-06-23 22:04:30 -0700382
David Woodhouse2f9092e2009-04-20 23:18:37 +0100383 status = vfs_rmdir(parent->d_inode, child);
NeilBrownc7b9a452005-06-23 22:04:30 -0700384 if (status)
385 printk("failed to remove client recovery directory %s\n",
386 child->d_name.name);
387 /* Keep trying, success or failure: */
Al Virob37ad282006-10-19 23:28:59 -0700388 return 0;
NeilBrownc7b9a452005-06-23 22:04:30 -0700389}
390
Jeff Layton2a4317c2012-03-21 16:42:43 -0400391static void
392nfsd4_recdir_purge_old(struct net *net, time_t boot_time)
393{
NeilBrownc7b9a452005-06-23 22:04:30 -0700394 int status;
395
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500396 in_grace = false;
Christoph Hellwige970a572010-03-22 17:32:14 +0100397 if (!rec_file)
NeilBrownc7b9a452005-06-23 22:04:30 -0700398 return;
Al Viroa561be72011-11-23 11:57:51 -0500399 status = mnt_want_write_file(rec_file);
Dave Hansen06227532008-02-15 14:37:34 -0800400 if (status)
401 goto out;
Al Viro5b4b2992011-07-07 18:43:21 -0400402 status = nfsd4_list_rec_dir(purge_old);
NeilBrownc7b9a452005-06-23 22:04:30 -0700403 if (status == 0)
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100404 vfs_fsync(rec_file, 0);
Al Viro2a79f172011-12-09 08:06:57 -0500405 mnt_drop_write_file(rec_file);
Dave Hansen06227532008-02-15 14:37:34 -0800406out:
Jeff Layton7e4f0152012-11-12 15:00:58 -0500407 nfs4_release_reclaim();
NeilBrownc7b9a452005-06-23 22:04:30 -0700408 if (status)
409 printk("nfsd4: failed to purge old clients from recovery"
Christoph Hellwige970a572010-03-22 17:32:14 +0100410 " directory %s\n", rec_file->f_path.dentry->d_name.name);
NeilBrownc7b9a452005-06-23 22:04:30 -0700411}
412
413static int
NeilBrown190e4fb2005-06-23 22:04:25 -0700414load_recdir(struct dentry *parent, struct dentry *child)
415{
416 if (child->d_name.len != HEXDIR_LEN - 1) {
417 printk("nfsd4: illegal name %s in recovery directory\n",
418 child->d_name.name);
419 /* Keep trying; maybe the others are OK: */
Al Virob37ad282006-10-19 23:28:59 -0700420 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -0700421 }
422 nfs4_client_to_reclaim(child->d_name.name);
Al Virob37ad282006-10-19 23:28:59 -0700423 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -0700424}
425
Jeff Layton2a4317c2012-03-21 16:42:43 -0400426static int
NeilBrown190e4fb2005-06-23 22:04:25 -0700427nfsd4_recdir_load(void) {
428 int status;
429
Christoph Hellwige970a572010-03-22 17:32:14 +0100430 if (!rec_file)
431 return 0;
432
Al Viro5b4b2992011-07-07 18:43:21 -0400433 status = nfsd4_list_rec_dir(load_recdir);
NeilBrown190e4fb2005-06-23 22:04:25 -0700434 if (status)
435 printk("nfsd4: failed loading clients from recovery"
Christoph Hellwige970a572010-03-22 17:32:14 +0100436 " directory %s\n", rec_file->f_path.dentry->d_name.name);
NeilBrown190e4fb2005-06-23 22:04:25 -0700437 return status;
438}
439
440/*
441 * Hold reference to the recovery directory.
442 */
443
Jeff Layton2a4317c2012-03-21 16:42:43 -0400444static int
445nfsd4_init_recdir(void)
NeilBrown190e4fb2005-06-23 22:04:25 -0700446{
David Howellsd84f4f92008-11-14 10:39:23 +1100447 const struct cred *original_cred;
448 int status;
NeilBrown190e4fb2005-06-23 22:04:25 -0700449
450 printk("NFSD: Using %s as the NFSv4 state recovery directory\n",
J. Bruce Fields48483bf2011-08-26 20:40:28 -0400451 user_recovery_dirname);
NeilBrown190e4fb2005-06-23 22:04:25 -0700452
Christoph Hellwige970a572010-03-22 17:32:14 +0100453 BUG_ON(rec_file);
NeilBrown190e4fb2005-06-23 22:04:25 -0700454
David Howellsd84f4f92008-11-14 10:39:23 +1100455 status = nfs4_save_creds(&original_cred);
456 if (status < 0) {
457 printk("NFSD: Unable to change credentials to find recovery"
458 " directory: error %d\n",
459 status);
Jeff Layton2a4317c2012-03-21 16:42:43 -0400460 return status;
David Howellsd84f4f92008-11-14 10:39:23 +1100461 }
NeilBrown190e4fb2005-06-23 22:04:25 -0700462
J. Bruce Fields48483bf2011-08-26 20:40:28 -0400463 rec_file = filp_open(user_recovery_dirname, O_RDONLY | O_DIRECTORY, 0);
Christoph Hellwige970a572010-03-22 17:32:14 +0100464 if (IS_ERR(rec_file)) {
J. Bruce Fieldsc2642ab2006-01-18 17:43:29 -0800465 printk("NFSD: unable to find recovery directory %s\n",
J. Bruce Fields48483bf2011-08-26 20:40:28 -0400466 user_recovery_dirname);
Jeff Layton2a4317c2012-03-21 16:42:43 -0400467 status = PTR_ERR(rec_file);
Christoph Hellwige970a572010-03-22 17:32:14 +0100468 rec_file = NULL;
469 }
NeilBrown190e4fb2005-06-23 22:04:25 -0700470
David Howellsd84f4f92008-11-14 10:39:23 +1100471 nfs4_reset_creds(original_cred);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500472 if (!status)
473 in_grace = true;
Jeff Layton2a4317c2012-03-21 16:42:43 -0400474 return status;
NeilBrown190e4fb2005-06-23 22:04:25 -0700475}
476
Jeff Layton2a4317c2012-03-21 16:42:43 -0400477static int
478nfsd4_load_reboot_recovery_data(struct net *net)
479{
480 int status;
481
Jeff Laytoncc27e0d2012-03-21 09:52:09 -0400482 /* XXX: The legacy code won't work in a container */
483 if (net != &init_net) {
484 WARN(1, KERN_ERR "NFSD: attempt to initialize legacy client "
485 "tracking in a container!\n");
486 return -EINVAL;
487 }
488
Jeff Layton2a4317c2012-03-21 16:42:43 -0400489 nfs4_lock_state();
490 status = nfsd4_init_recdir();
491 if (!status)
492 status = nfsd4_recdir_load();
493 nfs4_unlock_state();
494 if (status)
495 printk(KERN_ERR "NFSD: Failure reading reboot recovery data\n");
496 return status;
497}
498
499static void
NeilBrown190e4fb2005-06-23 22:04:25 -0700500nfsd4_shutdown_recdir(void)
501{
Christoph Hellwige970a572010-03-22 17:32:14 +0100502 if (!rec_file)
NeilBrown190e4fb2005-06-23 22:04:25 -0700503 return;
Christoph Hellwige970a572010-03-22 17:32:14 +0100504 fput(rec_file);
505 rec_file = NULL;
NeilBrown190e4fb2005-06-23 22:04:25 -0700506}
J. Bruce Fields48483bf2011-08-26 20:40:28 -0400507
Jeff Layton2a4317c2012-03-21 16:42:43 -0400508static void
509nfsd4_legacy_tracking_exit(struct net *net)
510{
511 nfs4_release_reclaim();
512 nfsd4_shutdown_recdir();
513}
514
J. Bruce Fields48483bf2011-08-26 20:40:28 -0400515/*
516 * Change the NFSv4 recovery directory to recdir.
517 */
518int
519nfs4_reset_recoverydir(char *recdir)
520{
521 int status;
522 struct path path;
523
524 status = kern_path(recdir, LOOKUP_FOLLOW, &path);
525 if (status)
526 return status;
527 status = -ENOTDIR;
528 if (S_ISDIR(path.dentry->d_inode->i_mode)) {
529 strcpy(user_recovery_dirname, recdir);
530 status = 0;
531 }
532 path_put(&path);
533 return status;
534}
535
536char *
537nfs4_recoverydir(void)
538{
539 return user_recovery_dirname;
540}
Jeff Layton2a4317c2012-03-21 16:42:43 -0400541
542static int
543nfsd4_check_legacy_client(struct nfs4_client *clp)
544{
Jeff Layton2216d442012-11-12 15:00:57 -0500545 int status;
546 char dname[HEXDIR_LEN];
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500547 struct nfs4_client_reclaim *crp;
548
Jeff Layton2a4317c2012-03-21 16:42:43 -0400549 /* did we already find that this client is stable? */
550 if (test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
551 return 0;
552
Jeff Layton2216d442012-11-12 15:00:57 -0500553 status = nfs4_make_rec_clidname(dname, &clp->cl_name);
554 if (status) {
555 legacy_recdir_name_error(status);
556 return status;
557 }
558
Jeff Layton2a4317c2012-03-21 16:42:43 -0400559 /* look for it in the reclaim hashtable otherwise */
Jeff Layton2216d442012-11-12 15:00:57 -0500560 crp = nfsd4_find_reclaim_client(dname);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500561 if (crp) {
Jeff Layton2a4317c2012-03-21 16:42:43 -0400562 set_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
Jeff Layton0ce0c2b2012-11-12 15:00:55 -0500563 crp->cr_clp = clp;
Jeff Layton2a4317c2012-03-21 16:42:43 -0400564 return 0;
565 }
566
567 return -ENOENT;
568}
569
570static struct nfsd4_client_tracking_ops nfsd4_legacy_tracking_ops = {
571 .init = nfsd4_load_reboot_recovery_data,
572 .exit = nfsd4_legacy_tracking_exit,
573 .create = nfsd4_create_clid_dir,
574 .remove = nfsd4_remove_clid_dir,
575 .check = nfsd4_check_legacy_client,
576 .grace_done = nfsd4_recdir_purge_old,
577};
578
Jeff Laytonf3f80142012-03-21 09:52:07 -0400579/* Globals */
580#define NFSD_PIPE_DIR "nfsd"
581#define NFSD_CLD_PIPE "cld"
582
583/* per-net-ns structure for holding cld upcall info */
584struct cld_net {
585 struct rpc_pipe *cn_pipe;
586 spinlock_t cn_lock;
587 struct list_head cn_list;
588 unsigned int cn_xid;
589};
590
591struct cld_upcall {
592 struct list_head cu_list;
593 struct cld_net *cu_net;
594 struct task_struct *cu_task;
595 struct cld_msg cu_msg;
596};
597
598static int
599__cld_pipe_upcall(struct rpc_pipe *pipe, struct cld_msg *cmsg)
600{
601 int ret;
602 struct rpc_pipe_msg msg;
603
604 memset(&msg, 0, sizeof(msg));
605 msg.data = cmsg;
606 msg.len = sizeof(*cmsg);
607
608 /*
609 * Set task state before we queue the upcall. That prevents
610 * wake_up_process in the downcall from racing with schedule.
611 */
612 set_current_state(TASK_UNINTERRUPTIBLE);
613 ret = rpc_queue_upcall(pipe, &msg);
614 if (ret < 0) {
615 set_current_state(TASK_RUNNING);
616 goto out;
617 }
618
619 schedule();
620 set_current_state(TASK_RUNNING);
621
622 if (msg.errno < 0)
623 ret = msg.errno;
624out:
625 return ret;
626}
627
628static int
629cld_pipe_upcall(struct rpc_pipe *pipe, struct cld_msg *cmsg)
630{
631 int ret;
632
633 /*
634 * -EAGAIN occurs when pipe is closed and reopened while there are
635 * upcalls queued.
636 */
637 do {
638 ret = __cld_pipe_upcall(pipe, cmsg);
639 } while (ret == -EAGAIN);
640
641 return ret;
642}
643
644static ssize_t
645cld_pipe_downcall(struct file *filp, const char __user *src, size_t mlen)
646{
647 struct cld_upcall *tmp, *cup;
J. Bruce Fieldsbc1b5422012-04-25 16:58:05 -0400648 struct cld_msg __user *cmsg = (struct cld_msg __user *)src;
Jeff Laytonf3f80142012-03-21 09:52:07 -0400649 uint32_t xid;
650 struct nfsd_net *nn = net_generic(filp->f_dentry->d_sb->s_fs_info,
651 nfsd_net_id);
652 struct cld_net *cn = nn->cld_net;
653
654 if (mlen != sizeof(*cmsg)) {
Randy Dunlap8a7dc4b2012-04-30 12:25:31 -0700655 dprintk("%s: got %zu bytes, expected %zu\n", __func__, mlen,
Jeff Laytonf3f80142012-03-21 09:52:07 -0400656 sizeof(*cmsg));
657 return -EINVAL;
658 }
659
660 /* copy just the xid so we can try to find that */
661 if (copy_from_user(&xid, &cmsg->cm_xid, sizeof(xid)) != 0) {
662 dprintk("%s: error when copying xid from userspace", __func__);
663 return -EFAULT;
664 }
665
666 /* walk the list and find corresponding xid */
667 cup = NULL;
668 spin_lock(&cn->cn_lock);
669 list_for_each_entry(tmp, &cn->cn_list, cu_list) {
670 if (get_unaligned(&tmp->cu_msg.cm_xid) == xid) {
671 cup = tmp;
672 list_del_init(&cup->cu_list);
673 break;
674 }
675 }
676 spin_unlock(&cn->cn_lock);
677
678 /* couldn't find upcall? */
679 if (!cup) {
Jeff Layton21f72c92012-03-28 07:36:01 -0400680 dprintk("%s: couldn't find upcall -- xid=%u\n", __func__, xid);
Jeff Laytonf3f80142012-03-21 09:52:07 -0400681 return -EINVAL;
682 }
683
684 if (copy_from_user(&cup->cu_msg, src, mlen) != 0)
685 return -EFAULT;
686
687 wake_up_process(cup->cu_task);
688 return mlen;
689}
690
691static void
692cld_pipe_destroy_msg(struct rpc_pipe_msg *msg)
693{
694 struct cld_msg *cmsg = msg->data;
695 struct cld_upcall *cup = container_of(cmsg, struct cld_upcall,
696 cu_msg);
697
698 /* errno >= 0 means we got a downcall */
699 if (msg->errno >= 0)
700 return;
701
702 wake_up_process(cup->cu_task);
703}
704
705static const struct rpc_pipe_ops cld_upcall_ops = {
706 .upcall = rpc_pipe_generic_upcall,
707 .downcall = cld_pipe_downcall,
708 .destroy_msg = cld_pipe_destroy_msg,
709};
710
711static struct dentry *
712nfsd4_cld_register_sb(struct super_block *sb, struct rpc_pipe *pipe)
713{
714 struct dentry *dir, *dentry;
715
716 dir = rpc_d_lookup_sb(sb, NFSD_PIPE_DIR);
717 if (dir == NULL)
718 return ERR_PTR(-ENOENT);
719 dentry = rpc_mkpipe_dentry(dir, NFSD_CLD_PIPE, NULL, pipe);
720 dput(dir);
721 return dentry;
722}
723
724static void
725nfsd4_cld_unregister_sb(struct rpc_pipe *pipe)
726{
727 if (pipe->dentry)
728 rpc_unlink(pipe->dentry);
729}
730
731static struct dentry *
732nfsd4_cld_register_net(struct net *net, struct rpc_pipe *pipe)
733{
734 struct super_block *sb;
735 struct dentry *dentry;
736
737 sb = rpc_get_sb_net(net);
738 if (!sb)
739 return NULL;
740 dentry = nfsd4_cld_register_sb(sb, pipe);
741 rpc_put_sb_net(net);
742 return dentry;
743}
744
745static void
746nfsd4_cld_unregister_net(struct net *net, struct rpc_pipe *pipe)
747{
748 struct super_block *sb;
749
750 sb = rpc_get_sb_net(net);
751 if (sb) {
752 nfsd4_cld_unregister_sb(pipe);
753 rpc_put_sb_net(net);
754 }
755}
756
757/* Initialize rpc_pipefs pipe for communication with client tracking daemon */
758static int
759nfsd4_init_cld_pipe(struct net *net)
760{
761 int ret;
762 struct dentry *dentry;
763 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
764 struct cld_net *cn;
765
766 if (nn->cld_net)
767 return 0;
768
769 cn = kzalloc(sizeof(*cn), GFP_KERNEL);
770 if (!cn) {
771 ret = -ENOMEM;
772 goto err;
773 }
774
775 cn->cn_pipe = rpc_mkpipe_data(&cld_upcall_ops, RPC_PIPE_WAIT_FOR_OPEN);
776 if (IS_ERR(cn->cn_pipe)) {
777 ret = PTR_ERR(cn->cn_pipe);
778 goto err;
779 }
780 spin_lock_init(&cn->cn_lock);
781 INIT_LIST_HEAD(&cn->cn_list);
782
783 dentry = nfsd4_cld_register_net(net, cn->cn_pipe);
784 if (IS_ERR(dentry)) {
785 ret = PTR_ERR(dentry);
786 goto err_destroy_data;
787 }
788
789 cn->cn_pipe->dentry = dentry;
790 nn->cld_net = cn;
791 return 0;
792
793err_destroy_data:
794 rpc_destroy_pipe_data(cn->cn_pipe);
795err:
796 kfree(cn);
797 printk(KERN_ERR "NFSD: unable to create nfsdcld upcall pipe (%d)\n",
798 ret);
799 return ret;
800}
801
802static void
803nfsd4_remove_cld_pipe(struct net *net)
804{
805 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
806 struct cld_net *cn = nn->cld_net;
807
808 nfsd4_cld_unregister_net(net, cn->cn_pipe);
809 rpc_destroy_pipe_data(cn->cn_pipe);
810 kfree(nn->cld_net);
811 nn->cld_net = NULL;
812}
813
814static struct cld_upcall *
815alloc_cld_upcall(struct cld_net *cn)
816{
817 struct cld_upcall *new, *tmp;
818
819 new = kzalloc(sizeof(*new), GFP_KERNEL);
820 if (!new)
821 return new;
822
823 /* FIXME: hard cap on number in flight? */
824restart_search:
825 spin_lock(&cn->cn_lock);
826 list_for_each_entry(tmp, &cn->cn_list, cu_list) {
827 if (tmp->cu_msg.cm_xid == cn->cn_xid) {
828 cn->cn_xid++;
829 spin_unlock(&cn->cn_lock);
830 goto restart_search;
831 }
832 }
833 new->cu_task = current;
834 new->cu_msg.cm_vers = CLD_UPCALL_VERSION;
835 put_unaligned(cn->cn_xid++, &new->cu_msg.cm_xid);
836 new->cu_net = cn;
837 list_add(&new->cu_list, &cn->cn_list);
838 spin_unlock(&cn->cn_lock);
839
840 dprintk("%s: allocated xid %u\n", __func__, new->cu_msg.cm_xid);
841
842 return new;
843}
844
845static void
846free_cld_upcall(struct cld_upcall *victim)
847{
848 struct cld_net *cn = victim->cu_net;
849
850 spin_lock(&cn->cn_lock);
851 list_del(&victim->cu_list);
852 spin_unlock(&cn->cn_lock);
853 kfree(victim);
854}
855
856/* Ask daemon to create a new record */
857static void
858nfsd4_cld_create(struct nfs4_client *clp)
859{
860 int ret;
861 struct cld_upcall *cup;
862 /* FIXME: determine net from clp */
863 struct nfsd_net *nn = net_generic(&init_net, nfsd_net_id);
864 struct cld_net *cn = nn->cld_net;
865
866 /* Don't upcall if it's already stored */
867 if (test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
868 return;
869
870 cup = alloc_cld_upcall(cn);
871 if (!cup) {
872 ret = -ENOMEM;
873 goto out_err;
874 }
875
876 cup->cu_msg.cm_cmd = Cld_Create;
877 cup->cu_msg.cm_u.cm_name.cn_len = clp->cl_name.len;
878 memcpy(cup->cu_msg.cm_u.cm_name.cn_id, clp->cl_name.data,
879 clp->cl_name.len);
880
881 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_msg);
882 if (!ret) {
883 ret = cup->cu_msg.cm_status;
884 set_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
885 }
886
887 free_cld_upcall(cup);
888out_err:
889 if (ret)
890 printk(KERN_ERR "NFSD: Unable to create client "
891 "record on stable storage: %d\n", ret);
892}
893
894/* Ask daemon to create a new record */
895static void
896nfsd4_cld_remove(struct nfs4_client *clp)
897{
898 int ret;
899 struct cld_upcall *cup;
900 /* FIXME: determine net from clp */
901 struct nfsd_net *nn = net_generic(&init_net, nfsd_net_id);
902 struct cld_net *cn = nn->cld_net;
903
904 /* Don't upcall if it's already removed */
905 if (!test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
906 return;
907
908 cup = alloc_cld_upcall(cn);
909 if (!cup) {
910 ret = -ENOMEM;
911 goto out_err;
912 }
913
914 cup->cu_msg.cm_cmd = Cld_Remove;
915 cup->cu_msg.cm_u.cm_name.cn_len = clp->cl_name.len;
916 memcpy(cup->cu_msg.cm_u.cm_name.cn_id, clp->cl_name.data,
917 clp->cl_name.len);
918
919 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_msg);
920 if (!ret) {
921 ret = cup->cu_msg.cm_status;
922 clear_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
923 }
924
925 free_cld_upcall(cup);
926out_err:
927 if (ret)
928 printk(KERN_ERR "NFSD: Unable to remove client "
929 "record from stable storage: %d\n", ret);
930}
931
932/* Check for presence of a record, and update its timestamp */
933static int
934nfsd4_cld_check(struct nfs4_client *clp)
935{
936 int ret;
937 struct cld_upcall *cup;
938 /* FIXME: determine net from clp */
939 struct nfsd_net *nn = net_generic(&init_net, nfsd_net_id);
940 struct cld_net *cn = nn->cld_net;
941
942 /* Don't upcall if one was already stored during this grace pd */
943 if (test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
944 return 0;
945
946 cup = alloc_cld_upcall(cn);
947 if (!cup) {
948 printk(KERN_ERR "NFSD: Unable to check client record on "
949 "stable storage: %d\n", -ENOMEM);
950 return -ENOMEM;
951 }
952
953 cup->cu_msg.cm_cmd = Cld_Check;
954 cup->cu_msg.cm_u.cm_name.cn_len = clp->cl_name.len;
955 memcpy(cup->cu_msg.cm_u.cm_name.cn_id, clp->cl_name.data,
956 clp->cl_name.len);
957
958 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_msg);
959 if (!ret) {
960 ret = cup->cu_msg.cm_status;
961 set_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
962 }
963
964 free_cld_upcall(cup);
965 return ret;
966}
967
968static void
969nfsd4_cld_grace_done(struct net *net, time_t boot_time)
970{
971 int ret;
972 struct cld_upcall *cup;
973 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
974 struct cld_net *cn = nn->cld_net;
975
976 cup = alloc_cld_upcall(cn);
977 if (!cup) {
978 ret = -ENOMEM;
979 goto out_err;
980 }
981
982 cup->cu_msg.cm_cmd = Cld_GraceDone;
983 cup->cu_msg.cm_u.cm_gracetime = (int64_t)boot_time;
984 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_msg);
985 if (!ret)
986 ret = cup->cu_msg.cm_status;
987
988 free_cld_upcall(cup);
989out_err:
990 if (ret)
991 printk(KERN_ERR "NFSD: Unable to end grace period: %d\n", ret);
992}
993
994static struct nfsd4_client_tracking_ops nfsd4_cld_tracking_ops = {
995 .init = nfsd4_init_cld_pipe,
996 .exit = nfsd4_remove_cld_pipe,
997 .create = nfsd4_cld_create,
998 .remove = nfsd4_cld_remove,
999 .check = nfsd4_cld_check,
1000 .grace_done = nfsd4_cld_grace_done,
1001};
1002
Jeff Layton2873d212012-11-12 15:00:48 -05001003/* upcall via usermodehelper */
1004static char cltrack_prog[PATH_MAX] = "/sbin/nfsdcltrack";
1005module_param_string(cltrack_prog, cltrack_prog, sizeof(cltrack_prog),
1006 S_IRUGO|S_IWUSR);
1007MODULE_PARM_DESC(cltrack_prog, "Path to the nfsdcltrack upcall program");
1008
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001009static bool cltrack_legacy_disable;
1010module_param(cltrack_legacy_disable, bool, S_IRUGO|S_IWUSR);
1011MODULE_PARM_DESC(cltrack_legacy_disable,
1012 "Disable legacy recoverydir conversion. Default: false");
1013
1014#define LEGACY_TOPDIR_ENV_PREFIX "NFSDCLTRACK_LEGACY_TOPDIR="
1015#define LEGACY_RECDIR_ENV_PREFIX "NFSDCLTRACK_LEGACY_RECDIR="
1016
1017static char *
1018nfsd4_cltrack_legacy_topdir(void)
Jeff Layton2873d212012-11-12 15:00:48 -05001019{
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001020 int copied;
1021 size_t len;
1022 char *result;
1023
1024 if (cltrack_legacy_disable)
1025 return NULL;
1026
1027 len = strlen(LEGACY_TOPDIR_ENV_PREFIX) +
1028 strlen(nfs4_recoverydir()) + 1;
1029
1030 result = kmalloc(len, GFP_KERNEL);
1031 if (!result)
1032 return result;
1033
1034 copied = snprintf(result, len, LEGACY_TOPDIR_ENV_PREFIX "%s",
1035 nfs4_recoverydir());
1036 if (copied >= len) {
1037 /* just return nothing if output was truncated */
1038 kfree(result);
1039 return NULL;
1040 }
1041
1042 return result;
1043}
1044
1045static char *
Jeff Layton2216d442012-11-12 15:00:57 -05001046nfsd4_cltrack_legacy_recdir(const struct xdr_netobj *name)
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001047{
1048 int copied;
1049 size_t len;
1050 char *result;
1051
1052 if (cltrack_legacy_disable)
1053 return NULL;
1054
1055 /* +1 is for '/' between "topdir" and "recdir" */
1056 len = strlen(LEGACY_RECDIR_ENV_PREFIX) +
1057 strlen(nfs4_recoverydir()) + 1 + HEXDIR_LEN;
1058
1059 result = kmalloc(len, GFP_KERNEL);
1060 if (!result)
1061 return result;
1062
Jeff Layton2216d442012-11-12 15:00:57 -05001063 copied = snprintf(result, len, LEGACY_RECDIR_ENV_PREFIX "%s/",
1064 nfs4_recoverydir());
1065 if (copied > (len - HEXDIR_LEN)) {
1066 /* just return nothing if output will be truncated */
1067 kfree(result);
1068 return NULL;
1069 }
1070
1071 copied = nfs4_make_rec_clidname(result + copied, name);
1072 if (copied) {
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001073 kfree(result);
1074 return NULL;
1075 }
1076
1077 return result;
1078}
1079
1080static int
1081nfsd4_umh_cltrack_upcall(char *cmd, char *arg, char *legacy)
1082{
1083 char *envp[2];
Jeff Layton2873d212012-11-12 15:00:48 -05001084 char *argv[4];
1085 int ret;
1086
1087 if (unlikely(!cltrack_prog[0])) {
1088 dprintk("%s: cltrack_prog is disabled\n", __func__);
1089 return -EACCES;
1090 }
1091
1092 dprintk("%s: cmd: %s\n", __func__, cmd);
1093 dprintk("%s: arg: %s\n", __func__, arg ? arg : "(null)");
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001094 dprintk("%s: legacy: %s\n", __func__, legacy ? legacy : "(null)");
1095
1096 envp[0] = legacy;
1097 envp[1] = NULL;
Jeff Layton2873d212012-11-12 15:00:48 -05001098
1099 argv[0] = (char *)cltrack_prog;
1100 argv[1] = cmd;
1101 argv[2] = arg;
1102 argv[3] = NULL;
1103
1104 ret = call_usermodehelper(argv[0], argv, envp, UMH_WAIT_PROC);
1105 /*
1106 * Disable the upcall mechanism if we're getting an ENOENT or EACCES
1107 * error. The admin can re-enable it on the fly by using sysfs
1108 * once the problem has been fixed.
1109 */
1110 if (ret == -ENOENT || ret == -EACCES) {
1111 dprintk("NFSD: %s was not found or isn't executable (%d). "
1112 "Setting cltrack_prog to blank string!",
1113 cltrack_prog, ret);
1114 cltrack_prog[0] = '\0';
1115 }
1116 dprintk("%s: %s return value: %d\n", __func__, cltrack_prog, ret);
1117
1118 return ret;
1119}
1120
1121static char *
1122bin_to_hex_dup(const unsigned char *src, int srclen)
1123{
1124 int i;
1125 char *buf, *hex;
1126
1127 /* +1 for terminating NULL */
1128 buf = kmalloc((srclen * 2) + 1, GFP_KERNEL);
1129 if (!buf)
1130 return buf;
1131
1132 hex = buf;
1133 for (i = 0; i < srclen; i++) {
1134 sprintf(hex, "%2.2x", *src++);
1135 hex += 2;
1136 }
1137 return buf;
1138}
1139
1140static int
1141nfsd4_umh_cltrack_init(struct net __attribute__((unused)) *net)
1142{
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001143 return nfsd4_umh_cltrack_upcall("init", NULL, NULL);
Jeff Layton2873d212012-11-12 15:00:48 -05001144}
1145
1146static void
1147nfsd4_umh_cltrack_create(struct nfs4_client *clp)
1148{
1149 char *hexid;
1150
1151 hexid = bin_to_hex_dup(clp->cl_name.data, clp->cl_name.len);
1152 if (!hexid) {
1153 dprintk("%s: can't allocate memory for upcall!\n", __func__);
1154 return;
1155 }
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001156 nfsd4_umh_cltrack_upcall("create", hexid, NULL);
Jeff Layton2873d212012-11-12 15:00:48 -05001157 kfree(hexid);
1158}
1159
1160static void
1161nfsd4_umh_cltrack_remove(struct nfs4_client *clp)
1162{
1163 char *hexid;
1164
1165 hexid = bin_to_hex_dup(clp->cl_name.data, clp->cl_name.len);
1166 if (!hexid) {
1167 dprintk("%s: can't allocate memory for upcall!\n", __func__);
1168 return;
1169 }
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001170 nfsd4_umh_cltrack_upcall("remove", hexid, NULL);
Jeff Layton2873d212012-11-12 15:00:48 -05001171 kfree(hexid);
1172}
1173
1174static int
1175nfsd4_umh_cltrack_check(struct nfs4_client *clp)
1176{
1177 int ret;
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001178 char *hexid, *legacy;
Jeff Layton2873d212012-11-12 15:00:48 -05001179
1180 hexid = bin_to_hex_dup(clp->cl_name.data, clp->cl_name.len);
1181 if (!hexid) {
1182 dprintk("%s: can't allocate memory for upcall!\n", __func__);
1183 return -ENOMEM;
1184 }
Jeff Layton2216d442012-11-12 15:00:57 -05001185 legacy = nfsd4_cltrack_legacy_recdir(&clp->cl_name);
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001186 ret = nfsd4_umh_cltrack_upcall("check", hexid, legacy);
1187 kfree(legacy);
Jeff Layton2873d212012-11-12 15:00:48 -05001188 kfree(hexid);
1189 return ret;
1190}
1191
1192static void
1193nfsd4_umh_cltrack_grace_done(struct net __attribute__((unused)) *net,
1194 time_t boot_time)
1195{
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001196 char *legacy;
Jeff Layton2873d212012-11-12 15:00:48 -05001197 char timestr[22]; /* FIXME: better way to determine max size? */
1198
1199 sprintf(timestr, "%ld", boot_time);
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001200 legacy = nfsd4_cltrack_legacy_topdir();
1201 nfsd4_umh_cltrack_upcall("gracedone", timestr, legacy);
1202 kfree(legacy);
Jeff Layton2873d212012-11-12 15:00:48 -05001203}
1204
1205static struct nfsd4_client_tracking_ops nfsd4_umh_tracking_ops = {
1206 .init = nfsd4_umh_cltrack_init,
1207 .exit = NULL,
1208 .create = nfsd4_umh_cltrack_create,
1209 .remove = nfsd4_umh_cltrack_remove,
1210 .check = nfsd4_umh_cltrack_check,
1211 .grace_done = nfsd4_umh_cltrack_grace_done,
1212};
1213
Jeff Layton2a4317c2012-03-21 16:42:43 -04001214int
1215nfsd4_client_tracking_init(struct net *net)
1216{
1217 int status;
Jeff Laytonf3f80142012-03-21 09:52:07 -04001218 struct path path;
Jeff Layton2a4317c2012-03-21 16:42:43 -04001219
Jeff Layton2d77bf02012-11-12 15:00:49 -05001220 /* just run the init if it the method is already decided */
1221 if (client_tracking_ops)
1222 goto do_init;
1223
1224 /*
1225 * First, try a UMH upcall. It should succeed or fail quickly, so
1226 * there's little harm in trying that first.
1227 */
1228 client_tracking_ops = &nfsd4_umh_tracking_ops;
1229 status = client_tracking_ops->init(net);
1230 if (!status)
1231 return status;
1232
1233 /*
1234 * See if the recoverydir exists and is a directory. If it is,
1235 * then use the legacy ops.
1236 */
1237 client_tracking_ops = &nfsd4_legacy_tracking_ops;
1238 status = kern_path(nfs4_recoverydir(), LOOKUP_FOLLOW, &path);
1239 if (!status) {
1240 status = S_ISDIR(path.dentry->d_inode->i_mode);
1241 path_put(&path);
1242 if (status)
1243 goto do_init;
Jeff Laytonf3f80142012-03-21 09:52:07 -04001244 }
Jeff Layton2a4317c2012-03-21 16:42:43 -04001245
Jeff Layton2d77bf02012-11-12 15:00:49 -05001246 /* Finally, try to use nfsdcld */
1247 client_tracking_ops = &nfsd4_cld_tracking_ops;
Jeff Layton8b0554e2012-11-12 15:00:51 -05001248 printk(KERN_WARNING "NFSD: the nfsdcld client tracking upcall will be "
1249 "removed in 3.10. Please transition to using "
1250 "nfsdcltrack.\n");
Jeff Layton2d77bf02012-11-12 15:00:49 -05001251do_init:
Jeff Layton2a4317c2012-03-21 16:42:43 -04001252 status = client_tracking_ops->init(net);
1253 if (status) {
1254 printk(KERN_WARNING "NFSD: Unable to initialize client "
1255 "recovery tracking! (%d)\n", status);
1256 client_tracking_ops = NULL;
1257 }
1258 return status;
1259}
1260
1261void
1262nfsd4_client_tracking_exit(struct net *net)
1263{
1264 if (client_tracking_ops) {
Jeff Layton2873d212012-11-12 15:00:48 -05001265 if (client_tracking_ops->exit)
1266 client_tracking_ops->exit(net);
Jeff Layton2a4317c2012-03-21 16:42:43 -04001267 client_tracking_ops = NULL;
1268 }
1269}
1270
1271void
1272nfsd4_client_record_create(struct nfs4_client *clp)
1273{
1274 if (client_tracking_ops)
1275 client_tracking_ops->create(clp);
1276}
1277
1278void
1279nfsd4_client_record_remove(struct nfs4_client *clp)
1280{
1281 if (client_tracking_ops)
1282 client_tracking_ops->remove(clp);
1283}
1284
1285int
1286nfsd4_client_record_check(struct nfs4_client *clp)
1287{
1288 if (client_tracking_ops)
1289 return client_tracking_ops->check(clp);
1290
1291 return -EOPNOTSUPP;
1292}
1293
1294void
1295nfsd4_record_grace_done(struct net *net, time_t boot_time)
1296{
1297 if (client_tracking_ops)
1298 client_tracking_ops->grace_done(net, boot_time);
1299}
Jeff Layton813fd322012-03-21 09:52:08 -04001300
1301static int
1302rpc_pipefs_event(struct notifier_block *nb, unsigned long event, void *ptr)
1303{
1304 struct super_block *sb = ptr;
1305 struct net *net = sb->s_fs_info;
1306 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1307 struct cld_net *cn = nn->cld_net;
1308 struct dentry *dentry;
1309 int ret = 0;
1310
1311 if (!try_module_get(THIS_MODULE))
1312 return 0;
1313
1314 if (!cn) {
1315 module_put(THIS_MODULE);
1316 return 0;
1317 }
1318
1319 switch (event) {
1320 case RPC_PIPEFS_MOUNT:
1321 dentry = nfsd4_cld_register_sb(sb, cn->cn_pipe);
1322 if (IS_ERR(dentry)) {
1323 ret = PTR_ERR(dentry);
1324 break;
1325 }
1326 cn->cn_pipe->dentry = dentry;
1327 break;
1328 case RPC_PIPEFS_UMOUNT:
1329 if (cn->cn_pipe->dentry)
1330 nfsd4_cld_unregister_sb(cn->cn_pipe);
1331 break;
1332 default:
1333 ret = -ENOTSUPP;
1334 break;
1335 }
1336 module_put(THIS_MODULE);
1337 return ret;
1338}
1339
J. Bruce Fields2355c592012-04-25 16:56:22 -04001340static struct notifier_block nfsd4_cld_block = {
Jeff Layton813fd322012-03-21 09:52:08 -04001341 .notifier_call = rpc_pipefs_event,
1342};
Jeff Layton797a9d72012-03-29 07:52:49 -04001343
1344int
1345register_cld_notifier(void)
1346{
1347 return rpc_pipefs_notifier_register(&nfsd4_cld_block);
1348}
1349
1350void
1351unregister_cld_notifier(void)
1352{
1353 rpc_pipefs_notifier_unregister(&nfsd4_cld_block);
1354}