NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 1 | /* |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 2 | * Copyright (c) 2004 The Regents of the University of Michigan. |
| 3 | * All rights reserved. |
| 4 | * |
| 5 | * Andy Adamson <andros@citi.umich.edu> |
| 6 | * |
| 7 | * Redistribution and use in source and binary forms, with or without |
| 8 | * modification, are permitted provided that the following conditions |
| 9 | * are met: |
| 10 | * |
| 11 | * 1. Redistributions of source code must retain the above copyright |
| 12 | * notice, this list of conditions and the following disclaimer. |
| 13 | * 2. Redistributions in binary form must reproduce the above copyright |
| 14 | * notice, this list of conditions and the following disclaimer in the |
| 15 | * documentation and/or other materials provided with the distribution. |
| 16 | * 3. Neither the name of the University nor the names of its |
| 17 | * contributors may be used to endorse or promote products derived |
| 18 | * from this software without specific prior written permission. |
| 19 | * |
| 20 | * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESS OR IMPLIED |
| 21 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 22 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE |
| 23 | * DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE |
| 24 | * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
| 25 | * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
| 26 | * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
| 27 | * BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF |
| 28 | * LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING |
| 29 | * NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS |
| 30 | * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 31 | * |
| 32 | */ |
| 33 | |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 34 | #include <linux/file.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 35 | #include <linux/slab.h> |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 36 | #include <linux/namei.h> |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 37 | #include <linux/crypto.h> |
Alexey Dobriyan | e8edc6e | 2007-05-21 01:22:52 +0400 | [diff] [blame] | 38 | #include <linux/sched.h> |
Boaz Harrosh | 9a74af2 | 2009-12-03 20:30:56 +0200 | [diff] [blame] | 39 | |
| 40 | #include "nfsd.h" |
| 41 | #include "state.h" |
J. Bruce Fields | 0a3adad | 2009-11-04 18:12:35 -0500 | [diff] [blame] | 42 | #include "vfs.h" |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 43 | |
| 44 | #define NFSDDBG_FACILITY NFSDDBG_PROC |
| 45 | |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 46 | /* Globals */ |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 47 | static struct file *rec_file; |
J. Bruce Fields | 48483bf | 2011-08-26 20:40:28 -0400 | [diff] [blame^] | 48 | static char user_recovery_dirname[PATH_MAX] = "/var/lib/nfs/v4recovery"; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 49 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 50 | static int |
| 51 | nfs4_save_creds(const struct cred **original_creds) |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 52 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 53 | struct cred *new; |
| 54 | |
| 55 | new = prepare_creds(); |
| 56 | if (!new) |
| 57 | return -ENOMEM; |
| 58 | |
| 59 | new->fsuid = 0; |
| 60 | new->fsgid = 0; |
| 61 | *original_creds = override_creds(new); |
| 62 | put_cred(new); |
| 63 | return 0; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 64 | } |
| 65 | |
| 66 | static void |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 67 | nfs4_reset_creds(const struct cred *original) |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 68 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 69 | revert_creds(original); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 70 | } |
| 71 | |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 72 | static void |
| 73 | md5_to_hex(char *out, char *md5) |
| 74 | { |
| 75 | int i; |
| 76 | |
| 77 | for (i=0; i<16; i++) { |
| 78 | unsigned char c = md5[i]; |
| 79 | |
| 80 | *out++ = '0' + ((c&0xf0)>>4) + (c>=0xa0)*('a'-'9'-1); |
| 81 | *out++ = '0' + (c&0x0f) + ((c&0x0f)>=0x0a)*('a'-'9'-1); |
| 82 | } |
| 83 | *out = '\0'; |
| 84 | } |
| 85 | |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 86 | __be32 |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 87 | nfs4_make_rec_clidname(char *dname, struct xdr_netobj *clname) |
| 88 | { |
| 89 | struct xdr_netobj cksum; |
Herbert Xu | 3505868 | 2006-08-24 19:10:20 +1000 | [diff] [blame] | 90 | struct hash_desc desc; |
Jens Axboe | 60c74f8 | 2007-10-22 19:43:30 +0200 | [diff] [blame] | 91 | struct scatterlist sg; |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 92 | __be32 status = nfserr_resource; |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 93 | |
| 94 | dprintk("NFSD: nfs4_make_rec_clidname for %.*s\n", |
| 95 | clname->len, clname->data); |
Herbert Xu | 3505868 | 2006-08-24 19:10:20 +1000 | [diff] [blame] | 96 | desc.flags = CRYPTO_TFM_REQ_MAY_SLEEP; |
| 97 | desc.tfm = crypto_alloc_hash("md5", 0, CRYPTO_ALG_ASYNC); |
| 98 | if (IS_ERR(desc.tfm)) |
| 99 | goto out_no_tfm; |
| 100 | cksum.len = crypto_hash_digestsize(desc.tfm); |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 101 | cksum.data = kmalloc(cksum.len, GFP_KERNEL); |
| 102 | if (cksum.data == NULL) |
| 103 | goto out; |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 104 | |
Jens Axboe | 60c74f8 | 2007-10-22 19:43:30 +0200 | [diff] [blame] | 105 | sg_init_one(&sg, clname->data, clname->len); |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 106 | |
Jens Axboe | 60c74f8 | 2007-10-22 19:43:30 +0200 | [diff] [blame] | 107 | if (crypto_hash_digest(&desc, &sg, sg.length, cksum.data)) |
Herbert Xu | 3505868 | 2006-08-24 19:10:20 +1000 | [diff] [blame] | 108 | goto out; |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 109 | |
| 110 | md5_to_hex(dname, cksum.data); |
| 111 | |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 112 | status = nfs_ok; |
| 113 | out: |
Krishna Kumar | 2bd9e7b | 2008-10-20 11:47:09 +0530 | [diff] [blame] | 114 | kfree(cksum.data); |
Herbert Xu | 3505868 | 2006-08-24 19:10:20 +1000 | [diff] [blame] | 115 | crypto_free_hash(desc.tfm); |
| 116 | out_no_tfm: |
NeilBrown | a55370a | 2005-06-23 22:03:52 -0700 | [diff] [blame] | 117 | return status; |
| 118 | } |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 119 | |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 120 | int |
| 121 | nfsd4_create_clid_dir(struct nfs4_client *clp) |
| 122 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 123 | const struct cred *original_cred; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 124 | char *dname = clp->cl_recdir; |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 125 | struct dentry *dir, *dentry; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 126 | int status; |
| 127 | |
| 128 | dprintk("NFSD: nfsd4_create_clid_dir for \"%s\"\n", dname); |
| 129 | |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 130 | if (!rec_file || clp->cl_firststate) |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 131 | return 0; |
| 132 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 133 | status = nfs4_save_creds(&original_cred); |
| 134 | if (status < 0) |
| 135 | return status; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 136 | |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 137 | dir = rec_file->f_path.dentry; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 138 | /* lock the parent */ |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 139 | mutex_lock(&dir->d_inode->i_mutex); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 140 | |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 141 | dentry = lookup_one_len(dname, dir, HEXDIR_LEN-1); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 142 | if (IS_ERR(dentry)) { |
| 143 | status = PTR_ERR(dentry); |
| 144 | goto out_unlock; |
| 145 | } |
| 146 | status = -EEXIST; |
| 147 | if (dentry->d_inode) { |
| 148 | dprintk("NFSD: nfsd4_create_clid_dir: DIRECTORY EXISTS\n"); |
| 149 | goto out_put; |
| 150 | } |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 151 | status = mnt_want_write(rec_file->f_path.mnt); |
Dave Hansen | 463c319 | 2008-02-15 14:37:57 -0800 | [diff] [blame] | 152 | if (status) |
| 153 | goto out_put; |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 154 | status = vfs_mkdir(dir->d_inode, dentry, S_IRWXU); |
| 155 | mnt_drop_write(rec_file->f_path.mnt); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 156 | out_put: |
| 157 | dput(dentry); |
| 158 | out_unlock: |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 159 | mutex_unlock(&dir->d_inode->i_mutex); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 160 | if (status == 0) { |
| 161 | clp->cl_firststate = 1; |
Christoph Hellwig | 8018ab0 | 2010-03-22 17:32:25 +0100 | [diff] [blame] | 162 | vfs_fsync(rec_file, 0); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 163 | } |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 164 | nfs4_reset_creds(original_cred); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 165 | dprintk("NFSD: nfsd4_create_clid_dir returns %d\n", status); |
| 166 | return status; |
| 167 | } |
| 168 | |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 169 | typedef int (recdir_func)(struct dentry *, struct dentry *); |
| 170 | |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 171 | struct name_list { |
| 172 | char name[HEXDIR_LEN]; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 173 | struct list_head list; |
| 174 | }; |
| 175 | |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 176 | static int |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 177 | nfsd4_build_namelist(void *arg, const char *name, int namlen, |
David Howells | afefdbb | 2006-10-03 01:13:46 -0700 | [diff] [blame] | 178 | loff_t offset, u64 ino, unsigned int d_type) |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 179 | { |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 180 | struct list_head *names = arg; |
| 181 | struct name_list *entry; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 182 | |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 183 | if (namlen != HEXDIR_LEN - 1) |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 184 | return 0; |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 185 | entry = kmalloc(sizeof(struct name_list), GFP_KERNEL); |
| 186 | if (entry == NULL) |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 187 | return -ENOMEM; |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 188 | memcpy(entry->name, name, HEXDIR_LEN - 1); |
| 189 | entry->name[HEXDIR_LEN - 1] = '\0'; |
| 190 | list_add(&entry->list, names); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 191 | return 0; |
| 192 | } |
| 193 | |
| 194 | static int |
Al Viro | 5b4b299 | 2011-07-07 18:43:21 -0400 | [diff] [blame] | 195 | nfsd4_list_rec_dir(recdir_func *f) |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 196 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 197 | const struct cred *original_cred; |
Al Viro | 5b4b299 | 2011-07-07 18:43:21 -0400 | [diff] [blame] | 198 | struct dentry *dir = rec_file->f_path.dentry; |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 199 | LIST_HEAD(names); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 200 | int status; |
| 201 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 202 | status = nfs4_save_creds(&original_cred); |
| 203 | if (status < 0) |
| 204 | return status; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 205 | |
Al Viro | 5b4b299 | 2011-07-07 18:43:21 -0400 | [diff] [blame] | 206 | status = vfs_llseek(rec_file, 0, SEEK_SET); |
| 207 | if (status < 0) { |
| 208 | nfs4_reset_creds(original_cred); |
| 209 | return status; |
| 210 | } |
| 211 | |
| 212 | status = vfs_readdir(rec_file, nfsd4_build_namelist, &names); |
J. Bruce Fields | 8daed1e | 2009-05-11 16:10:19 -0400 | [diff] [blame] | 213 | mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT); |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 214 | while (!list_empty(&names)) { |
Al Viro | 5b4b299 | 2011-07-07 18:43:21 -0400 | [diff] [blame] | 215 | struct name_list *entry; |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 216 | entry = list_entry(names.next, struct name_list, list); |
Al Viro | 5b4b299 | 2011-07-07 18:43:21 -0400 | [diff] [blame] | 217 | if (!status) { |
| 218 | struct dentry *dentry; |
| 219 | dentry = lookup_one_len(entry->name, dir, HEXDIR_LEN-1); |
| 220 | if (IS_ERR(dentry)) { |
| 221 | status = PTR_ERR(dentry); |
| 222 | break; |
| 223 | } |
| 224 | status = f(dir, dentry); |
| 225 | dput(dentry); |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 226 | } |
J. Bruce Fields | 05f4f67 | 2009-03-13 16:02:59 -0400 | [diff] [blame] | 227 | list_del(&entry->list); |
| 228 | kfree(entry); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 229 | } |
David Woodhouse | 2f9092e | 2009-04-20 23:18:37 +0100 | [diff] [blame] | 230 | mutex_unlock(&dir->d_inode->i_mutex); |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 231 | nfs4_reset_creds(original_cred); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 232 | return status; |
| 233 | } |
| 234 | |
| 235 | static int |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 236 | nfsd4_unlink_clid_dir(char *name, int namlen) |
| 237 | { |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 238 | struct dentry *dir, *dentry; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 239 | int status; |
| 240 | |
| 241 | dprintk("NFSD: nfsd4_unlink_clid_dir. name %.*s\n", namlen, name); |
| 242 | |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 243 | dir = rec_file->f_path.dentry; |
| 244 | mutex_lock_nested(&dir->d_inode->i_mutex, I_MUTEX_PARENT); |
| 245 | dentry = lookup_one_len(name, dir, namlen); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 246 | if (IS_ERR(dentry)) { |
| 247 | status = PTR_ERR(dentry); |
David Woodhouse | 2f9092e | 2009-04-20 23:18:37 +0100 | [diff] [blame] | 248 | goto out_unlock; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 249 | } |
| 250 | status = -ENOENT; |
| 251 | if (!dentry->d_inode) |
| 252 | goto out; |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 253 | status = vfs_rmdir(dir->d_inode, dentry); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 254 | out: |
| 255 | dput(dentry); |
David Woodhouse | 2f9092e | 2009-04-20 23:18:37 +0100 | [diff] [blame] | 256 | out_unlock: |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 257 | mutex_unlock(&dir->d_inode->i_mutex); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 258 | return status; |
| 259 | } |
| 260 | |
| 261 | void |
| 262 | nfsd4_remove_clid_dir(struct nfs4_client *clp) |
| 263 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 264 | const struct cred *original_cred; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 265 | int status; |
| 266 | |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 267 | if (!rec_file || !clp->cl_firststate) |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 268 | return; |
| 269 | |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 270 | status = mnt_want_write(rec_file->f_path.mnt); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 271 | if (status) |
| 272 | goto out; |
NeilBrown | 67be431 | 2005-07-07 17:59:13 -0700 | [diff] [blame] | 273 | clp->cl_firststate = 0; |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 274 | |
| 275 | status = nfs4_save_creds(&original_cred); |
| 276 | if (status < 0) |
| 277 | goto out; |
| 278 | |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 279 | status = nfsd4_unlink_clid_dir(clp->cl_recdir, HEXDIR_LEN-1); |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 280 | nfs4_reset_creds(original_cred); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 281 | if (status == 0) |
Christoph Hellwig | 8018ab0 | 2010-03-22 17:32:25 +0100 | [diff] [blame] | 282 | vfs_fsync(rec_file, 0); |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 283 | mnt_drop_write(rec_file->f_path.mnt); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 284 | out: |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 285 | if (status) |
| 286 | printk("NFSD: Failed to remove expired client state directory" |
| 287 | " %.*s\n", HEXDIR_LEN, clp->cl_recdir); |
| 288 | return; |
| 289 | } |
| 290 | |
| 291 | static int |
| 292 | purge_old(struct dentry *parent, struct dentry *child) |
| 293 | { |
| 294 | int status; |
| 295 | |
Andy Adamson | a1bcecd | 2009-04-03 08:28:05 +0300 | [diff] [blame] | 296 | if (nfs4_has_reclaimed_state(child->d_name.name, false)) |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 297 | return 0; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 298 | |
David Woodhouse | 2f9092e | 2009-04-20 23:18:37 +0100 | [diff] [blame] | 299 | status = vfs_rmdir(parent->d_inode, child); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 300 | if (status) |
| 301 | printk("failed to remove client recovery directory %s\n", |
| 302 | child->d_name.name); |
| 303 | /* Keep trying, success or failure: */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 304 | return 0; |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 305 | } |
| 306 | |
| 307 | void |
| 308 | nfsd4_recdir_purge_old(void) { |
| 309 | int status; |
| 310 | |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 311 | if (!rec_file) |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 312 | return; |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 313 | status = mnt_want_write(rec_file->f_path.mnt); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 314 | if (status) |
| 315 | goto out; |
Al Viro | 5b4b299 | 2011-07-07 18:43:21 -0400 | [diff] [blame] | 316 | status = nfsd4_list_rec_dir(purge_old); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 317 | if (status == 0) |
Christoph Hellwig | 8018ab0 | 2010-03-22 17:32:25 +0100 | [diff] [blame] | 318 | vfs_fsync(rec_file, 0); |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 319 | mnt_drop_write(rec_file->f_path.mnt); |
Dave Hansen | 0622753 | 2008-02-15 14:37:34 -0800 | [diff] [blame] | 320 | out: |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 321 | if (status) |
| 322 | printk("nfsd4: failed to purge old clients from recovery" |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 323 | " directory %s\n", rec_file->f_path.dentry->d_name.name); |
NeilBrown | c7b9a45 | 2005-06-23 22:04:30 -0700 | [diff] [blame] | 324 | } |
| 325 | |
| 326 | static int |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 327 | load_recdir(struct dentry *parent, struct dentry *child) |
| 328 | { |
| 329 | if (child->d_name.len != HEXDIR_LEN - 1) { |
| 330 | printk("nfsd4: illegal name %s in recovery directory\n", |
| 331 | child->d_name.name); |
| 332 | /* Keep trying; maybe the others are OK: */ |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 333 | return 0; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 334 | } |
| 335 | nfs4_client_to_reclaim(child->d_name.name); |
Al Viro | b37ad28 | 2006-10-19 23:28:59 -0700 | [diff] [blame] | 336 | return 0; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 337 | } |
| 338 | |
| 339 | int |
| 340 | nfsd4_recdir_load(void) { |
| 341 | int status; |
| 342 | |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 343 | if (!rec_file) |
| 344 | return 0; |
| 345 | |
Al Viro | 5b4b299 | 2011-07-07 18:43:21 -0400 | [diff] [blame] | 346 | status = nfsd4_list_rec_dir(load_recdir); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 347 | if (status) |
| 348 | printk("nfsd4: failed loading clients from recovery" |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 349 | " directory %s\n", rec_file->f_path.dentry->d_name.name); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 350 | return status; |
| 351 | } |
| 352 | |
| 353 | /* |
| 354 | * Hold reference to the recovery directory. |
| 355 | */ |
| 356 | |
| 357 | void |
J. Bruce Fields | 48483bf | 2011-08-26 20:40:28 -0400 | [diff] [blame^] | 358 | nfsd4_init_recdir() |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 359 | { |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 360 | const struct cred *original_cred; |
| 361 | int status; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 362 | |
| 363 | printk("NFSD: Using %s as the NFSv4 state recovery directory\n", |
J. Bruce Fields | 48483bf | 2011-08-26 20:40:28 -0400 | [diff] [blame^] | 364 | user_recovery_dirname); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 365 | |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 366 | BUG_ON(rec_file); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 367 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 368 | status = nfs4_save_creds(&original_cred); |
| 369 | if (status < 0) { |
| 370 | printk("NFSD: Unable to change credentials to find recovery" |
| 371 | " directory: error %d\n", |
| 372 | status); |
| 373 | return; |
| 374 | } |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 375 | |
J. Bruce Fields | 48483bf | 2011-08-26 20:40:28 -0400 | [diff] [blame^] | 376 | rec_file = filp_open(user_recovery_dirname, O_RDONLY | O_DIRECTORY, 0); |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 377 | if (IS_ERR(rec_file)) { |
J. Bruce Fields | c2642ab | 2006-01-18 17:43:29 -0800 | [diff] [blame] | 378 | printk("NFSD: unable to find recovery directory %s\n", |
J. Bruce Fields | 48483bf | 2011-08-26 20:40:28 -0400 | [diff] [blame^] | 379 | user_recovery_dirname); |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 380 | rec_file = NULL; |
| 381 | } |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 382 | |
David Howells | d84f4f9 | 2008-11-14 10:39:23 +1100 | [diff] [blame] | 383 | nfs4_reset_creds(original_cred); |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 384 | } |
| 385 | |
| 386 | void |
| 387 | nfsd4_shutdown_recdir(void) |
| 388 | { |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 389 | if (!rec_file) |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 390 | return; |
Christoph Hellwig | e970a57 | 2010-03-22 17:32:14 +0100 | [diff] [blame] | 391 | fput(rec_file); |
| 392 | rec_file = NULL; |
NeilBrown | 190e4fb | 2005-06-23 22:04:25 -0700 | [diff] [blame] | 393 | } |
J. Bruce Fields | 48483bf | 2011-08-26 20:40:28 -0400 | [diff] [blame^] | 394 | |
| 395 | /* |
| 396 | * Change the NFSv4 recovery directory to recdir. |
| 397 | */ |
| 398 | int |
| 399 | nfs4_reset_recoverydir(char *recdir) |
| 400 | { |
| 401 | int status; |
| 402 | struct path path; |
| 403 | |
| 404 | status = kern_path(recdir, LOOKUP_FOLLOW, &path); |
| 405 | if (status) |
| 406 | return status; |
| 407 | status = -ENOTDIR; |
| 408 | if (S_ISDIR(path.dentry->d_inode->i_mode)) { |
| 409 | strcpy(user_recovery_dirname, recdir); |
| 410 | status = 0; |
| 411 | } |
| 412 | path_put(&path); |
| 413 | return status; |
| 414 | } |
| 415 | |
| 416 | char * |
| 417 | nfs4_recoverydir(void) |
| 418 | { |
| 419 | return user_recovery_dirname; |
| 420 | } |