blob: da9b4f8577a1a0514c828ee13472ece35287debe [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/* dir.c: AFS filesystem directory handling
3 *
David Howellsf3ddee82018-04-06 14:17:25 +01004 * Copyright (C) 2002, 2018 Red Hat, Inc. All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Written by David Howells (dhowells@redhat.com)
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 */
7
8#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/fs.h>
Nick Piggin34286d62011-01-07 17:49:57 +110010#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/pagemap.h>
David Howellsf3ddee82018-04-06 14:17:25 +010012#include <linux/swap.h>
David Howells00d3b7a2007-04-26 15:57:07 -070013#include <linux/ctype.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040014#include <linux/sched.h>
David Howellsf3ddee82018-04-06 14:17:25 +010015#include <linux/task_io_accounting_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include "internal.h"
David Howellsa58823a2019-05-09 15:16:10 +010017#include "afs_fs.h"
David Howells4ea219a2018-04-06 14:17:25 +010018#include "xdr_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070019
David Howells260a9802007-04-26 15:59:35 -070020static struct dentry *afs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -040021 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070022static int afs_dir_open(struct inode *inode, struct file *file);
Al Viro1bbae9f2013-05-22 16:31:14 -040023static int afs_readdir(struct file *file, struct dir_context *ctx);
Al Viro0b728e12012-06-10 16:03:43 -040024static int afs_d_revalidate(struct dentry *dentry, unsigned int flags);
Nick Pigginfe15ce42011-01-07 17:49:23 +110025static int afs_d_delete(const struct dentry *dentry);
David Howells79ddbfa2019-04-25 14:26:51 +010026static void afs_d_iput(struct dentry *dentry, struct inode *inode);
David Howells5cf9dd52018-04-09 21:12:31 +010027static int afs_lookup_one_filldir(struct dir_context *ctx, const char *name, int nlen,
David Howellsafefdbb2006-10-03 01:13:46 -070028 loff_t fpos, u64 ino, unsigned dtype);
David Howells5cf9dd52018-04-09 21:12:31 +010029static int afs_lookup_filldir(struct dir_context *ctx, const char *name, int nlen,
30 loff_t fpos, u64 ino, unsigned dtype);
Christian Brauner549c7292021-01-21 14:19:43 +010031static int afs_create(struct user_namespace *mnt_userns, struct inode *dir,
32 struct dentry *dentry, umode_t mode, bool excl);
33static int afs_mkdir(struct user_namespace *mnt_userns, struct inode *dir,
34 struct dentry *dentry, umode_t mode);
David Howells260a9802007-04-26 15:59:35 -070035static int afs_rmdir(struct inode *dir, struct dentry *dentry);
36static int afs_unlink(struct inode *dir, struct dentry *dentry);
37static int afs_link(struct dentry *from, struct inode *dir,
38 struct dentry *dentry);
Christian Brauner549c7292021-01-21 14:19:43 +010039static int afs_symlink(struct user_namespace *mnt_userns, struct inode *dir,
40 struct dentry *dentry, const char *content);
41static int afs_rename(struct user_namespace *mnt_userns, struct inode *old_dir,
42 struct dentry *old_dentry, struct inode *new_dir,
43 struct dentry *new_dentry, unsigned int flags);
David Howellsf3ddee82018-04-06 14:17:25 +010044static int afs_dir_releasepage(struct page *page, gfp_t gfp_flags);
45static void afs_dir_invalidatepage(struct page *page, unsigned int offset,
46 unsigned int length);
47
48static int afs_dir_set_page_dirty(struct page *page)
49{
50 BUG(); /* This should never happen. */
51}
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080053const struct file_operations afs_dir_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070054 .open = afs_dir_open,
David Howells00d3b7a2007-04-26 15:57:07 -070055 .release = afs_release,
Al Viro29884ef2016-05-10 14:27:44 -040056 .iterate_shared = afs_readdir,
David Howellse8d6c552007-07-15 23:40:12 -070057 .lock = afs_lock,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +020058 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070059};
60
Arjan van de Ven754661f2007-02-12 00:55:38 -080061const struct inode_operations afs_dir_inode_operations = {
David Howells260a9802007-04-26 15:59:35 -070062 .create = afs_create,
63 .lookup = afs_lookup,
64 .link = afs_link,
65 .unlink = afs_unlink,
66 .symlink = afs_symlink,
67 .mkdir = afs_mkdir,
68 .rmdir = afs_rmdir,
Miklos Szeredi2773bf02016-09-27 11:03:58 +020069 .rename = afs_rename,
David Howells00d3b7a2007-04-26 15:57:07 -070070 .permission = afs_permission,
David Howells416351f2007-05-09 02:33:45 -070071 .getattr = afs_getattr,
David Howells31143d52007-05-09 02:33:46 -070072 .setattr = afs_setattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070073};
74
David Howellsf3ddee82018-04-06 14:17:25 +010075const struct address_space_operations afs_dir_aops = {
76 .set_page_dirty = afs_dir_set_page_dirty,
77 .releasepage = afs_dir_releasepage,
78 .invalidatepage = afs_dir_invalidatepage,
79};
80
Al Virod61dcce2011-01-12 20:04:20 -050081const struct dentry_operations afs_fs_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 .d_revalidate = afs_d_revalidate,
83 .d_delete = afs_d_delete,
David Howells260a9802007-04-26 15:59:35 -070084 .d_release = afs_d_release,
David Howellsd18610b2011-01-14 19:04:05 +000085 .d_automount = afs_d_automount,
David Howells79ddbfa2019-04-25 14:26:51 +010086 .d_iput = afs_d_iput,
Linus Torvalds1da177e2005-04-16 15:20:36 -070087};
88
David Howells5cf9dd52018-04-09 21:12:31 +010089struct afs_lookup_one_cookie {
90 struct dir_context ctx;
91 struct qstr name;
92 bool found;
93 struct afs_fid fid;
94};
95
David Howells260a9802007-04-26 15:59:35 -070096struct afs_lookup_cookie {
David Howells5cf9dd52018-04-09 21:12:31 +010097 struct dir_context ctx;
98 struct qstr name;
99 bool found;
100 bool one_only;
101 unsigned short nr_fids;
David Howells5cf9dd52018-04-09 21:12:31 +0100102 struct afs_fid fids[50];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103};
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105/*
David Howells255ed632021-08-11 14:22:11 +0100106 * Drop the refs that we're holding on the folios we were reading into. We've
David Howellsc4508462020-02-06 14:22:28 +0000107 * got refs on the first nr_pages pages.
108 */
109static void afs_dir_read_cleanup(struct afs_read *req)
110{
111 struct address_space *mapping = req->vnode->vfs_inode.i_mapping;
David Howells255ed632021-08-11 14:22:11 +0100112 struct folio *folio;
David Howellsc4508462020-02-06 14:22:28 +0000113 pgoff_t last = req->nr_pages - 1;
114
115 XA_STATE(xas, &mapping->i_pages, 0);
116
117 if (unlikely(!req->nr_pages))
118 return;
119
120 rcu_read_lock();
David Howells255ed632021-08-11 14:22:11 +0100121 xas_for_each(&xas, folio, last) {
122 if (xas_retry(&xas, folio))
David Howellsc4508462020-02-06 14:22:28 +0000123 continue;
David Howells255ed632021-08-11 14:22:11 +0100124 BUG_ON(xa_is_value(folio));
125 ASSERTCMP(folio_file_mapping(folio), ==, mapping);
David Howellsc4508462020-02-06 14:22:28 +0000126
David Howells255ed632021-08-11 14:22:11 +0100127 folio_put(folio);
David Howellsc4508462020-02-06 14:22:28 +0000128 }
129
130 rcu_read_unlock();
131}
132
133/*
David Howells255ed632021-08-11 14:22:11 +0100134 * check that a directory folio is valid
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 */
David Howells255ed632021-08-11 14:22:11 +0100136static bool afs_dir_check_folio(struct afs_vnode *dvnode, struct folio *folio,
137 loff_t i_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138{
David Howells255ed632021-08-11 14:22:11 +0100139 union afs_xdr_dir_block *block;
140 size_t offset, size;
141 loff_t pos;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
David Howells255ed632021-08-11 14:22:11 +0100143 /* Determine how many magic numbers there should be in this folio, but
David Howellsdab17c12017-11-02 15:27:52 +0000144 * we must take care because the directory may change size under us.
145 */
David Howells255ed632021-08-11 14:22:11 +0100146 pos = folio_pos(folio);
147 if (i_size <= pos)
David Howellsdab17c12017-11-02 15:27:52 +0000148 goto checked;
149
David Howells255ed632021-08-11 14:22:11 +0100150 size = min_t(loff_t, folio_size(folio), i_size - pos);
151 for (offset = 0; offset < size; offset += sizeof(*block)) {
152 block = kmap_local_folio(folio, offset);
153 if (block->hdr.magic != AFS_DIR_MAGIC) {
154 printk("kAFS: %s(%lx): [%llx] bad magic %zx/%zx is %04hx\n",
155 __func__, dvnode->vfs_inode.i_ino,
156 pos, offset, size, ntohs(block->hdr.magic));
157 trace_afs_dir_check_failed(dvnode, pos + offset, i_size);
158 kunmap_local(block);
David Howellsf51375c2018-10-20 00:57:57 +0100159 trace_afs_file_error(dvnode, -EIO, afs_file_error_dir_bad_magic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 goto error;
161 }
David Howells63a46812018-04-06 14:17:25 +0100162
163 /* Make sure each block is NUL terminated so we can reasonably
David Howells255ed632021-08-11 14:22:11 +0100164 * use string functions on it. The filenames in the folio
David Howells63a46812018-04-06 14:17:25 +0100165 * *should* be NUL-terminated anyway.
166 */
David Howells255ed632021-08-11 14:22:11 +0100167 ((u8 *)block)[AFS_DIR_BLOCK_SIZE - 1] = 0;
168
169 kunmap_local(block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170 }
David Howellsdab17c12017-11-02 15:27:52 +0000171checked:
David Howellsf3ddee82018-04-06 14:17:25 +0100172 afs_stat_v(dvnode, n_read_dir);
Al Virobe5b82d2016-04-22 15:06:44 -0400173 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174
David Howellsec268152007-04-26 15:49:28 -0700175error:
Al Virobe5b82d2016-04-22 15:06:44 -0400176 return false;
David Howellsec268152007-04-26 15:49:28 -0700177}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/*
David Howellsc4508462020-02-06 14:22:28 +0000180 * Dump the contents of a directory.
David Howells445b1022019-04-25 14:26:51 +0100181 */
David Howellsc4508462020-02-06 14:22:28 +0000182static void afs_dir_dump(struct afs_vnode *dvnode, struct afs_read *req)
David Howells445b1022019-04-25 14:26:51 +0100183{
David Howells255ed632021-08-11 14:22:11 +0100184 union afs_xdr_dir_block *block;
David Howellsc4508462020-02-06 14:22:28 +0000185 struct address_space *mapping = dvnode->vfs_inode.i_mapping;
David Howells255ed632021-08-11 14:22:11 +0100186 struct folio *folio;
David Howellsc4508462020-02-06 14:22:28 +0000187 pgoff_t last = req->nr_pages - 1;
David Howells255ed632021-08-11 14:22:11 +0100188 size_t offset, size;
David Howells445b1022019-04-25 14:26:51 +0100189
David Howellsc4508462020-02-06 14:22:28 +0000190 XA_STATE(xas, &mapping->i_pages, 0);
David Howells445b1022019-04-25 14:26:51 +0100191
David Howellsc4508462020-02-06 14:22:28 +0000192 pr_warn("DIR %llx:%llx f=%llx l=%llx al=%llx\n",
David Howells445b1022019-04-25 14:26:51 +0100193 dvnode->fid.vid, dvnode->fid.vnode,
David Howellsc4508462020-02-06 14:22:28 +0000194 req->file_size, req->len, req->actual_len);
195 pr_warn("DIR %llx %x %zx %zx\n",
196 req->pos, req->nr_pages,
197 req->iter->iov_offset, iov_iter_count(req->iter));
David Howells445b1022019-04-25 14:26:51 +0100198
David Howells255ed632021-08-11 14:22:11 +0100199 xas_for_each(&xas, folio, last) {
200 if (xas_retry(&xas, folio))
David Howellsc4508462020-02-06 14:22:28 +0000201 continue;
David Howells445b1022019-04-25 14:26:51 +0100202
David Howells255ed632021-08-11 14:22:11 +0100203 BUG_ON(folio_file_mapping(folio) != mapping);
David Howellsc4508462020-02-06 14:22:28 +0000204
David Howells255ed632021-08-11 14:22:11 +0100205 size = min_t(loff_t, folio_size(folio), req->actual_len - folio_pos(folio));
206 for (offset = 0; offset < size; offset += sizeof(*block)) {
207 block = kmap_local_folio(folio, offset);
208 pr_warn("[%02lx] %32phN\n", folio_index(folio) + offset, block);
209 kunmap_local(block);
David Howells445b1022019-04-25 14:26:51 +0100210 }
David Howells445b1022019-04-25 14:26:51 +0100211 }
David Howellsc4508462020-02-06 14:22:28 +0000212}
213
214/*
David Howells255ed632021-08-11 14:22:11 +0100215 * Check all the blocks in a directory. All the folios are held pinned.
David Howellsc4508462020-02-06 14:22:28 +0000216 */
217static int afs_dir_check(struct afs_vnode *dvnode, struct afs_read *req)
218{
219 struct address_space *mapping = dvnode->vfs_inode.i_mapping;
David Howells255ed632021-08-11 14:22:11 +0100220 struct folio *folio;
David Howellsc4508462020-02-06 14:22:28 +0000221 pgoff_t last = req->nr_pages - 1;
222 int ret = 0;
223
224 XA_STATE(xas, &mapping->i_pages, 0);
225
226 if (unlikely(!req->nr_pages))
227 return 0;
228
229 rcu_read_lock();
David Howells255ed632021-08-11 14:22:11 +0100230 xas_for_each(&xas, folio, last) {
231 if (xas_retry(&xas, folio))
David Howellsc4508462020-02-06 14:22:28 +0000232 continue;
233
David Howells255ed632021-08-11 14:22:11 +0100234 BUG_ON(folio_file_mapping(folio) != mapping);
David Howellsc4508462020-02-06 14:22:28 +0000235
David Howells255ed632021-08-11 14:22:11 +0100236 if (!afs_dir_check_folio(dvnode, folio, req->actual_len)) {
David Howellsc4508462020-02-06 14:22:28 +0000237 afs_dir_dump(dvnode, req);
238 ret = -EIO;
239 break;
240 }
241 }
242
243 rcu_read_unlock();
244 return ret;
David Howells445b1022019-04-25 14:26:51 +0100245}
246
247/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 * open an AFS directory file
249 */
250static int afs_dir_open(struct inode *inode, struct file *file)
251{
252 _enter("{%lu}", inode->i_ino);
253
David Howells00317632018-04-06 14:17:25 +0100254 BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
255 BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256
David Howells08e0e7c2007-04-26 15:55:03 -0700257 if (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(inode)->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return -ENOENT;
259
David Howells00d3b7a2007-04-26 15:57:07 -0700260 return afs_open(inode, file);
David Howellsec268152007-04-26 15:49:28 -0700261}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263/*
David Howellsf3ddee82018-04-06 14:17:25 +0100264 * Read the directory into the pagecache in one go, scrubbing the previous
David Howells255ed632021-08-11 14:22:11 +0100265 * contents. The list of folios is returned, pinning them so that they don't
David Howellsf3ddee82018-04-06 14:17:25 +0100266 * get reclaimed during the iteration.
267 */
268static struct afs_read *afs_read_dir(struct afs_vnode *dvnode, struct key *key)
David Howellsb61f7dc2018-04-27 20:46:22 +0100269 __acquires(&dvnode->validate_lock)
David Howellsf3ddee82018-04-06 14:17:25 +0100270{
David Howells255ed632021-08-11 14:22:11 +0100271 struct address_space *mapping = dvnode->vfs_inode.i_mapping;
David Howellsf3ddee82018-04-06 14:17:25 +0100272 struct afs_read *req;
273 loff_t i_size;
David Howells255ed632021-08-11 14:22:11 +0100274 int nr_pages, i;
David Howellsc4508462020-02-06 14:22:28 +0000275 int ret;
David Howellsf3ddee82018-04-06 14:17:25 +0100276
David Howellsc4508462020-02-06 14:22:28 +0000277 _enter("");
David Howellsf3ddee82018-04-06 14:17:25 +0100278
David Howellsc4508462020-02-06 14:22:28 +0000279 req = kzalloc(sizeof(*req), GFP_KERNEL);
David Howellsf3ddee82018-04-06 14:17:25 +0100280 if (!req)
281 return ERR_PTR(-ENOMEM);
282
283 refcount_set(&req->usage, 1);
David Howellsc4508462020-02-06 14:22:28 +0000284 req->vnode = dvnode;
David Howellsc69bf472020-02-06 14:22:27 +0000285 req->key = key_get(key);
David Howellsc4508462020-02-06 14:22:28 +0000286 req->cleanup = afs_dir_read_cleanup;
287
288expand:
289 i_size = i_size_read(&dvnode->vfs_inode);
290 if (i_size < 2048) {
291 ret = afs_bad(dvnode, afs_file_error_dir_small);
292 goto error;
293 }
294 if (i_size > 2048 * 1024) {
295 trace_afs_file_error(dvnode, -EFBIG, afs_file_error_dir_big);
296 ret = -EFBIG;
297 goto error;
298 }
299
300 _enter("%llu", i_size);
301
302 nr_pages = (i_size + PAGE_SIZE - 1) / PAGE_SIZE;
303
David Howellsf3ddee82018-04-06 14:17:25 +0100304 req->actual_len = i_size; /* May change */
305 req->len = nr_pages * PAGE_SIZE; /* We can ask for more than there is */
306 req->data_version = dvnode->status.data_version; /* May change */
David Howellsc4508462020-02-06 14:22:28 +0000307 iov_iter_xarray(&req->def_iter, READ, &dvnode->vfs_inode.i_mapping->i_pages,
308 0, i_size);
309 req->iter = &req->def_iter;
David Howellsf3ddee82018-04-06 14:17:25 +0100310
David Howellsc4508462020-02-06 14:22:28 +0000311 /* Fill in any gaps that we might find where the memory reclaimer has
David Howells255ed632021-08-11 14:22:11 +0100312 * been at work and pin all the folios. If there are any gaps, we will
David Howellsf3ddee82018-04-06 14:17:25 +0100313 * need to reread the entire directory contents.
314 */
David Howellsc4508462020-02-06 14:22:28 +0000315 i = req->nr_pages;
316 while (i < nr_pages) {
David Howells255ed632021-08-11 14:22:11 +0100317 struct folio *folio;
David Howellsc4508462020-02-06 14:22:28 +0000318
David Howells255ed632021-08-11 14:22:11 +0100319 folio = filemap_get_folio(mapping, i);
320 if (!folio) {
David Howellsf3ddee82018-04-06 14:17:25 +0100321 if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
322 afs_stat_v(dvnode, n_inval);
323
324 ret = -ENOMEM;
David Howells255ed632021-08-11 14:22:11 +0100325 folio = __filemap_get_folio(mapping,
326 i, FGP_LOCK | FGP_CREAT,
327 mapping->gfp_mask);
328 if (!folio)
David Howellsf3ddee82018-04-06 14:17:25 +0100329 goto error;
David Howells255ed632021-08-11 14:22:11 +0100330 folio_attach_private(folio, (void *)1);
331 folio_unlock(folio);
David Howellsf3ddee82018-04-06 14:17:25 +0100332 }
David Howells255ed632021-08-11 14:22:11 +0100333
334 req->nr_pages += folio_nr_pages(folio);
335 i += folio_nr_pages(folio);
David Howellsc4508462020-02-06 14:22:28 +0000336 }
David Howellsf3ddee82018-04-06 14:17:25 +0100337
338 /* If we're going to reload, we need to lock all the pages to prevent
339 * races.
340 */
David Howellsb61f7dc2018-04-27 20:46:22 +0100341 ret = -ERESTARTSYS;
342 if (down_read_killable(&dvnode->validate_lock) < 0)
343 goto error;
344
345 if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
346 goto success;
347
348 up_read(&dvnode->validate_lock);
349 if (down_write_killable(&dvnode->validate_lock) < 0)
350 goto error;
351
David Howellsf3ddee82018-04-06 14:17:25 +0100352 if (!test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags)) {
David Howells99987c562019-04-25 14:26:51 +0100353 trace_afs_reload_dir(dvnode);
David Howellsc69bf472020-02-06 14:22:27 +0000354 ret = afs_fetch_data(dvnode, req);
David Howellsf3ddee82018-04-06 14:17:25 +0100355 if (ret < 0)
David Howellsb61f7dc2018-04-27 20:46:22 +0100356 goto error_unlock;
David Howellsf3ddee82018-04-06 14:17:25 +0100357
358 task_io_account_read(PAGE_SIZE * req->nr_pages);
359
David Howellsc4508462020-02-06 14:22:28 +0000360 if (req->len < req->file_size) {
361 /* The content has grown, so we need to expand the
362 * buffer.
363 */
364 up_write(&dvnode->validate_lock);
365 goto expand;
366 }
David Howellsf3ddee82018-04-06 14:17:25 +0100367
368 /* Validate the data we just read. */
David Howellsc4508462020-02-06 14:22:28 +0000369 ret = afs_dir_check(dvnode, req);
370 if (ret < 0)
David Howells445b1022019-04-25 14:26:51 +0100371 goto error_unlock;
David Howellsf3ddee82018-04-06 14:17:25 +0100372
373 // TODO: Trim excess pages
374
375 set_bit(AFS_VNODE_DIR_VALID, &dvnode->flags);
376 }
377
David Howellsb61f7dc2018-04-27 20:46:22 +0100378 downgrade_write(&dvnode->validate_lock);
David Howellsf3ddee82018-04-06 14:17:25 +0100379success:
David Howellsf3ddee82018-04-06 14:17:25 +0100380 return req;
381
David Howellsf3ddee82018-04-06 14:17:25 +0100382error_unlock:
David Howellsb61f7dc2018-04-27 20:46:22 +0100383 up_write(&dvnode->validate_lock);
David Howellsf3ddee82018-04-06 14:17:25 +0100384error:
385 afs_put_read(req);
386 _leave(" = %d", ret);
387 return ERR_PTR(ret);
David Howellsf3ddee82018-04-06 14:17:25 +0100388}
389
390/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 * deal with one block in an AFS directory
392 */
David Howellsf51375c2018-10-20 00:57:57 +0100393static int afs_dir_iterate_block(struct afs_vnode *dvnode,
394 struct dir_context *ctx,
David Howells00317632018-04-06 14:17:25 +0100395 union afs_xdr_dir_block *block,
Al Viro1bbae9f2013-05-22 16:31:14 -0400396 unsigned blkoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397{
David Howells00317632018-04-06 14:17:25 +0100398 union afs_xdr_dirent *dire;
David Howells366911c2020-12-23 10:39:57 +0000399 unsigned offset, next, curr, nr_slots;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 size_t nlen;
Al Viro1bbae9f2013-05-22 16:31:14 -0400401 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
David Howells255ed632021-08-11 14:22:11 +0100403 _enter("%llx,%x", ctx->pos, blkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
David Howells00317632018-04-06 14:17:25 +0100405 curr = (ctx->pos - blkoff) / sizeof(union afs_xdr_dirent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
407 /* walk through the block, an entry at a time */
David Howells4ea219a2018-04-06 14:17:25 +0100408 for (offset = (blkoff == 0 ? AFS_DIR_RESV_BLOCKS0 : AFS_DIR_RESV_BLOCKS);
409 offset < AFS_DIR_SLOTS_PER_BLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 offset = next
411 ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 /* skip entries marked unused in the bitmap */
David Howells00317632018-04-06 14:17:25 +0100413 if (!(block->hdr.bitmap[offset / 8] &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 (1 << (offset % 8)))) {
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800415 _debug("ENT[%zu.%u]: unused",
David Howells00317632018-04-06 14:17:25 +0100416 blkoff / sizeof(union afs_xdr_dir_block), offset);
David Howells366911c2020-12-23 10:39:57 +0000417 next = offset + 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 if (offset >= curr)
Al Viro1bbae9f2013-05-22 16:31:14 -0400419 ctx->pos = blkoff +
David Howells00317632018-04-06 14:17:25 +0100420 next * sizeof(union afs_xdr_dirent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 continue;
422 }
423
424 /* got a valid entry */
425 dire = &block->dirents[offset];
426 nlen = strnlen(dire->u.name,
427 sizeof(*block) -
David Howells00317632018-04-06 14:17:25 +0100428 offset * sizeof(union afs_xdr_dirent));
David Howells366911c2020-12-23 10:39:57 +0000429 if (nlen > AFSNAMEMAX - 1) {
430 _debug("ENT[%zu]: name too long (len %u/%zu)",
431 blkoff / sizeof(union afs_xdr_dir_block),
432 offset, nlen);
433 return afs_bad(dvnode, afs_file_error_dir_name_too_long);
434 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800436 _debug("ENT[%zu.%u]: %s %zu \"%s\"",
David Howells00317632018-04-06 14:17:25 +0100437 blkoff / sizeof(union afs_xdr_dir_block), offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 (offset < curr ? "skip" : "fill"),
439 nlen, dire->u.name);
440
David Howells366911c2020-12-23 10:39:57 +0000441 nr_slots = afs_dir_calc_slots(nlen);
442 next = offset + nr_slots;
443 if (next > AFS_DIR_SLOTS_PER_BLOCK) {
444 _debug("ENT[%zu.%u]:"
445 " %u extends beyond end dir block"
446 " (len %zu)",
447 blkoff / sizeof(union afs_xdr_dir_block),
448 offset, next, nlen);
449 return afs_bad(dvnode, afs_file_error_dir_over_end);
450 }
451
452 /* Check that the name-extension dirents are all allocated */
453 for (tmp = 1; tmp < nr_slots; tmp++) {
454 unsigned int ix = offset + tmp;
455 if (!(block->hdr.bitmap[ix / 8] & (1 << (ix % 8)))) {
456 _debug("ENT[%zu.u]:"
457 " %u unmarked extension (%u/%u)",
David Howells00317632018-04-06 14:17:25 +0100458 blkoff / sizeof(union afs_xdr_dir_block),
David Howells366911c2020-12-23 10:39:57 +0000459 offset, tmp, nr_slots);
David Howellsf51375c2018-10-20 00:57:57 +0100460 return afs_bad(dvnode, afs_file_error_dir_unmarked_ext);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 }
463
464 /* skip if starts before the current position */
465 if (offset < curr)
466 continue;
467
468 /* found the next entry */
Al Viro1bbae9f2013-05-22 16:31:14 -0400469 if (!dir_emit(ctx, dire->u.name, nlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 ntohl(dire->u.vnode),
David Howells5cf9dd52018-04-09 21:12:31 +0100471 (ctx->actor == afs_lookup_filldir ||
472 ctx->actor == afs_lookup_one_filldir)?
Al Viro1bbae9f2013-05-22 16:31:14 -0400473 ntohl(dire->u.unique) : DT_UNKNOWN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 _leave(" = 0 [full]");
475 return 0;
476 }
477
David Howells00317632018-04-06 14:17:25 +0100478 ctx->pos = blkoff + next * sizeof(union afs_xdr_dirent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479 }
480
481 _leave(" = 1 [more]");
482 return 1;
David Howellsec268152007-04-26 15:49:28 -0700483}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485/*
David Howells08e0e7c2007-04-26 15:55:03 -0700486 * iterate through the data blob that lists the contents of an AFS directory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 */
Al Viro1bbae9f2013-05-22 16:31:14 -0400488static int afs_dir_iterate(struct inode *dir, struct dir_context *ctx,
David Howells9dd0b822019-07-30 14:38:52 +0100489 struct key *key, afs_dataversion_t *_dir_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
David Howellsf3ddee82018-04-06 14:17:25 +0100491 struct afs_vnode *dvnode = AFS_FS_I(dir);
David Howells00317632018-04-06 14:17:25 +0100492 union afs_xdr_dir_block *dblock;
David Howellsf3ddee82018-04-06 14:17:25 +0100493 struct afs_read *req;
David Howells255ed632021-08-11 14:22:11 +0100494 struct folio *folio;
495 unsigned offset, size;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496 int ret;
497
Al Viro1bbae9f2013-05-22 16:31:14 -0400498 _enter("{%lu},%u,,", dir->i_ino, (unsigned)ctx->pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
David Howells08e0e7c2007-04-26 15:55:03 -0700500 if (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(dir)->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 _leave(" = -ESTALE");
502 return -ESTALE;
503 }
504
David Howellsf3ddee82018-04-06 14:17:25 +0100505 req = afs_read_dir(dvnode, key);
506 if (IS_ERR(req))
507 return PTR_ERR(req);
David Howells9dd0b822019-07-30 14:38:52 +0100508 *_dir_version = req->data_version;
David Howellsf3ddee82018-04-06 14:17:25 +0100509
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 /* round the file position up to the next entry boundary */
David Howells00317632018-04-06 14:17:25 +0100511 ctx->pos += sizeof(union afs_xdr_dirent) - 1;
512 ctx->pos &= ~(sizeof(union afs_xdr_dirent) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513
514 /* walk through the blocks in sequence */
515 ret = 0;
David Howellsf3ddee82018-04-06 14:17:25 +0100516 while (ctx->pos < req->actual_len) {
David Howells255ed632021-08-11 14:22:11 +0100517 /* Fetch the appropriate folio from the directory and re-add it
David Howellsc4508462020-02-06 14:22:28 +0000518 * to the LRU. We have all the pages pinned with an extra ref.
David Howellsf3ddee82018-04-06 14:17:25 +0100519 */
David Howells255ed632021-08-11 14:22:11 +0100520 folio = __filemap_get_folio(dir->i_mapping, ctx->pos / PAGE_SIZE,
521 FGP_ACCESSED, 0);
522 if (!folio) {
David Howellsf51375c2018-10-20 00:57:57 +0100523 ret = afs_bad(dvnode, afs_file_error_dir_missing_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 break;
525 }
526
David Howells255ed632021-08-11 14:22:11 +0100527 offset = round_down(ctx->pos, sizeof(*dblock)) - folio_file_pos(folio);
528 size = min_t(loff_t, folio_size(folio),
529 req->actual_len - folio_file_pos(folio));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 do {
David Howells255ed632021-08-11 14:22:11 +0100532 dblock = kmap_local_folio(folio, offset);
533 ret = afs_dir_iterate_block(dvnode, ctx, dblock,
534 folio_file_pos(folio) + offset);
535 kunmap_local(dblock);
536 if (ret != 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538
David Howells255ed632021-08-11 14:22:11 +0100539 } while (offset += sizeof(*dblock), offset < size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 ret = 0;
542 }
543
David Howellsec268152007-04-26 15:49:28 -0700544out:
David Howellsb61f7dc2018-04-27 20:46:22 +0100545 up_read(&dvnode->validate_lock);
David Howellsf3ddee82018-04-06 14:17:25 +0100546 afs_put_read(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 _leave(" = %d", ret);
548 return ret;
David Howellsec268152007-04-26 15:49:28 -0700549}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
Linus Torvalds1da177e2005-04-16 15:20:36 -0700551/*
552 * read an AFS directory
553 */
Al Viro1bbae9f2013-05-22 16:31:14 -0400554static int afs_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
David Howells9dd0b822019-07-30 14:38:52 +0100556 afs_dataversion_t dir_version;
557
558 return afs_dir_iterate(file_inode(file), ctx, afs_file_key(file),
559 &dir_version);
David Howellsec268152007-04-26 15:49:28 -0700560}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562/*
David Howells5cf9dd52018-04-09 21:12:31 +0100563 * Search the directory for a single name
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 * - if afs_dir_iterate_block() spots this function, it'll pass the FID
565 * uniquifier through dtype
566 */
David Howells5cf9dd52018-04-09 21:12:31 +0100567static int afs_lookup_one_filldir(struct dir_context *ctx, const char *name,
568 int nlen, loff_t fpos, u64 ino, unsigned dtype)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569{
David Howells5cf9dd52018-04-09 21:12:31 +0100570 struct afs_lookup_one_cookie *cookie =
571 container_of(ctx, struct afs_lookup_one_cookie, ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Al Viro1bbae9f2013-05-22 16:31:14 -0400573 _enter("{%s,%u},%s,%u,,%llu,%u",
574 cookie->name.name, cookie->name.len, name, nlen,
David S. Millerba3e0e12007-04-26 16:06:22 -0700575 (unsigned long long) ino, dtype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
David Howells08e0e7c2007-04-26 15:55:03 -0700577 /* insanity checks first */
David Howells00317632018-04-06 14:17:25 +0100578 BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
579 BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
David Howells08e0e7c2007-04-26 15:55:03 -0700580
Al Viro1bbae9f2013-05-22 16:31:14 -0400581 if (cookie->name.len != nlen ||
582 memcmp(cookie->name.name, name, nlen) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 _leave(" = 0 [no]");
584 return 0;
585 }
586
587 cookie->fid.vnode = ino;
588 cookie->fid.unique = dtype;
589 cookie->found = 1;
590
591 _leave(" = -1 [found]");
592 return -1;
David Howellsec268152007-04-26 15:49:28 -0700593}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595/*
David Howells5cf9dd52018-04-09 21:12:31 +0100596 * Do a lookup of a single name in a directory
David Howells260a9802007-04-26 15:59:35 -0700597 * - just returns the FID the dentry name maps to if found
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 */
David Howells5cf9dd52018-04-09 21:12:31 +0100599static int afs_do_lookup_one(struct inode *dir, struct dentry *dentry,
David Howells9dd0b822019-07-30 14:38:52 +0100600 struct afs_fid *fid, struct key *key,
601 afs_dataversion_t *_dir_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602{
Al Viro1bbae9f2013-05-22 16:31:14 -0400603 struct afs_super_info *as = dir->i_sb->s_fs_info;
David Howells5cf9dd52018-04-09 21:12:31 +0100604 struct afs_lookup_one_cookie cookie = {
605 .ctx.actor = afs_lookup_one_filldir,
Al Viro1bbae9f2013-05-22 16:31:14 -0400606 .name = dentry->d_name,
607 .fid.vid = as->volume->vid
608 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609 int ret;
610
Al Viroa4555892014-10-21 20:11:25 -0400611 _enter("{%lu},%p{%pd},", dir->i_ino, dentry, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 /* search the directory */
David Howells9dd0b822019-07-30 14:38:52 +0100614 ret = afs_dir_iterate(dir, &cookie.ctx, key, _dir_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 if (ret < 0) {
David Howells08e0e7c2007-04-26 15:55:03 -0700616 _leave(" = %d [iter]", ret);
617 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 }
619
Linus Torvalds1da177e2005-04-16 15:20:36 -0700620 if (!cookie.found) {
David Howells08e0e7c2007-04-26 15:55:03 -0700621 _leave(" = -ENOENT [not found]");
622 return -ENOENT;
623 }
624
625 *fid = cookie.fid;
David Howells3b6492d2018-10-20 00:57:57 +0100626 _leave(" = 0 { vn=%llu u=%u }", fid->vnode, fid->unique);
David Howells08e0e7c2007-04-26 15:55:03 -0700627 return 0;
628}
629
630/*
David Howells5cf9dd52018-04-09 21:12:31 +0100631 * search the directory for a name
632 * - if afs_dir_iterate_block() spots this function, it'll pass the FID
633 * uniquifier through dtype
634 */
635static int afs_lookup_filldir(struct dir_context *ctx, const char *name,
636 int nlen, loff_t fpos, u64 ino, unsigned dtype)
637{
638 struct afs_lookup_cookie *cookie =
639 container_of(ctx, struct afs_lookup_cookie, ctx);
640 int ret;
641
642 _enter("{%s,%u},%s,%u,,%llu,%u",
643 cookie->name.name, cookie->name.len, name, nlen,
644 (unsigned long long) ino, dtype);
645
646 /* insanity checks first */
David Howells00317632018-04-06 14:17:25 +0100647 BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
648 BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
David Howells5cf9dd52018-04-09 21:12:31 +0100649
650 if (cookie->found) {
651 if (cookie->nr_fids < 50) {
652 cookie->fids[cookie->nr_fids].vnode = ino;
653 cookie->fids[cookie->nr_fids].unique = dtype;
654 cookie->nr_fids++;
655 }
656 } else if (cookie->name.len == nlen &&
657 memcmp(cookie->name.name, name, nlen) == 0) {
David Howellse49c7b22020-04-10 20:51:51 +0100658 cookie->fids[1].vnode = ino;
659 cookie->fids[1].unique = dtype;
David Howells5cf9dd52018-04-09 21:12:31 +0100660 cookie->found = 1;
661 if (cookie->one_only)
662 return -1;
663 }
664
665 ret = cookie->nr_fids >= 50 ? -1 : 0;
666 _leave(" = %d", ret);
667 return ret;
668}
669
670/*
David Howellse49c7b22020-04-10 20:51:51 +0100671 * Deal with the result of a successful lookup operation. Turn all the files
672 * into inodes and save the first one - which is the one we actually want.
673 */
674static void afs_do_lookup_success(struct afs_operation *op)
675{
676 struct afs_vnode_param *vp;
677 struct afs_vnode *vnode;
678 struct inode *inode;
679 u32 abort_code;
680 int i;
681
682 _enter("");
683
684 for (i = 0; i < op->nr_files; i++) {
685 switch (i) {
686 case 0:
687 vp = &op->file[0];
688 abort_code = vp->scb.status.abort_code;
689 if (abort_code != 0) {
David Howells44767c32020-06-16 00:25:56 +0100690 op->ac.abort_code = abort_code;
David Howellse49c7b22020-04-10 20:51:51 +0100691 op->error = afs_abort_to_error(abort_code);
692 }
693 break;
694
695 case 1:
696 vp = &op->file[1];
697 break;
698
699 default:
700 vp = &op->more_files[i - 2];
701 break;
702 }
703
704 if (!vp->scb.have_status && !vp->scb.have_error)
705 continue;
706
707 _debug("do [%u]", i);
708 if (vp->vnode) {
709 if (!test_bit(AFS_VNODE_UNSET, &vp->vnode->flags))
710 afs_vnode_commit_status(op, vp);
711 } else if (vp->scb.status.abort_code == 0) {
712 inode = afs_iget(op, vp);
713 if (!IS_ERR(inode)) {
714 vnode = AFS_FS_I(inode);
715 afs_cache_permit(vnode, op->key,
716 0 /* Assume vnode->cb_break is 0 */ +
717 op->cb_v_break,
718 &vp->scb);
719 vp->vnode = vnode;
720 vp->put_vnode = true;
721 }
722 } else {
723 _debug("- abort %d %llx:%llx.%x",
724 vp->scb.status.abort_code,
725 vp->fid.vid, vp->fid.vnode, vp->fid.unique);
726 }
727 }
728
729 _leave("");
730}
731
732static const struct afs_operation_ops afs_inline_bulk_status_operation = {
733 .issue_afs_rpc = afs_fs_inline_bulk_status,
734 .issue_yfs_rpc = yfs_fs_inline_bulk_status,
735 .success = afs_do_lookup_success,
736};
737
David Howellsb6489a42020-06-15 17:36:58 +0100738static const struct afs_operation_ops afs_lookup_fetch_status_operation = {
David Howellse49c7b22020-04-10 20:51:51 +0100739 .issue_afs_rpc = afs_fs_fetch_status,
740 .issue_yfs_rpc = yfs_fs_fetch_status,
741 .success = afs_do_lookup_success,
David Howells728279a2020-06-16 00:34:09 +0100742 .aborted = afs_check_for_remote_deletion,
David Howellse49c7b22020-04-10 20:51:51 +0100743};
744
745/*
David Howells20325962020-04-30 01:03:49 +0100746 * See if we know that the server we expect to use doesn't support
747 * FS.InlineBulkStatus.
748 */
749static bool afs_server_supports_ibulk(struct afs_vnode *dvnode)
750{
751 struct afs_server_list *slist;
752 struct afs_volume *volume = dvnode->volume;
753 struct afs_server *server;
754 bool ret = true;
755 int i;
756
757 if (!test_bit(AFS_VOLUME_MAYBE_NO_IBULK, &volume->flags))
758 return true;
759
760 rcu_read_lock();
761 slist = rcu_dereference(volume->servers);
762
763 for (i = 0; i < slist->nr_servers; i++) {
764 server = slist->servers[i].server;
765 if (server == dvnode->cb_server) {
766 if (test_bit(AFS_SERVER_FL_NO_IBULK, &server->flags))
767 ret = false;
768 break;
769 }
770 }
771
772 rcu_read_unlock();
773 return ret;
774}
775
776/*
David Howells5cf9dd52018-04-09 21:12:31 +0100777 * Do a lookup in a directory. We make use of bulk lookup to query a slew of
778 * files in one go and create inodes for them. The inode of the file we were
779 * asked for is returned.
780 */
781static struct inode *afs_do_lookup(struct inode *dir, struct dentry *dentry,
782 struct key *key)
783{
784 struct afs_lookup_cookie *cookie;
David Howellse49c7b22020-04-10 20:51:51 +0100785 struct afs_vnode_param *vp;
786 struct afs_operation *op;
David Howells39db9812019-05-14 12:33:10 +0100787 struct afs_vnode *dvnode = AFS_FS_I(dir), *vnode;
788 struct inode *inode = NULL, *ti;
David Howells9dd0b822019-07-30 14:38:52 +0100789 afs_dataversion_t data_version = READ_ONCE(dvnode->status.data_version);
David Howellse49c7b22020-04-10 20:51:51 +0100790 long ret;
791 int i;
David Howells5cf9dd52018-04-09 21:12:31 +0100792
793 _enter("{%lu},%p{%pd},", dir->i_ino, dentry, dentry);
794
795 cookie = kzalloc(sizeof(struct afs_lookup_cookie), GFP_KERNEL);
796 if (!cookie)
797 return ERR_PTR(-ENOMEM);
798
David Howellse49c7b22020-04-10 20:51:51 +0100799 for (i = 0; i < ARRAY_SIZE(cookie->fids); i++)
800 cookie->fids[i].vid = dvnode->fid.vid;
David Howells5cf9dd52018-04-09 21:12:31 +0100801 cookie->ctx.actor = afs_lookup_filldir;
802 cookie->name = dentry->d_name;
David Howells13fcc632020-04-16 14:20:32 +0100803 cookie->nr_fids = 2; /* slot 0 is saved for the fid we actually want
804 * and slot 1 for the directory */
David Howells5cf9dd52018-04-09 21:12:31 +0100805
David Howells20325962020-04-30 01:03:49 +0100806 if (!afs_server_supports_ibulk(dvnode))
807 cookie->one_only = true;
David Howells5cf9dd52018-04-09 21:12:31 +0100808
David Howells5cf9dd52018-04-09 21:12:31 +0100809 /* search the directory */
David Howells9dd0b822019-07-30 14:38:52 +0100810 ret = afs_dir_iterate(dir, &cookie->ctx, key, &data_version);
David Howellse49c7b22020-04-10 20:51:51 +0100811 if (ret < 0)
David Howells5cf9dd52018-04-09 21:12:31 +0100812 goto out;
David Howells5cf9dd52018-04-09 21:12:31 +0100813
David Howells9dd0b822019-07-30 14:38:52 +0100814 dentry->d_fsdata = (void *)(unsigned long)data_version;
815
David Howellse49c7b22020-04-10 20:51:51 +0100816 ret = -ENOENT;
David Howells5cf9dd52018-04-09 21:12:31 +0100817 if (!cookie->found)
818 goto out;
819
820 /* Check to see if we already have an inode for the primary fid. */
David Howellse49c7b22020-04-10 20:51:51 +0100821 inode = ilookup5(dir->i_sb, cookie->fids[1].vnode,
822 afs_ilookup5_test_by_fid, &cookie->fids[1]);
David Howells5cf9dd52018-04-09 21:12:31 +0100823 if (inode)
David Howellse49c7b22020-04-10 20:51:51 +0100824 goto out; /* We do */
825
826 /* Okay, we didn't find it. We need to query the server - and whilst
827 * we're doing that, we're going to attempt to look up a bunch of other
828 * vnodes also.
829 */
830 op = afs_alloc_operation(NULL, dvnode->volume);
831 if (IS_ERR(op)) {
832 ret = PTR_ERR(op);
David Howells5cf9dd52018-04-09 21:12:31 +0100833 goto out;
David Howellse49c7b22020-04-10 20:51:51 +0100834 }
835
836 afs_op_set_vnode(op, 0, dvnode);
837 afs_op_set_fid(op, 1, &cookie->fids[1]);
838
839 op->nr_files = cookie->nr_fids;
840 _debug("nr_files %u", op->nr_files);
David Howells5cf9dd52018-04-09 21:12:31 +0100841
842 /* Need space for examining all the selected files */
David Howellse49c7b22020-04-10 20:51:51 +0100843 op->error = -ENOMEM;
844 if (op->nr_files > 2) {
845 op->more_files = kvcalloc(op->nr_files - 2,
846 sizeof(struct afs_vnode_param),
847 GFP_KERNEL);
848 if (!op->more_files)
849 goto out_op;
David Howells5cf9dd52018-04-09 21:12:31 +0100850
David Howellse49c7b22020-04-10 20:51:51 +0100851 for (i = 2; i < op->nr_files; i++) {
852 vp = &op->more_files[i - 2];
853 vp->fid = cookie->fids[i];
David Howells39db9812019-05-14 12:33:10 +0100854
David Howellse49c7b22020-04-10 20:51:51 +0100855 /* Find any inodes that already exist and get their
856 * callback counters.
857 */
858 ti = ilookup5_nowait(dir->i_sb, vp->fid.vnode,
859 afs_ilookup5_test_by_fid, &vp->fid);
860 if (!IS_ERR_OR_NULL(ti)) {
861 vnode = AFS_FS_I(ti);
862 vp->dv_before = vnode->status.data_version;
863 vp->cb_break_before = afs_calc_vnode_cb_break(vnode);
864 vp->vnode = vnode;
865 vp->put_vnode = true;
David Howellsa9e5c872020-11-22 13:13:45 +0000866 vp->speculative = true; /* vnode not locked */
David Howellse49c7b22020-04-10 20:51:51 +0100867 }
David Howells39db9812019-05-14 12:33:10 +0100868 }
869 }
870
David Howells5cf9dd52018-04-09 21:12:31 +0100871 /* Try FS.InlineBulkStatus first. Abort codes for the individual
872 * lookups contained therein are stored in the reply without aborting
873 * the whole operation.
874 */
David Howellse49c7b22020-04-10 20:51:51 +0100875 op->error = -ENOTSUPP;
876 if (!cookie->one_only) {
877 op->ops = &afs_inline_bulk_status_operation;
878 afs_begin_vnode_operation(op);
879 afs_wait_for_operation(op);
David Howells5cf9dd52018-04-09 21:12:31 +0100880 }
881
David Howellse49c7b22020-04-10 20:51:51 +0100882 if (op->error == -ENOTSUPP) {
883 /* We could try FS.BulkStatus next, but this aborts the entire
884 * op if any of the lookups fails - so, for the moment, revert
885 * to FS.FetchStatus for op->file[1].
886 */
887 op->fetch_status.which = 1;
David Howellsf8ea5c72020-06-19 00:01:28 +0100888 op->ops = &afs_lookup_fetch_status_operation;
David Howellse49c7b22020-04-10 20:51:51 +0100889 afs_begin_vnode_operation(op);
890 afs_wait_for_operation(op);
891 }
892 inode = ERR_PTR(op->error);
David Howells5cf9dd52018-04-09 21:12:31 +0100893
David Howellse49c7b22020-04-10 20:51:51 +0100894out_op:
895 if (op->error == 0) {
896 inode = &op->file[1].vnode->vfs_inode;
897 op->file[1].vnode = NULL;
David Howells5cf9dd52018-04-09 21:12:31 +0100898 }
899
David Howellse49c7b22020-04-10 20:51:51 +0100900 if (op->file[0].scb.have_status)
901 dentry->d_fsdata = (void *)(unsigned long)op->file[0].scb.status.data_version;
902 else
903 dentry->d_fsdata = (void *)(unsigned long)op->file[0].dv_before;
904 ret = afs_put_operation(op);
David Howells5cf9dd52018-04-09 21:12:31 +0100905out:
906 kfree(cookie);
David Howellse49c7b22020-04-10 20:51:51 +0100907 _leave("");
908 return inode ?: ERR_PTR(ret);
David Howells5cf9dd52018-04-09 21:12:31 +0100909}
910
911/*
David Howells6f8880d2018-04-09 21:12:31 +0100912 * Look up an entry in a directory with @sys substitution.
913 */
914static struct dentry *afs_lookup_atsys(struct inode *dir, struct dentry *dentry,
915 struct key *key)
916{
917 struct afs_sysnames *subs;
918 struct afs_net *net = afs_i2net(dir);
919 struct dentry *ret;
920 char *buf, *p, *name;
921 int len, i;
922
923 _enter("");
924
925 ret = ERR_PTR(-ENOMEM);
926 p = buf = kmalloc(AFSNAMEMAX, GFP_KERNEL);
927 if (!buf)
928 goto out_p;
929 if (dentry->d_name.len > 4) {
930 memcpy(p, dentry->d_name.name, dentry->d_name.len - 4);
931 p += dentry->d_name.len - 4;
932 }
933
934 /* There is an ordered list of substitutes that we have to try. */
935 read_lock(&net->sysnames_lock);
936 subs = net->sysnames;
937 refcount_inc(&subs->usage);
938 read_unlock(&net->sysnames_lock);
939
940 for (i = 0; i < subs->nr; i++) {
941 name = subs->subs[i];
942 len = dentry->d_name.len - 4 + strlen(name);
943 if (len >= AFSNAMEMAX) {
944 ret = ERR_PTR(-ENAMETOOLONG);
945 goto out_s;
946 }
947
948 strcpy(p, name);
949 ret = lookup_one_len(buf, dentry->d_parent, len);
950 if (IS_ERR(ret) || d_is_positive(ret))
951 goto out_s;
952 dput(ret);
953 }
954
955 /* We don't want to d_add() the @sys dentry here as we don't want to
956 * the cached dentry to hide changes to the sysnames list.
957 */
958 ret = NULL;
959out_s:
960 afs_put_sysnames(subs);
961 kfree(buf);
962out_p:
963 key_put(key);
964 return ret;
965}
966
967/*
David Howells08e0e7c2007-04-26 15:55:03 -0700968 * look up an entry in a directory
969 */
David Howells260a9802007-04-26 15:59:35 -0700970static struct dentry *afs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400971 unsigned int flags)
David Howells08e0e7c2007-04-26 15:55:03 -0700972{
David Howells5cf9dd52018-04-09 21:12:31 +0100973 struct afs_vnode *dvnode = AFS_FS_I(dir);
David Howells40a708b2020-01-14 16:16:25 +0000974 struct afs_fid fid = {};
David Howells08e0e7c2007-04-26 15:55:03 -0700975 struct inode *inode;
Al Viro34b2a882018-06-24 10:43:51 -0400976 struct dentry *d;
David Howells00d3b7a2007-04-26 15:57:07 -0700977 struct key *key;
David Howells08e0e7c2007-04-26 15:55:03 -0700978 int ret;
979
David Howells3b6492d2018-10-20 00:57:57 +0100980 _enter("{%llx:%llu},%p{%pd},",
David Howells5cf9dd52018-04-09 21:12:31 +0100981 dvnode->fid.vid, dvnode->fid.vnode, dentry, dentry);
David Howells260a9802007-04-26 15:59:35 -0700982
David Howells2b0143b2015-03-17 22:25:59 +0000983 ASSERTCMP(d_inode(dentry), ==, NULL);
David Howells08e0e7c2007-04-26 15:55:03 -0700984
David Howells45222b92007-05-10 22:22:20 -0700985 if (dentry->d_name.len >= AFSNAMEMAX) {
David Howells08e0e7c2007-04-26 15:55:03 -0700986 _leave(" = -ENAMETOOLONG");
987 return ERR_PTR(-ENAMETOOLONG);
988 }
989
David Howells5cf9dd52018-04-09 21:12:31 +0100990 if (test_bit(AFS_VNODE_DELETED, &dvnode->flags)) {
David Howells08e0e7c2007-04-26 15:55:03 -0700991 _leave(" = -ESTALE");
992 return ERR_PTR(-ESTALE);
993 }
994
David Howells5cf9dd52018-04-09 21:12:31 +0100995 key = afs_request_key(dvnode->volume->cell);
David Howells00d3b7a2007-04-26 15:57:07 -0700996 if (IS_ERR(key)) {
997 _leave(" = %ld [key]", PTR_ERR(key));
David Howellse231c2e2008-02-07 00:15:26 -0800998 return ERR_CAST(key);
David Howells00d3b7a2007-04-26 15:57:07 -0700999 }
1000
David Howells5cf9dd52018-04-09 21:12:31 +01001001 ret = afs_validate(dvnode, key);
David Howells08e0e7c2007-04-26 15:55:03 -07001002 if (ret < 0) {
David Howells00d3b7a2007-04-26 15:57:07 -07001003 key_put(key);
David Howells260a9802007-04-26 15:59:35 -07001004 _leave(" = %d [val]", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 return ERR_PTR(ret);
1006 }
1007
David Howells6f8880d2018-04-09 21:12:31 +01001008 if (dentry->d_name.len >= 4 &&
1009 dentry->d_name.name[dentry->d_name.len - 4] == '@' &&
1010 dentry->d_name.name[dentry->d_name.len - 3] == 's' &&
1011 dentry->d_name.name[dentry->d_name.len - 2] == 'y' &&
1012 dentry->d_name.name[dentry->d_name.len - 1] == 's')
1013 return afs_lookup_atsys(dir, dentry, key);
1014
David Howellsd55b4da2018-04-06 14:17:24 +01001015 afs_stat_v(dvnode, n_lookup);
David Howells5cf9dd52018-04-09 21:12:31 +01001016 inode = afs_do_lookup(dir, dentry, key);
David Howells00d3b7a2007-04-26 15:57:07 -07001017 key_put(key);
David Howellsf52b83b2020-01-14 16:16:54 +00001018 if (inode == ERR_PTR(-ENOENT))
Al Viro34b2a882018-06-24 10:43:51 -04001019 inode = afs_try_auto_mntpt(dentry, dir);
David Howells40a708b2020-01-14 16:16:25 +00001020
1021 if (!IS_ERR_OR_NULL(inode))
1022 fid = AFS_FS_I(inode)->fid;
1023
David Howellsfed79fd2020-06-09 16:25:02 +01001024 _debug("splice %p", dentry->d_inode);
Al Viro34b2a882018-06-24 10:43:51 -04001025 d = d_splice_alias(inode, dentry);
David Howells80548b02019-04-25 14:26:51 +01001026 if (!IS_ERR_OR_NULL(d)) {
Al Viro34b2a882018-06-24 10:43:51 -04001027 d->d_fsdata = dentry->d_fsdata;
David Howells40a708b2020-01-14 16:16:25 +00001028 trace_afs_lookup(dvnode, &d->d_name, &fid);
David Howells80548b02019-04-25 14:26:51 +01001029 } else {
David Howells40a708b2020-01-14 16:16:25 +00001030 trace_afs_lookup(dvnode, &dentry->d_name, &fid);
David Howells80548b02019-04-25 14:26:51 +01001031 }
David Howellse49c7b22020-04-10 20:51:51 +01001032 _leave("");
Al Viro34b2a882018-06-24 10:43:51 -04001033 return d;
David Howellsec268152007-04-26 15:49:28 -07001034}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001035
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036/*
David Howellsa0753c22019-05-20 08:48:46 +01001037 * Check the validity of a dentry under RCU conditions.
1038 */
1039static int afs_d_revalidate_rcu(struct dentry *dentry)
1040{
David Howells63d49d82021-09-01 18:11:33 +01001041 struct afs_vnode *dvnode;
David Howellsa0753c22019-05-20 08:48:46 +01001042 struct dentry *parent;
David Howells63d49d82021-09-01 18:11:33 +01001043 struct inode *dir;
David Howellsa0753c22019-05-20 08:48:46 +01001044 long dir_version, de_version;
1045
1046 _enter("%p", dentry);
1047
1048 /* Check the parent directory is still valid first. */
1049 parent = READ_ONCE(dentry->d_parent);
1050 dir = d_inode_rcu(parent);
1051 if (!dir)
1052 return -ECHILD;
1053 dvnode = AFS_FS_I(dir);
1054 if (test_bit(AFS_VNODE_DELETED, &dvnode->flags))
1055 return -ECHILD;
1056
1057 if (!afs_check_validity(dvnode))
1058 return -ECHILD;
1059
1060 /* We only need to invalidate a dentry if the server's copy changed
1061 * behind our back. If we made the change, it's no problem. Note that
1062 * on a 32-bit system, we only have 32 bits in the dentry to store the
1063 * version.
1064 */
1065 dir_version = (long)READ_ONCE(dvnode->status.data_version);
1066 de_version = (long)READ_ONCE(dentry->d_fsdata);
1067 if (de_version != dir_version) {
1068 dir_version = (long)READ_ONCE(dvnode->invalid_before);
1069 if (de_version - dir_version < 0)
1070 return -ECHILD;
1071 }
1072
David Howellsa0753c22019-05-20 08:48:46 +01001073 return 1; /* Still valid */
1074}
1075
1076/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077 * check that a dentry lookup hit has found a valid entry
1078 * - NOTE! the hit can be a negative hit too, so we can't assume we have an
1079 * inode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001080 */
Al Viro0b728e12012-06-10 16:03:43 -04001081static int afs_d_revalidate(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
David Howells260a9802007-04-26 15:59:35 -07001083 struct afs_vnode *vnode, *dir;
Kees Cook3f649ab2020-06-03 13:09:38 -07001084 struct afs_fid fid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 struct dentry *parent;
David Howellsc435ee32017-11-02 15:27:49 +00001086 struct inode *inode;
David Howells00d3b7a2007-04-26 15:57:07 -07001087 struct key *key;
David Howells40fc8102020-04-11 08:50:45 +01001088 afs_dataversion_t dir_version, invalid_before;
David Howells9dd0b822019-07-30 14:38:52 +01001089 long de_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 int ret;
1091
Al Viro0b728e12012-06-10 16:03:43 -04001092 if (flags & LOOKUP_RCU)
David Howellsa0753c22019-05-20 08:48:46 +01001093 return afs_d_revalidate_rcu(dentry);
Nick Piggin34286d62011-01-07 17:49:57 +11001094
David Howellsc435ee32017-11-02 15:27:49 +00001095 if (d_really_is_positive(dentry)) {
1096 vnode = AFS_FS_I(d_inode(dentry));
David Howells3b6492d2018-10-20 00:57:57 +01001097 _enter("{v={%llx:%llu} n=%pd fl=%lx},",
Al Viroa4555892014-10-21 20:11:25 -04001098 vnode->fid.vid, vnode->fid.vnode, dentry,
David Howells260a9802007-04-26 15:59:35 -07001099 vnode->flags);
David Howellsc435ee32017-11-02 15:27:49 +00001100 } else {
Al Viroa4555892014-10-21 20:11:25 -04001101 _enter("{neg n=%pd}", dentry);
David Howellsc435ee32017-11-02 15:27:49 +00001102 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
David Howells260a9802007-04-26 15:59:35 -07001104 key = afs_request_key(AFS_FS_S(dentry->d_sb)->volume->cell);
David Howells00d3b7a2007-04-26 15:57:07 -07001105 if (IS_ERR(key))
1106 key = NULL;
1107
David Howells63d49d82021-09-01 18:11:33 +01001108 /* Hold the parent dentry so we can peer at it */
David Howells08e0e7c2007-04-26 15:55:03 -07001109 parent = dget_parent(dentry);
David Howells2b0143b2015-03-17 22:25:59 +00001110 dir = AFS_FS_I(d_inode(parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001111
David Howells260a9802007-04-26 15:59:35 -07001112 /* validate the parent directory */
David Howellsc435ee32017-11-02 15:27:49 +00001113 afs_validate(dir, key);
David Howells260a9802007-04-26 15:59:35 -07001114
1115 if (test_bit(AFS_VNODE_DELETED, &dir->flags)) {
Al Viroa4555892014-10-21 20:11:25 -04001116 _debug("%pd: parent dir deleted", dentry);
David Howells63d49d82021-09-01 18:11:33 +01001117 goto not_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 }
1119
David Howellsa4ff7402018-04-06 14:17:24 +01001120 /* We only need to invalidate a dentry if the server's copy changed
1121 * behind our back. If we made the change, it's no problem. Note that
1122 * on a 32-bit system, we only have 32 bits in the dentry to store the
1123 * version.
1124 */
David Howells9dd0b822019-07-30 14:38:52 +01001125 dir_version = dir->status.data_version;
David Howellsa4ff7402018-04-06 14:17:24 +01001126 de_version = (long)dentry->d_fsdata;
David Howells9dd0b822019-07-30 14:38:52 +01001127 if (de_version == (long)dir_version)
David Howells5dc84852019-07-30 14:38:51 +01001128 goto out_valid_noupdate;
David Howellsa4ff7402018-04-06 14:17:24 +01001129
David Howells40fc8102020-04-11 08:50:45 +01001130 invalid_before = dir->invalid_before;
1131 if (de_version - (long)invalid_before >= 0)
David Howellsa4ff7402018-04-06 14:17:24 +01001132 goto out_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133
David Howells260a9802007-04-26 15:59:35 -07001134 _debug("dir modified");
David Howellsd55b4da2018-04-06 14:17:24 +01001135 afs_stat_v(dir, n_reval);
David Howells260a9802007-04-26 15:59:35 -07001136
1137 /* search the directory for this vnode */
David Howells9dd0b822019-07-30 14:38:52 +01001138 ret = afs_do_lookup_one(&dir->vfs_inode, dentry, &fid, key, &dir_version);
David Howells260a9802007-04-26 15:59:35 -07001139 switch (ret) {
1140 case 0:
1141 /* the filename maps to something */
David Howells2b0143b2015-03-17 22:25:59 +00001142 if (d_really_is_negative(dentry))
David Howells63d49d82021-09-01 18:11:33 +01001143 goto not_found;
David Howellsc435ee32017-11-02 15:27:49 +00001144 inode = d_inode(dentry);
1145 if (is_bad_inode(inode)) {
Al Viroa4555892014-10-21 20:11:25 -04001146 printk("kAFS: afs_d_revalidate: %pd2 has bad inode\n",
1147 dentry);
David Howells63d49d82021-09-01 18:11:33 +01001148 goto not_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 }
1150
David Howellsc435ee32017-11-02 15:27:49 +00001151 vnode = AFS_FS_I(inode);
1152
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153 /* if the vnode ID has changed, then the dirent points to a
1154 * different file */
David Howells08e0e7c2007-04-26 15:55:03 -07001155 if (fid.vnode != vnode->fid.vnode) {
David Howells3b6492d2018-10-20 00:57:57 +01001156 _debug("%pd: dirent changed [%llu != %llu]",
Al Viroa4555892014-10-21 20:11:25 -04001157 dentry, fid.vnode,
David Howells08e0e7c2007-04-26 15:55:03 -07001158 vnode->fid.vnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001159 goto not_found;
1160 }
1161
1162 /* if the vnode ID uniqifier has changed, then the file has
David Howells260a9802007-04-26 15:59:35 -07001163 * been deleted and replaced, and the original vnode ID has
1164 * been reused */
David Howells08e0e7c2007-04-26 15:55:03 -07001165 if (fid.unique != vnode->fid.unique) {
Al Viroa4555892014-10-21 20:11:25 -04001166 _debug("%pd: file deleted (uq %u -> %u I:%u)",
1167 dentry, fid.unique,
Jean Noel Cordenner7a224222008-01-28 23:58:27 -05001168 vnode->fid.unique,
David Howellsc435ee32017-11-02 15:27:49 +00001169 vnode->vfs_inode.i_generation);
David Howells260a9802007-04-26 15:59:35 -07001170 goto not_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001171 }
David Howells260a9802007-04-26 15:59:35 -07001172 goto out_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001173
David Howells260a9802007-04-26 15:59:35 -07001174 case -ENOENT:
1175 /* the filename is unknown */
Al Viroa4555892014-10-21 20:11:25 -04001176 _debug("%pd: dirent not found", dentry);
David Howells2b0143b2015-03-17 22:25:59 +00001177 if (d_really_is_positive(dentry))
David Howells260a9802007-04-26 15:59:35 -07001178 goto not_found;
1179 goto out_valid;
David Howells08e0e7c2007-04-26 15:55:03 -07001180
David Howells260a9802007-04-26 15:59:35 -07001181 default:
Al Viroa4555892014-10-21 20:11:25 -04001182 _debug("failed to iterate dir %pd: %d",
1183 parent, ret);
David Howells63d49d82021-09-01 18:11:33 +01001184 goto not_found;
David Howells08e0e7c2007-04-26 15:55:03 -07001185 }
1186
David Howellsec268152007-04-26 15:49:28 -07001187out_valid:
David Howells9dd0b822019-07-30 14:38:52 +01001188 dentry->d_fsdata = (void *)(unsigned long)dir_version;
David Howells5dc84852019-07-30 14:38:51 +01001189out_valid_noupdate:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190 dput(parent);
David Howells00d3b7a2007-04-26 15:57:07 -07001191 key_put(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 _leave(" = 1 [valid]");
1193 return 1;
1194
David Howellsec268152007-04-26 15:49:28 -07001195not_found:
Al Viroa4555892014-10-21 20:11:25 -04001196 _debug("dropping dentry %pd2", dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 dput(parent);
David Howells00d3b7a2007-04-26 15:57:07 -07001198 key_put(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 _leave(" = 0 [bad]");
1201 return 0;
David Howellsec268152007-04-26 15:49:28 -07001202}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204/*
1205 * allow the VFS to enquire as to whether a dentry should be unhashed (mustn't
1206 * sleep)
1207 * - called from dput() when d_count is going to 0.
1208 * - return 1 to request dentry be unhashed, 0 otherwise
1209 */
Nick Pigginfe15ce42011-01-07 17:49:23 +11001210static int afs_d_delete(const struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211{
Al Viroa4555892014-10-21 20:11:25 -04001212 _enter("%pd", dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214 if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
1215 goto zap;
1216
David Howells2b0143b2015-03-17 22:25:59 +00001217 if (d_really_is_positive(dentry) &&
1218 (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(d_inode(dentry))->flags) ||
1219 test_bit(AFS_VNODE_PSEUDODIR, &AFS_FS_I(d_inode(dentry))->flags)))
wangleibec5eb62010-08-11 09:38:04 +01001220 goto zap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221
1222 _leave(" = 0 [keep]");
1223 return 0;
1224
David Howellsec268152007-04-26 15:49:28 -07001225zap:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 _leave(" = 1 [zap]");
1227 return 1;
David Howellsec268152007-04-26 15:49:28 -07001228}
David Howells260a9802007-04-26 15:59:35 -07001229
1230/*
David Howells79ddbfa2019-04-25 14:26:51 +01001231 * Clean up sillyrename files on dentry removal.
1232 */
1233static void afs_d_iput(struct dentry *dentry, struct inode *inode)
1234{
1235 if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
1236 afs_silly_iput(dentry, inode);
1237 iput(inode);
1238}
1239
1240/*
David Howells260a9802007-04-26 15:59:35 -07001241 * handle dentry release
1242 */
David Howells66c7e1d2018-04-06 14:17:25 +01001243void afs_d_release(struct dentry *dentry)
David Howells260a9802007-04-26 15:59:35 -07001244{
Al Viroa4555892014-10-21 20:11:25 -04001245 _enter("%pd", dentry);
David Howells260a9802007-04-26 15:59:35 -07001246}
1247
David Howells728279a2020-06-16 00:34:09 +01001248void afs_check_for_remote_deletion(struct afs_operation *op)
1249{
1250 struct afs_vnode *vnode = op->file[0].vnode;
1251
1252 switch (op->ac.abort_code) {
1253 case VNOVNODE:
1254 set_bit(AFS_VNODE_DELETED, &vnode->flags);
1255 afs_break_callback(vnode, afs_cb_break_for_deleted);
1256 }
1257}
1258
David Howells260a9802007-04-26 15:59:35 -07001259/*
David Howellsd2ddc772017-11-02 15:27:50 +00001260 * Create a new inode for create/mkdir/symlink
1261 */
David Howellse49c7b22020-04-10 20:51:51 +01001262static void afs_vnode_new_inode(struct afs_operation *op)
David Howellsd2ddc772017-11-02 15:27:50 +00001263{
David Howellse49c7b22020-04-10 20:51:51 +01001264 struct afs_vnode_param *vp = &op->file[1];
David Howells5a813272018-04-06 14:17:26 +01001265 struct afs_vnode *vnode;
David Howellsd2ddc772017-11-02 15:27:50 +00001266 struct inode *inode;
1267
David Howellse49c7b22020-04-10 20:51:51 +01001268 _enter("");
David Howellsd2ddc772017-11-02 15:27:50 +00001269
David Howellse49c7b22020-04-10 20:51:51 +01001270 ASSERTCMP(op->error, ==, 0);
1271
1272 inode = afs_iget(op, vp);
David Howellsd2ddc772017-11-02 15:27:50 +00001273 if (IS_ERR(inode)) {
1274 /* ENOMEM or EINTR at a really inconvenient time - just abandon
1275 * the new directory on the server.
1276 */
David Howellse49c7b22020-04-10 20:51:51 +01001277 op->error = PTR_ERR(inode);
David Howellsd2ddc772017-11-02 15:27:50 +00001278 return;
1279 }
1280
David Howells5a813272018-04-06 14:17:26 +01001281 vnode = AFS_FS_I(inode);
1282 set_bit(AFS_VNODE_NEW_CONTENT, &vnode->flags);
David Howellse49c7b22020-04-10 20:51:51 +01001283 if (!op->error)
1284 afs_cache_permit(vnode, op->key, vnode->cb_break, &vp->scb);
1285 d_instantiate(op->dentry, inode);
David Howellsd2ddc772017-11-02 15:27:50 +00001286}
1287
David Howellse49c7b22020-04-10 20:51:51 +01001288static void afs_create_success(struct afs_operation *op)
David Howellsb8359152019-05-14 12:23:43 +01001289{
David Howellse49c7b22020-04-10 20:51:51 +01001290 _enter("op=%08x", op->debug_id);
David Howellsda8d0752020-06-13 19:34:59 +01001291 op->ctime = op->file[0].scb.status.mtime_client;
David Howellse49c7b22020-04-10 20:51:51 +01001292 afs_vnode_commit_status(op, &op->file[0]);
1293 afs_update_dentry_version(op, &op->file[0], op->dentry);
1294 afs_vnode_new_inode(op);
David Howellsb8359152019-05-14 12:23:43 +01001295}
1296
David Howellse49c7b22020-04-10 20:51:51 +01001297static void afs_create_edit_dir(struct afs_operation *op)
David Howells9dd0b822019-07-30 14:38:52 +01001298{
David Howellse49c7b22020-04-10 20:51:51 +01001299 struct afs_vnode_param *dvp = &op->file[0];
1300 struct afs_vnode_param *vp = &op->file[1];
1301 struct afs_vnode *dvnode = dvp->vnode;
1302
1303 _enter("op=%08x", op->debug_id);
1304
1305 down_write(&dvnode->validate_lock);
1306 if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags) &&
1307 dvnode->status.data_version == dvp->dv_before + dvp->dv_delta)
1308 afs_edit_dir_add(dvnode, &op->dentry->d_name, &vp->fid,
1309 op->create.reason);
1310 up_write(&dvnode->validate_lock);
David Howells9dd0b822019-07-30 14:38:52 +01001311}
1312
David Howellse49c7b22020-04-10 20:51:51 +01001313static void afs_create_put(struct afs_operation *op)
1314{
1315 _enter("op=%08x", op->debug_id);
1316
1317 if (op->error)
1318 d_drop(op->dentry);
1319}
1320
1321static const struct afs_operation_ops afs_mkdir_operation = {
1322 .issue_afs_rpc = afs_fs_make_dir,
1323 .issue_yfs_rpc = yfs_fs_make_dir,
1324 .success = afs_create_success,
David Howells728279a2020-06-16 00:34:09 +01001325 .aborted = afs_check_for_remote_deletion,
David Howellse49c7b22020-04-10 20:51:51 +01001326 .edit_dir = afs_create_edit_dir,
1327 .put = afs_create_put,
1328};
1329
David Howells9dd0b822019-07-30 14:38:52 +01001330/*
David Howells260a9802007-04-26 15:59:35 -07001331 * create a directory on an AFS filesystem
1332 */
Christian Brauner549c7292021-01-21 14:19:43 +01001333static int afs_mkdir(struct user_namespace *mnt_userns, struct inode *dir,
1334 struct dentry *dentry, umode_t mode)
David Howells260a9802007-04-26 15:59:35 -07001335{
David Howellse49c7b22020-04-10 20:51:51 +01001336 struct afs_operation *op;
David Howellsd2ddc772017-11-02 15:27:50 +00001337 struct afs_vnode *dvnode = AFS_FS_I(dir);
David Howells260a9802007-04-26 15:59:35 -07001338
David Howells3b6492d2018-10-20 00:57:57 +01001339 _enter("{%llx:%llu},{%pd},%ho",
Al Viroa4555892014-10-21 20:11:25 -04001340 dvnode->fid.vid, dvnode->fid.vnode, dentry, mode);
David Howells260a9802007-04-26 15:59:35 -07001341
David Howellse49c7b22020-04-10 20:51:51 +01001342 op = afs_alloc_operation(NULL, dvnode->volume);
1343 if (IS_ERR(op)) {
1344 d_drop(dentry);
1345 return PTR_ERR(op);
David Howells260a9802007-04-26 15:59:35 -07001346 }
1347
David Howellse49c7b22020-04-10 20:51:51 +01001348 afs_op_set_vnode(op, 0, dvnode);
1349 op->file[0].dv_delta = 1;
David Howells22650f12021-04-30 13:47:08 +01001350 op->file[0].modification = true;
David Howellsda8d0752020-06-13 19:34:59 +01001351 op->file[0].update_ctime = true;
David Howellse49c7b22020-04-10 20:51:51 +01001352 op->dentry = dentry;
1353 op->create.mode = S_IFDIR | mode;
1354 op->create.reason = afs_edit_dir_for_mkdir;
1355 op->ops = &afs_mkdir_operation;
1356 return afs_do_sync_operation(op);
David Howells260a9802007-04-26 15:59:35 -07001357}
1358
1359/*
David Howellsd2ddc772017-11-02 15:27:50 +00001360 * Remove a subdir from a directory.
David Howells260a9802007-04-26 15:59:35 -07001361 */
David Howellsd2ddc772017-11-02 15:27:50 +00001362static void afs_dir_remove_subdir(struct dentry *dentry)
David Howells260a9802007-04-26 15:59:35 -07001363{
David Howells2b0143b2015-03-17 22:25:59 +00001364 if (d_really_is_positive(dentry)) {
David Howellsd2ddc772017-11-02 15:27:50 +00001365 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
1366
David Howells260a9802007-04-26 15:59:35 -07001367 clear_nlink(&vnode->vfs_inode);
1368 set_bit(AFS_VNODE_DELETED, &vnode->flags);
David Howellsc435ee32017-11-02 15:27:49 +00001369 clear_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
David Howells63a46812018-04-06 14:17:25 +01001370 clear_bit(AFS_VNODE_DIR_VALID, &vnode->flags);
David Howells260a9802007-04-26 15:59:35 -07001371 }
David Howells260a9802007-04-26 15:59:35 -07001372}
1373
David Howellse49c7b22020-04-10 20:51:51 +01001374static void afs_rmdir_success(struct afs_operation *op)
1375{
1376 _enter("op=%08x", op->debug_id);
David Howellsda8d0752020-06-13 19:34:59 +01001377 op->ctime = op->file[0].scb.status.mtime_client;
David Howellse49c7b22020-04-10 20:51:51 +01001378 afs_vnode_commit_status(op, &op->file[0]);
1379 afs_update_dentry_version(op, &op->file[0], op->dentry);
1380}
1381
1382static void afs_rmdir_edit_dir(struct afs_operation *op)
1383{
1384 struct afs_vnode_param *dvp = &op->file[0];
1385 struct afs_vnode *dvnode = dvp->vnode;
1386
1387 _enter("op=%08x", op->debug_id);
1388 afs_dir_remove_subdir(op->dentry);
1389
1390 down_write(&dvnode->validate_lock);
1391 if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags) &&
1392 dvnode->status.data_version == dvp->dv_before + dvp->dv_delta)
1393 afs_edit_dir_remove(dvnode, &op->dentry->d_name,
1394 afs_edit_dir_for_rmdir);
1395 up_write(&dvnode->validate_lock);
1396}
1397
1398static void afs_rmdir_put(struct afs_operation *op)
1399{
1400 _enter("op=%08x", op->debug_id);
1401 if (op->file[1].vnode)
1402 up_write(&op->file[1].vnode->rmdir_lock);
1403}
1404
1405static const struct afs_operation_ops afs_rmdir_operation = {
1406 .issue_afs_rpc = afs_fs_remove_dir,
1407 .issue_yfs_rpc = yfs_fs_remove_dir,
1408 .success = afs_rmdir_success,
David Howells728279a2020-06-16 00:34:09 +01001409 .aborted = afs_check_for_remote_deletion,
David Howellse49c7b22020-04-10 20:51:51 +01001410 .edit_dir = afs_rmdir_edit_dir,
1411 .put = afs_rmdir_put,
1412};
1413
David Howells260a9802007-04-26 15:59:35 -07001414/*
David Howellsd2ddc772017-11-02 15:27:50 +00001415 * remove a directory from an AFS filesystem
David Howells260a9802007-04-26 15:59:35 -07001416 */
David Howellsd2ddc772017-11-02 15:27:50 +00001417static int afs_rmdir(struct inode *dir, struct dentry *dentry)
David Howells260a9802007-04-26 15:59:35 -07001418{
David Howellse49c7b22020-04-10 20:51:51 +01001419 struct afs_operation *op;
David Howellsf58db832018-10-20 00:57:58 +01001420 struct afs_vnode *dvnode = AFS_FS_I(dir), *vnode = NULL;
David Howells260a9802007-04-26 15:59:35 -07001421 int ret;
1422
David Howells3b6492d2018-10-20 00:57:57 +01001423 _enter("{%llx:%llu},{%pd}",
Al Viroa4555892014-10-21 20:11:25 -04001424 dvnode->fid.vid, dvnode->fid.vnode, dentry);
David Howells260a9802007-04-26 15:59:35 -07001425
David Howellse49c7b22020-04-10 20:51:51 +01001426 op = afs_alloc_operation(NULL, dvnode->volume);
1427 if (IS_ERR(op))
1428 return PTR_ERR(op);
David Howellsa58823a2019-05-09 15:16:10 +01001429
David Howellse49c7b22020-04-10 20:51:51 +01001430 afs_op_set_vnode(op, 0, dvnode);
1431 op->file[0].dv_delta = 1;
David Howells22650f12021-04-30 13:47:08 +01001432 op->file[0].modification = true;
David Howellsda8d0752020-06-13 19:34:59 +01001433 op->file[0].update_ctime = true;
David Howellse49c7b22020-04-10 20:51:51 +01001434
1435 op->dentry = dentry;
1436 op->ops = &afs_rmdir_operation;
David Howells260a9802007-04-26 15:59:35 -07001437
David Howellsf58db832018-10-20 00:57:58 +01001438 /* Try to make sure we have a callback promise on the victim. */
1439 if (d_really_is_positive(dentry)) {
1440 vnode = AFS_FS_I(d_inode(dentry));
David Howellse49c7b22020-04-10 20:51:51 +01001441 ret = afs_validate(vnode, op->key);
David Howellsf58db832018-10-20 00:57:58 +01001442 if (ret < 0)
David Howellse49c7b22020-04-10 20:51:51 +01001443 goto error;
David Howellsf58db832018-10-20 00:57:58 +01001444 }
1445
David Howells79ddbfa2019-04-25 14:26:51 +01001446 if (vnode) {
1447 ret = down_write_killable(&vnode->rmdir_lock);
1448 if (ret < 0)
David Howellse49c7b22020-04-10 20:51:51 +01001449 goto error;
1450 op->file[1].vnode = vnode;
David Howells79ddbfa2019-04-25 14:26:51 +01001451 }
1452
David Howellse49c7b22020-04-10 20:51:51 +01001453 return afs_do_sync_operation(op);
David Howellsa58823a2019-05-09 15:16:10 +01001454
David Howellsd2ddc772017-11-02 15:27:50 +00001455error:
David Howellse49c7b22020-04-10 20:51:51 +01001456 return afs_put_operation(op);
David Howellsd2ddc772017-11-02 15:27:50 +00001457}
David Howells260a9802007-04-26 15:59:35 -07001458
David Howellsd2ddc772017-11-02 15:27:50 +00001459/*
1460 * Remove a link to a file or symlink from a directory.
1461 *
1462 * If the file was not deleted due to excess hard links, the fileserver will
1463 * break the callback promise on the file - if it had one - before it returns
1464 * to us, and if it was deleted, it won't
1465 *
1466 * However, if we didn't have a callback promise outstanding, or it was
1467 * outstanding on a different server, then it won't break it either...
1468 */
David Howellse49c7b22020-04-10 20:51:51 +01001469static void afs_dir_remove_link(struct afs_operation *op)
David Howellsd2ddc772017-11-02 15:27:50 +00001470{
David Howellse49c7b22020-04-10 20:51:51 +01001471 struct afs_vnode *dvnode = op->file[0].vnode;
1472 struct afs_vnode *vnode = op->file[1].vnode;
1473 struct dentry *dentry = op->dentry;
1474 int ret;
David Howellsd2ddc772017-11-02 15:27:50 +00001475
David Howellse49c7b22020-04-10 20:51:51 +01001476 if (op->error != 0 ||
1477 (op->file[1].scb.have_status && op->file[1].scb.have_error))
1478 return;
1479 if (d_really_is_positive(dentry))
1480 return;
David Howellsd2ddc772017-11-02 15:27:50 +00001481
David Howellse49c7b22020-04-10 20:51:51 +01001482 if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
1483 /* Already done */
1484 } else if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags)) {
1485 write_seqlock(&vnode->cb_lock);
1486 drop_nlink(&vnode->vfs_inode);
1487 if (vnode->vfs_inode.i_nlink == 0) {
1488 set_bit(AFS_VNODE_DELETED, &vnode->flags);
1489 __afs_break_callback(vnode, afs_cb_break_for_unlink);
David Howells440fbc32018-01-02 10:02:19 +00001490 }
David Howellse49c7b22020-04-10 20:51:51 +01001491 write_sequnlock(&vnode->cb_lock);
1492 } else {
1493 afs_break_callback(vnode, afs_cb_break_for_unlink);
1494
1495 if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
1496 _debug("AFS_VNODE_DELETED");
1497
1498 ret = afs_validate(vnode, op->key);
1499 if (ret != -ESTALE)
1500 op->error = ret;
David Howellsd2ddc772017-11-02 15:27:50 +00001501 }
1502
David Howellse49c7b22020-04-10 20:51:51 +01001503 _debug("nlink %d [val %d]", vnode->vfs_inode.i_nlink, op->error);
David Howellsd2ddc772017-11-02 15:27:50 +00001504}
1505
David Howellse49c7b22020-04-10 20:51:51 +01001506static void afs_unlink_success(struct afs_operation *op)
1507{
1508 _enter("op=%08x", op->debug_id);
David Howellsda8d0752020-06-13 19:34:59 +01001509 op->ctime = op->file[0].scb.status.mtime_client;
David Howellsb6489a42020-06-15 17:36:58 +01001510 afs_check_dir_conflict(op, &op->file[0]);
David Howellse49c7b22020-04-10 20:51:51 +01001511 afs_vnode_commit_status(op, &op->file[0]);
1512 afs_vnode_commit_status(op, &op->file[1]);
1513 afs_update_dentry_version(op, &op->file[0], op->dentry);
1514 afs_dir_remove_link(op);
1515}
1516
1517static void afs_unlink_edit_dir(struct afs_operation *op)
1518{
1519 struct afs_vnode_param *dvp = &op->file[0];
1520 struct afs_vnode *dvnode = dvp->vnode;
1521
1522 _enter("op=%08x", op->debug_id);
1523 down_write(&dvnode->validate_lock);
1524 if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags) &&
1525 dvnode->status.data_version == dvp->dv_before + dvp->dv_delta)
1526 afs_edit_dir_remove(dvnode, &op->dentry->d_name,
1527 afs_edit_dir_for_unlink);
1528 up_write(&dvnode->validate_lock);
1529}
1530
1531static void afs_unlink_put(struct afs_operation *op)
1532{
1533 _enter("op=%08x", op->debug_id);
1534 if (op->unlink.need_rehash && op->error < 0 && op->error != -ENOENT)
1535 d_rehash(op->dentry);
1536}
1537
1538static const struct afs_operation_ops afs_unlink_operation = {
1539 .issue_afs_rpc = afs_fs_remove_file,
1540 .issue_yfs_rpc = yfs_fs_remove_file,
1541 .success = afs_unlink_success,
David Howells728279a2020-06-16 00:34:09 +01001542 .aborted = afs_check_for_remote_deletion,
David Howellse49c7b22020-04-10 20:51:51 +01001543 .edit_dir = afs_unlink_edit_dir,
1544 .put = afs_unlink_put,
1545};
1546
David Howellsd2ddc772017-11-02 15:27:50 +00001547/*
1548 * Remove a file or symlink from an AFS filesystem.
1549 */
1550static int afs_unlink(struct inode *dir, struct dentry *dentry)
1551{
David Howellse49c7b22020-04-10 20:51:51 +01001552 struct afs_operation *op;
David Howellsfa59f522019-06-20 18:12:16 +01001553 struct afs_vnode *dvnode = AFS_FS_I(dir);
1554 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
David Howellsd2ddc772017-11-02 15:27:50 +00001555 int ret;
1556
David Howells3b6492d2018-10-20 00:57:57 +01001557 _enter("{%llx:%llu},{%pd}",
David Howellsd2ddc772017-11-02 15:27:50 +00001558 dvnode->fid.vid, dvnode->fid.vnode, dentry);
1559
1560 if (dentry->d_name.len >= AFSNAMEMAX)
1561 return -ENAMETOOLONG;
1562
David Howellse49c7b22020-04-10 20:51:51 +01001563 op = afs_alloc_operation(NULL, dvnode->volume);
1564 if (IS_ERR(op))
1565 return PTR_ERR(op);
David Howellsa58823a2019-05-09 15:16:10 +01001566
David Howellse49c7b22020-04-10 20:51:51 +01001567 afs_op_set_vnode(op, 0, dvnode);
1568 op->file[0].dv_delta = 1;
David Howells22650f12021-04-30 13:47:08 +01001569 op->file[0].modification = true;
David Howellsda8d0752020-06-13 19:34:59 +01001570 op->file[0].update_ctime = true;
David Howellsd2ddc772017-11-02 15:27:50 +00001571
1572 /* Try to make sure we have a callback promise on the victim. */
David Howellse49c7b22020-04-10 20:51:51 +01001573 ret = afs_validate(vnode, op->key);
1574 if (ret < 0) {
1575 op->error = ret;
1576 goto error;
1577 }
David Howellsd2ddc772017-11-02 15:27:50 +00001578
David Howells79ddbfa2019-04-25 14:26:51 +01001579 spin_lock(&dentry->d_lock);
David Howellsfa59f522019-06-20 18:12:16 +01001580 if (d_count(dentry) > 1) {
David Howells79ddbfa2019-04-25 14:26:51 +01001581 spin_unlock(&dentry->d_lock);
1582 /* Start asynchronous writeout of the inode */
1583 write_inode_now(d_inode(dentry), 0);
David Howellse49c7b22020-04-10 20:51:51 +01001584 op->error = afs_sillyrename(dvnode, vnode, dentry, op->key);
1585 goto error;
David Howells79ddbfa2019-04-25 14:26:51 +01001586 }
1587 if (!d_unhashed(dentry)) {
1588 /* Prevent a race with RCU lookup. */
1589 __d_drop(dentry);
David Howellse49c7b22020-04-10 20:51:51 +01001590 op->unlink.need_rehash = true;
David Howells79ddbfa2019-04-25 14:26:51 +01001591 }
1592 spin_unlock(&dentry->d_lock);
1593
David Howellse49c7b22020-04-10 20:51:51 +01001594 op->file[1].vnode = vnode;
David Howellsda8d0752020-06-13 19:34:59 +01001595 op->file[1].update_ctime = true;
David Howellsb6489a42020-06-15 17:36:58 +01001596 op->file[1].op_unlinked = true;
David Howellse49c7b22020-04-10 20:51:51 +01001597 op->dentry = dentry;
1598 op->ops = &afs_unlink_operation;
David Howellsb6489a42020-06-15 17:36:58 +01001599 afs_begin_vnode_operation(op);
1600 afs_wait_for_operation(op);
1601
1602 /* If there was a conflict with a third party, check the status of the
1603 * unlinked vnode.
1604 */
1605 if (op->error == 0 && (op->flags & AFS_OPERATION_DIR_CONFLICT)) {
1606 op->file[1].update_ctime = false;
1607 op->fetch_status.which = 1;
1608 op->ops = &afs_fetch_status_operation;
1609 afs_begin_vnode_operation(op);
1610 afs_wait_for_operation(op);
1611 }
1612
1613 return afs_put_operation(op);
David Howellsa58823a2019-05-09 15:16:10 +01001614
David Howells260a9802007-04-26 15:59:35 -07001615error:
David Howellse49c7b22020-04-10 20:51:51 +01001616 return afs_put_operation(op);
David Howells260a9802007-04-26 15:59:35 -07001617}
1618
David Howellse49c7b22020-04-10 20:51:51 +01001619static const struct afs_operation_ops afs_create_operation = {
1620 .issue_afs_rpc = afs_fs_create_file,
1621 .issue_yfs_rpc = yfs_fs_create_file,
1622 .success = afs_create_success,
David Howells728279a2020-06-16 00:34:09 +01001623 .aborted = afs_check_for_remote_deletion,
David Howellse49c7b22020-04-10 20:51:51 +01001624 .edit_dir = afs_create_edit_dir,
1625 .put = afs_create_put,
1626};
1627
David Howells260a9802007-04-26 15:59:35 -07001628/*
1629 * create a regular file on an AFS filesystem
1630 */
Christian Brauner549c7292021-01-21 14:19:43 +01001631static int afs_create(struct user_namespace *mnt_userns, struct inode *dir,
1632 struct dentry *dentry, umode_t mode, bool excl)
David Howells260a9802007-04-26 15:59:35 -07001633{
David Howellse49c7b22020-04-10 20:51:51 +01001634 struct afs_operation *op;
Colin Ian King43dd3882017-11-20 13:58:20 +00001635 struct afs_vnode *dvnode = AFS_FS_I(dir);
David Howellse49c7b22020-04-10 20:51:51 +01001636 int ret = -ENAMETOOLONG;
David Howells260a9802007-04-26 15:59:35 -07001637
David Howellse49c7b22020-04-10 20:51:51 +01001638 _enter("{%llx:%llu},{%pd},%ho",
Al Viroa4555892014-10-21 20:11:25 -04001639 dvnode->fid.vid, dvnode->fid.vnode, dentry, mode);
David Howells260a9802007-04-26 15:59:35 -07001640
David Howellsd2ddc772017-11-02 15:27:50 +00001641 if (dentry->d_name.len >= AFSNAMEMAX)
1642 goto error;
1643
David Howellse49c7b22020-04-10 20:51:51 +01001644 op = afs_alloc_operation(NULL, dvnode->volume);
1645 if (IS_ERR(op)) {
1646 ret = PTR_ERR(op);
David Howells260a9802007-04-26 15:59:35 -07001647 goto error;
1648 }
1649
David Howellse49c7b22020-04-10 20:51:51 +01001650 afs_op_set_vnode(op, 0, dvnode);
1651 op->file[0].dv_delta = 1;
David Howells22650f12021-04-30 13:47:08 +01001652 op->file[0].modification = true;
David Howellsda8d0752020-06-13 19:34:59 +01001653 op->file[0].update_ctime = true;
David Howellsa58823a2019-05-09 15:16:10 +01001654
David Howellse49c7b22020-04-10 20:51:51 +01001655 op->dentry = dentry;
1656 op->create.mode = S_IFREG | mode;
1657 op->create.reason = afs_edit_dir_for_create;
1658 op->ops = &afs_create_operation;
1659 return afs_do_sync_operation(op);
David Howellsa58823a2019-05-09 15:16:10 +01001660
David Howells260a9802007-04-26 15:59:35 -07001661error:
1662 d_drop(dentry);
1663 _leave(" = %d", ret);
1664 return ret;
1665}
1666
David Howellse49c7b22020-04-10 20:51:51 +01001667static void afs_link_success(struct afs_operation *op)
1668{
1669 struct afs_vnode_param *dvp = &op->file[0];
1670 struct afs_vnode_param *vp = &op->file[1];
1671
1672 _enter("op=%08x", op->debug_id);
David Howellsda8d0752020-06-13 19:34:59 +01001673 op->ctime = dvp->scb.status.mtime_client;
David Howellse49c7b22020-04-10 20:51:51 +01001674 afs_vnode_commit_status(op, dvp);
1675 afs_vnode_commit_status(op, vp);
1676 afs_update_dentry_version(op, dvp, op->dentry);
1677 if (op->dentry_2->d_parent == op->dentry->d_parent)
1678 afs_update_dentry_version(op, dvp, op->dentry_2);
1679 ihold(&vp->vnode->vfs_inode);
1680 d_instantiate(op->dentry, &vp->vnode->vfs_inode);
1681}
1682
1683static void afs_link_put(struct afs_operation *op)
1684{
1685 _enter("op=%08x", op->debug_id);
1686 if (op->error)
1687 d_drop(op->dentry);
1688}
1689
1690static const struct afs_operation_ops afs_link_operation = {
1691 .issue_afs_rpc = afs_fs_link,
1692 .issue_yfs_rpc = yfs_fs_link,
1693 .success = afs_link_success,
David Howells728279a2020-06-16 00:34:09 +01001694 .aborted = afs_check_for_remote_deletion,
David Howellse49c7b22020-04-10 20:51:51 +01001695 .edit_dir = afs_create_edit_dir,
1696 .put = afs_link_put,
1697};
1698
David Howells260a9802007-04-26 15:59:35 -07001699/*
1700 * create a hard link between files in an AFS filesystem
1701 */
1702static int afs_link(struct dentry *from, struct inode *dir,
1703 struct dentry *dentry)
1704{
David Howellse49c7b22020-04-10 20:51:51 +01001705 struct afs_operation *op;
David Howellsa58823a2019-05-09 15:16:10 +01001706 struct afs_vnode *dvnode = AFS_FS_I(dir);
1707 struct afs_vnode *vnode = AFS_FS_I(d_inode(from));
David Howellse49c7b22020-04-10 20:51:51 +01001708 int ret = -ENAMETOOLONG;
David Howells260a9802007-04-26 15:59:35 -07001709
David Howells3b6492d2018-10-20 00:57:57 +01001710 _enter("{%llx:%llu},{%llx:%llu},{%pd}",
David Howells260a9802007-04-26 15:59:35 -07001711 vnode->fid.vid, vnode->fid.vnode,
1712 dvnode->fid.vid, dvnode->fid.vnode,
Al Viroa4555892014-10-21 20:11:25 -04001713 dentry);
David Howells260a9802007-04-26 15:59:35 -07001714
David Howellsd2ddc772017-11-02 15:27:50 +00001715 if (dentry->d_name.len >= AFSNAMEMAX)
1716 goto error;
1717
David Howellse49c7b22020-04-10 20:51:51 +01001718 op = afs_alloc_operation(NULL, dvnode->volume);
1719 if (IS_ERR(op)) {
1720 ret = PTR_ERR(op);
David Howellsa58823a2019-05-09 15:16:10 +01001721 goto error;
David Howells260a9802007-04-26 15:59:35 -07001722 }
1723
David Howells3978d812021-09-01 19:22:50 +01001724 ret = afs_validate(vnode, op->key);
1725 if (ret < 0)
1726 goto error_op;
1727
David Howellse49c7b22020-04-10 20:51:51 +01001728 afs_op_set_vnode(op, 0, dvnode);
1729 afs_op_set_vnode(op, 1, vnode);
1730 op->file[0].dv_delta = 1;
David Howells22650f12021-04-30 13:47:08 +01001731 op->file[0].modification = true;
David Howellsda8d0752020-06-13 19:34:59 +01001732 op->file[0].update_ctime = true;
1733 op->file[1].update_ctime = true;
David Howellsa58823a2019-05-09 15:16:10 +01001734
David Howellse49c7b22020-04-10 20:51:51 +01001735 op->dentry = dentry;
1736 op->dentry_2 = from;
1737 op->ops = &afs_link_operation;
1738 op->create.reason = afs_edit_dir_for_link;
1739 return afs_do_sync_operation(op);
David Howells260a9802007-04-26 15:59:35 -07001740
David Howells3978d812021-09-01 19:22:50 +01001741error_op:
1742 afs_put_operation(op);
David Howells260a9802007-04-26 15:59:35 -07001743error:
1744 d_drop(dentry);
1745 _leave(" = %d", ret);
1746 return ret;
1747}
1748
David Howellse49c7b22020-04-10 20:51:51 +01001749static const struct afs_operation_ops afs_symlink_operation = {
1750 .issue_afs_rpc = afs_fs_symlink,
1751 .issue_yfs_rpc = yfs_fs_symlink,
1752 .success = afs_create_success,
David Howells728279a2020-06-16 00:34:09 +01001753 .aborted = afs_check_for_remote_deletion,
David Howellse49c7b22020-04-10 20:51:51 +01001754 .edit_dir = afs_create_edit_dir,
1755 .put = afs_create_put,
1756};
1757
David Howells260a9802007-04-26 15:59:35 -07001758/*
1759 * create a symlink in an AFS filesystem
1760 */
Christian Brauner549c7292021-01-21 14:19:43 +01001761static int afs_symlink(struct user_namespace *mnt_userns, struct inode *dir,
1762 struct dentry *dentry, const char *content)
David Howells260a9802007-04-26 15:59:35 -07001763{
David Howellse49c7b22020-04-10 20:51:51 +01001764 struct afs_operation *op;
David Howellsd2ddc772017-11-02 15:27:50 +00001765 struct afs_vnode *dvnode = AFS_FS_I(dir);
David Howells260a9802007-04-26 15:59:35 -07001766 int ret;
1767
David Howells3b6492d2018-10-20 00:57:57 +01001768 _enter("{%llx:%llu},{%pd},%s",
Al Viroa4555892014-10-21 20:11:25 -04001769 dvnode->fid.vid, dvnode->fid.vnode, dentry,
David Howells260a9802007-04-26 15:59:35 -07001770 content);
1771
David Howellsd2ddc772017-11-02 15:27:50 +00001772 ret = -ENAMETOOLONG;
1773 if (dentry->d_name.len >= AFSNAMEMAX)
1774 goto error;
1775
David Howells260a9802007-04-26 15:59:35 -07001776 ret = -EINVAL;
David Howells45222b92007-05-10 22:22:20 -07001777 if (strlen(content) >= AFSPATHMAX)
David Howells260a9802007-04-26 15:59:35 -07001778 goto error;
1779
David Howellse49c7b22020-04-10 20:51:51 +01001780 op = afs_alloc_operation(NULL, dvnode->volume);
1781 if (IS_ERR(op)) {
1782 ret = PTR_ERR(op);
David Howellsa58823a2019-05-09 15:16:10 +01001783 goto error;
David Howells260a9802007-04-26 15:59:35 -07001784 }
1785
David Howellse49c7b22020-04-10 20:51:51 +01001786 afs_op_set_vnode(op, 0, dvnode);
1787 op->file[0].dv_delta = 1;
David Howellsa58823a2019-05-09 15:16:10 +01001788
David Howellse49c7b22020-04-10 20:51:51 +01001789 op->dentry = dentry;
1790 op->ops = &afs_symlink_operation;
1791 op->create.reason = afs_edit_dir_for_symlink;
1792 op->create.symlink = content;
1793 return afs_do_sync_operation(op);
David Howells260a9802007-04-26 15:59:35 -07001794
David Howells260a9802007-04-26 15:59:35 -07001795error:
1796 d_drop(dentry);
1797 _leave(" = %d", ret);
1798 return ret;
1799}
1800
David Howellse49c7b22020-04-10 20:51:51 +01001801static void afs_rename_success(struct afs_operation *op)
1802{
1803 _enter("op=%08x", op->debug_id);
1804
David Howellsda8d0752020-06-13 19:34:59 +01001805 op->ctime = op->file[0].scb.status.mtime_client;
David Howellsb6489a42020-06-15 17:36:58 +01001806 afs_check_dir_conflict(op, &op->file[1]);
David Howellse49c7b22020-04-10 20:51:51 +01001807 afs_vnode_commit_status(op, &op->file[0]);
David Howellsda8d0752020-06-13 19:34:59 +01001808 if (op->file[1].vnode != op->file[0].vnode) {
1809 op->ctime = op->file[1].scb.status.mtime_client;
David Howellse49c7b22020-04-10 20:51:51 +01001810 afs_vnode_commit_status(op, &op->file[1]);
David Howellsda8d0752020-06-13 19:34:59 +01001811 }
David Howellse49c7b22020-04-10 20:51:51 +01001812}
1813
1814static void afs_rename_edit_dir(struct afs_operation *op)
1815{
1816 struct afs_vnode_param *orig_dvp = &op->file[0];
1817 struct afs_vnode_param *new_dvp = &op->file[1];
1818 struct afs_vnode *orig_dvnode = orig_dvp->vnode;
1819 struct afs_vnode *new_dvnode = new_dvp->vnode;
1820 struct afs_vnode *vnode = AFS_FS_I(d_inode(op->dentry));
1821 struct dentry *old_dentry = op->dentry;
1822 struct dentry *new_dentry = op->dentry_2;
1823 struct inode *new_inode;
1824
1825 _enter("op=%08x", op->debug_id);
1826
1827 if (op->rename.rehash) {
1828 d_rehash(op->rename.rehash);
1829 op->rename.rehash = NULL;
1830 }
1831
1832 down_write(&orig_dvnode->validate_lock);
1833 if (test_bit(AFS_VNODE_DIR_VALID, &orig_dvnode->flags) &&
1834 orig_dvnode->status.data_version == orig_dvp->dv_before + orig_dvp->dv_delta)
1835 afs_edit_dir_remove(orig_dvnode, &old_dentry->d_name,
1836 afs_edit_dir_for_rename_0);
1837
1838 if (new_dvnode != orig_dvnode) {
1839 up_write(&orig_dvnode->validate_lock);
1840 down_write(&new_dvnode->validate_lock);
1841 }
1842
1843 if (test_bit(AFS_VNODE_DIR_VALID, &new_dvnode->flags) &&
1844 new_dvnode->status.data_version == new_dvp->dv_before + new_dvp->dv_delta) {
1845 if (!op->rename.new_negative)
1846 afs_edit_dir_remove(new_dvnode, &new_dentry->d_name,
1847 afs_edit_dir_for_rename_1);
1848
1849 afs_edit_dir_add(new_dvnode, &new_dentry->d_name,
1850 &vnode->fid, afs_edit_dir_for_rename_2);
1851 }
1852
1853 new_inode = d_inode(new_dentry);
1854 if (new_inode) {
1855 spin_lock(&new_inode->i_lock);
David Howellsf610a5a2021-05-27 11:24:33 +01001856 if (S_ISDIR(new_inode->i_mode))
1857 clear_nlink(new_inode);
1858 else if (new_inode->i_nlink > 0)
David Howellse49c7b22020-04-10 20:51:51 +01001859 drop_nlink(new_inode);
1860 spin_unlock(&new_inode->i_lock);
1861 }
1862
1863 /* Now we can update d_fsdata on the dentries to reflect their
1864 * new parent's data_version.
1865 *
1866 * Note that if we ever implement RENAME_EXCHANGE, we'll have
1867 * to update both dentries with opposing dir versions.
1868 */
1869 afs_update_dentry_version(op, new_dvp, op->dentry);
1870 afs_update_dentry_version(op, new_dvp, op->dentry_2);
1871
1872 d_move(old_dentry, new_dentry);
1873
1874 up_write(&new_dvnode->validate_lock);
1875}
1876
1877static void afs_rename_put(struct afs_operation *op)
1878{
1879 _enter("op=%08x", op->debug_id);
1880 if (op->rename.rehash)
1881 d_rehash(op->rename.rehash);
1882 dput(op->rename.tmp);
1883 if (op->error)
1884 d_rehash(op->dentry);
1885}
1886
1887static const struct afs_operation_ops afs_rename_operation = {
1888 .issue_afs_rpc = afs_fs_rename,
1889 .issue_yfs_rpc = yfs_fs_rename,
1890 .success = afs_rename_success,
1891 .edit_dir = afs_rename_edit_dir,
1892 .put = afs_rename_put,
1893};
1894
David Howells260a9802007-04-26 15:59:35 -07001895/*
1896 * rename a file in an AFS filesystem and/or move it between directories
1897 */
Christian Brauner549c7292021-01-21 14:19:43 +01001898static int afs_rename(struct user_namespace *mnt_userns, struct inode *old_dir,
1899 struct dentry *old_dentry, struct inode *new_dir,
1900 struct dentry *new_dentry, unsigned int flags)
David Howells260a9802007-04-26 15:59:35 -07001901{
David Howellse49c7b22020-04-10 20:51:51 +01001902 struct afs_operation *op;
David Howells260a9802007-04-26 15:59:35 -07001903 struct afs_vnode *orig_dvnode, *new_dvnode, *vnode;
David Howells260a9802007-04-26 15:59:35 -07001904 int ret;
1905
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02001906 if (flags)
1907 return -EINVAL;
1908
David Howells79ddbfa2019-04-25 14:26:51 +01001909 /* Don't allow silly-rename files be moved around. */
1910 if (old_dentry->d_flags & DCACHE_NFSFS_RENAMED)
1911 return -EINVAL;
1912
David Howells2b0143b2015-03-17 22:25:59 +00001913 vnode = AFS_FS_I(d_inode(old_dentry));
David Howells260a9802007-04-26 15:59:35 -07001914 orig_dvnode = AFS_FS_I(old_dir);
1915 new_dvnode = AFS_FS_I(new_dir);
1916
David Howells3b6492d2018-10-20 00:57:57 +01001917 _enter("{%llx:%llu},{%llx:%llu},{%llx:%llu},{%pd}",
David Howells260a9802007-04-26 15:59:35 -07001918 orig_dvnode->fid.vid, orig_dvnode->fid.vnode,
1919 vnode->fid.vid, vnode->fid.vnode,
1920 new_dvnode->fid.vid, new_dvnode->fid.vnode,
Al Viroa4555892014-10-21 20:11:25 -04001921 new_dentry);
David Howells260a9802007-04-26 15:59:35 -07001922
David Howellse49c7b22020-04-10 20:51:51 +01001923 op = afs_alloc_operation(NULL, orig_dvnode->volume);
1924 if (IS_ERR(op))
1925 return PTR_ERR(op);
David Howellsa58823a2019-05-09 15:16:10 +01001926
David Howells3978d812021-09-01 19:22:50 +01001927 ret = afs_validate(vnode, op->key);
1928 op->error = ret;
1929 if (ret < 0)
1930 goto error;
1931
David Howellse49c7b22020-04-10 20:51:51 +01001932 afs_op_set_vnode(op, 0, orig_dvnode);
1933 afs_op_set_vnode(op, 1, new_dvnode); /* May be same as orig_dvnode */
1934 op->file[0].dv_delta = 1;
1935 op->file[1].dv_delta = 1;
David Howells22650f12021-04-30 13:47:08 +01001936 op->file[0].modification = true;
1937 op->file[1].modification = true;
David Howellsda8d0752020-06-13 19:34:59 +01001938 op->file[0].update_ctime = true;
1939 op->file[1].update_ctime = true;
David Howellse49c7b22020-04-10 20:51:51 +01001940
1941 op->dentry = old_dentry;
1942 op->dentry_2 = new_dentry;
1943 op->rename.new_negative = d_is_negative(new_dentry);
1944 op->ops = &afs_rename_operation;
David Howells260a9802007-04-26 15:59:35 -07001945
David Howells79ddbfa2019-04-25 14:26:51 +01001946 /* For non-directories, check whether the target is busy and if so,
1947 * make a copy of the dentry and then do a silly-rename. If the
1948 * silly-rename succeeds, the copied dentry is hashed and becomes the
1949 * new target.
1950 */
1951 if (d_is_positive(new_dentry) && !d_is_dir(new_dentry)) {
1952 /* To prevent any new references to the target during the
1953 * rename, we unhash the dentry in advance.
1954 */
1955 if (!d_unhashed(new_dentry)) {
1956 d_drop(new_dentry);
David Howellse49c7b22020-04-10 20:51:51 +01001957 op->rename.rehash = new_dentry;
David Howells79ddbfa2019-04-25 14:26:51 +01001958 }
1959
1960 if (d_count(new_dentry) > 2) {
1961 /* copy the target dentry's name */
David Howellse49c7b22020-04-10 20:51:51 +01001962 op->rename.tmp = d_alloc(new_dentry->d_parent,
1963 &new_dentry->d_name);
Jiapeng Chongb4280812021-04-29 18:18:12 +08001964 if (!op->rename.tmp) {
1965 op->error = -ENOMEM;
David Howellse49c7b22020-04-10 20:51:51 +01001966 goto error;
Jiapeng Chongb4280812021-04-29 18:18:12 +08001967 }
David Howells79ddbfa2019-04-25 14:26:51 +01001968
1969 ret = afs_sillyrename(new_dvnode,
1970 AFS_FS_I(d_inode(new_dentry)),
David Howellse49c7b22020-04-10 20:51:51 +01001971 new_dentry, op->key);
Jiapeng Chongb4280812021-04-29 18:18:12 +08001972 if (ret) {
1973 op->error = ret;
David Howellse49c7b22020-04-10 20:51:51 +01001974 goto error;
Jiapeng Chongb4280812021-04-29 18:18:12 +08001975 }
David Howells79ddbfa2019-04-25 14:26:51 +01001976
David Howellse49c7b22020-04-10 20:51:51 +01001977 op->dentry_2 = op->rename.tmp;
1978 op->rename.rehash = NULL;
1979 op->rename.new_negative = true;
David Howells79ddbfa2019-04-25 14:26:51 +01001980 }
1981 }
1982
David Howells9dd0b822019-07-30 14:38:52 +01001983 /* This bit is potentially nasty as there's a potential race with
1984 * afs_d_revalidate{,_rcu}(). We have to change d_fsdata on the dentry
1985 * to reflect it's new parent's new data_version after the op, but
1986 * d_revalidate may see old_dentry between the op having taken place
1987 * and the version being updated.
1988 *
1989 * So drop the old_dentry for now to make other threads go through
1990 * lookup instead - which we hold a lock against.
1991 */
1992 d_drop(old_dentry);
1993
David Howellse49c7b22020-04-10 20:51:51 +01001994 return afs_do_sync_operation(op);
David Howellsa58823a2019-05-09 15:16:10 +01001995
David Howells260a9802007-04-26 15:59:35 -07001996error:
David Howellse49c7b22020-04-10 20:51:51 +01001997 return afs_put_operation(op);
David Howells260a9802007-04-26 15:59:35 -07001998}
David Howellsf3ddee82018-04-06 14:17:25 +01001999
2000/*
David Howells255ed632021-08-11 14:22:11 +01002001 * Release a directory folio and clean up its private state if it's not busy
2002 * - return true if the folio can now be released, false if not
David Howellsf3ddee82018-04-06 14:17:25 +01002003 */
David Howells255ed632021-08-11 14:22:11 +01002004static int afs_dir_releasepage(struct page *subpage, gfp_t gfp_flags)
David Howellsf3ddee82018-04-06 14:17:25 +01002005{
David Howells255ed632021-08-11 14:22:11 +01002006 struct folio *folio = page_folio(subpage);
2007 struct afs_vnode *dvnode = AFS_FS_I(folio_inode(folio));
David Howellsf3ddee82018-04-06 14:17:25 +01002008
David Howells255ed632021-08-11 14:22:11 +01002009 _enter("{{%llx:%llu}[%lu]}", dvnode->fid.vid, dvnode->fid.vnode, folio_index(folio));
David Howellsf3ddee82018-04-06 14:17:25 +01002010
David Howells255ed632021-08-11 14:22:11 +01002011 folio_detach_private(folio);
David Howellsf3ddee82018-04-06 14:17:25 +01002012
2013 /* The directory will need reloading. */
2014 if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
2015 afs_stat_v(dvnode, n_relpg);
David Howells255ed632021-08-11 14:22:11 +01002016 return true;
David Howellsf3ddee82018-04-06 14:17:25 +01002017}
2018
2019/*
David Howells255ed632021-08-11 14:22:11 +01002020 * Invalidate part or all of a folio.
David Howellsf3ddee82018-04-06 14:17:25 +01002021 */
David Howells255ed632021-08-11 14:22:11 +01002022static void afs_dir_invalidatepage(struct page *subpage, unsigned int offset,
David Howellsf3ddee82018-04-06 14:17:25 +01002023 unsigned int length)
2024{
David Howells255ed632021-08-11 14:22:11 +01002025 struct folio *folio = page_folio(subpage);
2026 struct afs_vnode *dvnode = AFS_FS_I(folio_inode(folio));
David Howellsf3ddee82018-04-06 14:17:25 +01002027
David Howells255ed632021-08-11 14:22:11 +01002028 _enter("{%lu},%u,%u", folio_index(folio), offset, length);
David Howellsf3ddee82018-04-06 14:17:25 +01002029
David Howells255ed632021-08-11 14:22:11 +01002030 BUG_ON(!folio_test_locked(folio));
David Howellsf3ddee82018-04-06 14:17:25 +01002031
2032 /* The directory will need reloading. */
2033 if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
2034 afs_stat_v(dvnode, n_inval);
2035
David Howells255ed632021-08-11 14:22:11 +01002036 /* we clean up only if the entire folio is being invalidated */
2037 if (offset == 0 && length == folio_size(folio))
2038 folio_detach_private(folio);
David Howellsf3ddee82018-04-06 14:17:25 +01002039}