blob: 6744e7f2da0e291e41b5e341863777c39a747f9d [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
NeilBrown190e4fb2005-06-23 22:04:25 -070036#include <linux/file.h>
37#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>
Boaz Harrosh9a74af22009-12-03 20:30:56 +020040
41#include "nfsd.h"
42#include "state.h"
J. Bruce Fields0a3adad2009-11-04 18:12:35 -050043#include "vfs.h"
NeilBrowna55370a2005-06-23 22:03:52 -070044
45#define NFSDDBG_FACILITY NFSDDBG_PROC
46
NeilBrown190e4fb2005-06-23 22:04:25 -070047/* Globals */
Al Viroa63bb992008-08-02 01:03:36 -040048static struct path rec_dir;
NeilBrown190e4fb2005-06-23 22:04:25 -070049static int rec_dir_init = 0;
50
David Howellsd84f4f92008-11-14 10:39:23 +110051static int
52nfs4_save_creds(const struct cred **original_creds)
NeilBrown190e4fb2005-06-23 22:04:25 -070053{
David Howellsd84f4f92008-11-14 10:39:23 +110054 struct cred *new;
55
56 new = prepare_creds();
57 if (!new)
58 return -ENOMEM;
59
60 new->fsuid = 0;
61 new->fsgid = 0;
62 *original_creds = override_creds(new);
63 put_cred(new);
64 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -070065}
66
67static void
David Howellsd84f4f92008-11-14 10:39:23 +110068nfs4_reset_creds(const struct cred *original)
NeilBrown190e4fb2005-06-23 22:04:25 -070069{
David Howellsd84f4f92008-11-14 10:39:23 +110070 revert_creds(original);
NeilBrown190e4fb2005-06-23 22:04:25 -070071}
72
NeilBrowna55370a2005-06-23 22:03:52 -070073static void
74md5_to_hex(char *out, char *md5)
75{
76 int i;
77
78 for (i=0; i<16; i++) {
79 unsigned char c = md5[i];
80
81 *out++ = '0' + ((c&0xf0)>>4) + (c>=0xa0)*('a'-'9'-1);
82 *out++ = '0' + (c&0x0f) + ((c&0x0f)>=0x0a)*('a'-'9'-1);
83 }
84 *out = '\0';
85}
86
Al Virob37ad282006-10-19 23:28:59 -070087__be32
NeilBrowna55370a2005-06-23 22:03:52 -070088nfs4_make_rec_clidname(char *dname, struct xdr_netobj *clname)
89{
90 struct xdr_netobj cksum;
Herbert Xu35058682006-08-24 19:10:20 +100091 struct hash_desc desc;
Jens Axboe60c74f82007-10-22 19:43:30 +020092 struct scatterlist sg;
Al Virob37ad282006-10-19 23:28:59 -070093 __be32 status = nfserr_resource;
NeilBrowna55370a2005-06-23 22:03:52 -070094
95 dprintk("NFSD: nfs4_make_rec_clidname for %.*s\n",
96 clname->len, clname->data);
Herbert Xu35058682006-08-24 19:10:20 +100097 desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP;
98 desc.tfm = crypto_alloc_hash("md5", 0, CRYPTO_ALG_ASYNC);
99 if (IS_ERR(desc.tfm))
100 goto out_no_tfm;
101 cksum.len = crypto_hash_digestsize(desc.tfm);
NeilBrowna55370a2005-06-23 22:03:52 -0700102 cksum.data = kmalloc(cksum.len, GFP_KERNEL);
103 if (cksum.data == NULL)
104 goto out;
NeilBrowna55370a2005-06-23 22:03:52 -0700105
Jens Axboe60c74f82007-10-22 19:43:30 +0200106 sg_init_one(&sg, clname->data, clname->len);
NeilBrowna55370a2005-06-23 22:03:52 -0700107
Jens Axboe60c74f82007-10-22 19:43:30 +0200108 if (crypto_hash_digest(&desc, &sg, sg.length, cksum.data))
Herbert Xu35058682006-08-24 19:10:20 +1000109 goto out;
NeilBrowna55370a2005-06-23 22:03:52 -0700110
111 md5_to_hex(dname, cksum.data);
112
NeilBrowna55370a2005-06-23 22:03:52 -0700113 status = nfs_ok;
114out:
Krishna Kumar2bd9e7b2008-10-20 11:47:09 +0530115 kfree(cksum.data);
Herbert Xu35058682006-08-24 19:10:20 +1000116 crypto_free_hash(desc.tfm);
117out_no_tfm:
NeilBrowna55370a2005-06-23 22:03:52 -0700118 return status;
119}
NeilBrown190e4fb2005-06-23 22:04:25 -0700120
NeilBrowna6ccbbb2005-07-07 17:59:11 -0700121static void
122nfsd4_sync_rec_dir(void)
NeilBrownc7b9a452005-06-23 22:04:30 -0700123{
Al Viroa63bb992008-08-02 01:03:36 -0400124 mutex_lock(&rec_dir.dentry->d_inode->i_mutex);
125 nfsd_sync_dir(rec_dir.dentry);
126 mutex_unlock(&rec_dir.dentry->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700127}
128
129int
130nfsd4_create_clid_dir(struct nfs4_client *clp)
131{
David Howellsd84f4f92008-11-14 10:39:23 +1100132 const struct cred *original_cred;
NeilBrownc7b9a452005-06-23 22:04:30 -0700133 char *dname = clp->cl_recdir;
134 struct dentry *dentry;
NeilBrownc7b9a452005-06-23 22:04:30 -0700135 int status;
136
137 dprintk("NFSD: nfsd4_create_clid_dir for \"%s\"\n", dname);
138
139 if (!rec_dir_init || clp->cl_firststate)
140 return 0;
141
David Howellsd84f4f92008-11-14 10:39:23 +1100142 status = nfs4_save_creds(&original_cred);
143 if (status < 0)
144 return status;
NeilBrownc7b9a452005-06-23 22:04:30 -0700145
146 /* lock the parent */
Al Viroa63bb992008-08-02 01:03:36 -0400147 mutex_lock(&rec_dir.dentry->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700148
Al Viroa63bb992008-08-02 01:03:36 -0400149 dentry = lookup_one_len(dname, rec_dir.dentry, HEXDIR_LEN-1);
NeilBrownc7b9a452005-06-23 22:04:30 -0700150 if (IS_ERR(dentry)) {
151 status = PTR_ERR(dentry);
152 goto out_unlock;
153 }
154 status = -EEXIST;
155 if (dentry->d_inode) {
156 dprintk("NFSD: nfsd4_create_clid_dir: DIRECTORY EXISTS\n");
157 goto out_put;
158 }
Al Viroa63bb992008-08-02 01:03:36 -0400159 status = mnt_want_write(rec_dir.mnt);
Dave Hansen463c3192008-02-15 14:37:57 -0800160 if (status)
161 goto out_put;
Al Viroa63bb992008-08-02 01:03:36 -0400162 status = vfs_mkdir(rec_dir.dentry->d_inode, dentry, S_IRWXU);
163 mnt_drop_write(rec_dir.mnt);
NeilBrownc7b9a452005-06-23 22:04:30 -0700164out_put:
165 dput(dentry);
166out_unlock:
Al Viroa63bb992008-08-02 01:03:36 -0400167 mutex_unlock(&rec_dir.dentry->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700168 if (status == 0) {
169 clp->cl_firststate = 1;
NeilBrowna6ccbbb2005-07-07 17:59:11 -0700170 nfsd4_sync_rec_dir();
NeilBrownc7b9a452005-06-23 22:04:30 -0700171 }
David Howellsd84f4f92008-11-14 10:39:23 +1100172 nfs4_reset_creds(original_cred);
NeilBrownc7b9a452005-06-23 22:04:30 -0700173 dprintk("NFSD: nfsd4_create_clid_dir returns %d\n", status);
174 return status;
175}
176
NeilBrown190e4fb2005-06-23 22:04:25 -0700177typedef int (recdir_func)(struct dentry *, struct dentry *);
178
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400179struct name_list {
180 char name[HEXDIR_LEN];
NeilBrown190e4fb2005-06-23 22:04:25 -0700181 struct list_head list;
182};
183
NeilBrown190e4fb2005-06-23 22:04:25 -0700184static int
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400185nfsd4_build_namelist(void *arg, const char *name, int namlen,
David Howellsafefdbb2006-10-03 01:13:46 -0700186 loff_t offset, u64 ino, unsigned int d_type)
NeilBrown190e4fb2005-06-23 22:04:25 -0700187{
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400188 struct list_head *names = arg;
189 struct name_list *entry;
NeilBrown190e4fb2005-06-23 22:04:25 -0700190
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400191 if (namlen != HEXDIR_LEN - 1)
Al Virob37ad282006-10-19 23:28:59 -0700192 return 0;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400193 entry = kmalloc(sizeof(struct name_list), GFP_KERNEL);
194 if (entry == NULL)
NeilBrown190e4fb2005-06-23 22:04:25 -0700195 return -ENOMEM;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400196 memcpy(entry->name, name, HEXDIR_LEN - 1);
197 entry->name[HEXDIR_LEN - 1] = '\0';
198 list_add(&entry->list, names);
NeilBrown190e4fb2005-06-23 22:04:25 -0700199 return 0;
200}
201
202static int
203nfsd4_list_rec_dir(struct dentry *dir, recdir_func *f)
204{
David Howellsd84f4f92008-11-14 10:39:23 +1100205 const struct cred *original_cred;
NeilBrown190e4fb2005-06-23 22:04:25 -0700206 struct file *filp;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400207 LIST_HEAD(names);
208 struct name_list *entry;
209 struct dentry *dentry;
NeilBrown190e4fb2005-06-23 22:04:25 -0700210 int status;
211
212 if (!rec_dir_init)
213 return 0;
214
David Howellsd84f4f92008-11-14 10:39:23 +1100215 status = nfs4_save_creds(&original_cred);
216 if (status < 0)
217 return status;
NeilBrown190e4fb2005-06-23 22:04:25 -0700218
David Howells745ca242008-11-14 10:39:22 +1100219 filp = dentry_open(dget(dir), mntget(rec_dir.mnt), O_RDONLY,
220 current_cred());
NeilBrown190e4fb2005-06-23 22:04:25 -0700221 status = PTR_ERR(filp);
222 if (IS_ERR(filp))
223 goto out;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400224 status = vfs_readdir(filp, nfsd4_build_namelist, &names);
NeilBrown190e4fb2005-06-23 22:04:25 -0700225 fput(filp);
J. Bruce Fields8daed1e2009-05-11 16:10:19 -0400226 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT);
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400227 while (!list_empty(&names)) {
228 entry = list_entry(names.next, struct name_list, list);
229
230 dentry = lookup_one_len(entry->name, dir, HEXDIR_LEN-1);
231 if (IS_ERR(dentry)) {
232 status = PTR_ERR(dentry);
David Woodhouse2f9092e2009-04-20 23:18:37 +0100233 break;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400234 }
235 status = f(dir, dentry);
236 dput(dentry);
NeilBrown190e4fb2005-06-23 22:04:25 -0700237 if (status)
David Woodhouse2f9092e2009-04-20 23:18:37 +0100238 break;
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400239 list_del(&entry->list);
240 kfree(entry);
NeilBrown190e4fb2005-06-23 22:04:25 -0700241 }
David Woodhouse2f9092e2009-04-20 23:18:37 +0100242 mutex_unlock(&dir->d_inode->i_mutex);
NeilBrown190e4fb2005-06-23 22:04:25 -0700243out:
J. Bruce Fields05f4f672009-03-13 16:02:59 -0400244 while (!list_empty(&names)) {
245 entry = list_entry(names.next, struct name_list, list);
246 list_del(&entry->list);
247 kfree(entry);
NeilBrown190e4fb2005-06-23 22:04:25 -0700248 }
David Howellsd84f4f92008-11-14 10:39:23 +1100249 nfs4_reset_creds(original_cred);
NeilBrown190e4fb2005-06-23 22:04:25 -0700250 return status;
251}
252
253static int
NeilBrownc7b9a452005-06-23 22:04:30 -0700254nfsd4_unlink_clid_dir(char *name, int namlen)
255{
256 struct dentry *dentry;
257 int status;
258
259 dprintk("NFSD: nfsd4_unlink_clid_dir. name %.*s\n", namlen, name);
260
J. Bruce Fields8daed1e2009-05-11 16:10:19 -0400261 mutex_lock_nested(&rec_dir.dentry->d_inode->i_mutex, I_MUTEX_PARENT);
Al Viroa63bb992008-08-02 01:03:36 -0400262 dentry = lookup_one_len(name, rec_dir.dentry, namlen);
NeilBrownc7b9a452005-06-23 22:04:30 -0700263 if (IS_ERR(dentry)) {
264 status = PTR_ERR(dentry);
David Woodhouse2f9092e2009-04-20 23:18:37 +0100265 goto out_unlock;
NeilBrownc7b9a452005-06-23 22:04:30 -0700266 }
267 status = -ENOENT;
268 if (!dentry->d_inode)
269 goto out;
David Woodhouse2f9092e2009-04-20 23:18:37 +0100270 status = vfs_rmdir(rec_dir.dentry->d_inode, dentry);
NeilBrownc7b9a452005-06-23 22:04:30 -0700271out:
272 dput(dentry);
David Woodhouse2f9092e2009-04-20 23:18:37 +0100273out_unlock:
274 mutex_unlock(&rec_dir.dentry->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700275 return status;
276}
277
278void
279nfsd4_remove_clid_dir(struct nfs4_client *clp)
280{
David Howellsd84f4f92008-11-14 10:39:23 +1100281 const struct cred *original_cred;
NeilBrownc7b9a452005-06-23 22:04:30 -0700282 int status;
283
284 if (!rec_dir_init || !clp->cl_firststate)
285 return;
286
Al Viroa63bb992008-08-02 01:03:36 -0400287 status = mnt_want_write(rec_dir.mnt);
Dave Hansen06227532008-02-15 14:37:34 -0800288 if (status)
289 goto out;
NeilBrown67be4312005-07-07 17:59:13 -0700290 clp->cl_firststate = 0;
David Howellsd84f4f92008-11-14 10:39:23 +1100291
292 status = nfs4_save_creds(&original_cred);
293 if (status < 0)
294 goto out;
295
NeilBrownc7b9a452005-06-23 22:04:30 -0700296 status = nfsd4_unlink_clid_dir(clp->cl_recdir, HEXDIR_LEN-1);
David Howellsd84f4f92008-11-14 10:39:23 +1100297 nfs4_reset_creds(original_cred);
NeilBrownc7b9a452005-06-23 22:04:30 -0700298 if (status == 0)
NeilBrowna6ccbbb2005-07-07 17:59:11 -0700299 nfsd4_sync_rec_dir();
Al Viroa63bb992008-08-02 01:03:36 -0400300 mnt_drop_write(rec_dir.mnt);
Dave Hansen06227532008-02-15 14:37:34 -0800301out:
NeilBrownc7b9a452005-06-23 22:04:30 -0700302 if (status)
303 printk("NFSD: Failed to remove expired client state directory"
304 " %.*s\n", HEXDIR_LEN, clp->cl_recdir);
305 return;
306}
307
308static int
309purge_old(struct dentry *parent, struct dentry *child)
310{
311 int status;
312
Andy Adamsona1bcecd2009-04-03 08:28:05 +0300313 /* note: we currently use this path only for minorversion 0 */
314 if (nfs4_has_reclaimed_state(child->d_name.name, false))
Al Virob37ad282006-10-19 23:28:59 -0700315 return 0;
NeilBrownc7b9a452005-06-23 22:04:30 -0700316
David Woodhouse2f9092e2009-04-20 23:18:37 +0100317 status = vfs_rmdir(parent->d_inode, child);
NeilBrownc7b9a452005-06-23 22:04:30 -0700318 if (status)
319 printk("failed to remove client recovery directory %s\n",
320 child->d_name.name);
321 /* Keep trying, success or failure: */
Al Virob37ad282006-10-19 23:28:59 -0700322 return 0;
NeilBrownc7b9a452005-06-23 22:04:30 -0700323}
324
325void
326nfsd4_recdir_purge_old(void) {
327 int status;
328
329 if (!rec_dir_init)
330 return;
Al Viroa63bb992008-08-02 01:03:36 -0400331 status = mnt_want_write(rec_dir.mnt);
Dave Hansen06227532008-02-15 14:37:34 -0800332 if (status)
333 goto out;
Al Viroa63bb992008-08-02 01:03:36 -0400334 status = nfsd4_list_rec_dir(rec_dir.dentry, purge_old);
NeilBrownc7b9a452005-06-23 22:04:30 -0700335 if (status == 0)
NeilBrowna6ccbbb2005-07-07 17:59:11 -0700336 nfsd4_sync_rec_dir();
Al Viroa63bb992008-08-02 01:03:36 -0400337 mnt_drop_write(rec_dir.mnt);
Dave Hansen06227532008-02-15 14:37:34 -0800338out:
NeilBrownc7b9a452005-06-23 22:04:30 -0700339 if (status)
340 printk("nfsd4: failed to purge old clients from recovery"
Al Viroa63bb992008-08-02 01:03:36 -0400341 " directory %s\n", rec_dir.dentry->d_name.name);
NeilBrownc7b9a452005-06-23 22:04:30 -0700342}
343
344static int
NeilBrown190e4fb2005-06-23 22:04:25 -0700345load_recdir(struct dentry *parent, struct dentry *child)
346{
347 if (child->d_name.len != HEXDIR_LEN - 1) {
348 printk("nfsd4: illegal name %s in recovery directory\n",
349 child->d_name.name);
350 /* Keep trying; maybe the others are OK: */
Al Virob37ad282006-10-19 23:28:59 -0700351 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -0700352 }
353 nfs4_client_to_reclaim(child->d_name.name);
Al Virob37ad282006-10-19 23:28:59 -0700354 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -0700355}
356
357int
358nfsd4_recdir_load(void) {
359 int status;
360
Al Viroa63bb992008-08-02 01:03:36 -0400361 status = nfsd4_list_rec_dir(rec_dir.dentry, load_recdir);
NeilBrown190e4fb2005-06-23 22:04:25 -0700362 if (status)
363 printk("nfsd4: failed loading clients from recovery"
Al Viroa63bb992008-08-02 01:03:36 -0400364 " directory %s\n", rec_dir.dentry->d_name.name);
NeilBrown190e4fb2005-06-23 22:04:25 -0700365 return status;
366}
367
368/*
369 * Hold reference to the recovery directory.
370 */
371
372void
373nfsd4_init_recdir(char *rec_dirname)
374{
David Howellsd84f4f92008-11-14 10:39:23 +1100375 const struct cred *original_cred;
376 int status;
NeilBrown190e4fb2005-06-23 22:04:25 -0700377
378 printk("NFSD: Using %s as the NFSv4 state recovery directory\n",
379 rec_dirname);
380
381 BUG_ON(rec_dir_init);
382
David Howellsd84f4f92008-11-14 10:39:23 +1100383 status = nfs4_save_creds(&original_cred);
384 if (status < 0) {
385 printk("NFSD: Unable to change credentials to find recovery"
386 " directory: error %d\n",
387 status);
388 return;
389 }
NeilBrown190e4fb2005-06-23 22:04:25 -0700390
Al Viroa63bb992008-08-02 01:03:36 -0400391 status = kern_path(rec_dirname, LOOKUP_FOLLOW | LOOKUP_DIRECTORY,
J. Bruce Fieldsc2642ab2006-01-18 17:43:29 -0800392 &rec_dir);
393 if (status)
394 printk("NFSD: unable to find recovery directory %s\n",
NeilBrown190e4fb2005-06-23 22:04:25 -0700395 rec_dirname);
396
397 if (!status)
398 rec_dir_init = 1;
David Howellsd84f4f92008-11-14 10:39:23 +1100399 nfs4_reset_creds(original_cred);
NeilBrown190e4fb2005-06-23 22:04:25 -0700400}
401
402void
403nfsd4_shutdown_recdir(void)
404{
405 if (!rec_dir_init)
406 return;
407 rec_dir_init = 0;
Al Viroa63bb992008-08-02 01:03:36 -0400408 path_put(&rec_dir);
NeilBrown190e4fb2005-06-23 22:04:25 -0700409}