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 | |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 36 | #include <linux/file.h> |
| 37 | #include <linux/namei.h> |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 38 | #include <linux/crypto.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 39 | #include <linux/sched.h> |
Boaz Harrosh | 9a74af2 | 2009-12-03 20:30:56 +0200 | [diff] [blame^] | 40 | |
| 41 | #include "nfsd.h" |
| 42 | #include "state.h" |
J. Bruce Fields | 0a3adad | 2009-11-04 18:12:35 -0500 | [diff] [blame] | 43 | #include "vfs.h" |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 44 | |
| 45 | #define NFSDDBG_FACILITY NFSDDBG_PROC |
| 46 | |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 47 | /* Globals */ |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 48 | static struct path rec_dir; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 49 | static int rec_dir_init = 0; |
| 50 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 51 | static int |
| 52 | nfs4_save_creds(const struct cred **original_creds) |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 53 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 54 | 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; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | static void |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 68 | nfs4_reset_creds(const struct cred *original) |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 69 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 70 | revert_creds(original); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 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 | |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 113 | status = nfs_ok; |
| 114 | out: |
Krishna Kumar | 2bd9e7b | 2008-10-20 11:47:09 +0530 | [diff] [blame] | 115 | kfree(cksum.data); |
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 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 132 | const struct cred *original_cred; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 133 | char *dname = clp->cl_recdir; |
| 134 | struct dentry *dentry; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 135 | 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 Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 142 | status = nfs4_save_creds(&original_cred); |
| 143 | if (status < 0) |
| 144 | return status; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 145 | |
| 146 | /* lock the parent */ |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 147 | mutex_lock(&rec_dir.dentry->d_inode->i_mutex); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 148 | |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 149 | dentry = lookup_one_len(dname, rec_dir.dentry, HEXDIR_LEN-1); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 150 | 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 Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 159 | status = mnt_want_write(rec_dir.mnt); |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 160 | if (status) |
| 161 | goto out_put; |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 162 | status = vfs_mkdir(rec_dir.dentry->d_inode, dentry, S_IRWXU); |
| 163 | mnt_drop_write(rec_dir.mnt); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 164 | out_put: |
| 165 | dput(dentry); |
| 166 | out_unlock: |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 167 | mutex_unlock(&rec_dir.dentry->d_inode->i_mutex); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 168 | if (status == 0) { |
| 169 | clp->cl_firststate = 1; |
NeilBrown | a6ccbbb | 2005-07-07 17:59:11 -0700 | [diff] [blame] | 170 | nfsd4_sync_rec_dir(); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 171 | } |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 172 | nfs4_reset_creds(original_cred); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 173 | dprintk("NFSD: nfsd4_create_clid_dir returns %d\n", status); |
| 174 | return status; |
| 175 | } |
| 176 | |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 177 | typedef int (recdir_func)(struct dentry *, struct dentry *); |
| 178 | |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 179 | struct name_list { |
| 180 | char name[HEXDIR_LEN]; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 181 | struct list_head list; |
| 182 | }; |
| 183 | |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 184 | static int |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 185 | nfsd4_build_namelist(void *arg, const char *name, int namlen, |
David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 186 | loff_t offset, u64 ino, unsigned int d_type) |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 187 | { |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 188 | struct list_head *names = arg; |
| 189 | struct name_list *entry; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 190 | |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 191 | if (namlen != HEXDIR_LEN - 1) |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 192 | return 0; |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 193 | entry = kmalloc(sizeof(struct name_list), GFP_KERNEL); |
| 194 | if (entry == NULL) |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 195 | return -ENOMEM; |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 196 | memcpy(entry->name, name, HEXDIR_LEN - 1); |
| 197 | entry->name[HEXDIR_LEN - 1] = '\0'; |
| 198 | list_add(&entry->list, names); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 199 | return 0; |
| 200 | } |
| 201 | |
| 202 | static int |
| 203 | nfsd4_list_rec_dir(struct dentry *dir, recdir_func *f) |
| 204 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 205 | const struct cred *original_cred; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 206 | struct file *filp; |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 207 | LIST_HEAD(names); |
| 208 | struct name_list *entry; |
| 209 | struct dentry *dentry; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 210 | int status; |
| 211 | |
| 212 | if (!rec_dir_init) |
| 213 | return 0; |
| 214 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 215 | status = nfs4_save_creds(&original_cred); |
| 216 | if (status < 0) |
| 217 | return status; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 218 | |
David Howells | 745ca24 | 2008-11-14 10:39:22 +1100 | [diff] [blame] | 219 | filp = dentry_open(dget(dir), mntget(rec_dir.mnt), O_RDONLY, |
| 220 | current_cred()); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 221 | status = PTR_ERR(filp); |
| 222 | if (IS_ERR(filp)) |
| 223 | goto out; |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 224 | status = vfs_readdir(filp, nfsd4_build_namelist, &names); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 225 | fput(filp); |
J. Bruce Fields | 8daed1e | 2009-05-11 16:10:19 -0400 | [diff] [blame] | 226 | mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT); |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 227 | 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 Woodhouse | 2f9092e | 2009-04-20 23:18:37 +0100 | [diff] [blame] | 233 | break; |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 234 | } |
| 235 | status = f(dir, dentry); |
| 236 | dput(dentry); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 237 | if (status) |
David Woodhouse | 2f9092e | 2009-04-20 23:18:37 +0100 | [diff] [blame] | 238 | break; |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 239 | list_del(&entry->list); |
| 240 | kfree(entry); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 241 | } |
David Woodhouse | 2f9092e | 2009-04-20 23:18:37 +0100 | [diff] [blame] | 242 | mutex_unlock(&dir->d_inode->i_mutex); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 243 | out: |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 244 | while (!list_empty(&names)) { |
| 245 | entry = list_entry(names.next, struct name_list, list); |
| 246 | list_del(&entry->list); |
| 247 | kfree(entry); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 248 | } |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 249 | nfs4_reset_creds(original_cred); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 250 | return status; |
| 251 | } |
| 252 | |
| 253 | static int |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 254 | nfsd4_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 Fields | 8daed1e | 2009-05-11 16:10:19 -0400 | [diff] [blame] | 261 | mutex_lock_nested(&rec_dir.dentry->d_inode->i_mutex, I_MUTEX_PARENT); |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 262 | dentry = lookup_one_len(name, rec_dir.dentry, namlen); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 263 | if (IS_ERR(dentry)) { |
| 264 | status = PTR_ERR(dentry); |
David Woodhouse | 2f9092e | 2009-04-20 23:18:37 +0100 | [diff] [blame] | 265 | goto out_unlock; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 266 | } |
| 267 | status = -ENOENT; |
| 268 | if (!dentry->d_inode) |
| 269 | goto out; |
David Woodhouse | 2f9092e | 2009-04-20 23:18:37 +0100 | [diff] [blame] | 270 | status = vfs_rmdir(rec_dir.dentry->d_inode, dentry); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 271 | out: |
| 272 | dput(dentry); |
David Woodhouse | 2f9092e | 2009-04-20 23:18:37 +0100 | [diff] [blame] | 273 | out_unlock: |
| 274 | mutex_unlock(&rec_dir.dentry->d_inode->i_mutex); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 275 | return status; |
| 276 | } |
| 277 | |
| 278 | void |
| 279 | nfsd4_remove_clid_dir(struct nfs4_client *clp) |
| 280 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 281 | const struct cred *original_cred; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 282 | int status; |
| 283 | |
| 284 | if (!rec_dir_init || !clp->cl_firststate) |
| 285 | return; |
| 286 | |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 287 | status = mnt_want_write(rec_dir.mnt); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 288 | if (status) |
| 289 | goto out; |
NeilBrown | 67be431 | 2005-07-07 17:59:13 -0700 | [diff] [blame] | 290 | clp->cl_firststate = 0; |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 291 | |
| 292 | status = nfs4_save_creds(&original_cred); |
| 293 | if (status < 0) |
| 294 | goto out; |
| 295 | |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 296 | status = nfsd4_unlink_clid_dir(clp->cl_recdir, HEXDIR_LEN-1); |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 297 | nfs4_reset_creds(original_cred); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 298 | if (status == 0) |
NeilBrown | a6ccbbb | 2005-07-07 17:59:11 -0700 | [diff] [blame] | 299 | nfsd4_sync_rec_dir(); |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 300 | mnt_drop_write(rec_dir.mnt); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 301 | out: |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 302 | if (status) |
| 303 | printk("NFSD: Failed to remove expired client state directory" |
| 304 | " %.*s\n", HEXDIR_LEN, clp->cl_recdir); |
| 305 | return; |
| 306 | } |
| 307 | |
| 308 | static int |
| 309 | purge_old(struct dentry *parent, struct dentry *child) |
| 310 | { |
| 311 | int status; |
| 312 | |
Andy Adamson | a1bcecd | 2009-04-03 08:28:05 +0300 | [diff] [blame] | 313 | /* note: we currently use this path only for minorversion 0 */ |
| 314 | if (nfs4_has_reclaimed_state(child->d_name.name, false)) |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 315 | return 0; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 316 | |
David Woodhouse | 2f9092e | 2009-04-20 23:18:37 +0100 | [diff] [blame] | 317 | status = vfs_rmdir(parent->d_inode, child); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 318 | if (status) |
| 319 | printk("failed to remove client recovery directory %s\n", |
| 320 | child->d_name.name); |
| 321 | /* Keep trying, success or failure: */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 322 | return 0; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 323 | } |
| 324 | |
| 325 | void |
| 326 | nfsd4_recdir_purge_old(void) { |
| 327 | int status; |
| 328 | |
| 329 | if (!rec_dir_init) |
| 330 | return; |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 331 | status = mnt_want_write(rec_dir.mnt); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 332 | if (status) |
| 333 | goto out; |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 334 | status = nfsd4_list_rec_dir(rec_dir.dentry, purge_old); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 335 | if (status == 0) |
NeilBrown | a6ccbbb | 2005-07-07 17:59:11 -0700 | [diff] [blame] | 336 | nfsd4_sync_rec_dir(); |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 337 | mnt_drop_write(rec_dir.mnt); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 338 | out: |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 339 | if (status) |
| 340 | printk("nfsd4: failed to purge old clients from recovery" |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 341 | " directory %s\n", rec_dir.dentry->d_name.name); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 342 | } |
| 343 | |
| 344 | static int |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 345 | load_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 Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 351 | return 0; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 352 | } |
| 353 | nfs4_client_to_reclaim(child->d_name.name); |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 354 | return 0; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 355 | } |
| 356 | |
| 357 | int |
| 358 | nfsd4_recdir_load(void) { |
| 359 | int status; |
| 360 | |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 361 | status = nfsd4_list_rec_dir(rec_dir.dentry, load_recdir); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 362 | if (status) |
| 363 | printk("nfsd4: failed loading clients from recovery" |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 364 | " directory %s\n", rec_dir.dentry->d_name.name); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 365 | return status; |
| 366 | } |
| 367 | |
| 368 | /* |
| 369 | * Hold reference to the recovery directory. |
| 370 | */ |
| 371 | |
| 372 | void |
| 373 | nfsd4_init_recdir(char *rec_dirname) |
| 374 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 375 | const struct cred *original_cred; |
| 376 | int status; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 377 | |
| 378 | printk("NFSD: Using %s as the NFSv4 state recovery directory\n", |
| 379 | rec_dirname); |
| 380 | |
| 381 | BUG_ON(rec_dir_init); |
| 382 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 383 | 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 | } |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 390 | |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 391 | status = kern_path(rec_dirname, LOOKUP_FOLLOW | LOOKUP_DIRECTORY, |
J. Bruce Fields | c2642ab | 2006-01-18 17:43:29 -0800 | [diff] [blame] | 392 | &rec_dir); |
| 393 | if (status) |
| 394 | printk("NFSD: unable to find recovery directory %s\n", |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 395 | rec_dirname); |
| 396 | |
| 397 | if (!status) |
| 398 | rec_dir_init = 1; |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 399 | nfs4_reset_creds(original_cred); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 400 | } |
| 401 | |
| 402 | void |
| 403 | nfsd4_shutdown_recdir(void) |
| 404 | { |
| 405 | if (!rec_dir_init) |
| 406 | return; |
| 407 | rec_dir_init = 0; |
Al Viro | a63bb99 | 2008-08-02 01:03:36 -0400 | [diff] [blame] | 408 | path_put(&rec_dir); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 409 | } |