blob: 159795059547fa747dd6fad8e04f566b48e8daaa [file] [log] [blame]
David Brazdil0f672f62019-12-10 10:32:29 +00001// SPDX-License-Identifier: GPL-2.0-or-later
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00002/* 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)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00006 */
7
8#include <linux/kernel.h>
9#include <linux/fs.h>
10#include <linux/namei.h>
11#include <linux/pagemap.h>
12#include <linux/swap.h>
13#include <linux/ctype.h>
14#include <linux/sched.h>
15#include <linux/task_io_accounting_ops.h>
16#include "internal.h"
David Brazdil0f672f62019-12-10 10:32:29 +000017#include "afs_fs.h"
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000018#include "xdr_fs.h"
19
20static struct dentry *afs_lookup(struct inode *dir, struct dentry *dentry,
21 unsigned int flags);
22static int afs_dir_open(struct inode *inode, struct file *file);
23static int afs_readdir(struct file *file, struct dir_context *ctx);
24static int afs_d_revalidate(struct dentry *dentry, unsigned int flags);
25static int afs_d_delete(const struct dentry *dentry);
David Brazdil0f672f62019-12-10 10:32:29 +000026static void afs_d_iput(struct dentry *dentry, struct inode *inode);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000027static int afs_lookup_one_filldir(struct dir_context *ctx, const char *name, int nlen,
28 loff_t fpos, u64 ino, unsigned dtype);
29static int afs_lookup_filldir(struct dir_context *ctx, const char *name, int nlen,
30 loff_t fpos, u64 ino, unsigned dtype);
31static int afs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
32 bool excl);
33static int afs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
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,
41 struct inode *new_dir, struct dentry *new_dentry,
42 unsigned int flags);
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}
51
52const struct file_operations afs_dir_file_operations = {
53 .open = afs_dir_open,
54 .release = afs_release,
55 .iterate_shared = afs_readdir,
56 .lock = afs_lock,
57 .llseek = generic_file_llseek,
58};
59
60const struct inode_operations afs_dir_inode_operations = {
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,
68 .rename = afs_rename,
69 .permission = afs_permission,
70 .getattr = afs_getattr,
71 .setattr = afs_setattr,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000072};
73
74const struct address_space_operations afs_dir_aops = {
75 .set_page_dirty = afs_dir_set_page_dirty,
76 .releasepage = afs_dir_releasepage,
77 .invalidatepage = afs_dir_invalidatepage,
78};
79
80const struct dentry_operations afs_fs_dentry_operations = {
81 .d_revalidate = afs_d_revalidate,
82 .d_delete = afs_d_delete,
83 .d_release = afs_d_release,
84 .d_automount = afs_d_automount,
David Brazdil0f672f62019-12-10 10:32:29 +000085 .d_iput = afs_d_iput,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +000086};
87
88struct afs_lookup_one_cookie {
89 struct dir_context ctx;
90 struct qstr name;
91 bool found;
92 struct afs_fid fid;
93};
94
95struct afs_lookup_cookie {
96 struct dir_context ctx;
97 struct qstr name;
98 bool found;
99 bool one_only;
100 unsigned short nr_fids;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000101 struct afs_fid fids[50];
102};
103
104/*
105 * check that a directory page is valid
106 */
107static bool afs_dir_check_page(struct afs_vnode *dvnode, struct page *page,
108 loff_t i_size)
109{
110 struct afs_xdr_dir_page *dbuf;
111 loff_t latter, off;
112 int tmp, qty;
113
114 /* Determine how many magic numbers there should be in this page, but
115 * we must take care because the directory may change size under us.
116 */
117 off = page_offset(page);
118 if (i_size <= off)
119 goto checked;
120
121 latter = i_size - off;
122 if (latter >= PAGE_SIZE)
123 qty = PAGE_SIZE;
124 else
125 qty = latter;
126 qty /= sizeof(union afs_xdr_dir_block);
127
128 /* check them */
129 dbuf = kmap(page);
130 for (tmp = 0; tmp < qty; tmp++) {
131 if (dbuf->blocks[tmp].hdr.magic != AFS_DIR_MAGIC) {
132 printk("kAFS: %s(%lx): bad magic %d/%d is %04hx\n",
133 __func__, dvnode->vfs_inode.i_ino, tmp, qty,
134 ntohs(dbuf->blocks[tmp].hdr.magic));
135 trace_afs_dir_check_failed(dvnode, off, i_size);
136 kunmap(page);
David Brazdil0f672f62019-12-10 10:32:29 +0000137 trace_afs_file_error(dvnode, -EIO, afs_file_error_dir_bad_magic);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000138 goto error;
139 }
140
141 /* Make sure each block is NUL terminated so we can reasonably
142 * use string functions on it. The filenames in the page
143 * *should* be NUL-terminated anyway.
144 */
145 ((u8 *)&dbuf->blocks[tmp])[AFS_DIR_BLOCK_SIZE - 1] = 0;
146 }
147
148 kunmap(page);
149
150checked:
151 afs_stat_v(dvnode, n_read_dir);
152 return true;
153
154error:
155 return false;
156}
157
158/*
David Brazdil0f672f62019-12-10 10:32:29 +0000159 * Check the contents of a directory that we've just read.
160 */
161static bool afs_dir_check_pages(struct afs_vnode *dvnode, struct afs_read *req)
162{
163 struct afs_xdr_dir_page *dbuf;
164 unsigned int i, j, qty = PAGE_SIZE / sizeof(union afs_xdr_dir_block);
165
166 for (i = 0; i < req->nr_pages; i++)
167 if (!afs_dir_check_page(dvnode, req->pages[i], req->actual_len))
168 goto bad;
169 return true;
170
171bad:
172 pr_warn("DIR %llx:%llx f=%llx l=%llx al=%llx r=%llx\n",
173 dvnode->fid.vid, dvnode->fid.vnode,
174 req->file_size, req->len, req->actual_len, req->remain);
175 pr_warn("DIR %llx %x %x %x\n",
176 req->pos, req->index, req->nr_pages, req->offset);
177
178 for (i = 0; i < req->nr_pages; i++) {
179 dbuf = kmap(req->pages[i]);
180 for (j = 0; j < qty; j++) {
181 union afs_xdr_dir_block *block = &dbuf->blocks[j];
182
183 pr_warn("[%02x] %32phN\n", i * qty + j, block);
184 }
185 kunmap(req->pages[i]);
186 }
187 return false;
188}
189
190/*
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000191 * open an AFS directory file
192 */
193static int afs_dir_open(struct inode *inode, struct file *file)
194{
195 _enter("{%lu}", inode->i_ino);
196
197 BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
198 BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
199
200 if (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(inode)->flags))
201 return -ENOENT;
202
203 return afs_open(inode, file);
204}
205
206/*
207 * Read the directory into the pagecache in one go, scrubbing the previous
208 * contents. The list of pages is returned, pinning them so that they don't
209 * get reclaimed during the iteration.
210 */
211static struct afs_read *afs_read_dir(struct afs_vnode *dvnode, struct key *key)
212 __acquires(&dvnode->validate_lock)
213{
214 struct afs_read *req;
215 loff_t i_size;
216 int nr_pages, nr_inline, i, n;
217 int ret = -ENOMEM;
218
219retry:
220 i_size = i_size_read(&dvnode->vfs_inode);
221 if (i_size < 2048)
David Brazdil0f672f62019-12-10 10:32:29 +0000222 return ERR_PTR(afs_bad(dvnode, afs_file_error_dir_small));
223 if (i_size > 2048 * 1024) {
224 trace_afs_file_error(dvnode, -EFBIG, afs_file_error_dir_big);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000225 return ERR_PTR(-EFBIG);
David Brazdil0f672f62019-12-10 10:32:29 +0000226 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000227
228 _enter("%llu", i_size);
229
230 /* Get a request record to hold the page list. We want to hold it
231 * inline if we can, but we don't want to make an order 1 allocation.
232 */
233 nr_pages = (i_size + PAGE_SIZE - 1) / PAGE_SIZE;
234 nr_inline = nr_pages;
235 if (nr_inline > (PAGE_SIZE - sizeof(*req)) / sizeof(struct page *))
236 nr_inline = 0;
237
David Brazdil0f672f62019-12-10 10:32:29 +0000238 req = kzalloc(struct_size(req, array, nr_inline), GFP_KERNEL);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000239 if (!req)
240 return ERR_PTR(-ENOMEM);
241
242 refcount_set(&req->usage, 1);
243 req->nr_pages = nr_pages;
244 req->actual_len = i_size; /* May change */
245 req->len = nr_pages * PAGE_SIZE; /* We can ask for more than there is */
246 req->data_version = dvnode->status.data_version; /* May change */
247 if (nr_inline > 0) {
248 req->pages = req->array;
249 } else {
250 req->pages = kcalloc(nr_pages, sizeof(struct page *),
251 GFP_KERNEL);
252 if (!req->pages)
253 goto error;
254 }
255
256 /* Get a list of all the pages that hold or will hold the directory
257 * content. We need to fill in any gaps that we might find where the
258 * memory reclaimer has been at work. If there are any gaps, we will
259 * need to reread the entire directory contents.
260 */
261 i = 0;
262 do {
263 n = find_get_pages_contig(dvnode->vfs_inode.i_mapping, i,
264 req->nr_pages - i,
265 req->pages + i);
266 _debug("find %u at %u/%u", n, i, req->nr_pages);
267 if (n == 0) {
268 gfp_t gfp = dvnode->vfs_inode.i_mapping->gfp_mask;
269
270 if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
271 afs_stat_v(dvnode, n_inval);
272
273 ret = -ENOMEM;
274 req->pages[i] = __page_cache_alloc(gfp);
275 if (!req->pages[i])
276 goto error;
277 ret = add_to_page_cache_lru(req->pages[i],
278 dvnode->vfs_inode.i_mapping,
279 i, gfp);
280 if (ret < 0)
281 goto error;
282
Olivier Deprez157378f2022-04-04 15:47:50 +0200283 attach_page_private(req->pages[i], (void *)1);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000284 unlock_page(req->pages[i]);
285 i++;
286 } else {
287 i += n;
288 }
289 } while (i < req->nr_pages);
290
291 /* If we're going to reload, we need to lock all the pages to prevent
292 * races.
293 */
294 ret = -ERESTARTSYS;
295 if (down_read_killable(&dvnode->validate_lock) < 0)
296 goto error;
297
298 if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
299 goto success;
300
301 up_read(&dvnode->validate_lock);
302 if (down_write_killable(&dvnode->validate_lock) < 0)
303 goto error;
304
305 if (!test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags)) {
David Brazdil0f672f62019-12-10 10:32:29 +0000306 trace_afs_reload_dir(dvnode);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000307 ret = afs_fetch_data(dvnode, key, req);
308 if (ret < 0)
309 goto error_unlock;
310
311 task_io_account_read(PAGE_SIZE * req->nr_pages);
312
313 if (req->len < req->file_size)
314 goto content_has_grown;
315
316 /* Validate the data we just read. */
317 ret = -EIO;
David Brazdil0f672f62019-12-10 10:32:29 +0000318 if (!afs_dir_check_pages(dvnode, req))
319 goto error_unlock;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000320
321 // TODO: Trim excess pages
322
323 set_bit(AFS_VNODE_DIR_VALID, &dvnode->flags);
324 }
325
326 downgrade_write(&dvnode->validate_lock);
327success:
328 return req;
329
330error_unlock:
331 up_write(&dvnode->validate_lock);
332error:
333 afs_put_read(req);
334 _leave(" = %d", ret);
335 return ERR_PTR(ret);
336
337content_has_grown:
338 up_write(&dvnode->validate_lock);
339 afs_put_read(req);
340 goto retry;
341}
342
343/*
344 * deal with one block in an AFS directory
345 */
David Brazdil0f672f62019-12-10 10:32:29 +0000346static int afs_dir_iterate_block(struct afs_vnode *dvnode,
347 struct dir_context *ctx,
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000348 union afs_xdr_dir_block *block,
349 unsigned blkoff)
350{
351 union afs_xdr_dirent *dire;
352 unsigned offset, next, curr;
353 size_t nlen;
354 int tmp;
355
356 _enter("%u,%x,%p,,",(unsigned)ctx->pos,blkoff,block);
357
358 curr = (ctx->pos - blkoff) / sizeof(union afs_xdr_dirent);
359
360 /* walk through the block, an entry at a time */
361 for (offset = (blkoff == 0 ? AFS_DIR_RESV_BLOCKS0 : AFS_DIR_RESV_BLOCKS);
362 offset < AFS_DIR_SLOTS_PER_BLOCK;
363 offset = next
364 ) {
365 next = offset + 1;
366
367 /* skip entries marked unused in the bitmap */
368 if (!(block->hdr.bitmap[offset / 8] &
369 (1 << (offset % 8)))) {
370 _debug("ENT[%zu.%u]: unused",
371 blkoff / sizeof(union afs_xdr_dir_block), offset);
372 if (offset >= curr)
373 ctx->pos = blkoff +
374 next * sizeof(union afs_xdr_dirent);
375 continue;
376 }
377
378 /* got a valid entry */
379 dire = &block->dirents[offset];
380 nlen = strnlen(dire->u.name,
381 sizeof(*block) -
382 offset * sizeof(union afs_xdr_dirent));
383
384 _debug("ENT[%zu.%u]: %s %zu \"%s\"",
385 blkoff / sizeof(union afs_xdr_dir_block), offset,
386 (offset < curr ? "skip" : "fill"),
387 nlen, dire->u.name);
388
389 /* work out where the next possible entry is */
390 for (tmp = nlen; tmp > 15; tmp -= sizeof(union afs_xdr_dirent)) {
391 if (next >= AFS_DIR_SLOTS_PER_BLOCK) {
392 _debug("ENT[%zu.%u]:"
393 " %u travelled beyond end dir block"
394 " (len %u/%zu)",
395 blkoff / sizeof(union afs_xdr_dir_block),
396 offset, next, tmp, nlen);
David Brazdil0f672f62019-12-10 10:32:29 +0000397 return afs_bad(dvnode, afs_file_error_dir_over_end);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000398 }
399 if (!(block->hdr.bitmap[next / 8] &
400 (1 << (next % 8)))) {
401 _debug("ENT[%zu.%u]:"
402 " %u unmarked extension (len %u/%zu)",
403 blkoff / sizeof(union afs_xdr_dir_block),
404 offset, next, tmp, nlen);
David Brazdil0f672f62019-12-10 10:32:29 +0000405 return afs_bad(dvnode, afs_file_error_dir_unmarked_ext);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000406 }
407
408 _debug("ENT[%zu.%u]: ext %u/%zu",
409 blkoff / sizeof(union afs_xdr_dir_block),
410 next, tmp, nlen);
411 next++;
412 }
413
414 /* skip if starts before the current position */
Olivier Deprez92d4c212022-12-06 15:05:30 +0100415 if (offset < curr) {
416 if (next > curr)
417 ctx->pos = blkoff + next * sizeof(union afs_xdr_dirent);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000418 continue;
Olivier Deprez92d4c212022-12-06 15:05:30 +0100419 }
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000420
421 /* found the next entry */
422 if (!dir_emit(ctx, dire->u.name, nlen,
423 ntohl(dire->u.vnode),
424 (ctx->actor == afs_lookup_filldir ||
425 ctx->actor == afs_lookup_one_filldir)?
426 ntohl(dire->u.unique) : DT_UNKNOWN)) {
427 _leave(" = 0 [full]");
428 return 0;
429 }
430
431 ctx->pos = blkoff + next * sizeof(union afs_xdr_dirent);
432 }
433
434 _leave(" = 1 [more]");
435 return 1;
436}
437
438/*
439 * iterate through the data blob that lists the contents of an AFS directory
440 */
441static int afs_dir_iterate(struct inode *dir, struct dir_context *ctx,
David Brazdil0f672f62019-12-10 10:32:29 +0000442 struct key *key, afs_dataversion_t *_dir_version)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000443{
444 struct afs_vnode *dvnode = AFS_FS_I(dir);
445 struct afs_xdr_dir_page *dbuf;
446 union afs_xdr_dir_block *dblock;
447 struct afs_read *req;
448 struct page *page;
449 unsigned blkoff, limit;
450 int ret;
451
452 _enter("{%lu},%u,,", dir->i_ino, (unsigned)ctx->pos);
453
454 if (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(dir)->flags)) {
455 _leave(" = -ESTALE");
456 return -ESTALE;
457 }
458
459 req = afs_read_dir(dvnode, key);
460 if (IS_ERR(req))
461 return PTR_ERR(req);
David Brazdil0f672f62019-12-10 10:32:29 +0000462 *_dir_version = req->data_version;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000463
464 /* round the file position up to the next entry boundary */
465 ctx->pos += sizeof(union afs_xdr_dirent) - 1;
466 ctx->pos &= ~(sizeof(union afs_xdr_dirent) - 1);
467
468 /* walk through the blocks in sequence */
469 ret = 0;
470 while (ctx->pos < req->actual_len) {
471 blkoff = ctx->pos & ~(sizeof(union afs_xdr_dir_block) - 1);
472
473 /* Fetch the appropriate page from the directory and re-add it
474 * to the LRU.
475 */
476 page = req->pages[blkoff / PAGE_SIZE];
477 if (!page) {
David Brazdil0f672f62019-12-10 10:32:29 +0000478 ret = afs_bad(dvnode, afs_file_error_dir_missing_page);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000479 break;
480 }
481 mark_page_accessed(page);
482
483 limit = blkoff & ~(PAGE_SIZE - 1);
484
485 dbuf = kmap(page);
486
487 /* deal with the individual blocks stashed on this page */
488 do {
489 dblock = &dbuf->blocks[(blkoff % PAGE_SIZE) /
490 sizeof(union afs_xdr_dir_block)];
David Brazdil0f672f62019-12-10 10:32:29 +0000491 ret = afs_dir_iterate_block(dvnode, ctx, dblock, blkoff);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000492 if (ret != 1) {
493 kunmap(page);
494 goto out;
495 }
496
497 blkoff += sizeof(union afs_xdr_dir_block);
498
499 } while (ctx->pos < dir->i_size && blkoff < limit);
500
501 kunmap(page);
502 ret = 0;
503 }
504
505out:
506 up_read(&dvnode->validate_lock);
507 afs_put_read(req);
508 _leave(" = %d", ret);
509 return ret;
510}
511
512/*
513 * read an AFS directory
514 */
515static int afs_readdir(struct file *file, struct dir_context *ctx)
516{
David Brazdil0f672f62019-12-10 10:32:29 +0000517 afs_dataversion_t dir_version;
518
519 return afs_dir_iterate(file_inode(file), ctx, afs_file_key(file),
520 &dir_version);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000521}
522
523/*
524 * Search the directory for a single name
525 * - if afs_dir_iterate_block() spots this function, it'll pass the FID
526 * uniquifier through dtype
527 */
528static int afs_lookup_one_filldir(struct dir_context *ctx, const char *name,
529 int nlen, loff_t fpos, u64 ino, unsigned dtype)
530{
531 struct afs_lookup_one_cookie *cookie =
532 container_of(ctx, struct afs_lookup_one_cookie, ctx);
533
534 _enter("{%s,%u},%s,%u,,%llu,%u",
535 cookie->name.name, cookie->name.len, name, nlen,
536 (unsigned long long) ino, dtype);
537
538 /* insanity checks first */
539 BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
540 BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
541
542 if (cookie->name.len != nlen ||
543 memcmp(cookie->name.name, name, nlen) != 0) {
544 _leave(" = 0 [no]");
545 return 0;
546 }
547
548 cookie->fid.vnode = ino;
549 cookie->fid.unique = dtype;
550 cookie->found = 1;
551
552 _leave(" = -1 [found]");
553 return -1;
554}
555
556/*
557 * Do a lookup of a single name in a directory
558 * - just returns the FID the dentry name maps to if found
559 */
560static int afs_do_lookup_one(struct inode *dir, struct dentry *dentry,
David Brazdil0f672f62019-12-10 10:32:29 +0000561 struct afs_fid *fid, struct key *key,
562 afs_dataversion_t *_dir_version)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000563{
564 struct afs_super_info *as = dir->i_sb->s_fs_info;
565 struct afs_lookup_one_cookie cookie = {
566 .ctx.actor = afs_lookup_one_filldir,
567 .name = dentry->d_name,
568 .fid.vid = as->volume->vid
569 };
570 int ret;
571
572 _enter("{%lu},%p{%pd},", dir->i_ino, dentry, dentry);
573
574 /* search the directory */
David Brazdil0f672f62019-12-10 10:32:29 +0000575 ret = afs_dir_iterate(dir, &cookie.ctx, key, _dir_version);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000576 if (ret < 0) {
577 _leave(" = %d [iter]", ret);
578 return ret;
579 }
580
581 ret = -ENOENT;
582 if (!cookie.found) {
583 _leave(" = -ENOENT [not found]");
584 return -ENOENT;
585 }
586
587 *fid = cookie.fid;
David Brazdil0f672f62019-12-10 10:32:29 +0000588 _leave(" = 0 { vn=%llu u=%u }", fid->vnode, fid->unique);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000589 return 0;
590}
591
592/*
593 * search the directory for a name
594 * - if afs_dir_iterate_block() spots this function, it'll pass the FID
595 * uniquifier through dtype
596 */
597static int afs_lookup_filldir(struct dir_context *ctx, const char *name,
598 int nlen, loff_t fpos, u64 ino, unsigned dtype)
599{
600 struct afs_lookup_cookie *cookie =
601 container_of(ctx, struct afs_lookup_cookie, ctx);
602 int ret;
603
604 _enter("{%s,%u},%s,%u,,%llu,%u",
605 cookie->name.name, cookie->name.len, name, nlen,
606 (unsigned long long) ino, dtype);
607
608 /* insanity checks first */
609 BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
610 BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
611
612 if (cookie->found) {
613 if (cookie->nr_fids < 50) {
614 cookie->fids[cookie->nr_fids].vnode = ino;
615 cookie->fids[cookie->nr_fids].unique = dtype;
616 cookie->nr_fids++;
617 }
618 } else if (cookie->name.len == nlen &&
619 memcmp(cookie->name.name, name, nlen) == 0) {
Olivier Deprez157378f2022-04-04 15:47:50 +0200620 cookie->fids[1].vnode = ino;
621 cookie->fids[1].unique = dtype;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000622 cookie->found = 1;
623 if (cookie->one_only)
624 return -1;
625 }
626
627 ret = cookie->nr_fids >= 50 ? -1 : 0;
628 _leave(" = %d", ret);
629 return ret;
630}
631
632/*
Olivier Deprez157378f2022-04-04 15:47:50 +0200633 * Deal with the result of a successful lookup operation. Turn all the files
634 * into inodes and save the first one - which is the one we actually want.
635 */
636static void afs_do_lookup_success(struct afs_operation *op)
637{
638 struct afs_vnode_param *vp;
639 struct afs_vnode *vnode;
640 struct inode *inode;
641 u32 abort_code;
642 int i;
643
644 _enter("");
645
646 for (i = 0; i < op->nr_files; i++) {
647 switch (i) {
648 case 0:
649 vp = &op->file[0];
650 abort_code = vp->scb.status.abort_code;
651 if (abort_code != 0) {
652 op->ac.abort_code = abort_code;
653 op->error = afs_abort_to_error(abort_code);
654 }
655 break;
656
657 case 1:
658 vp = &op->file[1];
659 break;
660
661 default:
662 vp = &op->more_files[i - 2];
663 break;
664 }
665
666 if (!vp->scb.have_status && !vp->scb.have_error)
667 continue;
668
669 _debug("do [%u]", i);
670 if (vp->vnode) {
671 if (!test_bit(AFS_VNODE_UNSET, &vp->vnode->flags))
672 afs_vnode_commit_status(op, vp);
673 } else if (vp->scb.status.abort_code == 0) {
674 inode = afs_iget(op, vp);
675 if (!IS_ERR(inode)) {
676 vnode = AFS_FS_I(inode);
677 afs_cache_permit(vnode, op->key,
678 0 /* Assume vnode->cb_break is 0 */ +
679 op->cb_v_break,
680 &vp->scb);
681 vp->vnode = vnode;
682 vp->put_vnode = true;
683 }
684 } else {
685 _debug("- abort %d %llx:%llx.%x",
686 vp->scb.status.abort_code,
687 vp->fid.vid, vp->fid.vnode, vp->fid.unique);
688 }
689 }
690
691 _leave("");
692}
693
694static const struct afs_operation_ops afs_inline_bulk_status_operation = {
695 .issue_afs_rpc = afs_fs_inline_bulk_status,
696 .issue_yfs_rpc = yfs_fs_inline_bulk_status,
697 .success = afs_do_lookup_success,
698};
699
700static const struct afs_operation_ops afs_lookup_fetch_status_operation = {
701 .issue_afs_rpc = afs_fs_fetch_status,
702 .issue_yfs_rpc = yfs_fs_fetch_status,
703 .success = afs_do_lookup_success,
704 .aborted = afs_check_for_remote_deletion,
705};
706
707/*
708 * See if we know that the server we expect to use doesn't support
709 * FS.InlineBulkStatus.
710 */
711static bool afs_server_supports_ibulk(struct afs_vnode *dvnode)
712{
713 struct afs_server_list *slist;
714 struct afs_volume *volume = dvnode->volume;
715 struct afs_server *server;
716 bool ret = true;
717 int i;
718
719 if (!test_bit(AFS_VOLUME_MAYBE_NO_IBULK, &volume->flags))
720 return true;
721
722 rcu_read_lock();
723 slist = rcu_dereference(volume->servers);
724
725 for (i = 0; i < slist->nr_servers; i++) {
726 server = slist->servers[i].server;
727 if (server == dvnode->cb_server) {
728 if (test_bit(AFS_SERVER_FL_NO_IBULK, &server->flags))
729 ret = false;
730 break;
731 }
732 }
733
734 rcu_read_unlock();
735 return ret;
736}
737
738/*
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000739 * Do a lookup in a directory. We make use of bulk lookup to query a slew of
740 * files in one go and create inodes for them. The inode of the file we were
741 * asked for is returned.
742 */
743static struct inode *afs_do_lookup(struct inode *dir, struct dentry *dentry,
744 struct key *key)
745{
746 struct afs_lookup_cookie *cookie;
Olivier Deprez157378f2022-04-04 15:47:50 +0200747 struct afs_vnode_param *vp;
748 struct afs_operation *op;
David Brazdil0f672f62019-12-10 10:32:29 +0000749 struct afs_vnode *dvnode = AFS_FS_I(dir), *vnode;
750 struct inode *inode = NULL, *ti;
751 afs_dataversion_t data_version = READ_ONCE(dvnode->status.data_version);
Olivier Deprez157378f2022-04-04 15:47:50 +0200752 long ret;
753 int i;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000754
755 _enter("{%lu},%p{%pd},", dir->i_ino, dentry, dentry);
756
757 cookie = kzalloc(sizeof(struct afs_lookup_cookie), GFP_KERNEL);
758 if (!cookie)
759 return ERR_PTR(-ENOMEM);
760
Olivier Deprez157378f2022-04-04 15:47:50 +0200761 for (i = 0; i < ARRAY_SIZE(cookie->fids); i++)
762 cookie->fids[i].vid = dvnode->fid.vid;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000763 cookie->ctx.actor = afs_lookup_filldir;
764 cookie->name = dentry->d_name;
Olivier Deprez0e641232021-09-23 10:07:05 +0200765 cookie->nr_fids = 2; /* slot 0 is saved for the fid we actually want
766 * and slot 1 for the directory */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000767
Olivier Deprez157378f2022-04-04 15:47:50 +0200768 if (!afs_server_supports_ibulk(dvnode))
769 cookie->one_only = true;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000770
771 /* search the directory */
David Brazdil0f672f62019-12-10 10:32:29 +0000772 ret = afs_dir_iterate(dir, &cookie->ctx, key, &data_version);
Olivier Deprez157378f2022-04-04 15:47:50 +0200773 if (ret < 0)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000774 goto out;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000775
David Brazdil0f672f62019-12-10 10:32:29 +0000776 dentry->d_fsdata = (void *)(unsigned long)data_version;
777
Olivier Deprez157378f2022-04-04 15:47:50 +0200778 ret = -ENOENT;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000779 if (!cookie->found)
780 goto out;
781
782 /* Check to see if we already have an inode for the primary fid. */
Olivier Deprez157378f2022-04-04 15:47:50 +0200783 inode = ilookup5(dir->i_sb, cookie->fids[1].vnode,
784 afs_ilookup5_test_by_fid, &cookie->fids[1]);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000785 if (inode)
Olivier Deprez157378f2022-04-04 15:47:50 +0200786 goto out; /* We do */
787
788 /* Okay, we didn't find it. We need to query the server - and whilst
789 * we're doing that, we're going to attempt to look up a bunch of other
790 * vnodes also.
791 */
792 op = afs_alloc_operation(NULL, dvnode->volume);
793 if (IS_ERR(op)) {
794 ret = PTR_ERR(op);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000795 goto out;
Olivier Deprez157378f2022-04-04 15:47:50 +0200796 }
797
798 afs_op_set_vnode(op, 0, dvnode);
799 afs_op_set_fid(op, 1, &cookie->fids[1]);
800
801 op->nr_files = cookie->nr_fids;
802 _debug("nr_files %u", op->nr_files);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000803
804 /* Need space for examining all the selected files */
Olivier Deprez157378f2022-04-04 15:47:50 +0200805 op->error = -ENOMEM;
806 if (op->nr_files > 2) {
807 op->more_files = kvcalloc(op->nr_files - 2,
808 sizeof(struct afs_vnode_param),
809 GFP_KERNEL);
810 if (!op->more_files)
811 goto out_op;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000812
Olivier Deprez157378f2022-04-04 15:47:50 +0200813 for (i = 2; i < op->nr_files; i++) {
814 vp = &op->more_files[i - 2];
815 vp->fid = cookie->fids[i];
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000816
Olivier Deprez157378f2022-04-04 15:47:50 +0200817 /* Find any inodes that already exist and get their
818 * callback counters.
819 */
820 ti = ilookup5_nowait(dir->i_sb, vp->fid.vnode,
821 afs_ilookup5_test_by_fid, &vp->fid);
822 if (!IS_ERR_OR_NULL(ti)) {
823 vnode = AFS_FS_I(ti);
824 vp->dv_before = vnode->status.data_version;
825 vp->cb_break_before = afs_calc_vnode_cb_break(vnode);
826 vp->vnode = vnode;
827 vp->put_vnode = true;
828 vp->speculative = true; /* vnode not locked */
829 }
David Brazdil0f672f62019-12-10 10:32:29 +0000830 }
831 }
832
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000833 /* Try FS.InlineBulkStatus first. Abort codes for the individual
834 * lookups contained therein are stored in the reply without aborting
835 * the whole operation.
836 */
Olivier Deprez157378f2022-04-04 15:47:50 +0200837 op->error = -ENOTSUPP;
838 if (!cookie->one_only) {
839 op->ops = &afs_inline_bulk_status_operation;
840 afs_begin_vnode_operation(op);
841 afs_wait_for_operation(op);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000842 }
843
Olivier Deprez157378f2022-04-04 15:47:50 +0200844 if (op->error == -ENOTSUPP) {
845 /* We could try FS.BulkStatus next, but this aborts the entire
846 * op if any of the lookups fails - so, for the moment, revert
847 * to FS.FetchStatus for op->file[1].
848 */
849 op->fetch_status.which = 1;
850 op->ops = &afs_lookup_fetch_status_operation;
851 afs_begin_vnode_operation(op);
852 afs_wait_for_operation(op);
853 }
854 inode = ERR_PTR(op->error);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000855
Olivier Deprez157378f2022-04-04 15:47:50 +0200856out_op:
857 if (op->error == 0) {
858 inode = &op->file[1].vnode->vfs_inode;
859 op->file[1].vnode = NULL;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000860 }
861
Olivier Deprez157378f2022-04-04 15:47:50 +0200862 if (op->file[0].scb.have_status)
863 dentry->d_fsdata = (void *)(unsigned long)op->file[0].scb.status.data_version;
864 else
865 dentry->d_fsdata = (void *)(unsigned long)op->file[0].dv_before;
866 ret = afs_put_operation(op);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000867out:
868 kfree(cookie);
Olivier Deprez157378f2022-04-04 15:47:50 +0200869 _leave("");
870 return inode ?: ERR_PTR(ret);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000871}
872
873/*
874 * Look up an entry in a directory with @sys substitution.
875 */
876static struct dentry *afs_lookup_atsys(struct inode *dir, struct dentry *dentry,
877 struct key *key)
878{
879 struct afs_sysnames *subs;
880 struct afs_net *net = afs_i2net(dir);
881 struct dentry *ret;
882 char *buf, *p, *name;
883 int len, i;
884
885 _enter("");
886
887 ret = ERR_PTR(-ENOMEM);
888 p = buf = kmalloc(AFSNAMEMAX, GFP_KERNEL);
889 if (!buf)
890 goto out_p;
891 if (dentry->d_name.len > 4) {
892 memcpy(p, dentry->d_name.name, dentry->d_name.len - 4);
893 p += dentry->d_name.len - 4;
894 }
895
896 /* There is an ordered list of substitutes that we have to try. */
897 read_lock(&net->sysnames_lock);
898 subs = net->sysnames;
899 refcount_inc(&subs->usage);
900 read_unlock(&net->sysnames_lock);
901
902 for (i = 0; i < subs->nr; i++) {
903 name = subs->subs[i];
904 len = dentry->d_name.len - 4 + strlen(name);
905 if (len >= AFSNAMEMAX) {
906 ret = ERR_PTR(-ENAMETOOLONG);
907 goto out_s;
908 }
909
910 strcpy(p, name);
911 ret = lookup_one_len(buf, dentry->d_parent, len);
912 if (IS_ERR(ret) || d_is_positive(ret))
913 goto out_s;
914 dput(ret);
915 }
916
917 /* We don't want to d_add() the @sys dentry here as we don't want to
918 * the cached dentry to hide changes to the sysnames list.
919 */
920 ret = NULL;
921out_s:
922 afs_put_sysnames(subs);
923 kfree(buf);
924out_p:
925 key_put(key);
926 return ret;
927}
928
929/*
930 * look up an entry in a directory
931 */
932static struct dentry *afs_lookup(struct inode *dir, struct dentry *dentry,
933 unsigned int flags)
934{
935 struct afs_vnode *dvnode = AFS_FS_I(dir);
Olivier Deprez0e641232021-09-23 10:07:05 +0200936 struct afs_fid fid = {};
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000937 struct inode *inode;
938 struct dentry *d;
939 struct key *key;
940 int ret;
941
David Brazdil0f672f62019-12-10 10:32:29 +0000942 _enter("{%llx:%llu},%p{%pd},",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000943 dvnode->fid.vid, dvnode->fid.vnode, dentry, dentry);
944
945 ASSERTCMP(d_inode(dentry), ==, NULL);
946
947 if (dentry->d_name.len >= AFSNAMEMAX) {
948 _leave(" = -ENAMETOOLONG");
949 return ERR_PTR(-ENAMETOOLONG);
950 }
951
952 if (test_bit(AFS_VNODE_DELETED, &dvnode->flags)) {
953 _leave(" = -ESTALE");
954 return ERR_PTR(-ESTALE);
955 }
956
957 key = afs_request_key(dvnode->volume->cell);
958 if (IS_ERR(key)) {
959 _leave(" = %ld [key]", PTR_ERR(key));
960 return ERR_CAST(key);
961 }
962
963 ret = afs_validate(dvnode, key);
964 if (ret < 0) {
965 key_put(key);
966 _leave(" = %d [val]", ret);
967 return ERR_PTR(ret);
968 }
969
970 if (dentry->d_name.len >= 4 &&
971 dentry->d_name.name[dentry->d_name.len - 4] == '@' &&
972 dentry->d_name.name[dentry->d_name.len - 3] == 's' &&
973 dentry->d_name.name[dentry->d_name.len - 2] == 'y' &&
974 dentry->d_name.name[dentry->d_name.len - 1] == 's')
975 return afs_lookup_atsys(dir, dentry, key);
976
977 afs_stat_v(dvnode, n_lookup);
978 inode = afs_do_lookup(dir, dentry, key);
979 key_put(key);
Olivier Deprez0e641232021-09-23 10:07:05 +0200980 if (inode == ERR_PTR(-ENOENT))
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000981 inode = afs_try_auto_mntpt(dentry, dir);
Olivier Deprez0e641232021-09-23 10:07:05 +0200982
983 if (!IS_ERR_OR_NULL(inode))
984 fid = AFS_FS_I(inode)->fid;
985
Olivier Deprez157378f2022-04-04 15:47:50 +0200986 _debug("splice %p", dentry->d_inode);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000987 d = d_splice_alias(inode, dentry);
David Brazdil0f672f62019-12-10 10:32:29 +0000988 if (!IS_ERR_OR_NULL(d)) {
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000989 d->d_fsdata = dentry->d_fsdata;
Olivier Deprez0e641232021-09-23 10:07:05 +0200990 trace_afs_lookup(dvnode, &d->d_name, &fid);
David Brazdil0f672f62019-12-10 10:32:29 +0000991 } else {
Olivier Deprez0e641232021-09-23 10:07:05 +0200992 trace_afs_lookup(dvnode, &dentry->d_name, &fid);
David Brazdil0f672f62019-12-10 10:32:29 +0000993 }
Olivier Deprez157378f2022-04-04 15:47:50 +0200994 _leave("");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +0000995 return d;
996}
997
998/*
David Brazdil0f672f62019-12-10 10:32:29 +0000999 * Check the validity of a dentry under RCU conditions.
1000 */
1001static int afs_d_revalidate_rcu(struct dentry *dentry)
1002{
Olivier Deprez157378f2022-04-04 15:47:50 +02001003 struct afs_vnode *dvnode;
David Brazdil0f672f62019-12-10 10:32:29 +00001004 struct dentry *parent;
Olivier Deprez157378f2022-04-04 15:47:50 +02001005 struct inode *dir;
David Brazdil0f672f62019-12-10 10:32:29 +00001006 long dir_version, de_version;
1007
1008 _enter("%p", dentry);
1009
1010 /* Check the parent directory is still valid first. */
1011 parent = READ_ONCE(dentry->d_parent);
1012 dir = d_inode_rcu(parent);
1013 if (!dir)
1014 return -ECHILD;
1015 dvnode = AFS_FS_I(dir);
1016 if (test_bit(AFS_VNODE_DELETED, &dvnode->flags))
1017 return -ECHILD;
1018
1019 if (!afs_check_validity(dvnode))
1020 return -ECHILD;
1021
1022 /* We only need to invalidate a dentry if the server's copy changed
1023 * behind our back. If we made the change, it's no problem. Note that
1024 * on a 32-bit system, we only have 32 bits in the dentry to store the
1025 * version.
1026 */
1027 dir_version = (long)READ_ONCE(dvnode->status.data_version);
1028 de_version = (long)READ_ONCE(dentry->d_fsdata);
1029 if (de_version != dir_version) {
1030 dir_version = (long)READ_ONCE(dvnode->invalid_before);
1031 if (de_version - dir_version < 0)
1032 return -ECHILD;
1033 }
1034
David Brazdil0f672f62019-12-10 10:32:29 +00001035 return 1; /* Still valid */
1036}
1037
1038/*
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001039 * check that a dentry lookup hit has found a valid entry
1040 * - NOTE! the hit can be a negative hit too, so we can't assume we have an
1041 * inode
1042 */
1043static int afs_d_revalidate(struct dentry *dentry, unsigned int flags)
1044{
1045 struct afs_vnode *vnode, *dir;
Olivier Deprez157378f2022-04-04 15:47:50 +02001046 struct afs_fid fid;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001047 struct dentry *parent;
1048 struct inode *inode;
1049 struct key *key;
Olivier Deprez0e641232021-09-23 10:07:05 +02001050 afs_dataversion_t dir_version, invalid_before;
David Brazdil0f672f62019-12-10 10:32:29 +00001051 long de_version;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001052 int ret;
1053
1054 if (flags & LOOKUP_RCU)
David Brazdil0f672f62019-12-10 10:32:29 +00001055 return afs_d_revalidate_rcu(dentry);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001056
1057 if (d_really_is_positive(dentry)) {
1058 vnode = AFS_FS_I(d_inode(dentry));
David Brazdil0f672f62019-12-10 10:32:29 +00001059 _enter("{v={%llx:%llu} n=%pd fl=%lx},",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001060 vnode->fid.vid, vnode->fid.vnode, dentry,
1061 vnode->flags);
1062 } else {
1063 _enter("{neg n=%pd}", dentry);
1064 }
1065
1066 key = afs_request_key(AFS_FS_S(dentry->d_sb)->volume->cell);
1067 if (IS_ERR(key))
1068 key = NULL;
1069
Olivier Deprez157378f2022-04-04 15:47:50 +02001070 /* Hold the parent dentry so we can peer at it */
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001071 parent = dget_parent(dentry);
1072 dir = AFS_FS_I(d_inode(parent));
1073
1074 /* validate the parent directory */
1075 afs_validate(dir, key);
1076
1077 if (test_bit(AFS_VNODE_DELETED, &dir->flags)) {
1078 _debug("%pd: parent dir deleted", dentry);
Olivier Deprez157378f2022-04-04 15:47:50 +02001079 goto not_found;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001080 }
1081
1082 /* We only need to invalidate a dentry if the server's copy changed
1083 * behind our back. If we made the change, it's no problem. Note that
1084 * on a 32-bit system, we only have 32 bits in the dentry to store the
1085 * version.
1086 */
David Brazdil0f672f62019-12-10 10:32:29 +00001087 dir_version = dir->status.data_version;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001088 de_version = (long)dentry->d_fsdata;
David Brazdil0f672f62019-12-10 10:32:29 +00001089 if (de_version == (long)dir_version)
1090 goto out_valid_noupdate;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001091
Olivier Deprez0e641232021-09-23 10:07:05 +02001092 invalid_before = dir->invalid_before;
1093 if (de_version - (long)invalid_before >= 0)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001094 goto out_valid;
1095
1096 _debug("dir modified");
1097 afs_stat_v(dir, n_reval);
1098
1099 /* search the directory for this vnode */
David Brazdil0f672f62019-12-10 10:32:29 +00001100 ret = afs_do_lookup_one(&dir->vfs_inode, dentry, &fid, key, &dir_version);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001101 switch (ret) {
1102 case 0:
1103 /* the filename maps to something */
1104 if (d_really_is_negative(dentry))
Olivier Deprez157378f2022-04-04 15:47:50 +02001105 goto not_found;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001106 inode = d_inode(dentry);
1107 if (is_bad_inode(inode)) {
1108 printk("kAFS: afs_d_revalidate: %pd2 has bad inode\n",
1109 dentry);
Olivier Deprez157378f2022-04-04 15:47:50 +02001110 goto not_found;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001111 }
1112
1113 vnode = AFS_FS_I(inode);
1114
1115 /* if the vnode ID has changed, then the dirent points to a
1116 * different file */
1117 if (fid.vnode != vnode->fid.vnode) {
David Brazdil0f672f62019-12-10 10:32:29 +00001118 _debug("%pd: dirent changed [%llu != %llu]",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001119 dentry, fid.vnode,
1120 vnode->fid.vnode);
1121 goto not_found;
1122 }
1123
1124 /* if the vnode ID uniqifier has changed, then the file has
1125 * been deleted and replaced, and the original vnode ID has
1126 * been reused */
1127 if (fid.unique != vnode->fid.unique) {
1128 _debug("%pd: file deleted (uq %u -> %u I:%u)",
1129 dentry, fid.unique,
1130 vnode->fid.unique,
1131 vnode->vfs_inode.i_generation);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001132 goto not_found;
1133 }
1134 goto out_valid;
1135
1136 case -ENOENT:
1137 /* the filename is unknown */
1138 _debug("%pd: dirent not found", dentry);
1139 if (d_really_is_positive(dentry))
1140 goto not_found;
1141 goto out_valid;
1142
1143 default:
1144 _debug("failed to iterate dir %pd: %d",
1145 parent, ret);
Olivier Deprez157378f2022-04-04 15:47:50 +02001146 goto not_found;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001147 }
1148
1149out_valid:
David Brazdil0f672f62019-12-10 10:32:29 +00001150 dentry->d_fsdata = (void *)(unsigned long)dir_version;
1151out_valid_noupdate:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001152 dput(parent);
1153 key_put(key);
1154 _leave(" = 1 [valid]");
1155 return 1;
1156
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001157not_found:
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001158 _debug("dropping dentry %pd2", dentry);
1159 dput(parent);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001160 key_put(key);
1161
1162 _leave(" = 0 [bad]");
1163 return 0;
1164}
1165
1166/*
1167 * allow the VFS to enquire as to whether a dentry should be unhashed (mustn't
1168 * sleep)
1169 * - called from dput() when d_count is going to 0.
1170 * - return 1 to request dentry be unhashed, 0 otherwise
1171 */
1172static int afs_d_delete(const struct dentry *dentry)
1173{
1174 _enter("%pd", dentry);
1175
1176 if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
1177 goto zap;
1178
1179 if (d_really_is_positive(dentry) &&
1180 (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(d_inode(dentry))->flags) ||
1181 test_bit(AFS_VNODE_PSEUDODIR, &AFS_FS_I(d_inode(dentry))->flags)))
1182 goto zap;
1183
1184 _leave(" = 0 [keep]");
1185 return 0;
1186
1187zap:
1188 _leave(" = 1 [zap]");
1189 return 1;
1190}
1191
1192/*
David Brazdil0f672f62019-12-10 10:32:29 +00001193 * Clean up sillyrename files on dentry removal.
1194 */
1195static void afs_d_iput(struct dentry *dentry, struct inode *inode)
1196{
1197 if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
1198 afs_silly_iput(dentry, inode);
1199 iput(inode);
1200}
1201
1202/*
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001203 * handle dentry release
1204 */
1205void afs_d_release(struct dentry *dentry)
1206{
1207 _enter("%pd", dentry);
1208}
1209
Olivier Deprez157378f2022-04-04 15:47:50 +02001210void afs_check_for_remote_deletion(struct afs_operation *op)
1211{
1212 struct afs_vnode *vnode = op->file[0].vnode;
1213
1214 switch (op->ac.abort_code) {
1215 case VNOVNODE:
1216 set_bit(AFS_VNODE_DELETED, &vnode->flags);
1217 afs_break_callback(vnode, afs_cb_break_for_deleted);
1218 }
1219}
1220
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001221/*
1222 * Create a new inode for create/mkdir/symlink
1223 */
Olivier Deprez157378f2022-04-04 15:47:50 +02001224static void afs_vnode_new_inode(struct afs_operation *op)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001225{
Olivier Deprez157378f2022-04-04 15:47:50 +02001226 struct afs_vnode_param *vp = &op->file[1];
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001227 struct afs_vnode *vnode;
1228 struct inode *inode;
1229
Olivier Deprez157378f2022-04-04 15:47:50 +02001230 _enter("");
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001231
Olivier Deprez157378f2022-04-04 15:47:50 +02001232 ASSERTCMP(op->error, ==, 0);
1233
1234 inode = afs_iget(op, vp);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001235 if (IS_ERR(inode)) {
1236 /* ENOMEM or EINTR at a really inconvenient time - just abandon
1237 * the new directory on the server.
1238 */
Olivier Deprez157378f2022-04-04 15:47:50 +02001239 op->error = PTR_ERR(inode);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001240 return;
1241 }
1242
1243 vnode = AFS_FS_I(inode);
1244 set_bit(AFS_VNODE_NEW_CONTENT, &vnode->flags);
Olivier Deprez157378f2022-04-04 15:47:50 +02001245 if (!op->error)
1246 afs_cache_permit(vnode, op->key, vnode->cb_break, &vp->scb);
1247 d_instantiate(op->dentry, inode);
David Brazdil0f672f62019-12-10 10:32:29 +00001248}
1249
Olivier Deprez157378f2022-04-04 15:47:50 +02001250static void afs_create_success(struct afs_operation *op)
David Brazdil0f672f62019-12-10 10:32:29 +00001251{
Olivier Deprez157378f2022-04-04 15:47:50 +02001252 _enter("op=%08x", op->debug_id);
1253 op->ctime = op->file[0].scb.status.mtime_client;
1254 afs_vnode_commit_status(op, &op->file[0]);
1255 afs_update_dentry_version(op, &op->file[0], op->dentry);
1256 afs_vnode_new_inode(op);
David Brazdil0f672f62019-12-10 10:32:29 +00001257}
1258
Olivier Deprez157378f2022-04-04 15:47:50 +02001259static void afs_create_edit_dir(struct afs_operation *op)
David Brazdil0f672f62019-12-10 10:32:29 +00001260{
Olivier Deprez157378f2022-04-04 15:47:50 +02001261 struct afs_vnode_param *dvp = &op->file[0];
1262 struct afs_vnode_param *vp = &op->file[1];
1263 struct afs_vnode *dvnode = dvp->vnode;
1264
1265 _enter("op=%08x", op->debug_id);
1266
1267 down_write(&dvnode->validate_lock);
1268 if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags) &&
1269 dvnode->status.data_version == dvp->dv_before + dvp->dv_delta)
1270 afs_edit_dir_add(dvnode, &op->dentry->d_name, &vp->fid,
1271 op->create.reason);
1272 up_write(&dvnode->validate_lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001273}
1274
Olivier Deprez157378f2022-04-04 15:47:50 +02001275static void afs_create_put(struct afs_operation *op)
1276{
1277 _enter("op=%08x", op->debug_id);
1278
1279 if (op->error)
1280 d_drop(op->dentry);
1281}
1282
1283static const struct afs_operation_ops afs_mkdir_operation = {
1284 .issue_afs_rpc = afs_fs_make_dir,
1285 .issue_yfs_rpc = yfs_fs_make_dir,
1286 .success = afs_create_success,
1287 .aborted = afs_check_for_remote_deletion,
1288 .edit_dir = afs_create_edit_dir,
1289 .put = afs_create_put,
1290};
1291
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001292/*
1293 * create a directory on an AFS filesystem
1294 */
1295static int afs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
1296{
Olivier Deprez157378f2022-04-04 15:47:50 +02001297 struct afs_operation *op;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001298 struct afs_vnode *dvnode = AFS_FS_I(dir);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001299
David Brazdil0f672f62019-12-10 10:32:29 +00001300 _enter("{%llx:%llu},{%pd},%ho",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001301 dvnode->fid.vid, dvnode->fid.vnode, dentry, mode);
1302
Olivier Deprez157378f2022-04-04 15:47:50 +02001303 op = afs_alloc_operation(NULL, dvnode->volume);
1304 if (IS_ERR(op)) {
1305 d_drop(dentry);
1306 return PTR_ERR(op);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001307 }
1308
Olivier Deprez157378f2022-04-04 15:47:50 +02001309 afs_op_set_vnode(op, 0, dvnode);
1310 op->file[0].dv_delta = 1;
1311 op->file[0].modification = true;
1312 op->file[0].update_ctime = true;
1313 op->dentry = dentry;
1314 op->create.mode = S_IFDIR | mode;
1315 op->create.reason = afs_edit_dir_for_mkdir;
1316 op->ops = &afs_mkdir_operation;
1317 return afs_do_sync_operation(op);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001318}
1319
1320/*
1321 * Remove a subdir from a directory.
1322 */
1323static void afs_dir_remove_subdir(struct dentry *dentry)
1324{
1325 if (d_really_is_positive(dentry)) {
1326 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
1327
1328 clear_nlink(&vnode->vfs_inode);
1329 set_bit(AFS_VNODE_DELETED, &vnode->flags);
1330 clear_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
1331 clear_bit(AFS_VNODE_DIR_VALID, &vnode->flags);
1332 }
1333}
1334
Olivier Deprez157378f2022-04-04 15:47:50 +02001335static void afs_rmdir_success(struct afs_operation *op)
1336{
1337 _enter("op=%08x", op->debug_id);
1338 op->ctime = op->file[0].scb.status.mtime_client;
1339 afs_vnode_commit_status(op, &op->file[0]);
1340 afs_update_dentry_version(op, &op->file[0], op->dentry);
1341}
1342
1343static void afs_rmdir_edit_dir(struct afs_operation *op)
1344{
1345 struct afs_vnode_param *dvp = &op->file[0];
1346 struct afs_vnode *dvnode = dvp->vnode;
1347
1348 _enter("op=%08x", op->debug_id);
1349 afs_dir_remove_subdir(op->dentry);
1350
1351 down_write(&dvnode->validate_lock);
1352 if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags) &&
1353 dvnode->status.data_version == dvp->dv_before + dvp->dv_delta)
1354 afs_edit_dir_remove(dvnode, &op->dentry->d_name,
1355 afs_edit_dir_for_rmdir);
1356 up_write(&dvnode->validate_lock);
1357}
1358
1359static void afs_rmdir_put(struct afs_operation *op)
1360{
1361 _enter("op=%08x", op->debug_id);
1362 if (op->file[1].vnode)
1363 up_write(&op->file[1].vnode->rmdir_lock);
1364}
1365
1366static const struct afs_operation_ops afs_rmdir_operation = {
1367 .issue_afs_rpc = afs_fs_remove_dir,
1368 .issue_yfs_rpc = yfs_fs_remove_dir,
1369 .success = afs_rmdir_success,
1370 .aborted = afs_check_for_remote_deletion,
1371 .edit_dir = afs_rmdir_edit_dir,
1372 .put = afs_rmdir_put,
1373};
1374
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001375/*
1376 * remove a directory from an AFS filesystem
1377 */
1378static int afs_rmdir(struct inode *dir, struct dentry *dentry)
1379{
Olivier Deprez157378f2022-04-04 15:47:50 +02001380 struct afs_operation *op;
David Brazdil0f672f62019-12-10 10:32:29 +00001381 struct afs_vnode *dvnode = AFS_FS_I(dir), *vnode = NULL;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001382 int ret;
1383
David Brazdil0f672f62019-12-10 10:32:29 +00001384 _enter("{%llx:%llu},{%pd}",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001385 dvnode->fid.vid, dvnode->fid.vnode, dentry);
1386
Olivier Deprez157378f2022-04-04 15:47:50 +02001387 op = afs_alloc_operation(NULL, dvnode->volume);
1388 if (IS_ERR(op))
1389 return PTR_ERR(op);
David Brazdil0f672f62019-12-10 10:32:29 +00001390
Olivier Deprez157378f2022-04-04 15:47:50 +02001391 afs_op_set_vnode(op, 0, dvnode);
1392 op->file[0].dv_delta = 1;
1393 op->file[0].modification = true;
1394 op->file[0].update_ctime = true;
1395
1396 op->dentry = dentry;
1397 op->ops = &afs_rmdir_operation;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001398
David Brazdil0f672f62019-12-10 10:32:29 +00001399 /* Try to make sure we have a callback promise on the victim. */
1400 if (d_really_is_positive(dentry)) {
1401 vnode = AFS_FS_I(d_inode(dentry));
Olivier Deprez157378f2022-04-04 15:47:50 +02001402 ret = afs_validate(vnode, op->key);
David Brazdil0f672f62019-12-10 10:32:29 +00001403 if (ret < 0)
Olivier Deprez157378f2022-04-04 15:47:50 +02001404 goto error;
David Brazdil0f672f62019-12-10 10:32:29 +00001405 }
1406
1407 if (vnode) {
1408 ret = down_write_killable(&vnode->rmdir_lock);
1409 if (ret < 0)
Olivier Deprez157378f2022-04-04 15:47:50 +02001410 goto error;
1411 op->file[1].vnode = vnode;
David Brazdil0f672f62019-12-10 10:32:29 +00001412 }
1413
Olivier Deprez157378f2022-04-04 15:47:50 +02001414 return afs_do_sync_operation(op);
David Brazdil0f672f62019-12-10 10:32:29 +00001415
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001416error:
Olivier Deprez157378f2022-04-04 15:47:50 +02001417 return afs_put_operation(op);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001418}
1419
1420/*
1421 * Remove a link to a file or symlink from a directory.
1422 *
1423 * If the file was not deleted due to excess hard links, the fileserver will
1424 * break the callback promise on the file - if it had one - before it returns
1425 * to us, and if it was deleted, it won't
1426 *
1427 * However, if we didn't have a callback promise outstanding, or it was
1428 * outstanding on a different server, then it won't break it either...
1429 */
Olivier Deprez157378f2022-04-04 15:47:50 +02001430static void afs_dir_remove_link(struct afs_operation *op)
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001431{
Olivier Deprez157378f2022-04-04 15:47:50 +02001432 struct afs_vnode *dvnode = op->file[0].vnode;
1433 struct afs_vnode *vnode = op->file[1].vnode;
1434 struct dentry *dentry = op->dentry;
1435 int ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001436
Olivier Deprez157378f2022-04-04 15:47:50 +02001437 if (op->error != 0 ||
1438 (op->file[1].scb.have_status && op->file[1].scb.have_error))
1439 return;
1440 if (d_really_is_positive(dentry))
1441 return;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001442
Olivier Deprez157378f2022-04-04 15:47:50 +02001443 if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
1444 /* Already done */
1445 } else if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags)) {
1446 write_seqlock(&vnode->cb_lock);
1447 drop_nlink(&vnode->vfs_inode);
1448 if (vnode->vfs_inode.i_nlink == 0) {
1449 set_bit(AFS_VNODE_DELETED, &vnode->flags);
1450 __afs_break_callback(vnode, afs_cb_break_for_unlink);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001451 }
Olivier Deprez157378f2022-04-04 15:47:50 +02001452 write_sequnlock(&vnode->cb_lock);
1453 } else {
1454 afs_break_callback(vnode, afs_cb_break_for_unlink);
1455
1456 if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
1457 _debug("AFS_VNODE_DELETED");
1458
1459 ret = afs_validate(vnode, op->key);
1460 if (ret != -ESTALE)
1461 op->error = ret;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001462 }
1463
Olivier Deprez157378f2022-04-04 15:47:50 +02001464 _debug("nlink %d [val %d]", vnode->vfs_inode.i_nlink, op->error);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001465}
1466
Olivier Deprez157378f2022-04-04 15:47:50 +02001467static void afs_unlink_success(struct afs_operation *op)
1468{
1469 _enter("op=%08x", op->debug_id);
1470 op->ctime = op->file[0].scb.status.mtime_client;
1471 afs_check_dir_conflict(op, &op->file[0]);
1472 afs_vnode_commit_status(op, &op->file[0]);
1473 afs_vnode_commit_status(op, &op->file[1]);
1474 afs_update_dentry_version(op, &op->file[0], op->dentry);
1475 afs_dir_remove_link(op);
1476}
1477
1478static void afs_unlink_edit_dir(struct afs_operation *op)
1479{
1480 struct afs_vnode_param *dvp = &op->file[0];
1481 struct afs_vnode *dvnode = dvp->vnode;
1482
1483 _enter("op=%08x", op->debug_id);
1484 down_write(&dvnode->validate_lock);
1485 if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags) &&
1486 dvnode->status.data_version == dvp->dv_before + dvp->dv_delta)
1487 afs_edit_dir_remove(dvnode, &op->dentry->d_name,
1488 afs_edit_dir_for_unlink);
1489 up_write(&dvnode->validate_lock);
1490}
1491
1492static void afs_unlink_put(struct afs_operation *op)
1493{
1494 _enter("op=%08x", op->debug_id);
1495 if (op->unlink.need_rehash && op->error < 0 && op->error != -ENOENT)
1496 d_rehash(op->dentry);
1497}
1498
1499static const struct afs_operation_ops afs_unlink_operation = {
1500 .issue_afs_rpc = afs_fs_remove_file,
1501 .issue_yfs_rpc = yfs_fs_remove_file,
1502 .success = afs_unlink_success,
1503 .aborted = afs_check_for_remote_deletion,
1504 .edit_dir = afs_unlink_edit_dir,
1505 .put = afs_unlink_put,
1506};
1507
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001508/*
1509 * Remove a file or symlink from an AFS filesystem.
1510 */
1511static int afs_unlink(struct inode *dir, struct dentry *dentry)
1512{
Olivier Deprez157378f2022-04-04 15:47:50 +02001513 struct afs_operation *op;
David Brazdil0f672f62019-12-10 10:32:29 +00001514 struct afs_vnode *dvnode = AFS_FS_I(dir);
1515 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001516 int ret;
1517
David Brazdil0f672f62019-12-10 10:32:29 +00001518 _enter("{%llx:%llu},{%pd}",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001519 dvnode->fid.vid, dvnode->fid.vnode, dentry);
1520
1521 if (dentry->d_name.len >= AFSNAMEMAX)
1522 return -ENAMETOOLONG;
1523
Olivier Deprez157378f2022-04-04 15:47:50 +02001524 op = afs_alloc_operation(NULL, dvnode->volume);
1525 if (IS_ERR(op))
1526 return PTR_ERR(op);
David Brazdil0f672f62019-12-10 10:32:29 +00001527
Olivier Deprez157378f2022-04-04 15:47:50 +02001528 afs_op_set_vnode(op, 0, dvnode);
1529 op->file[0].dv_delta = 1;
1530 op->file[0].modification = true;
1531 op->file[0].update_ctime = true;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001532
1533 /* Try to make sure we have a callback promise on the victim. */
Olivier Deprez157378f2022-04-04 15:47:50 +02001534 ret = afs_validate(vnode, op->key);
1535 if (ret < 0) {
1536 op->error = ret;
1537 goto error;
1538 }
David Brazdil0f672f62019-12-10 10:32:29 +00001539
1540 spin_lock(&dentry->d_lock);
1541 if (d_count(dentry) > 1) {
1542 spin_unlock(&dentry->d_lock);
1543 /* Start asynchronous writeout of the inode */
1544 write_inode_now(d_inode(dentry), 0);
Olivier Deprez157378f2022-04-04 15:47:50 +02001545 op->error = afs_sillyrename(dvnode, vnode, dentry, op->key);
1546 goto error;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001547 }
David Brazdil0f672f62019-12-10 10:32:29 +00001548 if (!d_unhashed(dentry)) {
1549 /* Prevent a race with RCU lookup. */
1550 __d_drop(dentry);
Olivier Deprez157378f2022-04-04 15:47:50 +02001551 op->unlink.need_rehash = true;
David Brazdil0f672f62019-12-10 10:32:29 +00001552 }
1553 spin_unlock(&dentry->d_lock);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001554
Olivier Deprez157378f2022-04-04 15:47:50 +02001555 op->file[1].vnode = vnode;
1556 op->file[1].update_ctime = true;
1557 op->file[1].op_unlinked = true;
1558 op->dentry = dentry;
1559 op->ops = &afs_unlink_operation;
1560 afs_begin_vnode_operation(op);
1561 afs_wait_for_operation(op);
David Brazdil0f672f62019-12-10 10:32:29 +00001562
Olivier Deprez157378f2022-04-04 15:47:50 +02001563 /* If there was a conflict with a third party, check the status of the
1564 * unlinked vnode.
1565 */
1566 if (op->error == 0 && (op->flags & AFS_OPERATION_DIR_CONFLICT)) {
1567 op->file[1].update_ctime = false;
1568 op->fetch_status.which = 1;
1569 op->ops = &afs_fetch_status_operation;
1570 afs_begin_vnode_operation(op);
1571 afs_wait_for_operation(op);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001572 }
1573
Olivier Deprez157378f2022-04-04 15:47:50 +02001574 return afs_put_operation(op);
David Brazdil0f672f62019-12-10 10:32:29 +00001575
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001576error:
Olivier Deprez157378f2022-04-04 15:47:50 +02001577 return afs_put_operation(op);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001578}
1579
Olivier Deprez157378f2022-04-04 15:47:50 +02001580static const struct afs_operation_ops afs_create_operation = {
1581 .issue_afs_rpc = afs_fs_create_file,
1582 .issue_yfs_rpc = yfs_fs_create_file,
1583 .success = afs_create_success,
1584 .aborted = afs_check_for_remote_deletion,
1585 .edit_dir = afs_create_edit_dir,
1586 .put = afs_create_put,
1587};
1588
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001589/*
1590 * create a regular file on an AFS filesystem
1591 */
1592static int afs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
1593 bool excl)
1594{
Olivier Deprez157378f2022-04-04 15:47:50 +02001595 struct afs_operation *op;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001596 struct afs_vnode *dvnode = AFS_FS_I(dir);
Olivier Deprez157378f2022-04-04 15:47:50 +02001597 int ret = -ENAMETOOLONG;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001598
Olivier Deprez157378f2022-04-04 15:47:50 +02001599 _enter("{%llx:%llu},{%pd},%ho",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001600 dvnode->fid.vid, dvnode->fid.vnode, dentry, mode);
1601
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001602 if (dentry->d_name.len >= AFSNAMEMAX)
1603 goto error;
1604
Olivier Deprez157378f2022-04-04 15:47:50 +02001605 op = afs_alloc_operation(NULL, dvnode->volume);
1606 if (IS_ERR(op)) {
1607 ret = PTR_ERR(op);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001608 goto error;
1609 }
1610
Olivier Deprez157378f2022-04-04 15:47:50 +02001611 afs_op_set_vnode(op, 0, dvnode);
1612 op->file[0].dv_delta = 1;
1613 op->file[0].modification = true;
1614 op->file[0].update_ctime = true;
David Brazdil0f672f62019-12-10 10:32:29 +00001615
Olivier Deprez157378f2022-04-04 15:47:50 +02001616 op->dentry = dentry;
1617 op->create.mode = S_IFREG | mode;
1618 op->create.reason = afs_edit_dir_for_create;
1619 op->ops = &afs_create_operation;
1620 return afs_do_sync_operation(op);
David Brazdil0f672f62019-12-10 10:32:29 +00001621
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001622error:
1623 d_drop(dentry);
1624 _leave(" = %d", ret);
1625 return ret;
1626}
1627
Olivier Deprez157378f2022-04-04 15:47:50 +02001628static void afs_link_success(struct afs_operation *op)
1629{
1630 struct afs_vnode_param *dvp = &op->file[0];
1631 struct afs_vnode_param *vp = &op->file[1];
1632
1633 _enter("op=%08x", op->debug_id);
1634 op->ctime = dvp->scb.status.mtime_client;
1635 afs_vnode_commit_status(op, dvp);
1636 afs_vnode_commit_status(op, vp);
1637 afs_update_dentry_version(op, dvp, op->dentry);
1638 if (op->dentry_2->d_parent == op->dentry->d_parent)
1639 afs_update_dentry_version(op, dvp, op->dentry_2);
1640 ihold(&vp->vnode->vfs_inode);
1641 d_instantiate(op->dentry, &vp->vnode->vfs_inode);
1642}
1643
1644static void afs_link_put(struct afs_operation *op)
1645{
1646 _enter("op=%08x", op->debug_id);
1647 if (op->error)
1648 d_drop(op->dentry);
1649}
1650
1651static const struct afs_operation_ops afs_link_operation = {
1652 .issue_afs_rpc = afs_fs_link,
1653 .issue_yfs_rpc = yfs_fs_link,
1654 .success = afs_link_success,
1655 .aborted = afs_check_for_remote_deletion,
1656 .edit_dir = afs_create_edit_dir,
1657 .put = afs_link_put,
1658};
1659
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001660/*
1661 * create a hard link between files in an AFS filesystem
1662 */
1663static int afs_link(struct dentry *from, struct inode *dir,
1664 struct dentry *dentry)
1665{
Olivier Deprez157378f2022-04-04 15:47:50 +02001666 struct afs_operation *op;
David Brazdil0f672f62019-12-10 10:32:29 +00001667 struct afs_vnode *dvnode = AFS_FS_I(dir);
1668 struct afs_vnode *vnode = AFS_FS_I(d_inode(from));
Olivier Deprez157378f2022-04-04 15:47:50 +02001669 int ret = -ENAMETOOLONG;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001670
David Brazdil0f672f62019-12-10 10:32:29 +00001671 _enter("{%llx:%llu},{%llx:%llu},{%pd}",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001672 vnode->fid.vid, vnode->fid.vnode,
1673 dvnode->fid.vid, dvnode->fid.vnode,
1674 dentry);
1675
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001676 if (dentry->d_name.len >= AFSNAMEMAX)
1677 goto error;
1678
Olivier Deprez157378f2022-04-04 15:47:50 +02001679 op = afs_alloc_operation(NULL, dvnode->volume);
1680 if (IS_ERR(op)) {
1681 ret = PTR_ERR(op);
David Brazdil0f672f62019-12-10 10:32:29 +00001682 goto error;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001683 }
1684
Olivier Deprez157378f2022-04-04 15:47:50 +02001685 afs_op_set_vnode(op, 0, dvnode);
1686 afs_op_set_vnode(op, 1, vnode);
1687 op->file[0].dv_delta = 1;
1688 op->file[0].modification = true;
1689 op->file[0].update_ctime = true;
1690 op->file[1].update_ctime = true;
David Brazdil0f672f62019-12-10 10:32:29 +00001691
Olivier Deprez157378f2022-04-04 15:47:50 +02001692 op->dentry = dentry;
1693 op->dentry_2 = from;
1694 op->ops = &afs_link_operation;
1695 op->create.reason = afs_edit_dir_for_link;
1696 return afs_do_sync_operation(op);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001697
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001698error:
1699 d_drop(dentry);
1700 _leave(" = %d", ret);
1701 return ret;
1702}
1703
Olivier Deprez157378f2022-04-04 15:47:50 +02001704static const struct afs_operation_ops afs_symlink_operation = {
1705 .issue_afs_rpc = afs_fs_symlink,
1706 .issue_yfs_rpc = yfs_fs_symlink,
1707 .success = afs_create_success,
1708 .aborted = afs_check_for_remote_deletion,
1709 .edit_dir = afs_create_edit_dir,
1710 .put = afs_create_put,
1711};
1712
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001713/*
1714 * create a symlink in an AFS filesystem
1715 */
1716static int afs_symlink(struct inode *dir, struct dentry *dentry,
1717 const char *content)
1718{
Olivier Deprez157378f2022-04-04 15:47:50 +02001719 struct afs_operation *op;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001720 struct afs_vnode *dvnode = AFS_FS_I(dir);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001721 int ret;
1722
David Brazdil0f672f62019-12-10 10:32:29 +00001723 _enter("{%llx:%llu},{%pd},%s",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001724 dvnode->fid.vid, dvnode->fid.vnode, dentry,
1725 content);
1726
1727 ret = -ENAMETOOLONG;
1728 if (dentry->d_name.len >= AFSNAMEMAX)
1729 goto error;
1730
1731 ret = -EINVAL;
1732 if (strlen(content) >= AFSPATHMAX)
1733 goto error;
1734
Olivier Deprez157378f2022-04-04 15:47:50 +02001735 op = afs_alloc_operation(NULL, dvnode->volume);
1736 if (IS_ERR(op)) {
1737 ret = PTR_ERR(op);
David Brazdil0f672f62019-12-10 10:32:29 +00001738 goto error;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001739 }
1740
Olivier Deprez157378f2022-04-04 15:47:50 +02001741 afs_op_set_vnode(op, 0, dvnode);
1742 op->file[0].dv_delta = 1;
David Brazdil0f672f62019-12-10 10:32:29 +00001743
Olivier Deprez157378f2022-04-04 15:47:50 +02001744 op->dentry = dentry;
1745 op->ops = &afs_symlink_operation;
1746 op->create.reason = afs_edit_dir_for_symlink;
1747 op->create.symlink = content;
1748 return afs_do_sync_operation(op);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001749
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001750error:
1751 d_drop(dentry);
1752 _leave(" = %d", ret);
1753 return ret;
1754}
1755
Olivier Deprez157378f2022-04-04 15:47:50 +02001756static void afs_rename_success(struct afs_operation *op)
1757{
1758 _enter("op=%08x", op->debug_id);
1759
1760 op->ctime = op->file[0].scb.status.mtime_client;
1761 afs_check_dir_conflict(op, &op->file[1]);
1762 afs_vnode_commit_status(op, &op->file[0]);
1763 if (op->file[1].vnode != op->file[0].vnode) {
1764 op->ctime = op->file[1].scb.status.mtime_client;
1765 afs_vnode_commit_status(op, &op->file[1]);
1766 }
1767}
1768
1769static void afs_rename_edit_dir(struct afs_operation *op)
1770{
1771 struct afs_vnode_param *orig_dvp = &op->file[0];
1772 struct afs_vnode_param *new_dvp = &op->file[1];
1773 struct afs_vnode *orig_dvnode = orig_dvp->vnode;
1774 struct afs_vnode *new_dvnode = new_dvp->vnode;
1775 struct afs_vnode *vnode = AFS_FS_I(d_inode(op->dentry));
1776 struct dentry *old_dentry = op->dentry;
1777 struct dentry *new_dentry = op->dentry_2;
1778 struct inode *new_inode;
1779
1780 _enter("op=%08x", op->debug_id);
1781
1782 if (op->rename.rehash) {
1783 d_rehash(op->rename.rehash);
1784 op->rename.rehash = NULL;
1785 }
1786
1787 down_write(&orig_dvnode->validate_lock);
1788 if (test_bit(AFS_VNODE_DIR_VALID, &orig_dvnode->flags) &&
1789 orig_dvnode->status.data_version == orig_dvp->dv_before + orig_dvp->dv_delta)
1790 afs_edit_dir_remove(orig_dvnode, &old_dentry->d_name,
1791 afs_edit_dir_for_rename_0);
1792
1793 if (new_dvnode != orig_dvnode) {
1794 up_write(&orig_dvnode->validate_lock);
1795 down_write(&new_dvnode->validate_lock);
1796 }
1797
1798 if (test_bit(AFS_VNODE_DIR_VALID, &new_dvnode->flags) &&
1799 new_dvnode->status.data_version == new_dvp->dv_before + new_dvp->dv_delta) {
1800 if (!op->rename.new_negative)
1801 afs_edit_dir_remove(new_dvnode, &new_dentry->d_name,
1802 afs_edit_dir_for_rename_1);
1803
1804 afs_edit_dir_add(new_dvnode, &new_dentry->d_name,
1805 &vnode->fid, afs_edit_dir_for_rename_2);
1806 }
1807
1808 new_inode = d_inode(new_dentry);
1809 if (new_inode) {
1810 spin_lock(&new_inode->i_lock);
1811 if (S_ISDIR(new_inode->i_mode))
1812 clear_nlink(new_inode);
1813 else if (new_inode->i_nlink > 0)
1814 drop_nlink(new_inode);
1815 spin_unlock(&new_inode->i_lock);
1816 }
1817
1818 /* Now we can update d_fsdata on the dentries to reflect their
1819 * new parent's data_version.
1820 *
1821 * Note that if we ever implement RENAME_EXCHANGE, we'll have
1822 * to update both dentries with opposing dir versions.
1823 */
1824 afs_update_dentry_version(op, new_dvp, op->dentry);
1825 afs_update_dentry_version(op, new_dvp, op->dentry_2);
1826
1827 d_move(old_dentry, new_dentry);
1828
1829 up_write(&new_dvnode->validate_lock);
1830}
1831
1832static void afs_rename_put(struct afs_operation *op)
1833{
1834 _enter("op=%08x", op->debug_id);
1835 if (op->rename.rehash)
1836 d_rehash(op->rename.rehash);
1837 dput(op->rename.tmp);
1838 if (op->error)
1839 d_rehash(op->dentry);
1840}
1841
1842static const struct afs_operation_ops afs_rename_operation = {
1843 .issue_afs_rpc = afs_fs_rename,
1844 .issue_yfs_rpc = yfs_fs_rename,
1845 .success = afs_rename_success,
1846 .edit_dir = afs_rename_edit_dir,
1847 .put = afs_rename_put,
1848};
1849
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001850/*
1851 * rename a file in an AFS filesystem and/or move it between directories
1852 */
1853static int afs_rename(struct inode *old_dir, struct dentry *old_dentry,
1854 struct inode *new_dir, struct dentry *new_dentry,
1855 unsigned int flags)
1856{
Olivier Deprez157378f2022-04-04 15:47:50 +02001857 struct afs_operation *op;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001858 struct afs_vnode *orig_dvnode, *new_dvnode, *vnode;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001859 int ret;
1860
1861 if (flags)
1862 return -EINVAL;
1863
David Brazdil0f672f62019-12-10 10:32:29 +00001864 /* Don't allow silly-rename files be moved around. */
1865 if (old_dentry->d_flags & DCACHE_NFSFS_RENAMED)
1866 return -EINVAL;
1867
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001868 vnode = AFS_FS_I(d_inode(old_dentry));
1869 orig_dvnode = AFS_FS_I(old_dir);
1870 new_dvnode = AFS_FS_I(new_dir);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001871
David Brazdil0f672f62019-12-10 10:32:29 +00001872 _enter("{%llx:%llu},{%llx:%llu},{%llx:%llu},{%pd}",
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001873 orig_dvnode->fid.vid, orig_dvnode->fid.vnode,
1874 vnode->fid.vid, vnode->fid.vnode,
1875 new_dvnode->fid.vid, new_dvnode->fid.vnode,
1876 new_dentry);
1877
Olivier Deprez157378f2022-04-04 15:47:50 +02001878 op = afs_alloc_operation(NULL, orig_dvnode->volume);
1879 if (IS_ERR(op))
1880 return PTR_ERR(op);
David Brazdil0f672f62019-12-10 10:32:29 +00001881
Olivier Deprez157378f2022-04-04 15:47:50 +02001882 afs_op_set_vnode(op, 0, orig_dvnode);
1883 afs_op_set_vnode(op, 1, new_dvnode); /* May be same as orig_dvnode */
1884 op->file[0].dv_delta = 1;
1885 op->file[1].dv_delta = 1;
1886 op->file[0].modification = true;
1887 op->file[1].modification = true;
1888 op->file[0].update_ctime = true;
1889 op->file[1].update_ctime = true;
1890
1891 op->dentry = old_dentry;
1892 op->dentry_2 = new_dentry;
1893 op->rename.new_negative = d_is_negative(new_dentry);
1894 op->ops = &afs_rename_operation;
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001895
David Brazdil0f672f62019-12-10 10:32:29 +00001896 /* For non-directories, check whether the target is busy and if so,
1897 * make a copy of the dentry and then do a silly-rename. If the
1898 * silly-rename succeeds, the copied dentry is hashed and becomes the
1899 * new target.
1900 */
1901 if (d_is_positive(new_dentry) && !d_is_dir(new_dentry)) {
1902 /* To prevent any new references to the target during the
1903 * rename, we unhash the dentry in advance.
1904 */
1905 if (!d_unhashed(new_dentry)) {
1906 d_drop(new_dentry);
Olivier Deprez157378f2022-04-04 15:47:50 +02001907 op->rename.rehash = new_dentry;
David Brazdil0f672f62019-12-10 10:32:29 +00001908 }
1909
1910 if (d_count(new_dentry) > 2) {
1911 /* copy the target dentry's name */
1912 ret = -ENOMEM;
Olivier Deprez157378f2022-04-04 15:47:50 +02001913 op->rename.tmp = d_alloc(new_dentry->d_parent,
1914 &new_dentry->d_name);
1915 if (!op->rename.tmp)
1916 goto error;
David Brazdil0f672f62019-12-10 10:32:29 +00001917
1918 ret = afs_sillyrename(new_dvnode,
1919 AFS_FS_I(d_inode(new_dentry)),
Olivier Deprez157378f2022-04-04 15:47:50 +02001920 new_dentry, op->key);
David Brazdil0f672f62019-12-10 10:32:29 +00001921 if (ret)
Olivier Deprez157378f2022-04-04 15:47:50 +02001922 goto error;
David Brazdil0f672f62019-12-10 10:32:29 +00001923
Olivier Deprez157378f2022-04-04 15:47:50 +02001924 op->dentry_2 = op->rename.tmp;
1925 op->rename.rehash = NULL;
1926 op->rename.new_negative = true;
David Brazdil0f672f62019-12-10 10:32:29 +00001927 }
1928 }
1929
1930 /* This bit is potentially nasty as there's a potential race with
1931 * afs_d_revalidate{,_rcu}(). We have to change d_fsdata on the dentry
1932 * to reflect it's new parent's new data_version after the op, but
1933 * d_revalidate may see old_dentry between the op having taken place
1934 * and the version being updated.
1935 *
1936 * So drop the old_dentry for now to make other threads go through
1937 * lookup instead - which we hold a lock against.
1938 */
1939 d_drop(old_dentry);
1940
Olivier Deprez157378f2022-04-04 15:47:50 +02001941 return afs_do_sync_operation(op);
David Brazdil0f672f62019-12-10 10:32:29 +00001942
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001943error:
Olivier Deprez157378f2022-04-04 15:47:50 +02001944 return afs_put_operation(op);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001945}
1946
1947/*
1948 * Release a directory page and clean up its private state if it's not busy
1949 * - return true if the page can now be released, false if not
1950 */
1951static int afs_dir_releasepage(struct page *page, gfp_t gfp_flags)
1952{
1953 struct afs_vnode *dvnode = AFS_FS_I(page->mapping->host);
1954
David Brazdil0f672f62019-12-10 10:32:29 +00001955 _enter("{{%llx:%llu}[%lu]}", dvnode->fid.vid, dvnode->fid.vnode, page->index);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001956
Olivier Deprez157378f2022-04-04 15:47:50 +02001957 detach_page_private(page);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001958
1959 /* The directory will need reloading. */
1960 if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1961 afs_stat_v(dvnode, n_relpg);
1962 return 1;
1963}
1964
1965/*
1966 * invalidate part or all of a page
1967 * - release a page and clean up its private data if offset is 0 (indicating
1968 * the entire page)
1969 */
1970static void afs_dir_invalidatepage(struct page *page, unsigned int offset,
1971 unsigned int length)
1972{
1973 struct afs_vnode *dvnode = AFS_FS_I(page->mapping->host);
1974
1975 _enter("{%lu},%u,%u", page->index, offset, length);
1976
1977 BUG_ON(!PageLocked(page));
1978
1979 /* The directory will need reloading. */
1980 if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1981 afs_stat_v(dvnode, n_inval);
1982
1983 /* we clean up only if the entire page is being invalidated */
Olivier Deprez157378f2022-04-04 15:47:50 +02001984 if (offset == 0 && length == PAGE_SIZE)
1985 detach_page_private(page);
Andrew Scullb4b6d4a2019-01-02 15:54:55 +00001986}