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