blob: 9881bcad264bb0895b9cd8a5d4b00f7eeffc0973 [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;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +0300862 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Jeff Laytonf3f80142012-03-21 09:52:07 -0400863 struct cld_net *cn = nn->cld_net;
864
865 /* Don't upcall if it's already stored */
866 if (test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
867 return;
868
869 cup = alloc_cld_upcall(cn);
870 if (!cup) {
871 ret = -ENOMEM;
872 goto out_err;
873 }
874
875 cup->cu_msg.cm_cmd = Cld_Create;
876 cup->cu_msg.cm_u.cm_name.cn_len = clp->cl_name.len;
877 memcpy(cup->cu_msg.cm_u.cm_name.cn_id, clp->cl_name.data,
878 clp->cl_name.len);
879
880 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_msg);
881 if (!ret) {
882 ret = cup->cu_msg.cm_status;
883 set_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
884 }
885
886 free_cld_upcall(cup);
887out_err:
888 if (ret)
889 printk(KERN_ERR "NFSD: Unable to create client "
890 "record on stable storage: %d\n", ret);
891}
892
893/* Ask daemon to create a new record */
894static void
895nfsd4_cld_remove(struct nfs4_client *clp)
896{
897 int ret;
898 struct cld_upcall *cup;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +0300899 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Jeff Laytonf3f80142012-03-21 09:52:07 -0400900 struct cld_net *cn = nn->cld_net;
901
902 /* Don't upcall if it's already removed */
903 if (!test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
904 return;
905
906 cup = alloc_cld_upcall(cn);
907 if (!cup) {
908 ret = -ENOMEM;
909 goto out_err;
910 }
911
912 cup->cu_msg.cm_cmd = Cld_Remove;
913 cup->cu_msg.cm_u.cm_name.cn_len = clp->cl_name.len;
914 memcpy(cup->cu_msg.cm_u.cm_name.cn_id, clp->cl_name.data,
915 clp->cl_name.len);
916
917 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_msg);
918 if (!ret) {
919 ret = cup->cu_msg.cm_status;
920 clear_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
921 }
922
923 free_cld_upcall(cup);
924out_err:
925 if (ret)
926 printk(KERN_ERR "NFSD: Unable to remove client "
927 "record from stable storage: %d\n", ret);
928}
929
930/* Check for presence of a record, and update its timestamp */
931static int
932nfsd4_cld_check(struct nfs4_client *clp)
933{
934 int ret;
935 struct cld_upcall *cup;
Stanislav Kinsburskyc212cec2012-11-14 18:21:10 +0300936 struct nfsd_net *nn = net_generic(clp->net, nfsd_net_id);
Jeff Laytonf3f80142012-03-21 09:52:07 -0400937 struct cld_net *cn = nn->cld_net;
938
939 /* Don't upcall if one was already stored during this grace pd */
940 if (test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
941 return 0;
942
943 cup = alloc_cld_upcall(cn);
944 if (!cup) {
945 printk(KERN_ERR "NFSD: Unable to check client record on "
946 "stable storage: %d\n", -ENOMEM);
947 return -ENOMEM;
948 }
949
950 cup->cu_msg.cm_cmd = Cld_Check;
951 cup->cu_msg.cm_u.cm_name.cn_len = clp->cl_name.len;
952 memcpy(cup->cu_msg.cm_u.cm_name.cn_id, clp->cl_name.data,
953 clp->cl_name.len);
954
955 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_msg);
956 if (!ret) {
957 ret = cup->cu_msg.cm_status;
958 set_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
959 }
960
961 free_cld_upcall(cup);
962 return ret;
963}
964
965static void
966nfsd4_cld_grace_done(struct net *net, time_t boot_time)
967{
968 int ret;
969 struct cld_upcall *cup;
970 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
971 struct cld_net *cn = nn->cld_net;
972
973 cup = alloc_cld_upcall(cn);
974 if (!cup) {
975 ret = -ENOMEM;
976 goto out_err;
977 }
978
979 cup->cu_msg.cm_cmd = Cld_GraceDone;
980 cup->cu_msg.cm_u.cm_gracetime = (int64_t)boot_time;
981 ret = cld_pipe_upcall(cn->cn_pipe, &cup->cu_msg);
982 if (!ret)
983 ret = cup->cu_msg.cm_status;
984
985 free_cld_upcall(cup);
986out_err:
987 if (ret)
988 printk(KERN_ERR "NFSD: Unable to end grace period: %d\n", ret);
989}
990
991static struct nfsd4_client_tracking_ops nfsd4_cld_tracking_ops = {
992 .init = nfsd4_init_cld_pipe,
993 .exit = nfsd4_remove_cld_pipe,
994 .create = nfsd4_cld_create,
995 .remove = nfsd4_cld_remove,
996 .check = nfsd4_cld_check,
997 .grace_done = nfsd4_cld_grace_done,
998};
999
Jeff Layton2873d212012-11-12 15:00:48 -05001000/* upcall via usermodehelper */
1001static char cltrack_prog[PATH_MAX] = "/sbin/nfsdcltrack";
1002module_param_string(cltrack_prog, cltrack_prog, sizeof(cltrack_prog),
1003 S_IRUGO|S_IWUSR);
1004MODULE_PARM_DESC(cltrack_prog, "Path to the nfsdcltrack upcall program");
1005
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001006static bool cltrack_legacy_disable;
1007module_param(cltrack_legacy_disable, bool, S_IRUGO|S_IWUSR);
1008MODULE_PARM_DESC(cltrack_legacy_disable,
1009 "Disable legacy recoverydir conversion. Default: false");
1010
1011#define LEGACY_TOPDIR_ENV_PREFIX "NFSDCLTRACK_LEGACY_TOPDIR="
1012#define LEGACY_RECDIR_ENV_PREFIX "NFSDCLTRACK_LEGACY_RECDIR="
1013
1014static char *
1015nfsd4_cltrack_legacy_topdir(void)
Jeff Layton2873d212012-11-12 15:00:48 -05001016{
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001017 int copied;
1018 size_t len;
1019 char *result;
1020
1021 if (cltrack_legacy_disable)
1022 return NULL;
1023
1024 len = strlen(LEGACY_TOPDIR_ENV_PREFIX) +
1025 strlen(nfs4_recoverydir()) + 1;
1026
1027 result = kmalloc(len, GFP_KERNEL);
1028 if (!result)
1029 return result;
1030
1031 copied = snprintf(result, len, LEGACY_TOPDIR_ENV_PREFIX "%s",
1032 nfs4_recoverydir());
1033 if (copied >= len) {
1034 /* just return nothing if output was truncated */
1035 kfree(result);
1036 return NULL;
1037 }
1038
1039 return result;
1040}
1041
1042static char *
Jeff Layton2216d442012-11-12 15:00:57 -05001043nfsd4_cltrack_legacy_recdir(const struct xdr_netobj *name)
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001044{
1045 int copied;
1046 size_t len;
1047 char *result;
1048
1049 if (cltrack_legacy_disable)
1050 return NULL;
1051
1052 /* +1 is for '/' between "topdir" and "recdir" */
1053 len = strlen(LEGACY_RECDIR_ENV_PREFIX) +
1054 strlen(nfs4_recoverydir()) + 1 + HEXDIR_LEN;
1055
1056 result = kmalloc(len, GFP_KERNEL);
1057 if (!result)
1058 return result;
1059
Jeff Layton2216d442012-11-12 15:00:57 -05001060 copied = snprintf(result, len, LEGACY_RECDIR_ENV_PREFIX "%s/",
1061 nfs4_recoverydir());
1062 if (copied > (len - HEXDIR_LEN)) {
1063 /* just return nothing if output will be truncated */
1064 kfree(result);
1065 return NULL;
1066 }
1067
1068 copied = nfs4_make_rec_clidname(result + copied, name);
1069 if (copied) {
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001070 kfree(result);
1071 return NULL;
1072 }
1073
1074 return result;
1075}
1076
1077static int
1078nfsd4_umh_cltrack_upcall(char *cmd, char *arg, char *legacy)
1079{
1080 char *envp[2];
Jeff Layton2873d212012-11-12 15:00:48 -05001081 char *argv[4];
1082 int ret;
1083
1084 if (unlikely(!cltrack_prog[0])) {
1085 dprintk("%s: cltrack_prog is disabled\n", __func__);
1086 return -EACCES;
1087 }
1088
1089 dprintk("%s: cmd: %s\n", __func__, cmd);
1090 dprintk("%s: arg: %s\n", __func__, arg ? arg : "(null)");
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001091 dprintk("%s: legacy: %s\n", __func__, legacy ? legacy : "(null)");
1092
1093 envp[0] = legacy;
1094 envp[1] = NULL;
Jeff Layton2873d212012-11-12 15:00:48 -05001095
1096 argv[0] = (char *)cltrack_prog;
1097 argv[1] = cmd;
1098 argv[2] = arg;
1099 argv[3] = NULL;
1100
1101 ret = call_usermodehelper(argv[0], argv, envp, UMH_WAIT_PROC);
1102 /*
1103 * Disable the upcall mechanism if we're getting an ENOENT or EACCES
1104 * error. The admin can re-enable it on the fly by using sysfs
1105 * once the problem has been fixed.
1106 */
1107 if (ret == -ENOENT || ret == -EACCES) {
1108 dprintk("NFSD: %s was not found or isn't executable (%d). "
1109 "Setting cltrack_prog to blank string!",
1110 cltrack_prog, ret);
1111 cltrack_prog[0] = '\0';
1112 }
1113 dprintk("%s: %s return value: %d\n", __func__, cltrack_prog, ret);
1114
1115 return ret;
1116}
1117
1118static char *
1119bin_to_hex_dup(const unsigned char *src, int srclen)
1120{
1121 int i;
1122 char *buf, *hex;
1123
1124 /* +1 for terminating NULL */
1125 buf = kmalloc((srclen * 2) + 1, GFP_KERNEL);
1126 if (!buf)
1127 return buf;
1128
1129 hex = buf;
1130 for (i = 0; i < srclen; i++) {
1131 sprintf(hex, "%2.2x", *src++);
1132 hex += 2;
1133 }
1134 return buf;
1135}
1136
1137static int
1138nfsd4_umh_cltrack_init(struct net __attribute__((unused)) *net)
1139{
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001140 return nfsd4_umh_cltrack_upcall("init", NULL, NULL);
Jeff Layton2873d212012-11-12 15:00:48 -05001141}
1142
1143static void
1144nfsd4_umh_cltrack_create(struct nfs4_client *clp)
1145{
1146 char *hexid;
1147
1148 hexid = bin_to_hex_dup(clp->cl_name.data, clp->cl_name.len);
1149 if (!hexid) {
1150 dprintk("%s: can't allocate memory for upcall!\n", __func__);
1151 return;
1152 }
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001153 nfsd4_umh_cltrack_upcall("create", hexid, NULL);
Jeff Layton2873d212012-11-12 15:00:48 -05001154 kfree(hexid);
1155}
1156
1157static void
1158nfsd4_umh_cltrack_remove(struct nfs4_client *clp)
1159{
1160 char *hexid;
1161
1162 hexid = bin_to_hex_dup(clp->cl_name.data, clp->cl_name.len);
1163 if (!hexid) {
1164 dprintk("%s: can't allocate memory for upcall!\n", __func__);
1165 return;
1166 }
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001167 nfsd4_umh_cltrack_upcall("remove", hexid, NULL);
Jeff Layton2873d212012-11-12 15:00:48 -05001168 kfree(hexid);
1169}
1170
1171static int
1172nfsd4_umh_cltrack_check(struct nfs4_client *clp)
1173{
1174 int ret;
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001175 char *hexid, *legacy;
Jeff Layton2873d212012-11-12 15:00:48 -05001176
1177 hexid = bin_to_hex_dup(clp->cl_name.data, clp->cl_name.len);
1178 if (!hexid) {
1179 dprintk("%s: can't allocate memory for upcall!\n", __func__);
1180 return -ENOMEM;
1181 }
Jeff Layton2216d442012-11-12 15:00:57 -05001182 legacy = nfsd4_cltrack_legacy_recdir(&clp->cl_name);
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001183 ret = nfsd4_umh_cltrack_upcall("check", hexid, legacy);
1184 kfree(legacy);
Jeff Layton2873d212012-11-12 15:00:48 -05001185 kfree(hexid);
1186 return ret;
1187}
1188
1189static void
1190nfsd4_umh_cltrack_grace_done(struct net __attribute__((unused)) *net,
1191 time_t boot_time)
1192{
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001193 char *legacy;
Jeff Layton2873d212012-11-12 15:00:48 -05001194 char timestr[22]; /* FIXME: better way to determine max size? */
1195
1196 sprintf(timestr, "%ld", boot_time);
Jeff Laytonf3aa7e242012-11-12 15:00:50 -05001197 legacy = nfsd4_cltrack_legacy_topdir();
1198 nfsd4_umh_cltrack_upcall("gracedone", timestr, legacy);
1199 kfree(legacy);
Jeff Layton2873d212012-11-12 15:00:48 -05001200}
1201
1202static struct nfsd4_client_tracking_ops nfsd4_umh_tracking_ops = {
1203 .init = nfsd4_umh_cltrack_init,
1204 .exit = NULL,
1205 .create = nfsd4_umh_cltrack_create,
1206 .remove = nfsd4_umh_cltrack_remove,
1207 .check = nfsd4_umh_cltrack_check,
1208 .grace_done = nfsd4_umh_cltrack_grace_done,
1209};
1210
Jeff Layton2a4317c2012-03-21 16:42:43 -04001211int
1212nfsd4_client_tracking_init(struct net *net)
1213{
1214 int status;
Jeff Laytonf3f80142012-03-21 09:52:07 -04001215 struct path path;
Jeff Layton2a4317c2012-03-21 16:42:43 -04001216
Jeff Layton2d77bf02012-11-12 15:00:49 -05001217 /* just run the init if it the method is already decided */
1218 if (client_tracking_ops)
1219 goto do_init;
1220
1221 /*
1222 * First, try a UMH upcall. It should succeed or fail quickly, so
1223 * there's little harm in trying that first.
1224 */
1225 client_tracking_ops = &nfsd4_umh_tracking_ops;
1226 status = client_tracking_ops->init(net);
1227 if (!status)
1228 return status;
1229
1230 /*
1231 * See if the recoverydir exists and is a directory. If it is,
1232 * then use the legacy ops.
1233 */
1234 client_tracking_ops = &nfsd4_legacy_tracking_ops;
1235 status = kern_path(nfs4_recoverydir(), LOOKUP_FOLLOW, &path);
1236 if (!status) {
1237 status = S_ISDIR(path.dentry->d_inode->i_mode);
1238 path_put(&path);
1239 if (status)
1240 goto do_init;
Jeff Laytonf3f80142012-03-21 09:52:07 -04001241 }
Jeff Layton2a4317c2012-03-21 16:42:43 -04001242
Jeff Layton2d77bf02012-11-12 15:00:49 -05001243 /* Finally, try to use nfsdcld */
1244 client_tracking_ops = &nfsd4_cld_tracking_ops;
Jeff Layton8b0554e2012-11-12 15:00:51 -05001245 printk(KERN_WARNING "NFSD: the nfsdcld client tracking upcall will be "
1246 "removed in 3.10. Please transition to using "
1247 "nfsdcltrack.\n");
Jeff Layton2d77bf02012-11-12 15:00:49 -05001248do_init:
Jeff Layton2a4317c2012-03-21 16:42:43 -04001249 status = client_tracking_ops->init(net);
1250 if (status) {
1251 printk(KERN_WARNING "NFSD: Unable to initialize client "
1252 "recovery tracking! (%d)\n", status);
1253 client_tracking_ops = NULL;
1254 }
1255 return status;
1256}
1257
1258void
1259nfsd4_client_tracking_exit(struct net *net)
1260{
1261 if (client_tracking_ops) {
Jeff Layton2873d212012-11-12 15:00:48 -05001262 if (client_tracking_ops->exit)
1263 client_tracking_ops->exit(net);
Jeff Layton2a4317c2012-03-21 16:42:43 -04001264 client_tracking_ops = NULL;
1265 }
1266}
1267
1268void
1269nfsd4_client_record_create(struct nfs4_client *clp)
1270{
1271 if (client_tracking_ops)
1272 client_tracking_ops->create(clp);
1273}
1274
1275void
1276nfsd4_client_record_remove(struct nfs4_client *clp)
1277{
1278 if (client_tracking_ops)
1279 client_tracking_ops->remove(clp);
1280}
1281
1282int
1283nfsd4_client_record_check(struct nfs4_client *clp)
1284{
1285 if (client_tracking_ops)
1286 return client_tracking_ops->check(clp);
1287
1288 return -EOPNOTSUPP;
1289}
1290
1291void
1292nfsd4_record_grace_done(struct net *net, time_t boot_time)
1293{
1294 if (client_tracking_ops)
1295 client_tracking_ops->grace_done(net, boot_time);
1296}
Jeff Layton813fd322012-03-21 09:52:08 -04001297
1298static int
1299rpc_pipefs_event(struct notifier_block *nb, unsigned long event, void *ptr)
1300{
1301 struct super_block *sb = ptr;
1302 struct net *net = sb->s_fs_info;
1303 struct nfsd_net *nn = net_generic(net, nfsd_net_id);
1304 struct cld_net *cn = nn->cld_net;
1305 struct dentry *dentry;
1306 int ret = 0;
1307
1308 if (!try_module_get(THIS_MODULE))
1309 return 0;
1310
1311 if (!cn) {
1312 module_put(THIS_MODULE);
1313 return 0;
1314 }
1315
1316 switch (event) {
1317 case RPC_PIPEFS_MOUNT:
1318 dentry = nfsd4_cld_register_sb(sb, cn->cn_pipe);
1319 if (IS_ERR(dentry)) {
1320 ret = PTR_ERR(dentry);
1321 break;
1322 }
1323 cn->cn_pipe->dentry = dentry;
1324 break;
1325 case RPC_PIPEFS_UMOUNT:
1326 if (cn->cn_pipe->dentry)
1327 nfsd4_cld_unregister_sb(cn->cn_pipe);
1328 break;
1329 default:
1330 ret = -ENOTSUPP;
1331 break;
1332 }
1333 module_put(THIS_MODULE);
1334 return ret;
1335}
1336
J. Bruce Fields2355c592012-04-25 16:56:22 -04001337static struct notifier_block nfsd4_cld_block = {
Jeff Layton813fd322012-03-21 09:52:08 -04001338 .notifier_call = rpc_pipefs_event,
1339};
Jeff Layton797a9d72012-03-29 07:52:49 -04001340
1341int
1342register_cld_notifier(void)
1343{
1344 return rpc_pipefs_notifier_register(&nfsd4_cld_block);
1345}
1346
1347void
1348unregister_cld_notifier(void)
1349{
1350 rpc_pipefs_notifier_unregister(&nfsd4_cld_block);
1351}