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