2 * linux/fs/nfsd/nfs4recover.c
4 * Copyright (c) 2004 The Regents of the University of Michigan.
7 * Andy Adamson <andros@citi.umich.edu>
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions
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.
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.
37 #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>
42 #include <linux/param.h>
43 #include <linux/file.h>
44 #include <linux/namei.h>
45 #include <asm/uaccess.h>
46 #include <asm/scatterlist.h>
47 #include <linux/crypto.h>
50 #define NFSDDBG_FACILITY NFSDDBG_PROC
53 static struct nameidata rec_dir;
54 static int rec_dir_init = 0;
57 nfs4_save_user(uid_t *saveuid, gid_t *savegid)
59 *saveuid = current->fsuid;
60 *savegid = current->fsgid;
66 nfs4_reset_user(uid_t saveuid, gid_t savegid)
68 current->fsuid = saveuid;
69 current->fsgid = savegid;
73 md5_to_hex(char *out, char *md5)
77 for (i=0; i<16; i++) {
78 unsigned char c = md5[i];
80 *out++ = '0' + ((c&0xf0)>>4) + (c>=0xa0)*('a'-'9'-1);
81 *out++ = '0' + (c&0x0f) + ((c&0x0f)>=0x0a)*('a'-'9'-1);
87 nfs4_make_rec_clidname(char *dname, struct xdr_netobj *clname)
89 struct xdr_netobj cksum;
90 struct crypto_tfm *tfm;
91 struct scatterlist sg[1];
92 int status = nfserr_resource;
94 dprintk("NFSD: nfs4_make_rec_clidname for %.*s\n",
95 clname->len, clname->data);
96 tfm = crypto_alloc_tfm("md5", CRYPTO_TFM_REQ_MAY_SLEEP);
99 cksum.len = crypto_tfm_alg_digestsize(tfm);
100 cksum.data = kmalloc(cksum.len, GFP_KERNEL);
101 if (cksum.data == NULL)
103 crypto_digest_init(tfm);
105 sg[0].page = virt_to_page(clname->data);
106 sg[0].offset = offset_in_page(clname->data);
107 sg[0].length = clname->len;
109 crypto_digest_update(tfm, sg, 1);
110 crypto_digest_final(tfm, cksum.data);
112 md5_to_hex(dname, cksum.data);
117 crypto_free_tfm(tfm);
122 nfsd4_sync_rec_dir(void)
124 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);
130 nfsd4_create_clid_dir(struct nfs4_client *clp)
132 char *dname = clp->cl_recdir;
133 struct dentry *dentry;
138 dprintk("NFSD: nfsd4_create_clid_dir for \"%s\"\n", dname);
140 if (!rec_dir_init || clp->cl_firststate)
143 nfs4_save_user(&uid, &gid);
145 /* lock the parent */
146 mutex_lock(&rec_dir.dentry->d_inode->i_mutex);
148 dentry = lookup_one_len(dname, rec_dir.dentry, HEXDIR_LEN-1);
149 if (IS_ERR(dentry)) {
150 status = PTR_ERR(dentry);
154 if (dentry->d_inode) {
155 dprintk("NFSD: nfsd4_create_clid_dir: DIRECTORY EXISTS\n");
158 status = vfs_mkdir(rec_dir.dentry->d_inode, dentry, S_IRWXU);
162 mutex_unlock(&rec_dir.dentry->d_inode->i_mutex);
164 clp->cl_firststate = 1;
165 nfsd4_sync_rec_dir();
167 nfs4_reset_user(uid, gid);
168 dprintk("NFSD: nfsd4_create_clid_dir returns %d\n", status);
172 typedef int (recdir_func)(struct dentry *, struct dentry *);
175 struct dentry *dentry;
176 struct list_head list;
179 struct dentry_list_arg {
180 struct list_head dentries;
181 struct dentry *parent;
185 nfsd4_build_dentrylist(void *arg, const char *name, int namlen,
186 loff_t offset, ino_t ino, unsigned int d_type)
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;
194 if (name && isdotent(name, namlen))
196 dentry = lookup_one_len(name, parent, namlen);
198 return PTR_ERR(dentry);
199 child = kmalloc(sizeof(*child), GFP_KERNEL);
202 child->dentry = dentry;
203 list_add(&child->list, dentries);
208 nfsd4_list_rec_dir(struct dentry *dir, recdir_func *f)
211 struct dentry_list_arg dla = {
214 struct list_head *dentries = &dla.dentries;
215 struct dentry_list *child;
223 nfs4_save_user(&uid, &gid);
225 filp = dentry_open(dget(dir), mntget(rec_dir.mnt), O_RDONLY);
226 status = PTR_ERR(filp);
229 INIT_LIST_HEAD(dentries);
230 status = vfs_readdir(filp, nfsd4_build_dentrylist, &dla);
232 while (!list_empty(dentries)) {
233 child = list_entry(dentries->next, struct dentry_list, list);
234 status = f(dir, child->dentry);
237 list_del(&child->list);
242 while (!list_empty(dentries)) {
243 child = list_entry(dentries->next, struct dentry_list, list);
244 list_del(&child->list);
248 nfs4_reset_user(uid, gid);
253 nfsd4_remove_clid_file(struct dentry *dir, struct dentry *dentry)
257 if (!S_ISREG(dir->d_inode->i_mode)) {
258 printk("nfsd4: non-file found in client recovery directory\n");
261 mutex_lock(&dir->d_inode->i_mutex);
262 status = vfs_unlink(dir->d_inode, dentry);
263 mutex_unlock(&dir->d_inode->i_mutex);
268 nfsd4_clear_clid_dir(struct dentry *dir, struct dentry *dentry)
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);
276 mutex_lock(&dir->d_inode->i_mutex);
277 status = vfs_rmdir(dir->d_inode, dentry);
278 mutex_unlock(&dir->d_inode->i_mutex);
283 nfsd4_unlink_clid_dir(char *name, int namlen)
285 struct dentry *dentry;
288 dprintk("NFSD: nfsd4_unlink_clid_dir. name %.*s\n", namlen, name);
290 mutex_lock(&rec_dir.dentry->d_inode->i_mutex);
291 dentry = lookup_one_len(name, rec_dir.dentry, namlen);
292 mutex_unlock(&rec_dir.dentry->d_inode->i_mutex);
293 if (IS_ERR(dentry)) {
294 status = PTR_ERR(dentry);
298 if (!dentry->d_inode)
301 status = nfsd4_clear_clid_dir(rec_dir.dentry, dentry);
308 nfsd4_remove_clid_dir(struct nfs4_client *clp)
314 if (!rec_dir_init || !clp->cl_firststate)
317 clp->cl_firststate = 0;
318 nfs4_save_user(&uid, &gid);
319 status = nfsd4_unlink_clid_dir(clp->cl_recdir, HEXDIR_LEN-1);
320 nfs4_reset_user(uid, gid);
322 nfsd4_sync_rec_dir();
324 printk("NFSD: Failed to remove expired client state directory"
325 " %.*s\n", HEXDIR_LEN, clp->cl_recdir);
330 purge_old(struct dentry *parent, struct dentry *child)
334 if (nfs4_has_reclaimed_state(child->d_name.name))
337 status = nfsd4_clear_clid_dir(parent, child);
339 printk("failed to remove client recovery directory %s\n",
341 /* Keep trying, success or failure: */
346 nfsd4_recdir_purge_old(void) {
351 status = nfsd4_list_rec_dir(rec_dir.dentry, purge_old);
353 nfsd4_sync_rec_dir();
355 printk("nfsd4: failed to purge old clients from recovery"
356 " directory %s\n", rec_dir.dentry->d_name.name);
361 load_recdir(struct dentry *parent, struct dentry *child)
363 if (child->d_name.len != HEXDIR_LEN - 1) {
364 printk("nfsd4: illegal name %s in recovery directory\n",
366 /* Keep trying; maybe the others are OK: */
369 nfs4_client_to_reclaim(child->d_name.name);
374 nfsd4_recdir_load(void) {
377 status = nfsd4_list_rec_dir(rec_dir.dentry, load_recdir);
379 printk("nfsd4: failed loading clients from recovery"
380 " directory %s\n", rec_dir.dentry->d_name.name);
385 * Hold reference to the recovery directory.
389 nfsd4_init_recdir(char *rec_dirname)
395 printk("NFSD: Using %s as the NFSv4 state recovery directory\n",
398 BUG_ON(rec_dir_init);
400 nfs4_save_user(&uid, &gid);
402 status = path_lookup(rec_dirname, LOOKUP_FOLLOW | LOOKUP_DIRECTORY,
405 printk("NFSD: unable to find recovery directory %s\n",
410 nfs4_reset_user(uid, gid);
414 nfsd4_shutdown_recdir(void)
419 path_release(&rec_dir);