blob: 6660d9a533454edd8817dc553549ca7e5509eee9 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfs/unlink.c
3 *
4 * nfs sillydelete handling
5 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
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 Torvaldsb35e7042007-10-19 19:59:18 -070014#include <linux/sched.h>
15#include <linux/wait.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
Steve Dicksonef818a22007-11-08 04:05:04 -050017#include "internal.h"
18
Linus Torvalds1da177e2005-04-16 15:20:36 -070019struct nfs_unlinkdata {
Trond Myklebust565277f2007-10-15 18:17:53 -040020 struct hlist_node list;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040021 struct nfs_removeargs args;
22 struct nfs_removeres res;
23 struct inode *dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024 struct rpc_cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025};
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027/**
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040028 * nfs_free_unlinkdata - release data from a sillydelete operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 * @data: pointer to unlink structure.
30 */
31static void
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040032nfs_free_unlinkdata(struct nfs_unlinkdata *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070033{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040034 iput(data->dir);
35 put_rpccred(data->cred);
36 kfree(data->args.name.name);
37 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070038}
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 Myklebuste4eff1a2007-07-14 15:39:58 -040046static int nfs_copy_dname(struct dentry *dentry, struct nfs_unlinkdata *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070047{
48 char *str;
49 int len = dentry->d_name.len;
50
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040051 str = kmemdup(dentry->d_name.name, NAME_ALLOC_LEN(len), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052 if (!str)
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040053 return -ENOMEM;
54 data->args.name.len = len;
55 data->args.name.name = str;
56 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
Trond Myklebust565277f2007-10-15 18:17:53 -040059static 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
66static 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 Torvalds1da177e2005-04-16 15:20:36 -070073/**
74 * nfs_async_unlink_init - Initialize the RPC info
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040075 * task: rpc_task of the sillydelete
Linus Torvalds1da177e2005-04-16 15:20:36 -070076 */
Trond Myklebust4ce70ad2006-01-03 09:55:05 +010077static void nfs_async_unlink_init(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -070078{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040079 struct nfs_unlinkdata *data = calldata;
80 struct inode *dir = data->dir;
81 struct rpc_message msg = {
82 .rpc_argp = &data->args,
83 .rpc_resp = &data->res,
84 .rpc_cred = data->cred,
Linus Torvalds1da177e2005-04-16 15:20:36 -070085 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040087 NFS_PROTO(dir)->unlink_setup(&msg, dir);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 rpc_call_setup(task, &msg, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
91/**
92 * nfs_async_unlink_done - Sillydelete post-processing
93 * @task: rpc_task of the sillydelete
94 *
95 * Do the directory attribute update.
96 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +010097static void nfs_async_unlink_done(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -070098{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040099 struct nfs_unlinkdata *data = calldata;
100 struct inode *dir = data->dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400102 if (!NFS_PROTO(dir)->unlink_done(task, dir))
103 rpc_restart_call(task);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104}
105
106/**
107 * nfs_async_unlink_release - Release the sillydelete data.
108 * @task: rpc_task of the sillydelete
109 *
110 * We need to call nfs_put_unlinkdata as a 'tk_release' task since the
111 * rpc_task would be freed too.
112 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100113static void nfs_async_unlink_release(void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100115 struct nfs_unlinkdata *data = calldata;
Trond Myklebust565277f2007-10-15 18:17:53 -0400116
117 nfs_dec_sillycount(data->dir);
Steve Dicksonef818a22007-11-08 04:05:04 -0500118 nfs_sb_deactive(NFS_SERVER(data->dir));
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400119 nfs_free_unlinkdata(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120}
121
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100122static const struct rpc_call_ops nfs_unlink_ops = {
Trond Myklebust4ce70ad2006-01-03 09:55:05 +0100123 .rpc_call_prepare = nfs_async_unlink_init,
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100124 .rpc_call_done = nfs_async_unlink_done,
125 .rpc_release = nfs_async_unlink_release,
126};
127
Trond Myklebust565277f2007-10-15 18:17:53 -0400128static int nfs_do_call_unlink(struct dentry *parent, struct inode *dir, struct nfs_unlinkdata *data)
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400129{
Trond Myklebustc970aa82007-07-14 15:39:59 -0400130 struct rpc_task_setup task_setup_data = {
131 .callback_ops = &nfs_unlink_ops,
132 .callback_data = data,
133 .flags = RPC_TASK_ASYNC,
134 };
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400135 struct rpc_task *task;
Trond Myklebust565277f2007-10-15 18:17:53 -0400136 struct dentry *alias;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400137
Trond Myklebust565277f2007-10-15 18:17:53 -0400138 alias = d_lookup(parent, &data->args.name);
139 if (alias != NULL) {
140 int ret = 0;
Trond Myklebust609005c32008-01-28 19:42:59 -0500141
Trond Myklebust565277f2007-10-15 18:17:53 -0400142 /*
143 * Hey, we raced with lookup... See if we need to transfer
144 * the sillyrename information to the aliased dentry.
145 */
146 nfs_free_dname(data);
147 spin_lock(&alias->d_lock);
Trond Myklebust609005c32008-01-28 19:42:59 -0500148 if (alias->d_inode != NULL &&
149 !(alias->d_flags & DCACHE_NFSFS_RENAMED)) {
Trond Myklebust565277f2007-10-15 18:17:53 -0400150 alias->d_fsdata = data;
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500151 alias->d_flags |= DCACHE_NFSFS_RENAMED;
Trond Myklebust565277f2007-10-15 18:17:53 -0400152 ret = 1;
153 }
154 spin_unlock(&alias->d_lock);
155 nfs_dec_sillycount(dir);
156 dput(alias);
157 return ret;
158 }
159 data->dir = igrab(dir);
160 if (!data->dir) {
161 nfs_dec_sillycount(dir);
162 return 0;
163 }
Steve Dicksonef818a22007-11-08 04:05:04 -0500164 nfs_sb_active(NFS_SERVER(dir));
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400165 data->args.fh = NFS_FH(dir);
166 nfs_fattr_init(&data->res.dir_attr);
167
Trond Myklebustc970aa82007-07-14 15:39:59 -0400168 task_setup_data.rpc_client = NFS_CLIENT(dir);
169
170 task = rpc_run_task(&task_setup_data);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400171 if (!IS_ERR(task))
172 rpc_put_task(task);
173 return 1;
Trond Myklebust565277f2007-10-15 18:17:53 -0400174}
175
176static int nfs_call_unlink(struct dentry *dentry, struct nfs_unlinkdata *data)
177{
178 struct dentry *parent;
179 struct inode *dir;
180 int ret = 0;
181
182
183 parent = dget_parent(dentry);
184 if (parent == NULL)
185 goto out_free;
186 dir = parent->d_inode;
Trond Myklebust55b70a02007-10-21 12:02:22 -0400187 if (nfs_copy_dname(dentry, data) != 0)
Trond Myklebust565277f2007-10-15 18:17:53 -0400188 goto out_dput;
189 /* Non-exclusive lock protects against concurrent lookup() calls */
190 spin_lock(&dir->i_lock);
191 if (atomic_inc_not_zero(&NFS_I(dir)->silly_count) == 0) {
192 /* Deferred delete */
193 hlist_add_head(&data->list, &NFS_I(dir)->silly_list);
194 spin_unlock(&dir->i_lock);
195 ret = 1;
196 goto out_dput;
197 }
198 spin_unlock(&dir->i_lock);
199 ret = nfs_do_call_unlink(parent, dir, data);
200out_dput:
201 dput(parent);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400202out_free:
Trond Myklebust565277f2007-10-15 18:17:53 -0400203 return ret;
204}
205
206void nfs_block_sillyrename(struct dentry *dentry)
207{
208 struct nfs_inode *nfsi = NFS_I(dentry->d_inode);
209
210 wait_event(nfsi->waitqueue, atomic_cmpxchg(&nfsi->silly_count, 1, 0) == 1);
211}
212
213void nfs_unblock_sillyrename(struct dentry *dentry)
214{
215 struct inode *dir = dentry->d_inode;
216 struct nfs_inode *nfsi = NFS_I(dir);
217 struct nfs_unlinkdata *data;
218
219 atomic_inc(&nfsi->silly_count);
220 spin_lock(&dir->i_lock);
221 while (!hlist_empty(&nfsi->silly_list)) {
222 if (!atomic_inc_not_zero(&nfsi->silly_count))
223 break;
224 data = hlist_entry(nfsi->silly_list.first, struct nfs_unlinkdata, list);
225 hlist_del(&data->list);
226 spin_unlock(&dir->i_lock);
227 if (nfs_do_call_unlink(dentry, dir, data) == 0)
228 nfs_free_unlinkdata(data);
229 spin_lock(&dir->i_lock);
230 }
231 spin_unlock(&dir->i_lock);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400232}
233
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234/**
235 * nfs_async_unlink - asynchronous unlinking of a file
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400236 * @dir: parent directory of dentry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 * @dentry: dentry to unlink
238 */
239int
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400240nfs_async_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400242 struct nfs_unlinkdata *data;
243 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244
Eric Sesterhennbd647542006-03-20 13:44:10 -0500245 data = kzalloc(sizeof(*data), GFP_KERNEL);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400246 if (data == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400249 data->cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250 if (IS_ERR(data->cred)) {
251 status = PTR_ERR(data->cred);
252 goto out_free;
253 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400255 status = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 spin_lock(&dentry->d_lock);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400257 if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
258 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 dentry->d_flags |= DCACHE_NFSFS_RENAMED;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400260 dentry->d_fsdata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 spin_unlock(&dentry->d_lock);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400262 return 0;
263out_unlock:
264 spin_unlock(&dentry->d_lock);
265 put_rpccred(data->cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266out_free:
267 kfree(data);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400268out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 return status;
270}
271
272/**
273 * nfs_complete_unlink - Initialize completion of the sillydelete
274 * @dentry: dentry to delete
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400275 * @inode: inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276 *
277 * Since we're most likely to be called by dentry_iput(), we
278 * only use the dentry to find the sillydelete. We then copy the name
279 * into the qstr.
280 */
281void
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400282nfs_complete_unlink(struct dentry *dentry, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400284 struct nfs_unlinkdata *data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 spin_lock(&dentry->d_lock);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400287 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
288 dentry->d_flags &= ~DCACHE_NFSFS_RENAMED;
289 data = dentry->d_fsdata;
290 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 spin_unlock(&dentry->d_lock);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400292
293 if (data != NULL && (NFS_STALE(inode) || !nfs_call_unlink(dentry, data)))
294 nfs_free_unlinkdata(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295}