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