]> git.karo-electronics.de Git - mv-sheeva.git/blob - fs/nfs/unlink.c
SUNRPC: Clean up rpc_run_task
[mv-sheeva.git] / fs / nfs / unlink.c
1 /*
2  *  linux/fs/nfs/unlink.c
3  *
4  * nfs sillydelete handling
5  *
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>
14 #include <linux/sched.h>
15 #include <linux/wait.h>
16
17 #include "internal.h"
18
19 struct nfs_unlinkdata {
20         struct hlist_node list;
21         struct nfs_removeargs args;
22         struct nfs_removeres res;
23         struct inode *dir;
24         struct rpc_cred *cred;
25 };
26
27 /**
28  * nfs_free_unlinkdata - release data from a sillydelete operation.
29  * @data: pointer to unlink structure.
30  */
31 static void
32 nfs_free_unlinkdata(struct nfs_unlinkdata *data)
33 {
34         iput(data->dir);
35         put_rpccred(data->cred);
36         kfree(data->args.name.name);
37         kfree(data);
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  */
46 static int nfs_copy_dname(struct dentry *dentry, struct nfs_unlinkdata *data)
47 {
48         char            *str;
49         int             len = dentry->d_name.len;
50
51         str = kmemdup(dentry->d_name.name, NAME_ALLOC_LEN(len), GFP_KERNEL);
52         if (!str)
53                 return -ENOMEM;
54         data->args.name.len = len;
55         data->args.name.name = str;
56         return 0;
57 }
58
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
73 /**
74  * nfs_async_unlink_init - Initialize the RPC info
75  * task: rpc_task of the sillydelete
76  */
77 static void nfs_async_unlink_init(struct rpc_task *task, void *calldata)
78 {
79         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,
85         };
86
87         NFS_PROTO(dir)->unlink_setup(&msg, dir);
88         rpc_call_setup(task, &msg, 0);
89 }
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  */
97 static void nfs_async_unlink_done(struct rpc_task *task, void *calldata)
98 {
99         struct nfs_unlinkdata *data = calldata;
100         struct inode *dir = data->dir;
101
102         if (!NFS_PROTO(dir)->unlink_done(task, dir))
103                 rpc_restart_call(task);
104 }
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  */
113 static void nfs_async_unlink_release(void *calldata)
114 {
115         struct nfs_unlinkdata   *data = calldata;
116
117         nfs_dec_sillycount(data->dir);
118         nfs_sb_deactive(NFS_SERVER(data->dir));
119         nfs_free_unlinkdata(data);
120 }
121
122 static const struct rpc_call_ops nfs_unlink_ops = {
123         .rpc_call_prepare = nfs_async_unlink_init,
124         .rpc_call_done = nfs_async_unlink_done,
125         .rpc_release = nfs_async_unlink_release,
126 };
127
128 static int nfs_do_call_unlink(struct dentry *parent, struct inode *dir, struct nfs_unlinkdata *data)
129 {
130         struct rpc_task_setup task_setup_data = {
131                 .callback_ops = &nfs_unlink_ops,
132                 .callback_data = data,
133                 .flags = RPC_TASK_ASYNC,
134         };
135         struct rpc_task *task;
136         struct dentry *alias;
137
138         alias = d_lookup(parent, &data->args.name);
139         if (alias != NULL) {
140                 int ret = 0;
141
142                 /*
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);
148                 if (alias->d_inode != NULL &&
149                     !(alias->d_flags & DCACHE_NFSFS_RENAMED)) {
150                         alias->d_fsdata = data;
151                         alias->d_flags |= DCACHE_NFSFS_RENAMED;
152                         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         }
164         nfs_sb_active(NFS_SERVER(dir));
165         data->args.fh = NFS_FH(dir);
166         nfs_fattr_init(&data->res.dir_attr);
167
168         task_setup_data.rpc_client = NFS_CLIENT(dir);
169
170         task = rpc_run_task(&task_setup_data);
171         if (!IS_ERR(task))
172                 rpc_put_task(task);
173         return 1;
174 }
175
176 static 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;
187         if (nfs_copy_dname(dentry, data) != 0)
188                 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);
200 out_dput:
201         dput(parent);
202 out_free:
203         return ret;
204 }
205
206 void 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
213 void 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);
232 }
233
234 /**
235  * nfs_async_unlink - asynchronous unlinking of a file
236  * @dir: parent directory of dentry
237  * @dentry: dentry to unlink
238  */
239 int
240 nfs_async_unlink(struct inode *dir, struct dentry *dentry)
241 {
242         struct nfs_unlinkdata *data;
243         int status = -ENOMEM;
244
245         data = kzalloc(sizeof(*data), GFP_KERNEL);
246         if (data == NULL)
247                 goto out;
248
249         data->cred = rpcauth_lookupcred(NFS_CLIENT(dir)->cl_auth, 0);
250         if (IS_ERR(data->cred)) {
251                 status = PTR_ERR(data->cred);
252                 goto out_free;
253         }
254
255         status = -EBUSY;
256         spin_lock(&dentry->d_lock);
257         if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
258                 goto out_unlock;
259         dentry->d_flags |= DCACHE_NFSFS_RENAMED;
260         dentry->d_fsdata = data;
261         spin_unlock(&dentry->d_lock);
262         return 0;
263 out_unlock:
264         spin_unlock(&dentry->d_lock);
265         put_rpccred(data->cred);
266 out_free:
267         kfree(data);
268 out:
269         return status;
270 }
271
272 /**
273  * nfs_complete_unlink - Initialize completion of the sillydelete
274  * @dentry: dentry to delete
275  * @inode: inode
276  *
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  */
281 void
282 nfs_complete_unlink(struct dentry *dentry, struct inode *inode)
283 {
284         struct nfs_unlinkdata   *data = NULL;
285
286         spin_lock(&dentry->d_lock);
287         if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
288                 dentry->d_flags &= ~DCACHE_NFSFS_RENAMED;
289                 data = dentry->d_fsdata;
290         }
291         spin_unlock(&dentry->d_lock);
292
293         if (data != NULL && (NFS_STALE(inode) || !nfs_call_unlink(dentry, data)))
294                 nfs_free_unlinkdata(data);
295 }