blob: 52f7bdb12c83700b35e28d030f203abae677826f [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"
Andy Adamson472cfbd2009-04-01 09:22:24 -040018#include "nfs4_fs.h"
Steve Dicksonef818a22007-11-08 04:05:04 -050019
Linus Torvalds1da177e2005-04-16 15:20:36 -070020struct nfs_unlinkdata {
Trond Myklebust565277f2007-10-15 18:17:53 -040021 struct hlist_node list;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040022 struct nfs_removeargs args;
23 struct nfs_removeres res;
24 struct inode *dir;
Linus Torvalds1da177e2005-04-16 15:20:36 -070025 struct rpc_cred *cred;
Linus Torvalds1da177e2005-04-16 15:20:36 -070026};
27
Linus Torvalds1da177e2005-04-16 15:20:36 -070028/**
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040029 * nfs_free_unlinkdata - release data from a sillydelete operation.
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 * @data: pointer to unlink structure.
31 */
32static void
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040033nfs_free_unlinkdata(struct nfs_unlinkdata *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070034{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040035 iput(data->dir);
36 put_rpccred(data->cred);
37 kfree(data->args.name.name);
38 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039}
40
41#define NAME_ALLOC_LEN(len) ((len+16) & ~15)
42/**
43 * nfs_copy_dname - copy dentry name to data structure
44 * @dentry: pointer to dentry
45 * @data: nfs_unlinkdata
46 */
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040047static int nfs_copy_dname(struct dentry *dentry, struct nfs_unlinkdata *data)
Linus Torvalds1da177e2005-04-16 15:20:36 -070048{
49 char *str;
50 int len = dentry->d_name.len;
51
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040052 str = kmemdup(dentry->d_name.name, NAME_ALLOC_LEN(len), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 if (!str)
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040054 return -ENOMEM;
55 data->args.name.len = len;
56 data->args.name.name = str;
57 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
59
Trond Myklebust565277f2007-10-15 18:17:53 -040060static void nfs_free_dname(struct nfs_unlinkdata *data)
61{
62 kfree(data->args.name.name);
63 data->args.name.name = NULL;
64 data->args.name.len = 0;
65}
66
67static void nfs_dec_sillycount(struct inode *dir)
68{
69 struct nfs_inode *nfsi = NFS_I(dir);
70 if (atomic_dec_return(&nfsi->silly_count) == 1)
71 wake_up(&nfsi->waitqueue);
72}
73
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/**
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 * nfs_async_unlink_done - Sillydelete post-processing
76 * @task: rpc_task of the sillydelete
77 *
78 * Do the directory attribute update.
79 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +010080static void nfs_async_unlink_done(struct rpc_task *task, void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -070081{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040082 struct nfs_unlinkdata *data = calldata;
83 struct inode *dir = data->dir;
Andy Adamsone608e792009-12-04 15:55:29 -050084 struct nfs_removeres *res = task->tk_msg.rpc_resp;
Linus Torvalds1da177e2005-04-16 15:20:36 -070085
Trond Myklebuste4eff1a2007-07-14 15:39:58 -040086 if (!NFS_PROTO(dir)->unlink_done(task, dir))
Andy Adamsone608e792009-12-04 15:55:29 -050087 nfs4_restart_rpc(task, NFS_SERVER(dir)->nfs_client,
88 &res->seq_res);
Linus Torvalds1da177e2005-04-16 15:20:36 -070089}
90
91/**
92 * nfs_async_unlink_release - Release the sillydelete data.
93 * @task: rpc_task of the sillydelete
94 *
95 * We need to call nfs_put_unlinkdata as a 'tk_release' task since the
96 * rpc_task would be freed too.
97 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +010098static void nfs_async_unlink_release(void *calldata)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099{
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100100 struct nfs_unlinkdata *data = calldata;
Trond Myklebust744d18d2008-07-27 18:03:19 -0400101 struct super_block *sb = data->dir->i_sb;
Trond Myklebust565277f2007-10-15 18:17:53 -0400102
103 nfs_dec_sillycount(data->dir);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400104 nfs_free_unlinkdata(data);
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400105 nfs_sb_deactive(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106}
107
Andy Adamson472cfbd2009-04-01 09:22:24 -0400108#if defined(CONFIG_NFS_V4_1)
109void nfs_unlink_prepare(struct rpc_task *task, void *calldata)
110{
111 struct nfs_unlinkdata *data = calldata;
112 struct nfs_server *server = NFS_SERVER(data->dir);
113
114 if (nfs4_setup_sequence(server->nfs_client, &data->args.seq_args,
115 &data->res.seq_res, 1, task))
116 return;
117 rpc_call_start(task);
118}
119#endif /* CONFIG_NFS_V4_1 */
120
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100121static const struct rpc_call_ops nfs_unlink_ops = {
122 .rpc_call_done = nfs_async_unlink_done,
123 .rpc_release = nfs_async_unlink_release,
Andy Adamson472cfbd2009-04-01 09:22:24 -0400124#if defined(CONFIG_NFS_V4_1)
125 .rpc_call_prepare = nfs_unlink_prepare,
126#endif /* CONFIG_NFS_V4_1 */
Trond Myklebust963d8fe2006-01-03 09:55:04 +0100127};
128
Trond Myklebust565277f2007-10-15 18:17:53 -0400129static int nfs_do_call_unlink(struct dentry *parent, struct inode *dir, struct nfs_unlinkdata *data)
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400130{
Trond Myklebust5138fde2007-07-14 15:40:01 -0400131 struct rpc_message msg = {
132 .rpc_argp = &data->args,
133 .rpc_resp = &data->res,
134 .rpc_cred = data->cred,
135 };
Trond Myklebustc970aa82007-07-14 15:39:59 -0400136 struct rpc_task_setup task_setup_data = {
Trond Myklebust5138fde2007-07-14 15:40:01 -0400137 .rpc_message = &msg,
Trond Myklebustc970aa82007-07-14 15:39:59 -0400138 .callback_ops = &nfs_unlink_ops,
139 .callback_data = data,
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400140 .workqueue = nfsiod_workqueue,
Trond Myklebustc970aa82007-07-14 15:39:59 -0400141 .flags = RPC_TASK_ASYNC,
142 };
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400143 struct rpc_task *task;
Trond Myklebust565277f2007-10-15 18:17:53 -0400144 struct dentry *alias;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400145
Trond Myklebust565277f2007-10-15 18:17:53 -0400146 alias = d_lookup(parent, &data->args.name);
147 if (alias != NULL) {
148 int ret = 0;
Trond Myklebust609005c2008-01-28 19:42:59 -0500149
Trond Myklebust565277f2007-10-15 18:17:53 -0400150 /*
151 * Hey, we raced with lookup... See if we need to transfer
152 * the sillyrename information to the aliased dentry.
153 */
154 nfs_free_dname(data);
155 spin_lock(&alias->d_lock);
Trond Myklebust609005c2008-01-28 19:42:59 -0500156 if (alias->d_inode != NULL &&
157 !(alias->d_flags & DCACHE_NFSFS_RENAMED)) {
Trond Myklebust565277f2007-10-15 18:17:53 -0400158 alias->d_fsdata = data;
Trond Myklebustfccca7f2008-01-26 17:37:47 -0500159 alias->d_flags |= DCACHE_NFSFS_RENAMED;
Trond Myklebust565277f2007-10-15 18:17:53 -0400160 ret = 1;
161 }
162 spin_unlock(&alias->d_lock);
163 nfs_dec_sillycount(dir);
164 dput(alias);
165 return ret;
166 }
167 data->dir = igrab(dir);
168 if (!data->dir) {
169 nfs_dec_sillycount(dir);
170 return 0;
171 }
Trond Myklebust1daef0a2008-07-27 18:19:01 -0400172 nfs_sb_active(dir->i_sb);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400173 data->args.fh = NFS_FH(dir);
174 nfs_fattr_init(&data->res.dir_attr);
175
Trond Myklebust5138fde2007-07-14 15:40:01 -0400176 NFS_PROTO(dir)->unlink_setup(&msg, dir);
Trond Myklebustc970aa82007-07-14 15:39:59 -0400177
Trond Myklebust5138fde2007-07-14 15:40:01 -0400178 task_setup_data.rpc_client = NFS_CLIENT(dir);
Trond Myklebustc970aa82007-07-14 15:39:59 -0400179 task = rpc_run_task(&task_setup_data);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400180 if (!IS_ERR(task))
181 rpc_put_task(task);
182 return 1;
Trond Myklebust565277f2007-10-15 18:17:53 -0400183}
184
185static int nfs_call_unlink(struct dentry *dentry, struct nfs_unlinkdata *data)
186{
187 struct dentry *parent;
188 struct inode *dir;
189 int ret = 0;
190
191
192 parent = dget_parent(dentry);
193 if (parent == NULL)
194 goto out_free;
195 dir = parent->d_inode;
Trond Myklebust55b70a02007-10-21 12:02:22 -0400196 if (nfs_copy_dname(dentry, data) != 0)
Trond Myklebust565277f2007-10-15 18:17:53 -0400197 goto out_dput;
198 /* Non-exclusive lock protects against concurrent lookup() calls */
199 spin_lock(&dir->i_lock);
200 if (atomic_inc_not_zero(&NFS_I(dir)->silly_count) == 0) {
201 /* Deferred delete */
202 hlist_add_head(&data->list, &NFS_I(dir)->silly_list);
203 spin_unlock(&dir->i_lock);
204 ret = 1;
205 goto out_dput;
206 }
207 spin_unlock(&dir->i_lock);
208 ret = nfs_do_call_unlink(parent, dir, data);
209out_dput:
210 dput(parent);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400211out_free:
Trond Myklebust565277f2007-10-15 18:17:53 -0400212 return ret;
213}
214
215void nfs_block_sillyrename(struct dentry *dentry)
216{
217 struct nfs_inode *nfsi = NFS_I(dentry->d_inode);
218
219 wait_event(nfsi->waitqueue, atomic_cmpxchg(&nfsi->silly_count, 1, 0) == 1);
220}
221
222void nfs_unblock_sillyrename(struct dentry *dentry)
223{
224 struct inode *dir = dentry->d_inode;
225 struct nfs_inode *nfsi = NFS_I(dir);
226 struct nfs_unlinkdata *data;
227
228 atomic_inc(&nfsi->silly_count);
229 spin_lock(&dir->i_lock);
230 while (!hlist_empty(&nfsi->silly_list)) {
231 if (!atomic_inc_not_zero(&nfsi->silly_count))
232 break;
233 data = hlist_entry(nfsi->silly_list.first, struct nfs_unlinkdata, list);
234 hlist_del(&data->list);
235 spin_unlock(&dir->i_lock);
236 if (nfs_do_call_unlink(dentry, dir, data) == 0)
237 nfs_free_unlinkdata(data);
238 spin_lock(&dir->i_lock);
239 }
240 spin_unlock(&dir->i_lock);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400241}
242
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243/**
244 * nfs_async_unlink - asynchronous unlinking of a file
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400245 * @dir: parent directory of dentry
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 * @dentry: dentry to unlink
247 */
248int
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400249nfs_async_unlink(struct inode *dir, struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400251 struct nfs_unlinkdata *data;
252 int status = -ENOMEM;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Eric Sesterhennbd647542006-03-20 13:44:10 -0500254 data = kzalloc(sizeof(*data), GFP_KERNEL);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400255 if (data == NULL)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700257
Trond Myklebust98a8e322008-03-12 12:25:28 -0400258 data->cred = rpc_lookup_cred();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 if (IS_ERR(data->cred)) {
260 status = PTR_ERR(data->cred);
261 goto out_free;
262 }
Andy Adamson5f7dbd52009-04-01 09:22:05 -0400263 data->res.seq_res.sr_slotid = NFS4_MAX_SLOT_TABLE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400265 status = -EBUSY;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 spin_lock(&dentry->d_lock);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400267 if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
268 goto out_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700269 dentry->d_flags |= DCACHE_NFSFS_RENAMED;
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400270 dentry->d_fsdata = data;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 spin_unlock(&dentry->d_lock);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400272 return 0;
273out_unlock:
274 spin_unlock(&dentry->d_lock);
275 put_rpccred(data->cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700276out_free:
277 kfree(data);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400278out:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279 return status;
280}
281
282/**
283 * nfs_complete_unlink - Initialize completion of the sillydelete
284 * @dentry: dentry to delete
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400285 * @inode: inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 *
287 * Since we're most likely to be called by dentry_iput(), we
288 * only use the dentry to find the sillydelete. We then copy the name
289 * into the qstr.
290 */
291void
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400292nfs_complete_unlink(struct dentry *dentry, struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400294 struct nfs_unlinkdata *data = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 spin_lock(&dentry->d_lock);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400297 if (dentry->d_flags & DCACHE_NFSFS_RENAMED) {
298 dentry->d_flags &= ~DCACHE_NFSFS_RENAMED;
299 data = dentry->d_fsdata;
300 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 spin_unlock(&dentry->d_lock);
Trond Myklebuste4eff1a2007-07-14 15:39:58 -0400302
303 if (data != NULL && (NFS_STALE(inode) || !nfs_call_unlink(dentry, data)))
304 nfs_free_unlinkdata(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305}