xref: /openbmc/linux/fs/afs/dir.c (revision c4c613ff)
12874c5fdSThomas Gleixner // SPDX-License-Identifier: GPL-2.0-or-later
21da177e4SLinus Torvalds /* dir.c: AFS filesystem directory handling
31da177e4SLinus Torvalds  *
4f3ddee8dSDavid Howells  * Copyright (C) 2002, 2018 Red Hat, Inc. All Rights Reserved.
51da177e4SLinus Torvalds  * Written by David Howells (dhowells@redhat.com)
61da177e4SLinus Torvalds  */
71da177e4SLinus Torvalds 
81da177e4SLinus Torvalds #include <linux/kernel.h>
91da177e4SLinus Torvalds #include <linux/fs.h>
1034286d66SNick Piggin #include <linux/namei.h>
111da177e4SLinus Torvalds #include <linux/pagemap.h>
12f3ddee8dSDavid Howells #include <linux/swap.h>
1300d3b7a4SDavid Howells #include <linux/ctype.h>
14e8edc6e0SAlexey Dobriyan #include <linux/sched.h>
15f3ddee8dSDavid Howells #include <linux/task_io_accounting_ops.h>
161da177e4SLinus Torvalds #include "internal.h"
17a58823acSDavid Howells #include "afs_fs.h"
184ea219a8SDavid Howells #include "xdr_fs.h"
191da177e4SLinus Torvalds 
20260a9803SDavid Howells static struct dentry *afs_lookup(struct inode *dir, struct dentry *dentry,
2100cd8dd3SAl Viro 				 unsigned int flags);
221da177e4SLinus Torvalds static int afs_dir_open(struct inode *inode, struct file *file);
231bbae9f8SAl Viro static int afs_readdir(struct file *file, struct dir_context *ctx);
240b728e19SAl Viro static int afs_d_revalidate(struct dentry *dentry, unsigned int flags);
25fe15ce44SNick Piggin static int afs_d_delete(const struct dentry *dentry);
2679ddbfa5SDavid Howells static void afs_d_iput(struct dentry *dentry, struct inode *inode);
275cf9dd55SDavid Howells static int afs_lookup_one_filldir(struct dir_context *ctx, const char *name, int nlen,
285cf9dd55SDavid Howells 				  loff_t fpos, u64 ino, unsigned dtype);
29ac7576f4SMiklos Szeredi static int afs_lookup_filldir(struct dir_context *ctx, const char *name, int nlen,
30afefdbb2SDavid Howells 			      loff_t fpos, u64 ino, unsigned dtype);
314acdaf27SAl Viro static int afs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
32ebfc3b49SAl Viro 		      bool excl);
3318bb1db3SAl Viro static int afs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
34260a9803SDavid Howells static int afs_rmdir(struct inode *dir, struct dentry *dentry);
35260a9803SDavid Howells static int afs_unlink(struct inode *dir, struct dentry *dentry);
36260a9803SDavid Howells static int afs_link(struct dentry *from, struct inode *dir,
37260a9803SDavid Howells 		    struct dentry *dentry);
38260a9803SDavid Howells static int afs_symlink(struct inode *dir, struct dentry *dentry,
39260a9803SDavid Howells 		       const char *content);
40260a9803SDavid Howells static int afs_rename(struct inode *old_dir, struct dentry *old_dentry,
411cd66c93SMiklos Szeredi 		      struct inode *new_dir, struct dentry *new_dentry,
421cd66c93SMiklos Szeredi 		      unsigned int flags);
43f3ddee8dSDavid Howells static int afs_dir_releasepage(struct page *page, gfp_t gfp_flags);
44f3ddee8dSDavid Howells static void afs_dir_invalidatepage(struct page *page, unsigned int offset,
45f3ddee8dSDavid Howells 				   unsigned int length);
46f3ddee8dSDavid Howells 
47f3ddee8dSDavid Howells static int afs_dir_set_page_dirty(struct page *page)
48f3ddee8dSDavid Howells {
49f3ddee8dSDavid Howells 	BUG(); /* This should never happen. */
50f3ddee8dSDavid Howells }
511da177e4SLinus Torvalds 
524b6f5d20SArjan van de Ven const struct file_operations afs_dir_file_operations = {
531da177e4SLinus Torvalds 	.open		= afs_dir_open,
5400d3b7a4SDavid Howells 	.release	= afs_release,
5529884effSAl Viro 	.iterate_shared	= afs_readdir,
56e8d6c554SDavid Howells 	.lock		= afs_lock,
573222a3e5SChristoph Hellwig 	.llseek		= generic_file_llseek,
581da177e4SLinus Torvalds };
591da177e4SLinus Torvalds 
60754661f1SArjan van de Ven const struct inode_operations afs_dir_inode_operations = {
61260a9803SDavid Howells 	.create		= afs_create,
62260a9803SDavid Howells 	.lookup		= afs_lookup,
63260a9803SDavid Howells 	.link		= afs_link,
64260a9803SDavid Howells 	.unlink		= afs_unlink,
65260a9803SDavid Howells 	.symlink	= afs_symlink,
66260a9803SDavid Howells 	.mkdir		= afs_mkdir,
67260a9803SDavid Howells 	.rmdir		= afs_rmdir,
682773bf00SMiklos Szeredi 	.rename		= afs_rename,
6900d3b7a4SDavid Howells 	.permission	= afs_permission,
70416351f2SDavid Howells 	.getattr	= afs_getattr,
7131143d5dSDavid Howells 	.setattr	= afs_setattr,
72d3e3b7eaSDavid Howells 	.listxattr	= afs_listxattr,
731da177e4SLinus Torvalds };
741da177e4SLinus Torvalds 
75f3ddee8dSDavid Howells const struct address_space_operations afs_dir_aops = {
76f3ddee8dSDavid Howells 	.set_page_dirty	= afs_dir_set_page_dirty,
77f3ddee8dSDavid Howells 	.releasepage	= afs_dir_releasepage,
78f3ddee8dSDavid Howells 	.invalidatepage	= afs_dir_invalidatepage,
79f3ddee8dSDavid Howells };
80f3ddee8dSDavid Howells 
81d61dcce2SAl Viro const struct dentry_operations afs_fs_dentry_operations = {
821da177e4SLinus Torvalds 	.d_revalidate	= afs_d_revalidate,
831da177e4SLinus Torvalds 	.d_delete	= afs_d_delete,
84260a9803SDavid Howells 	.d_release	= afs_d_release,
85d18610b0SDavid Howells 	.d_automount	= afs_d_automount,
8679ddbfa5SDavid Howells 	.d_iput		= afs_d_iput,
871da177e4SLinus Torvalds };
881da177e4SLinus Torvalds 
895cf9dd55SDavid Howells struct afs_lookup_one_cookie {
905cf9dd55SDavid Howells 	struct dir_context	ctx;
915cf9dd55SDavid Howells 	struct qstr		name;
925cf9dd55SDavid Howells 	bool			found;
935cf9dd55SDavid Howells 	struct afs_fid		fid;
945cf9dd55SDavid Howells };
955cf9dd55SDavid Howells 
96260a9803SDavid Howells struct afs_lookup_cookie {
971bbae9f8SAl Viro 	struct dir_context	ctx;
981bbae9f8SAl Viro 	struct qstr		name;
995cf9dd55SDavid Howells 	bool			found;
1005cf9dd55SDavid Howells 	bool			one_only;
1015cf9dd55SDavid Howells 	unsigned short		nr_fids;
10239db9815SDavid Howells 	struct inode		**inodes;
10387182759SDavid Howells 	struct afs_status_cb	*statuses;
1045cf9dd55SDavid Howells 	struct afs_fid		fids[50];
1051da177e4SLinus Torvalds };
1061da177e4SLinus Torvalds 
1071da177e4SLinus Torvalds /*
1081da177e4SLinus Torvalds  * check that a directory page is valid
1091da177e4SLinus Torvalds  */
110f3ddee8dSDavid Howells static bool afs_dir_check_page(struct afs_vnode *dvnode, struct page *page,
111f3ddee8dSDavid Howells 			       loff_t i_size)
1121da177e4SLinus Torvalds {
11300317636SDavid Howells 	struct afs_xdr_dir_page *dbuf;
114f3ddee8dSDavid Howells 	loff_t latter, off;
1151da177e4SLinus Torvalds 	int tmp, qty;
1161da177e4SLinus Torvalds 
117dab17c1aSDavid Howells 	/* Determine how many magic numbers there should be in this page, but
118dab17c1aSDavid Howells 	 * we must take care because the directory may change size under us.
119dab17c1aSDavid Howells 	 */
120dab17c1aSDavid Howells 	off = page_offset(page);
121dab17c1aSDavid Howells 	if (i_size <= off)
122dab17c1aSDavid Howells 		goto checked;
123dab17c1aSDavid Howells 
124dab17c1aSDavid Howells 	latter = i_size - off;
1251da177e4SLinus Torvalds 	if (latter >= PAGE_SIZE)
1261da177e4SLinus Torvalds 		qty = PAGE_SIZE;
1271da177e4SLinus Torvalds 	else
1281da177e4SLinus Torvalds 		qty = latter;
12900317636SDavid Howells 	qty /= sizeof(union afs_xdr_dir_block);
1301da177e4SLinus Torvalds 
1311da177e4SLinus Torvalds 	/* check them */
13263a4681fSDavid Howells 	dbuf = kmap(page);
1331da177e4SLinus Torvalds 	for (tmp = 0; tmp < qty; tmp++) {
13400317636SDavid Howells 		if (dbuf->blocks[tmp].hdr.magic != AFS_DIR_MAGIC) {
135dab17c1aSDavid Howells 			printk("kAFS: %s(%lx): bad magic %d/%d is %04hx\n",
136f3ddee8dSDavid Howells 			       __func__, dvnode->vfs_inode.i_ino, tmp, qty,
13700317636SDavid Howells 			       ntohs(dbuf->blocks[tmp].hdr.magic));
138f3ddee8dSDavid Howells 			trace_afs_dir_check_failed(dvnode, off, i_size);
13963a4681fSDavid Howells 			kunmap(page);
140f51375cdSDavid Howells 			trace_afs_file_error(dvnode, -EIO, afs_file_error_dir_bad_magic);
1411da177e4SLinus Torvalds 			goto error;
1421da177e4SLinus Torvalds 		}
14363a4681fSDavid Howells 
14463a4681fSDavid Howells 		/* Make sure each block is NUL terminated so we can reasonably
14563a4681fSDavid Howells 		 * use string functions on it.  The filenames in the page
14663a4681fSDavid Howells 		 * *should* be NUL-terminated anyway.
14763a4681fSDavid Howells 		 */
14863a4681fSDavid Howells 		((u8 *)&dbuf->blocks[tmp])[AFS_DIR_BLOCK_SIZE - 1] = 0;
1491da177e4SLinus Torvalds 	}
1501da177e4SLinus Torvalds 
15163a4681fSDavid Howells 	kunmap(page);
15263a4681fSDavid Howells 
153dab17c1aSDavid Howells checked:
154f3ddee8dSDavid Howells 	afs_stat_v(dvnode, n_read_dir);
155be5b82dbSAl Viro 	return true;
1561da177e4SLinus Torvalds 
1571da177e4SLinus Torvalds error:
158be5b82dbSAl Viro 	return false;
159ec26815aSDavid Howells }
1601da177e4SLinus Torvalds 
1611da177e4SLinus Torvalds /*
162445b1028SDavid Howells  * Check the contents of a directory that we've just read.
163445b1028SDavid Howells  */
164445b1028SDavid Howells static bool afs_dir_check_pages(struct afs_vnode *dvnode, struct afs_read *req)
165445b1028SDavid Howells {
166445b1028SDavid Howells 	struct afs_xdr_dir_page *dbuf;
167445b1028SDavid Howells 	unsigned int i, j, qty = PAGE_SIZE / sizeof(union afs_xdr_dir_block);
168445b1028SDavid Howells 
169445b1028SDavid Howells 	for (i = 0; i < req->nr_pages; i++)
170445b1028SDavid Howells 		if (!afs_dir_check_page(dvnode, req->pages[i], req->actual_len))
171445b1028SDavid Howells 			goto bad;
172445b1028SDavid Howells 	return true;
173445b1028SDavid Howells 
174445b1028SDavid Howells bad:
175445b1028SDavid Howells 	pr_warn("DIR %llx:%llx f=%llx l=%llx al=%llx r=%llx\n",
176445b1028SDavid Howells 		dvnode->fid.vid, dvnode->fid.vnode,
177445b1028SDavid Howells 		req->file_size, req->len, req->actual_len, req->remain);
178445b1028SDavid Howells 	pr_warn("DIR %llx %x %x %x\n",
179445b1028SDavid Howells 		req->pos, req->index, req->nr_pages, req->offset);
180445b1028SDavid Howells 
181445b1028SDavid Howells 	for (i = 0; i < req->nr_pages; i++) {
182445b1028SDavid Howells 		dbuf = kmap(req->pages[i]);
183445b1028SDavid Howells 		for (j = 0; j < qty; j++) {
184445b1028SDavid Howells 			union afs_xdr_dir_block *block = &dbuf->blocks[j];
185445b1028SDavid Howells 
186445b1028SDavid Howells 			pr_warn("[%02x] %32phN\n", i * qty + j, block);
187445b1028SDavid Howells 		}
188445b1028SDavid Howells 		kunmap(req->pages[i]);
189445b1028SDavid Howells 	}
190445b1028SDavid Howells 	return false;
191445b1028SDavid Howells }
192445b1028SDavid Howells 
193445b1028SDavid Howells /*
1941da177e4SLinus Torvalds  * open an AFS directory file
1951da177e4SLinus Torvalds  */
1961da177e4SLinus Torvalds static int afs_dir_open(struct inode *inode, struct file *file)
1971da177e4SLinus Torvalds {
1981da177e4SLinus Torvalds 	_enter("{%lu}", inode->i_ino);
1991da177e4SLinus Torvalds 
20000317636SDavid Howells 	BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
20100317636SDavid Howells 	BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
2021da177e4SLinus Torvalds 
20308e0e7c8SDavid Howells 	if (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(inode)->flags))
2041da177e4SLinus Torvalds 		return -ENOENT;
2051da177e4SLinus Torvalds 
20600d3b7a4SDavid Howells 	return afs_open(inode, file);
207ec26815aSDavid Howells }
2081da177e4SLinus Torvalds 
2091da177e4SLinus Torvalds /*
210f3ddee8dSDavid Howells  * Read the directory into the pagecache in one go, scrubbing the previous
211f3ddee8dSDavid Howells  * contents.  The list of pages is returned, pinning them so that they don't
212f3ddee8dSDavid Howells  * get reclaimed during the iteration.
213f3ddee8dSDavid Howells  */
214f3ddee8dSDavid Howells static struct afs_read *afs_read_dir(struct afs_vnode *dvnode, struct key *key)
215b61f7dcfSDavid Howells 	__acquires(&dvnode->validate_lock)
216f3ddee8dSDavid Howells {
217f3ddee8dSDavid Howells 	struct afs_read *req;
218f3ddee8dSDavid Howells 	loff_t i_size;
219f3ddee8dSDavid Howells 	int nr_pages, nr_inline, i, n;
220f3ddee8dSDavid Howells 	int ret = -ENOMEM;
221f3ddee8dSDavid Howells 
222f3ddee8dSDavid Howells retry:
223f3ddee8dSDavid Howells 	i_size = i_size_read(&dvnode->vfs_inode);
224f3ddee8dSDavid Howells 	if (i_size < 2048)
225f51375cdSDavid Howells 		return ERR_PTR(afs_bad(dvnode, afs_file_error_dir_small));
226f51375cdSDavid Howells 	if (i_size > 2048 * 1024) {
227f51375cdSDavid Howells 		trace_afs_file_error(dvnode, -EFBIG, afs_file_error_dir_big);
228f3ddee8dSDavid Howells 		return ERR_PTR(-EFBIG);
229f51375cdSDavid Howells 	}
230f3ddee8dSDavid Howells 
231f3ddee8dSDavid Howells 	_enter("%llu", i_size);
232f3ddee8dSDavid Howells 
233f3ddee8dSDavid Howells 	/* Get a request record to hold the page list.  We want to hold it
234f3ddee8dSDavid Howells 	 * inline if we can, but we don't want to make an order 1 allocation.
235f3ddee8dSDavid Howells 	 */
236f3ddee8dSDavid Howells 	nr_pages = (i_size + PAGE_SIZE - 1) / PAGE_SIZE;
237f3ddee8dSDavid Howells 	nr_inline = nr_pages;
238f3ddee8dSDavid Howells 	if (nr_inline > (PAGE_SIZE - sizeof(*req)) / sizeof(struct page *))
239f3ddee8dSDavid Howells 		nr_inline = 0;
240f3ddee8dSDavid Howells 
241ee102584SZhengyuan Liu 	req = kzalloc(struct_size(req, array, nr_inline), GFP_KERNEL);
242f3ddee8dSDavid Howells 	if (!req)
243f3ddee8dSDavid Howells 		return ERR_PTR(-ENOMEM);
244f3ddee8dSDavid Howells 
245f3ddee8dSDavid Howells 	refcount_set(&req->usage, 1);
246f3ddee8dSDavid Howells 	req->nr_pages = nr_pages;
247f3ddee8dSDavid Howells 	req->actual_len = i_size; /* May change */
248f3ddee8dSDavid Howells 	req->len = nr_pages * PAGE_SIZE; /* We can ask for more than there is */
249f3ddee8dSDavid Howells 	req->data_version = dvnode->status.data_version; /* May change */
250f3ddee8dSDavid Howells 	if (nr_inline > 0) {
251f3ddee8dSDavid Howells 		req->pages = req->array;
252f3ddee8dSDavid Howells 	} else {
253f3ddee8dSDavid Howells 		req->pages = kcalloc(nr_pages, sizeof(struct page *),
254f3ddee8dSDavid Howells 				     GFP_KERNEL);
255f3ddee8dSDavid Howells 		if (!req->pages)
256f3ddee8dSDavid Howells 			goto error;
257f3ddee8dSDavid Howells 	}
258f3ddee8dSDavid Howells 
259f3ddee8dSDavid Howells 	/* Get a list of all the pages that hold or will hold the directory
260f3ddee8dSDavid Howells 	 * content.  We need to fill in any gaps that we might find where the
261f3ddee8dSDavid Howells 	 * memory reclaimer has been at work.  If there are any gaps, we will
262f3ddee8dSDavid Howells 	 * need to reread the entire directory contents.
263f3ddee8dSDavid Howells 	 */
264f3ddee8dSDavid Howells 	i = 0;
265f3ddee8dSDavid Howells 	do {
266f3ddee8dSDavid Howells 		n = find_get_pages_contig(dvnode->vfs_inode.i_mapping, i,
267f3ddee8dSDavid Howells 					  req->nr_pages - i,
268f3ddee8dSDavid Howells 					  req->pages + i);
269f3ddee8dSDavid Howells 		_debug("find %u at %u/%u", n, i, req->nr_pages);
270f3ddee8dSDavid Howells 		if (n == 0) {
271f3ddee8dSDavid Howells 			gfp_t gfp = dvnode->vfs_inode.i_mapping->gfp_mask;
272f3ddee8dSDavid Howells 
273f3ddee8dSDavid Howells 			if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
274f3ddee8dSDavid Howells 				afs_stat_v(dvnode, n_inval);
275f3ddee8dSDavid Howells 
276f3ddee8dSDavid Howells 			ret = -ENOMEM;
277f3ddee8dSDavid Howells 			req->pages[i] = __page_cache_alloc(gfp);
278f3ddee8dSDavid Howells 			if (!req->pages[i])
279f3ddee8dSDavid Howells 				goto error;
280f3ddee8dSDavid Howells 			ret = add_to_page_cache_lru(req->pages[i],
281f3ddee8dSDavid Howells 						    dvnode->vfs_inode.i_mapping,
282f3ddee8dSDavid Howells 						    i, gfp);
283f3ddee8dSDavid Howells 			if (ret < 0)
284f3ddee8dSDavid Howells 				goto error;
285f3ddee8dSDavid Howells 
286f3ddee8dSDavid Howells 			set_page_private(req->pages[i], 1);
287f3ddee8dSDavid Howells 			SetPagePrivate(req->pages[i]);
288f3ddee8dSDavid Howells 			unlock_page(req->pages[i]);
289f3ddee8dSDavid Howells 			i++;
290f3ddee8dSDavid Howells 		} else {
291f3ddee8dSDavid Howells 			i += n;
292f3ddee8dSDavid Howells 		}
293f3ddee8dSDavid Howells 	} while (i < req->nr_pages);
294f3ddee8dSDavid Howells 
295f3ddee8dSDavid Howells 	/* If we're going to reload, we need to lock all the pages to prevent
296f3ddee8dSDavid Howells 	 * races.
297f3ddee8dSDavid Howells 	 */
298f3ddee8dSDavid Howells 	ret = -ERESTARTSYS;
299b61f7dcfSDavid Howells 	if (down_read_killable(&dvnode->validate_lock) < 0)
300b61f7dcfSDavid Howells 		goto error;
301f3ddee8dSDavid Howells 
302f3ddee8dSDavid Howells 	if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
303f3ddee8dSDavid Howells 		goto success;
304f3ddee8dSDavid Howells 
305b61f7dcfSDavid Howells 	up_read(&dvnode->validate_lock);
306b61f7dcfSDavid Howells 	if (down_write_killable(&dvnode->validate_lock) < 0)
307b61f7dcfSDavid Howells 		goto error;
308b61f7dcfSDavid Howells 
309b61f7dcfSDavid Howells 	if (!test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags)) {
31099987c56SDavid Howells 		trace_afs_reload_dir(dvnode);
311f3ddee8dSDavid Howells 		ret = afs_fetch_data(dvnode, key, req);
312f3ddee8dSDavid Howells 		if (ret < 0)
313b61f7dcfSDavid Howells 			goto error_unlock;
314f3ddee8dSDavid Howells 
315f3ddee8dSDavid Howells 		task_io_account_read(PAGE_SIZE * req->nr_pages);
316f3ddee8dSDavid Howells 
317f3ddee8dSDavid Howells 		if (req->len < req->file_size)
318f3ddee8dSDavid Howells 			goto content_has_grown;
319f3ddee8dSDavid Howells 
320f3ddee8dSDavid Howells 		/* Validate the data we just read. */
321f3ddee8dSDavid Howells 		ret = -EIO;
322445b1028SDavid Howells 		if (!afs_dir_check_pages(dvnode, req))
323b61f7dcfSDavid Howells 			goto error_unlock;
324f3ddee8dSDavid Howells 
325f3ddee8dSDavid Howells 		// TODO: Trim excess pages
326f3ddee8dSDavid Howells 
327f3ddee8dSDavid Howells 		set_bit(AFS_VNODE_DIR_VALID, &dvnode->flags);
328f3ddee8dSDavid Howells 	}
329f3ddee8dSDavid Howells 
330b61f7dcfSDavid Howells 	downgrade_write(&dvnode->validate_lock);
331f3ddee8dSDavid Howells success:
332f3ddee8dSDavid Howells 	return req;
333f3ddee8dSDavid Howells 
334f3ddee8dSDavid Howells error_unlock:
335b61f7dcfSDavid Howells 	up_write(&dvnode->validate_lock);
336f3ddee8dSDavid Howells error:
337f3ddee8dSDavid Howells 	afs_put_read(req);
338f3ddee8dSDavid Howells 	_leave(" = %d", ret);
339f3ddee8dSDavid Howells 	return ERR_PTR(ret);
340f3ddee8dSDavid Howells 
341f3ddee8dSDavid Howells content_has_grown:
342b61f7dcfSDavid Howells 	up_write(&dvnode->validate_lock);
343f3ddee8dSDavid Howells 	afs_put_read(req);
344f3ddee8dSDavid Howells 	goto retry;
345f3ddee8dSDavid Howells }
346f3ddee8dSDavid Howells 
347f3ddee8dSDavid Howells /*
3481da177e4SLinus Torvalds  * deal with one block in an AFS directory
3491da177e4SLinus Torvalds  */
350f51375cdSDavid Howells static int afs_dir_iterate_block(struct afs_vnode *dvnode,
351f51375cdSDavid Howells 				 struct dir_context *ctx,
35200317636SDavid Howells 				 union afs_xdr_dir_block *block,
3531bbae9f8SAl Viro 				 unsigned blkoff)
3541da177e4SLinus Torvalds {
35500317636SDavid Howells 	union afs_xdr_dirent *dire;
3561da177e4SLinus Torvalds 	unsigned offset, next, curr;
3571da177e4SLinus Torvalds 	size_t nlen;
3581bbae9f8SAl Viro 	int tmp;
3591da177e4SLinus Torvalds 
3601bbae9f8SAl Viro 	_enter("%u,%x,%p,,",(unsigned)ctx->pos,blkoff,block);
3611da177e4SLinus Torvalds 
36200317636SDavid Howells 	curr = (ctx->pos - blkoff) / sizeof(union afs_xdr_dirent);
3631da177e4SLinus Torvalds 
3641da177e4SLinus Torvalds 	/* walk through the block, an entry at a time */
3654ea219a8SDavid Howells 	for (offset = (blkoff == 0 ? AFS_DIR_RESV_BLOCKS0 : AFS_DIR_RESV_BLOCKS);
3664ea219a8SDavid Howells 	     offset < AFS_DIR_SLOTS_PER_BLOCK;
3671da177e4SLinus Torvalds 	     offset = next
3681da177e4SLinus Torvalds 	     ) {
3691da177e4SLinus Torvalds 		next = offset + 1;
3701da177e4SLinus Torvalds 
3711da177e4SLinus Torvalds 		/* skip entries marked unused in the bitmap */
37200317636SDavid Howells 		if (!(block->hdr.bitmap[offset / 8] &
3731da177e4SLinus Torvalds 		      (1 << (offset % 8)))) {
3745b5e0928SAlexey Dobriyan 			_debug("ENT[%zu.%u]: unused",
37500317636SDavid Howells 			       blkoff / sizeof(union afs_xdr_dir_block), offset);
3761da177e4SLinus Torvalds 			if (offset >= curr)
3771bbae9f8SAl Viro 				ctx->pos = blkoff +
37800317636SDavid Howells 					next * sizeof(union afs_xdr_dirent);
3791da177e4SLinus Torvalds 			continue;
3801da177e4SLinus Torvalds 		}
3811da177e4SLinus Torvalds 
3821da177e4SLinus Torvalds 		/* got a valid entry */
3831da177e4SLinus Torvalds 		dire = &block->dirents[offset];
3841da177e4SLinus Torvalds 		nlen = strnlen(dire->u.name,
3851da177e4SLinus Torvalds 			       sizeof(*block) -
38600317636SDavid Howells 			       offset * sizeof(union afs_xdr_dirent));
3871da177e4SLinus Torvalds 
3885b5e0928SAlexey Dobriyan 		_debug("ENT[%zu.%u]: %s %zu \"%s\"",
38900317636SDavid Howells 		       blkoff / sizeof(union afs_xdr_dir_block), offset,
3901da177e4SLinus Torvalds 		       (offset < curr ? "skip" : "fill"),
3911da177e4SLinus Torvalds 		       nlen, dire->u.name);
3921da177e4SLinus Torvalds 
3931da177e4SLinus Torvalds 		/* work out where the next possible entry is */
39400317636SDavid Howells 		for (tmp = nlen; tmp > 15; tmp -= sizeof(union afs_xdr_dirent)) {
3954ea219a8SDavid Howells 			if (next >= AFS_DIR_SLOTS_PER_BLOCK) {
3965b5e0928SAlexey Dobriyan 				_debug("ENT[%zu.%u]:"
3971da177e4SLinus Torvalds 				       " %u travelled beyond end dir block"
3985b5e0928SAlexey Dobriyan 				       " (len %u/%zu)",
39900317636SDavid Howells 				       blkoff / sizeof(union afs_xdr_dir_block),
4001da177e4SLinus Torvalds 				       offset, next, tmp, nlen);
401f51375cdSDavid Howells 				return afs_bad(dvnode, afs_file_error_dir_over_end);
4021da177e4SLinus Torvalds 			}
40300317636SDavid Howells 			if (!(block->hdr.bitmap[next / 8] &
4041da177e4SLinus Torvalds 			      (1 << (next % 8)))) {
4055b5e0928SAlexey Dobriyan 				_debug("ENT[%zu.%u]:"
4065b5e0928SAlexey Dobriyan 				       " %u unmarked extension (len %u/%zu)",
40700317636SDavid Howells 				       blkoff / sizeof(union afs_xdr_dir_block),
4081da177e4SLinus Torvalds 				       offset, next, tmp, nlen);
409f51375cdSDavid Howells 				return afs_bad(dvnode, afs_file_error_dir_unmarked_ext);
4101da177e4SLinus Torvalds 			}
4111da177e4SLinus Torvalds 
4125b5e0928SAlexey Dobriyan 			_debug("ENT[%zu.%u]: ext %u/%zu",
41300317636SDavid Howells 			       blkoff / sizeof(union afs_xdr_dir_block),
4141da177e4SLinus Torvalds 			       next, tmp, nlen);
4151da177e4SLinus Torvalds 			next++;
4161da177e4SLinus Torvalds 		}
4171da177e4SLinus Torvalds 
4181da177e4SLinus Torvalds 		/* skip if starts before the current position */
4191da177e4SLinus Torvalds 		if (offset < curr)
4201da177e4SLinus Torvalds 			continue;
4211da177e4SLinus Torvalds 
4221da177e4SLinus Torvalds 		/* found the next entry */
4231bbae9f8SAl Viro 		if (!dir_emit(ctx, dire->u.name, nlen,
4241da177e4SLinus Torvalds 			      ntohl(dire->u.vnode),
4255cf9dd55SDavid Howells 			      (ctx->actor == afs_lookup_filldir ||
4265cf9dd55SDavid Howells 			       ctx->actor == afs_lookup_one_filldir)?
4271bbae9f8SAl Viro 			      ntohl(dire->u.unique) : DT_UNKNOWN)) {
4281da177e4SLinus Torvalds 			_leave(" = 0 [full]");
4291da177e4SLinus Torvalds 			return 0;
4301da177e4SLinus Torvalds 		}
4311da177e4SLinus Torvalds 
43200317636SDavid Howells 		ctx->pos = blkoff + next * sizeof(union afs_xdr_dirent);
4331da177e4SLinus Torvalds 	}
4341da177e4SLinus Torvalds 
4351da177e4SLinus Torvalds 	_leave(" = 1 [more]");
4361da177e4SLinus Torvalds 	return 1;
437ec26815aSDavid Howells }
4381da177e4SLinus Torvalds 
4391da177e4SLinus Torvalds /*
44008e0e7c8SDavid Howells  * iterate through the data blob that lists the contents of an AFS directory
4411da177e4SLinus Torvalds  */
4421bbae9f8SAl Viro static int afs_dir_iterate(struct inode *dir, struct dir_context *ctx,
4439dd0b82eSDavid Howells 			   struct key *key, afs_dataversion_t *_dir_version)
4441da177e4SLinus Torvalds {
445f3ddee8dSDavid Howells 	struct afs_vnode *dvnode = AFS_FS_I(dir);
44600317636SDavid Howells 	struct afs_xdr_dir_page *dbuf;
44700317636SDavid Howells 	union afs_xdr_dir_block *dblock;
448f3ddee8dSDavid Howells 	struct afs_read *req;
4491da177e4SLinus Torvalds 	struct page *page;
4501da177e4SLinus Torvalds 	unsigned blkoff, limit;
4511da177e4SLinus Torvalds 	int ret;
4521da177e4SLinus Torvalds 
4531bbae9f8SAl Viro 	_enter("{%lu},%u,,", dir->i_ino, (unsigned)ctx->pos);
4541da177e4SLinus Torvalds 
45508e0e7c8SDavid Howells 	if (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(dir)->flags)) {
4561da177e4SLinus Torvalds 		_leave(" = -ESTALE");
4571da177e4SLinus Torvalds 		return -ESTALE;
4581da177e4SLinus Torvalds 	}
4591da177e4SLinus Torvalds 
460f3ddee8dSDavid Howells 	req = afs_read_dir(dvnode, key);
461f3ddee8dSDavid Howells 	if (IS_ERR(req))
462f3ddee8dSDavid Howells 		return PTR_ERR(req);
4639dd0b82eSDavid Howells 	*_dir_version = req->data_version;
464f3ddee8dSDavid Howells 
4651da177e4SLinus Torvalds 	/* round the file position up to the next entry boundary */
46600317636SDavid Howells 	ctx->pos += sizeof(union afs_xdr_dirent) - 1;
46700317636SDavid Howells 	ctx->pos &= ~(sizeof(union afs_xdr_dirent) - 1);
4681da177e4SLinus Torvalds 
4691da177e4SLinus Torvalds 	/* walk through the blocks in sequence */
4701da177e4SLinus Torvalds 	ret = 0;
471f3ddee8dSDavid Howells 	while (ctx->pos < req->actual_len) {
47200317636SDavid Howells 		blkoff = ctx->pos & ~(sizeof(union afs_xdr_dir_block) - 1);
4731da177e4SLinus Torvalds 
474f3ddee8dSDavid Howells 		/* Fetch the appropriate page from the directory and re-add it
475f3ddee8dSDavid Howells 		 * to the LRU.
476f3ddee8dSDavid Howells 		 */
477f3ddee8dSDavid Howells 		page = req->pages[blkoff / PAGE_SIZE];
478f3ddee8dSDavid Howells 		if (!page) {
479f51375cdSDavid Howells 			ret = afs_bad(dvnode, afs_file_error_dir_missing_page);
4801da177e4SLinus Torvalds 			break;
4811da177e4SLinus Torvalds 		}
482f3ddee8dSDavid Howells 		mark_page_accessed(page);
4831da177e4SLinus Torvalds 
4841da177e4SLinus Torvalds 		limit = blkoff & ~(PAGE_SIZE - 1);
4851da177e4SLinus Torvalds 
486f3ddee8dSDavid Howells 		dbuf = kmap(page);
4871da177e4SLinus Torvalds 
4881da177e4SLinus Torvalds 		/* deal with the individual blocks stashed on this page */
4891da177e4SLinus Torvalds 		do {
4901da177e4SLinus Torvalds 			dblock = &dbuf->blocks[(blkoff % PAGE_SIZE) /
49100317636SDavid Howells 					       sizeof(union afs_xdr_dir_block)];
492f51375cdSDavid Howells 			ret = afs_dir_iterate_block(dvnode, ctx, dblock, blkoff);
4931da177e4SLinus Torvalds 			if (ret != 1) {
494f3ddee8dSDavid Howells 				kunmap(page);
4951da177e4SLinus Torvalds 				goto out;
4961da177e4SLinus Torvalds 			}
4971da177e4SLinus Torvalds 
49800317636SDavid Howells 			blkoff += sizeof(union afs_xdr_dir_block);
4991da177e4SLinus Torvalds 
5001bbae9f8SAl Viro 		} while (ctx->pos < dir->i_size && blkoff < limit);
5011da177e4SLinus Torvalds 
502f3ddee8dSDavid Howells 		kunmap(page);
5031da177e4SLinus Torvalds 		ret = 0;
5041da177e4SLinus Torvalds 	}
5051da177e4SLinus Torvalds 
5061da177e4SLinus Torvalds out:
507b61f7dcfSDavid Howells 	up_read(&dvnode->validate_lock);
508f3ddee8dSDavid Howells 	afs_put_read(req);
5091da177e4SLinus Torvalds 	_leave(" = %d", ret);
5101da177e4SLinus Torvalds 	return ret;
511ec26815aSDavid Howells }
5121da177e4SLinus Torvalds 
5131da177e4SLinus Torvalds /*
5141da177e4SLinus Torvalds  * read an AFS directory
5151da177e4SLinus Torvalds  */
5161bbae9f8SAl Viro static int afs_readdir(struct file *file, struct dir_context *ctx)
5171da177e4SLinus Torvalds {
5189dd0b82eSDavid Howells 	afs_dataversion_t dir_version;
5199dd0b82eSDavid Howells 
5209dd0b82eSDavid Howells 	return afs_dir_iterate(file_inode(file), ctx, afs_file_key(file),
5219dd0b82eSDavid Howells 			       &dir_version);
522ec26815aSDavid Howells }
5231da177e4SLinus Torvalds 
5241da177e4SLinus Torvalds /*
5255cf9dd55SDavid Howells  * Search the directory for a single name
5261da177e4SLinus Torvalds  * - if afs_dir_iterate_block() spots this function, it'll pass the FID
5271da177e4SLinus Torvalds  *   uniquifier through dtype
5281da177e4SLinus Torvalds  */
5295cf9dd55SDavid Howells static int afs_lookup_one_filldir(struct dir_context *ctx, const char *name,
530ac7576f4SMiklos Szeredi 				  int nlen, loff_t fpos, u64 ino, unsigned dtype)
5311da177e4SLinus Torvalds {
5325cf9dd55SDavid Howells 	struct afs_lookup_one_cookie *cookie =
5335cf9dd55SDavid Howells 		container_of(ctx, struct afs_lookup_one_cookie, ctx);
5341da177e4SLinus Torvalds 
5351bbae9f8SAl Viro 	_enter("{%s,%u},%s,%u,,%llu,%u",
5361bbae9f8SAl Viro 	       cookie->name.name, cookie->name.len, name, nlen,
537ba3e0e1aSDavid S. Miller 	       (unsigned long long) ino, dtype);
5381da177e4SLinus Torvalds 
53908e0e7c8SDavid Howells 	/* insanity checks first */
54000317636SDavid Howells 	BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
54100317636SDavid Howells 	BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
54208e0e7c8SDavid Howells 
5431bbae9f8SAl Viro 	if (cookie->name.len != nlen ||
5441bbae9f8SAl Viro 	    memcmp(cookie->name.name, name, nlen) != 0) {
5451da177e4SLinus Torvalds 		_leave(" = 0 [no]");
5461da177e4SLinus Torvalds 		return 0;
5471da177e4SLinus Torvalds 	}
5481da177e4SLinus Torvalds 
5491da177e4SLinus Torvalds 	cookie->fid.vnode = ino;
5501da177e4SLinus Torvalds 	cookie->fid.unique = dtype;
5511da177e4SLinus Torvalds 	cookie->found = 1;
5521da177e4SLinus Torvalds 
5531da177e4SLinus Torvalds 	_leave(" = -1 [found]");
5541da177e4SLinus Torvalds 	return -1;
555ec26815aSDavid Howells }
5561da177e4SLinus Torvalds 
5571da177e4SLinus Torvalds /*
5585cf9dd55SDavid Howells  * Do a lookup of a single name in a directory
559260a9803SDavid Howells  * - just returns the FID the dentry name maps to if found
5601da177e4SLinus Torvalds  */
5615cf9dd55SDavid Howells static int afs_do_lookup_one(struct inode *dir, struct dentry *dentry,
5629dd0b82eSDavid Howells 			     struct afs_fid *fid, struct key *key,
5639dd0b82eSDavid Howells 			     afs_dataversion_t *_dir_version)
5641da177e4SLinus Torvalds {
5651bbae9f8SAl Viro 	struct afs_super_info *as = dir->i_sb->s_fs_info;
5665cf9dd55SDavid Howells 	struct afs_lookup_one_cookie cookie = {
5675cf9dd55SDavid Howells 		.ctx.actor = afs_lookup_one_filldir,
5681bbae9f8SAl Viro 		.name = dentry->d_name,
5691bbae9f8SAl Viro 		.fid.vid = as->volume->vid
5701bbae9f8SAl Viro 	};
5711da177e4SLinus Torvalds 	int ret;
5721da177e4SLinus Torvalds 
573a455589fSAl Viro 	_enter("{%lu},%p{%pd},", dir->i_ino, dentry, dentry);
5741da177e4SLinus Torvalds 
5751da177e4SLinus Torvalds 	/* search the directory */
5769dd0b82eSDavid Howells 	ret = afs_dir_iterate(dir, &cookie.ctx, key, _dir_version);
5771da177e4SLinus Torvalds 	if (ret < 0) {
57808e0e7c8SDavid Howells 		_leave(" = %d [iter]", ret);
57908e0e7c8SDavid Howells 		return ret;
5801da177e4SLinus Torvalds 	}
5811da177e4SLinus Torvalds 
5821da177e4SLinus Torvalds 	ret = -ENOENT;
5831da177e4SLinus Torvalds 	if (!cookie.found) {
58408e0e7c8SDavid Howells 		_leave(" = -ENOENT [not found]");
58508e0e7c8SDavid Howells 		return -ENOENT;
58608e0e7c8SDavid Howells 	}
58708e0e7c8SDavid Howells 
58808e0e7c8SDavid Howells 	*fid = cookie.fid;
5893b6492dfSDavid Howells 	_leave(" = 0 { vn=%llu u=%u }", fid->vnode, fid->unique);
59008e0e7c8SDavid Howells 	return 0;
59108e0e7c8SDavid Howells }
59208e0e7c8SDavid Howells 
59308e0e7c8SDavid Howells /*
5945cf9dd55SDavid Howells  * search the directory for a name
5955cf9dd55SDavid Howells  * - if afs_dir_iterate_block() spots this function, it'll pass the FID
5965cf9dd55SDavid Howells  *   uniquifier through dtype
5975cf9dd55SDavid Howells  */
5985cf9dd55SDavid Howells static int afs_lookup_filldir(struct dir_context *ctx, const char *name,
5995cf9dd55SDavid Howells 			      int nlen, loff_t fpos, u64 ino, unsigned dtype)
6005cf9dd55SDavid Howells {
6015cf9dd55SDavid Howells 	struct afs_lookup_cookie *cookie =
6025cf9dd55SDavid Howells 		container_of(ctx, struct afs_lookup_cookie, ctx);
6035cf9dd55SDavid Howells 	int ret;
6045cf9dd55SDavid Howells 
6055cf9dd55SDavid Howells 	_enter("{%s,%u},%s,%u,,%llu,%u",
6065cf9dd55SDavid Howells 	       cookie->name.name, cookie->name.len, name, nlen,
6075cf9dd55SDavid Howells 	       (unsigned long long) ino, dtype);
6085cf9dd55SDavid Howells 
6095cf9dd55SDavid Howells 	/* insanity checks first */
61000317636SDavid Howells 	BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
61100317636SDavid Howells 	BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
6125cf9dd55SDavid Howells 
6135cf9dd55SDavid Howells 	if (cookie->found) {
6145cf9dd55SDavid Howells 		if (cookie->nr_fids < 50) {
6155cf9dd55SDavid Howells 			cookie->fids[cookie->nr_fids].vnode	= ino;
6165cf9dd55SDavid Howells 			cookie->fids[cookie->nr_fids].unique	= dtype;
6175cf9dd55SDavid Howells 			cookie->nr_fids++;
6185cf9dd55SDavid Howells 		}
6195cf9dd55SDavid Howells 	} else if (cookie->name.len == nlen &&
6205cf9dd55SDavid Howells 		   memcmp(cookie->name.name, name, nlen) == 0) {
6215cf9dd55SDavid Howells 		cookie->fids[0].vnode	= ino;
6225cf9dd55SDavid Howells 		cookie->fids[0].unique	= dtype;
6235cf9dd55SDavid Howells 		cookie->found = 1;
6245cf9dd55SDavid Howells 		if (cookie->one_only)
6255cf9dd55SDavid Howells 			return -1;
6265cf9dd55SDavid Howells 	}
6275cf9dd55SDavid Howells 
6285cf9dd55SDavid Howells 	ret = cookie->nr_fids >= 50 ? -1 : 0;
6295cf9dd55SDavid Howells 	_leave(" = %d", ret);
6305cf9dd55SDavid Howells 	return ret;
6315cf9dd55SDavid Howells }
6325cf9dd55SDavid Howells 
6335cf9dd55SDavid Howells /*
6345cf9dd55SDavid Howells  * Do a lookup in a directory.  We make use of bulk lookup to query a slew of
6355cf9dd55SDavid Howells  * files in one go and create inodes for them.  The inode of the file we were
6365cf9dd55SDavid Howells  * asked for is returned.
6375cf9dd55SDavid Howells  */
6385cf9dd55SDavid Howells static struct inode *afs_do_lookup(struct inode *dir, struct dentry *dentry,
6395cf9dd55SDavid Howells 				   struct key *key)
6405cf9dd55SDavid Howells {
6415cf9dd55SDavid Howells 	struct afs_lookup_cookie *cookie;
642f642404aSDavid Howells 	struct afs_cb_interest *dcbi, *cbi = NULL;
6435cf9dd55SDavid Howells 	struct afs_super_info *as = dir->i_sb->s_fs_info;
64487182759SDavid Howells 	struct afs_status_cb *scb;
645b8359153SDavid Howells 	struct afs_iget_data iget_data;
6465cf9dd55SDavid Howells 	struct afs_fs_cursor fc;
647f642404aSDavid Howells 	struct afs_server *server;
64839db9815SDavid Howells 	struct afs_vnode *dvnode = AFS_FS_I(dir), *vnode;
64939db9815SDavid Howells 	struct inode *inode = NULL, *ti;
6509dd0b82eSDavid Howells 	afs_dataversion_t data_version = READ_ONCE(dvnode->status.data_version);
6515cf9dd55SDavid Howells 	int ret, i;
6525cf9dd55SDavid Howells 
6535cf9dd55SDavid Howells 	_enter("{%lu},%p{%pd},", dir->i_ino, dentry, dentry);
6545cf9dd55SDavid Howells 
6555cf9dd55SDavid Howells 	cookie = kzalloc(sizeof(struct afs_lookup_cookie), GFP_KERNEL);
6565cf9dd55SDavid Howells 	if (!cookie)
6575cf9dd55SDavid Howells 		return ERR_PTR(-ENOMEM);
6585cf9dd55SDavid Howells 
6595cf9dd55SDavid Howells 	cookie->ctx.actor = afs_lookup_filldir;
6605cf9dd55SDavid Howells 	cookie->name = dentry->d_name;
6615cf9dd55SDavid Howells 	cookie->nr_fids = 1; /* slot 0 is saved for the fid we actually want */
6625cf9dd55SDavid Howells 
6635cf9dd55SDavid Howells 	read_seqlock_excl(&dvnode->cb_lock);
664f642404aSDavid Howells 	dcbi = rcu_dereference_protected(dvnode->cb_interest,
665f642404aSDavid Howells 					 lockdep_is_held(&dvnode->cb_lock.lock));
666f642404aSDavid Howells 	if (dcbi) {
667f642404aSDavid Howells 		server = dcbi->server;
668f642404aSDavid Howells 		if (server &&
669f642404aSDavid Howells 		    test_bit(AFS_SERVER_FL_NO_IBULK, &server->flags))
6705cf9dd55SDavid Howells 			cookie->one_only = true;
671f642404aSDavid Howells 	}
6725cf9dd55SDavid Howells 	read_sequnlock_excl(&dvnode->cb_lock);
6735cf9dd55SDavid Howells 
6745cf9dd55SDavid Howells 	for (i = 0; i < 50; i++)
6755cf9dd55SDavid Howells 		cookie->fids[i].vid = as->volume->vid;
6765cf9dd55SDavid Howells 
6775cf9dd55SDavid Howells 	/* search the directory */
6789dd0b82eSDavid Howells 	ret = afs_dir_iterate(dir, &cookie->ctx, key, &data_version);
6795cf9dd55SDavid Howells 	if (ret < 0) {
6805cf9dd55SDavid Howells 		inode = ERR_PTR(ret);
6815cf9dd55SDavid Howells 		goto out;
6825cf9dd55SDavid Howells 	}
6835cf9dd55SDavid Howells 
6849dd0b82eSDavid Howells 	dentry->d_fsdata = (void *)(unsigned long)data_version;
6859dd0b82eSDavid Howells 
6865cf9dd55SDavid Howells 	inode = ERR_PTR(-ENOENT);
6875cf9dd55SDavid Howells 	if (!cookie->found)
6885cf9dd55SDavid Howells 		goto out;
6895cf9dd55SDavid Howells 
6905cf9dd55SDavid Howells 	/* Check to see if we already have an inode for the primary fid. */
691b8359153SDavid Howells 	iget_data.fid = cookie->fids[0];
692b8359153SDavid Howells 	iget_data.volume = dvnode->volume;
693b8359153SDavid Howells 	iget_data.cb_v_break = dvnode->volume->cb_v_break;
694b8359153SDavid Howells 	iget_data.cb_s_break = 0;
695b8359153SDavid Howells 	inode = ilookup5(dir->i_sb, cookie->fids[0].vnode,
696b8359153SDavid Howells 			 afs_iget5_test, &iget_data);
6975cf9dd55SDavid Howells 	if (inode)
6985cf9dd55SDavid Howells 		goto out;
6995cf9dd55SDavid Howells 
7005cf9dd55SDavid Howells 	/* Need space for examining all the selected files */
7015cf9dd55SDavid Howells 	inode = ERR_PTR(-ENOMEM);
70287182759SDavid Howells 	cookie->statuses = kvcalloc(cookie->nr_fids, sizeof(struct afs_status_cb),
7035cf9dd55SDavid Howells 				    GFP_KERNEL);
7045cf9dd55SDavid Howells 	if (!cookie->statuses)
7055cf9dd55SDavid Howells 		goto out;
7065cf9dd55SDavid Howells 
70739db9815SDavid Howells 	cookie->inodes = kcalloc(cookie->nr_fids, sizeof(struct inode *),
70839db9815SDavid Howells 				 GFP_KERNEL);
70939db9815SDavid Howells 	if (!cookie->inodes)
71039db9815SDavid Howells 		goto out_s;
71139db9815SDavid Howells 
71239db9815SDavid Howells 	for (i = 1; i < cookie->nr_fids; i++) {
71339db9815SDavid Howells 		scb = &cookie->statuses[i];
71439db9815SDavid Howells 
71539db9815SDavid Howells 		/* Find any inodes that already exist and get their
71639db9815SDavid Howells 		 * callback counters.
71739db9815SDavid Howells 		 */
71839db9815SDavid Howells 		iget_data.fid = cookie->fids[i];
71939db9815SDavid Howells 		ti = ilookup5_nowait(dir->i_sb, iget_data.fid.vnode,
72039db9815SDavid Howells 				     afs_iget5_test, &iget_data);
72139db9815SDavid Howells 		if (!IS_ERR_OR_NULL(ti)) {
72239db9815SDavid Howells 			vnode = AFS_FS_I(ti);
72339db9815SDavid Howells 			scb->cb_break = afs_calc_vnode_cb_break(vnode);
72439db9815SDavid Howells 			cookie->inodes[i] = ti;
72539db9815SDavid Howells 		}
72639db9815SDavid Howells 	}
72739db9815SDavid Howells 
7285cf9dd55SDavid Howells 	/* Try FS.InlineBulkStatus first.  Abort codes for the individual
7295cf9dd55SDavid Howells 	 * lookups contained therein are stored in the reply without aborting
7305cf9dd55SDavid Howells 	 * the whole operation.
7315cf9dd55SDavid Howells 	 */
7325cf9dd55SDavid Howells 	if (cookie->one_only)
7335cf9dd55SDavid Howells 		goto no_inline_bulk_status;
7345cf9dd55SDavid Howells 
7355cf9dd55SDavid Howells 	inode = ERR_PTR(-ERESTARTSYS);
73620b8391fSDavid Howells 	if (afs_begin_vnode_operation(&fc, dvnode, key, true)) {
7375cf9dd55SDavid Howells 		while (afs_select_fileserver(&fc)) {
7385cf9dd55SDavid Howells 			if (test_bit(AFS_SERVER_FL_NO_IBULK,
7395cf9dd55SDavid Howells 				      &fc.cbi->server->flags)) {
7405cf9dd55SDavid Howells 				fc.ac.abort_code = RX_INVALID_OPERATION;
7415cf9dd55SDavid Howells 				fc.ac.error = -ECONNABORTED;
7425cf9dd55SDavid Howells 				break;
7435cf9dd55SDavid Howells 			}
744b8359153SDavid Howells 			iget_data.cb_v_break = dvnode->volume->cb_v_break;
745b8359153SDavid Howells 			iget_data.cb_s_break = fc.cbi->server->cb_s_break;
7465cf9dd55SDavid Howells 			afs_fs_inline_bulk_status(&fc,
7475cf9dd55SDavid Howells 						  afs_v2net(dvnode),
7485cf9dd55SDavid Howells 						  cookie->fids,
7495cf9dd55SDavid Howells 						  cookie->statuses,
7505cf9dd55SDavid Howells 						  cookie->nr_fids, NULL);
7515cf9dd55SDavid Howells 		}
7525cf9dd55SDavid Howells 
7535cf9dd55SDavid Howells 		if (fc.ac.error == 0)
7545cf9dd55SDavid Howells 			cbi = afs_get_cb_interest(fc.cbi);
7555cf9dd55SDavid Howells 		if (fc.ac.abort_code == RX_INVALID_OPERATION)
7565cf9dd55SDavid Howells 			set_bit(AFS_SERVER_FL_NO_IBULK, &fc.cbi->server->flags);
7575cf9dd55SDavid Howells 		inode = ERR_PTR(afs_end_vnode_operation(&fc));
7585cf9dd55SDavid Howells 	}
7595cf9dd55SDavid Howells 
7605cf9dd55SDavid Howells 	if (!IS_ERR(inode))
7615cf9dd55SDavid Howells 		goto success;
7625cf9dd55SDavid Howells 	if (fc.ac.abort_code != RX_INVALID_OPERATION)
7635cf9dd55SDavid Howells 		goto out_c;
7645cf9dd55SDavid Howells 
7655cf9dd55SDavid Howells no_inline_bulk_status:
7665cf9dd55SDavid Howells 	/* We could try FS.BulkStatus next, but this aborts the entire op if
7675cf9dd55SDavid Howells 	 * any of the lookups fails - so, for the moment, revert to
7685cf9dd55SDavid Howells 	 * FS.FetchStatus for just the primary fid.
7695cf9dd55SDavid Howells 	 */
7705cf9dd55SDavid Howells 	inode = ERR_PTR(-ERESTARTSYS);
77120b8391fSDavid Howells 	if (afs_begin_vnode_operation(&fc, dvnode, key, true)) {
7725cf9dd55SDavid Howells 		while (afs_select_fileserver(&fc)) {
773b8359153SDavid Howells 			iget_data.cb_v_break = dvnode->volume->cb_v_break;
774b8359153SDavid Howells 			iget_data.cb_s_break = fc.cbi->server->cb_s_break;
77587182759SDavid Howells 			scb = &cookie->statuses[0];
7765cf9dd55SDavid Howells 			afs_fs_fetch_status(&fc,
7775cf9dd55SDavid Howells 					    afs_v2net(dvnode),
7785cf9dd55SDavid Howells 					    cookie->fids,
779a58823acSDavid Howells 					    scb,
7805cf9dd55SDavid Howells 					    NULL);
7815cf9dd55SDavid Howells 		}
7825cf9dd55SDavid Howells 
7835cf9dd55SDavid Howells 		if (fc.ac.error == 0)
7845cf9dd55SDavid Howells 			cbi = afs_get_cb_interest(fc.cbi);
7855cf9dd55SDavid Howells 		inode = ERR_PTR(afs_end_vnode_operation(&fc));
7865cf9dd55SDavid Howells 	}
7875cf9dd55SDavid Howells 
7885cf9dd55SDavid Howells 	if (IS_ERR(inode))
7895cf9dd55SDavid Howells 		goto out_c;
7905cf9dd55SDavid Howells 
7915cf9dd55SDavid Howells success:
7925cf9dd55SDavid Howells 	/* Turn all the files into inodes and save the first one - which is the
7935cf9dd55SDavid Howells 	 * one we actually want.
7945cf9dd55SDavid Howells 	 */
79587182759SDavid Howells 	scb = &cookie->statuses[0];
79687182759SDavid Howells 	if (scb->status.abort_code != 0)
79787182759SDavid Howells 		inode = ERR_PTR(afs_abort_to_error(scb->status.abort_code));
7985cf9dd55SDavid Howells 
7995cf9dd55SDavid Howells 	for (i = 0; i < cookie->nr_fids; i++) {
80087182759SDavid Howells 		struct afs_status_cb *scb = &cookie->statuses[i];
80139db9815SDavid Howells 
80239db9815SDavid Howells 		if (!scb->have_status && !scb->have_error)
80339db9815SDavid Howells 			continue;
80439db9815SDavid Howells 
80539db9815SDavid Howells 		if (cookie->inodes[i]) {
80639db9815SDavid Howells 			afs_vnode_commit_status(&fc, AFS_FS_I(cookie->inodes[i]),
80739db9815SDavid Howells 						scb->cb_break, NULL, scb);
80839db9815SDavid Howells 			continue;
80939db9815SDavid Howells 		}
8105cf9dd55SDavid Howells 
81187182759SDavid Howells 		if (scb->status.abort_code != 0)
8125cf9dd55SDavid Howells 			continue;
8135cf9dd55SDavid Howells 
814b8359153SDavid Howells 		iget_data.fid = cookie->fids[i];
815b8359153SDavid Howells 		ti = afs_iget(dir->i_sb, key, &iget_data, scb, cbi, dvnode);
81639db9815SDavid Howells 		if (!IS_ERR(ti))
81739db9815SDavid Howells 			afs_cache_permit(AFS_FS_I(ti), key,
81839db9815SDavid Howells 					 0 /* Assume vnode->cb_break is 0 */ +
81939db9815SDavid Howells 					 iget_data.cb_v_break,
82039db9815SDavid Howells 					 scb);
8215cf9dd55SDavid Howells 		if (i == 0) {
8225cf9dd55SDavid Howells 			inode = ti;
8235cf9dd55SDavid Howells 		} else {
8245cf9dd55SDavid Howells 			if (!IS_ERR(ti))
8255cf9dd55SDavid Howells 				iput(ti);
8265cf9dd55SDavid Howells 		}
8275cf9dd55SDavid Howells 	}
8285cf9dd55SDavid Howells 
8295cf9dd55SDavid Howells out_c:
8305cf9dd55SDavid Howells 	afs_put_cb_interest(afs_v2net(dvnode), cbi);
83139db9815SDavid Howells 	if (cookie->inodes) {
83239db9815SDavid Howells 		for (i = 0; i < cookie->nr_fids; i++)
83339db9815SDavid Howells 			iput(cookie->inodes[i]);
83439db9815SDavid Howells 		kfree(cookie->inodes);
83539db9815SDavid Howells 	}
83639db9815SDavid Howells out_s:
83787182759SDavid Howells 	kvfree(cookie->statuses);
8385cf9dd55SDavid Howells out:
8395cf9dd55SDavid Howells 	kfree(cookie);
8405cf9dd55SDavid Howells 	return inode;
8415cf9dd55SDavid Howells }
8425cf9dd55SDavid Howells 
8435cf9dd55SDavid Howells /*
8446f8880d8SDavid Howells  * Look up an entry in a directory with @sys substitution.
8456f8880d8SDavid Howells  */
8466f8880d8SDavid Howells static struct dentry *afs_lookup_atsys(struct inode *dir, struct dentry *dentry,
8476f8880d8SDavid Howells 				       struct key *key)
8486f8880d8SDavid Howells {
8496f8880d8SDavid Howells 	struct afs_sysnames *subs;
8506f8880d8SDavid Howells 	struct afs_net *net = afs_i2net(dir);
8516f8880d8SDavid Howells 	struct dentry *ret;
8526f8880d8SDavid Howells 	char *buf, *p, *name;
8536f8880d8SDavid Howells 	int len, i;
8546f8880d8SDavid Howells 
8556f8880d8SDavid Howells 	_enter("");
8566f8880d8SDavid Howells 
8576f8880d8SDavid Howells 	ret = ERR_PTR(-ENOMEM);
8586f8880d8SDavid Howells 	p = buf = kmalloc(AFSNAMEMAX, GFP_KERNEL);
8596f8880d8SDavid Howells 	if (!buf)
8606f8880d8SDavid Howells 		goto out_p;
8616f8880d8SDavid Howells 	if (dentry->d_name.len > 4) {
8626f8880d8SDavid Howells 		memcpy(p, dentry->d_name.name, dentry->d_name.len - 4);
8636f8880d8SDavid Howells 		p += dentry->d_name.len - 4;
8646f8880d8SDavid Howells 	}
8656f8880d8SDavid Howells 
8666f8880d8SDavid Howells 	/* There is an ordered list of substitutes that we have to try. */
8676f8880d8SDavid Howells 	read_lock(&net->sysnames_lock);
8686f8880d8SDavid Howells 	subs = net->sysnames;
8696f8880d8SDavid Howells 	refcount_inc(&subs->usage);
8706f8880d8SDavid Howells 	read_unlock(&net->sysnames_lock);
8716f8880d8SDavid Howells 
8726f8880d8SDavid Howells 	for (i = 0; i < subs->nr; i++) {
8736f8880d8SDavid Howells 		name = subs->subs[i];
8746f8880d8SDavid Howells 		len = dentry->d_name.len - 4 + strlen(name);
8756f8880d8SDavid Howells 		if (len >= AFSNAMEMAX) {
8766f8880d8SDavid Howells 			ret = ERR_PTR(-ENAMETOOLONG);
8776f8880d8SDavid Howells 			goto out_s;
8786f8880d8SDavid Howells 		}
8796f8880d8SDavid Howells 
8806f8880d8SDavid Howells 		strcpy(p, name);
8816f8880d8SDavid Howells 		ret = lookup_one_len(buf, dentry->d_parent, len);
8826f8880d8SDavid Howells 		if (IS_ERR(ret) || d_is_positive(ret))
8836f8880d8SDavid Howells 			goto out_s;
8846f8880d8SDavid Howells 		dput(ret);
8856f8880d8SDavid Howells 	}
8866f8880d8SDavid Howells 
8876f8880d8SDavid Howells 	/* We don't want to d_add() the @sys dentry here as we don't want to
8886f8880d8SDavid Howells 	 * the cached dentry to hide changes to the sysnames list.
8896f8880d8SDavid Howells 	 */
8906f8880d8SDavid Howells 	ret = NULL;
8916f8880d8SDavid Howells out_s:
8926f8880d8SDavid Howells 	afs_put_sysnames(subs);
8936f8880d8SDavid Howells 	kfree(buf);
8946f8880d8SDavid Howells out_p:
8956f8880d8SDavid Howells 	key_put(key);
8966f8880d8SDavid Howells 	return ret;
8976f8880d8SDavid Howells }
8986f8880d8SDavid Howells 
8996f8880d8SDavid Howells /*
90008e0e7c8SDavid Howells  * look up an entry in a directory
90108e0e7c8SDavid Howells  */
902260a9803SDavid Howells static struct dentry *afs_lookup(struct inode *dir, struct dentry *dentry,
90300cd8dd3SAl Viro 				 unsigned int flags)
90408e0e7c8SDavid Howells {
9055cf9dd55SDavid Howells 	struct afs_vnode *dvnode = AFS_FS_I(dir);
90608e0e7c8SDavid Howells 	struct inode *inode;
90734b2a88fSAl Viro 	struct dentry *d;
90800d3b7a4SDavid Howells 	struct key *key;
90908e0e7c8SDavid Howells 	int ret;
91008e0e7c8SDavid Howells 
9113b6492dfSDavid Howells 	_enter("{%llx:%llu},%p{%pd},",
9125cf9dd55SDavid Howells 	       dvnode->fid.vid, dvnode->fid.vnode, dentry, dentry);
913260a9803SDavid Howells 
9142b0143b5SDavid Howells 	ASSERTCMP(d_inode(dentry), ==, NULL);
91508e0e7c8SDavid Howells 
91645222b9eSDavid Howells 	if (dentry->d_name.len >= AFSNAMEMAX) {
91708e0e7c8SDavid Howells 		_leave(" = -ENAMETOOLONG");
91808e0e7c8SDavid Howells 		return ERR_PTR(-ENAMETOOLONG);
91908e0e7c8SDavid Howells 	}
92008e0e7c8SDavid Howells 
9215cf9dd55SDavid Howells 	if (test_bit(AFS_VNODE_DELETED, &dvnode->flags)) {
92208e0e7c8SDavid Howells 		_leave(" = -ESTALE");
92308e0e7c8SDavid Howells 		return ERR_PTR(-ESTALE);
92408e0e7c8SDavid Howells 	}
92508e0e7c8SDavid Howells 
9265cf9dd55SDavid Howells 	key = afs_request_key(dvnode->volume->cell);
92700d3b7a4SDavid Howells 	if (IS_ERR(key)) {
92800d3b7a4SDavid Howells 		_leave(" = %ld [key]", PTR_ERR(key));
929e231c2eeSDavid Howells 		return ERR_CAST(key);
93000d3b7a4SDavid Howells 	}
93100d3b7a4SDavid Howells 
9325cf9dd55SDavid Howells 	ret = afs_validate(dvnode, key);
93308e0e7c8SDavid Howells 	if (ret < 0) {
93400d3b7a4SDavid Howells 		key_put(key);
935260a9803SDavid Howells 		_leave(" = %d [val]", ret);
9361da177e4SLinus Torvalds 		return ERR_PTR(ret);
9371da177e4SLinus Torvalds 	}
9381da177e4SLinus Torvalds 
9396f8880d8SDavid Howells 	if (dentry->d_name.len >= 4 &&
9406f8880d8SDavid Howells 	    dentry->d_name.name[dentry->d_name.len - 4] == '@' &&
9416f8880d8SDavid Howells 	    dentry->d_name.name[dentry->d_name.len - 3] == 's' &&
9426f8880d8SDavid Howells 	    dentry->d_name.name[dentry->d_name.len - 2] == 'y' &&
9436f8880d8SDavid Howells 	    dentry->d_name.name[dentry->d_name.len - 1] == 's')
9446f8880d8SDavid Howells 		return afs_lookup_atsys(dir, dentry, key);
9456f8880d8SDavid Howells 
946d55b4da4SDavid Howells 	afs_stat_v(dvnode, n_lookup);
9475cf9dd55SDavid Howells 	inode = afs_do_lookup(dir, dentry, key);
94834b2a88fSAl Viro 	key_put(key);
94934b2a88fSAl Viro 	if (inode == ERR_PTR(-ENOENT)) {
9505cf9dd55SDavid Howells 		inode = afs_try_auto_mntpt(dentry, dir);
95134b2a88fSAl Viro 	} else {
95234b2a88fSAl Viro 		dentry->d_fsdata =
95334b2a88fSAl Viro 			(void *)(unsigned long)dvnode->status.data_version;
954bec5eb61Swanglei 	}
95534b2a88fSAl Viro 	d = d_splice_alias(inode, dentry);
95680548b03SDavid Howells 	if (!IS_ERR_OR_NULL(d)) {
95734b2a88fSAl Viro 		d->d_fsdata = dentry->d_fsdata;
95880548b03SDavid Howells 		trace_afs_lookup(dvnode, &d->d_name,
95980548b03SDavid Howells 				 inode ? AFS_FS_I(inode) : NULL);
96080548b03SDavid Howells 	} else {
96180548b03SDavid Howells 		trace_afs_lookup(dvnode, &dentry->d_name,
962c4c613ffSMarc Dionne 				 IS_ERR_OR_NULL(inode) ? NULL
963c4c613ffSMarc Dionne 				 : AFS_FS_I(inode));
96480548b03SDavid Howells 	}
96534b2a88fSAl Viro 	return d;
966ec26815aSDavid Howells }
9671da177e4SLinus Torvalds 
9681da177e4SLinus Torvalds /*
9691da177e4SLinus Torvalds  * check that a dentry lookup hit has found a valid entry
9701da177e4SLinus Torvalds  * - NOTE! the hit can be a negative hit too, so we can't assume we have an
9711da177e4SLinus Torvalds  *   inode
9721da177e4SLinus Torvalds  */
9730b728e19SAl Viro static int afs_d_revalidate(struct dentry *dentry, unsigned int flags)
9741da177e4SLinus Torvalds {
975260a9803SDavid Howells 	struct afs_vnode *vnode, *dir;
976dd0d9a46SArtem Bityutskiy 	struct afs_fid uninitialized_var(fid);
9771da177e4SLinus Torvalds 	struct dentry *parent;
978c435ee34SDavid Howells 	struct inode *inode;
97900d3b7a4SDavid Howells 	struct key *key;
9809dd0b82eSDavid Howells 	afs_dataversion_t dir_version;
9819dd0b82eSDavid Howells 	long de_version;
9821da177e4SLinus Torvalds 	int ret;
9831da177e4SLinus Torvalds 
9840b728e19SAl Viro 	if (flags & LOOKUP_RCU)
98534286d66SNick Piggin 		return -ECHILD;
98634286d66SNick Piggin 
987c435ee34SDavid Howells 	if (d_really_is_positive(dentry)) {
9882b0143b5SDavid Howells 		vnode = AFS_FS_I(d_inode(dentry));
9893b6492dfSDavid Howells 		_enter("{v={%llx:%llu} n=%pd fl=%lx},",
990a455589fSAl Viro 		       vnode->fid.vid, vnode->fid.vnode, dentry,
991260a9803SDavid Howells 		       vnode->flags);
992c435ee34SDavid Howells 	} else {
993a455589fSAl Viro 		_enter("{neg n=%pd}", dentry);
994c435ee34SDavid Howells 	}
9951da177e4SLinus Torvalds 
996260a9803SDavid Howells 	key = afs_request_key(AFS_FS_S(dentry->d_sb)->volume->cell);
99700d3b7a4SDavid Howells 	if (IS_ERR(key))
99800d3b7a4SDavid Howells 		key = NULL;
99900d3b7a4SDavid Howells 
1000c435ee34SDavid Howells 	if (d_really_is_positive(dentry)) {
1001c435ee34SDavid Howells 		inode = d_inode(dentry);
1002c435ee34SDavid Howells 		if (inode) {
1003c435ee34SDavid Howells 			vnode = AFS_FS_I(inode);
1004c435ee34SDavid Howells 			afs_validate(vnode, key);
1005c435ee34SDavid Howells 			if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
1006c435ee34SDavid Howells 				goto out_bad;
1007c435ee34SDavid Howells 		}
1008c435ee34SDavid Howells 	}
1009c435ee34SDavid Howells 
10101da177e4SLinus Torvalds 	/* lock down the parent dentry so we can peer at it */
101108e0e7c8SDavid Howells 	parent = dget_parent(dentry);
10122b0143b5SDavid Howells 	dir = AFS_FS_I(d_inode(parent));
10131da177e4SLinus Torvalds 
1014260a9803SDavid Howells 	/* validate the parent directory */
1015260a9803SDavid Howells 	afs_validate(dir, key);
1016260a9803SDavid Howells 
1017260a9803SDavid Howells 	if (test_bit(AFS_VNODE_DELETED, &dir->flags)) {
1018a455589fSAl Viro 		_debug("%pd: parent dir deleted", dentry);
1019c435ee34SDavid Howells 		goto out_bad_parent;
10201da177e4SLinus Torvalds 	}
10211da177e4SLinus Torvalds 
1022a4ff7401SDavid Howells 	/* We only need to invalidate a dentry if the server's copy changed
1023a4ff7401SDavid Howells 	 * behind our back.  If we made the change, it's no problem.  Note that
1024a4ff7401SDavid Howells 	 * on a 32-bit system, we only have 32 bits in the dentry to store the
1025a4ff7401SDavid Howells 	 * version.
1026a4ff7401SDavid Howells 	 */
10279dd0b82eSDavid Howells 	dir_version = dir->status.data_version;
1028a4ff7401SDavid Howells 	de_version = (long)dentry->d_fsdata;
10299dd0b82eSDavid Howells 	if (de_version == (long)dir_version)
10305dc84855SDavid Howells 		goto out_valid_noupdate;
1031a4ff7401SDavid Howells 
10329dd0b82eSDavid Howells 	dir_version = dir->invalid_before;
10339dd0b82eSDavid Howells 	if (de_version - (long)dir_version >= 0)
1034a4ff7401SDavid Howells 		goto out_valid;
1035260a9803SDavid Howells 
103608e0e7c8SDavid Howells 	_debug("dir modified");
1037d55b4da4SDavid Howells 	afs_stat_v(dir, n_reval);
10381da177e4SLinus Torvalds 
10391da177e4SLinus Torvalds 	/* search the directory for this vnode */
10409dd0b82eSDavid Howells 	ret = afs_do_lookup_one(&dir->vfs_inode, dentry, &fid, key, &dir_version);
1041260a9803SDavid Howells 	switch (ret) {
1042260a9803SDavid Howells 	case 0:
1043260a9803SDavid Howells 		/* the filename maps to something */
10442b0143b5SDavid Howells 		if (d_really_is_negative(dentry))
1045c435ee34SDavid Howells 			goto out_bad_parent;
1046c435ee34SDavid Howells 		inode = d_inode(dentry);
1047c435ee34SDavid Howells 		if (is_bad_inode(inode)) {
1048a455589fSAl Viro 			printk("kAFS: afs_d_revalidate: %pd2 has bad inode\n",
1049a455589fSAl Viro 			       dentry);
1050c435ee34SDavid Howells 			goto out_bad_parent;
10511da177e4SLinus Torvalds 		}
10521da177e4SLinus Torvalds 
1053c435ee34SDavid Howells 		vnode = AFS_FS_I(inode);
1054c435ee34SDavid Howells 
10551da177e4SLinus Torvalds 		/* if the vnode ID has changed, then the dirent points to a
10561da177e4SLinus Torvalds 		 * different file */
105708e0e7c8SDavid Howells 		if (fid.vnode != vnode->fid.vnode) {
10583b6492dfSDavid Howells 			_debug("%pd: dirent changed [%llu != %llu]",
1059a455589fSAl Viro 			       dentry, fid.vnode,
106008e0e7c8SDavid Howells 			       vnode->fid.vnode);
10611da177e4SLinus Torvalds 			goto not_found;
10621da177e4SLinus Torvalds 		}
10631da177e4SLinus Torvalds 
10641da177e4SLinus Torvalds 		/* if the vnode ID uniqifier has changed, then the file has
1065260a9803SDavid Howells 		 * been deleted and replaced, and the original vnode ID has
1066260a9803SDavid Howells 		 * been reused */
106708e0e7c8SDavid Howells 		if (fid.unique != vnode->fid.unique) {
1068a455589fSAl Viro 			_debug("%pd: file deleted (uq %u -> %u I:%u)",
1069a455589fSAl Viro 			       dentry, fid.unique,
10707a224228SJean Noel Cordenner 			       vnode->fid.unique,
1071c435ee34SDavid Howells 			       vnode->vfs_inode.i_generation);
1072c435ee34SDavid Howells 			write_seqlock(&vnode->cb_lock);
107308e0e7c8SDavid Howells 			set_bit(AFS_VNODE_DELETED, &vnode->flags);
1074c435ee34SDavid Howells 			write_sequnlock(&vnode->cb_lock);
1075260a9803SDavid Howells 			goto not_found;
1076260a9803SDavid Howells 		}
1077260a9803SDavid Howells 		goto out_valid;
1078260a9803SDavid Howells 
1079260a9803SDavid Howells 	case -ENOENT:
1080260a9803SDavid Howells 		/* the filename is unknown */
1081a455589fSAl Viro 		_debug("%pd: dirent not found", dentry);
10822b0143b5SDavid Howells 		if (d_really_is_positive(dentry))
1083260a9803SDavid Howells 			goto not_found;
1084260a9803SDavid Howells 		goto out_valid;
1085260a9803SDavid Howells 
1086260a9803SDavid Howells 	default:
1087a455589fSAl Viro 		_debug("failed to iterate dir %pd: %d",
1088a455589fSAl Viro 		       parent, ret);
1089c435ee34SDavid Howells 		goto out_bad_parent;
10901da177e4SLinus Torvalds 	}
109108e0e7c8SDavid Howells 
10921da177e4SLinus Torvalds out_valid:
10939dd0b82eSDavid Howells 	dentry->d_fsdata = (void *)(unsigned long)dir_version;
10945dc84855SDavid Howells out_valid_noupdate:
10951da177e4SLinus Torvalds 	dput(parent);
109600d3b7a4SDavid Howells 	key_put(key);
10971da177e4SLinus Torvalds 	_leave(" = 1 [valid]");
10981da177e4SLinus Torvalds 	return 1;
10991da177e4SLinus Torvalds 
11001da177e4SLinus Torvalds 	/* the dirent, if it exists, now points to a different vnode */
11011da177e4SLinus Torvalds not_found:
11021da177e4SLinus Torvalds 	spin_lock(&dentry->d_lock);
11031da177e4SLinus Torvalds 	dentry->d_flags |= DCACHE_NFSFS_RENAMED;
11041da177e4SLinus Torvalds 	spin_unlock(&dentry->d_lock);
11051da177e4SLinus Torvalds 
1106c435ee34SDavid Howells out_bad_parent:
1107a455589fSAl Viro 	_debug("dropping dentry %pd2", dentry);
11081da177e4SLinus Torvalds 	dput(parent);
1109c435ee34SDavid Howells out_bad:
111000d3b7a4SDavid Howells 	key_put(key);
11111da177e4SLinus Torvalds 
11121da177e4SLinus Torvalds 	_leave(" = 0 [bad]");
11131da177e4SLinus Torvalds 	return 0;
1114ec26815aSDavid Howells }
11151da177e4SLinus Torvalds 
11161da177e4SLinus Torvalds /*
11171da177e4SLinus Torvalds  * allow the VFS to enquire as to whether a dentry should be unhashed (mustn't
11181da177e4SLinus Torvalds  * sleep)
11191da177e4SLinus Torvalds  * - called from dput() when d_count is going to 0.
11201da177e4SLinus Torvalds  * - return 1 to request dentry be unhashed, 0 otherwise
11211da177e4SLinus Torvalds  */
1122fe15ce44SNick Piggin static int afs_d_delete(const struct dentry *dentry)
11231da177e4SLinus Torvalds {
1124a455589fSAl Viro 	_enter("%pd", dentry);
11251da177e4SLinus Torvalds 
11261da177e4SLinus Torvalds 	if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
11271da177e4SLinus Torvalds 		goto zap;
11281da177e4SLinus Torvalds 
11292b0143b5SDavid Howells 	if (d_really_is_positive(dentry) &&
11302b0143b5SDavid Howells 	    (test_bit(AFS_VNODE_DELETED,   &AFS_FS_I(d_inode(dentry))->flags) ||
11312b0143b5SDavid Howells 	     test_bit(AFS_VNODE_PSEUDODIR, &AFS_FS_I(d_inode(dentry))->flags)))
11321da177e4SLinus Torvalds 		goto zap;
11331da177e4SLinus Torvalds 
11341da177e4SLinus Torvalds 	_leave(" = 0 [keep]");
11351da177e4SLinus Torvalds 	return 0;
11361da177e4SLinus Torvalds 
11371da177e4SLinus Torvalds zap:
11381da177e4SLinus Torvalds 	_leave(" = 1 [zap]");
11391da177e4SLinus Torvalds 	return 1;
1140ec26815aSDavid Howells }
1141260a9803SDavid Howells 
1142260a9803SDavid Howells /*
114379ddbfa5SDavid Howells  * Clean up sillyrename files on dentry removal.
114479ddbfa5SDavid Howells  */
114579ddbfa5SDavid Howells static void afs_d_iput(struct dentry *dentry, struct inode *inode)
114679ddbfa5SDavid Howells {
114779ddbfa5SDavid Howells 	if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
114879ddbfa5SDavid Howells 		afs_silly_iput(dentry, inode);
114979ddbfa5SDavid Howells 	iput(inode);
115079ddbfa5SDavid Howells }
115179ddbfa5SDavid Howells 
115279ddbfa5SDavid Howells /*
1153260a9803SDavid Howells  * handle dentry release
1154260a9803SDavid Howells  */
115566c7e1d3SDavid Howells void afs_d_release(struct dentry *dentry)
1156260a9803SDavid Howells {
1157a455589fSAl Viro 	_enter("%pd", dentry);
1158260a9803SDavid Howells }
1159260a9803SDavid Howells 
1160260a9803SDavid Howells /*
1161d2ddc776SDavid Howells  * Create a new inode for create/mkdir/symlink
1162d2ddc776SDavid Howells  */
1163d2ddc776SDavid Howells static void afs_vnode_new_inode(struct afs_fs_cursor *fc,
1164d2ddc776SDavid Howells 				struct dentry *new_dentry,
1165b8359153SDavid Howells 				struct afs_iget_data *new_data,
1166a58823acSDavid Howells 				struct afs_status_cb *new_scb)
1167d2ddc776SDavid Howells {
11685a813276SDavid Howells 	struct afs_vnode *vnode;
1169d2ddc776SDavid Howells 	struct inode *inode;
1170d2ddc776SDavid Howells 
1171d2ddc776SDavid Howells 	if (fc->ac.error < 0)
1172d2ddc776SDavid Howells 		return;
1173d2ddc776SDavid Howells 
1174d2ddc776SDavid Howells 	inode = afs_iget(fc->vnode->vfs_inode.i_sb, fc->key,
1175b8359153SDavid Howells 			 new_data, new_scb, fc->cbi, fc->vnode);
1176d2ddc776SDavid Howells 	if (IS_ERR(inode)) {
1177d2ddc776SDavid Howells 		/* ENOMEM or EINTR at a really inconvenient time - just abandon
1178d2ddc776SDavid Howells 		 * the new directory on the server.
1179d2ddc776SDavid Howells 		 */
1180d2ddc776SDavid Howells 		fc->ac.error = PTR_ERR(inode);
1181d2ddc776SDavid Howells 		return;
1182d2ddc776SDavid Howells 	}
1183d2ddc776SDavid Howells 
11845a813276SDavid Howells 	vnode = AFS_FS_I(inode);
11855a813276SDavid Howells 	set_bit(AFS_VNODE_NEW_CONTENT, &vnode->flags);
1186a58823acSDavid Howells 	if (fc->ac.error == 0)
1187a58823acSDavid Howells 		afs_cache_permit(vnode, fc->key, vnode->cb_break, new_scb);
118873116df7SDavid Howells 	d_instantiate(new_dentry, inode);
1189d2ddc776SDavid Howells }
1190d2ddc776SDavid Howells 
1191b8359153SDavid Howells static void afs_prep_for_new_inode(struct afs_fs_cursor *fc,
1192b8359153SDavid Howells 				   struct afs_iget_data *iget_data)
1193b8359153SDavid Howells {
1194b8359153SDavid Howells 	iget_data->volume = fc->vnode->volume;
1195b8359153SDavid Howells 	iget_data->cb_v_break = fc->vnode->volume->cb_v_break;
1196b8359153SDavid Howells 	iget_data->cb_s_break = fc->cbi->server->cb_s_break;
1197b8359153SDavid Howells }
1198b8359153SDavid Howells 
1199d2ddc776SDavid Howells /*
12009dd0b82eSDavid Howells  * Note that a dentry got changed.  We need to set d_fsdata to the data version
12019dd0b82eSDavid Howells  * number derived from the result of the operation.  It doesn't matter if
12029dd0b82eSDavid Howells  * d_fsdata goes backwards as we'll just revalidate.
12039dd0b82eSDavid Howells  */
12049dd0b82eSDavid Howells static void afs_update_dentry_version(struct afs_fs_cursor *fc,
12059dd0b82eSDavid Howells 				      struct dentry *dentry,
12069dd0b82eSDavid Howells 				      struct afs_status_cb *scb)
12079dd0b82eSDavid Howells {
12089dd0b82eSDavid Howells 	if (fc->ac.error == 0)
12099dd0b82eSDavid Howells 		dentry->d_fsdata =
12109dd0b82eSDavid Howells 			(void *)(unsigned long)scb->status.data_version;
12119dd0b82eSDavid Howells }
12129dd0b82eSDavid Howells 
12139dd0b82eSDavid Howells /*
1214260a9803SDavid Howells  * create a directory on an AFS filesystem
1215260a9803SDavid Howells  */
121618bb1db3SAl Viro static int afs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
1217260a9803SDavid Howells {
1218b8359153SDavid Howells 	struct afs_iget_data iget_data;
1219a58823acSDavid Howells 	struct afs_status_cb *scb;
1220d2ddc776SDavid Howells 	struct afs_fs_cursor fc;
1221d2ddc776SDavid Howells 	struct afs_vnode *dvnode = AFS_FS_I(dir);
1222260a9803SDavid Howells 	struct key *key;
1223260a9803SDavid Howells 	int ret;
1224260a9803SDavid Howells 
1225d2ddc776SDavid Howells 	mode |= S_IFDIR;
1226260a9803SDavid Howells 
12273b6492dfSDavid Howells 	_enter("{%llx:%llu},{%pd},%ho",
1228a455589fSAl Viro 	       dvnode->fid.vid, dvnode->fid.vnode, dentry, mode);
1229260a9803SDavid Howells 
1230a58823acSDavid Howells 	ret = -ENOMEM;
1231a58823acSDavid Howells 	scb = kcalloc(2, sizeof(struct afs_status_cb), GFP_KERNEL);
1232a58823acSDavid Howells 	if (!scb)
1233a58823acSDavid Howells 		goto error;
1234a58823acSDavid Howells 
1235260a9803SDavid Howells 	key = afs_request_key(dvnode->volume->cell);
1236260a9803SDavid Howells 	if (IS_ERR(key)) {
1237260a9803SDavid Howells 		ret = PTR_ERR(key);
1238a58823acSDavid Howells 		goto error_scb;
1239260a9803SDavid Howells 	}
1240260a9803SDavid Howells 
1241d2ddc776SDavid Howells 	ret = -ERESTARTSYS;
124220b8391fSDavid Howells 	if (afs_begin_vnode_operation(&fc, dvnode, key, true)) {
1243a58823acSDavid Howells 		afs_dataversion_t data_version = dvnode->status.data_version + 1;
1244a58823acSDavid Howells 
1245d2ddc776SDavid Howells 		while (afs_select_fileserver(&fc)) {
124668251f0aSDavid Howells 			fc.cb_break = afs_calc_vnode_cb_break(dvnode);
1247b8359153SDavid Howells 			afs_prep_for_new_inode(&fc, &iget_data);
1248a58823acSDavid Howells 			afs_fs_create(&fc, dentry->d_name.name, mode,
1249b8359153SDavid Howells 				      &scb[0], &iget_data.fid, &scb[1]);
1250d2ddc776SDavid Howells 		}
1251d2ddc776SDavid Howells 
1252a58823acSDavid Howells 		afs_check_for_remote_deletion(&fc, dvnode);
1253a58823acSDavid Howells 		afs_vnode_commit_status(&fc, dvnode, fc.cb_break,
1254a58823acSDavid Howells 					&data_version, &scb[0]);
12559dd0b82eSDavid Howells 		afs_update_dentry_version(&fc, dentry, &scb[0]);
1256b8359153SDavid Howells 		afs_vnode_new_inode(&fc, dentry, &iget_data, &scb[1]);
1257d2ddc776SDavid Howells 		ret = afs_end_vnode_operation(&fc);
1258260a9803SDavid Howells 		if (ret < 0)
1259d2ddc776SDavid Howells 			goto error_key;
12604433b691SDavid Howells 	} else {
12614433b691SDavid Howells 		goto error_key;
1262260a9803SDavid Howells 	}
1263260a9803SDavid Howells 
126463a4681fSDavid Howells 	if (ret == 0 &&
126563a4681fSDavid Howells 	    test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1266b8359153SDavid Howells 		afs_edit_dir_add(dvnode, &dentry->d_name, &iget_data.fid,
126763a4681fSDavid Howells 				 afs_edit_dir_for_create);
126863a4681fSDavid Howells 
1269260a9803SDavid Howells 	key_put(key);
1270a58823acSDavid Howells 	kfree(scb);
1271260a9803SDavid Howells 	_leave(" = 0");
1272260a9803SDavid Howells 	return 0;
1273260a9803SDavid Howells 
1274d2ddc776SDavid Howells error_key:
1275260a9803SDavid Howells 	key_put(key);
1276a58823acSDavid Howells error_scb:
1277a58823acSDavid Howells 	kfree(scb);
1278260a9803SDavid Howells error:
1279260a9803SDavid Howells 	d_drop(dentry);
1280260a9803SDavid Howells 	_leave(" = %d", ret);
1281260a9803SDavid Howells 	return ret;
1282260a9803SDavid Howells }
1283260a9803SDavid Howells 
1284260a9803SDavid Howells /*
1285d2ddc776SDavid Howells  * Remove a subdir from a directory.
1286260a9803SDavid Howells  */
1287d2ddc776SDavid Howells static void afs_dir_remove_subdir(struct dentry *dentry)
1288260a9803SDavid Howells {
12892b0143b5SDavid Howells 	if (d_really_is_positive(dentry)) {
1290d2ddc776SDavid Howells 		struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
1291d2ddc776SDavid Howells 
1292260a9803SDavid Howells 		clear_nlink(&vnode->vfs_inode);
1293260a9803SDavid Howells 		set_bit(AFS_VNODE_DELETED, &vnode->flags);
1294c435ee34SDavid Howells 		clear_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
129563a4681fSDavid Howells 		clear_bit(AFS_VNODE_DIR_VALID, &vnode->flags);
1296260a9803SDavid Howells 	}
1297260a9803SDavid Howells }
1298260a9803SDavid Howells 
1299260a9803SDavid Howells /*
1300d2ddc776SDavid Howells  * remove a directory from an AFS filesystem
1301260a9803SDavid Howells  */
1302d2ddc776SDavid Howells static int afs_rmdir(struct inode *dir, struct dentry *dentry)
1303260a9803SDavid Howells {
1304a58823acSDavid Howells 	struct afs_status_cb *scb;
1305d2ddc776SDavid Howells 	struct afs_fs_cursor fc;
1306f58db83fSDavid Howells 	struct afs_vnode *dvnode = AFS_FS_I(dir), *vnode = NULL;
1307260a9803SDavid Howells 	struct key *key;
1308260a9803SDavid Howells 	int ret;
1309260a9803SDavid Howells 
13103b6492dfSDavid Howells 	_enter("{%llx:%llu},{%pd}",
1311a455589fSAl Viro 	       dvnode->fid.vid, dvnode->fid.vnode, dentry);
1312260a9803SDavid Howells 
1313a58823acSDavid Howells 	scb = kzalloc(sizeof(struct afs_status_cb), GFP_KERNEL);
1314a58823acSDavid Howells 	if (!scb)
1315a58823acSDavid Howells 		return -ENOMEM;
1316a58823acSDavid Howells 
1317260a9803SDavid Howells 	key = afs_request_key(dvnode->volume->cell);
1318260a9803SDavid Howells 	if (IS_ERR(key)) {
1319260a9803SDavid Howells 		ret = PTR_ERR(key);
1320260a9803SDavid Howells 		goto error;
1321260a9803SDavid Howells 	}
1322260a9803SDavid Howells 
1323f58db83fSDavid Howells 	/* Try to make sure we have a callback promise on the victim. */
1324f58db83fSDavid Howells 	if (d_really_is_positive(dentry)) {
1325f58db83fSDavid Howells 		vnode = AFS_FS_I(d_inode(dentry));
1326f58db83fSDavid Howells 		ret = afs_validate(vnode, key);
1327f58db83fSDavid Howells 		if (ret < 0)
1328f58db83fSDavid Howells 			goto error_key;
1329f58db83fSDavid Howells 	}
1330f58db83fSDavid Howells 
133179ddbfa5SDavid Howells 	if (vnode) {
133279ddbfa5SDavid Howells 		ret = down_write_killable(&vnode->rmdir_lock);
133379ddbfa5SDavid Howells 		if (ret < 0)
133479ddbfa5SDavid Howells 			goto error_key;
133579ddbfa5SDavid Howells 	}
133679ddbfa5SDavid Howells 
1337d2ddc776SDavid Howells 	ret = -ERESTARTSYS;
133820b8391fSDavid Howells 	if (afs_begin_vnode_operation(&fc, dvnode, key, true)) {
1339a58823acSDavid Howells 		afs_dataversion_t data_version = dvnode->status.data_version + 1;
1340a58823acSDavid Howells 
1341d2ddc776SDavid Howells 		while (afs_select_fileserver(&fc)) {
134268251f0aSDavid Howells 			fc.cb_break = afs_calc_vnode_cb_break(dvnode);
1343a58823acSDavid Howells 			afs_fs_remove(&fc, vnode, dentry->d_name.name, true, scb);
1344260a9803SDavid Howells 		}
1345260a9803SDavid Howells 
1346a58823acSDavid Howells 		afs_vnode_commit_status(&fc, dvnode, fc.cb_break,
1347a58823acSDavid Howells 					&data_version, scb);
13489dd0b82eSDavid Howells 		afs_update_dentry_version(&fc, dentry, scb);
1349d2ddc776SDavid Howells 		ret = afs_end_vnode_operation(&fc);
135063a4681fSDavid Howells 		if (ret == 0) {
1351d2ddc776SDavid Howells 			afs_dir_remove_subdir(dentry);
135263a4681fSDavid Howells 			if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
135363a4681fSDavid Howells 				afs_edit_dir_remove(dvnode, &dentry->d_name,
135463a4681fSDavid Howells 						    afs_edit_dir_for_rmdir);
135563a4681fSDavid Howells 		}
1356260a9803SDavid Howells 	}
1357260a9803SDavid Howells 
135879ddbfa5SDavid Howells 	if (vnode)
135979ddbfa5SDavid Howells 		up_write(&vnode->rmdir_lock);
1360f58db83fSDavid Howells error_key:
1361260a9803SDavid Howells 	key_put(key);
1362d2ddc776SDavid Howells error:
1363a58823acSDavid Howells 	kfree(scb);
1364d2ddc776SDavid Howells 	return ret;
1365d2ddc776SDavid Howells }
1366260a9803SDavid Howells 
1367d2ddc776SDavid Howells /*
1368d2ddc776SDavid Howells  * Remove a link to a file or symlink from a directory.
1369d2ddc776SDavid Howells  *
1370d2ddc776SDavid Howells  * If the file was not deleted due to excess hard links, the fileserver will
1371d2ddc776SDavid Howells  * break the callback promise on the file - if it had one - before it returns
1372d2ddc776SDavid Howells  * to us, and if it was deleted, it won't
1373d2ddc776SDavid Howells  *
1374d2ddc776SDavid Howells  * However, if we didn't have a callback promise outstanding, or it was
1375d2ddc776SDavid Howells  * outstanding on a different server, then it won't break it either...
1376d2ddc776SDavid Howells  */
1377a38a7558SDavid Howells static int afs_dir_remove_link(struct afs_vnode *dvnode, struct dentry *dentry,
1378a38a7558SDavid Howells 			       struct key *key)
1379d2ddc776SDavid Howells {
1380d2ddc776SDavid Howells 	int ret = 0;
1381d2ddc776SDavid Howells 
1382d2ddc776SDavid Howells 	if (d_really_is_positive(dentry)) {
1383d2ddc776SDavid Howells 		struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
1384d2ddc776SDavid Howells 
138530062bd1SDavid Howells 		if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
138630062bd1SDavid Howells 			/* Already done */
1387a38a7558SDavid Howells 		} else if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags)) {
1388a38a7558SDavid Howells 			write_seqlock(&vnode->cb_lock);
1389440fbc3aSDavid Howells 			drop_nlink(&vnode->vfs_inode);
1390440fbc3aSDavid Howells 			if (vnode->vfs_inode.i_nlink == 0) {
1391440fbc3aSDavid Howells 				set_bit(AFS_VNODE_DELETED, &vnode->flags);
1392051d2525SDavid Howells 				__afs_break_callback(vnode, afs_cb_break_for_unlink);
1393440fbc3aSDavid Howells 			}
1394a38a7558SDavid Howells 			write_sequnlock(&vnode->cb_lock);
1395440fbc3aSDavid Howells 			ret = 0;
1396440fbc3aSDavid Howells 		} else {
1397051d2525SDavid Howells 			afs_break_callback(vnode, afs_cb_break_for_unlink);
1398440fbc3aSDavid Howells 
1399d2ddc776SDavid Howells 			if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
1400d2ddc776SDavid Howells 				kdebug("AFS_VNODE_DELETED");
1401d2ddc776SDavid Howells 
1402d2ddc776SDavid Howells 			ret = afs_validate(vnode, key);
1403d2ddc776SDavid Howells 			if (ret == -ESTALE)
1404d2ddc776SDavid Howells 				ret = 0;
1405440fbc3aSDavid Howells 		}
1406d2ddc776SDavid Howells 		_debug("nlink %d [val %d]", vnode->vfs_inode.i_nlink, ret);
1407d2ddc776SDavid Howells 	}
1408d2ddc776SDavid Howells 
1409d2ddc776SDavid Howells 	return ret;
1410d2ddc776SDavid Howells }
1411d2ddc776SDavid Howells 
1412d2ddc776SDavid Howells /*
1413d2ddc776SDavid Howells  * Remove a file or symlink from an AFS filesystem.
1414d2ddc776SDavid Howells  */
1415d2ddc776SDavid Howells static int afs_unlink(struct inode *dir, struct dentry *dentry)
1416d2ddc776SDavid Howells {
1417d2ddc776SDavid Howells 	struct afs_fs_cursor fc;
1418a58823acSDavid Howells 	struct afs_status_cb *scb;
1419fa59f52fSDavid Howells 	struct afs_vnode *dvnode = AFS_FS_I(dir);
1420fa59f52fSDavid Howells 	struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
1421d2ddc776SDavid Howells 	struct key *key;
142279ddbfa5SDavid Howells 	bool need_rehash = false;
1423d2ddc776SDavid Howells 	int ret;
1424d2ddc776SDavid Howells 
14253b6492dfSDavid Howells 	_enter("{%llx:%llu},{%pd}",
1426d2ddc776SDavid Howells 	       dvnode->fid.vid, dvnode->fid.vnode, dentry);
1427d2ddc776SDavid Howells 
1428d2ddc776SDavid Howells 	if (dentry->d_name.len >= AFSNAMEMAX)
1429d2ddc776SDavid Howells 		return -ENAMETOOLONG;
1430d2ddc776SDavid Howells 
1431a58823acSDavid Howells 	ret = -ENOMEM;
1432a58823acSDavid Howells 	scb = kcalloc(2, sizeof(struct afs_status_cb), GFP_KERNEL);
1433a58823acSDavid Howells 	if (!scb)
1434a58823acSDavid Howells 		goto error;
1435a58823acSDavid Howells 
1436d2ddc776SDavid Howells 	key = afs_request_key(dvnode->volume->cell);
1437d2ddc776SDavid Howells 	if (IS_ERR(key)) {
1438d2ddc776SDavid Howells 		ret = PTR_ERR(key);
1439a58823acSDavid Howells 		goto error_scb;
1440d2ddc776SDavid Howells 	}
1441d2ddc776SDavid Howells 
1442d2ddc776SDavid Howells 	/* Try to make sure we have a callback promise on the victim. */
1443d2ddc776SDavid Howells 	ret = afs_validate(vnode, key);
1444d2ddc776SDavid Howells 	if (ret < 0)
1445d2ddc776SDavid Howells 		goto error_key;
1446d2ddc776SDavid Howells 
144779ddbfa5SDavid Howells 	spin_lock(&dentry->d_lock);
1448fa59f52fSDavid Howells 	if (d_count(dentry) > 1) {
144979ddbfa5SDavid Howells 		spin_unlock(&dentry->d_lock);
145079ddbfa5SDavid Howells 		/* Start asynchronous writeout of the inode */
145179ddbfa5SDavid Howells 		write_inode_now(d_inode(dentry), 0);
145279ddbfa5SDavid Howells 		ret = afs_sillyrename(dvnode, vnode, dentry, key);
145379ddbfa5SDavid Howells 		goto error_key;
145479ddbfa5SDavid Howells 	}
145579ddbfa5SDavid Howells 	if (!d_unhashed(dentry)) {
145679ddbfa5SDavid Howells 		/* Prevent a race with RCU lookup. */
145779ddbfa5SDavid Howells 		__d_drop(dentry);
145879ddbfa5SDavid Howells 		need_rehash = true;
145979ddbfa5SDavid Howells 	}
146079ddbfa5SDavid Howells 	spin_unlock(&dentry->d_lock);
146179ddbfa5SDavid Howells 
1462d2ddc776SDavid Howells 	ret = -ERESTARTSYS;
146320b8391fSDavid Howells 	if (afs_begin_vnode_operation(&fc, dvnode, key, true)) {
1464a58823acSDavid Howells 		afs_dataversion_t data_version = dvnode->status.data_version + 1;
1465a38a7558SDavid Howells 		afs_dataversion_t data_version_2 = vnode->status.data_version;
1466a58823acSDavid Howells 
1467d2ddc776SDavid Howells 		while (afs_select_fileserver(&fc)) {
146868251f0aSDavid Howells 			fc.cb_break = afs_calc_vnode_cb_break(dvnode);
1469a38a7558SDavid Howells 			fc.cb_break_2 = afs_calc_vnode_cb_break(vnode);
147030062bd1SDavid Howells 
147130062bd1SDavid Howells 			if (test_bit(AFS_SERVER_FL_IS_YFS, &fc.cbi->server->flags) &&
147230062bd1SDavid Howells 			    !test_bit(AFS_SERVER_FL_NO_RM2, &fc.cbi->server->flags)) {
147330062bd1SDavid Howells 				yfs_fs_remove_file2(&fc, vnode, dentry->d_name.name,
1474a58823acSDavid Howells 						    &scb[0], &scb[1]);
147530062bd1SDavid Howells 				if (fc.ac.error != -ECONNABORTED ||
147630062bd1SDavid Howells 				    fc.ac.abort_code != RXGEN_OPCODE)
147730062bd1SDavid Howells 					continue;
147830062bd1SDavid Howells 				set_bit(AFS_SERVER_FL_NO_RM2, &fc.cbi->server->flags);
147930062bd1SDavid Howells 			}
148030062bd1SDavid Howells 
1481a58823acSDavid Howells 			afs_fs_remove(&fc, vnode, dentry->d_name.name, false, &scb[0]);
1482d2ddc776SDavid Howells 		}
1483d2ddc776SDavid Howells 
1484a58823acSDavid Howells 		afs_vnode_commit_status(&fc, dvnode, fc.cb_break,
1485a58823acSDavid Howells 					&data_version, &scb[0]);
1486a38a7558SDavid Howells 		afs_vnode_commit_status(&fc, vnode, fc.cb_break_2,
1487a38a7558SDavid Howells 					&data_version_2, &scb[1]);
14889dd0b82eSDavid Howells 		afs_update_dentry_version(&fc, dentry, &scb[0]);
1489d2ddc776SDavid Howells 		ret = afs_end_vnode_operation(&fc);
1490a38a7558SDavid Howells 		if (ret == 0 && !(scb[1].have_status || scb[1].have_error))
1491a38a7558SDavid Howells 			ret = afs_dir_remove_link(dvnode, dentry, key);
149263a4681fSDavid Howells 		if (ret == 0 &&
149363a4681fSDavid Howells 		    test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
149463a4681fSDavid Howells 			afs_edit_dir_remove(dvnode, &dentry->d_name,
149563a4681fSDavid Howells 					    afs_edit_dir_for_unlink);
1496d2ddc776SDavid Howells 	}
1497d2ddc776SDavid Howells 
149879ddbfa5SDavid Howells 	if (need_rehash && ret < 0 && ret != -ENOENT)
149979ddbfa5SDavid Howells 		d_rehash(dentry);
150079ddbfa5SDavid Howells 
1501d2ddc776SDavid Howells error_key:
1502260a9803SDavid Howells 	key_put(key);
1503a58823acSDavid Howells error_scb:
1504a58823acSDavid Howells 	kfree(scb);
1505260a9803SDavid Howells error:
1506260a9803SDavid Howells 	_leave(" = %d", ret);
1507260a9803SDavid Howells 	return ret;
1508260a9803SDavid Howells }
1509260a9803SDavid Howells 
1510260a9803SDavid Howells /*
1511260a9803SDavid Howells  * create a regular file on an AFS filesystem
1512260a9803SDavid Howells  */
15134acdaf27SAl Viro static int afs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
1514ebfc3b49SAl Viro 		      bool excl)
1515260a9803SDavid Howells {
1516b8359153SDavid Howells 	struct afs_iget_data iget_data;
1517d2ddc776SDavid Howells 	struct afs_fs_cursor fc;
1518a58823acSDavid Howells 	struct afs_status_cb *scb;
151943dd388bSColin Ian King 	struct afs_vnode *dvnode = AFS_FS_I(dir);
1520260a9803SDavid Howells 	struct key *key;
1521260a9803SDavid Howells 	int ret;
1522260a9803SDavid Howells 
1523d2ddc776SDavid Howells 	mode |= S_IFREG;
1524260a9803SDavid Howells 
15253b6492dfSDavid Howells 	_enter("{%llx:%llu},{%pd},%ho,",
1526a455589fSAl Viro 	       dvnode->fid.vid, dvnode->fid.vnode, dentry, mode);
1527260a9803SDavid Howells 
1528d2ddc776SDavid Howells 	ret = -ENAMETOOLONG;
1529d2ddc776SDavid Howells 	if (dentry->d_name.len >= AFSNAMEMAX)
1530d2ddc776SDavid Howells 		goto error;
1531d2ddc776SDavid Howells 
1532260a9803SDavid Howells 	key = afs_request_key(dvnode->volume->cell);
1533260a9803SDavid Howells 	if (IS_ERR(key)) {
1534260a9803SDavid Howells 		ret = PTR_ERR(key);
1535260a9803SDavid Howells 		goto error;
1536260a9803SDavid Howells 	}
1537260a9803SDavid Howells 
1538a58823acSDavid Howells 	ret = -ENOMEM;
1539a58823acSDavid Howells 	scb = kcalloc(2, sizeof(struct afs_status_cb), GFP_KERNEL);
1540a58823acSDavid Howells 	if (!scb)
1541a58823acSDavid Howells 		goto error_scb;
1542a58823acSDavid Howells 
1543d2ddc776SDavid Howells 	ret = -ERESTARTSYS;
154420b8391fSDavid Howells 	if (afs_begin_vnode_operation(&fc, dvnode, key, true)) {
1545a58823acSDavid Howells 		afs_dataversion_t data_version = dvnode->status.data_version + 1;
1546a58823acSDavid Howells 
1547d2ddc776SDavid Howells 		while (afs_select_fileserver(&fc)) {
154868251f0aSDavid Howells 			fc.cb_break = afs_calc_vnode_cb_break(dvnode);
1549b8359153SDavid Howells 			afs_prep_for_new_inode(&fc, &iget_data);
1550a58823acSDavid Howells 			afs_fs_create(&fc, dentry->d_name.name, mode,
1551b8359153SDavid Howells 				      &scb[0], &iget_data.fid, &scb[1]);
1552d2ddc776SDavid Howells 		}
1553d2ddc776SDavid Howells 
1554a58823acSDavid Howells 		afs_check_for_remote_deletion(&fc, dvnode);
1555a58823acSDavid Howells 		afs_vnode_commit_status(&fc, dvnode, fc.cb_break,
1556a58823acSDavid Howells 					&data_version, &scb[0]);
15579dd0b82eSDavid Howells 		afs_update_dentry_version(&fc, dentry, &scb[0]);
1558b8359153SDavid Howells 		afs_vnode_new_inode(&fc, dentry, &iget_data, &scb[1]);
1559d2ddc776SDavid Howells 		ret = afs_end_vnode_operation(&fc);
1560260a9803SDavid Howells 		if (ret < 0)
1561d2ddc776SDavid Howells 			goto error_key;
15624433b691SDavid Howells 	} else {
15634433b691SDavid Howells 		goto error_key;
1564260a9803SDavid Howells 	}
1565260a9803SDavid Howells 
156663a4681fSDavid Howells 	if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1567b8359153SDavid Howells 		afs_edit_dir_add(dvnode, &dentry->d_name, &iget_data.fid,
156863a4681fSDavid Howells 				 afs_edit_dir_for_create);
156963a4681fSDavid Howells 
1570a58823acSDavid Howells 	kfree(scb);
1571260a9803SDavid Howells 	key_put(key);
1572260a9803SDavid Howells 	_leave(" = 0");
1573260a9803SDavid Howells 	return 0;
1574260a9803SDavid Howells 
1575a58823acSDavid Howells error_scb:
1576a58823acSDavid Howells 	kfree(scb);
1577d2ddc776SDavid Howells error_key:
1578260a9803SDavid Howells 	key_put(key);
1579260a9803SDavid Howells error:
1580260a9803SDavid Howells 	d_drop(dentry);
1581260a9803SDavid Howells 	_leave(" = %d", ret);
1582260a9803SDavid Howells 	return ret;
1583260a9803SDavid Howells }
1584260a9803SDavid Howells 
1585260a9803SDavid Howells /*
1586260a9803SDavid Howells  * create a hard link between files in an AFS filesystem
1587260a9803SDavid Howells  */
1588260a9803SDavid Howells static int afs_link(struct dentry *from, struct inode *dir,
1589260a9803SDavid Howells 		    struct dentry *dentry)
1590260a9803SDavid Howells {
1591d2ddc776SDavid Howells 	struct afs_fs_cursor fc;
1592a58823acSDavid Howells 	struct afs_status_cb *scb;
1593a58823acSDavid Howells 	struct afs_vnode *dvnode = AFS_FS_I(dir);
1594a58823acSDavid Howells 	struct afs_vnode *vnode = AFS_FS_I(d_inode(from));
1595260a9803SDavid Howells 	struct key *key;
1596260a9803SDavid Howells 	int ret;
1597260a9803SDavid Howells 
15983b6492dfSDavid Howells 	_enter("{%llx:%llu},{%llx:%llu},{%pd}",
1599260a9803SDavid Howells 	       vnode->fid.vid, vnode->fid.vnode,
1600260a9803SDavid Howells 	       dvnode->fid.vid, dvnode->fid.vnode,
1601a455589fSAl Viro 	       dentry);
1602260a9803SDavid Howells 
1603d2ddc776SDavid Howells 	ret = -ENAMETOOLONG;
1604d2ddc776SDavid Howells 	if (dentry->d_name.len >= AFSNAMEMAX)
1605d2ddc776SDavid Howells 		goto error;
1606d2ddc776SDavid Howells 
1607a58823acSDavid Howells 	ret = -ENOMEM;
1608a58823acSDavid Howells 	scb = kcalloc(2, sizeof(struct afs_status_cb), GFP_KERNEL);
1609a58823acSDavid Howells 	if (!scb)
1610a58823acSDavid Howells 		goto error;
1611a58823acSDavid Howells 
1612260a9803SDavid Howells 	key = afs_request_key(dvnode->volume->cell);
1613260a9803SDavid Howells 	if (IS_ERR(key)) {
1614260a9803SDavid Howells 		ret = PTR_ERR(key);
1615a58823acSDavid Howells 		goto error_scb;
1616260a9803SDavid Howells 	}
1617260a9803SDavid Howells 
1618d2ddc776SDavid Howells 	ret = -ERESTARTSYS;
161920b8391fSDavid Howells 	if (afs_begin_vnode_operation(&fc, dvnode, key, true)) {
1620a58823acSDavid Howells 		afs_dataversion_t data_version = dvnode->status.data_version + 1;
1621a58823acSDavid Howells 
1622d2ddc776SDavid Howells 		if (mutex_lock_interruptible_nested(&vnode->io_lock, 1) < 0) {
1623d2ddc776SDavid Howells 			afs_end_vnode_operation(&fc);
1624bc1527dcSDavid Howells 			goto error_key;
1625d2ddc776SDavid Howells 		}
1626260a9803SDavid Howells 
1627d2ddc776SDavid Howells 		while (afs_select_fileserver(&fc)) {
162868251f0aSDavid Howells 			fc.cb_break = afs_calc_vnode_cb_break(dvnode);
162968251f0aSDavid Howells 			fc.cb_break_2 = afs_calc_vnode_cb_break(vnode);
1630a58823acSDavid Howells 			afs_fs_link(&fc, vnode, dentry->d_name.name,
1631a58823acSDavid Howells 				    &scb[0], &scb[1]);
1632d2ddc776SDavid Howells 		}
1633d2ddc776SDavid Howells 
1634a58823acSDavid Howells 		afs_vnode_commit_status(&fc, dvnode, fc.cb_break,
1635a58823acSDavid Howells 					&data_version, &scb[0]);
1636a58823acSDavid Howells 		afs_vnode_commit_status(&fc, vnode, fc.cb_break_2,
1637a58823acSDavid Howells 					NULL, &scb[1]);
16387de9c6eeSAl Viro 		ihold(&vnode->vfs_inode);
16399dd0b82eSDavid Howells 		afs_update_dentry_version(&fc, dentry, &scb[0]);
1640260a9803SDavid Howells 		d_instantiate(dentry, &vnode->vfs_inode);
1641d2ddc776SDavid Howells 
1642d2ddc776SDavid Howells 		mutex_unlock(&vnode->io_lock);
1643d2ddc776SDavid Howells 		ret = afs_end_vnode_operation(&fc);
1644d2ddc776SDavid Howells 		if (ret < 0)
1645d2ddc776SDavid Howells 			goto error_key;
16464433b691SDavid Howells 	} else {
16474433b691SDavid Howells 		goto error_key;
1648d2ddc776SDavid Howells 	}
1649d2ddc776SDavid Howells 
165063a4681fSDavid Howells 	if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
165163a4681fSDavid Howells 		afs_edit_dir_add(dvnode, &dentry->d_name, &vnode->fid,
165263a4681fSDavid Howells 				 afs_edit_dir_for_link);
165363a4681fSDavid Howells 
1654260a9803SDavid Howells 	key_put(key);
1655a58823acSDavid Howells 	kfree(scb);
1656260a9803SDavid Howells 	_leave(" = 0");
1657260a9803SDavid Howells 	return 0;
1658260a9803SDavid Howells 
1659d2ddc776SDavid Howells error_key:
1660260a9803SDavid Howells 	key_put(key);
1661a58823acSDavid Howells error_scb:
1662a58823acSDavid Howells 	kfree(scb);
1663260a9803SDavid Howells error:
1664260a9803SDavid Howells 	d_drop(dentry);
1665260a9803SDavid Howells 	_leave(" = %d", ret);
1666260a9803SDavid Howells 	return ret;
1667260a9803SDavid Howells }
1668260a9803SDavid Howells 
1669260a9803SDavid Howells /*
1670260a9803SDavid Howells  * create a symlink in an AFS filesystem
1671260a9803SDavid Howells  */
1672260a9803SDavid Howells static int afs_symlink(struct inode *dir, struct dentry *dentry,
1673260a9803SDavid Howells 		       const char *content)
1674260a9803SDavid Howells {
1675b8359153SDavid Howells 	struct afs_iget_data iget_data;
1676d2ddc776SDavid Howells 	struct afs_fs_cursor fc;
1677a58823acSDavid Howells 	struct afs_status_cb *scb;
1678d2ddc776SDavid Howells 	struct afs_vnode *dvnode = AFS_FS_I(dir);
1679260a9803SDavid Howells 	struct key *key;
1680260a9803SDavid Howells 	int ret;
1681260a9803SDavid Howells 
16823b6492dfSDavid Howells 	_enter("{%llx:%llu},{%pd},%s",
1683a455589fSAl Viro 	       dvnode->fid.vid, dvnode->fid.vnode, dentry,
1684260a9803SDavid Howells 	       content);
1685260a9803SDavid Howells 
1686d2ddc776SDavid Howells 	ret = -ENAMETOOLONG;
1687d2ddc776SDavid Howells 	if (dentry->d_name.len >= AFSNAMEMAX)
1688d2ddc776SDavid Howells 		goto error;
1689d2ddc776SDavid Howells 
1690260a9803SDavid Howells 	ret = -EINVAL;
169145222b9eSDavid Howells 	if (strlen(content) >= AFSPATHMAX)
1692260a9803SDavid Howells 		goto error;
1693260a9803SDavid Howells 
1694a58823acSDavid Howells 	ret = -ENOMEM;
1695a58823acSDavid Howells 	scb = kcalloc(2, sizeof(struct afs_status_cb), GFP_KERNEL);
1696a58823acSDavid Howells 	if (!scb)
1697a58823acSDavid Howells 		goto error;
1698a58823acSDavid Howells 
1699260a9803SDavid Howells 	key = afs_request_key(dvnode->volume->cell);
1700260a9803SDavid Howells 	if (IS_ERR(key)) {
1701260a9803SDavid Howells 		ret = PTR_ERR(key);
1702a58823acSDavid Howells 		goto error_scb;
1703260a9803SDavid Howells 	}
1704260a9803SDavid Howells 
1705d2ddc776SDavid Howells 	ret = -ERESTARTSYS;
170620b8391fSDavid Howells 	if (afs_begin_vnode_operation(&fc, dvnode, key, true)) {
1707a58823acSDavid Howells 		afs_dataversion_t data_version = dvnode->status.data_version + 1;
1708a58823acSDavid Howells 
1709d2ddc776SDavid Howells 		while (afs_select_fileserver(&fc)) {
171068251f0aSDavid Howells 			fc.cb_break = afs_calc_vnode_cb_break(dvnode);
1711b8359153SDavid Howells 			afs_prep_for_new_inode(&fc, &iget_data);
1712a58823acSDavid Howells 			afs_fs_symlink(&fc, dentry->d_name.name, content,
1713b8359153SDavid Howells 				       &scb[0], &iget_data.fid, &scb[1]);
1714d2ddc776SDavid Howells 		}
1715d2ddc776SDavid Howells 
1716a58823acSDavid Howells 		afs_check_for_remote_deletion(&fc, dvnode);
1717a58823acSDavid Howells 		afs_vnode_commit_status(&fc, dvnode, fc.cb_break,
1718a58823acSDavid Howells 					&data_version, &scb[0]);
17199dd0b82eSDavid Howells 		afs_update_dentry_version(&fc, dentry, &scb[0]);
1720b8359153SDavid Howells 		afs_vnode_new_inode(&fc, dentry, &iget_data, &scb[1]);
1721d2ddc776SDavid Howells 		ret = afs_end_vnode_operation(&fc);
1722260a9803SDavid Howells 		if (ret < 0)
1723d2ddc776SDavid Howells 			goto error_key;
17244433b691SDavid Howells 	} else {
17254433b691SDavid Howells 		goto error_key;
1726260a9803SDavid Howells 	}
1727260a9803SDavid Howells 
172863a4681fSDavid Howells 	if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1729b8359153SDavid Howells 		afs_edit_dir_add(dvnode, &dentry->d_name, &iget_data.fid,
173063a4681fSDavid Howells 				 afs_edit_dir_for_symlink);
173163a4681fSDavid Howells 
1732260a9803SDavid Howells 	key_put(key);
1733a58823acSDavid Howells 	kfree(scb);
1734260a9803SDavid Howells 	_leave(" = 0");
1735260a9803SDavid Howells 	return 0;
1736260a9803SDavid Howells 
1737d2ddc776SDavid Howells error_key:
1738260a9803SDavid Howells 	key_put(key);
1739a58823acSDavid Howells error_scb:
1740a58823acSDavid Howells 	kfree(scb);
1741260a9803SDavid Howells error:
1742260a9803SDavid Howells 	d_drop(dentry);
1743260a9803SDavid Howells 	_leave(" = %d", ret);
1744260a9803SDavid Howells 	return ret;
1745260a9803SDavid Howells }
1746260a9803SDavid Howells 
1747260a9803SDavid Howells /*
1748260a9803SDavid Howells  * rename a file in an AFS filesystem and/or move it between directories
1749260a9803SDavid Howells  */
1750260a9803SDavid Howells static int afs_rename(struct inode *old_dir, struct dentry *old_dentry,
17511cd66c93SMiklos Szeredi 		      struct inode *new_dir, struct dentry *new_dentry,
17521cd66c93SMiklos Szeredi 		      unsigned int flags)
1753260a9803SDavid Howells {
1754d2ddc776SDavid Howells 	struct afs_fs_cursor fc;
1755a58823acSDavid Howells 	struct afs_status_cb *scb;
1756260a9803SDavid Howells 	struct afs_vnode *orig_dvnode, *new_dvnode, *vnode;
175779ddbfa5SDavid Howells 	struct dentry *tmp = NULL, *rehash = NULL;
175879ddbfa5SDavid Howells 	struct inode *new_inode;
1759260a9803SDavid Howells 	struct key *key;
176063a4681fSDavid Howells 	bool new_negative = d_is_negative(new_dentry);
1761260a9803SDavid Howells 	int ret;
1762260a9803SDavid Howells 
17631cd66c93SMiklos Szeredi 	if (flags)
17641cd66c93SMiklos Szeredi 		return -EINVAL;
17651cd66c93SMiklos Szeredi 
176679ddbfa5SDavid Howells 	/* Don't allow silly-rename files be moved around. */
176779ddbfa5SDavid Howells 	if (old_dentry->d_flags & DCACHE_NFSFS_RENAMED)
176879ddbfa5SDavid Howells 		return -EINVAL;
176979ddbfa5SDavid Howells 
17702b0143b5SDavid Howells 	vnode = AFS_FS_I(d_inode(old_dentry));
1771260a9803SDavid Howells 	orig_dvnode = AFS_FS_I(old_dir);
1772260a9803SDavid Howells 	new_dvnode = AFS_FS_I(new_dir);
1773260a9803SDavid Howells 
17743b6492dfSDavid Howells 	_enter("{%llx:%llu},{%llx:%llu},{%llx:%llu},{%pd}",
1775260a9803SDavid Howells 	       orig_dvnode->fid.vid, orig_dvnode->fid.vnode,
1776260a9803SDavid Howells 	       vnode->fid.vid, vnode->fid.vnode,
1777260a9803SDavid Howells 	       new_dvnode->fid.vid, new_dvnode->fid.vnode,
1778a455589fSAl Viro 	       new_dentry);
1779260a9803SDavid Howells 
1780a58823acSDavid Howells 	ret = -ENOMEM;
1781a58823acSDavid Howells 	scb = kcalloc(2, sizeof(struct afs_status_cb), GFP_KERNEL);
1782a58823acSDavid Howells 	if (!scb)
1783a58823acSDavid Howells 		goto error;
1784a58823acSDavid Howells 
1785260a9803SDavid Howells 	key = afs_request_key(orig_dvnode->volume->cell);
1786260a9803SDavid Howells 	if (IS_ERR(key)) {
1787260a9803SDavid Howells 		ret = PTR_ERR(key);
1788a58823acSDavid Howells 		goto error_scb;
1789260a9803SDavid Howells 	}
1790260a9803SDavid Howells 
179179ddbfa5SDavid Howells 	/* For non-directories, check whether the target is busy and if so,
179279ddbfa5SDavid Howells 	 * make a copy of the dentry and then do a silly-rename.  If the
179379ddbfa5SDavid Howells 	 * silly-rename succeeds, the copied dentry is hashed and becomes the
179479ddbfa5SDavid Howells 	 * new target.
179579ddbfa5SDavid Howells 	 */
179679ddbfa5SDavid Howells 	if (d_is_positive(new_dentry) && !d_is_dir(new_dentry)) {
179779ddbfa5SDavid Howells 		/* To prevent any new references to the target during the
179879ddbfa5SDavid Howells 		 * rename, we unhash the dentry in advance.
179979ddbfa5SDavid Howells 		 */
180079ddbfa5SDavid Howells 		if (!d_unhashed(new_dentry)) {
180179ddbfa5SDavid Howells 			d_drop(new_dentry);
180279ddbfa5SDavid Howells 			rehash = new_dentry;
180379ddbfa5SDavid Howells 		}
180479ddbfa5SDavid Howells 
180579ddbfa5SDavid Howells 		if (d_count(new_dentry) > 2) {
180679ddbfa5SDavid Howells 			/* copy the target dentry's name */
180779ddbfa5SDavid Howells 			ret = -ENOMEM;
180879ddbfa5SDavid Howells 			tmp = d_alloc(new_dentry->d_parent,
180979ddbfa5SDavid Howells 				      &new_dentry->d_name);
181079ddbfa5SDavid Howells 			if (!tmp)
181179ddbfa5SDavid Howells 				goto error_rehash;
181279ddbfa5SDavid Howells 
181379ddbfa5SDavid Howells 			ret = afs_sillyrename(new_dvnode,
181479ddbfa5SDavid Howells 					      AFS_FS_I(d_inode(new_dentry)),
181579ddbfa5SDavid Howells 					      new_dentry, key);
181679ddbfa5SDavid Howells 			if (ret)
181779ddbfa5SDavid Howells 				goto error_rehash;
181879ddbfa5SDavid Howells 
181979ddbfa5SDavid Howells 			new_dentry = tmp;
182079ddbfa5SDavid Howells 			rehash = NULL;
182179ddbfa5SDavid Howells 			new_negative = true;
182279ddbfa5SDavid Howells 		}
182379ddbfa5SDavid Howells 	}
182479ddbfa5SDavid Howells 
18259dd0b82eSDavid Howells 	/* This bit is potentially nasty as there's a potential race with
18269dd0b82eSDavid Howells 	 * afs_d_revalidate{,_rcu}().  We have to change d_fsdata on the dentry
18279dd0b82eSDavid Howells 	 * to reflect it's new parent's new data_version after the op, but
18289dd0b82eSDavid Howells 	 * d_revalidate may see old_dentry between the op having taken place
18299dd0b82eSDavid Howells 	 * and the version being updated.
18309dd0b82eSDavid Howells 	 *
18319dd0b82eSDavid Howells 	 * So drop the old_dentry for now to make other threads go through
18329dd0b82eSDavid Howells 	 * lookup instead - which we hold a lock against.
18339dd0b82eSDavid Howells 	 */
18349dd0b82eSDavid Howells 	d_drop(old_dentry);
18359dd0b82eSDavid Howells 
1836d2ddc776SDavid Howells 	ret = -ERESTARTSYS;
183720b8391fSDavid Howells 	if (afs_begin_vnode_operation(&fc, orig_dvnode, key, true)) {
1838a58823acSDavid Howells 		afs_dataversion_t orig_data_version;
1839a58823acSDavid Howells 		afs_dataversion_t new_data_version;
1840a58823acSDavid Howells 		struct afs_status_cb *new_scb = &scb[1];
1841a58823acSDavid Howells 
1842a58823acSDavid Howells 		orig_data_version = orig_dvnode->status.data_version + 1;
1843a58823acSDavid Howells 
1844d2ddc776SDavid Howells 		if (orig_dvnode != new_dvnode) {
1845d2ddc776SDavid Howells 			if (mutex_lock_interruptible_nested(&new_dvnode->io_lock, 1) < 0) {
1846d2ddc776SDavid Howells 				afs_end_vnode_operation(&fc);
18479dd0b82eSDavid Howells 				goto error_rehash_old;
1848d2ddc776SDavid Howells 			}
184937c0bbb3SDavid Howells 			new_data_version = new_dvnode->status.data_version + 1;
1850a58823acSDavid Howells 		} else {
1851a58823acSDavid Howells 			new_data_version = orig_data_version;
1852a58823acSDavid Howells 			new_scb = &scb[0];
1853d2ddc776SDavid Howells 		}
1854a58823acSDavid Howells 
1855d2ddc776SDavid Howells 		while (afs_select_fileserver(&fc)) {
185668251f0aSDavid Howells 			fc.cb_break = afs_calc_vnode_cb_break(orig_dvnode);
185768251f0aSDavid Howells 			fc.cb_break_2 = afs_calc_vnode_cb_break(new_dvnode);
1858d2ddc776SDavid Howells 			afs_fs_rename(&fc, old_dentry->d_name.name,
185963a4681fSDavid Howells 				      new_dvnode, new_dentry->d_name.name,
1860a58823acSDavid Howells 				      &scb[0], new_scb);
1861d2ddc776SDavid Howells 		}
1862d2ddc776SDavid Howells 
1863a58823acSDavid Howells 		afs_vnode_commit_status(&fc, orig_dvnode, fc.cb_break,
1864a58823acSDavid Howells 					&orig_data_version, &scb[0]);
1865a58823acSDavid Howells 		if (new_dvnode != orig_dvnode) {
1866a58823acSDavid Howells 			afs_vnode_commit_status(&fc, new_dvnode, fc.cb_break_2,
1867a58823acSDavid Howells 						&new_data_version, &scb[1]);
1868d2ddc776SDavid Howells 			mutex_unlock(&new_dvnode->io_lock);
1869a58823acSDavid Howells 		}
1870d2ddc776SDavid Howells 		ret = afs_end_vnode_operation(&fc);
1871260a9803SDavid Howells 		if (ret < 0)
18729dd0b82eSDavid Howells 			goto error_rehash_old;
1873d2ddc776SDavid Howells 	}
1874d2ddc776SDavid Howells 
187563a4681fSDavid Howells 	if (ret == 0) {
187679ddbfa5SDavid Howells 		if (rehash)
187779ddbfa5SDavid Howells 			d_rehash(rehash);
187863a4681fSDavid Howells 		if (test_bit(AFS_VNODE_DIR_VALID, &orig_dvnode->flags))
187963a4681fSDavid Howells 		    afs_edit_dir_remove(orig_dvnode, &old_dentry->d_name,
188079ddbfa5SDavid Howells 					afs_edit_dir_for_rename_0);
188163a4681fSDavid Howells 
188263a4681fSDavid Howells 		if (!new_negative &&
188363a4681fSDavid Howells 		    test_bit(AFS_VNODE_DIR_VALID, &new_dvnode->flags))
188463a4681fSDavid Howells 			afs_edit_dir_remove(new_dvnode, &new_dentry->d_name,
188579ddbfa5SDavid Howells 					    afs_edit_dir_for_rename_1);
188663a4681fSDavid Howells 
188763a4681fSDavid Howells 		if (test_bit(AFS_VNODE_DIR_VALID, &new_dvnode->flags))
188863a4681fSDavid Howells 			afs_edit_dir_add(new_dvnode, &new_dentry->d_name,
188979ddbfa5SDavid Howells 					 &vnode->fid, afs_edit_dir_for_rename_2);
189079ddbfa5SDavid Howells 
189179ddbfa5SDavid Howells 		new_inode = d_inode(new_dentry);
189279ddbfa5SDavid Howells 		if (new_inode) {
189379ddbfa5SDavid Howells 			spin_lock(&new_inode->i_lock);
189479ddbfa5SDavid Howells 			if (new_inode->i_nlink > 0)
189579ddbfa5SDavid Howells 				drop_nlink(new_inode);
189679ddbfa5SDavid Howells 			spin_unlock(&new_inode->i_lock);
189779ddbfa5SDavid Howells 		}
18989dd0b82eSDavid Howells 
18999dd0b82eSDavid Howells 		/* Now we can update d_fsdata on the dentries to reflect their
19009dd0b82eSDavid Howells 		 * new parent's data_version.
19019dd0b82eSDavid Howells 		 *
19029dd0b82eSDavid Howells 		 * Note that if we ever implement RENAME_EXCHANGE, we'll have
19039dd0b82eSDavid Howells 		 * to update both dentries with opposing dir versions.
19049dd0b82eSDavid Howells 		 */
19059dd0b82eSDavid Howells 		if (new_dvnode != orig_dvnode) {
19069dd0b82eSDavid Howells 			afs_update_dentry_version(&fc, old_dentry, &scb[1]);
19079dd0b82eSDavid Howells 			afs_update_dentry_version(&fc, new_dentry, &scb[1]);
19089dd0b82eSDavid Howells 		} else {
19099dd0b82eSDavid Howells 			afs_update_dentry_version(&fc, old_dentry, &scb[0]);
19109dd0b82eSDavid Howells 			afs_update_dentry_version(&fc, new_dentry, &scb[0]);
19119dd0b82eSDavid Howells 		}
191279ddbfa5SDavid Howells 		d_move(old_dentry, new_dentry);
191379ddbfa5SDavid Howells 		goto error_tmp;
191463a4681fSDavid Howells 	}
191563a4681fSDavid Howells 
19169dd0b82eSDavid Howells error_rehash_old:
19179dd0b82eSDavid Howells 	d_rehash(new_dentry);
191879ddbfa5SDavid Howells error_rehash:
191979ddbfa5SDavid Howells 	if (rehash)
192079ddbfa5SDavid Howells 		d_rehash(rehash);
192179ddbfa5SDavid Howells error_tmp:
192279ddbfa5SDavid Howells 	if (tmp)
192379ddbfa5SDavid Howells 		dput(tmp);
1924260a9803SDavid Howells 	key_put(key);
1925a58823acSDavid Howells error_scb:
1926a58823acSDavid Howells 	kfree(scb);
1927260a9803SDavid Howells error:
1928260a9803SDavid Howells 	_leave(" = %d", ret);
1929260a9803SDavid Howells 	return ret;
1930260a9803SDavid Howells }
1931f3ddee8dSDavid Howells 
1932f3ddee8dSDavid Howells /*
1933f3ddee8dSDavid Howells  * Release a directory page and clean up its private state if it's not busy
1934f3ddee8dSDavid Howells  * - return true if the page can now be released, false if not
1935f3ddee8dSDavid Howells  */
1936f3ddee8dSDavid Howells static int afs_dir_releasepage(struct page *page, gfp_t gfp_flags)
1937f3ddee8dSDavid Howells {
1938f3ddee8dSDavid Howells 	struct afs_vnode *dvnode = AFS_FS_I(page->mapping->host);
1939f3ddee8dSDavid Howells 
19403b6492dfSDavid Howells 	_enter("{{%llx:%llu}[%lu]}", dvnode->fid.vid, dvnode->fid.vnode, page->index);
1941f3ddee8dSDavid Howells 
1942f3ddee8dSDavid Howells 	set_page_private(page, 0);
1943f3ddee8dSDavid Howells 	ClearPagePrivate(page);
1944f3ddee8dSDavid Howells 
1945f3ddee8dSDavid Howells 	/* The directory will need reloading. */
1946f3ddee8dSDavid Howells 	if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1947f3ddee8dSDavid Howells 		afs_stat_v(dvnode, n_relpg);
1948f3ddee8dSDavid Howells 	return 1;
1949f3ddee8dSDavid Howells }
1950f3ddee8dSDavid Howells 
1951f3ddee8dSDavid Howells /*
1952f3ddee8dSDavid Howells  * invalidate part or all of a page
1953f3ddee8dSDavid Howells  * - release a page and clean up its private data if offset is 0 (indicating
1954f3ddee8dSDavid Howells  *   the entire page)
1955f3ddee8dSDavid Howells  */
1956f3ddee8dSDavid Howells static void afs_dir_invalidatepage(struct page *page, unsigned int offset,
1957f3ddee8dSDavid Howells 				   unsigned int length)
1958f3ddee8dSDavid Howells {
1959f3ddee8dSDavid Howells 	struct afs_vnode *dvnode = AFS_FS_I(page->mapping->host);
1960f3ddee8dSDavid Howells 
1961f3ddee8dSDavid Howells 	_enter("{%lu},%u,%u", page->index, offset, length);
1962f3ddee8dSDavid Howells 
1963f3ddee8dSDavid Howells 	BUG_ON(!PageLocked(page));
1964f3ddee8dSDavid Howells 
1965f3ddee8dSDavid Howells 	/* The directory will need reloading. */
1966f3ddee8dSDavid Howells 	if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1967f3ddee8dSDavid Howells 		afs_stat_v(dvnode, n_inval);
1968f3ddee8dSDavid Howells 
1969f3ddee8dSDavid Howells 	/* we clean up only if the entire page is being invalidated */
1970f3ddee8dSDavid Howells 	if (offset == 0 && length == PAGE_SIZE) {
1971f3ddee8dSDavid Howells 		set_page_private(page, 0);
1972f3ddee8dSDavid Howells 		ClearPagePrivate(page);
1973f3ddee8dSDavid Howells 	}
1974f3ddee8dSDavid Howells }
1975