NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 1 | /* |
| 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 Xu | 3505868 | 2006-08-24 19:10:20 +1000 | [diff] [blame] | 36 | #include <linux/err.h> |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 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> |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 42 | #include <linux/param.h> |
| 43 | #include <linux/file.h> |
| 44 | #include <linux/namei.h> |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 45 | #include <asm/uaccess.h> |
Adrian Bunk | 87ae9af | 2007-10-30 10:35:04 +0100 | [diff] [blame] | 46 | #include <linux/scatterlist.h> |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 47 | #include <linux/crypto.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 48 | #include <linux/sched.h> |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 49 | #include <linux/mount.h> |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 50 | |
| 51 | #define NFSDDBG_FACILITY NFSDDBG_PROC |
| 52 | |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 53 | /* Globals */ |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 54 | static struct path rec_dir; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 55 | static int rec_dir_init = 0; |
| 56 | |
| 57 | static void |
| 58 | nfs4_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 | |
| 66 | static void |
| 67 | nfs4_reset_user(uid_t saveuid, gid_t savegid) |
| 68 | { |
| 69 | current->fsuid = saveuid; |
| 70 | current->fsgid = savegid; |
| 71 | } |
| 72 | |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 73 | static void |
| 74 | md5_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 Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 87 | __be32 |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 88 | nfs4_make_rec_clidname(char *dname, struct xdr_netobj *clname) |
| 89 | { |
| 90 | struct xdr_netobj cksum; |
Herbert Xu | 3505868 | 2006-08-24 19:10:20 +1000 | [diff] [blame] | 91 | struct hash_desc desc; |
Jens Axboe | 60c74f8 | 2007-10-22 19:43:30 +0200 | [diff] [blame] | 92 | struct scatterlist sg; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 93 | __be32 status = nfserr_resource; |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 94 | |
| 95 | dprintk("NFSD: nfs4_make_rec_clidname for %.*s\n", |
| 96 | clname->len, clname->data); |
Herbert Xu | 3505868 | 2006-08-24 19:10:20 +1000 | [diff] [blame] | 97 | 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); |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 102 | cksum.data = kmalloc(cksum.len, GFP_KERNEL); |
| 103 | if (cksum.data == NULL) |
| 104 | goto out; |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 105 | |
Jens Axboe | 60c74f8 | 2007-10-22 19:43:30 +0200 | [diff] [blame] | 106 | sg_init_one(&sg, clname->data, clname->len); |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 107 | |
Jens Axboe | 60c74f8 | 2007-10-22 19:43:30 +0200 | [diff] [blame] | 108 | if (crypto_hash_digest(&desc, &sg, sg.length, cksum.data)) |
Herbert Xu | 3505868 | 2006-08-24 19:10:20 +1000 | [diff] [blame] | 109 | goto out; |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 110 | |
| 111 | md5_to_hex(dname, cksum.data); |
| 112 | |
| 113 | kfree(cksum.data); |
| 114 | status = nfs_ok; |
| 115 | out: |
Herbert Xu | 3505868 | 2006-08-24 19:10:20 +1000 | [diff] [blame] | 116 | crypto_free_hash(desc.tfm); |
| 117 | out_no_tfm: |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 118 | return status; |
| 119 | } |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 120 | |
NeilBrown | a6ccbbb | 2005-07-07 17:59:11 -0700 | [diff] [blame] | 121 | static void |
| 122 | nfsd4_sync_rec_dir(void) |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 123 | { |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 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); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | int |
| 130 | nfsd4_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 */ |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 146 | mutex_lock(&rec_dir.dentry->d_inode->i_mutex); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 147 | |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 148 | dentry = lookup_one_len(dname, rec_dir.dentry, HEXDIR_LEN-1); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 149 | 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 Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 158 | status = mnt_want_write(rec_dir.mnt); |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 159 | if (status) |
| 160 | goto out_put; |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 161 | status = vfs_mkdir(rec_dir.dentry->d_inode, dentry, S_IRWXU); |
| 162 | mnt_drop_write(rec_dir.mnt); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 163 | out_put: |
| 164 | dput(dentry); |
| 165 | out_unlock: |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 166 | mutex_unlock(&rec_dir.dentry->d_inode->i_mutex); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 167 | if (status == 0) { |
| 168 | clp->cl_firststate = 1; |
NeilBrown | a6ccbbb | 2005-07-07 17:59:11 -0700 | [diff] [blame] | 169 | nfsd4_sync_rec_dir(); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 170 | } |
| 171 | nfs4_reset_user(uid, gid); |
| 172 | dprintk("NFSD: nfsd4_create_clid_dir returns %d\n", status); |
| 173 | return status; |
| 174 | } |
| 175 | |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 176 | typedef int (recdir_func)(struct dentry *, struct dentry *); |
| 177 | |
| 178 | struct dentry_list { |
| 179 | struct dentry *dentry; |
| 180 | struct list_head list; |
| 181 | }; |
| 182 | |
| 183 | struct dentry_list_arg { |
| 184 | struct list_head dentries; |
| 185 | struct dentry *parent; |
| 186 | }; |
| 187 | |
| 188 | static int |
| 189 | nfsd4_build_dentrylist(void *arg, const char *name, int namlen, |
David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 190 | loff_t offset, u64 ino, unsigned int d_type) |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 191 | { |
| 192 | struct dentry_list_arg *dla = arg; |
| 193 | struct list_head *dentries = &dla->dentries; |
| 194 | struct dentry *parent = dla->parent; |
| 195 | struct dentry *dentry; |
| 196 | struct dentry_list *child; |
| 197 | |
| 198 | if (name && isdotent(name, namlen)) |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 199 | return 0; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 200 | dentry = lookup_one_len(name, parent, namlen); |
| 201 | if (IS_ERR(dentry)) |
| 202 | return PTR_ERR(dentry); |
| 203 | child = kmalloc(sizeof(*child), GFP_KERNEL); |
| 204 | if (child == NULL) |
| 205 | return -ENOMEM; |
| 206 | child->dentry = dentry; |
| 207 | list_add(&child->list, dentries); |
| 208 | return 0; |
| 209 | } |
| 210 | |
| 211 | static int |
| 212 | nfsd4_list_rec_dir(struct dentry *dir, recdir_func *f) |
| 213 | { |
| 214 | struct file *filp; |
| 215 | struct dentry_list_arg dla = { |
| 216 | .parent = dir, |
| 217 | }; |
| 218 | struct list_head *dentries = &dla.dentries; |
| 219 | struct dentry_list *child; |
| 220 | uid_t uid; |
| 221 | gid_t gid; |
| 222 | int status; |
| 223 | |
| 224 | if (!rec_dir_init) |
| 225 | return 0; |
| 226 | |
| 227 | nfs4_save_user(&uid, &gid); |
J. Bruce Fields | e4625eb | 2008-11-24 10:32:46 -0600 | [diff] [blame] | 228 | INIT_LIST_HEAD(dentries); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 229 | |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 230 | filp = dentry_open(dget(dir), mntget(rec_dir.mnt), O_RDONLY); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 231 | status = PTR_ERR(filp); |
| 232 | if (IS_ERR(filp)) |
| 233 | goto out; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 234 | status = vfs_readdir(filp, nfsd4_build_dentrylist, &dla); |
| 235 | fput(filp); |
| 236 | while (!list_empty(dentries)) { |
| 237 | child = list_entry(dentries->next, struct dentry_list, list); |
| 238 | status = f(dir, child->dentry); |
| 239 | if (status) |
| 240 | goto out; |
| 241 | list_del(&child->list); |
| 242 | dput(child->dentry); |
| 243 | kfree(child); |
| 244 | } |
| 245 | out: |
| 246 | while (!list_empty(dentries)) { |
| 247 | child = list_entry(dentries->next, struct dentry_list, list); |
| 248 | list_del(&child->list); |
| 249 | dput(child->dentry); |
| 250 | kfree(child); |
| 251 | } |
| 252 | nfs4_reset_user(uid, gid); |
| 253 | return status; |
| 254 | } |
| 255 | |
| 256 | static int |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 257 | nfsd4_remove_clid_file(struct dentry *dir, struct dentry *dentry) |
| 258 | { |
| 259 | int status; |
| 260 | |
| 261 | if (!S_ISREG(dir->d_inode->i_mode)) { |
| 262 | printk("nfsd4: non-file found in client recovery directory\n"); |
| 263 | return -EINVAL; |
| 264 | } |
Peter Zijlstra | 4b75f78 | 2006-12-08 02:39:38 -0800 | [diff] [blame] | 265 | mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 266 | status = vfs_unlink(dir->d_inode, dentry); |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 267 | mutex_unlock(&dir->d_inode->i_mutex); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 268 | return status; |
| 269 | } |
| 270 | |
| 271 | static int |
| 272 | nfsd4_clear_clid_dir(struct dentry *dir, struct dentry *dentry) |
| 273 | { |
| 274 | int status; |
| 275 | |
| 276 | /* For now this directory should already be empty, but we empty it of |
| 277 | * any regular files anyway, just in case the directory was created by |
| 278 | * a kernel from the future.... */ |
| 279 | nfsd4_list_rec_dir(dentry, nfsd4_remove_clid_file); |
Srinivasa Ds | 7ef55b8 | 2006-11-02 22:07:12 -0800 | [diff] [blame] | 280 | mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 281 | status = vfs_rmdir(dir->d_inode, dentry); |
Jes Sorensen | 1b1dcc1 | 2006-01-09 15:59:24 -0800 | [diff] [blame] | 282 | mutex_unlock(&dir->d_inode->i_mutex); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 283 | return status; |
| 284 | } |
| 285 | |
| 286 | static int |
| 287 | nfsd4_unlink_clid_dir(char *name, int namlen) |
| 288 | { |
| 289 | struct dentry *dentry; |
| 290 | int status; |
| 291 | |
| 292 | dprintk("NFSD: nfsd4_unlink_clid_dir. name %.*s\n", namlen, name); |
| 293 | |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 294 | mutex_lock(&rec_dir.dentry->d_inode->i_mutex); |
| 295 | dentry = lookup_one_len(name, rec_dir.dentry, namlen); |
| 296 | mutex_unlock(&rec_dir.dentry->d_inode->i_mutex); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 297 | if (IS_ERR(dentry)) { |
| 298 | status = PTR_ERR(dentry); |
| 299 | return status; |
| 300 | } |
| 301 | status = -ENOENT; |
| 302 | if (!dentry->d_inode) |
| 303 | goto out; |
| 304 | |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 305 | status = nfsd4_clear_clid_dir(rec_dir.dentry, dentry); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 306 | out: |
| 307 | dput(dentry); |
| 308 | return status; |
| 309 | } |
| 310 | |
| 311 | void |
| 312 | nfsd4_remove_clid_dir(struct nfs4_client *clp) |
| 313 | { |
| 314 | uid_t uid; |
| 315 | gid_t gid; |
| 316 | int status; |
| 317 | |
| 318 | if (!rec_dir_init || !clp->cl_firststate) |
| 319 | return; |
| 320 | |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 321 | status = mnt_want_write(rec_dir.mnt); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 322 | if (status) |
| 323 | goto out; |
NeilBrown | 67be431 | 2005-07-07 17:59:13 -0700 | [diff] [blame] | 324 | clp->cl_firststate = 0; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 325 | nfs4_save_user(&uid, &gid); |
| 326 | status = nfsd4_unlink_clid_dir(clp->cl_recdir, HEXDIR_LEN-1); |
| 327 | nfs4_reset_user(uid, gid); |
| 328 | if (status == 0) |
NeilBrown | a6ccbbb | 2005-07-07 17:59:11 -0700 | [diff] [blame] | 329 | nfsd4_sync_rec_dir(); |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 330 | mnt_drop_write(rec_dir.mnt); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 331 | out: |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 332 | if (status) |
| 333 | printk("NFSD: Failed to remove expired client state directory" |
| 334 | " %.*s\n", HEXDIR_LEN, clp->cl_recdir); |
| 335 | return; |
| 336 | } |
| 337 | |
| 338 | static int |
| 339 | purge_old(struct dentry *parent, struct dentry *child) |
| 340 | { |
| 341 | int status; |
| 342 | |
| 343 | if (nfs4_has_reclaimed_state(child->d_name.name)) |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 344 | return 0; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 345 | |
| 346 | status = nfsd4_clear_clid_dir(parent, child); |
| 347 | if (status) |
| 348 | printk("failed to remove client recovery directory %s\n", |
| 349 | child->d_name.name); |
| 350 | /* Keep trying, success or failure: */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 351 | return 0; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 352 | } |
| 353 | |
| 354 | void |
| 355 | nfsd4_recdir_purge_old(void) { |
| 356 | int status; |
| 357 | |
| 358 | if (!rec_dir_init) |
| 359 | return; |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 360 | status = mnt_want_write(rec_dir.mnt); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 361 | if (status) |
| 362 | goto out; |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 363 | status = nfsd4_list_rec_dir(rec_dir.dentry, purge_old); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 364 | if (status == 0) |
NeilBrown | a6ccbbb | 2005-07-07 17:59:11 -0700 | [diff] [blame] | 365 | nfsd4_sync_rec_dir(); |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 366 | mnt_drop_write(rec_dir.mnt); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 367 | out: |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 368 | if (status) |
| 369 | printk("nfsd4: failed to purge old clients from recovery" |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 370 | " directory %s\n", rec_dir.dentry->d_name.name); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 371 | } |
| 372 | |
| 373 | static int |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 374 | load_recdir(struct dentry *parent, struct dentry *child) |
| 375 | { |
| 376 | if (child->d_name.len != HEXDIR_LEN - 1) { |
| 377 | printk("nfsd4: illegal name %s in recovery directory\n", |
| 378 | child->d_name.name); |
| 379 | /* Keep trying; maybe the others are OK: */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 380 | return 0; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 381 | } |
| 382 | nfs4_client_to_reclaim(child->d_name.name); |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 383 | return 0; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | int |
| 387 | nfsd4_recdir_load(void) { |
| 388 | int status; |
| 389 | |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 390 | status = nfsd4_list_rec_dir(rec_dir.dentry, load_recdir); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 391 | if (status) |
| 392 | printk("nfsd4: failed loading clients from recovery" |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 393 | " directory %s\n", rec_dir.dentry->d_name.name); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 394 | return status; |
| 395 | } |
| 396 | |
| 397 | /* |
| 398 | * Hold reference to the recovery directory. |
| 399 | */ |
| 400 | |
| 401 | void |
| 402 | nfsd4_init_recdir(char *rec_dirname) |
| 403 | { |
| 404 | uid_t uid = 0; |
| 405 | gid_t gid = 0; |
| 406 | int status; |
| 407 | |
| 408 | printk("NFSD: Using %s as the NFSv4 state recovery directory\n", |
| 409 | rec_dirname); |
| 410 | |
| 411 | BUG_ON(rec_dir_init); |
| 412 | |
| 413 | nfs4_save_user(&uid, &gid); |
| 414 | |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 415 | status = kern_path(rec_dirname, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, |
J. Bruce Fields | c2642ab | 2006-01-18 17:43:29 -0800 | [diff] [blame] | 416 | &rec_dir); |
| 417 | if (status) |
| 418 | printk("NFSD: unable to find recovery directory %s\n", |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 419 | rec_dirname); |
| 420 | |
| 421 | if (!status) |
| 422 | rec_dir_init = 1; |
| 423 | nfs4_reset_user(uid, gid); |
| 424 | } |
| 425 | |
| 426 | void |
| 427 | nfsd4_shutdown_recdir(void) |
| 428 | { |
| 429 | if (!rec_dir_init) |
| 430 | return; |
| 431 | rec_dir_init = 0; |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 432 | path_put(&rec_dir); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 433 | } |