blob: 4e77a1a3bd73395c0e1716f452b45c2ee84f0074 [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
Herbert Xu35058682006-08-24 19:10:20 +100036#include <linux/err.h>
NeilBrowna55370a2005-06-23 22:03:52 -070037#include <linux/sunrpc/svc.h>
38#include <linux/nfsd/nfsd.h>
39#include <linux/nfs4.h>
40#include <linux/nfsd/state.h>
41#include <linux/nfsd/xdr4.h>
NeilBrown190e4fb2005-06-23 22:04:25 -070042#include <linux/param.h>
43#include <linux/file.h>
44#include <linux/namei.h>
NeilBrowna55370a2005-06-23 22:03:52 -070045#include <asm/uaccess.h>
Adrian Bunk87ae9af2007-10-30 10:35:04 +010046#include <linux/scatterlist.h>
NeilBrowna55370a2005-06-23 22:03:52 -070047#include <linux/crypto.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040048#include <linux/sched.h>
Dave Hansen06227532008-02-15 14:37:34 -080049#include <linux/mount.h>
NeilBrowna55370a2005-06-23 22:03:52 -070050
51#define NFSDDBG_FACILITY NFSDDBG_PROC
52
NeilBrown190e4fb2005-06-23 22:04:25 -070053/* Globals */
NeilBrown190e4fb2005-06-23 22:04:25 -070054static struct nameidata rec_dir;
55static int rec_dir_init = 0;
56
57static void
58nfs4_save_user(uid_t *saveuid, gid_t *savegid)
59{
60 *saveuid = current->fsuid;
61 *savegid = current->fsgid;
62 current->fsuid = 0;
63 current->fsgid = 0;
64}
65
66static void
67nfs4_reset_user(uid_t saveuid, gid_t savegid)
68{
69 current->fsuid = saveuid;
70 current->fsgid = savegid;
71}
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
113 kfree(cksum.data);
114 status = nfs_ok;
115out:
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{
Jan Blunck4ac91372008-02-14 19:34:32 -0800124 mutex_lock(&rec_dir.path.dentry->d_inode->i_mutex);
125 nfsd_sync_dir(rec_dir.path.dentry);
126 mutex_unlock(&rec_dir.path.dentry->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700127}
128
129int
130nfsd4_create_clid_dir(struct nfs4_client *clp)
131{
132 char *dname = clp->cl_recdir;
133 struct dentry *dentry;
134 uid_t uid;
135 gid_t gid;
136 int status;
137
138 dprintk("NFSD: nfsd4_create_clid_dir for \"%s\"\n", dname);
139
140 if (!rec_dir_init || clp->cl_firststate)
141 return 0;
142
143 nfs4_save_user(&uid, &gid);
144
145 /* lock the parent */
Jan Blunck4ac91372008-02-14 19:34:32 -0800146 mutex_lock(&rec_dir.path.dentry->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700147
Jan Blunck4ac91372008-02-14 19:34:32 -0800148 dentry = lookup_one_len(dname, rec_dir.path.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 }
Jan Blunck4ac91372008-02-14 19:34:32 -0800158 status = vfs_mkdir(rec_dir.path.dentry->d_inode, dentry, S_IRWXU);
NeilBrownc7b9a452005-06-23 22:04:30 -0700159out_put:
160 dput(dentry);
161out_unlock:
Jan Blunck4ac91372008-02-14 19:34:32 -0800162 mutex_unlock(&rec_dir.path.dentry->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700163 if (status == 0) {
164 clp->cl_firststate = 1;
NeilBrowna6ccbbb2005-07-07 17:59:11 -0700165 nfsd4_sync_rec_dir();
NeilBrownc7b9a452005-06-23 22:04:30 -0700166 }
167 nfs4_reset_user(uid, gid);
168 dprintk("NFSD: nfsd4_create_clid_dir returns %d\n", status);
169 return status;
170}
171
NeilBrown190e4fb2005-06-23 22:04:25 -0700172typedef int (recdir_func)(struct dentry *, struct dentry *);
173
174struct dentry_list {
175 struct dentry *dentry;
176 struct list_head list;
177};
178
179struct dentry_list_arg {
180 struct list_head dentries;
181 struct dentry *parent;
182};
183
184static int
185nfsd4_build_dentrylist(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{
188 struct dentry_list_arg *dla = arg;
189 struct list_head *dentries = &dla->dentries;
190 struct dentry *parent = dla->parent;
191 struct dentry *dentry;
192 struct dentry_list *child;
193
194 if (name && isdotent(name, namlen))
Al Virob37ad282006-10-19 23:28:59 -0700195 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -0700196 dentry = lookup_one_len(name, parent, namlen);
197 if (IS_ERR(dentry))
198 return PTR_ERR(dentry);
199 child = kmalloc(sizeof(*child), GFP_KERNEL);
200 if (child == NULL)
201 return -ENOMEM;
202 child->dentry = dentry;
203 list_add(&child->list, dentries);
204 return 0;
205}
206
207static int
208nfsd4_list_rec_dir(struct dentry *dir, recdir_func *f)
209{
210 struct file *filp;
211 struct dentry_list_arg dla = {
212 .parent = dir,
213 };
214 struct list_head *dentries = &dla.dentries;
215 struct dentry_list *child;
216 uid_t uid;
217 gid_t gid;
218 int status;
219
220 if (!rec_dir_init)
221 return 0;
222
223 nfs4_save_user(&uid, &gid);
224
Jan Blunck4ac91372008-02-14 19:34:32 -0800225 filp = dentry_open(dget(dir), mntget(rec_dir.path.mnt), O_RDONLY);
NeilBrown190e4fb2005-06-23 22:04:25 -0700226 status = PTR_ERR(filp);
227 if (IS_ERR(filp))
228 goto out;
229 INIT_LIST_HEAD(dentries);
230 status = vfs_readdir(filp, nfsd4_build_dentrylist, &dla);
231 fput(filp);
232 while (!list_empty(dentries)) {
233 child = list_entry(dentries->next, struct dentry_list, list);
234 status = f(dir, child->dentry);
235 if (status)
236 goto out;
237 list_del(&child->list);
238 dput(child->dentry);
239 kfree(child);
240 }
241out:
242 while (!list_empty(dentries)) {
243 child = list_entry(dentries->next, struct dentry_list, list);
244 list_del(&child->list);
245 dput(child->dentry);
246 kfree(child);
247 }
248 nfs4_reset_user(uid, gid);
249 return status;
250}
251
252static int
NeilBrownc7b9a452005-06-23 22:04:30 -0700253nfsd4_remove_clid_file(struct dentry *dir, struct dentry *dentry)
254{
255 int status;
256
257 if (!S_ISREG(dir->d_inode->i_mode)) {
258 printk("nfsd4: non-file found in client recovery directory\n");
259 return -EINVAL;
260 }
Peter Zijlstra4b75f782006-12-08 02:39:38 -0800261 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT);
NeilBrownc7b9a452005-06-23 22:04:30 -0700262 status = vfs_unlink(dir->d_inode, dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800263 mutex_unlock(&dir->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700264 return status;
265}
266
267static int
268nfsd4_clear_clid_dir(struct dentry *dir, struct dentry *dentry)
269{
270 int status;
271
272 /* For now this directory should already be empty, but we empty it of
273 * any regular files anyway, just in case the directory was created by
274 * a kernel from the future.... */
275 nfsd4_list_rec_dir(dentry, nfsd4_remove_clid_file);
Srinivasa Ds7ef55b82006-11-02 22:07:12 -0800276 mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT);
NeilBrownc7b9a452005-06-23 22:04:30 -0700277 status = vfs_rmdir(dir->d_inode, dentry);
Jes Sorensen1b1dcc12006-01-09 15:59:24 -0800278 mutex_unlock(&dir->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700279 return status;
280}
281
282static int
283nfsd4_unlink_clid_dir(char *name, int namlen)
284{
285 struct dentry *dentry;
286 int status;
287
288 dprintk("NFSD: nfsd4_unlink_clid_dir. name %.*s\n", namlen, name);
289
Jan Blunck4ac91372008-02-14 19:34:32 -0800290 mutex_lock(&rec_dir.path.dentry->d_inode->i_mutex);
291 dentry = lookup_one_len(name, rec_dir.path.dentry, namlen);
292 mutex_unlock(&rec_dir.path.dentry->d_inode->i_mutex);
NeilBrownc7b9a452005-06-23 22:04:30 -0700293 if (IS_ERR(dentry)) {
294 status = PTR_ERR(dentry);
295 return status;
296 }
297 status = -ENOENT;
298 if (!dentry->d_inode)
299 goto out;
300
Jan Blunck4ac91372008-02-14 19:34:32 -0800301 status = nfsd4_clear_clid_dir(rec_dir.path.dentry, dentry);
NeilBrownc7b9a452005-06-23 22:04:30 -0700302out:
303 dput(dentry);
304 return status;
305}
306
307void
308nfsd4_remove_clid_dir(struct nfs4_client *clp)
309{
310 uid_t uid;
311 gid_t gid;
312 int status;
313
314 if (!rec_dir_init || !clp->cl_firststate)
315 return;
316
Dave Hansen06227532008-02-15 14:37:34 -0800317 status = mnt_want_write(rec_dir.path.mnt);
318 if (status)
319 goto out;
NeilBrown67be4312005-07-07 17:59:13 -0700320 clp->cl_firststate = 0;
NeilBrownc7b9a452005-06-23 22:04:30 -0700321 nfs4_save_user(&uid, &gid);
322 status = nfsd4_unlink_clid_dir(clp->cl_recdir, HEXDIR_LEN-1);
323 nfs4_reset_user(uid, gid);
324 if (status == 0)
NeilBrowna6ccbbb2005-07-07 17:59:11 -0700325 nfsd4_sync_rec_dir();
Dave Hansen06227532008-02-15 14:37:34 -0800326 mnt_drop_write(rec_dir.path.mnt);
327out:
NeilBrownc7b9a452005-06-23 22:04:30 -0700328 if (status)
329 printk("NFSD: Failed to remove expired client state directory"
330 " %.*s\n", HEXDIR_LEN, clp->cl_recdir);
331 return;
332}
333
334static int
335purge_old(struct dentry *parent, struct dentry *child)
336{
337 int status;
338
339 if (nfs4_has_reclaimed_state(child->d_name.name))
Al Virob37ad282006-10-19 23:28:59 -0700340 return 0;
NeilBrownc7b9a452005-06-23 22:04:30 -0700341
342 status = nfsd4_clear_clid_dir(parent, child);
343 if (status)
344 printk("failed to remove client recovery directory %s\n",
345 child->d_name.name);
346 /* Keep trying, success or failure: */
Al Virob37ad282006-10-19 23:28:59 -0700347 return 0;
NeilBrownc7b9a452005-06-23 22:04:30 -0700348}
349
350void
351nfsd4_recdir_purge_old(void) {
352 int status;
353
354 if (!rec_dir_init)
355 return;
Dave Hansen06227532008-02-15 14:37:34 -0800356 status = mnt_want_write(rec_dir.path.mnt);
357 if (status)
358 goto out;
Jan Blunck4ac91372008-02-14 19:34:32 -0800359 status = nfsd4_list_rec_dir(rec_dir.path.dentry, purge_old);
NeilBrownc7b9a452005-06-23 22:04:30 -0700360 if (status == 0)
NeilBrowna6ccbbb2005-07-07 17:59:11 -0700361 nfsd4_sync_rec_dir();
Dave Hansen06227532008-02-15 14:37:34 -0800362 mnt_drop_write(rec_dir.path.mnt);
363out:
NeilBrownc7b9a452005-06-23 22:04:30 -0700364 if (status)
365 printk("nfsd4: failed to purge old clients from recovery"
Jan Blunck4ac91372008-02-14 19:34:32 -0800366 " directory %s\n", rec_dir.path.dentry->d_name.name);
NeilBrownc7b9a452005-06-23 22:04:30 -0700367}
368
369static int
NeilBrown190e4fb2005-06-23 22:04:25 -0700370load_recdir(struct dentry *parent, struct dentry *child)
371{
372 if (child->d_name.len != HEXDIR_LEN - 1) {
373 printk("nfsd4: illegal name %s in recovery directory\n",
374 child->d_name.name);
375 /* Keep trying; maybe the others are OK: */
Al Virob37ad282006-10-19 23:28:59 -0700376 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -0700377 }
378 nfs4_client_to_reclaim(child->d_name.name);
Al Virob37ad282006-10-19 23:28:59 -0700379 return 0;
NeilBrown190e4fb2005-06-23 22:04:25 -0700380}
381
382int
383nfsd4_recdir_load(void) {
384 int status;
385
Jan Blunck4ac91372008-02-14 19:34:32 -0800386 status = nfsd4_list_rec_dir(rec_dir.path.dentry, load_recdir);
NeilBrown190e4fb2005-06-23 22:04:25 -0700387 if (status)
388 printk("nfsd4: failed loading clients from recovery"
Jan Blunck4ac91372008-02-14 19:34:32 -0800389 " directory %s\n", rec_dir.path.dentry->d_name.name);
NeilBrown190e4fb2005-06-23 22:04:25 -0700390 return status;
391}
392
393/*
394 * Hold reference to the recovery directory.
395 */
396
397void
398nfsd4_init_recdir(char *rec_dirname)
399{
400 uid_t uid = 0;
401 gid_t gid = 0;
402 int status;
403
404 printk("NFSD: Using %s as the NFSv4 state recovery directory\n",
405 rec_dirname);
406
407 BUG_ON(rec_dir_init);
408
409 nfs4_save_user(&uid, &gid);
410
J. Bruce Fieldsc2642ab2006-01-18 17:43:29 -0800411 status = path_lookup(rec_dirname, LOOKUP_FOLLOW | LOOKUP_DIRECTORY,
412 &rec_dir);
413 if (status)
414 printk("NFSD: unable to find recovery directory %s\n",
NeilBrown190e4fb2005-06-23 22:04:25 -0700415 rec_dirname);
416
417 if (!status)
418 rec_dir_init = 1;
419 nfs4_reset_user(uid, gid);
420}
421
422void
423nfsd4_shutdown_recdir(void)
424{
425 if (!rec_dir_init)
426 return;
427 rec_dir_init = 0;
Jan Blunck1d957f92008-02-14 19:34:35 -0800428 path_put(&rec_dir.path);
NeilBrown190e4fb2005-06-23 22:04:25 -0700429}