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