blob: 96757f3abd74d4eb4ec3298e42da3c1d820ef183 [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);
Al Viro4acdaf22011-07-26 01:42:34 -040031static int afs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -040032 bool excl);
Al Viro18bb1db2011-07-26 01:41:39 -040033static int afs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
David Howells260a9802007-04-26 15:59:35 -070034static int afs_rmdir(struct inode *dir, struct dentry *dentry);
35static int afs_unlink(struct inode *dir, struct dentry *dentry);
36static int afs_link(struct dentry *from, struct inode *dir,
37 struct dentry *dentry);
38static int afs_symlink(struct inode *dir, struct dentry *dentry,
39 const char *content);
40static int afs_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredi1cd66c92016-09-27 11:03:58 +020041 struct inode *new_dir, struct dentry *new_dentry,
42 unsigned int flags);
David Howellsf3ddee82018-04-06 14:17:25 +010043static int afs_dir_releasepage(struct page *page, gfp_t gfp_flags);
44static void afs_dir_invalidatepage(struct page *page, unsigned int offset,
45 unsigned int length);
46
47static int afs_dir_set_page_dirty(struct page *page)
48{
49 BUG(); /* This should never happen. */
50}
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080052const struct file_operations afs_dir_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 .open = afs_dir_open,
David Howells00d3b7a2007-04-26 15:57:07 -070054 .release = afs_release,
Al Viro29884ef2016-05-10 14:27:44 -040055 .iterate_shared = afs_readdir,
David Howellse8d6c552007-07-15 23:40:12 -070056 .lock = afs_lock,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +020057 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070058};
59
Arjan van de Ven754661f2007-02-12 00:55:38 -080060const struct inode_operations afs_dir_inode_operations = {
David Howells260a9802007-04-26 15:59:35 -070061 .create = afs_create,
62 .lookup = afs_lookup,
63 .link = afs_link,
64 .unlink = afs_unlink,
65 .symlink = afs_symlink,
66 .mkdir = afs_mkdir,
67 .rmdir = afs_rmdir,
Miklos Szeredi2773bf02016-09-27 11:03:58 +020068 .rename = afs_rename,
David Howells00d3b7a2007-04-26 15:57:07 -070069 .permission = afs_permission,
David Howells416351f2007-05-09 02:33:45 -070070 .getattr = afs_getattr,
David Howells31143d52007-05-09 02:33:46 -070071 .setattr = afs_setattr,
David Howellsd3e3b7ea2017-07-06 15:50:27 +010072 .listxattr = afs_listxattr,
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/*
106 * check that a directory page is valid
107 */
David Howellsf3ddee82018-04-06 14:17:25 +0100108static bool afs_dir_check_page(struct afs_vnode *dvnode, struct page *page,
109 loff_t i_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110{
David Howells00317632018-04-06 14:17:25 +0100111 struct afs_xdr_dir_page *dbuf;
David Howellsf3ddee82018-04-06 14:17:25 +0100112 loff_t latter, off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 int tmp, qty;
114
David Howellsdab17c12017-11-02 15:27:52 +0000115 /* Determine how many magic numbers there should be in this page, but
116 * we must take care because the directory may change size under us.
117 */
118 off = page_offset(page);
David Howellsdab17c12017-11-02 15:27:52 +0000119 if (i_size <= off)
120 goto checked;
121
122 latter = i_size - off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 if (latter >= PAGE_SIZE)
124 qty = PAGE_SIZE;
125 else
126 qty = latter;
David Howells00317632018-04-06 14:17:25 +0100127 qty /= sizeof(union afs_xdr_dir_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128
129 /* check them */
David Howells63a46812018-04-06 14:17:25 +0100130 dbuf = kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 for (tmp = 0; tmp < qty; tmp++) {
David Howells00317632018-04-06 14:17:25 +0100132 if (dbuf->blocks[tmp].hdr.magic != AFS_DIR_MAGIC) {
David Howellsdab17c12017-11-02 15:27:52 +0000133 printk("kAFS: %s(%lx): bad magic %d/%d is %04hx\n",
David Howellsf3ddee82018-04-06 14:17:25 +0100134 __func__, dvnode->vfs_inode.i_ino, tmp, qty,
David Howells00317632018-04-06 14:17:25 +0100135 ntohs(dbuf->blocks[tmp].hdr.magic));
David Howellsf3ddee82018-04-06 14:17:25 +0100136 trace_afs_dir_check_failed(dvnode, off, i_size);
David Howells63a46812018-04-06 14:17:25 +0100137 kunmap(page);
David Howellsf51375c2018-10-20 00:57:57 +0100138 trace_afs_file_error(dvnode, -EIO, afs_file_error_dir_bad_magic);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 goto error;
140 }
David Howells63a46812018-04-06 14:17:25 +0100141
142 /* Make sure each block is NUL terminated so we can reasonably
143 * use string functions on it. The filenames in the page
144 * *should* be NUL-terminated anyway.
145 */
146 ((u8 *)&dbuf->blocks[tmp])[AFS_DIR_BLOCK_SIZE - 1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 }
148
David Howells63a46812018-04-06 14:17:25 +0100149 kunmap(page);
150
David Howellsdab17c12017-11-02 15:27:52 +0000151checked:
David Howellsf3ddee82018-04-06 14:17:25 +0100152 afs_stat_v(dvnode, n_read_dir);
Al Virobe5b82d2016-04-22 15:06:44 -0400153 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
David Howellsec268152007-04-26 15:49:28 -0700155error:
Al Virobe5b82d2016-04-22 15:06:44 -0400156 return false;
David Howellsec268152007-04-26 15:49:28 -0700157}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159/*
David Howells445b1022019-04-25 14:26:51 +0100160 * Check the contents of a directory that we've just read.
161 */
162static bool afs_dir_check_pages(struct afs_vnode *dvnode, struct afs_read *req)
163{
164 struct afs_xdr_dir_page *dbuf;
165 unsigned int i, j, qty = PAGE_SIZE / sizeof(union afs_xdr_dir_block);
166
167 for (i = 0; i < req->nr_pages; i++)
168 if (!afs_dir_check_page(dvnode, req->pages[i], req->actual_len))
169 goto bad;
170 return true;
171
172bad:
173 pr_warn("DIR %llx:%llx f=%llx l=%llx al=%llx r=%llx\n",
174 dvnode->fid.vid, dvnode->fid.vnode,
175 req->file_size, req->len, req->actual_len, req->remain);
176 pr_warn("DIR %llx %x %x %x\n",
177 req->pos, req->index, req->nr_pages, req->offset);
178
179 for (i = 0; i < req->nr_pages; i++) {
180 dbuf = kmap(req->pages[i]);
181 for (j = 0; j < qty; j++) {
182 union afs_xdr_dir_block *block = &dbuf->blocks[j];
183
184 pr_warn("[%02x] %32phN\n", i * qty + j, block);
185 }
186 kunmap(req->pages[i]);
187 }
188 return false;
189}
190
191/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192 * open an AFS directory file
193 */
194static int afs_dir_open(struct inode *inode, struct file *file)
195{
196 _enter("{%lu}", inode->i_ino);
197
David Howells00317632018-04-06 14:17:25 +0100198 BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
199 BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
David Howells08e0e7c2007-04-26 15:55:03 -0700201 if (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(inode)->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 return -ENOENT;
203
David Howells00d3b7a2007-04-26 15:57:07 -0700204 return afs_open(inode, file);
David Howellsec268152007-04-26 15:49:28 -0700205}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/*
David Howellsf3ddee82018-04-06 14:17:25 +0100208 * Read the directory into the pagecache in one go, scrubbing the previous
209 * contents. The list of pages is returned, pinning them so that they don't
210 * get reclaimed during the iteration.
211 */
212static struct afs_read *afs_read_dir(struct afs_vnode *dvnode, struct key *key)
David Howellsb61f7dc2018-04-27 20:46:22 +0100213 __acquires(&dvnode->validate_lock)
David Howellsf3ddee82018-04-06 14:17:25 +0100214{
215 struct afs_read *req;
216 loff_t i_size;
217 int nr_pages, nr_inline, i, n;
218 int ret = -ENOMEM;
219
220retry:
221 i_size = i_size_read(&dvnode->vfs_inode);
222 if (i_size < 2048)
David Howellsf51375c2018-10-20 00:57:57 +0100223 return ERR_PTR(afs_bad(dvnode, afs_file_error_dir_small));
224 if (i_size > 2048 * 1024) {
225 trace_afs_file_error(dvnode, -EFBIG, afs_file_error_dir_big);
David Howellsf3ddee82018-04-06 14:17:25 +0100226 return ERR_PTR(-EFBIG);
David Howellsf51375c2018-10-20 00:57:57 +0100227 }
David Howellsf3ddee82018-04-06 14:17:25 +0100228
229 _enter("%llu", i_size);
230
231 /* Get a request record to hold the page list. We want to hold it
232 * inline if we can, but we don't want to make an order 1 allocation.
233 */
234 nr_pages = (i_size + PAGE_SIZE - 1) / PAGE_SIZE;
235 nr_inline = nr_pages;
236 if (nr_inline > (PAGE_SIZE - sizeof(*req)) / sizeof(struct page *))
237 nr_inline = 0;
238
Zhengyuan Liuee102582019-06-20 18:12:17 +0100239 req = kzalloc(struct_size(req, array, nr_inline), GFP_KERNEL);
David Howellsf3ddee82018-04-06 14:17:25 +0100240 if (!req)
241 return ERR_PTR(-ENOMEM);
242
243 refcount_set(&req->usage, 1);
244 req->nr_pages = nr_pages;
245 req->actual_len = i_size; /* May change */
246 req->len = nr_pages * PAGE_SIZE; /* We can ask for more than there is */
247 req->data_version = dvnode->status.data_version; /* May change */
248 if (nr_inline > 0) {
249 req->pages = req->array;
250 } else {
251 req->pages = kcalloc(nr_pages, sizeof(struct page *),
252 GFP_KERNEL);
253 if (!req->pages)
254 goto error;
255 }
256
257 /* Get a list of all the pages that hold or will hold the directory
258 * content. We need to fill in any gaps that we might find where the
259 * memory reclaimer has been at work. If there are any gaps, we will
260 * need to reread the entire directory contents.
261 */
262 i = 0;
263 do {
264 n = find_get_pages_contig(dvnode->vfs_inode.i_mapping, i,
265 req->nr_pages - i,
266 req->pages + i);
267 _debug("find %u at %u/%u", n, i, req->nr_pages);
268 if (n == 0) {
269 gfp_t gfp = dvnode->vfs_inode.i_mapping->gfp_mask;
270
271 if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
272 afs_stat_v(dvnode, n_inval);
273
274 ret = -ENOMEM;
275 req->pages[i] = __page_cache_alloc(gfp);
276 if (!req->pages[i])
277 goto error;
278 ret = add_to_page_cache_lru(req->pages[i],
279 dvnode->vfs_inode.i_mapping,
280 i, gfp);
281 if (ret < 0)
282 goto error;
283
284 set_page_private(req->pages[i], 1);
285 SetPagePrivate(req->pages[i]);
286 unlock_page(req->pages[i]);
287 i++;
288 } else {
289 i += n;
290 }
291 } while (i < req->nr_pages);
292
293 /* If we're going to reload, we need to lock all the pages to prevent
294 * races.
295 */
David Howellsb61f7dc2018-04-27 20:46:22 +0100296 ret = -ERESTARTSYS;
297 if (down_read_killable(&dvnode->validate_lock) < 0)
298 goto error;
299
300 if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
301 goto success;
302
303 up_read(&dvnode->validate_lock);
304 if (down_write_killable(&dvnode->validate_lock) < 0)
305 goto error;
306
David Howellsf3ddee82018-04-06 14:17:25 +0100307 if (!test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags)) {
David Howells99987c562019-04-25 14:26:51 +0100308 trace_afs_reload_dir(dvnode);
David Howellsf3ddee82018-04-06 14:17:25 +0100309 ret = afs_fetch_data(dvnode, key, req);
310 if (ret < 0)
David Howellsb61f7dc2018-04-27 20:46:22 +0100311 goto error_unlock;
David Howellsf3ddee82018-04-06 14:17:25 +0100312
313 task_io_account_read(PAGE_SIZE * req->nr_pages);
314
315 if (req->len < req->file_size)
316 goto content_has_grown;
317
318 /* Validate the data we just read. */
319 ret = -EIO;
David Howells445b1022019-04-25 14:26:51 +0100320 if (!afs_dir_check_pages(dvnode, req))
321 goto error_unlock;
David Howellsf3ddee82018-04-06 14:17:25 +0100322
323 // TODO: Trim excess pages
324
325 set_bit(AFS_VNODE_DIR_VALID, &dvnode->flags);
326 }
327
David Howellsb61f7dc2018-04-27 20:46:22 +0100328 downgrade_write(&dvnode->validate_lock);
David Howellsf3ddee82018-04-06 14:17:25 +0100329success:
David Howellsf3ddee82018-04-06 14:17:25 +0100330 return req;
331
David Howellsf3ddee82018-04-06 14:17:25 +0100332error_unlock:
David Howellsb61f7dc2018-04-27 20:46:22 +0100333 up_write(&dvnode->validate_lock);
David Howellsf3ddee82018-04-06 14:17:25 +0100334error:
335 afs_put_read(req);
336 _leave(" = %d", ret);
337 return ERR_PTR(ret);
338
339content_has_grown:
David Howellsb61f7dc2018-04-27 20:46:22 +0100340 up_write(&dvnode->validate_lock);
David Howellsf3ddee82018-04-06 14:17:25 +0100341 afs_put_read(req);
342 goto retry;
343}
344
345/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 * deal with one block in an AFS directory
347 */
David Howellsf51375c2018-10-20 00:57:57 +0100348static int afs_dir_iterate_block(struct afs_vnode *dvnode,
349 struct dir_context *ctx,
David Howells00317632018-04-06 14:17:25 +0100350 union afs_xdr_dir_block *block,
Al Viro1bbae9f2013-05-22 16:31:14 -0400351 unsigned blkoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352{
David Howells00317632018-04-06 14:17:25 +0100353 union afs_xdr_dirent *dire;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354 unsigned offset, next, curr;
355 size_t nlen;
Al Viro1bbae9f2013-05-22 16:31:14 -0400356 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357
Al Viro1bbae9f2013-05-22 16:31:14 -0400358 _enter("%u,%x,%p,,",(unsigned)ctx->pos,blkoff,block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359
David Howells00317632018-04-06 14:17:25 +0100360 curr = (ctx->pos - blkoff) / sizeof(union afs_xdr_dirent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361
362 /* walk through the block, an entry at a time */
David Howells4ea219a2018-04-06 14:17:25 +0100363 for (offset = (blkoff == 0 ? AFS_DIR_RESV_BLOCKS0 : AFS_DIR_RESV_BLOCKS);
364 offset < AFS_DIR_SLOTS_PER_BLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365 offset = next
366 ) {
367 next = offset + 1;
368
369 /* skip entries marked unused in the bitmap */
David Howells00317632018-04-06 14:17:25 +0100370 if (!(block->hdr.bitmap[offset / 8] &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 (1 << (offset % 8)))) {
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800372 _debug("ENT[%zu.%u]: unused",
David Howells00317632018-04-06 14:17:25 +0100373 blkoff / sizeof(union afs_xdr_dir_block), offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 if (offset >= curr)
Al Viro1bbae9f2013-05-22 16:31:14 -0400375 ctx->pos = blkoff +
David Howells00317632018-04-06 14:17:25 +0100376 next * sizeof(union afs_xdr_dirent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 continue;
378 }
379
380 /* got a valid entry */
381 dire = &block->dirents[offset];
382 nlen = strnlen(dire->u.name,
383 sizeof(*block) -
David Howells00317632018-04-06 14:17:25 +0100384 offset * sizeof(union afs_xdr_dirent));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800386 _debug("ENT[%zu.%u]: %s %zu \"%s\"",
David Howells00317632018-04-06 14:17:25 +0100387 blkoff / sizeof(union afs_xdr_dir_block), offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 (offset < curr ? "skip" : "fill"),
389 nlen, dire->u.name);
390
391 /* work out where the next possible entry is */
David Howells00317632018-04-06 14:17:25 +0100392 for (tmp = nlen; tmp > 15; tmp -= sizeof(union afs_xdr_dirent)) {
David Howells4ea219a2018-04-06 14:17:25 +0100393 if (next >= AFS_DIR_SLOTS_PER_BLOCK) {
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800394 _debug("ENT[%zu.%u]:"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 " %u travelled beyond end dir block"
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800396 " (len %u/%zu)",
David Howells00317632018-04-06 14:17:25 +0100397 blkoff / sizeof(union afs_xdr_dir_block),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 offset, next, tmp, nlen);
David Howellsf51375c2018-10-20 00:57:57 +0100399 return afs_bad(dvnode, afs_file_error_dir_over_end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
David Howells00317632018-04-06 14:17:25 +0100401 if (!(block->hdr.bitmap[next / 8] &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402 (1 << (next % 8)))) {
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800403 _debug("ENT[%zu.%u]:"
404 " %u unmarked extension (len %u/%zu)",
David Howells00317632018-04-06 14:17:25 +0100405 blkoff / sizeof(union afs_xdr_dir_block),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406 offset, next, tmp, nlen);
David Howellsf51375c2018-10-20 00:57:57 +0100407 return afs_bad(dvnode, afs_file_error_dir_unmarked_ext);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 }
409
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800410 _debug("ENT[%zu.%u]: ext %u/%zu",
David Howells00317632018-04-06 14:17:25 +0100411 blkoff / sizeof(union afs_xdr_dir_block),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700412 next, tmp, nlen);
413 next++;
414 }
415
416 /* skip if starts before the current position */
417 if (offset < curr)
418 continue;
419
420 /* found the next entry */
Al Viro1bbae9f2013-05-22 16:31:14 -0400421 if (!dir_emit(ctx, dire->u.name, nlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 ntohl(dire->u.vnode),
David Howells5cf9dd52018-04-09 21:12:31 +0100423 (ctx->actor == afs_lookup_filldir ||
424 ctx->actor == afs_lookup_one_filldir)?
Al Viro1bbae9f2013-05-22 16:31:14 -0400425 ntohl(dire->u.unique) : DT_UNKNOWN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 _leave(" = 0 [full]");
427 return 0;
428 }
429
David Howells00317632018-04-06 14:17:25 +0100430 ctx->pos = blkoff + next * sizeof(union afs_xdr_dirent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 }
432
433 _leave(" = 1 [more]");
434 return 1;
David Howellsec268152007-04-26 15:49:28 -0700435}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437/*
David Howells08e0e7c2007-04-26 15:55:03 -0700438 * iterate through the data blob that lists the contents of an AFS directory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 */
Al Viro1bbae9f2013-05-22 16:31:14 -0400440static int afs_dir_iterate(struct inode *dir, struct dir_context *ctx,
David Howells9dd0b822019-07-30 14:38:52 +0100441 struct key *key, afs_dataversion_t *_dir_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442{
David Howellsf3ddee82018-04-06 14:17:25 +0100443 struct afs_vnode *dvnode = AFS_FS_I(dir);
David Howells00317632018-04-06 14:17:25 +0100444 struct afs_xdr_dir_page *dbuf;
445 union afs_xdr_dir_block *dblock;
David Howellsf3ddee82018-04-06 14:17:25 +0100446 struct afs_read *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 struct page *page;
448 unsigned blkoff, limit;
449 int ret;
450
Al Viro1bbae9f2013-05-22 16:31:14 -0400451 _enter("{%lu},%u,,", dir->i_ino, (unsigned)ctx->pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452
David Howells08e0e7c2007-04-26 15:55:03 -0700453 if (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(dir)->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 _leave(" = -ESTALE");
455 return -ESTALE;
456 }
457
David Howellsf3ddee82018-04-06 14:17:25 +0100458 req = afs_read_dir(dvnode, key);
459 if (IS_ERR(req))
460 return PTR_ERR(req);
David Howells9dd0b822019-07-30 14:38:52 +0100461 *_dir_version = req->data_version;
David Howellsf3ddee82018-04-06 14:17:25 +0100462
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 /* round the file position up to the next entry boundary */
David Howells00317632018-04-06 14:17:25 +0100464 ctx->pos += sizeof(union afs_xdr_dirent) - 1;
465 ctx->pos &= ~(sizeof(union afs_xdr_dirent) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 /* walk through the blocks in sequence */
468 ret = 0;
David Howellsf3ddee82018-04-06 14:17:25 +0100469 while (ctx->pos < req->actual_len) {
David Howells00317632018-04-06 14:17:25 +0100470 blkoff = ctx->pos & ~(sizeof(union afs_xdr_dir_block) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700471
David Howellsf3ddee82018-04-06 14:17:25 +0100472 /* Fetch the appropriate page from the directory and re-add it
473 * to the LRU.
474 */
475 page = req->pages[blkoff / PAGE_SIZE];
476 if (!page) {
David Howellsf51375c2018-10-20 00:57:57 +0100477 ret = afs_bad(dvnode, afs_file_error_dir_missing_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 break;
479 }
David Howellsf3ddee82018-04-06 14:17:25 +0100480 mark_page_accessed(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481
482 limit = blkoff & ~(PAGE_SIZE - 1);
483
David Howellsf3ddee82018-04-06 14:17:25 +0100484 dbuf = kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486 /* deal with the individual blocks stashed on this page */
487 do {
488 dblock = &dbuf->blocks[(blkoff % PAGE_SIZE) /
David Howells00317632018-04-06 14:17:25 +0100489 sizeof(union afs_xdr_dir_block)];
David Howellsf51375c2018-10-20 00:57:57 +0100490 ret = afs_dir_iterate_block(dvnode, ctx, dblock, blkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (ret != 1) {
David Howellsf3ddee82018-04-06 14:17:25 +0100492 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 goto out;
494 }
495
David Howells00317632018-04-06 14:17:25 +0100496 blkoff += sizeof(union afs_xdr_dir_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Al Viro1bbae9f2013-05-22 16:31:14 -0400498 } while (ctx->pos < dir->i_size && blkoff < limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
David Howellsf3ddee82018-04-06 14:17:25 +0100500 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 ret = 0;
502 }
503
David Howellsec268152007-04-26 15:49:28 -0700504out:
David Howellsb61f7dc2018-04-27 20:46:22 +0100505 up_read(&dvnode->validate_lock);
David Howellsf3ddee82018-04-06 14:17:25 +0100506 afs_put_read(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 _leave(" = %d", ret);
508 return ret;
David Howellsec268152007-04-26 15:49:28 -0700509}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511/*
512 * read an AFS directory
513 */
Al Viro1bbae9f2013-05-22 16:31:14 -0400514static int afs_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515{
David Howells9dd0b822019-07-30 14:38:52 +0100516 afs_dataversion_t dir_version;
517
518 return afs_dir_iterate(file_inode(file), ctx, afs_file_key(file),
519 &dir_version);
David Howellsec268152007-04-26 15:49:28 -0700520}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522/*
David Howells5cf9dd52018-04-09 21:12:31 +0100523 * Search the directory for a single name
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 * - if afs_dir_iterate_block() spots this function, it'll pass the FID
525 * uniquifier through dtype
526 */
David Howells5cf9dd52018-04-09 21:12:31 +0100527static int afs_lookup_one_filldir(struct dir_context *ctx, const char *name,
528 int nlen, loff_t fpos, u64 ino, unsigned dtype)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529{
David Howells5cf9dd52018-04-09 21:12:31 +0100530 struct afs_lookup_one_cookie *cookie =
531 container_of(ctx, struct afs_lookup_one_cookie, ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532
Al Viro1bbae9f2013-05-22 16:31:14 -0400533 _enter("{%s,%u},%s,%u,,%llu,%u",
534 cookie->name.name, cookie->name.len, name, nlen,
David S. Millerba3e0e12007-04-26 16:06:22 -0700535 (unsigned long long) ino, dtype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
David Howells08e0e7c2007-04-26 15:55:03 -0700537 /* insanity checks first */
David Howells00317632018-04-06 14:17:25 +0100538 BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
539 BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
David Howells08e0e7c2007-04-26 15:55:03 -0700540
Al Viro1bbae9f2013-05-22 16:31:14 -0400541 if (cookie->name.len != nlen ||
542 memcmp(cookie->name.name, name, nlen) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 _leave(" = 0 [no]");
544 return 0;
545 }
546
547 cookie->fid.vnode = ino;
548 cookie->fid.unique = dtype;
549 cookie->found = 1;
550
551 _leave(" = -1 [found]");
552 return -1;
David Howellsec268152007-04-26 15:49:28 -0700553}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555/*
David Howells5cf9dd52018-04-09 21:12:31 +0100556 * Do a lookup of a single name in a directory
David Howells260a9802007-04-26 15:59:35 -0700557 * - just returns the FID the dentry name maps to if found
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 */
David Howells5cf9dd52018-04-09 21:12:31 +0100559static int afs_do_lookup_one(struct inode *dir, struct dentry *dentry,
David Howells9dd0b822019-07-30 14:38:52 +0100560 struct afs_fid *fid, struct key *key,
561 afs_dataversion_t *_dir_version)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562{
Al Viro1bbae9f2013-05-22 16:31:14 -0400563 struct afs_super_info *as = dir->i_sb->s_fs_info;
David Howells5cf9dd52018-04-09 21:12:31 +0100564 struct afs_lookup_one_cookie cookie = {
565 .ctx.actor = afs_lookup_one_filldir,
Al Viro1bbae9f2013-05-22 16:31:14 -0400566 .name = dentry->d_name,
567 .fid.vid = as->volume->vid
568 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700569 int ret;
570
Al Viroa4555892014-10-21 20:11:25 -0400571 _enter("{%lu},%p{%pd},", dir->i_ino, dentry, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 /* search the directory */
David Howells9dd0b822019-07-30 14:38:52 +0100574 ret = afs_dir_iterate(dir, &cookie.ctx, key, _dir_version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (ret < 0) {
David Howells08e0e7c2007-04-26 15:55:03 -0700576 _leave(" = %d [iter]", ret);
577 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 }
579
580 ret = -ENOENT;
581 if (!cookie.found) {
David Howells08e0e7c2007-04-26 15:55:03 -0700582 _leave(" = -ENOENT [not found]");
583 return -ENOENT;
584 }
585
586 *fid = cookie.fid;
David Howells3b6492d2018-10-20 00:57:57 +0100587 _leave(" = 0 { vn=%llu u=%u }", fid->vnode, fid->unique);
David Howells08e0e7c2007-04-26 15:55:03 -0700588 return 0;
589}
590
591/*
David Howells5cf9dd52018-04-09 21:12:31 +0100592 * search the directory for a name
593 * - if afs_dir_iterate_block() spots this function, it'll pass the FID
594 * uniquifier through dtype
595 */
596static int afs_lookup_filldir(struct dir_context *ctx, const char *name,
597 int nlen, loff_t fpos, u64 ino, unsigned dtype)
598{
599 struct afs_lookup_cookie *cookie =
600 container_of(ctx, struct afs_lookup_cookie, ctx);
601 int ret;
602
603 _enter("{%s,%u},%s,%u,,%llu,%u",
604 cookie->name.name, cookie->name.len, name, nlen,
605 (unsigned long long) ino, dtype);
606
607 /* insanity checks first */
David Howells00317632018-04-06 14:17:25 +0100608 BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
609 BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
David Howells5cf9dd52018-04-09 21:12:31 +0100610
611 if (cookie->found) {
612 if (cookie->nr_fids < 50) {
613 cookie->fids[cookie->nr_fids].vnode = ino;
614 cookie->fids[cookie->nr_fids].unique = dtype;
615 cookie->nr_fids++;
616 }
617 } else if (cookie->name.len == nlen &&
618 memcmp(cookie->name.name, name, nlen) == 0) {
David Howellse49c7b22020-04-10 20:51:51 +0100619 cookie->fids[1].vnode = ino;
620 cookie->fids[1].unique = dtype;
David Howells5cf9dd52018-04-09 21:12:31 +0100621 cookie->found = 1;
622 if (cookie->one_only)
623 return -1;
624 }
625
626 ret = cookie->nr_fids >= 50 ? -1 : 0;
627 _leave(" = %d", ret);
628 return ret;
629}
630
631/*
David Howellse49c7b22020-04-10 20:51:51 +0100632 * Deal with the result of a successful lookup operation. Turn all the files
633 * into inodes and save the first one - which is the one we actually want.
634 */
635static void afs_do_lookup_success(struct afs_operation *op)
636{
637 struct afs_vnode_param *vp;
638 struct afs_vnode *vnode;
639 struct inode *inode;
640 u32 abort_code;
641 int i;
642
643 _enter("");
644
645 for (i = 0; i < op->nr_files; i++) {
646 switch (i) {
647 case 0:
648 vp = &op->file[0];
649 abort_code = vp->scb.status.abort_code;
650 if (abort_code != 0) {
David Howells44767c32020-06-16 00:25:56 +0100651 op->ac.abort_code = abort_code;
David Howellse49c7b22020-04-10 20:51:51 +0100652 op->error = afs_abort_to_error(abort_code);
653 }
654 break;
655
656 case 1:
657 vp = &op->file[1];
658 break;
659
660 default:
661 vp = &op->more_files[i - 2];
662 break;
663 }
664
665 if (!vp->scb.have_status && !vp->scb.have_error)
666 continue;
667
668 _debug("do [%u]", i);
669 if (vp->vnode) {
670 if (!test_bit(AFS_VNODE_UNSET, &vp->vnode->flags))
671 afs_vnode_commit_status(op, vp);
672 } else if (vp->scb.status.abort_code == 0) {
673 inode = afs_iget(op, vp);
674 if (!IS_ERR(inode)) {
675 vnode = AFS_FS_I(inode);
676 afs_cache_permit(vnode, op->key,
677 0 /* Assume vnode->cb_break is 0 */ +
678 op->cb_v_break,
679 &vp->scb);
680 vp->vnode = vnode;
681 vp->put_vnode = true;
682 }
683 } else {
684 _debug("- abort %d %llx:%llx.%x",
685 vp->scb.status.abort_code,
686 vp->fid.vid, vp->fid.vnode, vp->fid.unique);
687 }
688 }
689
690 _leave("");
691}
692
693static const struct afs_operation_ops afs_inline_bulk_status_operation = {
694 .issue_afs_rpc = afs_fs_inline_bulk_status,
695 .issue_yfs_rpc = yfs_fs_inline_bulk_status,
696 .success = afs_do_lookup_success,
697};
698
David Howellsb6489a42020-06-15 17:36:58 +0100699static const struct afs_operation_ops afs_lookup_fetch_status_operation = {
David Howellse49c7b22020-04-10 20:51:51 +0100700 .issue_afs_rpc = afs_fs_fetch_status,
701 .issue_yfs_rpc = yfs_fs_fetch_status,
702 .success = afs_do_lookup_success,
David Howells728279a2020-06-16 00:34:09 +0100703 .aborted = afs_check_for_remote_deletion,
David Howellse49c7b22020-04-10 20:51:51 +0100704};
705
706/*
David Howells20325962020-04-30 01:03:49 +0100707 * See if we know that the server we expect to use doesn't support
708 * FS.InlineBulkStatus.
709 */
710static bool afs_server_supports_ibulk(struct afs_vnode *dvnode)
711{
712 struct afs_server_list *slist;
713 struct afs_volume *volume = dvnode->volume;
714 struct afs_server *server;
715 bool ret = true;
716 int i;
717
718 if (!test_bit(AFS_VOLUME_MAYBE_NO_IBULK, &volume->flags))
719 return true;
720
721 rcu_read_lock();
722 slist = rcu_dereference(volume->servers);
723
724 for (i = 0; i < slist->nr_servers; i++) {
725 server = slist->servers[i].server;
726 if (server == dvnode->cb_server) {
727 if (test_bit(AFS_SERVER_FL_NO_IBULK, &server->flags))
728 ret = false;
729 break;
730 }
731 }
732
733 rcu_read_unlock();
734 return ret;
735}
736
737/*
David Howells5cf9dd52018-04-09 21:12:31 +0100738 * Do a lookup in a directory. We make use of bulk lookup to query a slew of
739 * files in one go and create inodes for them. The inode of the file we were
740 * asked for is returned.
741 */
742static struct inode *afs_do_lookup(struct inode *dir, struct dentry *dentry,
743 struct key *key)
744{
745 struct afs_lookup_cookie *cookie;
David Howellse49c7b22020-04-10 20:51:51 +0100746 struct afs_vnode_param *vp;
747 struct afs_operation *op;
David Howells39db9812019-05-14 12:33:10 +0100748 struct afs_vnode *dvnode = AFS_FS_I(dir), *vnode;
749 struct inode *inode = NULL, *ti;
David Howells9dd0b822019-07-30 14:38:52 +0100750 afs_dataversion_t data_version = READ_ONCE(dvnode->status.data_version);
David Howellse49c7b22020-04-10 20:51:51 +0100751 long ret;
752 int i;
David Howells5cf9dd52018-04-09 21:12:31 +0100753
754 _enter("{%lu},%p{%pd},", dir->i_ino, dentry, dentry);
755
756 cookie = kzalloc(sizeof(struct afs_lookup_cookie), GFP_KERNEL);
757 if (!cookie)
758 return ERR_PTR(-ENOMEM);
759
David Howellse49c7b22020-04-10 20:51:51 +0100760 for (i = 0; i < ARRAY_SIZE(cookie->fids); i++)
761 cookie->fids[i].vid = dvnode->fid.vid;
David Howells5cf9dd52018-04-09 21:12:31 +0100762 cookie->ctx.actor = afs_lookup_filldir;
763 cookie->name = dentry->d_name;
David Howells13fcc632020-04-16 14:20:32 +0100764 cookie->nr_fids = 2; /* slot 0 is saved for the fid we actually want
765 * and slot 1 for the directory */
David Howells5cf9dd52018-04-09 21:12:31 +0100766
David Howells20325962020-04-30 01:03:49 +0100767 if (!afs_server_supports_ibulk(dvnode))
768 cookie->one_only = true;
David Howells5cf9dd52018-04-09 21:12:31 +0100769
David Howells5cf9dd52018-04-09 21:12:31 +0100770 /* search the directory */
David Howells9dd0b822019-07-30 14:38:52 +0100771 ret = afs_dir_iterate(dir, &cookie->ctx, key, &data_version);
David Howellse49c7b22020-04-10 20:51:51 +0100772 if (ret < 0)
David Howells5cf9dd52018-04-09 21:12:31 +0100773 goto out;
David Howells5cf9dd52018-04-09 21:12:31 +0100774
David Howells9dd0b822019-07-30 14:38:52 +0100775 dentry->d_fsdata = (void *)(unsigned long)data_version;
776
David Howellse49c7b22020-04-10 20:51:51 +0100777 ret = -ENOENT;
David Howells5cf9dd52018-04-09 21:12:31 +0100778 if (!cookie->found)
779 goto out;
780
781 /* Check to see if we already have an inode for the primary fid. */
David Howellse49c7b22020-04-10 20:51:51 +0100782 inode = ilookup5(dir->i_sb, cookie->fids[1].vnode,
783 afs_ilookup5_test_by_fid, &cookie->fids[1]);
David Howells5cf9dd52018-04-09 21:12:31 +0100784 if (inode)
David Howellse49c7b22020-04-10 20:51:51 +0100785 goto out; /* We do */
786
787 /* Okay, we didn't find it. We need to query the server - and whilst
788 * we're doing that, we're going to attempt to look up a bunch of other
789 * vnodes also.
790 */
791 op = afs_alloc_operation(NULL, dvnode->volume);
792 if (IS_ERR(op)) {
793 ret = PTR_ERR(op);
David Howells5cf9dd52018-04-09 21:12:31 +0100794 goto out;
David Howellse49c7b22020-04-10 20:51:51 +0100795 }
796
797 afs_op_set_vnode(op, 0, dvnode);
798 afs_op_set_fid(op, 1, &cookie->fids[1]);
799
800 op->nr_files = cookie->nr_fids;
801 _debug("nr_files %u", op->nr_files);
David Howells5cf9dd52018-04-09 21:12:31 +0100802
803 /* Need space for examining all the selected files */
David Howellse49c7b22020-04-10 20:51:51 +0100804 op->error = -ENOMEM;
805 if (op->nr_files > 2) {
806 op->more_files = kvcalloc(op->nr_files - 2,
807 sizeof(struct afs_vnode_param),
808 GFP_KERNEL);
809 if (!op->more_files)
810 goto out_op;
David Howells5cf9dd52018-04-09 21:12:31 +0100811
David Howellse49c7b22020-04-10 20:51:51 +0100812 for (i = 2; i < op->nr_files; i++) {
813 vp = &op->more_files[i - 2];
814 vp->fid = cookie->fids[i];
David Howells39db9812019-05-14 12:33:10 +0100815
David Howellse49c7b22020-04-10 20:51:51 +0100816 /* Find any inodes that already exist and get their
817 * callback counters.
818 */
819 ti = ilookup5_nowait(dir->i_sb, vp->fid.vnode,
820 afs_ilookup5_test_by_fid, &vp->fid);
821 if (!IS_ERR_OR_NULL(ti)) {
822 vnode = AFS_FS_I(ti);
823 vp->dv_before = vnode->status.data_version;
824 vp->cb_break_before = afs_calc_vnode_cb_break(vnode);
825 vp->vnode = vnode;
826 vp->put_vnode = true;
827 }
David Howells39db9812019-05-14 12:33:10 +0100828 }
829 }
830
David Howells5cf9dd52018-04-09 21:12:31 +0100831 /* Try FS.InlineBulkStatus first. Abort codes for the individual
832 * lookups contained therein are stored in the reply without aborting
833 * the whole operation.
834 */
David Howellse49c7b22020-04-10 20:51:51 +0100835 op->error = -ENOTSUPP;
836 if (!cookie->one_only) {
837 op->ops = &afs_inline_bulk_status_operation;
838 afs_begin_vnode_operation(op);
839 afs_wait_for_operation(op);
David Howells5cf9dd52018-04-09 21:12:31 +0100840 }
841
David Howellse49c7b22020-04-10 20:51:51 +0100842 if (op->error == -ENOTSUPP) {
843 /* We could try FS.BulkStatus next, but this aborts the entire
844 * op if any of the lookups fails - so, for the moment, revert
845 * to FS.FetchStatus for op->file[1].
846 */
847 op->fetch_status.which = 1;
David Howellsf8ea5c72020-06-19 00:01:28 +0100848 op->ops = &afs_lookup_fetch_status_operation;
David Howellse49c7b22020-04-10 20:51:51 +0100849 afs_begin_vnode_operation(op);
850 afs_wait_for_operation(op);
851 }
852 inode = ERR_PTR(op->error);
David Howells5cf9dd52018-04-09 21:12:31 +0100853
David Howellse49c7b22020-04-10 20:51:51 +0100854out_op:
855 if (op->error == 0) {
856 inode = &op->file[1].vnode->vfs_inode;
857 op->file[1].vnode = NULL;
David Howells5cf9dd52018-04-09 21:12:31 +0100858 }
859
David Howellse49c7b22020-04-10 20:51:51 +0100860 if (op->file[0].scb.have_status)
861 dentry->d_fsdata = (void *)(unsigned long)op->file[0].scb.status.data_version;
862 else
863 dentry->d_fsdata = (void *)(unsigned long)op->file[0].dv_before;
864 ret = afs_put_operation(op);
David Howells5cf9dd52018-04-09 21:12:31 +0100865out:
866 kfree(cookie);
David Howellse49c7b22020-04-10 20:51:51 +0100867 _leave("");
868 return inode ?: ERR_PTR(ret);
David Howells5cf9dd52018-04-09 21:12:31 +0100869}
870
871/*
David Howells6f8880d2018-04-09 21:12:31 +0100872 * Look up an entry in a directory with @sys substitution.
873 */
874static struct dentry *afs_lookup_atsys(struct inode *dir, struct dentry *dentry,
875 struct key *key)
876{
877 struct afs_sysnames *subs;
878 struct afs_net *net = afs_i2net(dir);
879 struct dentry *ret;
880 char *buf, *p, *name;
881 int len, i;
882
883 _enter("");
884
885 ret = ERR_PTR(-ENOMEM);
886 p = buf = kmalloc(AFSNAMEMAX, GFP_KERNEL);
887 if (!buf)
888 goto out_p;
889 if (dentry->d_name.len > 4) {
890 memcpy(p, dentry->d_name.name, dentry->d_name.len - 4);
891 p += dentry->d_name.len - 4;
892 }
893
894 /* There is an ordered list of substitutes that we have to try. */
895 read_lock(&net->sysnames_lock);
896 subs = net->sysnames;
897 refcount_inc(&subs->usage);
898 read_unlock(&net->sysnames_lock);
899
900 for (i = 0; i < subs->nr; i++) {
901 name = subs->subs[i];
902 len = dentry->d_name.len - 4 + strlen(name);
903 if (len >= AFSNAMEMAX) {
904 ret = ERR_PTR(-ENAMETOOLONG);
905 goto out_s;
906 }
907
908 strcpy(p, name);
909 ret = lookup_one_len(buf, dentry->d_parent, len);
910 if (IS_ERR(ret) || d_is_positive(ret))
911 goto out_s;
912 dput(ret);
913 }
914
915 /* We don't want to d_add() the @sys dentry here as we don't want to
916 * the cached dentry to hide changes to the sysnames list.
917 */
918 ret = NULL;
919out_s:
920 afs_put_sysnames(subs);
921 kfree(buf);
922out_p:
923 key_put(key);
924 return ret;
925}
926
927/*
David Howells08e0e7c2007-04-26 15:55:03 -0700928 * look up an entry in a directory
929 */
David Howells260a9802007-04-26 15:59:35 -0700930static struct dentry *afs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400931 unsigned int flags)
David Howells08e0e7c2007-04-26 15:55:03 -0700932{
David Howells5cf9dd52018-04-09 21:12:31 +0100933 struct afs_vnode *dvnode = AFS_FS_I(dir);
David Howells40a708b2020-01-14 16:16:25 +0000934 struct afs_fid fid = {};
David Howells08e0e7c2007-04-26 15:55:03 -0700935 struct inode *inode;
Al Viro34b2a882018-06-24 10:43:51 -0400936 struct dentry *d;
David Howells00d3b7a2007-04-26 15:57:07 -0700937 struct key *key;
David Howells08e0e7c2007-04-26 15:55:03 -0700938 int ret;
939
David Howells3b6492d2018-10-20 00:57:57 +0100940 _enter("{%llx:%llu},%p{%pd},",
David Howells5cf9dd52018-04-09 21:12:31 +0100941 dvnode->fid.vid, dvnode->fid.vnode, dentry, dentry);
David Howells260a9802007-04-26 15:59:35 -0700942
David Howells2b0143b2015-03-17 22:25:59 +0000943 ASSERTCMP(d_inode(dentry), ==, NULL);
David Howells08e0e7c2007-04-26 15:55:03 -0700944
David Howells45222b92007-05-10 22:22:20 -0700945 if (dentry->d_name.len >= AFSNAMEMAX) {
David Howells08e0e7c2007-04-26 15:55:03 -0700946 _leave(" = -ENAMETOOLONG");
947 return ERR_PTR(-ENAMETOOLONG);
948 }
949
David Howells5cf9dd52018-04-09 21:12:31 +0100950 if (test_bit(AFS_VNODE_DELETED, &dvnode->flags)) {
David Howells08e0e7c2007-04-26 15:55:03 -0700951 _leave(" = -ESTALE");
952 return ERR_PTR(-ESTALE);
953 }
954
David Howells5cf9dd52018-04-09 21:12:31 +0100955 key = afs_request_key(dvnode->volume->cell);
David Howells00d3b7a2007-04-26 15:57:07 -0700956 if (IS_ERR(key)) {
957 _leave(" = %ld [key]", PTR_ERR(key));
David Howellse231c2e2008-02-07 00:15:26 -0800958 return ERR_CAST(key);
David Howells00d3b7a2007-04-26 15:57:07 -0700959 }
960
David Howells5cf9dd52018-04-09 21:12:31 +0100961 ret = afs_validate(dvnode, key);
David Howells08e0e7c2007-04-26 15:55:03 -0700962 if (ret < 0) {
David Howells00d3b7a2007-04-26 15:57:07 -0700963 key_put(key);
David Howells260a9802007-04-26 15:59:35 -0700964 _leave(" = %d [val]", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 return ERR_PTR(ret);
966 }
967
David Howells6f8880d2018-04-09 21:12:31 +0100968 if (dentry->d_name.len >= 4 &&
969 dentry->d_name.name[dentry->d_name.len - 4] == '@' &&
970 dentry->d_name.name[dentry->d_name.len - 3] == 's' &&
971 dentry->d_name.name[dentry->d_name.len - 2] == 'y' &&
972 dentry->d_name.name[dentry->d_name.len - 1] == 's')
973 return afs_lookup_atsys(dir, dentry, key);
974
David Howellsd55b4da2018-04-06 14:17:24 +0100975 afs_stat_v(dvnode, n_lookup);
David Howells5cf9dd52018-04-09 21:12:31 +0100976 inode = afs_do_lookup(dir, dentry, key);
David Howells00d3b7a2007-04-26 15:57:07 -0700977 key_put(key);
David Howellsf52b83b2020-01-14 16:16:54 +0000978 if (inode == ERR_PTR(-ENOENT))
Al Viro34b2a882018-06-24 10:43:51 -0400979 inode = afs_try_auto_mntpt(dentry, dir);
David Howells40a708b2020-01-14 16:16:25 +0000980
981 if (!IS_ERR_OR_NULL(inode))
982 fid = AFS_FS_I(inode)->fid;
983
David Howellsfed79fd2020-06-09 16:25:02 +0100984 _debug("splice %p", dentry->d_inode);
Al Viro34b2a882018-06-24 10:43:51 -0400985 d = d_splice_alias(inode, dentry);
David Howells80548b02019-04-25 14:26:51 +0100986 if (!IS_ERR_OR_NULL(d)) {
Al Viro34b2a882018-06-24 10:43:51 -0400987 d->d_fsdata = dentry->d_fsdata;
David Howells40a708b2020-01-14 16:16:25 +0000988 trace_afs_lookup(dvnode, &d->d_name, &fid);
David Howells80548b02019-04-25 14:26:51 +0100989 } else {
David Howells40a708b2020-01-14 16:16:25 +0000990 trace_afs_lookup(dvnode, &dentry->d_name, &fid);
David Howells80548b02019-04-25 14:26:51 +0100991 }
David Howellse49c7b22020-04-10 20:51:51 +0100992 _leave("");
Al Viro34b2a882018-06-24 10:43:51 -0400993 return d;
David Howellsec268152007-04-26 15:49:28 -0700994}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Linus Torvalds1da177e2005-04-16 15:20:36 -0700996/*
David Howellsa0753c22019-05-20 08:48:46 +0100997 * Check the validity of a dentry under RCU conditions.
998 */
999static int afs_d_revalidate_rcu(struct dentry *dentry)
1000{
1001 struct afs_vnode *dvnode, *vnode;
1002 struct dentry *parent;
1003 struct inode *dir, *inode;
1004 long dir_version, de_version;
1005
1006 _enter("%p", dentry);
1007
1008 /* Check the parent directory is still valid first. */
1009 parent = READ_ONCE(dentry->d_parent);
1010 dir = d_inode_rcu(parent);
1011 if (!dir)
1012 return -ECHILD;
1013 dvnode = AFS_FS_I(dir);
1014 if (test_bit(AFS_VNODE_DELETED, &dvnode->flags))
1015 return -ECHILD;
1016
1017 if (!afs_check_validity(dvnode))
1018 return -ECHILD;
1019
1020 /* We only need to invalidate a dentry if the server's copy changed
1021 * behind our back. If we made the change, it's no problem. Note that
1022 * on a 32-bit system, we only have 32 bits in the dentry to store the
1023 * version.
1024 */
1025 dir_version = (long)READ_ONCE(dvnode->status.data_version);
1026 de_version = (long)READ_ONCE(dentry->d_fsdata);
1027 if (de_version != dir_version) {
1028 dir_version = (long)READ_ONCE(dvnode->invalid_before);
1029 if (de_version - dir_version < 0)
1030 return -ECHILD;
1031 }
1032
1033 /* Check to see if the vnode referred to by the dentry still
1034 * has a callback.
1035 */
1036 if (d_really_is_positive(dentry)) {
1037 inode = d_inode_rcu(dentry);
1038 if (inode) {
1039 vnode = AFS_FS_I(inode);
1040 if (!afs_check_validity(vnode))
1041 return -ECHILD;
1042 }
1043 }
1044
1045 return 1; /* Still valid */
1046}
1047
1048/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 * check that a dentry lookup hit has found a valid entry
1050 * - NOTE! the hit can be a negative hit too, so we can't assume we have an
1051 * inode
Linus Torvalds1da177e2005-04-16 15:20:36 -07001052 */
Al Viro0b728e12012-06-10 16:03:43 -04001053static int afs_d_revalidate(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054{
David Howells260a9802007-04-26 15:59:35 -07001055 struct afs_vnode *vnode, *dir;
Artem Bityutskiydd0d9a42009-07-09 10:44:30 +01001056 struct afs_fid uninitialized_var(fid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001057 struct dentry *parent;
David Howellsc435ee32017-11-02 15:27:49 +00001058 struct inode *inode;
David Howells00d3b7a2007-04-26 15:57:07 -07001059 struct key *key;
David Howells40fc8102020-04-11 08:50:45 +01001060 afs_dataversion_t dir_version, invalid_before;
David Howells9dd0b822019-07-30 14:38:52 +01001061 long de_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062 int ret;
1063
Al Viro0b728e12012-06-10 16:03:43 -04001064 if (flags & LOOKUP_RCU)
David Howellsa0753c22019-05-20 08:48:46 +01001065 return afs_d_revalidate_rcu(dentry);
Nick Piggin34286d62011-01-07 17:49:57 +11001066
David Howellsc435ee32017-11-02 15:27:49 +00001067 if (d_really_is_positive(dentry)) {
1068 vnode = AFS_FS_I(d_inode(dentry));
David Howells3b6492d2018-10-20 00:57:57 +01001069 _enter("{v={%llx:%llu} n=%pd fl=%lx},",
Al Viroa4555892014-10-21 20:11:25 -04001070 vnode->fid.vid, vnode->fid.vnode, dentry,
David Howells260a9802007-04-26 15:59:35 -07001071 vnode->flags);
David Howellsc435ee32017-11-02 15:27:49 +00001072 } else {
Al Viroa4555892014-10-21 20:11:25 -04001073 _enter("{neg n=%pd}", dentry);
David Howellsc435ee32017-11-02 15:27:49 +00001074 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001075
David Howells260a9802007-04-26 15:59:35 -07001076 key = afs_request_key(AFS_FS_S(dentry->d_sb)->volume->cell);
David Howells00d3b7a2007-04-26 15:57:07 -07001077 if (IS_ERR(key))
1078 key = NULL;
1079
David Howellsc435ee32017-11-02 15:27:49 +00001080 if (d_really_is_positive(dentry)) {
1081 inode = d_inode(dentry);
1082 if (inode) {
1083 vnode = AFS_FS_I(inode);
1084 afs_validate(vnode, key);
1085 if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
1086 goto out_bad;
1087 }
1088 }
1089
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 /* lock down the parent dentry so we can peer at it */
David Howells08e0e7c2007-04-26 15:55:03 -07001091 parent = dget_parent(dentry);
David Howells2b0143b2015-03-17 22:25:59 +00001092 dir = AFS_FS_I(d_inode(parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093
David Howells260a9802007-04-26 15:59:35 -07001094 /* validate the parent directory */
David Howellsc435ee32017-11-02 15:27:49 +00001095 afs_validate(dir, key);
David Howells260a9802007-04-26 15:59:35 -07001096
1097 if (test_bit(AFS_VNODE_DELETED, &dir->flags)) {
Al Viroa4555892014-10-21 20:11:25 -04001098 _debug("%pd: parent dir deleted", dentry);
David Howellsc435ee32017-11-02 15:27:49 +00001099 goto out_bad_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 }
1101
David Howellsa4ff7402018-04-06 14:17:24 +01001102 /* We only need to invalidate a dentry if the server's copy changed
1103 * behind our back. If we made the change, it's no problem. Note that
1104 * on a 32-bit system, we only have 32 bits in the dentry to store the
1105 * version.
1106 */
David Howells9dd0b822019-07-30 14:38:52 +01001107 dir_version = dir->status.data_version;
David Howellsa4ff7402018-04-06 14:17:24 +01001108 de_version = (long)dentry->d_fsdata;
David Howells9dd0b822019-07-30 14:38:52 +01001109 if (de_version == (long)dir_version)
David Howells5dc84852019-07-30 14:38:51 +01001110 goto out_valid_noupdate;
David Howellsa4ff7402018-04-06 14:17:24 +01001111
David Howells40fc8102020-04-11 08:50:45 +01001112 invalid_before = dir->invalid_before;
1113 if (de_version - (long)invalid_before >= 0)
David Howellsa4ff7402018-04-06 14:17:24 +01001114 goto out_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115
David Howells260a9802007-04-26 15:59:35 -07001116 _debug("dir modified");
David Howellsd55b4da2018-04-06 14:17:24 +01001117 afs_stat_v(dir, n_reval);
David Howells260a9802007-04-26 15:59:35 -07001118
1119 /* search the directory for this vnode */
David Howells9dd0b822019-07-30 14:38:52 +01001120 ret = afs_do_lookup_one(&dir->vfs_inode, dentry, &fid, key, &dir_version);
David Howells260a9802007-04-26 15:59:35 -07001121 switch (ret) {
1122 case 0:
1123 /* the filename maps to something */
David Howells2b0143b2015-03-17 22:25:59 +00001124 if (d_really_is_negative(dentry))
David Howellsc435ee32017-11-02 15:27:49 +00001125 goto out_bad_parent;
1126 inode = d_inode(dentry);
1127 if (is_bad_inode(inode)) {
Al Viroa4555892014-10-21 20:11:25 -04001128 printk("kAFS: afs_d_revalidate: %pd2 has bad inode\n",
1129 dentry);
David Howellsc435ee32017-11-02 15:27:49 +00001130 goto out_bad_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131 }
1132
David Howellsc435ee32017-11-02 15:27:49 +00001133 vnode = AFS_FS_I(inode);
1134
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 /* if the vnode ID has changed, then the dirent points to a
1136 * different file */
David Howells08e0e7c2007-04-26 15:55:03 -07001137 if (fid.vnode != vnode->fid.vnode) {
David Howells3b6492d2018-10-20 00:57:57 +01001138 _debug("%pd: dirent changed [%llu != %llu]",
Al Viroa4555892014-10-21 20:11:25 -04001139 dentry, fid.vnode,
David Howells08e0e7c2007-04-26 15:55:03 -07001140 vnode->fid.vnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 goto not_found;
1142 }
1143
1144 /* if the vnode ID uniqifier has changed, then the file has
David Howells260a9802007-04-26 15:59:35 -07001145 * been deleted and replaced, and the original vnode ID has
1146 * been reused */
David Howells08e0e7c2007-04-26 15:55:03 -07001147 if (fid.unique != vnode->fid.unique) {
Al Viroa4555892014-10-21 20:11:25 -04001148 _debug("%pd: file deleted (uq %u -> %u I:%u)",
1149 dentry, fid.unique,
Jean Noel Cordenner7a224222008-01-28 23:58:27 -05001150 vnode->fid.unique,
David Howellsc435ee32017-11-02 15:27:49 +00001151 vnode->vfs_inode.i_generation);
1152 write_seqlock(&vnode->cb_lock);
David Howells08e0e7c2007-04-26 15:55:03 -07001153 set_bit(AFS_VNODE_DELETED, &vnode->flags);
David Howellsc435ee32017-11-02 15:27:49 +00001154 write_sequnlock(&vnode->cb_lock);
David Howells260a9802007-04-26 15:59:35 -07001155 goto not_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001156 }
David Howells260a9802007-04-26 15:59:35 -07001157 goto out_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158
David Howells260a9802007-04-26 15:59:35 -07001159 case -ENOENT:
1160 /* the filename is unknown */
Al Viroa4555892014-10-21 20:11:25 -04001161 _debug("%pd: dirent not found", dentry);
David Howells2b0143b2015-03-17 22:25:59 +00001162 if (d_really_is_positive(dentry))
David Howells260a9802007-04-26 15:59:35 -07001163 goto not_found;
1164 goto out_valid;
David Howells08e0e7c2007-04-26 15:55:03 -07001165
David Howells260a9802007-04-26 15:59:35 -07001166 default:
Al Viroa4555892014-10-21 20:11:25 -04001167 _debug("failed to iterate dir %pd: %d",
1168 parent, ret);
David Howellsc435ee32017-11-02 15:27:49 +00001169 goto out_bad_parent;
David Howells08e0e7c2007-04-26 15:55:03 -07001170 }
1171
David Howellsec268152007-04-26 15:49:28 -07001172out_valid:
David Howells9dd0b822019-07-30 14:38:52 +01001173 dentry->d_fsdata = (void *)(unsigned long)dir_version;
David Howells5dc84852019-07-30 14:38:51 +01001174out_valid_noupdate:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 dput(parent);
David Howells00d3b7a2007-04-26 15:57:07 -07001176 key_put(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177 _leave(" = 1 [valid]");
1178 return 1;
1179
1180 /* the dirent, if it exists, now points to a different vnode */
David Howellsec268152007-04-26 15:49:28 -07001181not_found:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182 spin_lock(&dentry->d_lock);
1183 dentry->d_flags |= DCACHE_NFSFS_RENAMED;
1184 spin_unlock(&dentry->d_lock);
1185
David Howellsc435ee32017-11-02 15:27:49 +00001186out_bad_parent:
Al Viroa4555892014-10-21 20:11:25 -04001187 _debug("dropping dentry %pd2", dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001188 dput(parent);
David Howellsc435ee32017-11-02 15:27:49 +00001189out_bad:
David Howells00d3b7a2007-04-26 15:57:07 -07001190 key_put(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
1192 _leave(" = 0 [bad]");
1193 return 0;
David Howellsec268152007-04-26 15:49:28 -07001194}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196/*
1197 * allow the VFS to enquire as to whether a dentry should be unhashed (mustn't
1198 * sleep)
1199 * - called from dput() when d_count is going to 0.
1200 * - return 1 to request dentry be unhashed, 0 otherwise
1201 */
Nick Pigginfe15ce42011-01-07 17:49:23 +11001202static int afs_d_delete(const struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203{
Al Viroa4555892014-10-21 20:11:25 -04001204 _enter("%pd", dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
1206 if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
1207 goto zap;
1208
David Howells2b0143b2015-03-17 22:25:59 +00001209 if (d_really_is_positive(dentry) &&
1210 (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(d_inode(dentry))->flags) ||
1211 test_bit(AFS_VNODE_PSEUDODIR, &AFS_FS_I(d_inode(dentry))->flags)))
wangleibec5eb62010-08-11 09:38:04 +01001212 goto zap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
1214 _leave(" = 0 [keep]");
1215 return 0;
1216
David Howellsec268152007-04-26 15:49:28 -07001217zap:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 _leave(" = 1 [zap]");
1219 return 1;
David Howellsec268152007-04-26 15:49:28 -07001220}
David Howells260a9802007-04-26 15:59:35 -07001221
1222/*
David Howells79ddbfa2019-04-25 14:26:51 +01001223 * Clean up sillyrename files on dentry removal.
1224 */
1225static void afs_d_iput(struct dentry *dentry, struct inode *inode)
1226{
1227 if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
1228 afs_silly_iput(dentry, inode);
1229 iput(inode);
1230}
1231
1232/*
David Howells260a9802007-04-26 15:59:35 -07001233 * handle dentry release
1234 */
David Howells66c7e1d2018-04-06 14:17:25 +01001235void afs_d_release(struct dentry *dentry)
David Howells260a9802007-04-26 15:59:35 -07001236{
Al Viroa4555892014-10-21 20:11:25 -04001237 _enter("%pd", dentry);
David Howells260a9802007-04-26 15:59:35 -07001238}
1239
David Howells728279a2020-06-16 00:34:09 +01001240void afs_check_for_remote_deletion(struct afs_operation *op)
1241{
1242 struct afs_vnode *vnode = op->file[0].vnode;
1243
1244 switch (op->ac.abort_code) {
1245 case VNOVNODE:
1246 set_bit(AFS_VNODE_DELETED, &vnode->flags);
1247 afs_break_callback(vnode, afs_cb_break_for_deleted);
1248 }
1249}
1250
David Howells260a9802007-04-26 15:59:35 -07001251/*
David Howellsd2ddc772017-11-02 15:27:50 +00001252 * Create a new inode for create/mkdir/symlink
1253 */
David Howellse49c7b22020-04-10 20:51:51 +01001254static void afs_vnode_new_inode(struct afs_operation *op)
David Howellsd2ddc772017-11-02 15:27:50 +00001255{
David Howellse49c7b22020-04-10 20:51:51 +01001256 struct afs_vnode_param *vp = &op->file[1];
David Howells5a813272018-04-06 14:17:26 +01001257 struct afs_vnode *vnode;
David Howellsd2ddc772017-11-02 15:27:50 +00001258 struct inode *inode;
1259
David Howellse49c7b22020-04-10 20:51:51 +01001260 _enter("");
David Howellsd2ddc772017-11-02 15:27:50 +00001261
David Howellse49c7b22020-04-10 20:51:51 +01001262 ASSERTCMP(op->error, ==, 0);
1263
1264 inode = afs_iget(op, vp);
David Howellsd2ddc772017-11-02 15:27:50 +00001265 if (IS_ERR(inode)) {
1266 /* ENOMEM or EINTR at a really inconvenient time - just abandon
1267 * the new directory on the server.
1268 */
David Howellse49c7b22020-04-10 20:51:51 +01001269 op->error = PTR_ERR(inode);
David Howellsd2ddc772017-11-02 15:27:50 +00001270 return;
1271 }
1272
David Howells5a813272018-04-06 14:17:26 +01001273 vnode = AFS_FS_I(inode);
1274 set_bit(AFS_VNODE_NEW_CONTENT, &vnode->flags);
David Howellse49c7b22020-04-10 20:51:51 +01001275 if (!op->error)
1276 afs_cache_permit(vnode, op->key, vnode->cb_break, &vp->scb);
1277 d_instantiate(op->dentry, inode);
David Howellsd2ddc772017-11-02 15:27:50 +00001278}
1279
David Howellse49c7b22020-04-10 20:51:51 +01001280static void afs_create_success(struct afs_operation *op)
David Howellsb8359152019-05-14 12:23:43 +01001281{
David Howellse49c7b22020-04-10 20:51:51 +01001282 _enter("op=%08x", op->debug_id);
David Howellsda8d0752020-06-13 19:34:59 +01001283 op->ctime = op->file[0].scb.status.mtime_client;
David Howellse49c7b22020-04-10 20:51:51 +01001284 afs_vnode_commit_status(op, &op->file[0]);
1285 afs_update_dentry_version(op, &op->file[0], op->dentry);
1286 afs_vnode_new_inode(op);
David Howellsb8359152019-05-14 12:23:43 +01001287}
1288
David Howellse49c7b22020-04-10 20:51:51 +01001289static void afs_create_edit_dir(struct afs_operation *op)
David Howells9dd0b822019-07-30 14:38:52 +01001290{
David Howellse49c7b22020-04-10 20:51:51 +01001291 struct afs_vnode_param *dvp = &op->file[0];
1292 struct afs_vnode_param *vp = &op->file[1];
1293 struct afs_vnode *dvnode = dvp->vnode;
1294
1295 _enter("op=%08x", op->debug_id);
1296
1297 down_write(&dvnode->validate_lock);
1298 if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags) &&
1299 dvnode->status.data_version == dvp->dv_before + dvp->dv_delta)
1300 afs_edit_dir_add(dvnode, &op->dentry->d_name, &vp->fid,
1301 op->create.reason);
1302 up_write(&dvnode->validate_lock);
David Howells9dd0b822019-07-30 14:38:52 +01001303}
1304
David Howellse49c7b22020-04-10 20:51:51 +01001305static void afs_create_put(struct afs_operation *op)
1306{
1307 _enter("op=%08x", op->debug_id);
1308
1309 if (op->error)
1310 d_drop(op->dentry);
1311}
1312
1313static const struct afs_operation_ops afs_mkdir_operation = {
1314 .issue_afs_rpc = afs_fs_make_dir,
1315 .issue_yfs_rpc = yfs_fs_make_dir,
1316 .success = afs_create_success,
David Howells728279a2020-06-16 00:34:09 +01001317 .aborted = afs_check_for_remote_deletion,
David Howellse49c7b22020-04-10 20:51:51 +01001318 .edit_dir = afs_create_edit_dir,
1319 .put = afs_create_put,
1320};
1321
David Howells9dd0b822019-07-30 14:38:52 +01001322/*
David Howells260a9802007-04-26 15:59:35 -07001323 * create a directory on an AFS filesystem
1324 */
Al Viro18bb1db2011-07-26 01:41:39 -04001325static int afs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
David Howells260a9802007-04-26 15:59:35 -07001326{
David Howellse49c7b22020-04-10 20:51:51 +01001327 struct afs_operation *op;
David Howellsd2ddc772017-11-02 15:27:50 +00001328 struct afs_vnode *dvnode = AFS_FS_I(dir);
David Howells260a9802007-04-26 15:59:35 -07001329
David Howells3b6492d2018-10-20 00:57:57 +01001330 _enter("{%llx:%llu},{%pd},%ho",
Al Viroa4555892014-10-21 20:11:25 -04001331 dvnode->fid.vid, dvnode->fid.vnode, dentry, mode);
David Howells260a9802007-04-26 15:59:35 -07001332
David Howellse49c7b22020-04-10 20:51:51 +01001333 op = afs_alloc_operation(NULL, dvnode->volume);
1334 if (IS_ERR(op)) {
1335 d_drop(dentry);
1336 return PTR_ERR(op);
David Howells260a9802007-04-26 15:59:35 -07001337 }
1338
David Howellse49c7b22020-04-10 20:51:51 +01001339 afs_op_set_vnode(op, 0, dvnode);
1340 op->file[0].dv_delta = 1;
David Howellsda8d0752020-06-13 19:34:59 +01001341 op->file[0].update_ctime = true;
David Howellse49c7b22020-04-10 20:51:51 +01001342 op->dentry = dentry;
1343 op->create.mode = S_IFDIR | mode;
1344 op->create.reason = afs_edit_dir_for_mkdir;
1345 op->ops = &afs_mkdir_operation;
1346 return afs_do_sync_operation(op);
David Howells260a9802007-04-26 15:59:35 -07001347}
1348
1349/*
David Howellsd2ddc772017-11-02 15:27:50 +00001350 * Remove a subdir from a directory.
David Howells260a9802007-04-26 15:59:35 -07001351 */
David Howellsd2ddc772017-11-02 15:27:50 +00001352static void afs_dir_remove_subdir(struct dentry *dentry)
David Howells260a9802007-04-26 15:59:35 -07001353{
David Howells2b0143b2015-03-17 22:25:59 +00001354 if (d_really_is_positive(dentry)) {
David Howellsd2ddc772017-11-02 15:27:50 +00001355 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
1356
David Howells260a9802007-04-26 15:59:35 -07001357 clear_nlink(&vnode->vfs_inode);
1358 set_bit(AFS_VNODE_DELETED, &vnode->flags);
David Howellsc435ee32017-11-02 15:27:49 +00001359 clear_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
David Howells63a46812018-04-06 14:17:25 +01001360 clear_bit(AFS_VNODE_DIR_VALID, &vnode->flags);
David Howells260a9802007-04-26 15:59:35 -07001361 }
David Howells260a9802007-04-26 15:59:35 -07001362}
1363
David Howellse49c7b22020-04-10 20:51:51 +01001364static void afs_rmdir_success(struct afs_operation *op)
1365{
1366 _enter("op=%08x", op->debug_id);
David Howellsda8d0752020-06-13 19:34:59 +01001367 op->ctime = op->file[0].scb.status.mtime_client;
David Howellse49c7b22020-04-10 20:51:51 +01001368 afs_vnode_commit_status(op, &op->file[0]);
1369 afs_update_dentry_version(op, &op->file[0], op->dentry);
1370}
1371
1372static void afs_rmdir_edit_dir(struct afs_operation *op)
1373{
1374 struct afs_vnode_param *dvp = &op->file[0];
1375 struct afs_vnode *dvnode = dvp->vnode;
1376
1377 _enter("op=%08x", op->debug_id);
1378 afs_dir_remove_subdir(op->dentry);
1379
1380 down_write(&dvnode->validate_lock);
1381 if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags) &&
1382 dvnode->status.data_version == dvp->dv_before + dvp->dv_delta)
1383 afs_edit_dir_remove(dvnode, &op->dentry->d_name,
1384 afs_edit_dir_for_rmdir);
1385 up_write(&dvnode->validate_lock);
1386}
1387
1388static void afs_rmdir_put(struct afs_operation *op)
1389{
1390 _enter("op=%08x", op->debug_id);
1391 if (op->file[1].vnode)
1392 up_write(&op->file[1].vnode->rmdir_lock);
1393}
1394
1395static const struct afs_operation_ops afs_rmdir_operation = {
1396 .issue_afs_rpc = afs_fs_remove_dir,
1397 .issue_yfs_rpc = yfs_fs_remove_dir,
1398 .success = afs_rmdir_success,
David Howells728279a2020-06-16 00:34:09 +01001399 .aborted = afs_check_for_remote_deletion,
David Howellse49c7b22020-04-10 20:51:51 +01001400 .edit_dir = afs_rmdir_edit_dir,
1401 .put = afs_rmdir_put,
1402};
1403
David Howells260a9802007-04-26 15:59:35 -07001404/*
David Howellsd2ddc772017-11-02 15:27:50 +00001405 * remove a directory from an AFS filesystem
David Howells260a9802007-04-26 15:59:35 -07001406 */
David Howellsd2ddc772017-11-02 15:27:50 +00001407static int afs_rmdir(struct inode *dir, struct dentry *dentry)
David Howells260a9802007-04-26 15:59:35 -07001408{
David Howellse49c7b22020-04-10 20:51:51 +01001409 struct afs_operation *op;
David Howellsf58db832018-10-20 00:57:58 +01001410 struct afs_vnode *dvnode = AFS_FS_I(dir), *vnode = NULL;
David Howells260a9802007-04-26 15:59:35 -07001411 int ret;
1412
David Howells3b6492d2018-10-20 00:57:57 +01001413 _enter("{%llx:%llu},{%pd}",
Al Viroa4555892014-10-21 20:11:25 -04001414 dvnode->fid.vid, dvnode->fid.vnode, dentry);
David Howells260a9802007-04-26 15:59:35 -07001415
David Howellse49c7b22020-04-10 20:51:51 +01001416 op = afs_alloc_operation(NULL, dvnode->volume);
1417 if (IS_ERR(op))
1418 return PTR_ERR(op);
David Howellsa58823a2019-05-09 15:16:10 +01001419
David Howellse49c7b22020-04-10 20:51:51 +01001420 afs_op_set_vnode(op, 0, dvnode);
1421 op->file[0].dv_delta = 1;
David Howellsda8d0752020-06-13 19:34:59 +01001422 op->file[0].update_ctime = true;
David Howellse49c7b22020-04-10 20:51:51 +01001423
1424 op->dentry = dentry;
1425 op->ops = &afs_rmdir_operation;
David Howells260a9802007-04-26 15:59:35 -07001426
David Howellsf58db832018-10-20 00:57:58 +01001427 /* Try to make sure we have a callback promise on the victim. */
1428 if (d_really_is_positive(dentry)) {
1429 vnode = AFS_FS_I(d_inode(dentry));
David Howellse49c7b22020-04-10 20:51:51 +01001430 ret = afs_validate(vnode, op->key);
David Howellsf58db832018-10-20 00:57:58 +01001431 if (ret < 0)
David Howellse49c7b22020-04-10 20:51:51 +01001432 goto error;
David Howellsf58db832018-10-20 00:57:58 +01001433 }
1434
David Howells79ddbfa2019-04-25 14:26:51 +01001435 if (vnode) {
1436 ret = down_write_killable(&vnode->rmdir_lock);
1437 if (ret < 0)
David Howellse49c7b22020-04-10 20:51:51 +01001438 goto error;
1439 op->file[1].vnode = vnode;
David Howells79ddbfa2019-04-25 14:26:51 +01001440 }
1441
David Howellse49c7b22020-04-10 20:51:51 +01001442 return afs_do_sync_operation(op);
David Howellsa58823a2019-05-09 15:16:10 +01001443
David Howellsd2ddc772017-11-02 15:27:50 +00001444error:
David Howellse49c7b22020-04-10 20:51:51 +01001445 return afs_put_operation(op);
David Howellsd2ddc772017-11-02 15:27:50 +00001446}
David Howells260a9802007-04-26 15:59:35 -07001447
David Howellsd2ddc772017-11-02 15:27:50 +00001448/*
1449 * Remove a link to a file or symlink from a directory.
1450 *
1451 * If the file was not deleted due to excess hard links, the fileserver will
1452 * break the callback promise on the file - if it had one - before it returns
1453 * to us, and if it was deleted, it won't
1454 *
1455 * However, if we didn't have a callback promise outstanding, or it was
1456 * outstanding on a different server, then it won't break it either...
1457 */
David Howellse49c7b22020-04-10 20:51:51 +01001458static void afs_dir_remove_link(struct afs_operation *op)
David Howellsd2ddc772017-11-02 15:27:50 +00001459{
David Howellse49c7b22020-04-10 20:51:51 +01001460 struct afs_vnode *dvnode = op->file[0].vnode;
1461 struct afs_vnode *vnode = op->file[1].vnode;
1462 struct dentry *dentry = op->dentry;
1463 int ret;
David Howellsd2ddc772017-11-02 15:27:50 +00001464
David Howellse49c7b22020-04-10 20:51:51 +01001465 if (op->error != 0 ||
1466 (op->file[1].scb.have_status && op->file[1].scb.have_error))
1467 return;
1468 if (d_really_is_positive(dentry))
1469 return;
David Howellsd2ddc772017-11-02 15:27:50 +00001470
David Howellse49c7b22020-04-10 20:51:51 +01001471 if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
1472 /* Already done */
1473 } else if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags)) {
1474 write_seqlock(&vnode->cb_lock);
1475 drop_nlink(&vnode->vfs_inode);
1476 if (vnode->vfs_inode.i_nlink == 0) {
1477 set_bit(AFS_VNODE_DELETED, &vnode->flags);
1478 __afs_break_callback(vnode, afs_cb_break_for_unlink);
David Howells440fbc32018-01-02 10:02:19 +00001479 }
David Howellse49c7b22020-04-10 20:51:51 +01001480 write_sequnlock(&vnode->cb_lock);
1481 } else {
1482 afs_break_callback(vnode, afs_cb_break_for_unlink);
1483
1484 if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
1485 _debug("AFS_VNODE_DELETED");
1486
1487 ret = afs_validate(vnode, op->key);
1488 if (ret != -ESTALE)
1489 op->error = ret;
David Howellsd2ddc772017-11-02 15:27:50 +00001490 }
1491
David Howellse49c7b22020-04-10 20:51:51 +01001492 _debug("nlink %d [val %d]", vnode->vfs_inode.i_nlink, op->error);
David Howellsd2ddc772017-11-02 15:27:50 +00001493}
1494
David Howellse49c7b22020-04-10 20:51:51 +01001495static void afs_unlink_success(struct afs_operation *op)
1496{
1497 _enter("op=%08x", op->debug_id);
David Howellsda8d0752020-06-13 19:34:59 +01001498 op->ctime = op->file[0].scb.status.mtime_client;
David Howellsb6489a42020-06-15 17:36:58 +01001499 afs_check_dir_conflict(op, &op->file[0]);
David Howellse49c7b22020-04-10 20:51:51 +01001500 afs_vnode_commit_status(op, &op->file[0]);
1501 afs_vnode_commit_status(op, &op->file[1]);
1502 afs_update_dentry_version(op, &op->file[0], op->dentry);
1503 afs_dir_remove_link(op);
1504}
1505
1506static void afs_unlink_edit_dir(struct afs_operation *op)
1507{
1508 struct afs_vnode_param *dvp = &op->file[0];
1509 struct afs_vnode *dvnode = dvp->vnode;
1510
1511 _enter("op=%08x", op->debug_id);
1512 down_write(&dvnode->validate_lock);
1513 if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags) &&
1514 dvnode->status.data_version == dvp->dv_before + dvp->dv_delta)
1515 afs_edit_dir_remove(dvnode, &op->dentry->d_name,
1516 afs_edit_dir_for_unlink);
1517 up_write(&dvnode->validate_lock);
1518}
1519
1520static void afs_unlink_put(struct afs_operation *op)
1521{
1522 _enter("op=%08x", op->debug_id);
1523 if (op->unlink.need_rehash && op->error < 0 && op->error != -ENOENT)
1524 d_rehash(op->dentry);
1525}
1526
1527static const struct afs_operation_ops afs_unlink_operation = {
1528 .issue_afs_rpc = afs_fs_remove_file,
1529 .issue_yfs_rpc = yfs_fs_remove_file,
1530 .success = afs_unlink_success,
David Howells728279a2020-06-16 00:34:09 +01001531 .aborted = afs_check_for_remote_deletion,
David Howellse49c7b22020-04-10 20:51:51 +01001532 .edit_dir = afs_unlink_edit_dir,
1533 .put = afs_unlink_put,
1534};
1535
David Howellsd2ddc772017-11-02 15:27:50 +00001536/*
1537 * Remove a file or symlink from an AFS filesystem.
1538 */
1539static int afs_unlink(struct inode *dir, struct dentry *dentry)
1540{
David Howellse49c7b22020-04-10 20:51:51 +01001541 struct afs_operation *op;
David Howellsfa59f522019-06-20 18:12:16 +01001542 struct afs_vnode *dvnode = AFS_FS_I(dir);
1543 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
David Howellsd2ddc772017-11-02 15:27:50 +00001544 int ret;
1545
David Howells3b6492d2018-10-20 00:57:57 +01001546 _enter("{%llx:%llu},{%pd}",
David Howellsd2ddc772017-11-02 15:27:50 +00001547 dvnode->fid.vid, dvnode->fid.vnode, dentry);
1548
1549 if (dentry->d_name.len >= AFSNAMEMAX)
1550 return -ENAMETOOLONG;
1551
David Howellse49c7b22020-04-10 20:51:51 +01001552 op = afs_alloc_operation(NULL, dvnode->volume);
1553 if (IS_ERR(op))
1554 return PTR_ERR(op);
David Howellsa58823a2019-05-09 15:16:10 +01001555
David Howellse49c7b22020-04-10 20:51:51 +01001556 afs_op_set_vnode(op, 0, dvnode);
1557 op->file[0].dv_delta = 1;
David Howellsda8d0752020-06-13 19:34:59 +01001558 op->file[0].update_ctime = true;
David Howellsd2ddc772017-11-02 15:27:50 +00001559
1560 /* Try to make sure we have a callback promise on the victim. */
David Howellse49c7b22020-04-10 20:51:51 +01001561 ret = afs_validate(vnode, op->key);
1562 if (ret < 0) {
1563 op->error = ret;
1564 goto error;
1565 }
David Howellsd2ddc772017-11-02 15:27:50 +00001566
David Howells79ddbfa2019-04-25 14:26:51 +01001567 spin_lock(&dentry->d_lock);
David Howellsfa59f522019-06-20 18:12:16 +01001568 if (d_count(dentry) > 1) {
David Howells79ddbfa2019-04-25 14:26:51 +01001569 spin_unlock(&dentry->d_lock);
1570 /* Start asynchronous writeout of the inode */
1571 write_inode_now(d_inode(dentry), 0);
David Howellse49c7b22020-04-10 20:51:51 +01001572 op->error = afs_sillyrename(dvnode, vnode, dentry, op->key);
1573 goto error;
David Howells79ddbfa2019-04-25 14:26:51 +01001574 }
1575 if (!d_unhashed(dentry)) {
1576 /* Prevent a race with RCU lookup. */
1577 __d_drop(dentry);
David Howellse49c7b22020-04-10 20:51:51 +01001578 op->unlink.need_rehash = true;
David Howells79ddbfa2019-04-25 14:26:51 +01001579 }
1580 spin_unlock(&dentry->d_lock);
1581
David Howellse49c7b22020-04-10 20:51:51 +01001582 op->file[1].vnode = vnode;
David Howellsda8d0752020-06-13 19:34:59 +01001583 op->file[1].update_ctime = true;
David Howellsb6489a42020-06-15 17:36:58 +01001584 op->file[1].op_unlinked = true;
David Howellse49c7b22020-04-10 20:51:51 +01001585 op->dentry = dentry;
1586 op->ops = &afs_unlink_operation;
David Howellsb6489a42020-06-15 17:36:58 +01001587 afs_begin_vnode_operation(op);
1588 afs_wait_for_operation(op);
1589
1590 /* If there was a conflict with a third party, check the status of the
1591 * unlinked vnode.
1592 */
1593 if (op->error == 0 && (op->flags & AFS_OPERATION_DIR_CONFLICT)) {
1594 op->file[1].update_ctime = false;
1595 op->fetch_status.which = 1;
1596 op->ops = &afs_fetch_status_operation;
1597 afs_begin_vnode_operation(op);
1598 afs_wait_for_operation(op);
1599 }
1600
1601 return afs_put_operation(op);
David Howellsa58823a2019-05-09 15:16:10 +01001602
David Howells260a9802007-04-26 15:59:35 -07001603error:
David Howellse49c7b22020-04-10 20:51:51 +01001604 return afs_put_operation(op);
David Howells260a9802007-04-26 15:59:35 -07001605}
1606
David Howellse49c7b22020-04-10 20:51:51 +01001607static const struct afs_operation_ops afs_create_operation = {
1608 .issue_afs_rpc = afs_fs_create_file,
1609 .issue_yfs_rpc = yfs_fs_create_file,
1610 .success = afs_create_success,
David Howells728279a2020-06-16 00:34:09 +01001611 .aborted = afs_check_for_remote_deletion,
David Howellse49c7b22020-04-10 20:51:51 +01001612 .edit_dir = afs_create_edit_dir,
1613 .put = afs_create_put,
1614};
1615
David Howells260a9802007-04-26 15:59:35 -07001616/*
1617 * create a regular file on an AFS filesystem
1618 */
Al Viro4acdaf22011-07-26 01:42:34 -04001619static int afs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -04001620 bool excl)
David Howells260a9802007-04-26 15:59:35 -07001621{
David Howellse49c7b22020-04-10 20:51:51 +01001622 struct afs_operation *op;
Colin Ian King43dd3882017-11-20 13:58:20 +00001623 struct afs_vnode *dvnode = AFS_FS_I(dir);
David Howellse49c7b22020-04-10 20:51:51 +01001624 int ret = -ENAMETOOLONG;
David Howells260a9802007-04-26 15:59:35 -07001625
David Howellse49c7b22020-04-10 20:51:51 +01001626 _enter("{%llx:%llu},{%pd},%ho",
Al Viroa4555892014-10-21 20:11:25 -04001627 dvnode->fid.vid, dvnode->fid.vnode, dentry, mode);
David Howells260a9802007-04-26 15:59:35 -07001628
David Howellsd2ddc772017-11-02 15:27:50 +00001629 if (dentry->d_name.len >= AFSNAMEMAX)
1630 goto error;
1631
David Howellse49c7b22020-04-10 20:51:51 +01001632 op = afs_alloc_operation(NULL, dvnode->volume);
1633 if (IS_ERR(op)) {
1634 ret = PTR_ERR(op);
David Howells260a9802007-04-26 15:59:35 -07001635 goto error;
1636 }
1637
David Howellse49c7b22020-04-10 20:51:51 +01001638 afs_op_set_vnode(op, 0, dvnode);
1639 op->file[0].dv_delta = 1;
David Howellsda8d0752020-06-13 19:34:59 +01001640 op->file[0].update_ctime = true;
David Howellsa58823a2019-05-09 15:16:10 +01001641
David Howellse49c7b22020-04-10 20:51:51 +01001642 op->dentry = dentry;
1643 op->create.mode = S_IFREG | mode;
1644 op->create.reason = afs_edit_dir_for_create;
1645 op->ops = &afs_create_operation;
1646 return afs_do_sync_operation(op);
David Howellsa58823a2019-05-09 15:16:10 +01001647
David Howells260a9802007-04-26 15:59:35 -07001648error:
1649 d_drop(dentry);
1650 _leave(" = %d", ret);
1651 return ret;
1652}
1653
David Howellse49c7b22020-04-10 20:51:51 +01001654static void afs_link_success(struct afs_operation *op)
1655{
1656 struct afs_vnode_param *dvp = &op->file[0];
1657 struct afs_vnode_param *vp = &op->file[1];
1658
1659 _enter("op=%08x", op->debug_id);
David Howellsda8d0752020-06-13 19:34:59 +01001660 op->ctime = dvp->scb.status.mtime_client;
David Howellse49c7b22020-04-10 20:51:51 +01001661 afs_vnode_commit_status(op, dvp);
1662 afs_vnode_commit_status(op, vp);
1663 afs_update_dentry_version(op, dvp, op->dentry);
1664 if (op->dentry_2->d_parent == op->dentry->d_parent)
1665 afs_update_dentry_version(op, dvp, op->dentry_2);
1666 ihold(&vp->vnode->vfs_inode);
1667 d_instantiate(op->dentry, &vp->vnode->vfs_inode);
1668}
1669
1670static void afs_link_put(struct afs_operation *op)
1671{
1672 _enter("op=%08x", op->debug_id);
1673 if (op->error)
1674 d_drop(op->dentry);
1675}
1676
1677static const struct afs_operation_ops afs_link_operation = {
1678 .issue_afs_rpc = afs_fs_link,
1679 .issue_yfs_rpc = yfs_fs_link,
1680 .success = afs_link_success,
David Howells728279a2020-06-16 00:34:09 +01001681 .aborted = afs_check_for_remote_deletion,
David Howellse49c7b22020-04-10 20:51:51 +01001682 .edit_dir = afs_create_edit_dir,
1683 .put = afs_link_put,
1684};
1685
David Howells260a9802007-04-26 15:59:35 -07001686/*
1687 * create a hard link between files in an AFS filesystem
1688 */
1689static int afs_link(struct dentry *from, struct inode *dir,
1690 struct dentry *dentry)
1691{
David Howellse49c7b22020-04-10 20:51:51 +01001692 struct afs_operation *op;
David Howellsa58823a2019-05-09 15:16:10 +01001693 struct afs_vnode *dvnode = AFS_FS_I(dir);
1694 struct afs_vnode *vnode = AFS_FS_I(d_inode(from));
David Howellse49c7b22020-04-10 20:51:51 +01001695 int ret = -ENAMETOOLONG;
David Howells260a9802007-04-26 15:59:35 -07001696
David Howells3b6492d2018-10-20 00:57:57 +01001697 _enter("{%llx:%llu},{%llx:%llu},{%pd}",
David Howells260a9802007-04-26 15:59:35 -07001698 vnode->fid.vid, vnode->fid.vnode,
1699 dvnode->fid.vid, dvnode->fid.vnode,
Al Viroa4555892014-10-21 20:11:25 -04001700 dentry);
David Howells260a9802007-04-26 15:59:35 -07001701
David Howellsd2ddc772017-11-02 15:27:50 +00001702 if (dentry->d_name.len >= AFSNAMEMAX)
1703 goto error;
1704
David Howellse49c7b22020-04-10 20:51:51 +01001705 op = afs_alloc_operation(NULL, dvnode->volume);
1706 if (IS_ERR(op)) {
1707 ret = PTR_ERR(op);
David Howellsa58823a2019-05-09 15:16:10 +01001708 goto error;
David Howells260a9802007-04-26 15:59:35 -07001709 }
1710
David Howellse49c7b22020-04-10 20:51:51 +01001711 afs_op_set_vnode(op, 0, dvnode);
1712 afs_op_set_vnode(op, 1, vnode);
1713 op->file[0].dv_delta = 1;
David Howellsda8d0752020-06-13 19:34:59 +01001714 op->file[0].update_ctime = true;
1715 op->file[1].update_ctime = true;
David Howellsa58823a2019-05-09 15:16:10 +01001716
David Howellse49c7b22020-04-10 20:51:51 +01001717 op->dentry = dentry;
1718 op->dentry_2 = from;
1719 op->ops = &afs_link_operation;
1720 op->create.reason = afs_edit_dir_for_link;
1721 return afs_do_sync_operation(op);
David Howells260a9802007-04-26 15:59:35 -07001722
David Howells260a9802007-04-26 15:59:35 -07001723error:
1724 d_drop(dentry);
1725 _leave(" = %d", ret);
1726 return ret;
1727}
1728
David Howellse49c7b22020-04-10 20:51:51 +01001729static const struct afs_operation_ops afs_symlink_operation = {
1730 .issue_afs_rpc = afs_fs_symlink,
1731 .issue_yfs_rpc = yfs_fs_symlink,
1732 .success = afs_create_success,
David Howells728279a2020-06-16 00:34:09 +01001733 .aborted = afs_check_for_remote_deletion,
David Howellse49c7b22020-04-10 20:51:51 +01001734 .edit_dir = afs_create_edit_dir,
1735 .put = afs_create_put,
1736};
1737
David Howells260a9802007-04-26 15:59:35 -07001738/*
1739 * create a symlink in an AFS filesystem
1740 */
1741static int afs_symlink(struct inode *dir, struct dentry *dentry,
1742 const char *content)
1743{
David Howellse49c7b22020-04-10 20:51:51 +01001744 struct afs_operation *op;
David Howellsd2ddc772017-11-02 15:27:50 +00001745 struct afs_vnode *dvnode = AFS_FS_I(dir);
David Howells260a9802007-04-26 15:59:35 -07001746 int ret;
1747
David Howells3b6492d2018-10-20 00:57:57 +01001748 _enter("{%llx:%llu},{%pd},%s",
Al Viroa4555892014-10-21 20:11:25 -04001749 dvnode->fid.vid, dvnode->fid.vnode, dentry,
David Howells260a9802007-04-26 15:59:35 -07001750 content);
1751
David Howellsd2ddc772017-11-02 15:27:50 +00001752 ret = -ENAMETOOLONG;
1753 if (dentry->d_name.len >= AFSNAMEMAX)
1754 goto error;
1755
David Howells260a9802007-04-26 15:59:35 -07001756 ret = -EINVAL;
David Howells45222b92007-05-10 22:22:20 -07001757 if (strlen(content) >= AFSPATHMAX)
David Howells260a9802007-04-26 15:59:35 -07001758 goto error;
1759
David Howellse49c7b22020-04-10 20:51:51 +01001760 op = afs_alloc_operation(NULL, dvnode->volume);
1761 if (IS_ERR(op)) {
1762 ret = PTR_ERR(op);
David Howellsa58823a2019-05-09 15:16:10 +01001763 goto error;
David Howells260a9802007-04-26 15:59:35 -07001764 }
1765
David Howellse49c7b22020-04-10 20:51:51 +01001766 afs_op_set_vnode(op, 0, dvnode);
1767 op->file[0].dv_delta = 1;
David Howellsa58823a2019-05-09 15:16:10 +01001768
David Howellse49c7b22020-04-10 20:51:51 +01001769 op->dentry = dentry;
1770 op->ops = &afs_symlink_operation;
1771 op->create.reason = afs_edit_dir_for_symlink;
1772 op->create.symlink = content;
1773 return afs_do_sync_operation(op);
David Howells260a9802007-04-26 15:59:35 -07001774
David Howells260a9802007-04-26 15:59:35 -07001775error:
1776 d_drop(dentry);
1777 _leave(" = %d", ret);
1778 return ret;
1779}
1780
David Howellse49c7b22020-04-10 20:51:51 +01001781static void afs_rename_success(struct afs_operation *op)
1782{
1783 _enter("op=%08x", op->debug_id);
1784
David Howellsda8d0752020-06-13 19:34:59 +01001785 op->ctime = op->file[0].scb.status.mtime_client;
David Howellsb6489a42020-06-15 17:36:58 +01001786 afs_check_dir_conflict(op, &op->file[1]);
David Howellse49c7b22020-04-10 20:51:51 +01001787 afs_vnode_commit_status(op, &op->file[0]);
David Howellsda8d0752020-06-13 19:34:59 +01001788 if (op->file[1].vnode != op->file[0].vnode) {
1789 op->ctime = op->file[1].scb.status.mtime_client;
David Howellse49c7b22020-04-10 20:51:51 +01001790 afs_vnode_commit_status(op, &op->file[1]);
David Howellsda8d0752020-06-13 19:34:59 +01001791 }
David Howellse49c7b22020-04-10 20:51:51 +01001792}
1793
1794static void afs_rename_edit_dir(struct afs_operation *op)
1795{
1796 struct afs_vnode_param *orig_dvp = &op->file[0];
1797 struct afs_vnode_param *new_dvp = &op->file[1];
1798 struct afs_vnode *orig_dvnode = orig_dvp->vnode;
1799 struct afs_vnode *new_dvnode = new_dvp->vnode;
1800 struct afs_vnode *vnode = AFS_FS_I(d_inode(op->dentry));
1801 struct dentry *old_dentry = op->dentry;
1802 struct dentry *new_dentry = op->dentry_2;
1803 struct inode *new_inode;
1804
1805 _enter("op=%08x", op->debug_id);
1806
1807 if (op->rename.rehash) {
1808 d_rehash(op->rename.rehash);
1809 op->rename.rehash = NULL;
1810 }
1811
1812 down_write(&orig_dvnode->validate_lock);
1813 if (test_bit(AFS_VNODE_DIR_VALID, &orig_dvnode->flags) &&
1814 orig_dvnode->status.data_version == orig_dvp->dv_before + orig_dvp->dv_delta)
1815 afs_edit_dir_remove(orig_dvnode, &old_dentry->d_name,
1816 afs_edit_dir_for_rename_0);
1817
1818 if (new_dvnode != orig_dvnode) {
1819 up_write(&orig_dvnode->validate_lock);
1820 down_write(&new_dvnode->validate_lock);
1821 }
1822
1823 if (test_bit(AFS_VNODE_DIR_VALID, &new_dvnode->flags) &&
1824 new_dvnode->status.data_version == new_dvp->dv_before + new_dvp->dv_delta) {
1825 if (!op->rename.new_negative)
1826 afs_edit_dir_remove(new_dvnode, &new_dentry->d_name,
1827 afs_edit_dir_for_rename_1);
1828
1829 afs_edit_dir_add(new_dvnode, &new_dentry->d_name,
1830 &vnode->fid, afs_edit_dir_for_rename_2);
1831 }
1832
1833 new_inode = d_inode(new_dentry);
1834 if (new_inode) {
1835 spin_lock(&new_inode->i_lock);
1836 if (new_inode->i_nlink > 0)
1837 drop_nlink(new_inode);
1838 spin_unlock(&new_inode->i_lock);
1839 }
1840
1841 /* Now we can update d_fsdata on the dentries to reflect their
1842 * new parent's data_version.
1843 *
1844 * Note that if we ever implement RENAME_EXCHANGE, we'll have
1845 * to update both dentries with opposing dir versions.
1846 */
1847 afs_update_dentry_version(op, new_dvp, op->dentry);
1848 afs_update_dentry_version(op, new_dvp, op->dentry_2);
1849
1850 d_move(old_dentry, new_dentry);
1851
1852 up_write(&new_dvnode->validate_lock);
1853}
1854
1855static void afs_rename_put(struct afs_operation *op)
1856{
1857 _enter("op=%08x", op->debug_id);
1858 if (op->rename.rehash)
1859 d_rehash(op->rename.rehash);
1860 dput(op->rename.tmp);
1861 if (op->error)
1862 d_rehash(op->dentry);
1863}
1864
1865static const struct afs_operation_ops afs_rename_operation = {
1866 .issue_afs_rpc = afs_fs_rename,
1867 .issue_yfs_rpc = yfs_fs_rename,
1868 .success = afs_rename_success,
1869 .edit_dir = afs_rename_edit_dir,
1870 .put = afs_rename_put,
1871};
1872
David Howells260a9802007-04-26 15:59:35 -07001873/*
1874 * rename a file in an AFS filesystem and/or move it between directories
1875 */
1876static int afs_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02001877 struct inode *new_dir, struct dentry *new_dentry,
1878 unsigned int flags)
David Howells260a9802007-04-26 15:59:35 -07001879{
David Howellse49c7b22020-04-10 20:51:51 +01001880 struct afs_operation *op;
David Howells260a9802007-04-26 15:59:35 -07001881 struct afs_vnode *orig_dvnode, *new_dvnode, *vnode;
David Howells260a9802007-04-26 15:59:35 -07001882 int ret;
1883
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02001884 if (flags)
1885 return -EINVAL;
1886
David Howells79ddbfa2019-04-25 14:26:51 +01001887 /* Don't allow silly-rename files be moved around. */
1888 if (old_dentry->d_flags & DCACHE_NFSFS_RENAMED)
1889 return -EINVAL;
1890
David Howells2b0143b2015-03-17 22:25:59 +00001891 vnode = AFS_FS_I(d_inode(old_dentry));
David Howells260a9802007-04-26 15:59:35 -07001892 orig_dvnode = AFS_FS_I(old_dir);
1893 new_dvnode = AFS_FS_I(new_dir);
1894
David Howells3b6492d2018-10-20 00:57:57 +01001895 _enter("{%llx:%llu},{%llx:%llu},{%llx:%llu},{%pd}",
David Howells260a9802007-04-26 15:59:35 -07001896 orig_dvnode->fid.vid, orig_dvnode->fid.vnode,
1897 vnode->fid.vid, vnode->fid.vnode,
1898 new_dvnode->fid.vid, new_dvnode->fid.vnode,
Al Viroa4555892014-10-21 20:11:25 -04001899 new_dentry);
David Howells260a9802007-04-26 15:59:35 -07001900
David Howellse49c7b22020-04-10 20:51:51 +01001901 op = afs_alloc_operation(NULL, orig_dvnode->volume);
1902 if (IS_ERR(op))
1903 return PTR_ERR(op);
David Howellsa58823a2019-05-09 15:16:10 +01001904
David Howellse49c7b22020-04-10 20:51:51 +01001905 afs_op_set_vnode(op, 0, orig_dvnode);
1906 afs_op_set_vnode(op, 1, new_dvnode); /* May be same as orig_dvnode */
1907 op->file[0].dv_delta = 1;
1908 op->file[1].dv_delta = 1;
David Howellsda8d0752020-06-13 19:34:59 +01001909 op->file[0].update_ctime = true;
1910 op->file[1].update_ctime = true;
David Howellse49c7b22020-04-10 20:51:51 +01001911
1912 op->dentry = old_dentry;
1913 op->dentry_2 = new_dentry;
1914 op->rename.new_negative = d_is_negative(new_dentry);
1915 op->ops = &afs_rename_operation;
David Howells260a9802007-04-26 15:59:35 -07001916
David Howells79ddbfa2019-04-25 14:26:51 +01001917 /* For non-directories, check whether the target is busy and if so,
1918 * make a copy of the dentry and then do a silly-rename. If the
1919 * silly-rename succeeds, the copied dentry is hashed and becomes the
1920 * new target.
1921 */
1922 if (d_is_positive(new_dentry) && !d_is_dir(new_dentry)) {
1923 /* To prevent any new references to the target during the
1924 * rename, we unhash the dentry in advance.
1925 */
1926 if (!d_unhashed(new_dentry)) {
1927 d_drop(new_dentry);
David Howellse49c7b22020-04-10 20:51:51 +01001928 op->rename.rehash = new_dentry;
David Howells79ddbfa2019-04-25 14:26:51 +01001929 }
1930
1931 if (d_count(new_dentry) > 2) {
1932 /* copy the target dentry's name */
1933 ret = -ENOMEM;
David Howellse49c7b22020-04-10 20:51:51 +01001934 op->rename.tmp = d_alloc(new_dentry->d_parent,
1935 &new_dentry->d_name);
1936 if (!op->rename.tmp)
1937 goto error;
David Howells79ddbfa2019-04-25 14:26:51 +01001938
1939 ret = afs_sillyrename(new_dvnode,
1940 AFS_FS_I(d_inode(new_dentry)),
David Howellse49c7b22020-04-10 20:51:51 +01001941 new_dentry, op->key);
David Howells79ddbfa2019-04-25 14:26:51 +01001942 if (ret)
David Howellse49c7b22020-04-10 20:51:51 +01001943 goto error;
David Howells79ddbfa2019-04-25 14:26:51 +01001944
David Howellse49c7b22020-04-10 20:51:51 +01001945 op->dentry_2 = op->rename.tmp;
1946 op->rename.rehash = NULL;
1947 op->rename.new_negative = true;
David Howells79ddbfa2019-04-25 14:26:51 +01001948 }
1949 }
1950
David Howells9dd0b822019-07-30 14:38:52 +01001951 /* This bit is potentially nasty as there's a potential race with
1952 * afs_d_revalidate{,_rcu}(). We have to change d_fsdata on the dentry
1953 * to reflect it's new parent's new data_version after the op, but
1954 * d_revalidate may see old_dentry between the op having taken place
1955 * and the version being updated.
1956 *
1957 * So drop the old_dentry for now to make other threads go through
1958 * lookup instead - which we hold a lock against.
1959 */
1960 d_drop(old_dentry);
1961
David Howellse49c7b22020-04-10 20:51:51 +01001962 return afs_do_sync_operation(op);
David Howellsa58823a2019-05-09 15:16:10 +01001963
David Howells260a9802007-04-26 15:59:35 -07001964error:
David Howellse49c7b22020-04-10 20:51:51 +01001965 return afs_put_operation(op);
David Howells260a9802007-04-26 15:59:35 -07001966}
David Howellsf3ddee82018-04-06 14:17:25 +01001967
1968/*
1969 * Release a directory page and clean up its private state if it's not busy
1970 * - return true if the page can now be released, false if not
1971 */
1972static int afs_dir_releasepage(struct page *page, gfp_t gfp_flags)
1973{
1974 struct afs_vnode *dvnode = AFS_FS_I(page->mapping->host);
1975
David Howells3b6492d2018-10-20 00:57:57 +01001976 _enter("{{%llx:%llu}[%lu]}", dvnode->fid.vid, dvnode->fid.vnode, page->index);
David Howellsf3ddee82018-04-06 14:17:25 +01001977
1978 set_page_private(page, 0);
1979 ClearPagePrivate(page);
1980
1981 /* The directory will need reloading. */
1982 if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1983 afs_stat_v(dvnode, n_relpg);
1984 return 1;
1985}
1986
1987/*
1988 * invalidate part or all of a page
1989 * - release a page and clean up its private data if offset is 0 (indicating
1990 * the entire page)
1991 */
1992static void afs_dir_invalidatepage(struct page *page, unsigned int offset,
1993 unsigned int length)
1994{
1995 struct afs_vnode *dvnode = AFS_FS_I(page->mapping->host);
1996
1997 _enter("{%lu},%u,%u", page->index, offset, length);
1998
1999 BUG_ON(!PageLocked(page));
2000
2001 /* The directory will need reloading. */
2002 if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
2003 afs_stat_v(dvnode, n_inval);
2004
2005 /* we clean up only if the entire page is being invalidated */
2006 if (offset == 0 && length == PAGE_SIZE) {
2007 set_page_private(page, 0);
2008 ClearPagePrivate(page);
2009 }
2010}