xref: /openbmc/linux/fs/afs/dir.c (revision 63a4681f)
1 /* dir.c: AFS filesystem directory handling
2  *
3  * Copyright (C) 2002, 2018 Red Hat, Inc. All Rights Reserved.
4  * Written by David Howells (dhowells@redhat.com)
5  *
6  * This program is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU General Public License
8  * as published by the Free Software Foundation; either version
9  * 2 of the License, or (at your option) any later version.
10  */
11 
12 #include <linux/kernel.h>
13 #include <linux/fs.h>
14 #include <linux/namei.h>
15 #include <linux/pagemap.h>
16 #include <linux/swap.h>
17 #include <linux/ctype.h>
18 #include <linux/sched.h>
19 #include <linux/task_io_accounting_ops.h>
20 #include "internal.h"
21 #include "xdr_fs.h"
22 
23 static struct dentry *afs_lookup(struct inode *dir, struct dentry *dentry,
24 				 unsigned int flags);
25 static int afs_dir_open(struct inode *inode, struct file *file);
26 static int afs_readdir(struct file *file, struct dir_context *ctx);
27 static int afs_d_revalidate(struct dentry *dentry, unsigned int flags);
28 static int afs_d_delete(const struct dentry *dentry);
29 static int afs_lookup_one_filldir(struct dir_context *ctx, const char *name, int nlen,
30 				  loff_t fpos, u64 ino, unsigned dtype);
31 static int afs_lookup_filldir(struct dir_context *ctx, const char *name, int nlen,
32 			      loff_t fpos, u64 ino, unsigned dtype);
33 static int afs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
34 		      bool excl);
35 static int afs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
36 static int afs_rmdir(struct inode *dir, struct dentry *dentry);
37 static int afs_unlink(struct inode *dir, struct dentry *dentry);
38 static int afs_link(struct dentry *from, struct inode *dir,
39 		    struct dentry *dentry);
40 static int afs_symlink(struct inode *dir, struct dentry *dentry,
41 		       const char *content);
42 static int afs_rename(struct inode *old_dir, struct dentry *old_dentry,
43 		      struct inode *new_dir, struct dentry *new_dentry,
44 		      unsigned int flags);
45 static int afs_dir_releasepage(struct page *page, gfp_t gfp_flags);
46 static void afs_dir_invalidatepage(struct page *page, unsigned int offset,
47 				   unsigned int length);
48 
49 static int afs_dir_set_page_dirty(struct page *page)
50 {
51 	BUG(); /* This should never happen. */
52 }
53 
54 const struct file_operations afs_dir_file_operations = {
55 	.open		= afs_dir_open,
56 	.release	= afs_release,
57 	.iterate_shared	= afs_readdir,
58 	.lock		= afs_lock,
59 	.llseek		= generic_file_llseek,
60 };
61 
62 const struct inode_operations afs_dir_inode_operations = {
63 	.create		= afs_create,
64 	.lookup		= afs_lookup,
65 	.link		= afs_link,
66 	.unlink		= afs_unlink,
67 	.symlink	= afs_symlink,
68 	.mkdir		= afs_mkdir,
69 	.rmdir		= afs_rmdir,
70 	.rename		= afs_rename,
71 	.permission	= afs_permission,
72 	.getattr	= afs_getattr,
73 	.setattr	= afs_setattr,
74 	.listxattr	= afs_listxattr,
75 };
76 
77 const struct address_space_operations afs_dir_aops = {
78 	.set_page_dirty	= afs_dir_set_page_dirty,
79 	.releasepage	= afs_dir_releasepage,
80 	.invalidatepage	= afs_dir_invalidatepage,
81 };
82 
83 const struct dentry_operations afs_fs_dentry_operations = {
84 	.d_revalidate	= afs_d_revalidate,
85 	.d_delete	= afs_d_delete,
86 	.d_release	= afs_d_release,
87 	.d_automount	= afs_d_automount,
88 };
89 
90 struct afs_lookup_one_cookie {
91 	struct dir_context	ctx;
92 	struct qstr		name;
93 	bool			found;
94 	struct afs_fid		fid;
95 };
96 
97 struct afs_lookup_cookie {
98 	struct dir_context	ctx;
99 	struct qstr		name;
100 	bool			found;
101 	bool			one_only;
102 	unsigned short		nr_fids;
103 	struct afs_file_status	*statuses;
104 	struct afs_callback	*callbacks;
105 	struct afs_fid		fids[50];
106 };
107 
108 /*
109  * check that a directory page is valid
110  */
111 static bool afs_dir_check_page(struct afs_vnode *dvnode, struct page *page,
112 			       loff_t i_size)
113 {
114 	struct afs_xdr_dir_page *dbuf;
115 	loff_t latter, off;
116 	int tmp, qty;
117 
118 	/* Determine how many magic numbers there should be in this page, but
119 	 * we must take care because the directory may change size under us.
120 	 */
121 	off = page_offset(page);
122 	if (i_size <= off)
123 		goto checked;
124 
125 	latter = i_size - off;
126 	if (latter >= PAGE_SIZE)
127 		qty = PAGE_SIZE;
128 	else
129 		qty = latter;
130 	qty /= sizeof(union afs_xdr_dir_block);
131 
132 	/* check them */
133 	dbuf = kmap(page);
134 	for (tmp = 0; tmp < qty; tmp++) {
135 		if (dbuf->blocks[tmp].hdr.magic != AFS_DIR_MAGIC) {
136 			printk("kAFS: %s(%lx): bad magic %d/%d is %04hx\n",
137 			       __func__, dvnode->vfs_inode.i_ino, tmp, qty,
138 			       ntohs(dbuf->blocks[tmp].hdr.magic));
139 			trace_afs_dir_check_failed(dvnode, off, i_size);
140 			kunmap(page);
141 			goto error;
142 		}
143 
144 		/* Make sure each block is NUL terminated so we can reasonably
145 		 * use string functions on it.  The filenames in the page
146 		 * *should* be NUL-terminated anyway.
147 		 */
148 		((u8 *)&dbuf->blocks[tmp])[AFS_DIR_BLOCK_SIZE - 1] = 0;
149 	}
150 
151 	kunmap(page);
152 
153 checked:
154 	afs_stat_v(dvnode, n_read_dir);
155 	return true;
156 
157 error:
158 	return false;
159 }
160 
161 /*
162  * open an AFS directory file
163  */
164 static int afs_dir_open(struct inode *inode, struct file *file)
165 {
166 	_enter("{%lu}", inode->i_ino);
167 
168 	BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
169 	BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
170 
171 	if (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(inode)->flags))
172 		return -ENOENT;
173 
174 	return afs_open(inode, file);
175 }
176 
177 /*
178  * Read the directory into the pagecache in one go, scrubbing the previous
179  * contents.  The list of pages is returned, pinning them so that they don't
180  * get reclaimed during the iteration.
181  */
182 static struct afs_read *afs_read_dir(struct afs_vnode *dvnode, struct key *key)
183 {
184 	struct afs_read *req;
185 	loff_t i_size;
186 	int nr_pages, nr_inline, i, n;
187 	int ret = -ENOMEM;
188 
189 retry:
190 	i_size = i_size_read(&dvnode->vfs_inode);
191 	if (i_size < 2048)
192 		return ERR_PTR(-EIO);
193 	if (i_size > 2048 * 1024)
194 		return ERR_PTR(-EFBIG);
195 
196 	_enter("%llu", i_size);
197 
198 	/* Get a request record to hold the page list.  We want to hold it
199 	 * inline if we can, but we don't want to make an order 1 allocation.
200 	 */
201 	nr_pages = (i_size + PAGE_SIZE - 1) / PAGE_SIZE;
202 	nr_inline = nr_pages;
203 	if (nr_inline > (PAGE_SIZE - sizeof(*req)) / sizeof(struct page *))
204 		nr_inline = 0;
205 
206 	req = kzalloc(sizeof(*req) + sizeof(struct page *) * nr_inline,
207 		      GFP_KERNEL);
208 	if (!req)
209 		return ERR_PTR(-ENOMEM);
210 
211 	refcount_set(&req->usage, 1);
212 	req->nr_pages = nr_pages;
213 	req->actual_len = i_size; /* May change */
214 	req->len = nr_pages * PAGE_SIZE; /* We can ask for more than there is */
215 	req->data_version = dvnode->status.data_version; /* May change */
216 	if (nr_inline > 0) {
217 		req->pages = req->array;
218 	} else {
219 		req->pages = kcalloc(nr_pages, sizeof(struct page *),
220 				     GFP_KERNEL);
221 		if (!req->pages)
222 			goto error;
223 	}
224 
225 	/* Get a list of all the pages that hold or will hold the directory
226 	 * content.  We need to fill in any gaps that we might find where the
227 	 * memory reclaimer has been at work.  If there are any gaps, we will
228 	 * need to reread the entire directory contents.
229 	 */
230 	i = 0;
231 	do {
232 		n = find_get_pages_contig(dvnode->vfs_inode.i_mapping, i,
233 					  req->nr_pages - i,
234 					  req->pages + i);
235 		_debug("find %u at %u/%u", n, i, req->nr_pages);
236 		if (n == 0) {
237 			gfp_t gfp = dvnode->vfs_inode.i_mapping->gfp_mask;
238 
239 			if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
240 				afs_stat_v(dvnode, n_inval);
241 
242 			ret = -ENOMEM;
243 			req->pages[i] = __page_cache_alloc(gfp);
244 			if (!req->pages[i])
245 				goto error;
246 			ret = add_to_page_cache_lru(req->pages[i],
247 						    dvnode->vfs_inode.i_mapping,
248 						    i, gfp);
249 			if (ret < 0)
250 				goto error;
251 
252 			set_page_private(req->pages[i], 1);
253 			SetPagePrivate(req->pages[i]);
254 			unlock_page(req->pages[i]);
255 			i++;
256 		} else {
257 			i += n;
258 		}
259 	} while (i < req->nr_pages);
260 
261 	/* If we're going to reload, we need to lock all the pages to prevent
262 	 * races.
263 	 */
264 	if (!test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags)) {
265 		ret = -ERESTARTSYS;
266 		for (i = 0; i < req->nr_pages; i++)
267 			if (lock_page_killable(req->pages[i]) < 0)
268 				goto error_unlock;
269 
270 		if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
271 			goto success;
272 
273 		ret = afs_fetch_data(dvnode, key, req);
274 		if (ret < 0)
275 			goto error_unlock_all;
276 
277 		task_io_account_read(PAGE_SIZE * req->nr_pages);
278 
279 		if (req->len < req->file_size)
280 			goto content_has_grown;
281 
282 		/* Validate the data we just read. */
283 		ret = -EIO;
284 		for (i = 0; i < req->nr_pages; i++)
285 			if (!afs_dir_check_page(dvnode, req->pages[i],
286 						req->actual_len))
287 				goto error_unlock_all;
288 
289 		// TODO: Trim excess pages
290 
291 		set_bit(AFS_VNODE_DIR_VALID, &dvnode->flags);
292 	}
293 
294 success:
295 	i = req->nr_pages;
296 	while (i > 0)
297 		unlock_page(req->pages[--i]);
298 	return req;
299 
300 error_unlock_all:
301 	i = req->nr_pages;
302 error_unlock:
303 	while (i > 0)
304 		unlock_page(req->pages[--i]);
305 error:
306 	afs_put_read(req);
307 	_leave(" = %d", ret);
308 	return ERR_PTR(ret);
309 
310 content_has_grown:
311 	i = req->nr_pages;
312 	while (i > 0)
313 		unlock_page(req->pages[--i]);
314 	afs_put_read(req);
315 	goto retry;
316 }
317 
318 /*
319  * deal with one block in an AFS directory
320  */
321 static int afs_dir_iterate_block(struct dir_context *ctx,
322 				 union afs_xdr_dir_block *block,
323 				 unsigned blkoff)
324 {
325 	union afs_xdr_dirent *dire;
326 	unsigned offset, next, curr;
327 	size_t nlen;
328 	int tmp;
329 
330 	_enter("%u,%x,%p,,",(unsigned)ctx->pos,blkoff,block);
331 
332 	curr = (ctx->pos - blkoff) / sizeof(union afs_xdr_dirent);
333 
334 	/* walk through the block, an entry at a time */
335 	for (offset = (blkoff == 0 ? AFS_DIR_RESV_BLOCKS0 : AFS_DIR_RESV_BLOCKS);
336 	     offset < AFS_DIR_SLOTS_PER_BLOCK;
337 	     offset = next
338 	     ) {
339 		next = offset + 1;
340 
341 		/* skip entries marked unused in the bitmap */
342 		if (!(block->hdr.bitmap[offset / 8] &
343 		      (1 << (offset % 8)))) {
344 			_debug("ENT[%zu.%u]: unused",
345 			       blkoff / sizeof(union afs_xdr_dir_block), offset);
346 			if (offset >= curr)
347 				ctx->pos = blkoff +
348 					next * sizeof(union afs_xdr_dirent);
349 			continue;
350 		}
351 
352 		/* got a valid entry */
353 		dire = &block->dirents[offset];
354 		nlen = strnlen(dire->u.name,
355 			       sizeof(*block) -
356 			       offset * sizeof(union afs_xdr_dirent));
357 
358 		_debug("ENT[%zu.%u]: %s %zu \"%s\"",
359 		       blkoff / sizeof(union afs_xdr_dir_block), offset,
360 		       (offset < curr ? "skip" : "fill"),
361 		       nlen, dire->u.name);
362 
363 		/* work out where the next possible entry is */
364 		for (tmp = nlen; tmp > 15; tmp -= sizeof(union afs_xdr_dirent)) {
365 			if (next >= AFS_DIR_SLOTS_PER_BLOCK) {
366 				_debug("ENT[%zu.%u]:"
367 				       " %u travelled beyond end dir block"
368 				       " (len %u/%zu)",
369 				       blkoff / sizeof(union afs_xdr_dir_block),
370 				       offset, next, tmp, nlen);
371 				return -EIO;
372 			}
373 			if (!(block->hdr.bitmap[next / 8] &
374 			      (1 << (next % 8)))) {
375 				_debug("ENT[%zu.%u]:"
376 				       " %u unmarked extension (len %u/%zu)",
377 				       blkoff / sizeof(union afs_xdr_dir_block),
378 				       offset, next, tmp, nlen);
379 				return -EIO;
380 			}
381 
382 			_debug("ENT[%zu.%u]: ext %u/%zu",
383 			       blkoff / sizeof(union afs_xdr_dir_block),
384 			       next, tmp, nlen);
385 			next++;
386 		}
387 
388 		/* skip if starts before the current position */
389 		if (offset < curr)
390 			continue;
391 
392 		/* found the next entry */
393 		if (!dir_emit(ctx, dire->u.name, nlen,
394 			      ntohl(dire->u.vnode),
395 			      (ctx->actor == afs_lookup_filldir ||
396 			       ctx->actor == afs_lookup_one_filldir)?
397 			      ntohl(dire->u.unique) : DT_UNKNOWN)) {
398 			_leave(" = 0 [full]");
399 			return 0;
400 		}
401 
402 		ctx->pos = blkoff + next * sizeof(union afs_xdr_dirent);
403 	}
404 
405 	_leave(" = 1 [more]");
406 	return 1;
407 }
408 
409 /*
410  * iterate through the data blob that lists the contents of an AFS directory
411  */
412 static int afs_dir_iterate(struct inode *dir, struct dir_context *ctx,
413 			   struct key *key)
414 {
415 	struct afs_vnode *dvnode = AFS_FS_I(dir);
416 	struct afs_xdr_dir_page *dbuf;
417 	union afs_xdr_dir_block *dblock;
418 	struct afs_read *req;
419 	struct page *page;
420 	unsigned blkoff, limit;
421 	int ret;
422 
423 	_enter("{%lu},%u,,", dir->i_ino, (unsigned)ctx->pos);
424 
425 	if (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(dir)->flags)) {
426 		_leave(" = -ESTALE");
427 		return -ESTALE;
428 	}
429 
430 	req = afs_read_dir(dvnode, key);
431 	if (IS_ERR(req))
432 		return PTR_ERR(req);
433 
434 	/* round the file position up to the next entry boundary */
435 	ctx->pos += sizeof(union afs_xdr_dirent) - 1;
436 	ctx->pos &= ~(sizeof(union afs_xdr_dirent) - 1);
437 
438 	/* walk through the blocks in sequence */
439 	ret = 0;
440 	while (ctx->pos < req->actual_len) {
441 		blkoff = ctx->pos & ~(sizeof(union afs_xdr_dir_block) - 1);
442 
443 		/* Fetch the appropriate page from the directory and re-add it
444 		 * to the LRU.
445 		 */
446 		page = req->pages[blkoff / PAGE_SIZE];
447 		if (!page) {
448 			ret = -EIO;
449 			break;
450 		}
451 		mark_page_accessed(page);
452 
453 		limit = blkoff & ~(PAGE_SIZE - 1);
454 
455 		dbuf = kmap(page);
456 
457 		/* deal with the individual blocks stashed on this page */
458 		do {
459 			dblock = &dbuf->blocks[(blkoff % PAGE_SIZE) /
460 					       sizeof(union afs_xdr_dir_block)];
461 			ret = afs_dir_iterate_block(ctx, dblock, blkoff);
462 			if (ret != 1) {
463 				kunmap(page);
464 				goto out;
465 			}
466 
467 			blkoff += sizeof(union afs_xdr_dir_block);
468 
469 		} while (ctx->pos < dir->i_size && blkoff < limit);
470 
471 		kunmap(page);
472 		ret = 0;
473 	}
474 
475 out:
476 	afs_put_read(req);
477 	_leave(" = %d", ret);
478 	return ret;
479 }
480 
481 /*
482  * read an AFS directory
483  */
484 static int afs_readdir(struct file *file, struct dir_context *ctx)
485 {
486 	return afs_dir_iterate(file_inode(file), ctx, afs_file_key(file));
487 }
488 
489 /*
490  * Search the directory for a single name
491  * - if afs_dir_iterate_block() spots this function, it'll pass the FID
492  *   uniquifier through dtype
493  */
494 static int afs_lookup_one_filldir(struct dir_context *ctx, const char *name,
495 				  int nlen, loff_t fpos, u64 ino, unsigned dtype)
496 {
497 	struct afs_lookup_one_cookie *cookie =
498 		container_of(ctx, struct afs_lookup_one_cookie, ctx);
499 
500 	_enter("{%s,%u},%s,%u,,%llu,%u",
501 	       cookie->name.name, cookie->name.len, name, nlen,
502 	       (unsigned long long) ino, dtype);
503 
504 	/* insanity checks first */
505 	BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
506 	BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
507 
508 	if (cookie->name.len != nlen ||
509 	    memcmp(cookie->name.name, name, nlen) != 0) {
510 		_leave(" = 0 [no]");
511 		return 0;
512 	}
513 
514 	cookie->fid.vnode = ino;
515 	cookie->fid.unique = dtype;
516 	cookie->found = 1;
517 
518 	_leave(" = -1 [found]");
519 	return -1;
520 }
521 
522 /*
523  * Do a lookup of a single name in a directory
524  * - just returns the FID the dentry name maps to if found
525  */
526 static int afs_do_lookup_one(struct inode *dir, struct dentry *dentry,
527 			     struct afs_fid *fid, struct key *key)
528 {
529 	struct afs_super_info *as = dir->i_sb->s_fs_info;
530 	struct afs_lookup_one_cookie cookie = {
531 		.ctx.actor = afs_lookup_one_filldir,
532 		.name = dentry->d_name,
533 		.fid.vid = as->volume->vid
534 	};
535 	int ret;
536 
537 	_enter("{%lu},%p{%pd},", dir->i_ino, dentry, dentry);
538 
539 	/* search the directory */
540 	ret = afs_dir_iterate(dir, &cookie.ctx, key);
541 	if (ret < 0) {
542 		_leave(" = %d [iter]", ret);
543 		return ret;
544 	}
545 
546 	ret = -ENOENT;
547 	if (!cookie.found) {
548 		_leave(" = -ENOENT [not found]");
549 		return -ENOENT;
550 	}
551 
552 	*fid = cookie.fid;
553 	_leave(" = 0 { vn=%u u=%u }", fid->vnode, fid->unique);
554 	return 0;
555 }
556 
557 /*
558  * search the directory for a name
559  * - if afs_dir_iterate_block() spots this function, it'll pass the FID
560  *   uniquifier through dtype
561  */
562 static int afs_lookup_filldir(struct dir_context *ctx, const char *name,
563 			      int nlen, loff_t fpos, u64 ino, unsigned dtype)
564 {
565 	struct afs_lookup_cookie *cookie =
566 		container_of(ctx, struct afs_lookup_cookie, ctx);
567 	int ret;
568 
569 	_enter("{%s,%u},%s,%u,,%llu,%u",
570 	       cookie->name.name, cookie->name.len, name, nlen,
571 	       (unsigned long long) ino, dtype);
572 
573 	/* insanity checks first */
574 	BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
575 	BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
576 
577 	if (cookie->found) {
578 		if (cookie->nr_fids < 50) {
579 			cookie->fids[cookie->nr_fids].vnode	= ino;
580 			cookie->fids[cookie->nr_fids].unique	= dtype;
581 			cookie->nr_fids++;
582 		}
583 	} else if (cookie->name.len == nlen &&
584 		   memcmp(cookie->name.name, name, nlen) == 0) {
585 		cookie->fids[0].vnode	= ino;
586 		cookie->fids[0].unique	= dtype;
587 		cookie->found = 1;
588 		if (cookie->one_only)
589 			return -1;
590 	}
591 
592 	ret = cookie->nr_fids >= 50 ? -1 : 0;
593 	_leave(" = %d", ret);
594 	return ret;
595 }
596 
597 /*
598  * Do a lookup in a directory.  We make use of bulk lookup to query a slew of
599  * files in one go and create inodes for them.  The inode of the file we were
600  * asked for is returned.
601  */
602 static struct inode *afs_do_lookup(struct inode *dir, struct dentry *dentry,
603 				   struct key *key)
604 {
605 	struct afs_lookup_cookie *cookie;
606 	struct afs_cb_interest *cbi = NULL;
607 	struct afs_super_info *as = dir->i_sb->s_fs_info;
608 	struct afs_iget_data data;
609 	struct afs_fs_cursor fc;
610 	struct afs_vnode *dvnode = AFS_FS_I(dir);
611 	struct inode *inode = NULL;
612 	int ret, i;
613 
614 	_enter("{%lu},%p{%pd},", dir->i_ino, dentry, dentry);
615 
616 	cookie = kzalloc(sizeof(struct afs_lookup_cookie), GFP_KERNEL);
617 	if (!cookie)
618 		return ERR_PTR(-ENOMEM);
619 
620 	cookie->ctx.actor = afs_lookup_filldir;
621 	cookie->name = dentry->d_name;
622 	cookie->nr_fids = 1; /* slot 0 is saved for the fid we actually want */
623 
624 	read_seqlock_excl(&dvnode->cb_lock);
625 	if (dvnode->cb_interest &&
626 	    dvnode->cb_interest->server &&
627 	    test_bit(AFS_SERVER_FL_NO_IBULK, &dvnode->cb_interest->server->flags))
628 		cookie->one_only = true;
629 	read_sequnlock_excl(&dvnode->cb_lock);
630 
631 	for (i = 0; i < 50; i++)
632 		cookie->fids[i].vid = as->volume->vid;
633 
634 	/* search the directory */
635 	ret = afs_dir_iterate(dir, &cookie->ctx, key);
636 	if (ret < 0) {
637 		inode = ERR_PTR(ret);
638 		goto out;
639 	}
640 
641 	inode = ERR_PTR(-ENOENT);
642 	if (!cookie->found)
643 		goto out;
644 
645 	/* Check to see if we already have an inode for the primary fid. */
646 	data.volume = dvnode->volume;
647 	data.fid = cookie->fids[0];
648 	inode = ilookup5(dir->i_sb, cookie->fids[0].vnode, afs_iget5_test, &data);
649 	if (inode)
650 		goto out;
651 
652 	/* Need space for examining all the selected files */
653 	inode = ERR_PTR(-ENOMEM);
654 	cookie->statuses = kcalloc(cookie->nr_fids, sizeof(struct afs_file_status),
655 				   GFP_KERNEL);
656 	if (!cookie->statuses)
657 		goto out;
658 
659 	cookie->callbacks = kcalloc(cookie->nr_fids, sizeof(struct afs_callback),
660 				    GFP_KERNEL);
661 	if (!cookie->callbacks)
662 		goto out_s;
663 
664 	/* Try FS.InlineBulkStatus first.  Abort codes for the individual
665 	 * lookups contained therein are stored in the reply without aborting
666 	 * the whole operation.
667 	 */
668 	if (cookie->one_only)
669 		goto no_inline_bulk_status;
670 
671 	inode = ERR_PTR(-ERESTARTSYS);
672 	if (afs_begin_vnode_operation(&fc, dvnode, key)) {
673 		while (afs_select_fileserver(&fc)) {
674 			if (test_bit(AFS_SERVER_FL_NO_IBULK,
675 				      &fc.cbi->server->flags)) {
676 				fc.ac.abort_code = RX_INVALID_OPERATION;
677 				fc.ac.error = -ECONNABORTED;
678 				break;
679 			}
680 			afs_fs_inline_bulk_status(&fc,
681 						  afs_v2net(dvnode),
682 						  cookie->fids,
683 						  cookie->statuses,
684 						  cookie->callbacks,
685 						  cookie->nr_fids, NULL);
686 		}
687 
688 		if (fc.ac.error == 0)
689 			cbi = afs_get_cb_interest(fc.cbi);
690 		if (fc.ac.abort_code == RX_INVALID_OPERATION)
691 			set_bit(AFS_SERVER_FL_NO_IBULK, &fc.cbi->server->flags);
692 		inode = ERR_PTR(afs_end_vnode_operation(&fc));
693 	}
694 
695 	if (!IS_ERR(inode))
696 		goto success;
697 	if (fc.ac.abort_code != RX_INVALID_OPERATION)
698 		goto out_c;
699 
700 no_inline_bulk_status:
701 	/* We could try FS.BulkStatus next, but this aborts the entire op if
702 	 * any of the lookups fails - so, for the moment, revert to
703 	 * FS.FetchStatus for just the primary fid.
704 	 */
705 	cookie->nr_fids = 1;
706 	inode = ERR_PTR(-ERESTARTSYS);
707 	if (afs_begin_vnode_operation(&fc, dvnode, key)) {
708 		while (afs_select_fileserver(&fc)) {
709 			afs_fs_fetch_status(&fc,
710 					    afs_v2net(dvnode),
711 					    cookie->fids,
712 					    cookie->statuses,
713 					    cookie->callbacks,
714 					    NULL);
715 		}
716 
717 		if (fc.ac.error == 0)
718 			cbi = afs_get_cb_interest(fc.cbi);
719 		inode = ERR_PTR(afs_end_vnode_operation(&fc));
720 	}
721 
722 	if (IS_ERR(inode))
723 		goto out_c;
724 
725 	for (i = 0; i < cookie->nr_fids; i++)
726 		cookie->statuses[i].abort_code = 0;
727 
728 success:
729 	/* Turn all the files into inodes and save the first one - which is the
730 	 * one we actually want.
731 	 */
732 	if (cookie->statuses[0].abort_code != 0)
733 		inode = ERR_PTR(afs_abort_to_error(cookie->statuses[0].abort_code));
734 
735 	for (i = 0; i < cookie->nr_fids; i++) {
736 		struct inode *ti;
737 
738 		if (cookie->statuses[i].abort_code != 0)
739 			continue;
740 
741 		ti = afs_iget(dir->i_sb, key, &cookie->fids[i],
742 			      &cookie->statuses[i],
743 			      &cookie->callbacks[i],
744 			      cbi);
745 		if (i == 0) {
746 			inode = ti;
747 		} else {
748 			if (!IS_ERR(ti))
749 				iput(ti);
750 		}
751 	}
752 
753 out_c:
754 	afs_put_cb_interest(afs_v2net(dvnode), cbi);
755 	kfree(cookie->callbacks);
756 out_s:
757 	kfree(cookie->statuses);
758 out:
759 	kfree(cookie);
760 	return inode;
761 }
762 
763 /*
764  * Look up an entry in a directory with @sys substitution.
765  */
766 static struct dentry *afs_lookup_atsys(struct inode *dir, struct dentry *dentry,
767 				       struct key *key)
768 {
769 	struct afs_sysnames *subs;
770 	struct afs_net *net = afs_i2net(dir);
771 	struct dentry *ret;
772 	char *buf, *p, *name;
773 	int len, i;
774 
775 	_enter("");
776 
777 	ret = ERR_PTR(-ENOMEM);
778 	p = buf = kmalloc(AFSNAMEMAX, GFP_KERNEL);
779 	if (!buf)
780 		goto out_p;
781 	if (dentry->d_name.len > 4) {
782 		memcpy(p, dentry->d_name.name, dentry->d_name.len - 4);
783 		p += dentry->d_name.len - 4;
784 	}
785 
786 	/* There is an ordered list of substitutes that we have to try. */
787 	read_lock(&net->sysnames_lock);
788 	subs = net->sysnames;
789 	refcount_inc(&subs->usage);
790 	read_unlock(&net->sysnames_lock);
791 
792 	for (i = 0; i < subs->nr; i++) {
793 		name = subs->subs[i];
794 		len = dentry->d_name.len - 4 + strlen(name);
795 		if (len >= AFSNAMEMAX) {
796 			ret = ERR_PTR(-ENAMETOOLONG);
797 			goto out_s;
798 		}
799 
800 		strcpy(p, name);
801 		ret = lookup_one_len(buf, dentry->d_parent, len);
802 		if (IS_ERR(ret) || d_is_positive(ret))
803 			goto out_s;
804 		dput(ret);
805 	}
806 
807 	/* We don't want to d_add() the @sys dentry here as we don't want to
808 	 * the cached dentry to hide changes to the sysnames list.
809 	 */
810 	ret = NULL;
811 out_s:
812 	afs_put_sysnames(subs);
813 	kfree(buf);
814 out_p:
815 	key_put(key);
816 	return ret;
817 }
818 
819 /*
820  * look up an entry in a directory
821  */
822 static struct dentry *afs_lookup(struct inode *dir, struct dentry *dentry,
823 				 unsigned int flags)
824 {
825 	struct afs_vnode *dvnode = AFS_FS_I(dir);
826 	struct inode *inode;
827 	struct key *key;
828 	int ret;
829 
830 	_enter("{%x:%u},%p{%pd},",
831 	       dvnode->fid.vid, dvnode->fid.vnode, dentry, dentry);
832 
833 	ASSERTCMP(d_inode(dentry), ==, NULL);
834 
835 	if (dentry->d_name.len >= AFSNAMEMAX) {
836 		_leave(" = -ENAMETOOLONG");
837 		return ERR_PTR(-ENAMETOOLONG);
838 	}
839 
840 	if (test_bit(AFS_VNODE_DELETED, &dvnode->flags)) {
841 		_leave(" = -ESTALE");
842 		return ERR_PTR(-ESTALE);
843 	}
844 
845 	key = afs_request_key(dvnode->volume->cell);
846 	if (IS_ERR(key)) {
847 		_leave(" = %ld [key]", PTR_ERR(key));
848 		return ERR_CAST(key);
849 	}
850 
851 	ret = afs_validate(dvnode, key);
852 	if (ret < 0) {
853 		key_put(key);
854 		_leave(" = %d [val]", ret);
855 		return ERR_PTR(ret);
856 	}
857 
858 	if (dentry->d_name.len >= 4 &&
859 	    dentry->d_name.name[dentry->d_name.len - 4] == '@' &&
860 	    dentry->d_name.name[dentry->d_name.len - 3] == 's' &&
861 	    dentry->d_name.name[dentry->d_name.len - 2] == 'y' &&
862 	    dentry->d_name.name[dentry->d_name.len - 1] == 's')
863 		return afs_lookup_atsys(dir, dentry, key);
864 
865 	afs_stat_v(dvnode, n_lookup);
866 	inode = afs_do_lookup(dir, dentry, key);
867 	if (IS_ERR(inode)) {
868 		ret = PTR_ERR(inode);
869 		if (ret == -ENOENT) {
870 			inode = afs_try_auto_mntpt(dentry, dir);
871 			if (!IS_ERR(inode)) {
872 				key_put(key);
873 				goto success;
874 			}
875 
876 			ret = PTR_ERR(inode);
877 		}
878 
879 		key_put(key);
880 		if (ret == -ENOENT) {
881 			d_add(dentry, NULL);
882 			_leave(" = NULL [negative]");
883 			return NULL;
884 		}
885 		_leave(" = %d [do]", ret);
886 		return ERR_PTR(ret);
887 	}
888 	dentry->d_fsdata = (void *)(unsigned long)dvnode->status.data_version;
889 
890 	/* instantiate the dentry */
891 	key_put(key);
892 	if (IS_ERR(inode)) {
893 		_leave(" = %ld", PTR_ERR(inode));
894 		return ERR_CAST(inode);
895 	}
896 
897 success:
898 	d_add(dentry, inode);
899 	_leave(" = 0 { ino=%lu v=%u }",
900 	       d_inode(dentry)->i_ino,
901 	       d_inode(dentry)->i_generation);
902 
903 	return NULL;
904 }
905 
906 /*
907  * check that a dentry lookup hit has found a valid entry
908  * - NOTE! the hit can be a negative hit too, so we can't assume we have an
909  *   inode
910  */
911 static int afs_d_revalidate(struct dentry *dentry, unsigned int flags)
912 {
913 	struct afs_vnode *vnode, *dir;
914 	struct afs_fid uninitialized_var(fid);
915 	struct dentry *parent;
916 	struct inode *inode;
917 	struct key *key;
918 	long dir_version, de_version;
919 	int ret;
920 
921 	if (flags & LOOKUP_RCU)
922 		return -ECHILD;
923 
924 	if (d_really_is_positive(dentry)) {
925 		vnode = AFS_FS_I(d_inode(dentry));
926 		_enter("{v={%x:%u} n=%pd fl=%lx},",
927 		       vnode->fid.vid, vnode->fid.vnode, dentry,
928 		       vnode->flags);
929 	} else {
930 		_enter("{neg n=%pd}", dentry);
931 	}
932 
933 	key = afs_request_key(AFS_FS_S(dentry->d_sb)->volume->cell);
934 	if (IS_ERR(key))
935 		key = NULL;
936 
937 	if (d_really_is_positive(dentry)) {
938 		inode = d_inode(dentry);
939 		if (inode) {
940 			vnode = AFS_FS_I(inode);
941 			afs_validate(vnode, key);
942 			if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
943 				goto out_bad;
944 		}
945 	}
946 
947 	/* lock down the parent dentry so we can peer at it */
948 	parent = dget_parent(dentry);
949 	dir = AFS_FS_I(d_inode(parent));
950 
951 	/* validate the parent directory */
952 	afs_validate(dir, key);
953 
954 	if (test_bit(AFS_VNODE_DELETED, &dir->flags)) {
955 		_debug("%pd: parent dir deleted", dentry);
956 		goto out_bad_parent;
957 	}
958 
959 	/* We only need to invalidate a dentry if the server's copy changed
960 	 * behind our back.  If we made the change, it's no problem.  Note that
961 	 * on a 32-bit system, we only have 32 bits in the dentry to store the
962 	 * version.
963 	 */
964 	dir_version = (long)dir->status.data_version;
965 	de_version = (long)dentry->d_fsdata;
966 	if (de_version == dir_version)
967 		goto out_valid;
968 
969 	dir_version = (long)dir->invalid_before;
970 	if (de_version - dir_version >= 0)
971 		goto out_valid;
972 
973 	_debug("dir modified");
974 	afs_stat_v(dir, n_reval);
975 
976 	/* search the directory for this vnode */
977 	ret = afs_do_lookup_one(&dir->vfs_inode, dentry, &fid, key);
978 	switch (ret) {
979 	case 0:
980 		/* the filename maps to something */
981 		if (d_really_is_negative(dentry))
982 			goto out_bad_parent;
983 		inode = d_inode(dentry);
984 		if (is_bad_inode(inode)) {
985 			printk("kAFS: afs_d_revalidate: %pd2 has bad inode\n",
986 			       dentry);
987 			goto out_bad_parent;
988 		}
989 
990 		vnode = AFS_FS_I(inode);
991 
992 		/* if the vnode ID has changed, then the dirent points to a
993 		 * different file */
994 		if (fid.vnode != vnode->fid.vnode) {
995 			_debug("%pd: dirent changed [%u != %u]",
996 			       dentry, fid.vnode,
997 			       vnode->fid.vnode);
998 			goto not_found;
999 		}
1000 
1001 		/* if the vnode ID uniqifier has changed, then the file has
1002 		 * been deleted and replaced, and the original vnode ID has
1003 		 * been reused */
1004 		if (fid.unique != vnode->fid.unique) {
1005 			_debug("%pd: file deleted (uq %u -> %u I:%u)",
1006 			       dentry, fid.unique,
1007 			       vnode->fid.unique,
1008 			       vnode->vfs_inode.i_generation);
1009 			write_seqlock(&vnode->cb_lock);
1010 			set_bit(AFS_VNODE_DELETED, &vnode->flags);
1011 			write_sequnlock(&vnode->cb_lock);
1012 			goto not_found;
1013 		}
1014 		goto out_valid;
1015 
1016 	case -ENOENT:
1017 		/* the filename is unknown */
1018 		_debug("%pd: dirent not found", dentry);
1019 		if (d_really_is_positive(dentry))
1020 			goto not_found;
1021 		goto out_valid;
1022 
1023 	default:
1024 		_debug("failed to iterate dir %pd: %d",
1025 		       parent, ret);
1026 		goto out_bad_parent;
1027 	}
1028 
1029 out_valid:
1030 	dentry->d_fsdata = (void *)dir_version;
1031 	dput(parent);
1032 	key_put(key);
1033 	_leave(" = 1 [valid]");
1034 	return 1;
1035 
1036 	/* the dirent, if it exists, now points to a different vnode */
1037 not_found:
1038 	spin_lock(&dentry->d_lock);
1039 	dentry->d_flags |= DCACHE_NFSFS_RENAMED;
1040 	spin_unlock(&dentry->d_lock);
1041 
1042 out_bad_parent:
1043 	_debug("dropping dentry %pd2", dentry);
1044 	dput(parent);
1045 out_bad:
1046 	key_put(key);
1047 
1048 	_leave(" = 0 [bad]");
1049 	return 0;
1050 }
1051 
1052 /*
1053  * allow the VFS to enquire as to whether a dentry should be unhashed (mustn't
1054  * sleep)
1055  * - called from dput() when d_count is going to 0.
1056  * - return 1 to request dentry be unhashed, 0 otherwise
1057  */
1058 static int afs_d_delete(const struct dentry *dentry)
1059 {
1060 	_enter("%pd", dentry);
1061 
1062 	if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
1063 		goto zap;
1064 
1065 	if (d_really_is_positive(dentry) &&
1066 	    (test_bit(AFS_VNODE_DELETED,   &AFS_FS_I(d_inode(dentry))->flags) ||
1067 	     test_bit(AFS_VNODE_PSEUDODIR, &AFS_FS_I(d_inode(dentry))->flags)))
1068 		goto zap;
1069 
1070 	_leave(" = 0 [keep]");
1071 	return 0;
1072 
1073 zap:
1074 	_leave(" = 1 [zap]");
1075 	return 1;
1076 }
1077 
1078 /*
1079  * handle dentry release
1080  */
1081 void afs_d_release(struct dentry *dentry)
1082 {
1083 	_enter("%pd", dentry);
1084 }
1085 
1086 /*
1087  * Create a new inode for create/mkdir/symlink
1088  */
1089 static void afs_vnode_new_inode(struct afs_fs_cursor *fc,
1090 				struct dentry *new_dentry,
1091 				struct afs_fid *newfid,
1092 				struct afs_file_status *newstatus,
1093 				struct afs_callback *newcb)
1094 {
1095 	struct inode *inode;
1096 
1097 	if (fc->ac.error < 0)
1098 		return;
1099 
1100 	d_drop(new_dentry);
1101 
1102 	inode = afs_iget(fc->vnode->vfs_inode.i_sb, fc->key,
1103 			 newfid, newstatus, newcb, fc->cbi);
1104 	if (IS_ERR(inode)) {
1105 		/* ENOMEM or EINTR at a really inconvenient time - just abandon
1106 		 * the new directory on the server.
1107 		 */
1108 		fc->ac.error = PTR_ERR(inode);
1109 		return;
1110 	}
1111 
1112 	d_add(new_dentry, inode);
1113 }
1114 
1115 /*
1116  * create a directory on an AFS filesystem
1117  */
1118 static int afs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
1119 {
1120 	struct afs_file_status newstatus;
1121 	struct afs_fs_cursor fc;
1122 	struct afs_callback newcb;
1123 	struct afs_vnode *dvnode = AFS_FS_I(dir);
1124 	struct afs_fid newfid;
1125 	struct key *key;
1126 	u64 data_version = dvnode->status.data_version;
1127 	int ret;
1128 
1129 	mode |= S_IFDIR;
1130 
1131 	_enter("{%x:%u},{%pd},%ho",
1132 	       dvnode->fid.vid, dvnode->fid.vnode, dentry, mode);
1133 
1134 	key = afs_request_key(dvnode->volume->cell);
1135 	if (IS_ERR(key)) {
1136 		ret = PTR_ERR(key);
1137 		goto error;
1138 	}
1139 
1140 	ret = -ERESTARTSYS;
1141 	if (afs_begin_vnode_operation(&fc, dvnode, key)) {
1142 		while (afs_select_fileserver(&fc)) {
1143 			fc.cb_break = dvnode->cb_break + dvnode->cb_s_break;
1144 			afs_fs_create(&fc, dentry->d_name.name, mode, data_version,
1145 				      &newfid, &newstatus, &newcb);
1146 		}
1147 
1148 		afs_check_for_remote_deletion(&fc, fc.vnode);
1149 		afs_vnode_commit_status(&fc, dvnode, fc.cb_break);
1150 		afs_vnode_new_inode(&fc, dentry, &newfid, &newstatus, &newcb);
1151 		ret = afs_end_vnode_operation(&fc);
1152 		if (ret < 0)
1153 			goto error_key;
1154 	} else {
1155 		goto error_key;
1156 	}
1157 
1158 	if (ret == 0 &&
1159 	    test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1160 		afs_edit_dir_add(dvnode, &dentry->d_name, &newfid,
1161 				 afs_edit_dir_for_create);
1162 
1163 	key_put(key);
1164 	_leave(" = 0");
1165 	return 0;
1166 
1167 error_key:
1168 	key_put(key);
1169 error:
1170 	d_drop(dentry);
1171 	_leave(" = %d", ret);
1172 	return ret;
1173 }
1174 
1175 /*
1176  * Remove a subdir from a directory.
1177  */
1178 static void afs_dir_remove_subdir(struct dentry *dentry)
1179 {
1180 	if (d_really_is_positive(dentry)) {
1181 		struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
1182 
1183 		clear_nlink(&vnode->vfs_inode);
1184 		set_bit(AFS_VNODE_DELETED, &vnode->flags);
1185 		clear_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
1186 		clear_bit(AFS_VNODE_DIR_VALID, &vnode->flags);
1187 	}
1188 }
1189 
1190 /*
1191  * remove a directory from an AFS filesystem
1192  */
1193 static int afs_rmdir(struct inode *dir, struct dentry *dentry)
1194 {
1195 	struct afs_fs_cursor fc;
1196 	struct afs_vnode *dvnode = AFS_FS_I(dir);
1197 	struct key *key;
1198 	u64 data_version = dvnode->status.data_version;
1199 	int ret;
1200 
1201 	_enter("{%x:%u},{%pd}",
1202 	       dvnode->fid.vid, dvnode->fid.vnode, dentry);
1203 
1204 	key = afs_request_key(dvnode->volume->cell);
1205 	if (IS_ERR(key)) {
1206 		ret = PTR_ERR(key);
1207 		goto error;
1208 	}
1209 
1210 	ret = -ERESTARTSYS;
1211 	if (afs_begin_vnode_operation(&fc, dvnode, key)) {
1212 		while (afs_select_fileserver(&fc)) {
1213 			fc.cb_break = dvnode->cb_break + dvnode->cb_s_break;
1214 			afs_fs_remove(&fc, dentry->d_name.name, true,
1215 				      data_version);
1216 		}
1217 
1218 		afs_vnode_commit_status(&fc, dvnode, fc.cb_break);
1219 		ret = afs_end_vnode_operation(&fc);
1220 		if (ret == 0) {
1221 			afs_dir_remove_subdir(dentry);
1222 			if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1223 				afs_edit_dir_remove(dvnode, &dentry->d_name,
1224 						    afs_edit_dir_for_rmdir);
1225 		}
1226 	}
1227 
1228 	key_put(key);
1229 error:
1230 	return ret;
1231 }
1232 
1233 /*
1234  * Remove a link to a file or symlink from a directory.
1235  *
1236  * If the file was not deleted due to excess hard links, the fileserver will
1237  * break the callback promise on the file - if it had one - before it returns
1238  * to us, and if it was deleted, it won't
1239  *
1240  * However, if we didn't have a callback promise outstanding, or it was
1241  * outstanding on a different server, then it won't break it either...
1242  */
1243 static int afs_dir_remove_link(struct dentry *dentry, struct key *key,
1244 			       unsigned long d_version_before,
1245 			       unsigned long d_version_after)
1246 {
1247 	bool dir_valid;
1248 	int ret = 0;
1249 
1250 	/* There were no intervening changes on the server if the version
1251 	 * number we got back was incremented by exactly 1.
1252 	 */
1253 	dir_valid = (d_version_after == d_version_before + 1);
1254 
1255 	if (d_really_is_positive(dentry)) {
1256 		struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
1257 
1258 		if (dir_valid) {
1259 			drop_nlink(&vnode->vfs_inode);
1260 			if (vnode->vfs_inode.i_nlink == 0) {
1261 				set_bit(AFS_VNODE_DELETED, &vnode->flags);
1262 				clear_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
1263 			}
1264 			ret = 0;
1265 		} else {
1266 			clear_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
1267 
1268 			if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
1269 				kdebug("AFS_VNODE_DELETED");
1270 
1271 			ret = afs_validate(vnode, key);
1272 			if (ret == -ESTALE)
1273 				ret = 0;
1274 		}
1275 		_debug("nlink %d [val %d]", vnode->vfs_inode.i_nlink, ret);
1276 	}
1277 
1278 	return ret;
1279 }
1280 
1281 /*
1282  * Remove a file or symlink from an AFS filesystem.
1283  */
1284 static int afs_unlink(struct inode *dir, struct dentry *dentry)
1285 {
1286 	struct afs_fs_cursor fc;
1287 	struct afs_vnode *dvnode = AFS_FS_I(dir), *vnode;
1288 	struct key *key;
1289 	unsigned long d_version = (unsigned long)dentry->d_fsdata;
1290 	u64 data_version = dvnode->status.data_version;
1291 	int ret;
1292 
1293 	_enter("{%x:%u},{%pd}",
1294 	       dvnode->fid.vid, dvnode->fid.vnode, dentry);
1295 
1296 	if (dentry->d_name.len >= AFSNAMEMAX)
1297 		return -ENAMETOOLONG;
1298 
1299 	key = afs_request_key(dvnode->volume->cell);
1300 	if (IS_ERR(key)) {
1301 		ret = PTR_ERR(key);
1302 		goto error;
1303 	}
1304 
1305 	/* Try to make sure we have a callback promise on the victim. */
1306 	if (d_really_is_positive(dentry)) {
1307 		vnode = AFS_FS_I(d_inode(dentry));
1308 		ret = afs_validate(vnode, key);
1309 		if (ret < 0)
1310 			goto error_key;
1311 	}
1312 
1313 	ret = -ERESTARTSYS;
1314 	if (afs_begin_vnode_operation(&fc, dvnode, key)) {
1315 		while (afs_select_fileserver(&fc)) {
1316 			fc.cb_break = dvnode->cb_break + dvnode->cb_s_break;
1317 			afs_fs_remove(&fc, dentry->d_name.name, false,
1318 				      data_version);
1319 		}
1320 
1321 		afs_vnode_commit_status(&fc, dvnode, fc.cb_break);
1322 		ret = afs_end_vnode_operation(&fc);
1323 		if (ret == 0)
1324 			ret = afs_dir_remove_link(
1325 				dentry, key, d_version,
1326 				(unsigned long)dvnode->status.data_version);
1327 		if (ret == 0 &&
1328 		    test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1329 			afs_edit_dir_remove(dvnode, &dentry->d_name,
1330 					    afs_edit_dir_for_unlink);
1331 	}
1332 
1333 error_key:
1334 	key_put(key);
1335 error:
1336 	_leave(" = %d", ret);
1337 	return ret;
1338 }
1339 
1340 /*
1341  * create a regular file on an AFS filesystem
1342  */
1343 static int afs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
1344 		      bool excl)
1345 {
1346 	struct afs_fs_cursor fc;
1347 	struct afs_file_status newstatus;
1348 	struct afs_callback newcb;
1349 	struct afs_vnode *dvnode = AFS_FS_I(dir);
1350 	struct afs_fid newfid;
1351 	struct key *key;
1352 	u64 data_version = dvnode->status.data_version;
1353 	int ret;
1354 
1355 	mode |= S_IFREG;
1356 
1357 	_enter("{%x:%u},{%pd},%ho,",
1358 	       dvnode->fid.vid, dvnode->fid.vnode, dentry, mode);
1359 
1360 	ret = -ENAMETOOLONG;
1361 	if (dentry->d_name.len >= AFSNAMEMAX)
1362 		goto error;
1363 
1364 	key = afs_request_key(dvnode->volume->cell);
1365 	if (IS_ERR(key)) {
1366 		ret = PTR_ERR(key);
1367 		goto error;
1368 	}
1369 
1370 	ret = -ERESTARTSYS;
1371 	if (afs_begin_vnode_operation(&fc, dvnode, key)) {
1372 		while (afs_select_fileserver(&fc)) {
1373 			fc.cb_break = dvnode->cb_break + dvnode->cb_s_break;
1374 			afs_fs_create(&fc, dentry->d_name.name, mode, data_version,
1375 				      &newfid, &newstatus, &newcb);
1376 		}
1377 
1378 		afs_check_for_remote_deletion(&fc, fc.vnode);
1379 		afs_vnode_commit_status(&fc, dvnode, fc.cb_break);
1380 		afs_vnode_new_inode(&fc, dentry, &newfid, &newstatus, &newcb);
1381 		ret = afs_end_vnode_operation(&fc);
1382 		if (ret < 0)
1383 			goto error_key;
1384 	} else {
1385 		goto error_key;
1386 	}
1387 
1388 	if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1389 		afs_edit_dir_add(dvnode, &dentry->d_name, &newfid,
1390 				 afs_edit_dir_for_create);
1391 
1392 	key_put(key);
1393 	_leave(" = 0");
1394 	return 0;
1395 
1396 error_key:
1397 	key_put(key);
1398 error:
1399 	d_drop(dentry);
1400 	_leave(" = %d", ret);
1401 	return ret;
1402 }
1403 
1404 /*
1405  * create a hard link between files in an AFS filesystem
1406  */
1407 static int afs_link(struct dentry *from, struct inode *dir,
1408 		    struct dentry *dentry)
1409 {
1410 	struct afs_fs_cursor fc;
1411 	struct afs_vnode *dvnode, *vnode;
1412 	struct key *key;
1413 	u64 data_version;
1414 	int ret;
1415 
1416 	vnode = AFS_FS_I(d_inode(from));
1417 	dvnode = AFS_FS_I(dir);
1418 	data_version = dvnode->status.data_version;
1419 
1420 	_enter("{%x:%u},{%x:%u},{%pd}",
1421 	       vnode->fid.vid, vnode->fid.vnode,
1422 	       dvnode->fid.vid, dvnode->fid.vnode,
1423 	       dentry);
1424 
1425 	ret = -ENAMETOOLONG;
1426 	if (dentry->d_name.len >= AFSNAMEMAX)
1427 		goto error;
1428 
1429 	key = afs_request_key(dvnode->volume->cell);
1430 	if (IS_ERR(key)) {
1431 		ret = PTR_ERR(key);
1432 		goto error;
1433 	}
1434 
1435 	ret = -ERESTARTSYS;
1436 	if (afs_begin_vnode_operation(&fc, dvnode, key)) {
1437 		if (mutex_lock_interruptible_nested(&vnode->io_lock, 1) < 0) {
1438 			afs_end_vnode_operation(&fc);
1439 			goto error_key;
1440 		}
1441 
1442 		while (afs_select_fileserver(&fc)) {
1443 			fc.cb_break = dvnode->cb_break + dvnode->cb_s_break;
1444 			fc.cb_break_2 = vnode->cb_break + vnode->cb_s_break;
1445 			afs_fs_link(&fc, vnode, dentry->d_name.name, data_version);
1446 		}
1447 
1448 		afs_vnode_commit_status(&fc, dvnode, fc.cb_break);
1449 		afs_vnode_commit_status(&fc, vnode, fc.cb_break_2);
1450 		ihold(&vnode->vfs_inode);
1451 		d_instantiate(dentry, &vnode->vfs_inode);
1452 
1453 		mutex_unlock(&vnode->io_lock);
1454 		ret = afs_end_vnode_operation(&fc);
1455 		if (ret < 0)
1456 			goto error_key;
1457 	} else {
1458 		goto error_key;
1459 	}
1460 
1461 	if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1462 		afs_edit_dir_add(dvnode, &dentry->d_name, &vnode->fid,
1463 				 afs_edit_dir_for_link);
1464 
1465 	key_put(key);
1466 	_leave(" = 0");
1467 	return 0;
1468 
1469 error_key:
1470 	key_put(key);
1471 error:
1472 	d_drop(dentry);
1473 	_leave(" = %d", ret);
1474 	return ret;
1475 }
1476 
1477 /*
1478  * create a symlink in an AFS filesystem
1479  */
1480 static int afs_symlink(struct inode *dir, struct dentry *dentry,
1481 		       const char *content)
1482 {
1483 	struct afs_fs_cursor fc;
1484 	struct afs_file_status newstatus;
1485 	struct afs_vnode *dvnode = AFS_FS_I(dir);
1486 	struct afs_fid newfid;
1487 	struct key *key;
1488 	u64 data_version = dvnode->status.data_version;
1489 	int ret;
1490 
1491 	_enter("{%x:%u},{%pd},%s",
1492 	       dvnode->fid.vid, dvnode->fid.vnode, dentry,
1493 	       content);
1494 
1495 	ret = -ENAMETOOLONG;
1496 	if (dentry->d_name.len >= AFSNAMEMAX)
1497 		goto error;
1498 
1499 	ret = -EINVAL;
1500 	if (strlen(content) >= AFSPATHMAX)
1501 		goto error;
1502 
1503 	key = afs_request_key(dvnode->volume->cell);
1504 	if (IS_ERR(key)) {
1505 		ret = PTR_ERR(key);
1506 		goto error;
1507 	}
1508 
1509 	ret = -ERESTARTSYS;
1510 	if (afs_begin_vnode_operation(&fc, dvnode, key)) {
1511 		while (afs_select_fileserver(&fc)) {
1512 			fc.cb_break = dvnode->cb_break + dvnode->cb_s_break;
1513 			afs_fs_symlink(&fc, dentry->d_name.name,
1514 				       content, data_version,
1515 				       &newfid, &newstatus);
1516 		}
1517 
1518 		afs_check_for_remote_deletion(&fc, fc.vnode);
1519 		afs_vnode_commit_status(&fc, dvnode, fc.cb_break);
1520 		afs_vnode_new_inode(&fc, dentry, &newfid, &newstatus, NULL);
1521 		ret = afs_end_vnode_operation(&fc);
1522 		if (ret < 0)
1523 			goto error_key;
1524 	} else {
1525 		goto error_key;
1526 	}
1527 
1528 	if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1529 		afs_edit_dir_add(dvnode, &dentry->d_name, &newfid,
1530 				 afs_edit_dir_for_symlink);
1531 
1532 	key_put(key);
1533 	_leave(" = 0");
1534 	return 0;
1535 
1536 error_key:
1537 	key_put(key);
1538 error:
1539 	d_drop(dentry);
1540 	_leave(" = %d", ret);
1541 	return ret;
1542 }
1543 
1544 /*
1545  * rename a file in an AFS filesystem and/or move it between directories
1546  */
1547 static int afs_rename(struct inode *old_dir, struct dentry *old_dentry,
1548 		      struct inode *new_dir, struct dentry *new_dentry,
1549 		      unsigned int flags)
1550 {
1551 	struct afs_fs_cursor fc;
1552 	struct afs_vnode *orig_dvnode, *new_dvnode, *vnode;
1553 	struct key *key;
1554 	u64 orig_data_version, new_data_version;
1555 	bool new_negative = d_is_negative(new_dentry);
1556 	int ret;
1557 
1558 	if (flags)
1559 		return -EINVAL;
1560 
1561 	vnode = AFS_FS_I(d_inode(old_dentry));
1562 	orig_dvnode = AFS_FS_I(old_dir);
1563 	new_dvnode = AFS_FS_I(new_dir);
1564 	orig_data_version = orig_dvnode->status.data_version;
1565 	new_data_version = new_dvnode->status.data_version;
1566 
1567 	_enter("{%x:%u},{%x:%u},{%x:%u},{%pd}",
1568 	       orig_dvnode->fid.vid, orig_dvnode->fid.vnode,
1569 	       vnode->fid.vid, vnode->fid.vnode,
1570 	       new_dvnode->fid.vid, new_dvnode->fid.vnode,
1571 	       new_dentry);
1572 
1573 	key = afs_request_key(orig_dvnode->volume->cell);
1574 	if (IS_ERR(key)) {
1575 		ret = PTR_ERR(key);
1576 		goto error;
1577 	}
1578 
1579 	ret = -ERESTARTSYS;
1580 	if (afs_begin_vnode_operation(&fc, orig_dvnode, key)) {
1581 		if (orig_dvnode != new_dvnode) {
1582 			if (mutex_lock_interruptible_nested(&new_dvnode->io_lock, 1) < 0) {
1583 				afs_end_vnode_operation(&fc);
1584 				goto error_key;
1585 			}
1586 		}
1587 		while (afs_select_fileserver(&fc)) {
1588 			fc.cb_break = orig_dvnode->cb_break + orig_dvnode->cb_s_break;
1589 			fc.cb_break_2 = new_dvnode->cb_break + new_dvnode->cb_s_break;
1590 			afs_fs_rename(&fc, old_dentry->d_name.name,
1591 				      new_dvnode, new_dentry->d_name.name,
1592 				      orig_data_version, new_data_version);
1593 		}
1594 
1595 		afs_vnode_commit_status(&fc, orig_dvnode, fc.cb_break);
1596 		afs_vnode_commit_status(&fc, new_dvnode, fc.cb_break_2);
1597 		if (orig_dvnode != new_dvnode)
1598 			mutex_unlock(&new_dvnode->io_lock);
1599 		ret = afs_end_vnode_operation(&fc);
1600 		if (ret < 0)
1601 			goto error_key;
1602 	}
1603 
1604 	if (ret == 0) {
1605 		if (test_bit(AFS_VNODE_DIR_VALID, &orig_dvnode->flags))
1606 		    afs_edit_dir_remove(orig_dvnode, &old_dentry->d_name,
1607 					afs_edit_dir_for_rename);
1608 
1609 		if (!new_negative &&
1610 		    test_bit(AFS_VNODE_DIR_VALID, &new_dvnode->flags))
1611 			afs_edit_dir_remove(new_dvnode, &new_dentry->d_name,
1612 					    afs_edit_dir_for_rename);
1613 
1614 		if (test_bit(AFS_VNODE_DIR_VALID, &new_dvnode->flags))
1615 			afs_edit_dir_add(new_dvnode, &new_dentry->d_name,
1616 					 &vnode->fid,  afs_edit_dir_for_rename);
1617 	}
1618 
1619 error_key:
1620 	key_put(key);
1621 error:
1622 	_leave(" = %d", ret);
1623 	return ret;
1624 }
1625 
1626 /*
1627  * Release a directory page and clean up its private state if it's not busy
1628  * - return true if the page can now be released, false if not
1629  */
1630 static int afs_dir_releasepage(struct page *page, gfp_t gfp_flags)
1631 {
1632 	struct afs_vnode *dvnode = AFS_FS_I(page->mapping->host);
1633 
1634 	_enter("{{%x:%u}[%lu]}", dvnode->fid.vid, dvnode->fid.vnode, page->index);
1635 
1636 	set_page_private(page, 0);
1637 	ClearPagePrivate(page);
1638 
1639 	/* The directory will need reloading. */
1640 	if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1641 		afs_stat_v(dvnode, n_relpg);
1642 	return 1;
1643 }
1644 
1645 /*
1646  * invalidate part or all of a page
1647  * - release a page and clean up its private data if offset is 0 (indicating
1648  *   the entire page)
1649  */
1650 static void afs_dir_invalidatepage(struct page *page, unsigned int offset,
1651 				   unsigned int length)
1652 {
1653 	struct afs_vnode *dvnode = AFS_FS_I(page->mapping->host);
1654 
1655 	_enter("{%lu},%u,%u", page->index, offset, length);
1656 
1657 	BUG_ON(!PageLocked(page));
1658 
1659 	/* The directory will need reloading. */
1660 	if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1661 		afs_stat_v(dvnode, n_inval);
1662 
1663 	/* we clean up only if the entire page is being invalidated */
1664 	if (offset == 0 && length == PAGE_SIZE) {
1665 		set_page_private(page, 0);
1666 		ClearPagePrivate(page);
1667 	}
1668 }
1669