blob: 48742f243c25c92ed01064fa2f3b9ba358ddadd8 [file] [log] [blame]
NeilBrowna55370a2005-06-23 22:03:52 -07001/*
2* linux/fs/nfsd/nfs4recover.c
3*
4* Copyright (c) 2004 The Regents of the University of Michigan.
5* All rights reserved.
6*
7* Andy Adamson <andros@citi.umich.edu>
8*
9* Redistribution and use in source and binary forms, with or without
10* modification, are permitted provided that the following conditions
11* are met:
12*
13* 1. Redistributions of source code must retain the above copyright
14* notice, this list of conditions and the following disclaimer.
15* 2. Redistributions in binary form must reproduce the above copyright
16* notice, this list of conditions and the following disclaimer in the
17* documentation and/or other materials provided with the distribution.
18* 3. Neither the name of the University nor the names of its
19* contributors may be used to endorse or promote products derived
20* from this software without specific prior written permission.
21*
22* THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED
23* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
24* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
25* DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
27* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
28* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
29* BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
30* LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
31* NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
32* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
33*
34*/
35
NeilBrowna55370a2005-06-23 22:03:52 -070036#include <linux/nfsd/nfsd.h>
NeilBrowna55370a2005-06-23 22:03:52 -070037#include <linux/nfsd/state.h>
NeilBrown190e4fb2005-06-23 22:04:25 -070038#include <linux/file.h>
39#include <linux/namei.h>
NeilBrowna55370a2005-06-23 22:03:52 -070040#include <linux/crypto.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040041#include <linux/sched.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 */
Al Viroa63bb992008-08-02 01:03:36 -040047static struct path rec_dir;
NeilBrown190e4fb2005-06-23 22:04:25 -070048static int rec_dir_init = 0;
49
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;
Al Virob37ad282006-10-19 23:28:59 -070092 __be32 status = nfserr_resource;
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
NeilBrowna6ccbbb2005-07-07 17:59:11 -0700120static void
121nfsd4_sync_rec_dir(void)
NeilBrownc7b9a452005-06-23 22:04:30 -0700122{
Al Viroa63bb992008-08-02 01:03:36 -0400123 mutex_lock(&rec_dir.dentry->d_inode->i_mutex);
124 nfsd_sync_dir(rec_dir.dentry);
125 mutex_unlock(&rec_dir.dentry->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700126}
127
128int
129nfsd4_create_clid_dir(struct nfs4_client *clp)
130{
David Howellsd84f4f92008-11-14 10:39:23 +1100131 const struct cred *original_cred;
NeilBrownc7b9a452005-06-23 22:04:30 -0700132 char *dname = clp->cl_recdir;
133 struct dentry *dentry;
NeilBrownc7b9a452005-06-23 22:04:30 -0700134 int status;
135
136 dprintk("NFSD: nfsd4_create_clid_dir for \"%s\"\n", dname);
137
138 if (!rec_dir_init || clp->cl_firststate)
139 return 0;
140
David Howellsd84f4f92008-11-14 10:39:23 +1100141 status = nfs4_save_creds(&original_cred);
142 if (status < 0)
143 return status;
NeilBrownc7b9a452005-06-23 22:04:30 -0700144
145 /* lock the parent */
Al Viroa63bb992008-08-02 01:03:36 -0400146 mutex_lock(&rec_dir.dentry->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700147
Al Viroa63bb992008-08-02 01:03:36 -0400148 dentry = lookup_one_len(dname, rec_dir.dentry, HEXDIR_LEN-1);
NeilBrownc7b9a452005-06-23 22:04:30 -0700149 if (IS_ERR(dentry)) {
150 status = PTR_ERR(dentry);
151 goto out_unlock;
152 }
153 status = -EEXIST;
154 if (dentry->d_inode) {
155 dprintk("NFSD: nfsd4_create_clid_dir: DIRECTORY EXISTS\n");
156 goto out_put;
157 }
Al Viroa63bb992008-08-02 01:03:36 -0400158 status = mnt_want_write(rec_dir.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -0800159 if (status)
160 goto out_put;
Al Viroa63bb992008-08-02 01:03:36 -0400161 status = vfs_mkdir(rec_dir.dentry->d_inode, dentry, S_IRWXU);
162 mnt_drop_write(rec_dir.mnt);
NeilBrownc7b9a452005-06-23 22:04:30 -0700163out_put:
164 dput(dentry);
165out_unlock:
Al Viroa63bb992008-08-02 01:03:36 -0400166 mutex_unlock(&rec_dir.dentry->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700167 if (status == 0) {
168 clp->cl_firststate = 1;
NeilBrowna6ccbbb2005-07-07 17:59:11 -0700169 nfsd4_sync_rec_dir();
NeilBrownc7b9a452005-06-23 22:04:30 -0700170 }
David Howellsd84f4f92008-11-14 10:39:23 +1100171 nfs4_reset_creds(original_cred);
NeilBrownc7b9a452005-06-23 22:04:30 -0700172 dprintk("NFSD: nfsd4_create_clid_dir returns %d\n", status);
173 return status;
174}
175
NeilBrown190e4fb2005-06-23 22:04:25 -0700176typedef int (recdir_func)(struct dentry *, struct dentry *);
177
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400178struct name_list {
179 char name[HEXDIR_LEN];
NeilBrown190e4fb2005-06-23 22:04:25 -0700180 struct list_head list;
181};
182
NeilBrown190e4fb2005-06-23 22:04:25 -0700183static int
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400184nfsd4_build_namelist(void *arg, const char *name, int namlen,
David Howellsafefdbb2006-10-03 01:13:46 -0700185 loff_t offset, u64 ino, unsigned int d_type)
NeilBrown190e4fb2005-06-23 22:04:25 -0700186{
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400187 struct list_head *names = arg;
188 struct name_list *entry;
NeilBrown190e4fb2005-06-23 22:04:25 -0700189
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400190 if (namlen != HEXDIR_LEN - 1)
Al Virob37ad282006-10-19 23:28:59 -0700191 return 0;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400192 entry = kmalloc(sizeof(struct name_list), GFP_KERNEL);
193 if (entry == NULL)
NeilBrown190e4fb2005-06-23 22:04:25 -0700194 return -ENOMEM;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400195 memcpy(entry->name, name, HEXDIR_LEN - 1);
196 entry->name[HEXDIR_LEN - 1] = '\0';
197 list_add(&entry->list, names);
NeilBrown190e4fb2005-06-23 22:04:25 -0700198 return 0;
199}
200
201static int
202nfsd4_list_rec_dir(struct dentry *dir, recdir_func *f)
203{
David Howellsd84f4f92008-11-14 10:39:23 +1100204 const struct cred *original_cred;
NeilBrown190e4fb2005-06-23 22:04:25 -0700205 struct file *filp;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400206 LIST_HEAD(names);
207 struct name_list *entry;
208 struct dentry *dentry;
NeilBrown190e4fb2005-06-23 22:04:25 -0700209 int status;
210
211 if (!rec_dir_init)
212 return 0;
213
David Howellsd84f4f92008-11-14 10:39:23 +1100214 status = nfs4_save_creds(&original_cred);
215 if (status < 0)
216 return status;
NeilBrown190e4fb2005-06-23 22:04:25 -0700217
David Howells745ca242008-11-14 10:39:22 +1100218 filp = dentry_open(dget(dir), mntget(rec_dir.mnt), O_RDONLY,
219 current_cred());
NeilBrown190e4fb2005-06-23 22:04:25 -0700220 status = PTR_ERR(filp);
221 if (IS_ERR(filp))
222 goto out;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400223 status = vfs_readdir(filp, nfsd4_build_namelist, &names);
NeilBrown190e4fb2005-06-23 22:04:25 -0700224 fput(filp);
J. Bruce Fields8daed1e2009-05-11 16:10:19 -0400225 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT);
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400226 while (!list_empty(&names)) {
227 entry = list_entry(names.next, struct name_list, list);
228
229 dentry = lookup_one_len(entry->name, dir, HEXDIR_LEN-1);
230 if (IS_ERR(dentry)) {
231 status = PTR_ERR(dentry);
David Woodhouse2f9092e2009-04-20 23:18:37 +0100232 break;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400233 }
234 status = f(dir, dentry);
235 dput(dentry);
NeilBrown190e4fb2005-06-23 22:04:25 -0700236 if (status)
David Woodhouse2f9092e2009-04-20 23:18:37 +0100237 break;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400238 list_del(&entry->list);
239 kfree(entry);
NeilBrown190e4fb2005-06-23 22:04:25 -0700240 }
David Woodhouse2f9092e2009-04-20 23:18:37 +0100241 mutex_unlock(&dir->d_inode->i_mutex);
NeilBrown190e4fb2005-06-23 22:04:25 -0700242out:
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400243 while (!list_empty(&names)) {
244 entry = list_entry(names.next, struct name_list, list);
245 list_del(&entry->list);
246 kfree(entry);
NeilBrown190e4fb2005-06-23 22:04:25 -0700247 }
David Howellsd84f4f92008-11-14 10:39:23 +1100248 nfs4_reset_creds(original_cred);
NeilBrown190e4fb2005-06-23 22:04:25 -0700249 return status;
250}
251
252static int
NeilBrownc7b9a452005-06-23 22:04:30 -0700253nfsd4_unlink_clid_dir(char *name, int namlen)
254{
255 struct dentry *dentry;
256 int status;
257
258 dprintk("NFSD: nfsd4_unlink_clid_dir. name %.*s\n", namlen, name);
259
J. Bruce Fields8daed1e2009-05-11 16:10:19 -0400260 mutex_lock_nested(&rec_dir.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Al Viroa63bb992008-08-02 01:03:36 -0400261 dentry = lookup_one_len(name, rec_dir.dentry, namlen);
NeilBrownc7b9a452005-06-23 22:04:30 -0700262 if (IS_ERR(dentry)) {
263 status = PTR_ERR(dentry);
David Woodhouse2f9092e2009-04-20 23:18:37 +0100264 goto out_unlock;
NeilBrownc7b9a452005-06-23 22:04:30 -0700265 }
266 status = -ENOENT;
267 if (!dentry->d_inode)
268 goto out;
David Woodhouse2f9092e2009-04-20 23:18:37 +0100269 status = vfs_rmdir(rec_dir.dentry->d_inode, dentry);
NeilBrownc7b9a452005-06-23 22:04:30 -0700270out:
271 dput(dentry);
David Woodhouse2f9092e2009-04-20 23:18:37 +0100272out_unlock:
273 mutex_unlock(&rec_dir.dentry->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700274 return status;
275}
276
277void
278nfsd4_remove_clid_dir(struct nfs4_client *clp)
279{
David Howellsd84f4f92008-11-14 10:39:23 +1100280 const struct cred *original_cred;
NeilBrownc7b9a452005-06-23 22:04:30 -0700281 int status;
282
283 if (!rec_dir_init || !clp->cl_firststate)
284 return;
285
Al Viroa63bb992008-08-02 01:03:36 -0400286 status = mnt_want_write(rec_dir.mnt);
Dave Hansen06227532008-02-15 14:37:34 -0800287 if (status)
288 goto out;
NeilBrown67be4312005-07-07 17:59:13 -0700289 clp->cl_firststate = 0;
David Howellsd84f4f92008-11-14 10:39:23 +1100290
291 status = nfs4_save_creds(&original_cred);
292 if (status < 0)
293 goto out;
294
NeilBrownc7b9a452005-06-23 22:04:30 -0700295 status = nfsd4_unlink_clid_dir(clp->cl_recdir, HEXDIR_LEN-1);
David Howellsd84f4f92008-11-14 10:39:23 +1100296 nfs4_reset_creds(original_cred);
NeilBrownc7b9a452005-06-23 22:04:30 -0700297 if (status == 0)
NeilBrowna6ccbbb2005-07-07 17:59:11 -0700298 nfsd4_sync_rec_dir();
Al Viroa63bb992008-08-02 01:03:36 -0400299 mnt_drop_write(rec_dir.mnt);
Dave Hansen06227532008-02-15 14:37:34 -0800300out:
NeilBrownc7b9a452005-06-23 22:04:30 -0700301 if (status)
302 printk("NFSD: Failed to remove expired client state directory"
303 " %.*s\n", HEXDIR_LEN, clp->cl_recdir);
304 return;
305}
306
307static int
308purge_old(struct dentry *parent, struct dentry *child)
309{
310 int status;
311
Andy Adamsona1bcecd2009-04-03 08:28:05 +0300312 /* note: we currently use this path only for minorversion 0 */
313 if (nfs4_has_reclaimed_state(child->d_name.name, false))
Al Virob37ad282006-10-19 23:28:59 -0700314 return 0;
NeilBrownc7b9a452005-06-23 22:04:30 -0700315
David Woodhouse2f9092e2009-04-20 23:18:37 +0100316 status = vfs_rmdir(parent->d_inode, child);
NeilBrownc7b9a452005-06-23 22:04:30 -0700317 if (status)
318 printk("failed to remove client recovery directory %s\n",
319 child->d_name.name);
320 /* Keep trying, success or failure: */
Al Virob37ad282006-10-19 23:28:59 -0700321 return 0;
NeilBrownc7b9a452005-06-23 22:04:30 -0700322}
323
324void
325nfsd4_recdir_purge_old(void) {
326 int status;
327
328 if (!rec_dir_init)
329 return;
Al Viroa63bb992008-08-02 01:03:36 -0400330 status = mnt_want_write(rec_dir.mnt);
Dave Hansen06227532008-02-15 14:37:34 -0800331 if (status)
332 goto out;
Al Viroa63bb992008-08-02 01:03:36 -0400333 status = nfsd4_list_rec_dir(rec_dir.dentry, purge_old);
NeilBrownc7b9a452005-06-23 22:04:30 -0700334 if (status == 0)
NeilBrowna6ccbbb2005-07-07 17:59:11 -0700335 nfsd4_sync_rec_dir();
Al Viroa63bb992008-08-02 01:03:36 -0400336 mnt_drop_write(rec_dir.mnt);
Dave Hansen06227532008-02-15 14:37:34 -0800337out:
NeilBrownc7b9a452005-06-23 22:04:30 -0700338 if (status)
339 printk("nfsd4: failed to purge old clients from recovery"
Al Viroa63bb992008-08-02 01:03:36 -0400340 " directory %s\n", rec_dir.dentry->d_name.name);
NeilBrownc7b9a452005-06-23 22:04:30 -0700341}
342
343static int
NeilBrown190e4fb2005-06-23 22:04:25 -0700344load_recdir(struct dentry *parent, struct dentry *child)
345{
346 if (child->d_name.len != HEXDIR_LEN - 1) {
347 printk("nfsd4: illegal name %s in recovery directory\n",
348 child->d_name.name);
349 /* Keep trying; maybe the others are OK: */
Al Virob37ad282006-10-19 23:28:59 -0700350 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -0700351 }
352 nfs4_client_to_reclaim(child->d_name.name);
Al Virob37ad282006-10-19 23:28:59 -0700353 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -0700354}
355
356int
357nfsd4_recdir_load(void) {
358 int status;
359
Al Viroa63bb992008-08-02 01:03:36 -0400360 status = nfsd4_list_rec_dir(rec_dir.dentry, load_recdir);
NeilBrown190e4fb2005-06-23 22:04:25 -0700361 if (status)
362 printk("nfsd4: failed loading clients from recovery"
Al Viroa63bb992008-08-02 01:03:36 -0400363 " directory %s\n", rec_dir.dentry->d_name.name);
NeilBrown190e4fb2005-06-23 22:04:25 -0700364 return status;
365}
366
367/*
368 * Hold reference to the recovery directory.
369 */
370
371void
372nfsd4_init_recdir(char *rec_dirname)
373{
David Howellsd84f4f92008-11-14 10:39:23 +1100374 const struct cred *original_cred;
375 int status;
NeilBrown190e4fb2005-06-23 22:04:25 -0700376
377 printk("NFSD: Using %s as the NFSv4 state recovery directory\n",
378 rec_dirname);
379
380 BUG_ON(rec_dir_init);
381
David Howellsd84f4f92008-11-14 10:39:23 +1100382 status = nfs4_save_creds(&original_cred);
383 if (status < 0) {
384 printk("NFSD: Unable to change credentials to find recovery"
385 " directory: error %d\n",
386 status);
387 return;
388 }
NeilBrown190e4fb2005-06-23 22:04:25 -0700389
Al Viroa63bb992008-08-02 01:03:36 -0400390 status = kern_path(rec_dirname, LOOKUP_FOLLOW | LOOKUP_DIRECTORY,
J. Bruce Fieldsc2642ab2006-01-18 17:43:29 -0800391 &rec_dir);
392 if (status)
393 printk("NFSD: unable to find recovery directory %s\n",
NeilBrown190e4fb2005-06-23 22:04:25 -0700394 rec_dirname);
395
396 if (!status)
397 rec_dir_init = 1;
David Howellsd84f4f92008-11-14 10:39:23 +1100398 nfs4_reset_creds(original_cred);
NeilBrown190e4fb2005-06-23 22:04:25 -0700399}
400
401void
402nfsd4_shutdown_recdir(void)
403{
404 if (!rec_dir_init)
405 return;
406 rec_dir_init = 0;
Al Viroa63bb992008-08-02 01:03:36 -0400407 path_put(&rec_dir);
NeilBrown190e4fb2005-06-23 22:04:25 -0700408}