Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/fs/nfs/unlink.c |
| 3 | * |
| 4 | * nfs sillydelete handling |
| 5 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <linux/slab.h> |
| 9 | #include <linux/string.h> |
| 10 | #include <linux/dcache.h> |
| 11 | #include <linux/sunrpc/sched.h> |
| 12 | #include <linux/sunrpc/clnt.h> |
| 13 | #include <linux/nfs_fs.h> |
Linus Torvalds | b35e704 | 2007-10-19 19:59:18 -0700 | [diff] [blame] | 14 | #include <linux/sched.h> |
| 15 | #include <linux/wait.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | |
Steve Dickson | ef818a2 | 2007-11-08 04:05:04 -0500 | [diff] [blame] | 17 | #include "internal.h" |
| 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | struct nfs_unlinkdata { |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 20 | struct hlist_node list; |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 21 | struct nfs_removeargs args; |
| 22 | struct nfs_removeres res; |
| 23 | struct inode *dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | struct rpc_cred *cred; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | }; |
| 26 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | /** |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 28 | * nfs_free_unlinkdata - release data from a sillydelete operation. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | * @data: pointer to unlink structure. |
| 30 | */ |
| 31 | static void |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 32 | nfs_free_unlinkdata(struct nfs_unlinkdata *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | { |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 34 | iput(data->dir); |
| 35 | put_rpccred(data->cred); |
| 36 | kfree(data->args.name.name); |
| 37 | kfree(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | } |
| 39 | |
| 40 | #define NAME_ALLOC_LEN(len) ((len+16) & ~15) |
| 41 | /** |
| 42 | * nfs_copy_dname - copy dentry name to data structure |
| 43 | * @dentry: pointer to dentry |
| 44 | * @data: nfs_unlinkdata |
| 45 | */ |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 46 | static int nfs_copy_dname(struct dentry *dentry, struct nfs_unlinkdata *data) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | { |
| 48 | char *str; |
| 49 | int len = dentry->d_name.len; |
| 50 | |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 51 | str = kmemdup(dentry->d_name.name, NAME_ALLOC_LEN(len), GFP_KERNEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | if (!str) |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 53 | return -ENOMEM; |
| 54 | data->args.name.len = len; |
| 55 | data->args.name.name = str; |
| 56 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | } |
| 58 | |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 59 | static void nfs_free_dname(struct nfs_unlinkdata *data) |
| 60 | { |
| 61 | kfree(data->args.name.name); |
| 62 | data->args.name.name = NULL; |
| 63 | data->args.name.len = 0; |
| 64 | } |
| 65 | |
| 66 | static void nfs_dec_sillycount(struct inode *dir) |
| 67 | { |
| 68 | struct nfs_inode *nfsi = NFS_I(dir); |
| 69 | if (atomic_dec_return(&nfsi->silly_count) == 1) |
| 70 | wake_up(&nfsi->waitqueue); |
| 71 | } |
| 72 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 73 | /** |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 74 | * nfs_async_unlink_done - Sillydelete post-processing |
| 75 | * @task: rpc_task of the sillydelete |
| 76 | * |
| 77 | * Do the directory attribute update. |
| 78 | */ |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 79 | static void nfs_async_unlink_done(struct rpc_task *task, void *calldata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | { |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 81 | struct nfs_unlinkdata *data = calldata; |
| 82 | struct inode *dir = data->dir; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 84 | if (!NFS_PROTO(dir)->unlink_done(task, dir)) |
| 85 | rpc_restart_call(task); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | } |
| 87 | |
| 88 | /** |
| 89 | * nfs_async_unlink_release - Release the sillydelete data. |
| 90 | * @task: rpc_task of the sillydelete |
| 91 | * |
| 92 | * We need to call nfs_put_unlinkdata as a 'tk_release' task since the |
| 93 | * rpc_task would be freed too. |
| 94 | */ |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 95 | static void nfs_async_unlink_release(void *calldata) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | { |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 97 | struct nfs_unlinkdata *data = calldata; |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 98 | |
| 99 | nfs_dec_sillycount(data->dir); |
Steve Dickson | ef818a2 | 2007-11-08 04:05:04 -0500 | [diff] [blame] | 100 | nfs_sb_deactive(NFS_SERVER(data->dir)); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 101 | nfs_free_unlinkdata(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | } |
| 103 | |
Trond Myklebust | 963d8fe | 2006-01-03 09:55:04 +0100 | [diff] [blame] | 104 | static const struct rpc_call_ops nfs_unlink_ops = { |
| 105 | .rpc_call_done = nfs_async_unlink_done, |
| 106 | .rpc_release = nfs_async_unlink_release, |
| 107 | }; |
| 108 | |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 109 | static int nfs_do_call_unlink(struct dentry *parent, struct inode *dir, struct nfs_unlinkdata *data) |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 110 | { |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 111 | struct rpc_message msg = { |
| 112 | .rpc_argp = &data->args, |
| 113 | .rpc_resp = &data->res, |
| 114 | .rpc_cred = data->cred, |
| 115 | }; |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 116 | struct rpc_task_setup task_setup_data = { |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 117 | .rpc_message = &msg, |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 118 | .callback_ops = &nfs_unlink_ops, |
| 119 | .callback_data = data, |
| 120 | .flags = RPC_TASK_ASYNC, |
| 121 | }; |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 122 | struct rpc_task *task; |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 123 | struct dentry *alias; |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 124 | |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 125 | alias = d_lookup(parent, &data->args.name); |
| 126 | if (alias != NULL) { |
| 127 | int ret = 0; |
Trond Myklebust | 609005c | 2008-01-28 19:42:59 -0500 | [diff] [blame] | 128 | |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 129 | /* |
| 130 | * Hey, we raced with lookup... See if we need to transfer |
| 131 | * the sillyrename information to the aliased dentry. |
| 132 | */ |
| 133 | nfs_free_dname(data); |
| 134 | spin_lock(&alias->d_lock); |
Trond Myklebust | 609005c | 2008-01-28 19:42:59 -0500 | [diff] [blame] | 135 | if (alias->d_inode != NULL && |
| 136 | !(alias->d_flags & DCACHE_NFSFS_RENAMED)) { |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 137 | alias->d_fsdata = data; |
Trond Myklebust | fccca7f | 2008-01-26 17:37:47 -0500 | [diff] [blame] | 138 | alias->d_flags |= DCACHE_NFSFS_RENAMED; |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 139 | ret = 1; |
| 140 | } |
| 141 | spin_unlock(&alias->d_lock); |
| 142 | nfs_dec_sillycount(dir); |
| 143 | dput(alias); |
| 144 | return ret; |
| 145 | } |
| 146 | data->dir = igrab(dir); |
| 147 | if (!data->dir) { |
| 148 | nfs_dec_sillycount(dir); |
| 149 | return 0; |
| 150 | } |
Steve Dickson | ef818a2 | 2007-11-08 04:05:04 -0500 | [diff] [blame] | 151 | nfs_sb_active(NFS_SERVER(dir)); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 152 | data->args.fh = NFS_FH(dir); |
| 153 | nfs_fattr_init(&data->res.dir_attr); |
| 154 | |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 155 | NFS_PROTO(dir)->unlink_setup(&msg, dir); |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 156 | |
Trond Myklebust | 5138fde | 2007-07-14 15:40:01 -0400 | [diff] [blame] | 157 | task_setup_data.rpc_client = NFS_CLIENT(dir); |
Trond Myklebust | c970aa8 | 2007-07-14 15:39:59 -0400 | [diff] [blame] | 158 | task = rpc_run_task(&task_setup_data); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 159 | if (!IS_ERR(task)) |
| 160 | rpc_put_task(task); |
| 161 | return 1; |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 162 | } |
| 163 | |
| 164 | static int nfs_call_unlink(struct dentry *dentry, struct nfs_unlinkdata *data) |
| 165 | { |
| 166 | struct dentry *parent; |
| 167 | struct inode *dir; |
| 168 | int ret = 0; |
| 169 | |
| 170 | |
| 171 | parent = dget_parent(dentry); |
| 172 | if (parent == NULL) |
| 173 | goto out_free; |
| 174 | dir = parent->d_inode; |
Trond Myklebust | 55b70a0 | 2007-10-21 12:02:22 -0400 | [diff] [blame] | 175 | if (nfs_copy_dname(dentry, data) != 0) |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 176 | goto out_dput; |
| 177 | /* Non-exclusive lock protects against concurrent lookup() calls */ |
| 178 | spin_lock(&dir->i_lock); |
| 179 | if (atomic_inc_not_zero(&NFS_I(dir)->silly_count) == 0) { |
| 180 | /* Deferred delete */ |
| 181 | hlist_add_head(&data->list, &NFS_I(dir)->silly_list); |
| 182 | spin_unlock(&dir->i_lock); |
| 183 | ret = 1; |
| 184 | goto out_dput; |
| 185 | } |
| 186 | spin_unlock(&dir->i_lock); |
| 187 | ret = nfs_do_call_unlink(parent, dir, data); |
| 188 | out_dput: |
| 189 | dput(parent); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 190 | out_free: |
Trond Myklebust | 565277f | 2007-10-15 18:17:53 -0400 | [diff] [blame] | 191 | return ret; |
| 192 | } |
| 193 | |
| 194 | void nfs_block_sillyrename(struct dentry *dentry) |
| 195 | { |
| 196 | struct nfs_inode *nfsi = NFS_I(dentry->d_inode); |
| 197 | |
| 198 | wait_event(nfsi->waitqueue, atomic_cmpxchg(&nfsi->silly_count, 1, 0) == 1); |
| 199 | } |
| 200 | |
| 201 | void nfs_unblock_sillyrename(struct dentry *dentry) |
| 202 | { |
| 203 | struct inode *dir = dentry->d_inode; |
| 204 | struct nfs_inode *nfsi = NFS_I(dir); |
| 205 | struct nfs_unlinkdata *data; |
| 206 | |
| 207 | atomic_inc(&nfsi->silly_count); |
| 208 | spin_lock(&dir->i_lock); |
| 209 | while (!hlist_empty(&nfsi->silly_list)) { |
| 210 | if (!atomic_inc_not_zero(&nfsi->silly_count)) |
| 211 | break; |
| 212 | data = hlist_entry(nfsi->silly_list.first, struct nfs_unlinkdata, list); |
| 213 | hlist_del(&data->list); |
| 214 | spin_unlock(&dir->i_lock); |
| 215 | if (nfs_do_call_unlink(dentry, dir, data) == 0) |
| 216 | nfs_free_unlinkdata(data); |
| 217 | spin_lock(&dir->i_lock); |
| 218 | } |
| 219 | spin_unlock(&dir->i_lock); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 220 | } |
| 221 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 222 | /** |
| 223 | * nfs_async_unlink - asynchronous unlinking of a file |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 224 | * @dir: parent directory of dentry |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | * @dentry: dentry to unlink |
| 226 | */ |
| 227 | int |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 228 | nfs_async_unlink(struct inode *dir, struct dentry *dentry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | { |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 230 | struct nfs_unlinkdata *data; |
| 231 | int status = -ENOMEM; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Eric Sesterhenn | bd64754 | 2006-03-20 13:44:10 -0500 | [diff] [blame] | 233 | data = kzalloc(sizeof(*data), GFP_KERNEL); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 234 | if (data == NULL) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | |
Trond Myklebust | 98a8e32 | 2008-03-12 12:25:28 -0400 | [diff] [blame] | 237 | data->cred = rpc_lookup_cred(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 238 | if (IS_ERR(data->cred)) { |
| 239 | status = PTR_ERR(data->cred); |
| 240 | goto out_free; |
| 241 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 243 | status = -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | spin_lock(&dentry->d_lock); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 245 | if (dentry->d_flags & DCACHE_NFSFS_RENAMED) |
| 246 | goto out_unlock; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | dentry->d_flags |= DCACHE_NFSFS_RENAMED; |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 248 | dentry->d_fsdata = data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 249 | spin_unlock(&dentry->d_lock); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 250 | return 0; |
| 251 | out_unlock: |
| 252 | spin_unlock(&dentry->d_lock); |
| 253 | put_rpccred(data->cred); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | out_free: |
| 255 | kfree(data); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 256 | out: |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | return status; |
| 258 | } |
| 259 | |
| 260 | /** |
| 261 | * nfs_complete_unlink - Initialize completion of the sillydelete |
| 262 | * @dentry: dentry to delete |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 263 | * @inode: inode |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | * |
| 265 | * Since we're most likely to be called by dentry_iput(), we |
| 266 | * only use the dentry to find the sillydelete. We then copy the name |
| 267 | * into the qstr. |
| 268 | */ |
| 269 | void |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 270 | nfs_complete_unlink(struct dentry *dentry, struct inode *inode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | { |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 272 | struct nfs_unlinkdata *data = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 274 | spin_lock(&dentry->d_lock); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 275 | if (dentry->d_flags & DCACHE_NFSFS_RENAMED) { |
| 276 | dentry->d_flags &= ~DCACHE_NFSFS_RENAMED; |
| 277 | data = dentry->d_fsdata; |
| 278 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | spin_unlock(&dentry->d_lock); |
Trond Myklebust | e4eff1a | 2007-07-14 15:39:58 -0400 | [diff] [blame] | 280 | |
| 281 | if (data != NULL && (NFS_STALE(inode) || !nfs_call_unlink(dentry, data))) |
| 282 | nfs_free_unlinkdata(data); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | } |