blob: 6523809839c3ce853f70981d4f233b5439041464 [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.
3* All rights reserved.
4*
5* Andy Adamson <andros@citi.umich.edu>
6*
7* Redistribution and use in source and binary forms, with or without
8* modification, are permitted provided that the following conditions
9* are met:
10*
11* 1. Redistributions of source code must retain the above copyright
12* notice, this list of conditions and the following disclaimer.
13* 2. Redistributions in binary form must reproduce the above copyright
14* notice, this list of conditions and the following disclaimer in the
15* documentation and/or other materials provided with the distribution.
16* 3. Neither the name of the University nor the names of its
17* contributors may be used to endorse or promote products derived
18* from this software without specific prior written permission.
19*
20* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
21* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
22* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
23* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
24* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
25* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
26* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
27* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
28* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
29* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
30* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31*
32*/
33
NeilBrown190e4fb2005-06-23 22:04:25 -070034#include <linux/file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
NeilBrown190e4fb2005-06-23 22:04:25 -070036#include <linux/namei.h>
NeilBrowna55370a2005-06-23 22:03:52 -070037#include <linux/crypto.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040038#include <linux/sched.h>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020039
40#include "nfsd.h"
41#include "state.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050042#include "vfs.h"
NeilBrowna55370a2005-06-23 22:03:52 -070043
44#define NFSDDBG_FACILITY NFSDDBG_PROC
45
NeilBrown190e4fb2005-06-23 22:04:25 -070046/* Globals */
Christoph Hellwige970a572010-03-22 17:32:14 +010047static struct file *rec_file;
J. Bruce Fields48483bf2011-08-26 20:40:28 -040048static char user_recovery_dirname[PATH_MAX] = "/var/lib/nfs/v4recovery";
NeilBrown190e4fb2005-06-23 22:04:25 -070049
David Howellsd84f4f92008-11-14 10:39:23 +110050static int
51nfs4_save_creds(const struct cred **original_creds)
NeilBrown190e4fb2005-06-23 22:04:25 -070052{
David Howellsd84f4f92008-11-14 10:39:23 +110053 struct cred *new;
54
55 new = prepare_creds();
56 if (!new)
57 return -ENOMEM;
58
59 new->fsuid = 0;
60 new->fsgid = 0;
61 *original_creds = override_creds(new);
62 put_cred(new);
63 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -070064}
65
66static void
David Howellsd84f4f92008-11-14 10:39:23 +110067nfs4_reset_creds(const struct cred *original)
NeilBrown190e4fb2005-06-23 22:04:25 -070068{
David Howellsd84f4f92008-11-14 10:39:23 +110069 revert_creds(original);
NeilBrown190e4fb2005-06-23 22:04:25 -070070}
71
NeilBrowna55370a2005-06-23 22:03:52 -070072static void
73md5_to_hex(char *out, char *md5)
74{
75 int i;
76
77 for (i=0; i<16; i++) {
78 unsigned char c = md5[i];
79
80 *out++ = '0' + ((c&0xf0)>>4) + (c>=0xa0)*('a'-'9'-1);
81 *out++ = '0' + (c&0x0f) + ((c&0x0f)>=0x0a)*('a'-'9'-1);
82 }
83 *out = '\0';
84}
85
Al Virob37ad282006-10-19 23:28:59 -070086__be32
NeilBrowna55370a2005-06-23 22:03:52 -070087nfs4_make_rec_clidname(char *dname, struct xdr_netobj *clname)
88{
89 struct xdr_netobj cksum;
Herbert Xu35058682006-08-24 19:10:20 +100090 struct hash_desc desc;
Jens Axboe60c74f82007-10-22 19:43:30 +020091 struct scatterlist sg;
J. Bruce Fields3e772462011-08-10 19:07:33 -040092 __be32 status = nfserr_jukebox;
NeilBrowna55370a2005-06-23 22:03:52 -070093
94 dprintk("NFSD: nfs4_make_rec_clidname for %.*s\n",
95 clname->len, clname->data);
Herbert Xu35058682006-08-24 19:10:20 +100096 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
97 desc.tfm = crypto_alloc_hash("md5", 0, CRYPTO_ALG_ASYNC);
98 if (IS_ERR(desc.tfm))
99 goto out_no_tfm;
100 cksum.len = crypto_hash_digestsize(desc.tfm);
NeilBrowna55370a2005-06-23 22:03:52 -0700101 cksum.data = kmalloc(cksum.len, GFP_KERNEL);
102 if (cksum.data == NULL)
103 goto out;
NeilBrowna55370a2005-06-23 22:03:52 -0700104
Jens Axboe60c74f82007-10-22 19:43:30 +0200105 sg_init_one(&sg, clname->data, clname->len);
NeilBrowna55370a2005-06-23 22:03:52 -0700106
Jens Axboe60c74f82007-10-22 19:43:30 +0200107 if (crypto_hash_digest(&desc, &sg, sg.length, cksum.data))
Herbert Xu35058682006-08-24 19:10:20 +1000108 goto out;
NeilBrowna55370a2005-06-23 22:03:52 -0700109
110 md5_to_hex(dname, cksum.data);
111
NeilBrowna55370a2005-06-23 22:03:52 -0700112 status = nfs_ok;
113out:
Krishna Kumar2bd9e7b2008-10-20 11:47:09 +0530114 kfree(cksum.data);
Herbert Xu35058682006-08-24 19:10:20 +1000115 crypto_free_hash(desc.tfm);
116out_no_tfm:
NeilBrowna55370a2005-06-23 22:03:52 -0700117 return status;
118}
NeilBrown190e4fb2005-06-23 22:04:25 -0700119
J. Bruce Fields7a6ef8c2012-01-05 15:38:41 -0500120void nfsd4_create_clid_dir(struct nfs4_client *clp)
NeilBrownc7b9a452005-06-23 22:04:30 -0700121{
David Howellsd84f4f92008-11-14 10:39:23 +1100122 const struct cred *original_cred;
NeilBrownc7b9a452005-06-23 22:04:30 -0700123 char *dname = clp->cl_recdir;
Christoph Hellwige970a572010-03-22 17:32:14 +0100124 struct dentry *dir, *dentry;
NeilBrownc7b9a452005-06-23 22:04:30 -0700125 int status;
126
127 dprintk("NFSD: nfsd4_create_clid_dir for \"%s\"\n", dname);
128
Jeff Laytona52d7262012-03-21 09:52:02 -0400129 if (test_and_set_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
J. Bruce Fields7a6ef8c2012-01-05 15:38:41 -0500130 return;
J. Bruce Fieldsb8548892012-01-02 17:49:12 -0500131 if (!rec_file)
J. Bruce Fields7a6ef8c2012-01-05 15:38:41 -0500132 return;
David Howellsd84f4f92008-11-14 10:39:23 +1100133 status = nfs4_save_creds(&original_cred);
134 if (status < 0)
J. Bruce Fields7a6ef8c2012-01-05 15:38:41 -0500135 return;
NeilBrownc7b9a452005-06-23 22:04:30 -0700136
Christoph Hellwige970a572010-03-22 17:32:14 +0100137 dir = rec_file->f_path.dentry;
NeilBrownc7b9a452005-06-23 22:04:30 -0700138 /* lock the parent */
Christoph Hellwige970a572010-03-22 17:32:14 +0100139 mutex_lock(&dir->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700140
Christoph Hellwige970a572010-03-22 17:32:14 +0100141 dentry = lookup_one_len(dname, dir, HEXDIR_LEN-1);
NeilBrownc7b9a452005-06-23 22:04:30 -0700142 if (IS_ERR(dentry)) {
143 status = PTR_ERR(dentry);
144 goto out_unlock;
145 }
Boaz Harrosh6577aac2011-08-12 17:30:12 -0700146 if (dentry->d_inode)
J. Bruce Fieldsaec39682012-01-02 17:30:05 -0500147 /*
148 * In the 4.1 case, where we're called from
149 * reclaim_complete(), records from the previous reboot
150 * may still be left, so this is OK.
151 *
152 * In the 4.0 case, we should never get here; but we may
153 * as well be forgiving and just succeed silently.
154 */
NeilBrownc7b9a452005-06-23 22:04:30 -0700155 goto out_put;
Al Viroa561be72011-11-23 11:57:51 -0500156 status = mnt_want_write_file(rec_file);
Dave Hansen463c3192008-02-15 14:37:57 -0800157 if (status)
158 goto out_put;
Christoph Hellwige970a572010-03-22 17:32:14 +0100159 status = vfs_mkdir(dir->d_inode, dentry, S_IRWXU);
Al Viro2a79f172011-12-09 08:06:57 -0500160 mnt_drop_write_file(rec_file);
NeilBrownc7b9a452005-06-23 22:04:30 -0700161out_put:
162 dput(dentry);
163out_unlock:
Christoph Hellwige970a572010-03-22 17:32:14 +0100164 mutex_unlock(&dir->d_inode->i_mutex);
Boaz Harrosh6577aac2011-08-12 17:30:12 -0700165 if (status == 0)
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100166 vfs_fsync(rec_file, 0);
Boaz Harrosh6577aac2011-08-12 17:30:12 -0700167 else
168 printk(KERN_ERR "NFSD: failed to write recovery record"
169 " (err %d); please check that %s exists"
170 " and is writeable", status,
171 user_recovery_dirname);
David Howellsd84f4f92008-11-14 10:39:23 +1100172 nfs4_reset_creds(original_cred);
NeilBrownc7b9a452005-06-23 22:04:30 -0700173}
174
NeilBrown190e4fb2005-06-23 22:04:25 -0700175typedef int (recdir_func)(struct dentry *, struct dentry *);
176
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400177struct name_list {
178 char name[HEXDIR_LEN];
NeilBrown190e4fb2005-06-23 22:04:25 -0700179 struct list_head list;
180};
181
NeilBrown190e4fb2005-06-23 22:04:25 -0700182static int
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400183nfsd4_build_namelist(void *arg, const char *name, int namlen,
David Howellsafefdbb2006-10-03 01:13:46 -0700184 loff_t offset, u64 ino, unsigned int d_type)
NeilBrown190e4fb2005-06-23 22:04:25 -0700185{
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400186 struct list_head *names = arg;
187 struct name_list *entry;
NeilBrown190e4fb2005-06-23 22:04:25 -0700188
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400189 if (namlen != HEXDIR_LEN - 1)
Al Virob37ad282006-10-19 23:28:59 -0700190 return 0;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400191 entry = kmalloc(sizeof(struct name_list), GFP_KERNEL);
192 if (entry == NULL)
NeilBrown190e4fb2005-06-23 22:04:25 -0700193 return -ENOMEM;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400194 memcpy(entry->name, name, HEXDIR_LEN - 1);
195 entry->name[HEXDIR_LEN - 1] = '\0';
196 list_add(&entry->list, names);
NeilBrown190e4fb2005-06-23 22:04:25 -0700197 return 0;
198}
199
200static int
Al Viro5b4b2992011-07-07 18:43:21 -0400201nfsd4_list_rec_dir(recdir_func *f)
NeilBrown190e4fb2005-06-23 22:04:25 -0700202{
David Howellsd84f4f92008-11-14 10:39:23 +1100203 const struct cred *original_cred;
Al Viro5b4b2992011-07-07 18:43:21 -0400204 struct dentry *dir = rec_file->f_path.dentry;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400205 LIST_HEAD(names);
NeilBrown190e4fb2005-06-23 22:04:25 -0700206 int status;
207
David Howellsd84f4f92008-11-14 10:39:23 +1100208 status = nfs4_save_creds(&original_cred);
209 if (status < 0)
210 return status;
NeilBrown190e4fb2005-06-23 22:04:25 -0700211
Al Viro5b4b2992011-07-07 18:43:21 -0400212 status = vfs_llseek(rec_file, 0, SEEK_SET);
213 if (status < 0) {
214 nfs4_reset_creds(original_cred);
215 return status;
216 }
217
218 status = vfs_readdir(rec_file, nfsd4_build_namelist, &names);
J. Bruce Fields8daed1e2009-05-11 16:10:19 -0400219 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT);
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400220 while (!list_empty(&names)) {
Al Viro5b4b2992011-07-07 18:43:21 -0400221 struct name_list *entry;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400222 entry = list_entry(names.next, struct name_list, list);
Al Viro5b4b2992011-07-07 18:43:21 -0400223 if (!status) {
224 struct dentry *dentry;
225 dentry = lookup_one_len(entry->name, dir, HEXDIR_LEN-1);
226 if (IS_ERR(dentry)) {
227 status = PTR_ERR(dentry);
228 break;
229 }
230 status = f(dir, dentry);
231 dput(dentry);
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400232 }
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400233 list_del(&entry->list);
234 kfree(entry);
NeilBrown190e4fb2005-06-23 22:04:25 -0700235 }
David Woodhouse2f9092e2009-04-20 23:18:37 +0100236 mutex_unlock(&dir->d_inode->i_mutex);
David Howellsd84f4f92008-11-14 10:39:23 +1100237 nfs4_reset_creds(original_cred);
NeilBrown190e4fb2005-06-23 22:04:25 -0700238 return status;
239}
240
241static int
NeilBrownc7b9a452005-06-23 22:04:30 -0700242nfsd4_unlink_clid_dir(char *name, int namlen)
243{
Christoph Hellwige970a572010-03-22 17:32:14 +0100244 struct dentry *dir, *dentry;
NeilBrownc7b9a452005-06-23 22:04:30 -0700245 int status;
246
247 dprintk("NFSD: nfsd4_unlink_clid_dir. name %.*s\n", namlen, name);
248
Christoph Hellwige970a572010-03-22 17:32:14 +0100249 dir = rec_file->f_path.dentry;
250 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT);
251 dentry = lookup_one_len(name, dir, namlen);
NeilBrownc7b9a452005-06-23 22:04:30 -0700252 if (IS_ERR(dentry)) {
253 status = PTR_ERR(dentry);
David Woodhouse2f9092e2009-04-20 23:18:37 +0100254 goto out_unlock;
NeilBrownc7b9a452005-06-23 22:04:30 -0700255 }
256 status = -ENOENT;
257 if (!dentry->d_inode)
258 goto out;
Christoph Hellwige970a572010-03-22 17:32:14 +0100259 status = vfs_rmdir(dir->d_inode, dentry);
NeilBrownc7b9a452005-06-23 22:04:30 -0700260out:
261 dput(dentry);
David Woodhouse2f9092e2009-04-20 23:18:37 +0100262out_unlock:
Christoph Hellwige970a572010-03-22 17:32:14 +0100263 mutex_unlock(&dir->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700264 return status;
265}
266
267void
268nfsd4_remove_clid_dir(struct nfs4_client *clp)
269{
David Howellsd84f4f92008-11-14 10:39:23 +1100270 const struct cred *original_cred;
NeilBrownc7b9a452005-06-23 22:04:30 -0700271 int status;
272
Jeff Laytona52d7262012-03-21 09:52:02 -0400273 if (!rec_file || !test_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags))
NeilBrownc7b9a452005-06-23 22:04:30 -0700274 return;
275
Al Viroa561be72011-11-23 11:57:51 -0500276 status = mnt_want_write_file(rec_file);
Dave Hansen06227532008-02-15 14:37:34 -0800277 if (status)
278 goto out;
Jeff Laytona52d7262012-03-21 09:52:02 -0400279 clear_bit(NFSD4_CLIENT_STABLE, &clp->cl_flags);
David Howellsd84f4f92008-11-14 10:39:23 +1100280
281 status = nfs4_save_creds(&original_cred);
282 if (status < 0)
283 goto out;
284
NeilBrownc7b9a452005-06-23 22:04:30 -0700285 status = nfsd4_unlink_clid_dir(clp->cl_recdir, HEXDIR_LEN-1);
David Howellsd84f4f92008-11-14 10:39:23 +1100286 nfs4_reset_creds(original_cred);
NeilBrownc7b9a452005-06-23 22:04:30 -0700287 if (status == 0)
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100288 vfs_fsync(rec_file, 0);
Al Viro2a79f172011-12-09 08:06:57 -0500289 mnt_drop_write_file(rec_file);
Dave Hansen06227532008-02-15 14:37:34 -0800290out:
NeilBrownc7b9a452005-06-23 22:04:30 -0700291 if (status)
292 printk("NFSD: Failed to remove expired client state directory"
293 " %.*s\n", HEXDIR_LEN, clp->cl_recdir);
294 return;
295}
296
297static int
298purge_old(struct dentry *parent, struct dentry *child)
299{
300 int status;
301
Andy Adamsona1bcecd2009-04-03 08:28:05 +0300302 if (nfs4_has_reclaimed_state(child->d_name.name, false))
Al Virob37ad282006-10-19 23:28:59 -0700303 return 0;
NeilBrownc7b9a452005-06-23 22:04:30 -0700304
David Woodhouse2f9092e2009-04-20 23:18:37 +0100305 status = vfs_rmdir(parent->d_inode, child);
NeilBrownc7b9a452005-06-23 22:04:30 -0700306 if (status)
307 printk("failed to remove client recovery directory %s\n",
308 child->d_name.name);
309 /* Keep trying, success or failure: */
Al Virob37ad282006-10-19 23:28:59 -0700310 return 0;
NeilBrownc7b9a452005-06-23 22:04:30 -0700311}
312
313void
314nfsd4_recdir_purge_old(void) {
315 int status;
316
Christoph Hellwige970a572010-03-22 17:32:14 +0100317 if (!rec_file)
NeilBrownc7b9a452005-06-23 22:04:30 -0700318 return;
Al Viroa561be72011-11-23 11:57:51 -0500319 status = mnt_want_write_file(rec_file);
Dave Hansen06227532008-02-15 14:37:34 -0800320 if (status)
321 goto out;
Al Viro5b4b2992011-07-07 18:43:21 -0400322 status = nfsd4_list_rec_dir(purge_old);
NeilBrownc7b9a452005-06-23 22:04:30 -0700323 if (status == 0)
Christoph Hellwig8018ab02010-03-22 17:32:25 +0100324 vfs_fsync(rec_file, 0);
Al Viro2a79f172011-12-09 08:06:57 -0500325 mnt_drop_write_file(rec_file);
Dave Hansen06227532008-02-15 14:37:34 -0800326out:
NeilBrownc7b9a452005-06-23 22:04:30 -0700327 if (status)
328 printk("nfsd4: failed to purge old clients from recovery"
Christoph Hellwige970a572010-03-22 17:32:14 +0100329 " directory %s\n", rec_file->f_path.dentry->d_name.name);
NeilBrownc7b9a452005-06-23 22:04:30 -0700330}
331
332static int
NeilBrown190e4fb2005-06-23 22:04:25 -0700333load_recdir(struct dentry *parent, struct dentry *child)
334{
335 if (child->d_name.len != HEXDIR_LEN - 1) {
336 printk("nfsd4: illegal name %s in recovery directory\n",
337 child->d_name.name);
338 /* Keep trying; maybe the others are OK: */
Al Virob37ad282006-10-19 23:28:59 -0700339 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -0700340 }
341 nfs4_client_to_reclaim(child->d_name.name);
Al Virob37ad282006-10-19 23:28:59 -0700342 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -0700343}
344
345int
346nfsd4_recdir_load(void) {
347 int status;
348
Christoph Hellwige970a572010-03-22 17:32:14 +0100349 if (!rec_file)
350 return 0;
351
Al Viro5b4b2992011-07-07 18:43:21 -0400352 status = nfsd4_list_rec_dir(load_recdir);
NeilBrown190e4fb2005-06-23 22:04:25 -0700353 if (status)
354 printk("nfsd4: failed loading clients from recovery"
Christoph Hellwige970a572010-03-22 17:32:14 +0100355 " directory %s\n", rec_file->f_path.dentry->d_name.name);
NeilBrown190e4fb2005-06-23 22:04:25 -0700356 return status;
357}
358
359/*
360 * Hold reference to the recovery directory.
361 */
362
363void
J. Bruce Fields48483bf2011-08-26 20:40:28 -0400364nfsd4_init_recdir()
NeilBrown190e4fb2005-06-23 22:04:25 -0700365{
David Howellsd84f4f92008-11-14 10:39:23 +1100366 const struct cred *original_cred;
367 int status;
NeilBrown190e4fb2005-06-23 22:04:25 -0700368
369 printk("NFSD: Using %s as the NFSv4 state recovery directory\n",
J. Bruce Fields48483bf2011-08-26 20:40:28 -0400370 user_recovery_dirname);
NeilBrown190e4fb2005-06-23 22:04:25 -0700371
Christoph Hellwige970a572010-03-22 17:32:14 +0100372 BUG_ON(rec_file);
NeilBrown190e4fb2005-06-23 22:04:25 -0700373
David Howellsd84f4f92008-11-14 10:39:23 +1100374 status = nfs4_save_creds(&original_cred);
375 if (status < 0) {
376 printk("NFSD: Unable to change credentials to find recovery"
377 " directory: error %d\n",
378 status);
379 return;
380 }
NeilBrown190e4fb2005-06-23 22:04:25 -0700381
J. Bruce Fields48483bf2011-08-26 20:40:28 -0400382 rec_file = filp_open(user_recovery_dirname, O_RDONLY | O_DIRECTORY, 0);
Christoph Hellwige970a572010-03-22 17:32:14 +0100383 if (IS_ERR(rec_file)) {
J. Bruce Fieldsc2642ab2006-01-18 17:43:29 -0800384 printk("NFSD: unable to find recovery directory %s\n",
J. Bruce Fields48483bf2011-08-26 20:40:28 -0400385 user_recovery_dirname);
Christoph Hellwige970a572010-03-22 17:32:14 +0100386 rec_file = NULL;
387 }
NeilBrown190e4fb2005-06-23 22:04:25 -0700388
David Howellsd84f4f92008-11-14 10:39:23 +1100389 nfs4_reset_creds(original_cred);
NeilBrown190e4fb2005-06-23 22:04:25 -0700390}
391
392void
393nfsd4_shutdown_recdir(void)
394{
Christoph Hellwige970a572010-03-22 17:32:14 +0100395 if (!rec_file)
NeilBrown190e4fb2005-06-23 22:04:25 -0700396 return;
Christoph Hellwige970a572010-03-22 17:32:14 +0100397 fput(rec_file);
398 rec_file = NULL;
NeilBrown190e4fb2005-06-23 22:04:25 -0700399}
J. Bruce Fields48483bf2011-08-26 20:40:28 -0400400
401/*
402 * Change the NFSv4 recovery directory to recdir.
403 */
404int
405nfs4_reset_recoverydir(char *recdir)
406{
407 int status;
408 struct path path;
409
410 status = kern_path(recdir, LOOKUP_FOLLOW, &path);
411 if (status)
412 return status;
413 status = -ENOTDIR;
414 if (S_ISDIR(path.dentry->d_inode->i_mode)) {
415 strcpy(user_recovery_dirname, recdir);
416 status = 0;
417 }
418 path_put(&path);
419 return status;
420}
421
422char *
423nfs4_recoverydir(void)
424{
425 return user_recovery_dirname;
426}