xref: /linux/fs/afs/dir.c (revision a97f9c8fcc6ed16f956346368fde3b1198163f6c)
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /* dir.c: AFS filesystem directory handling
3  *
4  * Copyright (C) 2002, 2018 Red Hat, Inc. All Rights Reserved.
5  * Written by David Howells (dhowells@redhat.com)
6  */
7 
8 #include <linux/kernel.h>
9 #include <linux/fs.h>
10 #include <linux/namei.h>
11 #include <linux/pagemap.h>
12 #include <linux/swap.h>
13 #include <linux/ctype.h>
14 #include <linux/sched.h>
15 #include <linux/task_io_accounting_ops.h>
16 #include "internal.h"
17 #include "afs_fs.h"
18 #include "xdr_fs.h"
19 
20 static struct dentry *afs_lookup(struct inode *dir, struct dentry *dentry,
21 				 unsigned int flags);
22 static int afs_dir_open(struct inode *inode, struct file *file);
23 static int afs_readdir(struct file *file, struct dir_context *ctx);
24 static int afs_d_revalidate(struct dentry *dentry, unsigned int flags);
25 static int afs_d_delete(const struct dentry *dentry);
26 static void afs_d_iput(struct dentry *dentry, struct inode *inode);
27 static bool afs_lookup_one_filldir(struct dir_context *ctx, const char *name, int nlen,
28 				  loff_t fpos, u64 ino, unsigned dtype);
29 static bool afs_lookup_filldir(struct dir_context *ctx, const char *name, int nlen,
30 			      loff_t fpos, u64 ino, unsigned dtype);
31 static int afs_create(struct mnt_idmap *idmap, struct inode *dir,
32 		      struct dentry *dentry, umode_t mode, bool excl);
33 static int afs_mkdir(struct mnt_idmap *idmap, struct inode *dir,
34 		     struct dentry *dentry, umode_t mode);
35 static int afs_rmdir(struct inode *dir, struct dentry *dentry);
36 static int afs_unlink(struct inode *dir, struct dentry *dentry);
37 static int afs_link(struct dentry *from, struct inode *dir,
38 		    struct dentry *dentry);
39 static int afs_symlink(struct mnt_idmap *idmap, struct inode *dir,
40 		       struct dentry *dentry, const char *content);
41 static int afs_rename(struct mnt_idmap *idmap, struct inode *old_dir,
42 		      struct dentry *old_dentry, struct inode *new_dir,
43 		      struct dentry *new_dentry, unsigned int flags);
44 static bool afs_dir_release_folio(struct folio *folio, gfp_t gfp_flags);
45 static void afs_dir_invalidate_folio(struct folio *folio, size_t offset,
46 				   size_t length);
47 
48 static bool afs_dir_dirty_folio(struct address_space *mapping,
49 		struct folio *folio)
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 };
75 
76 const struct address_space_operations afs_dir_aops = {
77 	.dirty_folio	= afs_dir_dirty_folio,
78 	.release_folio	= afs_dir_release_folio,
79 	.invalidate_folio = afs_dir_invalidate_folio,
80 	.migrate_folio	= filemap_migrate_folio,
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 	.d_iput		= afs_d_iput,
89 };
90 
91 struct afs_lookup_one_cookie {
92 	struct dir_context	ctx;
93 	struct qstr		name;
94 	bool			found;
95 	struct afs_fid		fid;
96 };
97 
98 struct afs_lookup_cookie {
99 	struct dir_context	ctx;
100 	struct qstr		name;
101 	bool			found;
102 	bool			one_only;
103 	unsigned short		nr_fids;
104 	struct afs_fid		fids[50];
105 };
106 
107 /*
108  * Drop the refs that we're holding on the folios we were reading into.  We've
109  * got refs on the first nr_pages pages.
110  */
111 static void afs_dir_read_cleanup(struct afs_read *req)
112 {
113 	struct address_space *mapping = req->vnode->netfs.inode.i_mapping;
114 	struct folio *folio;
115 	pgoff_t last = req->nr_pages - 1;
116 
117 	XA_STATE(xas, &mapping->i_pages, 0);
118 
119 	if (unlikely(!req->nr_pages))
120 		return;
121 
122 	rcu_read_lock();
123 	xas_for_each(&xas, folio, last) {
124 		if (xas_retry(&xas, folio))
125 			continue;
126 		BUG_ON(xa_is_value(folio));
127 		ASSERTCMP(folio->mapping, ==, mapping);
128 
129 		folio_put(folio);
130 	}
131 
132 	rcu_read_unlock();
133 }
134 
135 /*
136  * check that a directory folio is valid
137  */
138 static bool afs_dir_check_folio(struct afs_vnode *dvnode, struct folio *folio,
139 				loff_t i_size)
140 {
141 	union afs_xdr_dir_block *block;
142 	size_t offset, size;
143 	loff_t pos;
144 
145 	/* Determine how many magic numbers there should be in this folio, but
146 	 * we must take care because the directory may change size under us.
147 	 */
148 	pos = folio_pos(folio);
149 	if (i_size <= pos)
150 		goto checked;
151 
152 	size = min_t(loff_t, folio_size(folio), i_size - pos);
153 	for (offset = 0; offset < size; offset += sizeof(*block)) {
154 		block = kmap_local_folio(folio, offset);
155 		if (block->hdr.magic != AFS_DIR_MAGIC) {
156 			printk("kAFS: %s(%lx): [%llx] bad magic %zx/%zx is %04hx\n",
157 			       __func__, dvnode->netfs.inode.i_ino,
158 			       pos, offset, size, ntohs(block->hdr.magic));
159 			trace_afs_dir_check_failed(dvnode, pos + offset, i_size);
160 			kunmap_local(block);
161 			trace_afs_file_error(dvnode, -EIO, afs_file_error_dir_bad_magic);
162 			goto error;
163 		}
164 
165 		/* Make sure each block is NUL terminated so we can reasonably
166 		 * use string functions on it.  The filenames in the folio
167 		 * *should* be NUL-terminated anyway.
168 		 */
169 		((u8 *)block)[AFS_DIR_BLOCK_SIZE - 1] = 0;
170 
171 		kunmap_local(block);
172 	}
173 checked:
174 	afs_stat_v(dvnode, n_read_dir);
175 	return true;
176 
177 error:
178 	return false;
179 }
180 
181 /*
182  * Dump the contents of a directory.
183  */
184 static void afs_dir_dump(struct afs_vnode *dvnode, struct afs_read *req)
185 {
186 	union afs_xdr_dir_block *block;
187 	struct address_space *mapping = dvnode->netfs.inode.i_mapping;
188 	struct folio *folio;
189 	pgoff_t last = req->nr_pages - 1;
190 	size_t offset, size;
191 
192 	XA_STATE(xas, &mapping->i_pages, 0);
193 
194 	pr_warn("DIR %llx:%llx f=%llx l=%llx al=%llx\n",
195 		dvnode->fid.vid, dvnode->fid.vnode,
196 		req->file_size, req->len, req->actual_len);
197 	pr_warn("DIR %llx %x %zx %zx\n",
198 		req->pos, req->nr_pages,
199 		req->iter->iov_offset,  iov_iter_count(req->iter));
200 
201 	xas_for_each(&xas, folio, last) {
202 		if (xas_retry(&xas, folio))
203 			continue;
204 
205 		BUG_ON(folio->mapping != mapping);
206 
207 		size = min_t(loff_t, folio_size(folio), req->actual_len - folio_pos(folio));
208 		for (offset = 0; offset < size; offset += sizeof(*block)) {
209 			block = kmap_local_folio(folio, offset);
210 			pr_warn("[%02lx] %32phN\n", folio->index + offset, block);
211 			kunmap_local(block);
212 		}
213 	}
214 }
215 
216 /*
217  * Check all the blocks in a directory.  All the folios are held pinned.
218  */
219 static int afs_dir_check(struct afs_vnode *dvnode, struct afs_read *req)
220 {
221 	struct address_space *mapping = dvnode->netfs.inode.i_mapping;
222 	struct folio *folio;
223 	pgoff_t last = req->nr_pages - 1;
224 	int ret = 0;
225 
226 	XA_STATE(xas, &mapping->i_pages, 0);
227 
228 	if (unlikely(!req->nr_pages))
229 		return 0;
230 
231 	rcu_read_lock();
232 	xas_for_each(&xas, folio, last) {
233 		if (xas_retry(&xas, folio))
234 			continue;
235 
236 		BUG_ON(folio->mapping != mapping);
237 
238 		if (!afs_dir_check_folio(dvnode, folio, req->actual_len)) {
239 			afs_dir_dump(dvnode, req);
240 			ret = -EIO;
241 			break;
242 		}
243 	}
244 
245 	rcu_read_unlock();
246 	return ret;
247 }
248 
249 /*
250  * open an AFS directory file
251  */
252 static int afs_dir_open(struct inode *inode, struct file *file)
253 {
254 	_enter("{%lu}", inode->i_ino);
255 
256 	BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
257 	BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
258 
259 	if (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(inode)->flags))
260 		return -ENOENT;
261 
262 	return afs_open(inode, file);
263 }
264 
265 /*
266  * Read the directory into the pagecache in one go, scrubbing the previous
267  * contents.  The list of folios is returned, pinning them so that they don't
268  * get reclaimed during the iteration.
269  */
270 static struct afs_read *afs_read_dir(struct afs_vnode *dvnode, struct key *key)
271 	__acquires(&dvnode->validate_lock)
272 {
273 	struct address_space *mapping = dvnode->netfs.inode.i_mapping;
274 	struct afs_read *req;
275 	loff_t i_size;
276 	int nr_pages, i;
277 	int ret;
278 	loff_t remote_size = 0;
279 
280 	_enter("");
281 
282 	req = kzalloc(sizeof(*req), GFP_KERNEL);
283 	if (!req)
284 		return ERR_PTR(-ENOMEM);
285 
286 	refcount_set(&req->usage, 1);
287 	req->vnode = dvnode;
288 	req->key = key_get(key);
289 	req->cleanup = afs_dir_read_cleanup;
290 
291 expand:
292 	i_size = i_size_read(&dvnode->netfs.inode);
293 	if (i_size < remote_size)
294 	    i_size = remote_size;
295 	if (i_size < 2048) {
296 		ret = afs_bad(dvnode, afs_file_error_dir_small);
297 		goto error;
298 	}
299 	if (i_size > 2048 * 1024) {
300 		trace_afs_file_error(dvnode, -EFBIG, afs_file_error_dir_big);
301 		ret = -EFBIG;
302 		goto error;
303 	}
304 
305 	_enter("%llu", i_size);
306 
307 	nr_pages = (i_size + PAGE_SIZE - 1) / PAGE_SIZE;
308 
309 	req->actual_len = i_size; /* May change */
310 	req->len = nr_pages * PAGE_SIZE; /* We can ask for more than there is */
311 	req->data_version = dvnode->status.data_version; /* May change */
312 	iov_iter_xarray(&req->def_iter, ITER_DEST, &dvnode->netfs.inode.i_mapping->i_pages,
313 			0, i_size);
314 	req->iter = &req->def_iter;
315 
316 	/* Fill in any gaps that we might find where the memory reclaimer has
317 	 * been at work and pin all the folios.  If there are any gaps, we will
318 	 * need to reread the entire directory contents.
319 	 */
320 	i = req->nr_pages;
321 	while (i < nr_pages) {
322 		struct folio *folio;
323 
324 		folio = filemap_get_folio(mapping, i);
325 		if (IS_ERR(folio)) {
326 			if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
327 				afs_stat_v(dvnode, n_inval);
328 			folio = __filemap_get_folio(mapping,
329 						    i, FGP_LOCK | FGP_CREAT,
330 						    mapping->gfp_mask);
331 			if (IS_ERR(folio)) {
332 				ret = PTR_ERR(folio);
333 				goto error;
334 			}
335 			folio_attach_private(folio, (void *)1);
336 			folio_unlock(folio);
337 		}
338 
339 		req->nr_pages += folio_nr_pages(folio);
340 		i += folio_nr_pages(folio);
341 	}
342 
343 	/* If we're going to reload, we need to lock all the pages to prevent
344 	 * races.
345 	 */
346 	ret = -ERESTARTSYS;
347 	if (down_read_killable(&dvnode->validate_lock) < 0)
348 		goto error;
349 
350 	if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
351 		goto success;
352 
353 	up_read(&dvnode->validate_lock);
354 	if (down_write_killable(&dvnode->validate_lock) < 0)
355 		goto error;
356 
357 	if (!test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags)) {
358 		trace_afs_reload_dir(dvnode);
359 		ret = afs_fetch_data(dvnode, req);
360 		if (ret < 0)
361 			goto error_unlock;
362 
363 		task_io_account_read(PAGE_SIZE * req->nr_pages);
364 
365 		if (req->len < req->file_size) {
366 			/* The content has grown, so we need to expand the
367 			 * buffer.
368 			 */
369 			up_write(&dvnode->validate_lock);
370 			remote_size = req->file_size;
371 			goto expand;
372 		}
373 
374 		/* Validate the data we just read. */
375 		ret = afs_dir_check(dvnode, req);
376 		if (ret < 0)
377 			goto error_unlock;
378 
379 		// TODO: Trim excess pages
380 
381 		set_bit(AFS_VNODE_DIR_VALID, &dvnode->flags);
382 	}
383 
384 	downgrade_write(&dvnode->validate_lock);
385 success:
386 	return req;
387 
388 error_unlock:
389 	up_write(&dvnode->validate_lock);
390 error:
391 	afs_put_read(req);
392 	_leave(" = %d", ret);
393 	return ERR_PTR(ret);
394 }
395 
396 /*
397  * deal with one block in an AFS directory
398  */
399 static int afs_dir_iterate_block(struct afs_vnode *dvnode,
400 				 struct dir_context *ctx,
401 				 union afs_xdr_dir_block *block,
402 				 unsigned blkoff)
403 {
404 	union afs_xdr_dirent *dire;
405 	unsigned offset, next, curr, nr_slots;
406 	size_t nlen;
407 	int tmp;
408 
409 	_enter("%llx,%x", ctx->pos, blkoff);
410 
411 	curr = (ctx->pos - blkoff) / sizeof(union afs_xdr_dirent);
412 
413 	/* walk through the block, an entry at a time */
414 	for (offset = (blkoff == 0 ? AFS_DIR_RESV_BLOCKS0 : AFS_DIR_RESV_BLOCKS);
415 	     offset < AFS_DIR_SLOTS_PER_BLOCK;
416 	     offset = next
417 	     ) {
418 		/* skip entries marked unused in the bitmap */
419 		if (!(block->hdr.bitmap[offset / 8] &
420 		      (1 << (offset % 8)))) {
421 			_debug("ENT[%zu.%u]: unused",
422 			       blkoff / sizeof(union afs_xdr_dir_block), offset);
423 			next = offset + 1;
424 			if (offset >= curr)
425 				ctx->pos = blkoff +
426 					next * sizeof(union afs_xdr_dirent);
427 			continue;
428 		}
429 
430 		/* got a valid entry */
431 		dire = &block->dirents[offset];
432 		nlen = strnlen(dire->u.name,
433 			       sizeof(*block) -
434 			       offset * sizeof(union afs_xdr_dirent));
435 		if (nlen > AFSNAMEMAX - 1) {
436 			_debug("ENT[%zu]: name too long (len %u/%zu)",
437 			       blkoff / sizeof(union afs_xdr_dir_block),
438 			       offset, nlen);
439 			return afs_bad(dvnode, afs_file_error_dir_name_too_long);
440 		}
441 
442 		_debug("ENT[%zu.%u]: %s %zu \"%s\"",
443 		       blkoff / sizeof(union afs_xdr_dir_block), offset,
444 		       (offset < curr ? "skip" : "fill"),
445 		       nlen, dire->u.name);
446 
447 		nr_slots = afs_dir_calc_slots(nlen);
448 		next = offset + nr_slots;
449 		if (next > AFS_DIR_SLOTS_PER_BLOCK) {
450 			_debug("ENT[%zu.%u]:"
451 			       " %u extends beyond end dir block"
452 			       " (len %zu)",
453 			       blkoff / sizeof(union afs_xdr_dir_block),
454 			       offset, next, nlen);
455 			return afs_bad(dvnode, afs_file_error_dir_over_end);
456 		}
457 
458 		/* Check that the name-extension dirents are all allocated */
459 		for (tmp = 1; tmp < nr_slots; tmp++) {
460 			unsigned int ix = offset + tmp;
461 			if (!(block->hdr.bitmap[ix / 8] & (1 << (ix % 8)))) {
462 				_debug("ENT[%zu.u]:"
463 				       " %u unmarked extension (%u/%u)",
464 				       blkoff / sizeof(union afs_xdr_dir_block),
465 				       offset, tmp, nr_slots);
466 				return afs_bad(dvnode, afs_file_error_dir_unmarked_ext);
467 			}
468 		}
469 
470 		/* skip if starts before the current position */
471 		if (offset < curr) {
472 			if (next > curr)
473 				ctx->pos = blkoff + next * sizeof(union afs_xdr_dirent);
474 			continue;
475 		}
476 
477 		/* Don't expose silly rename entries to userspace. */
478 		if (nlen > 6 &&
479 		    dire->u.name[0] == '.' &&
480 		    ctx->actor != afs_lookup_filldir &&
481 		    ctx->actor != afs_lookup_one_filldir &&
482 		    memcmp(dire->u.name, ".__afs", 6) == 0) {
483 			ctx->pos = blkoff + next * sizeof(union afs_xdr_dirent);
484 			continue;
485 		}
486 
487 		/* found the next entry */
488 		if (!dir_emit(ctx, dire->u.name, nlen,
489 			      ntohl(dire->u.vnode),
490 			      (ctx->actor == afs_lookup_filldir ||
491 			       ctx->actor == afs_lookup_one_filldir)?
492 			      ntohl(dire->u.unique) : DT_UNKNOWN)) {
493 			_leave(" = 0 [full]");
494 			return 0;
495 		}
496 
497 		ctx->pos = blkoff + next * sizeof(union afs_xdr_dirent);
498 	}
499 
500 	_leave(" = 1 [more]");
501 	return 1;
502 }
503 
504 /*
505  * iterate through the data blob that lists the contents of an AFS directory
506  */
507 static int afs_dir_iterate(struct inode *dir, struct dir_context *ctx,
508 			   struct key *key, afs_dataversion_t *_dir_version)
509 {
510 	struct afs_vnode *dvnode = AFS_FS_I(dir);
511 	union afs_xdr_dir_block *dblock;
512 	struct afs_read *req;
513 	struct folio *folio;
514 	unsigned offset, size;
515 	int ret;
516 
517 	_enter("{%lu},%u,,", dir->i_ino, (unsigned)ctx->pos);
518 
519 	if (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(dir)->flags)) {
520 		_leave(" = -ESTALE");
521 		return -ESTALE;
522 	}
523 
524 	req = afs_read_dir(dvnode, key);
525 	if (IS_ERR(req))
526 		return PTR_ERR(req);
527 	*_dir_version = req->data_version;
528 
529 	/* round the file position up to the next entry boundary */
530 	ctx->pos += sizeof(union afs_xdr_dirent) - 1;
531 	ctx->pos &= ~(sizeof(union afs_xdr_dirent) - 1);
532 
533 	/* walk through the blocks in sequence */
534 	ret = 0;
535 	while (ctx->pos < req->actual_len) {
536 		/* Fetch the appropriate folio from the directory and re-add it
537 		 * to the LRU.  We have all the pages pinned with an extra ref.
538 		 */
539 		folio = __filemap_get_folio(dir->i_mapping, ctx->pos / PAGE_SIZE,
540 					    FGP_ACCESSED, 0);
541 		if (IS_ERR(folio)) {
542 			ret = afs_bad(dvnode, afs_file_error_dir_missing_page);
543 			break;
544 		}
545 
546 		offset = round_down(ctx->pos, sizeof(*dblock)) - folio_file_pos(folio);
547 		size = min_t(loff_t, folio_size(folio),
548 			     req->actual_len - folio_file_pos(folio));
549 
550 		do {
551 			dblock = kmap_local_folio(folio, offset);
552 			ret = afs_dir_iterate_block(dvnode, ctx, dblock,
553 						    folio_file_pos(folio) + offset);
554 			kunmap_local(dblock);
555 			if (ret != 1)
556 				goto out;
557 
558 		} while (offset += sizeof(*dblock), offset < size);
559 
560 		ret = 0;
561 	}
562 
563 out:
564 	up_read(&dvnode->validate_lock);
565 	afs_put_read(req);
566 	_leave(" = %d", ret);
567 	return ret;
568 }
569 
570 /*
571  * read an AFS directory
572  */
573 static int afs_readdir(struct file *file, struct dir_context *ctx)
574 {
575 	afs_dataversion_t dir_version;
576 
577 	return afs_dir_iterate(file_inode(file), ctx, afs_file_key(file),
578 			       &dir_version);
579 }
580 
581 /*
582  * Search the directory for a single name
583  * - if afs_dir_iterate_block() spots this function, it'll pass the FID
584  *   uniquifier through dtype
585  */
586 static bool afs_lookup_one_filldir(struct dir_context *ctx, const char *name,
587 				  int nlen, loff_t fpos, u64 ino, unsigned dtype)
588 {
589 	struct afs_lookup_one_cookie *cookie =
590 		container_of(ctx, struct afs_lookup_one_cookie, ctx);
591 
592 	_enter("{%s,%u},%s,%u,,%llu,%u",
593 	       cookie->name.name, cookie->name.len, name, nlen,
594 	       (unsigned long long) ino, dtype);
595 
596 	/* insanity checks first */
597 	BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
598 	BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
599 
600 	if (cookie->name.len != nlen ||
601 	    memcmp(cookie->name.name, name, nlen) != 0) {
602 		_leave(" = true [keep looking]");
603 		return true;
604 	}
605 
606 	cookie->fid.vnode = ino;
607 	cookie->fid.unique = dtype;
608 	cookie->found = 1;
609 
610 	_leave(" = false [found]");
611 	return false;
612 }
613 
614 /*
615  * Do a lookup of a single name in a directory
616  * - just returns the FID the dentry name maps to if found
617  */
618 static int afs_do_lookup_one(struct inode *dir, struct dentry *dentry,
619 			     struct afs_fid *fid, struct key *key,
620 			     afs_dataversion_t *_dir_version)
621 {
622 	struct afs_super_info *as = dir->i_sb->s_fs_info;
623 	struct afs_lookup_one_cookie cookie = {
624 		.ctx.actor = afs_lookup_one_filldir,
625 		.name = dentry->d_name,
626 		.fid.vid = as->volume->vid
627 	};
628 	int ret;
629 
630 	_enter("{%lu},%p{%pd},", dir->i_ino, dentry, dentry);
631 
632 	/* search the directory */
633 	ret = afs_dir_iterate(dir, &cookie.ctx, key, _dir_version);
634 	if (ret < 0) {
635 		_leave(" = %d [iter]", ret);
636 		return ret;
637 	}
638 
639 	if (!cookie.found) {
640 		_leave(" = -ENOENT [not found]");
641 		return -ENOENT;
642 	}
643 
644 	*fid = cookie.fid;
645 	_leave(" = 0 { vn=%llu u=%u }", fid->vnode, fid->unique);
646 	return 0;
647 }
648 
649 /*
650  * search the directory for a name
651  * - if afs_dir_iterate_block() spots this function, it'll pass the FID
652  *   uniquifier through dtype
653  */
654 static bool afs_lookup_filldir(struct dir_context *ctx, const char *name,
655 			      int nlen, loff_t fpos, u64 ino, unsigned dtype)
656 {
657 	struct afs_lookup_cookie *cookie =
658 		container_of(ctx, struct afs_lookup_cookie, ctx);
659 
660 	_enter("{%s,%u},%s,%u,,%llu,%u",
661 	       cookie->name.name, cookie->name.len, name, nlen,
662 	       (unsigned long long) ino, dtype);
663 
664 	/* insanity checks first */
665 	BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
666 	BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
667 
668 	if (cookie->found) {
669 		if (cookie->nr_fids < 50) {
670 			cookie->fids[cookie->nr_fids].vnode	= ino;
671 			cookie->fids[cookie->nr_fids].unique	= dtype;
672 			cookie->nr_fids++;
673 		}
674 	} else if (cookie->name.len == nlen &&
675 		   memcmp(cookie->name.name, name, nlen) == 0) {
676 		cookie->fids[1].vnode	= ino;
677 		cookie->fids[1].unique	= dtype;
678 		cookie->found = 1;
679 		if (cookie->one_only)
680 			return false;
681 	}
682 
683 	return cookie->nr_fids < 50;
684 }
685 
686 /*
687  * Deal with the result of a successful lookup operation.  Turn all the files
688  * into inodes and save the first one - which is the one we actually want.
689  */
690 static void afs_do_lookup_success(struct afs_operation *op)
691 {
692 	struct afs_vnode_param *vp;
693 	struct afs_vnode *vnode;
694 	struct inode *inode;
695 	u32 abort_code;
696 	int i;
697 
698 	_enter("");
699 
700 	for (i = 0; i < op->nr_files; i++) {
701 		switch (i) {
702 		case 0:
703 			vp = &op->file[0];
704 			abort_code = vp->scb.status.abort_code;
705 			if (abort_code != 0) {
706 				op->call_abort_code = abort_code;
707 				afs_op_set_error(op, afs_abort_to_error(abort_code));
708 				op->cumul_error.abort_code = abort_code;
709 			}
710 			break;
711 
712 		case 1:
713 			vp = &op->file[1];
714 			break;
715 
716 		default:
717 			vp = &op->more_files[i - 2];
718 			break;
719 		}
720 
721 		if (vp->scb.status.abort_code)
722 			trace_afs_bulkstat_error(op, &vp->fid, i, vp->scb.status.abort_code);
723 		if (!vp->scb.have_status && !vp->scb.have_error)
724 			continue;
725 
726 		_debug("do [%u]", i);
727 		if (vp->vnode) {
728 			if (!test_bit(AFS_VNODE_UNSET, &vp->vnode->flags))
729 				afs_vnode_commit_status(op, vp);
730 		} else if (vp->scb.status.abort_code == 0) {
731 			inode = afs_iget(op, vp);
732 			if (!IS_ERR(inode)) {
733 				vnode = AFS_FS_I(inode);
734 				afs_cache_permit(vnode, op->key,
735 						 0 /* Assume vnode->cb_break is 0 */ +
736 						 op->cb_v_break,
737 						 &vp->scb);
738 				vp->vnode = vnode;
739 				vp->put_vnode = true;
740 			}
741 		} else {
742 			_debug("- abort %d %llx:%llx.%x",
743 			       vp->scb.status.abort_code,
744 			       vp->fid.vid, vp->fid.vnode, vp->fid.unique);
745 		}
746 	}
747 
748 	_leave("");
749 }
750 
751 static const struct afs_operation_ops afs_inline_bulk_status_operation = {
752 	.issue_afs_rpc	= afs_fs_inline_bulk_status,
753 	.issue_yfs_rpc	= yfs_fs_inline_bulk_status,
754 	.success	= afs_do_lookup_success,
755 };
756 
757 static const struct afs_operation_ops afs_lookup_fetch_status_operation = {
758 	.issue_afs_rpc	= afs_fs_fetch_status,
759 	.issue_yfs_rpc	= yfs_fs_fetch_status,
760 	.success	= afs_do_lookup_success,
761 	.aborted	= afs_check_for_remote_deletion,
762 };
763 
764 /*
765  * See if we know that the server we expect to use doesn't support
766  * FS.InlineBulkStatus.
767  */
768 static bool afs_server_supports_ibulk(struct afs_vnode *dvnode)
769 {
770 	struct afs_server_list *slist;
771 	struct afs_volume *volume = dvnode->volume;
772 	struct afs_server *server;
773 	bool ret = true;
774 	int i;
775 
776 	if (!test_bit(AFS_VOLUME_MAYBE_NO_IBULK, &volume->flags))
777 		return true;
778 
779 	rcu_read_lock();
780 	slist = rcu_dereference(volume->servers);
781 
782 	for (i = 0; i < slist->nr_servers; i++) {
783 		server = slist->servers[i].server;
784 		if (server == dvnode->cb_server) {
785 			if (test_bit(AFS_SERVER_FL_NO_IBULK, &server->flags))
786 				ret = false;
787 			break;
788 		}
789 	}
790 
791 	rcu_read_unlock();
792 	return ret;
793 }
794 
795 /*
796  * Do a lookup in a directory.  We make use of bulk lookup to query a slew of
797  * files in one go and create inodes for them.  The inode of the file we were
798  * asked for is returned.
799  */
800 static struct inode *afs_do_lookup(struct inode *dir, struct dentry *dentry,
801 				   struct key *key)
802 {
803 	struct afs_lookup_cookie *cookie;
804 	struct afs_vnode_param *vp;
805 	struct afs_operation *op;
806 	struct afs_vnode *dvnode = AFS_FS_I(dir), *vnode;
807 	struct inode *inode = NULL, *ti;
808 	afs_dataversion_t data_version = READ_ONCE(dvnode->status.data_version);
809 	long ret;
810 	int i;
811 
812 	_enter("{%lu},%p{%pd},", dir->i_ino, dentry, dentry);
813 
814 	cookie = kzalloc(sizeof(struct afs_lookup_cookie), GFP_KERNEL);
815 	if (!cookie)
816 		return ERR_PTR(-ENOMEM);
817 
818 	for (i = 0; i < ARRAY_SIZE(cookie->fids); i++)
819 		cookie->fids[i].vid = dvnode->fid.vid;
820 	cookie->ctx.actor = afs_lookup_filldir;
821 	cookie->name = dentry->d_name;
822 	cookie->nr_fids = 2; /* slot 1 is saved for the fid we actually want
823 			      * and slot 0 for the directory */
824 
825 	if (!afs_server_supports_ibulk(dvnode))
826 		cookie->one_only = true;
827 
828 	/* search the directory */
829 	ret = afs_dir_iterate(dir, &cookie->ctx, key, &data_version);
830 	if (ret < 0)
831 		goto out;
832 
833 	dentry->d_fsdata = (void *)(unsigned long)data_version;
834 
835 	ret = -ENOENT;
836 	if (!cookie->found)
837 		goto out;
838 
839 	/* Check to see if we already have an inode for the primary fid. */
840 	inode = ilookup5(dir->i_sb, cookie->fids[1].vnode,
841 			 afs_ilookup5_test_by_fid, &cookie->fids[1]);
842 	if (inode)
843 		goto out; /* We do */
844 
845 	/* Okay, we didn't find it.  We need to query the server - and whilst
846 	 * we're doing that, we're going to attempt to look up a bunch of other
847 	 * vnodes also.
848 	 */
849 	op = afs_alloc_operation(NULL, dvnode->volume);
850 	if (IS_ERR(op)) {
851 		ret = PTR_ERR(op);
852 		goto out;
853 	}
854 
855 	afs_op_set_vnode(op, 0, dvnode);
856 	afs_op_set_fid(op, 1, &cookie->fids[1]);
857 
858 	op->nr_files = cookie->nr_fids;
859 	_debug("nr_files %u", op->nr_files);
860 
861 	/* Need space for examining all the selected files */
862 	if (op->nr_files > 2) {
863 		op->more_files = kvcalloc(op->nr_files - 2,
864 					  sizeof(struct afs_vnode_param),
865 					  GFP_KERNEL);
866 		if (!op->more_files) {
867 			afs_op_nomem(op);
868 			goto out_op;
869 		}
870 
871 		for (i = 2; i < op->nr_files; i++) {
872 			vp = &op->more_files[i - 2];
873 			vp->fid = cookie->fids[i];
874 
875 			/* Find any inodes that already exist and get their
876 			 * callback counters.
877 			 */
878 			ti = ilookup5_nowait(dir->i_sb, vp->fid.vnode,
879 					     afs_ilookup5_test_by_fid, &vp->fid);
880 			if (!IS_ERR_OR_NULL(ti)) {
881 				vnode = AFS_FS_I(ti);
882 				vp->dv_before = vnode->status.data_version;
883 				vp->cb_break_before = afs_calc_vnode_cb_break(vnode);
884 				vp->vnode = vnode;
885 				vp->put_vnode = true;
886 				vp->speculative = true; /* vnode not locked */
887 			}
888 		}
889 	}
890 
891 	/* Try FS.InlineBulkStatus first.  Abort codes for the individual
892 	 * lookups contained therein are stored in the reply without aborting
893 	 * the whole operation.
894 	 */
895 	afs_op_set_error(op, -ENOTSUPP);
896 	if (!cookie->one_only) {
897 		op->ops = &afs_inline_bulk_status_operation;
898 		afs_begin_vnode_operation(op);
899 		afs_wait_for_operation(op);
900 	}
901 
902 	if (afs_op_error(op) == -ENOTSUPP) {
903 		/* We could try FS.BulkStatus next, but this aborts the entire
904 		 * op if any of the lookups fails - so, for the moment, revert
905 		 * to FS.FetchStatus for op->file[1].
906 		 */
907 		op->fetch_status.which = 1;
908 		op->ops = &afs_lookup_fetch_status_operation;
909 		afs_begin_vnode_operation(op);
910 		afs_wait_for_operation(op);
911 	}
912 
913 out_op:
914 	if (!afs_op_error(op)) {
915 		if (op->file[1].scb.status.abort_code) {
916 			afs_op_accumulate_error(op, -ECONNABORTED,
917 						op->file[1].scb.status.abort_code);
918 		} else {
919 			inode = &op->file[1].vnode->netfs.inode;
920 			op->file[1].vnode = NULL;
921 		}
922 	}
923 
924 	if (op->file[0].scb.have_status)
925 		dentry->d_fsdata = (void *)(unsigned long)op->file[0].scb.status.data_version;
926 	else
927 		dentry->d_fsdata = (void *)(unsigned long)op->file[0].dv_before;
928 	ret = afs_put_operation(op);
929 out:
930 	kfree(cookie);
931 	_leave("");
932 	return inode ?: ERR_PTR(ret);
933 }
934 
935 /*
936  * Look up an entry in a directory with @sys substitution.
937  */
938 static struct dentry *afs_lookup_atsys(struct inode *dir, struct dentry *dentry,
939 				       struct key *key)
940 {
941 	struct afs_sysnames *subs;
942 	struct afs_net *net = afs_i2net(dir);
943 	struct dentry *ret;
944 	char *buf, *p, *name;
945 	int len, i;
946 
947 	_enter("");
948 
949 	ret = ERR_PTR(-ENOMEM);
950 	p = buf = kmalloc(AFSNAMEMAX, GFP_KERNEL);
951 	if (!buf)
952 		goto out_p;
953 	if (dentry->d_name.len > 4) {
954 		memcpy(p, dentry->d_name.name, dentry->d_name.len - 4);
955 		p += dentry->d_name.len - 4;
956 	}
957 
958 	/* There is an ordered list of substitutes that we have to try. */
959 	read_lock(&net->sysnames_lock);
960 	subs = net->sysnames;
961 	refcount_inc(&subs->usage);
962 	read_unlock(&net->sysnames_lock);
963 
964 	for (i = 0; i < subs->nr; i++) {
965 		name = subs->subs[i];
966 		len = dentry->d_name.len - 4 + strlen(name);
967 		if (len >= AFSNAMEMAX) {
968 			ret = ERR_PTR(-ENAMETOOLONG);
969 			goto out_s;
970 		}
971 
972 		strcpy(p, name);
973 		ret = lookup_one_len(buf, dentry->d_parent, len);
974 		if (IS_ERR(ret) || d_is_positive(ret))
975 			goto out_s;
976 		dput(ret);
977 	}
978 
979 	/* We don't want to d_add() the @sys dentry here as we don't want to
980 	 * the cached dentry to hide changes to the sysnames list.
981 	 */
982 	ret = NULL;
983 out_s:
984 	afs_put_sysnames(subs);
985 	kfree(buf);
986 out_p:
987 	key_put(key);
988 	return ret;
989 }
990 
991 /*
992  * look up an entry in a directory
993  */
994 static struct dentry *afs_lookup(struct inode *dir, struct dentry *dentry,
995 				 unsigned int flags)
996 {
997 	struct afs_vnode *dvnode = AFS_FS_I(dir);
998 	struct afs_fid fid = {};
999 	struct inode *inode;
1000 	struct dentry *d;
1001 	struct key *key;
1002 	int ret;
1003 
1004 	_enter("{%llx:%llu},%p{%pd},",
1005 	       dvnode->fid.vid, dvnode->fid.vnode, dentry, dentry);
1006 
1007 	ASSERTCMP(d_inode(dentry), ==, NULL);
1008 
1009 	if (dentry->d_name.len >= AFSNAMEMAX) {
1010 		_leave(" = -ENAMETOOLONG");
1011 		return ERR_PTR(-ENAMETOOLONG);
1012 	}
1013 
1014 	if (test_bit(AFS_VNODE_DELETED, &dvnode->flags)) {
1015 		_leave(" = -ESTALE");
1016 		return ERR_PTR(-ESTALE);
1017 	}
1018 
1019 	key = afs_request_key(dvnode->volume->cell);
1020 	if (IS_ERR(key)) {
1021 		_leave(" = %ld [key]", PTR_ERR(key));
1022 		return ERR_CAST(key);
1023 	}
1024 
1025 	ret = afs_validate(dvnode, key);
1026 	if (ret < 0) {
1027 		key_put(key);
1028 		_leave(" = %d [val]", ret);
1029 		return ERR_PTR(ret);
1030 	}
1031 
1032 	if (dentry->d_name.len >= 4 &&
1033 	    dentry->d_name.name[dentry->d_name.len - 4] == '@' &&
1034 	    dentry->d_name.name[dentry->d_name.len - 3] == 's' &&
1035 	    dentry->d_name.name[dentry->d_name.len - 2] == 'y' &&
1036 	    dentry->d_name.name[dentry->d_name.len - 1] == 's')
1037 		return afs_lookup_atsys(dir, dentry, key);
1038 
1039 	afs_stat_v(dvnode, n_lookup);
1040 	inode = afs_do_lookup(dir, dentry, key);
1041 	key_put(key);
1042 	if (inode == ERR_PTR(-ENOENT))
1043 		inode = afs_try_auto_mntpt(dentry, dir);
1044 
1045 	if (!IS_ERR_OR_NULL(inode))
1046 		fid = AFS_FS_I(inode)->fid;
1047 
1048 	_debug("splice %p", dentry->d_inode);
1049 	d = d_splice_alias(inode, dentry);
1050 	if (!IS_ERR_OR_NULL(d)) {
1051 		d->d_fsdata = dentry->d_fsdata;
1052 		trace_afs_lookup(dvnode, &d->d_name, &fid);
1053 	} else {
1054 		trace_afs_lookup(dvnode, &dentry->d_name, &fid);
1055 	}
1056 	_leave("");
1057 	return d;
1058 }
1059 
1060 /*
1061  * Check the validity of a dentry under RCU conditions.
1062  */
1063 static int afs_d_revalidate_rcu(struct dentry *dentry)
1064 {
1065 	struct afs_vnode *dvnode;
1066 	struct dentry *parent;
1067 	struct inode *dir;
1068 	long dir_version, de_version;
1069 
1070 	_enter("%p", dentry);
1071 
1072 	/* Check the parent directory is still valid first. */
1073 	parent = READ_ONCE(dentry->d_parent);
1074 	dir = d_inode_rcu(parent);
1075 	if (!dir)
1076 		return -ECHILD;
1077 	dvnode = AFS_FS_I(dir);
1078 	if (test_bit(AFS_VNODE_DELETED, &dvnode->flags))
1079 		return -ECHILD;
1080 
1081 	if (!afs_check_validity(dvnode))
1082 		return -ECHILD;
1083 
1084 	/* We only need to invalidate a dentry if the server's copy changed
1085 	 * behind our back.  If we made the change, it's no problem.  Note that
1086 	 * on a 32-bit system, we only have 32 bits in the dentry to store the
1087 	 * version.
1088 	 */
1089 	dir_version = (long)READ_ONCE(dvnode->status.data_version);
1090 	de_version = (long)READ_ONCE(dentry->d_fsdata);
1091 	if (de_version != dir_version) {
1092 		dir_version = (long)READ_ONCE(dvnode->invalid_before);
1093 		if (de_version - dir_version < 0)
1094 			return -ECHILD;
1095 	}
1096 
1097 	return 1; /* Still valid */
1098 }
1099 
1100 /*
1101  * check that a dentry lookup hit has found a valid entry
1102  * - NOTE! the hit can be a negative hit too, so we can't assume we have an
1103  *   inode
1104  */
1105 static int afs_d_revalidate(struct dentry *dentry, unsigned int flags)
1106 {
1107 	struct afs_vnode *vnode, *dir;
1108 	struct afs_fid fid;
1109 	struct dentry *parent;
1110 	struct inode *inode;
1111 	struct key *key;
1112 	afs_dataversion_t dir_version, invalid_before;
1113 	long de_version;
1114 	int ret;
1115 
1116 	if (flags & LOOKUP_RCU)
1117 		return afs_d_revalidate_rcu(dentry);
1118 
1119 	if (d_really_is_positive(dentry)) {
1120 		vnode = AFS_FS_I(d_inode(dentry));
1121 		_enter("{v={%llx:%llu} n=%pd fl=%lx},",
1122 		       vnode->fid.vid, vnode->fid.vnode, dentry,
1123 		       vnode->flags);
1124 	} else {
1125 		_enter("{neg n=%pd}", dentry);
1126 	}
1127 
1128 	key = afs_request_key(AFS_FS_S(dentry->d_sb)->volume->cell);
1129 	if (IS_ERR(key))
1130 		key = NULL;
1131 
1132 	/* Hold the parent dentry so we can peer at it */
1133 	parent = dget_parent(dentry);
1134 	dir = AFS_FS_I(d_inode(parent));
1135 
1136 	/* validate the parent directory */
1137 	ret = afs_validate(dir, key);
1138 	if (ret == -ERESTARTSYS) {
1139 		dput(parent);
1140 		key_put(key);
1141 		return ret;
1142 	}
1143 
1144 	if (test_bit(AFS_VNODE_DELETED, &dir->flags)) {
1145 		_debug("%pd: parent dir deleted", dentry);
1146 		goto not_found;
1147 	}
1148 
1149 	/* We only need to invalidate a dentry if the server's copy changed
1150 	 * behind our back.  If we made the change, it's no problem.  Note that
1151 	 * on a 32-bit system, we only have 32 bits in the dentry to store the
1152 	 * version.
1153 	 */
1154 	dir_version = dir->status.data_version;
1155 	de_version = (long)dentry->d_fsdata;
1156 	if (de_version == (long)dir_version)
1157 		goto out_valid_noupdate;
1158 
1159 	invalid_before = dir->invalid_before;
1160 	if (de_version - (long)invalid_before >= 0)
1161 		goto out_valid;
1162 
1163 	_debug("dir modified");
1164 	afs_stat_v(dir, n_reval);
1165 
1166 	/* search the directory for this vnode */
1167 	ret = afs_do_lookup_one(&dir->netfs.inode, dentry, &fid, key, &dir_version);
1168 	switch (ret) {
1169 	case 0:
1170 		/* the filename maps to something */
1171 		if (d_really_is_negative(dentry))
1172 			goto not_found;
1173 		inode = d_inode(dentry);
1174 		if (is_bad_inode(inode)) {
1175 			printk("kAFS: afs_d_revalidate: %pd2 has bad inode\n",
1176 			       dentry);
1177 			goto not_found;
1178 		}
1179 
1180 		vnode = AFS_FS_I(inode);
1181 
1182 		/* if the vnode ID has changed, then the dirent points to a
1183 		 * different file */
1184 		if (fid.vnode != vnode->fid.vnode) {
1185 			_debug("%pd: dirent changed [%llu != %llu]",
1186 			       dentry, fid.vnode,
1187 			       vnode->fid.vnode);
1188 			goto not_found;
1189 		}
1190 
1191 		/* if the vnode ID uniqifier has changed, then the file has
1192 		 * been deleted and replaced, and the original vnode ID has
1193 		 * been reused */
1194 		if (fid.unique != vnode->fid.unique) {
1195 			_debug("%pd: file deleted (uq %u -> %u I:%u)",
1196 			       dentry, fid.unique,
1197 			       vnode->fid.unique,
1198 			       vnode->netfs.inode.i_generation);
1199 			goto not_found;
1200 		}
1201 		goto out_valid;
1202 
1203 	case -ENOENT:
1204 		/* the filename is unknown */
1205 		_debug("%pd: dirent not found", dentry);
1206 		if (d_really_is_positive(dentry))
1207 			goto not_found;
1208 		goto out_valid;
1209 
1210 	default:
1211 		_debug("failed to iterate dir %pd: %d",
1212 		       parent, ret);
1213 		goto not_found;
1214 	}
1215 
1216 out_valid:
1217 	dentry->d_fsdata = (void *)(unsigned long)dir_version;
1218 out_valid_noupdate:
1219 	dput(parent);
1220 	key_put(key);
1221 	_leave(" = 1 [valid]");
1222 	return 1;
1223 
1224 not_found:
1225 	_debug("dropping dentry %pd2", dentry);
1226 	dput(parent);
1227 	key_put(key);
1228 
1229 	_leave(" = 0 [bad]");
1230 	return 0;
1231 }
1232 
1233 /*
1234  * allow the VFS to enquire as to whether a dentry should be unhashed (mustn't
1235  * sleep)
1236  * - called from dput() when d_count is going to 0.
1237  * - return 1 to request dentry be unhashed, 0 otherwise
1238  */
1239 static int afs_d_delete(const struct dentry *dentry)
1240 {
1241 	_enter("%pd", dentry);
1242 
1243 	if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
1244 		goto zap;
1245 
1246 	if (d_really_is_positive(dentry) &&
1247 	    (test_bit(AFS_VNODE_DELETED,   &AFS_FS_I(d_inode(dentry))->flags) ||
1248 	     test_bit(AFS_VNODE_PSEUDODIR, &AFS_FS_I(d_inode(dentry))->flags)))
1249 		goto zap;
1250 
1251 	_leave(" = 0 [keep]");
1252 	return 0;
1253 
1254 zap:
1255 	_leave(" = 1 [zap]");
1256 	return 1;
1257 }
1258 
1259 /*
1260  * Clean up sillyrename files on dentry removal.
1261  */
1262 static void afs_d_iput(struct dentry *dentry, struct inode *inode)
1263 {
1264 	if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
1265 		afs_silly_iput(dentry, inode);
1266 	iput(inode);
1267 }
1268 
1269 /*
1270  * handle dentry release
1271  */
1272 void afs_d_release(struct dentry *dentry)
1273 {
1274 	_enter("%pd", dentry);
1275 }
1276 
1277 void afs_check_for_remote_deletion(struct afs_operation *op)
1278 {
1279 	struct afs_vnode *vnode = op->file[0].vnode;
1280 
1281 	switch (afs_op_abort_code(op)) {
1282 	case VNOVNODE:
1283 		set_bit(AFS_VNODE_DELETED, &vnode->flags);
1284 		clear_nlink(&vnode->netfs.inode);
1285 		afs_break_callback(vnode, afs_cb_break_for_deleted);
1286 	}
1287 }
1288 
1289 /*
1290  * Create a new inode for create/mkdir/symlink
1291  */
1292 static void afs_vnode_new_inode(struct afs_operation *op)
1293 {
1294 	struct afs_vnode_param *vp = &op->file[1];
1295 	struct afs_vnode *vnode;
1296 	struct inode *inode;
1297 
1298 	_enter("");
1299 
1300 	ASSERTCMP(afs_op_error(op), ==, 0);
1301 
1302 	inode = afs_iget(op, vp);
1303 	if (IS_ERR(inode)) {
1304 		/* ENOMEM or EINTR at a really inconvenient time - just abandon
1305 		 * the new directory on the server.
1306 		 */
1307 		afs_op_accumulate_error(op, PTR_ERR(inode), 0);
1308 		return;
1309 	}
1310 
1311 	vnode = AFS_FS_I(inode);
1312 	set_bit(AFS_VNODE_NEW_CONTENT, &vnode->flags);
1313 	if (!afs_op_error(op))
1314 		afs_cache_permit(vnode, op->key, vnode->cb_break, &vp->scb);
1315 	d_instantiate(op->dentry, inode);
1316 }
1317 
1318 static void afs_create_success(struct afs_operation *op)
1319 {
1320 	_enter("op=%08x", op->debug_id);
1321 	op->ctime = op->file[0].scb.status.mtime_client;
1322 	afs_vnode_commit_status(op, &op->file[0]);
1323 	afs_update_dentry_version(op, &op->file[0], op->dentry);
1324 	afs_vnode_new_inode(op);
1325 }
1326 
1327 static void afs_create_edit_dir(struct afs_operation *op)
1328 {
1329 	struct afs_vnode_param *dvp = &op->file[0];
1330 	struct afs_vnode_param *vp = &op->file[1];
1331 	struct afs_vnode *dvnode = dvp->vnode;
1332 
1333 	_enter("op=%08x", op->debug_id);
1334 
1335 	down_write(&dvnode->validate_lock);
1336 	if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags) &&
1337 	    dvnode->status.data_version == dvp->dv_before + dvp->dv_delta)
1338 		afs_edit_dir_add(dvnode, &op->dentry->d_name, &vp->fid,
1339 				 op->create.reason);
1340 	up_write(&dvnode->validate_lock);
1341 }
1342 
1343 static void afs_create_put(struct afs_operation *op)
1344 {
1345 	_enter("op=%08x", op->debug_id);
1346 
1347 	if (afs_op_error(op))
1348 		d_drop(op->dentry);
1349 }
1350 
1351 static const struct afs_operation_ops afs_mkdir_operation = {
1352 	.issue_afs_rpc	= afs_fs_make_dir,
1353 	.issue_yfs_rpc	= yfs_fs_make_dir,
1354 	.success	= afs_create_success,
1355 	.aborted	= afs_check_for_remote_deletion,
1356 	.edit_dir	= afs_create_edit_dir,
1357 	.put		= afs_create_put,
1358 };
1359 
1360 /*
1361  * create a directory on an AFS filesystem
1362  */
1363 static int afs_mkdir(struct mnt_idmap *idmap, struct inode *dir,
1364 		     struct dentry *dentry, umode_t mode)
1365 {
1366 	struct afs_operation *op;
1367 	struct afs_vnode *dvnode = AFS_FS_I(dir);
1368 
1369 	_enter("{%llx:%llu},{%pd},%ho",
1370 	       dvnode->fid.vid, dvnode->fid.vnode, dentry, mode);
1371 
1372 	op = afs_alloc_operation(NULL, dvnode->volume);
1373 	if (IS_ERR(op)) {
1374 		d_drop(dentry);
1375 		return PTR_ERR(op);
1376 	}
1377 
1378 	afs_op_set_vnode(op, 0, dvnode);
1379 	op->file[0].dv_delta = 1;
1380 	op->file[0].modification = true;
1381 	op->file[0].update_ctime = true;
1382 	op->dentry	= dentry;
1383 	op->create.mode	= S_IFDIR | mode;
1384 	op->create.reason = afs_edit_dir_for_mkdir;
1385 	op->mtime	= current_time(dir);
1386 	op->ops		= &afs_mkdir_operation;
1387 	return afs_do_sync_operation(op);
1388 }
1389 
1390 /*
1391  * Remove a subdir from a directory.
1392  */
1393 static void afs_dir_remove_subdir(struct dentry *dentry)
1394 {
1395 	if (d_really_is_positive(dentry)) {
1396 		struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
1397 
1398 		clear_nlink(&vnode->netfs.inode);
1399 		set_bit(AFS_VNODE_DELETED, &vnode->flags);
1400 		atomic64_set(&vnode->cb_expires_at, AFS_NO_CB_PROMISE);
1401 		clear_bit(AFS_VNODE_DIR_VALID, &vnode->flags);
1402 	}
1403 }
1404 
1405 static void afs_rmdir_success(struct afs_operation *op)
1406 {
1407 	_enter("op=%08x", op->debug_id);
1408 	op->ctime = op->file[0].scb.status.mtime_client;
1409 	afs_vnode_commit_status(op, &op->file[0]);
1410 	afs_update_dentry_version(op, &op->file[0], op->dentry);
1411 }
1412 
1413 static void afs_rmdir_edit_dir(struct afs_operation *op)
1414 {
1415 	struct afs_vnode_param *dvp = &op->file[0];
1416 	struct afs_vnode *dvnode = dvp->vnode;
1417 
1418 	_enter("op=%08x", op->debug_id);
1419 	afs_dir_remove_subdir(op->dentry);
1420 
1421 	down_write(&dvnode->validate_lock);
1422 	if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags) &&
1423 	    dvnode->status.data_version == dvp->dv_before + dvp->dv_delta)
1424 		afs_edit_dir_remove(dvnode, &op->dentry->d_name,
1425 				    afs_edit_dir_for_rmdir);
1426 	up_write(&dvnode->validate_lock);
1427 }
1428 
1429 static void afs_rmdir_put(struct afs_operation *op)
1430 {
1431 	_enter("op=%08x", op->debug_id);
1432 	if (op->file[1].vnode)
1433 		up_write(&op->file[1].vnode->rmdir_lock);
1434 }
1435 
1436 static const struct afs_operation_ops afs_rmdir_operation = {
1437 	.issue_afs_rpc	= afs_fs_remove_dir,
1438 	.issue_yfs_rpc	= yfs_fs_remove_dir,
1439 	.success	= afs_rmdir_success,
1440 	.aborted	= afs_check_for_remote_deletion,
1441 	.edit_dir	= afs_rmdir_edit_dir,
1442 	.put		= afs_rmdir_put,
1443 };
1444 
1445 /*
1446  * remove a directory from an AFS filesystem
1447  */
1448 static int afs_rmdir(struct inode *dir, struct dentry *dentry)
1449 {
1450 	struct afs_operation *op;
1451 	struct afs_vnode *dvnode = AFS_FS_I(dir), *vnode = NULL;
1452 	int ret;
1453 
1454 	_enter("{%llx:%llu},{%pd}",
1455 	       dvnode->fid.vid, dvnode->fid.vnode, dentry);
1456 
1457 	op = afs_alloc_operation(NULL, dvnode->volume);
1458 	if (IS_ERR(op))
1459 		return PTR_ERR(op);
1460 
1461 	afs_op_set_vnode(op, 0, dvnode);
1462 	op->file[0].dv_delta = 1;
1463 	op->file[0].modification = true;
1464 	op->file[0].update_ctime = true;
1465 
1466 	op->dentry	= dentry;
1467 	op->ops		= &afs_rmdir_operation;
1468 
1469 	/* Try to make sure we have a callback promise on the victim. */
1470 	if (d_really_is_positive(dentry)) {
1471 		vnode = AFS_FS_I(d_inode(dentry));
1472 		ret = afs_validate(vnode, op->key);
1473 		if (ret < 0)
1474 			goto error;
1475 	}
1476 
1477 	if (vnode) {
1478 		ret = down_write_killable(&vnode->rmdir_lock);
1479 		if (ret < 0)
1480 			goto error;
1481 		op->file[1].vnode = vnode;
1482 	}
1483 
1484 	return afs_do_sync_operation(op);
1485 
1486 error:
1487 	return afs_put_operation(op);
1488 }
1489 
1490 /*
1491  * Remove a link to a file or symlink from a directory.
1492  *
1493  * If the file was not deleted due to excess hard links, the fileserver will
1494  * break the callback promise on the file - if it had one - before it returns
1495  * to us, and if it was deleted, it won't
1496  *
1497  * However, if we didn't have a callback promise outstanding, or it was
1498  * outstanding on a different server, then it won't break it either...
1499  */
1500 static void afs_dir_remove_link(struct afs_operation *op)
1501 {
1502 	struct afs_vnode *dvnode = op->file[0].vnode;
1503 	struct afs_vnode *vnode = op->file[1].vnode;
1504 	struct dentry *dentry = op->dentry;
1505 	int ret;
1506 
1507 	if (afs_op_error(op) ||
1508 	    (op->file[1].scb.have_status && op->file[1].scb.have_error))
1509 		return;
1510 	if (d_really_is_positive(dentry))
1511 		return;
1512 
1513 	if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
1514 		/* Already done */
1515 	} else if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags)) {
1516 		write_seqlock(&vnode->cb_lock);
1517 		drop_nlink(&vnode->netfs.inode);
1518 		if (vnode->netfs.inode.i_nlink == 0) {
1519 			set_bit(AFS_VNODE_DELETED, &vnode->flags);
1520 			__afs_break_callback(vnode, afs_cb_break_for_unlink);
1521 		}
1522 		write_sequnlock(&vnode->cb_lock);
1523 	} else {
1524 		afs_break_callback(vnode, afs_cb_break_for_unlink);
1525 
1526 		if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
1527 			_debug("AFS_VNODE_DELETED");
1528 
1529 		ret = afs_validate(vnode, op->key);
1530 		if (ret != -ESTALE)
1531 			afs_op_set_error(op, ret);
1532 	}
1533 
1534 	_debug("nlink %d [val %d]", vnode->netfs.inode.i_nlink, afs_op_error(op));
1535 }
1536 
1537 static void afs_unlink_success(struct afs_operation *op)
1538 {
1539 	_enter("op=%08x", op->debug_id);
1540 	op->ctime = op->file[0].scb.status.mtime_client;
1541 	afs_check_dir_conflict(op, &op->file[0]);
1542 	afs_vnode_commit_status(op, &op->file[0]);
1543 	afs_vnode_commit_status(op, &op->file[1]);
1544 	afs_update_dentry_version(op, &op->file[0], op->dentry);
1545 	afs_dir_remove_link(op);
1546 }
1547 
1548 static void afs_unlink_edit_dir(struct afs_operation *op)
1549 {
1550 	struct afs_vnode_param *dvp = &op->file[0];
1551 	struct afs_vnode *dvnode = dvp->vnode;
1552 
1553 	_enter("op=%08x", op->debug_id);
1554 	down_write(&dvnode->validate_lock);
1555 	if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags) &&
1556 	    dvnode->status.data_version == dvp->dv_before + dvp->dv_delta)
1557 		afs_edit_dir_remove(dvnode, &op->dentry->d_name,
1558 				    afs_edit_dir_for_unlink);
1559 	up_write(&dvnode->validate_lock);
1560 }
1561 
1562 static void afs_unlink_put(struct afs_operation *op)
1563 {
1564 	_enter("op=%08x", op->debug_id);
1565 	if (op->unlink.need_rehash && afs_op_error(op) < 0 && afs_op_error(op) != -ENOENT)
1566 		d_rehash(op->dentry);
1567 }
1568 
1569 static const struct afs_operation_ops afs_unlink_operation = {
1570 	.issue_afs_rpc	= afs_fs_remove_file,
1571 	.issue_yfs_rpc	= yfs_fs_remove_file,
1572 	.success	= afs_unlink_success,
1573 	.aborted	= afs_check_for_remote_deletion,
1574 	.edit_dir	= afs_unlink_edit_dir,
1575 	.put		= afs_unlink_put,
1576 };
1577 
1578 /*
1579  * Remove a file or symlink from an AFS filesystem.
1580  */
1581 static int afs_unlink(struct inode *dir, struct dentry *dentry)
1582 {
1583 	struct afs_operation *op;
1584 	struct afs_vnode *dvnode = AFS_FS_I(dir);
1585 	struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
1586 	int ret;
1587 
1588 	_enter("{%llx:%llu},{%pd}",
1589 	       dvnode->fid.vid, dvnode->fid.vnode, dentry);
1590 
1591 	if (dentry->d_name.len >= AFSNAMEMAX)
1592 		return -ENAMETOOLONG;
1593 
1594 	op = afs_alloc_operation(NULL, dvnode->volume);
1595 	if (IS_ERR(op))
1596 		return PTR_ERR(op);
1597 
1598 	afs_op_set_vnode(op, 0, dvnode);
1599 	op->file[0].dv_delta = 1;
1600 	op->file[0].modification = true;
1601 	op->file[0].update_ctime = true;
1602 
1603 	/* Try to make sure we have a callback promise on the victim. */
1604 	ret = afs_validate(vnode, op->key);
1605 	if (ret < 0) {
1606 		afs_op_set_error(op, ret);
1607 		goto error;
1608 	}
1609 
1610 	spin_lock(&dentry->d_lock);
1611 	if (d_count(dentry) > 1) {
1612 		spin_unlock(&dentry->d_lock);
1613 		/* Start asynchronous writeout of the inode */
1614 		write_inode_now(d_inode(dentry), 0);
1615 		afs_op_set_error(op, afs_sillyrename(dvnode, vnode, dentry, op->key));
1616 		goto error;
1617 	}
1618 	if (!d_unhashed(dentry)) {
1619 		/* Prevent a race with RCU lookup. */
1620 		__d_drop(dentry);
1621 		op->unlink.need_rehash = true;
1622 	}
1623 	spin_unlock(&dentry->d_lock);
1624 
1625 	op->file[1].vnode = vnode;
1626 	op->file[1].update_ctime = true;
1627 	op->file[1].op_unlinked = true;
1628 	op->dentry	= dentry;
1629 	op->ops		= &afs_unlink_operation;
1630 	afs_begin_vnode_operation(op);
1631 	afs_wait_for_operation(op);
1632 
1633 	/* If there was a conflict with a third party, check the status of the
1634 	 * unlinked vnode.
1635 	 */
1636 	if (afs_op_error(op) == 0 && (op->flags & AFS_OPERATION_DIR_CONFLICT)) {
1637 		op->file[1].update_ctime = false;
1638 		op->fetch_status.which = 1;
1639 		op->ops = &afs_fetch_status_operation;
1640 		afs_begin_vnode_operation(op);
1641 		afs_wait_for_operation(op);
1642 	}
1643 
1644 	return afs_put_operation(op);
1645 
1646 error:
1647 	return afs_put_operation(op);
1648 }
1649 
1650 static const struct afs_operation_ops afs_create_operation = {
1651 	.issue_afs_rpc	= afs_fs_create_file,
1652 	.issue_yfs_rpc	= yfs_fs_create_file,
1653 	.success	= afs_create_success,
1654 	.aborted	= afs_check_for_remote_deletion,
1655 	.edit_dir	= afs_create_edit_dir,
1656 	.put		= afs_create_put,
1657 };
1658 
1659 /*
1660  * create a regular file on an AFS filesystem
1661  */
1662 static int afs_create(struct mnt_idmap *idmap, struct inode *dir,
1663 		      struct dentry *dentry, umode_t mode, bool excl)
1664 {
1665 	struct afs_operation *op;
1666 	struct afs_vnode *dvnode = AFS_FS_I(dir);
1667 	int ret = -ENAMETOOLONG;
1668 
1669 	_enter("{%llx:%llu},{%pd},%ho",
1670 	       dvnode->fid.vid, dvnode->fid.vnode, dentry, mode);
1671 
1672 	if (dentry->d_name.len >= AFSNAMEMAX)
1673 		goto error;
1674 
1675 	op = afs_alloc_operation(NULL, dvnode->volume);
1676 	if (IS_ERR(op)) {
1677 		ret = PTR_ERR(op);
1678 		goto error;
1679 	}
1680 
1681 	afs_op_set_vnode(op, 0, dvnode);
1682 	op->file[0].dv_delta = 1;
1683 	op->file[0].modification = true;
1684 	op->file[0].update_ctime = true;
1685 
1686 	op->dentry	= dentry;
1687 	op->create.mode	= S_IFREG | mode;
1688 	op->create.reason = afs_edit_dir_for_create;
1689 	op->mtime	= current_time(dir);
1690 	op->ops		= &afs_create_operation;
1691 	return afs_do_sync_operation(op);
1692 
1693 error:
1694 	d_drop(dentry);
1695 	_leave(" = %d", ret);
1696 	return ret;
1697 }
1698 
1699 static void afs_link_success(struct afs_operation *op)
1700 {
1701 	struct afs_vnode_param *dvp = &op->file[0];
1702 	struct afs_vnode_param *vp = &op->file[1];
1703 
1704 	_enter("op=%08x", op->debug_id);
1705 	op->ctime = dvp->scb.status.mtime_client;
1706 	afs_vnode_commit_status(op, dvp);
1707 	afs_vnode_commit_status(op, vp);
1708 	afs_update_dentry_version(op, dvp, op->dentry);
1709 	if (op->dentry_2->d_parent == op->dentry->d_parent)
1710 		afs_update_dentry_version(op, dvp, op->dentry_2);
1711 	ihold(&vp->vnode->netfs.inode);
1712 	d_instantiate(op->dentry, &vp->vnode->netfs.inode);
1713 }
1714 
1715 static void afs_link_put(struct afs_operation *op)
1716 {
1717 	_enter("op=%08x", op->debug_id);
1718 	if (afs_op_error(op))
1719 		d_drop(op->dentry);
1720 }
1721 
1722 static const struct afs_operation_ops afs_link_operation = {
1723 	.issue_afs_rpc	= afs_fs_link,
1724 	.issue_yfs_rpc	= yfs_fs_link,
1725 	.success	= afs_link_success,
1726 	.aborted	= afs_check_for_remote_deletion,
1727 	.edit_dir	= afs_create_edit_dir,
1728 	.put		= afs_link_put,
1729 };
1730 
1731 /*
1732  * create a hard link between files in an AFS filesystem
1733  */
1734 static int afs_link(struct dentry *from, struct inode *dir,
1735 		    struct dentry *dentry)
1736 {
1737 	struct afs_operation *op;
1738 	struct afs_vnode *dvnode = AFS_FS_I(dir);
1739 	struct afs_vnode *vnode = AFS_FS_I(d_inode(from));
1740 	int ret = -ENAMETOOLONG;
1741 
1742 	_enter("{%llx:%llu},{%llx:%llu},{%pd}",
1743 	       vnode->fid.vid, vnode->fid.vnode,
1744 	       dvnode->fid.vid, dvnode->fid.vnode,
1745 	       dentry);
1746 
1747 	if (dentry->d_name.len >= AFSNAMEMAX)
1748 		goto error;
1749 
1750 	op = afs_alloc_operation(NULL, dvnode->volume);
1751 	if (IS_ERR(op)) {
1752 		ret = PTR_ERR(op);
1753 		goto error;
1754 	}
1755 
1756 	ret = afs_validate(vnode, op->key);
1757 	if (ret < 0)
1758 		goto error_op;
1759 
1760 	afs_op_set_vnode(op, 0, dvnode);
1761 	afs_op_set_vnode(op, 1, vnode);
1762 	op->file[0].dv_delta = 1;
1763 	op->file[0].modification = true;
1764 	op->file[0].update_ctime = true;
1765 	op->file[1].update_ctime = true;
1766 
1767 	op->dentry		= dentry;
1768 	op->dentry_2		= from;
1769 	op->ops			= &afs_link_operation;
1770 	op->create.reason	= afs_edit_dir_for_link;
1771 	return afs_do_sync_operation(op);
1772 
1773 error_op:
1774 	afs_put_operation(op);
1775 error:
1776 	d_drop(dentry);
1777 	_leave(" = %d", ret);
1778 	return ret;
1779 }
1780 
1781 static const struct afs_operation_ops afs_symlink_operation = {
1782 	.issue_afs_rpc	= afs_fs_symlink,
1783 	.issue_yfs_rpc	= yfs_fs_symlink,
1784 	.success	= afs_create_success,
1785 	.aborted	= afs_check_for_remote_deletion,
1786 	.edit_dir	= afs_create_edit_dir,
1787 	.put		= afs_create_put,
1788 };
1789 
1790 /*
1791  * create a symlink in an AFS filesystem
1792  */
1793 static int afs_symlink(struct mnt_idmap *idmap, struct inode *dir,
1794 		       struct dentry *dentry, const char *content)
1795 {
1796 	struct afs_operation *op;
1797 	struct afs_vnode *dvnode = AFS_FS_I(dir);
1798 	int ret;
1799 
1800 	_enter("{%llx:%llu},{%pd},%s",
1801 	       dvnode->fid.vid, dvnode->fid.vnode, dentry,
1802 	       content);
1803 
1804 	ret = -ENAMETOOLONG;
1805 	if (dentry->d_name.len >= AFSNAMEMAX)
1806 		goto error;
1807 
1808 	ret = -EINVAL;
1809 	if (strlen(content) >= AFSPATHMAX)
1810 		goto error;
1811 
1812 	op = afs_alloc_operation(NULL, dvnode->volume);
1813 	if (IS_ERR(op)) {
1814 		ret = PTR_ERR(op);
1815 		goto error;
1816 	}
1817 
1818 	afs_op_set_vnode(op, 0, dvnode);
1819 	op->file[0].dv_delta = 1;
1820 
1821 	op->dentry		= dentry;
1822 	op->ops			= &afs_symlink_operation;
1823 	op->create.reason	= afs_edit_dir_for_symlink;
1824 	op->create.symlink	= content;
1825 	op->mtime		= current_time(dir);
1826 	return afs_do_sync_operation(op);
1827 
1828 error:
1829 	d_drop(dentry);
1830 	_leave(" = %d", ret);
1831 	return ret;
1832 }
1833 
1834 static void afs_rename_success(struct afs_operation *op)
1835 {
1836 	_enter("op=%08x", op->debug_id);
1837 
1838 	op->ctime = op->file[0].scb.status.mtime_client;
1839 	afs_check_dir_conflict(op, &op->file[1]);
1840 	afs_vnode_commit_status(op, &op->file[0]);
1841 	if (op->file[1].vnode != op->file[0].vnode) {
1842 		op->ctime = op->file[1].scb.status.mtime_client;
1843 		afs_vnode_commit_status(op, &op->file[1]);
1844 	}
1845 }
1846 
1847 static void afs_rename_edit_dir(struct afs_operation *op)
1848 {
1849 	struct afs_vnode_param *orig_dvp = &op->file[0];
1850 	struct afs_vnode_param *new_dvp = &op->file[1];
1851 	struct afs_vnode *orig_dvnode = orig_dvp->vnode;
1852 	struct afs_vnode *new_dvnode = new_dvp->vnode;
1853 	struct afs_vnode *vnode = AFS_FS_I(d_inode(op->dentry));
1854 	struct dentry *old_dentry = op->dentry;
1855 	struct dentry *new_dentry = op->dentry_2;
1856 	struct inode *new_inode;
1857 
1858 	_enter("op=%08x", op->debug_id);
1859 
1860 	if (op->rename.rehash) {
1861 		d_rehash(op->rename.rehash);
1862 		op->rename.rehash = NULL;
1863 	}
1864 
1865 	down_write(&orig_dvnode->validate_lock);
1866 	if (test_bit(AFS_VNODE_DIR_VALID, &orig_dvnode->flags) &&
1867 	    orig_dvnode->status.data_version == orig_dvp->dv_before + orig_dvp->dv_delta)
1868 		afs_edit_dir_remove(orig_dvnode, &old_dentry->d_name,
1869 				    afs_edit_dir_for_rename_0);
1870 
1871 	if (new_dvnode != orig_dvnode) {
1872 		up_write(&orig_dvnode->validate_lock);
1873 		down_write(&new_dvnode->validate_lock);
1874 	}
1875 
1876 	if (test_bit(AFS_VNODE_DIR_VALID, &new_dvnode->flags) &&
1877 	    new_dvnode->status.data_version == new_dvp->dv_before + new_dvp->dv_delta) {
1878 		if (!op->rename.new_negative)
1879 			afs_edit_dir_remove(new_dvnode, &new_dentry->d_name,
1880 					    afs_edit_dir_for_rename_1);
1881 
1882 		afs_edit_dir_add(new_dvnode, &new_dentry->d_name,
1883 				 &vnode->fid, afs_edit_dir_for_rename_2);
1884 	}
1885 
1886 	new_inode = d_inode(new_dentry);
1887 	if (new_inode) {
1888 		spin_lock(&new_inode->i_lock);
1889 		if (S_ISDIR(new_inode->i_mode))
1890 			clear_nlink(new_inode);
1891 		else if (new_inode->i_nlink > 0)
1892 			drop_nlink(new_inode);
1893 		spin_unlock(&new_inode->i_lock);
1894 	}
1895 
1896 	/* Now we can update d_fsdata on the dentries to reflect their
1897 	 * new parent's data_version.
1898 	 *
1899 	 * Note that if we ever implement RENAME_EXCHANGE, we'll have
1900 	 * to update both dentries with opposing dir versions.
1901 	 */
1902 	afs_update_dentry_version(op, new_dvp, op->dentry);
1903 	afs_update_dentry_version(op, new_dvp, op->dentry_2);
1904 
1905 	d_move(old_dentry, new_dentry);
1906 
1907 	up_write(&new_dvnode->validate_lock);
1908 }
1909 
1910 static void afs_rename_put(struct afs_operation *op)
1911 {
1912 	_enter("op=%08x", op->debug_id);
1913 	if (op->rename.rehash)
1914 		d_rehash(op->rename.rehash);
1915 	dput(op->rename.tmp);
1916 	if (afs_op_error(op))
1917 		d_rehash(op->dentry);
1918 }
1919 
1920 static const struct afs_operation_ops afs_rename_operation = {
1921 	.issue_afs_rpc	= afs_fs_rename,
1922 	.issue_yfs_rpc	= yfs_fs_rename,
1923 	.success	= afs_rename_success,
1924 	.edit_dir	= afs_rename_edit_dir,
1925 	.put		= afs_rename_put,
1926 };
1927 
1928 /*
1929  * rename a file in an AFS filesystem and/or move it between directories
1930  */
1931 static int afs_rename(struct mnt_idmap *idmap, struct inode *old_dir,
1932 		      struct dentry *old_dentry, struct inode *new_dir,
1933 		      struct dentry *new_dentry, unsigned int flags)
1934 {
1935 	struct afs_operation *op;
1936 	struct afs_vnode *orig_dvnode, *new_dvnode, *vnode;
1937 	int ret;
1938 
1939 	if (flags)
1940 		return -EINVAL;
1941 
1942 	/* Don't allow silly-rename files be moved around. */
1943 	if (old_dentry->d_flags & DCACHE_NFSFS_RENAMED)
1944 		return -EINVAL;
1945 
1946 	vnode = AFS_FS_I(d_inode(old_dentry));
1947 	orig_dvnode = AFS_FS_I(old_dir);
1948 	new_dvnode = AFS_FS_I(new_dir);
1949 
1950 	_enter("{%llx:%llu},{%llx:%llu},{%llx:%llu},{%pd}",
1951 	       orig_dvnode->fid.vid, orig_dvnode->fid.vnode,
1952 	       vnode->fid.vid, vnode->fid.vnode,
1953 	       new_dvnode->fid.vid, new_dvnode->fid.vnode,
1954 	       new_dentry);
1955 
1956 	op = afs_alloc_operation(NULL, orig_dvnode->volume);
1957 	if (IS_ERR(op))
1958 		return PTR_ERR(op);
1959 
1960 	ret = afs_validate(vnode, op->key);
1961 	afs_op_set_error(op, ret);
1962 	if (ret < 0)
1963 		goto error;
1964 
1965 	afs_op_set_vnode(op, 0, orig_dvnode);
1966 	afs_op_set_vnode(op, 1, new_dvnode); /* May be same as orig_dvnode */
1967 	op->file[0].dv_delta = 1;
1968 	op->file[1].dv_delta = 1;
1969 	op->file[0].modification = true;
1970 	op->file[1].modification = true;
1971 	op->file[0].update_ctime = true;
1972 	op->file[1].update_ctime = true;
1973 
1974 	op->dentry		= old_dentry;
1975 	op->dentry_2		= new_dentry;
1976 	op->rename.new_negative	= d_is_negative(new_dentry);
1977 	op->ops			= &afs_rename_operation;
1978 
1979 	/* For non-directories, check whether the target is busy and if so,
1980 	 * make a copy of the dentry and then do a silly-rename.  If the
1981 	 * silly-rename succeeds, the copied dentry is hashed and becomes the
1982 	 * new target.
1983 	 */
1984 	if (d_is_positive(new_dentry) && !d_is_dir(new_dentry)) {
1985 		/* To prevent any new references to the target during the
1986 		 * rename, we unhash the dentry in advance.
1987 		 */
1988 		if (!d_unhashed(new_dentry)) {
1989 			d_drop(new_dentry);
1990 			op->rename.rehash = new_dentry;
1991 		}
1992 
1993 		if (d_count(new_dentry) > 2) {
1994 			/* copy the target dentry's name */
1995 			op->rename.tmp = d_alloc(new_dentry->d_parent,
1996 						 &new_dentry->d_name);
1997 			if (!op->rename.tmp) {
1998 				afs_op_nomem(op);
1999 				goto error;
2000 			}
2001 
2002 			ret = afs_sillyrename(new_dvnode,
2003 					      AFS_FS_I(d_inode(new_dentry)),
2004 					      new_dentry, op->key);
2005 			if (ret) {
2006 				afs_op_set_error(op, ret);
2007 				goto error;
2008 			}
2009 
2010 			op->dentry_2 = op->rename.tmp;
2011 			op->rename.rehash = NULL;
2012 			op->rename.new_negative = true;
2013 		}
2014 	}
2015 
2016 	/* This bit is potentially nasty as there's a potential race with
2017 	 * afs_d_revalidate{,_rcu}().  We have to change d_fsdata on the dentry
2018 	 * to reflect it's new parent's new data_version after the op, but
2019 	 * d_revalidate may see old_dentry between the op having taken place
2020 	 * and the version being updated.
2021 	 *
2022 	 * So drop the old_dentry for now to make other threads go through
2023 	 * lookup instead - which we hold a lock against.
2024 	 */
2025 	d_drop(old_dentry);
2026 
2027 	return afs_do_sync_operation(op);
2028 
2029 error:
2030 	return afs_put_operation(op);
2031 }
2032 
2033 /*
2034  * Release a directory folio and clean up its private state if it's not busy
2035  * - return true if the folio can now be released, false if not
2036  */
2037 static bool afs_dir_release_folio(struct folio *folio, gfp_t gfp_flags)
2038 {
2039 	struct afs_vnode *dvnode = AFS_FS_I(folio_inode(folio));
2040 
2041 	_enter("{{%llx:%llu}[%lu]}", dvnode->fid.vid, dvnode->fid.vnode, folio->index);
2042 
2043 	folio_detach_private(folio);
2044 
2045 	/* The directory will need reloading. */
2046 	if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
2047 		afs_stat_v(dvnode, n_relpg);
2048 	return true;
2049 }
2050 
2051 /*
2052  * Invalidate part or all of a folio.
2053  */
2054 static void afs_dir_invalidate_folio(struct folio *folio, size_t offset,
2055 				   size_t length)
2056 {
2057 	struct afs_vnode *dvnode = AFS_FS_I(folio_inode(folio));
2058 
2059 	_enter("{%lu},%zu,%zu", folio->index, offset, length);
2060 
2061 	BUG_ON(!folio_test_locked(folio));
2062 
2063 	/* The directory will need reloading. */
2064 	if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
2065 		afs_stat_v(dvnode, n_inval);
2066 
2067 	/* we clean up only if the entire folio is being invalidated */
2068 	if (offset == 0 && length == folio_size(folio))
2069 		folio_detach_private(folio);
2070 }
2071