blob: 855bf2b79fed4117559f6f011cacd3b43f74b927 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* dir.c: AFS filesystem directory handling
2 *
David Howellsf3ddee82018-04-06 14:17:25 +01003 * Copyright (C) 2002, 2018 Red Hat, Inc. All Rights Reserved.
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 * Written by David Howells (dhowells@redhat.com)
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
10 */
11
12#include <linux/kernel.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013#include <linux/fs.h>
Nick Piggin34286d62011-01-07 17:49:57 +110014#include <linux/namei.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/pagemap.h>
David Howellsf3ddee82018-04-06 14:17:25 +010016#include <linux/swap.h>
David Howells00d3b7a2007-04-26 15:57:07 -070017#include <linux/ctype.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040018#include <linux/sched.h>
David Howellsf3ddee82018-04-06 14:17:25 +010019#include <linux/task_io_accounting_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include "internal.h"
David Howells4ea219a2018-04-06 14:17:25 +010021#include "xdr_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070022
David Howells260a9802007-04-26 15:59:35 -070023static struct dentry *afs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -040024 unsigned int flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070025static int afs_dir_open(struct inode *inode, struct file *file);
Al Viro1bbae9f2013-05-22 16:31:14 -040026static int afs_readdir(struct file *file, struct dir_context *ctx);
Al Viro0b728e12012-06-10 16:03:43 -040027static int afs_d_revalidate(struct dentry *dentry, unsigned int flags);
Nick Pigginfe15ce42011-01-07 17:49:23 +110028static int afs_d_delete(const struct dentry *dentry);
David Howells5cf9dd52018-04-09 21:12:31 +010029static int afs_lookup_one_filldir(struct dir_context *ctx, const char *name, int nlen,
David Howellsafefdbb2006-10-03 01:13:46 -070030 loff_t fpos, u64 ino, unsigned dtype);
David Howells5cf9dd52018-04-09 21:12:31 +010031static int afs_lookup_filldir(struct dir_context *ctx, const char *name, int nlen,
32 loff_t fpos, u64 ino, unsigned dtype);
Al Viro4acdaf22011-07-26 01:42:34 -040033static int afs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -040034 bool excl);
Al Viro18bb1db2011-07-26 01:41:39 -040035static int afs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode);
David Howells260a9802007-04-26 15:59:35 -070036static int afs_rmdir(struct inode *dir, struct dentry *dentry);
37static int afs_unlink(struct inode *dir, struct dentry *dentry);
38static int afs_link(struct dentry *from, struct inode *dir,
39 struct dentry *dentry);
40static int afs_symlink(struct inode *dir, struct dentry *dentry,
41 const char *content);
42static int afs_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredi1cd66c92016-09-27 11:03:58 +020043 struct inode *new_dir, struct dentry *new_dentry,
44 unsigned int flags);
David Howellsf3ddee82018-04-06 14:17:25 +010045static int afs_dir_releasepage(struct page *page, gfp_t gfp_flags);
46static void afs_dir_invalidatepage(struct page *page, unsigned int offset,
47 unsigned int length);
48
49static int afs_dir_set_page_dirty(struct page *page)
50{
51 BUG(); /* This should never happen. */
52}
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Arjan van de Ven4b6f5d22006-03-28 01:56:42 -080054const struct file_operations afs_dir_file_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070055 .open = afs_dir_open,
David Howells00d3b7a2007-04-26 15:57:07 -070056 .release = afs_release,
Al Viro29884ef2016-05-10 14:27:44 -040057 .iterate_shared = afs_readdir,
David Howellse8d6c552007-07-15 23:40:12 -070058 .lock = afs_lock,
Christoph Hellwig3222a3e2008-09-03 21:53:01 +020059 .llseek = generic_file_llseek,
Linus Torvalds1da177e2005-04-16 15:20:36 -070060};
61
Arjan van de Ven754661f2007-02-12 00:55:38 -080062const struct inode_operations afs_dir_inode_operations = {
David Howells260a9802007-04-26 15:59:35 -070063 .create = afs_create,
64 .lookup = afs_lookup,
65 .link = afs_link,
66 .unlink = afs_unlink,
67 .symlink = afs_symlink,
68 .mkdir = afs_mkdir,
69 .rmdir = afs_rmdir,
Miklos Szeredi2773bf02016-09-27 11:03:58 +020070 .rename = afs_rename,
David Howells00d3b7a2007-04-26 15:57:07 -070071 .permission = afs_permission,
David Howells416351f2007-05-09 02:33:45 -070072 .getattr = afs_getattr,
David Howells31143d52007-05-09 02:33:46 -070073 .setattr = afs_setattr,
David Howellsd3e3b7ea2017-07-06 15:50:27 +010074 .listxattr = afs_listxattr,
Linus Torvalds1da177e2005-04-16 15:20:36 -070075};
76
David Howellsf3ddee82018-04-06 14:17:25 +010077const struct address_space_operations afs_dir_aops = {
78 .set_page_dirty = afs_dir_set_page_dirty,
79 .releasepage = afs_dir_releasepage,
80 .invalidatepage = afs_dir_invalidatepage,
81};
82
Al Virod61dcce2011-01-12 20:04:20 -050083const struct dentry_operations afs_fs_dentry_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 .d_revalidate = afs_d_revalidate,
85 .d_delete = afs_d_delete,
David Howells260a9802007-04-26 15:59:35 -070086 .d_release = afs_d_release,
David Howellsd18610b2011-01-14 19:04:05 +000087 .d_automount = afs_d_automount,
Linus Torvalds1da177e2005-04-16 15:20:36 -070088};
89
David Howells5cf9dd52018-04-09 21:12:31 +010090struct afs_lookup_one_cookie {
91 struct dir_context ctx;
92 struct qstr name;
93 bool found;
94 struct afs_fid fid;
95};
96
David Howells260a9802007-04-26 15:59:35 -070097struct afs_lookup_cookie {
David Howells5cf9dd52018-04-09 21:12:31 +010098 struct dir_context ctx;
99 struct qstr name;
100 bool found;
101 bool one_only;
102 unsigned short nr_fids;
103 struct afs_file_status *statuses;
104 struct afs_callback *callbacks;
105 struct afs_fid fids[50];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106};
107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/*
109 * check that a directory page is valid
110 */
David Howellsf3ddee82018-04-06 14:17:25 +0100111static bool afs_dir_check_page(struct afs_vnode *dvnode, struct page *page,
112 loff_t i_size)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113{
David Howells00317632018-04-06 14:17:25 +0100114 struct afs_xdr_dir_page *dbuf;
David Howellsf3ddee82018-04-06 14:17:25 +0100115 loff_t latter, off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 int tmp, qty;
117
David Howellsdab17c12017-11-02 15:27:52 +0000118 /* Determine how many magic numbers there should be in this page, but
119 * we must take care because the directory may change size under us.
120 */
121 off = page_offset(page);
David Howellsdab17c12017-11-02 15:27:52 +0000122 if (i_size <= off)
123 goto checked;
124
125 latter = i_size - off;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 if (latter >= PAGE_SIZE)
127 qty = PAGE_SIZE;
128 else
129 qty = latter;
David Howells00317632018-04-06 14:17:25 +0100130 qty /= sizeof(union afs_xdr_dir_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131
132 /* check them */
David Howells63a46812018-04-06 14:17:25 +0100133 dbuf = kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 for (tmp = 0; tmp < qty; tmp++) {
David Howells00317632018-04-06 14:17:25 +0100135 if (dbuf->blocks[tmp].hdr.magic != AFS_DIR_MAGIC) {
David Howellsdab17c12017-11-02 15:27:52 +0000136 printk("kAFS: %s(%lx): bad magic %d/%d is %04hx\n",
David Howellsf3ddee82018-04-06 14:17:25 +0100137 __func__, dvnode->vfs_inode.i_ino, tmp, qty,
David Howells00317632018-04-06 14:17:25 +0100138 ntohs(dbuf->blocks[tmp].hdr.magic));
David Howellsf3ddee82018-04-06 14:17:25 +0100139 trace_afs_dir_check_failed(dvnode, off, i_size);
David Howells63a46812018-04-06 14:17:25 +0100140 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141 goto error;
142 }
David Howells63a46812018-04-06 14:17:25 +0100143
144 /* Make sure each block is NUL terminated so we can reasonably
145 * use string functions on it. The filenames in the page
146 * *should* be NUL-terminated anyway.
147 */
148 ((u8 *)&dbuf->blocks[tmp])[AFS_DIR_BLOCK_SIZE - 1] = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 }
150
David Howells63a46812018-04-06 14:17:25 +0100151 kunmap(page);
152
David Howellsdab17c12017-11-02 15:27:52 +0000153checked:
David Howellsf3ddee82018-04-06 14:17:25 +0100154 afs_stat_v(dvnode, n_read_dir);
Al Virobe5b82d2016-04-22 15:06:44 -0400155 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
David Howellsec268152007-04-26 15:49:28 -0700157error:
Al Virobe5b82d2016-04-22 15:06:44 -0400158 return false;
David Howellsec268152007-04-26 15:49:28 -0700159}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 * open an AFS directory file
163 */
164static int afs_dir_open(struct inode *inode, struct file *file)
165{
166 _enter("{%lu}", inode->i_ino);
167
David Howells00317632018-04-06 14:17:25 +0100168 BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
169 BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170
David Howells08e0e7c2007-04-26 15:55:03 -0700171 if (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(inode)->flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 return -ENOENT;
173
David Howells00d3b7a2007-04-26 15:57:07 -0700174 return afs_open(inode, file);
David Howellsec268152007-04-26 15:49:28 -0700175}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177/*
David Howellsf3ddee82018-04-06 14:17:25 +0100178 * Read the directory into the pagecache in one go, scrubbing the previous
179 * contents. The list of pages is returned, pinning them so that they don't
180 * get reclaimed during the iteration.
181 */
182static struct afs_read *afs_read_dir(struct afs_vnode *dvnode, struct key *key)
David Howellsb61f7dc2018-04-27 20:46:22 +0100183 __acquires(&dvnode->validate_lock)
David Howellsf3ddee82018-04-06 14:17:25 +0100184{
185 struct afs_read *req;
186 loff_t i_size;
187 int nr_pages, nr_inline, i, n;
188 int ret = -ENOMEM;
189
190retry:
191 i_size = i_size_read(&dvnode->vfs_inode);
192 if (i_size < 2048)
193 return ERR_PTR(-EIO);
194 if (i_size > 2048 * 1024)
195 return ERR_PTR(-EFBIG);
196
197 _enter("%llu", i_size);
198
199 /* Get a request record to hold the page list. We want to hold it
200 * inline if we can, but we don't want to make an order 1 allocation.
201 */
202 nr_pages = (i_size + PAGE_SIZE - 1) / PAGE_SIZE;
203 nr_inline = nr_pages;
204 if (nr_inline > (PAGE_SIZE - sizeof(*req)) / sizeof(struct page *))
205 nr_inline = 0;
206
207 req = kzalloc(sizeof(*req) + sizeof(struct page *) * nr_inline,
208 GFP_KERNEL);
209 if (!req)
210 return ERR_PTR(-ENOMEM);
211
212 refcount_set(&req->usage, 1);
213 req->nr_pages = nr_pages;
214 req->actual_len = i_size; /* May change */
215 req->len = nr_pages * PAGE_SIZE; /* We can ask for more than there is */
216 req->data_version = dvnode->status.data_version; /* May change */
217 if (nr_inline > 0) {
218 req->pages = req->array;
219 } else {
220 req->pages = kcalloc(nr_pages, sizeof(struct page *),
221 GFP_KERNEL);
222 if (!req->pages)
223 goto error;
224 }
225
226 /* Get a list of all the pages that hold or will hold the directory
227 * content. We need to fill in any gaps that we might find where the
228 * memory reclaimer has been at work. If there are any gaps, we will
229 * need to reread the entire directory contents.
230 */
231 i = 0;
232 do {
233 n = find_get_pages_contig(dvnode->vfs_inode.i_mapping, i,
234 req->nr_pages - i,
235 req->pages + i);
236 _debug("find %u at %u/%u", n, i, req->nr_pages);
237 if (n == 0) {
238 gfp_t gfp = dvnode->vfs_inode.i_mapping->gfp_mask;
239
240 if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
241 afs_stat_v(dvnode, n_inval);
242
243 ret = -ENOMEM;
244 req->pages[i] = __page_cache_alloc(gfp);
245 if (!req->pages[i])
246 goto error;
247 ret = add_to_page_cache_lru(req->pages[i],
248 dvnode->vfs_inode.i_mapping,
249 i, gfp);
250 if (ret < 0)
251 goto error;
252
253 set_page_private(req->pages[i], 1);
254 SetPagePrivate(req->pages[i]);
255 unlock_page(req->pages[i]);
256 i++;
257 } else {
258 i += n;
259 }
260 } while (i < req->nr_pages);
261
262 /* If we're going to reload, we need to lock all the pages to prevent
263 * races.
264 */
David Howellsb61f7dc2018-04-27 20:46:22 +0100265 ret = -ERESTARTSYS;
266 if (down_read_killable(&dvnode->validate_lock) < 0)
267 goto error;
268
269 if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
270 goto success;
271
272 up_read(&dvnode->validate_lock);
273 if (down_write_killable(&dvnode->validate_lock) < 0)
274 goto error;
275
David Howellsf3ddee82018-04-06 14:17:25 +0100276 if (!test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags)) {
David Howellsf3ddee82018-04-06 14:17:25 +0100277 ret = afs_fetch_data(dvnode, key, req);
278 if (ret < 0)
David Howellsb61f7dc2018-04-27 20:46:22 +0100279 goto error_unlock;
David Howellsf3ddee82018-04-06 14:17:25 +0100280
281 task_io_account_read(PAGE_SIZE * req->nr_pages);
282
283 if (req->len < req->file_size)
284 goto content_has_grown;
285
286 /* Validate the data we just read. */
287 ret = -EIO;
288 for (i = 0; i < req->nr_pages; i++)
289 if (!afs_dir_check_page(dvnode, req->pages[i],
290 req->actual_len))
David Howellsb61f7dc2018-04-27 20:46:22 +0100291 goto error_unlock;
David Howellsf3ddee82018-04-06 14:17:25 +0100292
293 // TODO: Trim excess pages
294
295 set_bit(AFS_VNODE_DIR_VALID, &dvnode->flags);
296 }
297
David Howellsb61f7dc2018-04-27 20:46:22 +0100298 downgrade_write(&dvnode->validate_lock);
David Howellsf3ddee82018-04-06 14:17:25 +0100299success:
David Howellsf3ddee82018-04-06 14:17:25 +0100300 return req;
301
David Howellsf3ddee82018-04-06 14:17:25 +0100302error_unlock:
David Howellsb61f7dc2018-04-27 20:46:22 +0100303 up_write(&dvnode->validate_lock);
David Howellsf3ddee82018-04-06 14:17:25 +0100304error:
305 afs_put_read(req);
306 _leave(" = %d", ret);
307 return ERR_PTR(ret);
308
309content_has_grown:
David Howellsb61f7dc2018-04-27 20:46:22 +0100310 up_write(&dvnode->validate_lock);
David Howellsf3ddee82018-04-06 14:17:25 +0100311 afs_put_read(req);
312 goto retry;
313}
314
315/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 * deal with one block in an AFS directory
317 */
Al Viro1bbae9f2013-05-22 16:31:14 -0400318static int afs_dir_iterate_block(struct dir_context *ctx,
David Howells00317632018-04-06 14:17:25 +0100319 union afs_xdr_dir_block *block,
Al Viro1bbae9f2013-05-22 16:31:14 -0400320 unsigned blkoff)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321{
David Howells00317632018-04-06 14:17:25 +0100322 union afs_xdr_dirent *dire;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 unsigned offset, next, curr;
324 size_t nlen;
Al Viro1bbae9f2013-05-22 16:31:14 -0400325 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326
Al Viro1bbae9f2013-05-22 16:31:14 -0400327 _enter("%u,%x,%p,,",(unsigned)ctx->pos,blkoff,block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
David Howells00317632018-04-06 14:17:25 +0100329 curr = (ctx->pos - blkoff) / sizeof(union afs_xdr_dirent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330
331 /* walk through the block, an entry at a time */
David Howells4ea219a2018-04-06 14:17:25 +0100332 for (offset = (blkoff == 0 ? AFS_DIR_RESV_BLOCKS0 : AFS_DIR_RESV_BLOCKS);
333 offset < AFS_DIR_SLOTS_PER_BLOCK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 offset = next
335 ) {
336 next = offset + 1;
337
338 /* skip entries marked unused in the bitmap */
David Howells00317632018-04-06 14:17:25 +0100339 if (!(block->hdr.bitmap[offset / 8] &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 (1 << (offset % 8)))) {
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800341 _debug("ENT[%zu.%u]: unused",
David Howells00317632018-04-06 14:17:25 +0100342 blkoff / sizeof(union afs_xdr_dir_block), offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343 if (offset >= curr)
Al Viro1bbae9f2013-05-22 16:31:14 -0400344 ctx->pos = blkoff +
David Howells00317632018-04-06 14:17:25 +0100345 next * sizeof(union afs_xdr_dirent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 continue;
347 }
348
349 /* got a valid entry */
350 dire = &block->dirents[offset];
351 nlen = strnlen(dire->u.name,
352 sizeof(*block) -
David Howells00317632018-04-06 14:17:25 +0100353 offset * sizeof(union afs_xdr_dirent));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800355 _debug("ENT[%zu.%u]: %s %zu \"%s\"",
David Howells00317632018-04-06 14:17:25 +0100356 blkoff / sizeof(union afs_xdr_dir_block), offset,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 (offset < curr ? "skip" : "fill"),
358 nlen, dire->u.name);
359
360 /* work out where the next possible entry is */
David Howells00317632018-04-06 14:17:25 +0100361 for (tmp = nlen; tmp > 15; tmp -= sizeof(union afs_xdr_dirent)) {
David Howells4ea219a2018-04-06 14:17:25 +0100362 if (next >= AFS_DIR_SLOTS_PER_BLOCK) {
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800363 _debug("ENT[%zu.%u]:"
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 " %u travelled beyond end dir block"
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800365 " (len %u/%zu)",
David Howells00317632018-04-06 14:17:25 +0100366 blkoff / sizeof(union afs_xdr_dir_block),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 offset, next, tmp, nlen);
368 return -EIO;
369 }
David Howells00317632018-04-06 14:17:25 +0100370 if (!(block->hdr.bitmap[next / 8] &
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 (1 << (next % 8)))) {
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800372 _debug("ENT[%zu.%u]:"
373 " %u unmarked extension (len %u/%zu)",
David Howells00317632018-04-06 14:17:25 +0100374 blkoff / sizeof(union afs_xdr_dir_block),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 offset, next, tmp, nlen);
376 return -EIO;
377 }
378
Alexey Dobriyan5b5e0922017-02-27 14:30:02 -0800379 _debug("ENT[%zu.%u]: ext %u/%zu",
David Howells00317632018-04-06 14:17:25 +0100380 blkoff / sizeof(union afs_xdr_dir_block),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 next, tmp, nlen);
382 next++;
383 }
384
385 /* skip if starts before the current position */
386 if (offset < curr)
387 continue;
388
389 /* found the next entry */
Al Viro1bbae9f2013-05-22 16:31:14 -0400390 if (!dir_emit(ctx, dire->u.name, nlen,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 ntohl(dire->u.vnode),
David Howells5cf9dd52018-04-09 21:12:31 +0100392 (ctx->actor == afs_lookup_filldir ||
393 ctx->actor == afs_lookup_one_filldir)?
Al Viro1bbae9f2013-05-22 16:31:14 -0400394 ntohl(dire->u.unique) : DT_UNKNOWN)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 _leave(" = 0 [full]");
396 return 0;
397 }
398
David Howells00317632018-04-06 14:17:25 +0100399 ctx->pos = blkoff + next * sizeof(union afs_xdr_dirent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 }
401
402 _leave(" = 1 [more]");
403 return 1;
David Howellsec268152007-04-26 15:49:28 -0700404}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406/*
David Howells08e0e7c2007-04-26 15:55:03 -0700407 * iterate through the data blob that lists the contents of an AFS directory
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 */
Al Viro1bbae9f2013-05-22 16:31:14 -0400409static int afs_dir_iterate(struct inode *dir, struct dir_context *ctx,
410 struct key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
David Howellsf3ddee82018-04-06 14:17:25 +0100412 struct afs_vnode *dvnode = AFS_FS_I(dir);
David Howells00317632018-04-06 14:17:25 +0100413 struct afs_xdr_dir_page *dbuf;
414 union afs_xdr_dir_block *dblock;
David Howellsf3ddee82018-04-06 14:17:25 +0100415 struct afs_read *req;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 struct page *page;
417 unsigned blkoff, limit;
418 int ret;
419
Al Viro1bbae9f2013-05-22 16:31:14 -0400420 _enter("{%lu},%u,,", dir->i_ino, (unsigned)ctx->pos);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
David Howells08e0e7c2007-04-26 15:55:03 -0700422 if (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(dir)->flags)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423 _leave(" = -ESTALE");
424 return -ESTALE;
425 }
426
David Howellsf3ddee82018-04-06 14:17:25 +0100427 req = afs_read_dir(dvnode, key);
428 if (IS_ERR(req))
429 return PTR_ERR(req);
430
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 /* round the file position up to the next entry boundary */
David Howells00317632018-04-06 14:17:25 +0100432 ctx->pos += sizeof(union afs_xdr_dirent) - 1;
433 ctx->pos &= ~(sizeof(union afs_xdr_dirent) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
435 /* walk through the blocks in sequence */
436 ret = 0;
David Howellsf3ddee82018-04-06 14:17:25 +0100437 while (ctx->pos < req->actual_len) {
David Howells00317632018-04-06 14:17:25 +0100438 blkoff = ctx->pos & ~(sizeof(union afs_xdr_dir_block) - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
David Howellsf3ddee82018-04-06 14:17:25 +0100440 /* Fetch the appropriate page from the directory and re-add it
441 * to the LRU.
442 */
443 page = req->pages[blkoff / PAGE_SIZE];
444 if (!page) {
445 ret = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446 break;
447 }
David Howellsf3ddee82018-04-06 14:17:25 +0100448 mark_page_accessed(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449
450 limit = blkoff & ~(PAGE_SIZE - 1);
451
David Howellsf3ddee82018-04-06 14:17:25 +0100452 dbuf = kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 /* deal with the individual blocks stashed on this page */
455 do {
456 dblock = &dbuf->blocks[(blkoff % PAGE_SIZE) /
David Howells00317632018-04-06 14:17:25 +0100457 sizeof(union afs_xdr_dir_block)];
Al Viro1bbae9f2013-05-22 16:31:14 -0400458 ret = afs_dir_iterate_block(ctx, dblock, blkoff);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 if (ret != 1) {
David Howellsf3ddee82018-04-06 14:17:25 +0100460 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 goto out;
462 }
463
David Howells00317632018-04-06 14:17:25 +0100464 blkoff += sizeof(union afs_xdr_dir_block);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465
Al Viro1bbae9f2013-05-22 16:31:14 -0400466 } while (ctx->pos < dir->i_size && blkoff < limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700467
David Howellsf3ddee82018-04-06 14:17:25 +0100468 kunmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 ret = 0;
470 }
471
David Howellsec268152007-04-26 15:49:28 -0700472out:
David Howellsb61f7dc2018-04-27 20:46:22 +0100473 up_read(&dvnode->validate_lock);
David Howellsf3ddee82018-04-06 14:17:25 +0100474 afs_put_read(req);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 _leave(" = %d", ret);
476 return ret;
David Howellsec268152007-04-26 15:49:28 -0700477}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479/*
480 * read an AFS directory
481 */
Al Viro1bbae9f2013-05-22 16:31:14 -0400482static int afs_readdir(struct file *file, struct dir_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
David Howells215804a2017-11-02 15:27:52 +0000484 return afs_dir_iterate(file_inode(file), ctx, afs_file_key(file));
David Howellsec268152007-04-26 15:49:28 -0700485}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487/*
David Howells5cf9dd52018-04-09 21:12:31 +0100488 * Search the directory for a single name
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 * - if afs_dir_iterate_block() spots this function, it'll pass the FID
490 * uniquifier through dtype
491 */
David Howells5cf9dd52018-04-09 21:12:31 +0100492static int afs_lookup_one_filldir(struct dir_context *ctx, const char *name,
493 int nlen, loff_t fpos, u64 ino, unsigned dtype)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
David Howells5cf9dd52018-04-09 21:12:31 +0100495 struct afs_lookup_one_cookie *cookie =
496 container_of(ctx, struct afs_lookup_one_cookie, ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497
Al Viro1bbae9f2013-05-22 16:31:14 -0400498 _enter("{%s,%u},%s,%u,,%llu,%u",
499 cookie->name.name, cookie->name.len, name, nlen,
David S. Millerba3e0e12007-04-26 16:06:22 -0700500 (unsigned long long) ino, dtype);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501
David Howells08e0e7c2007-04-26 15:55:03 -0700502 /* insanity checks first */
David Howells00317632018-04-06 14:17:25 +0100503 BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
504 BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
David Howells08e0e7c2007-04-26 15:55:03 -0700505
Al Viro1bbae9f2013-05-22 16:31:14 -0400506 if (cookie->name.len != nlen ||
507 memcmp(cookie->name.name, name, nlen) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 _leave(" = 0 [no]");
509 return 0;
510 }
511
512 cookie->fid.vnode = ino;
513 cookie->fid.unique = dtype;
514 cookie->found = 1;
515
516 _leave(" = -1 [found]");
517 return -1;
David Howellsec268152007-04-26 15:49:28 -0700518}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520/*
David Howells5cf9dd52018-04-09 21:12:31 +0100521 * Do a lookup of a single name in a directory
David Howells260a9802007-04-26 15:59:35 -0700522 * - just returns the FID the dentry name maps to if found
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 */
David Howells5cf9dd52018-04-09 21:12:31 +0100524static int afs_do_lookup_one(struct inode *dir, struct dentry *dentry,
525 struct afs_fid *fid, struct key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Al Viro1bbae9f2013-05-22 16:31:14 -0400527 struct afs_super_info *as = dir->i_sb->s_fs_info;
David Howells5cf9dd52018-04-09 21:12:31 +0100528 struct afs_lookup_one_cookie cookie = {
529 .ctx.actor = afs_lookup_one_filldir,
Al Viro1bbae9f2013-05-22 16:31:14 -0400530 .name = dentry->d_name,
531 .fid.vid = as->volume->vid
532 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 int ret;
534
Al Viroa4555892014-10-21 20:11:25 -0400535 _enter("{%lu},%p{%pd},", dir->i_ino, dentry, dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 /* search the directory */
Al Viro1bbae9f2013-05-22 16:31:14 -0400538 ret = afs_dir_iterate(dir, &cookie.ctx, key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539 if (ret < 0) {
David Howells08e0e7c2007-04-26 15:55:03 -0700540 _leave(" = %d [iter]", ret);
541 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
543
544 ret = -ENOENT;
545 if (!cookie.found) {
David Howells08e0e7c2007-04-26 15:55:03 -0700546 _leave(" = -ENOENT [not found]");
547 return -ENOENT;
548 }
549
550 *fid = cookie.fid;
551 _leave(" = 0 { vn=%u u=%u }", fid->vnode, fid->unique);
552 return 0;
553}
554
555/*
David Howells5cf9dd52018-04-09 21:12:31 +0100556 * search the directory for a name
557 * - if afs_dir_iterate_block() spots this function, it'll pass the FID
558 * uniquifier through dtype
559 */
560static int afs_lookup_filldir(struct dir_context *ctx, const char *name,
561 int nlen, loff_t fpos, u64 ino, unsigned dtype)
562{
563 struct afs_lookup_cookie *cookie =
564 container_of(ctx, struct afs_lookup_cookie, ctx);
565 int ret;
566
567 _enter("{%s,%u},%s,%u,,%llu,%u",
568 cookie->name.name, cookie->name.len, name, nlen,
569 (unsigned long long) ino, dtype);
570
571 /* insanity checks first */
David Howells00317632018-04-06 14:17:25 +0100572 BUILD_BUG_ON(sizeof(union afs_xdr_dir_block) != 2048);
573 BUILD_BUG_ON(sizeof(union afs_xdr_dirent) != 32);
David Howells5cf9dd52018-04-09 21:12:31 +0100574
575 if (cookie->found) {
576 if (cookie->nr_fids < 50) {
577 cookie->fids[cookie->nr_fids].vnode = ino;
578 cookie->fids[cookie->nr_fids].unique = dtype;
579 cookie->nr_fids++;
580 }
581 } else if (cookie->name.len == nlen &&
582 memcmp(cookie->name.name, name, nlen) == 0) {
583 cookie->fids[0].vnode = ino;
584 cookie->fids[0].unique = dtype;
585 cookie->found = 1;
586 if (cookie->one_only)
587 return -1;
588 }
589
590 ret = cookie->nr_fids >= 50 ? -1 : 0;
591 _leave(" = %d", ret);
592 return ret;
593}
594
595/*
596 * Do a lookup in a directory. We make use of bulk lookup to query a slew of
597 * files in one go and create inodes for them. The inode of the file we were
598 * asked for is returned.
599 */
600static struct inode *afs_do_lookup(struct inode *dir, struct dentry *dentry,
601 struct key *key)
602{
603 struct afs_lookup_cookie *cookie;
604 struct afs_cb_interest *cbi = NULL;
605 struct afs_super_info *as = dir->i_sb->s_fs_info;
606 struct afs_iget_data data;
607 struct afs_fs_cursor fc;
608 struct afs_vnode *dvnode = AFS_FS_I(dir);
609 struct inode *inode = NULL;
610 int ret, i;
611
612 _enter("{%lu},%p{%pd},", dir->i_ino, dentry, dentry);
613
614 cookie = kzalloc(sizeof(struct afs_lookup_cookie), GFP_KERNEL);
615 if (!cookie)
616 return ERR_PTR(-ENOMEM);
617
618 cookie->ctx.actor = afs_lookup_filldir;
619 cookie->name = dentry->d_name;
620 cookie->nr_fids = 1; /* slot 0 is saved for the fid we actually want */
621
622 read_seqlock_excl(&dvnode->cb_lock);
623 if (dvnode->cb_interest &&
624 dvnode->cb_interest->server &&
625 test_bit(AFS_SERVER_FL_NO_IBULK, &dvnode->cb_interest->server->flags))
626 cookie->one_only = true;
627 read_sequnlock_excl(&dvnode->cb_lock);
628
629 for (i = 0; i < 50; i++)
630 cookie->fids[i].vid = as->volume->vid;
631
632 /* search the directory */
633 ret = afs_dir_iterate(dir, &cookie->ctx, key);
634 if (ret < 0) {
635 inode = ERR_PTR(ret);
636 goto out;
637 }
638
639 inode = ERR_PTR(-ENOENT);
640 if (!cookie->found)
641 goto out;
642
643 /* Check to see if we already have an inode for the primary fid. */
644 data.volume = dvnode->volume;
645 data.fid = cookie->fids[0];
646 inode = ilookup5(dir->i_sb, cookie->fids[0].vnode, afs_iget5_test, &data);
647 if (inode)
648 goto out;
649
650 /* Need space for examining all the selected files */
651 inode = ERR_PTR(-ENOMEM);
652 cookie->statuses = kcalloc(cookie->nr_fids, sizeof(struct afs_file_status),
653 GFP_KERNEL);
654 if (!cookie->statuses)
655 goto out;
656
657 cookie->callbacks = kcalloc(cookie->nr_fids, sizeof(struct afs_callback),
658 GFP_KERNEL);
659 if (!cookie->callbacks)
660 goto out_s;
661
662 /* Try FS.InlineBulkStatus first. Abort codes for the individual
663 * lookups contained therein are stored in the reply without aborting
664 * the whole operation.
665 */
666 if (cookie->one_only)
667 goto no_inline_bulk_status;
668
669 inode = ERR_PTR(-ERESTARTSYS);
670 if (afs_begin_vnode_operation(&fc, dvnode, key)) {
671 while (afs_select_fileserver(&fc)) {
672 if (test_bit(AFS_SERVER_FL_NO_IBULK,
673 &fc.cbi->server->flags)) {
674 fc.ac.abort_code = RX_INVALID_OPERATION;
675 fc.ac.error = -ECONNABORTED;
676 break;
677 }
678 afs_fs_inline_bulk_status(&fc,
679 afs_v2net(dvnode),
680 cookie->fids,
681 cookie->statuses,
682 cookie->callbacks,
683 cookie->nr_fids, NULL);
684 }
685
686 if (fc.ac.error == 0)
687 cbi = afs_get_cb_interest(fc.cbi);
688 if (fc.ac.abort_code == RX_INVALID_OPERATION)
689 set_bit(AFS_SERVER_FL_NO_IBULK, &fc.cbi->server->flags);
690 inode = ERR_PTR(afs_end_vnode_operation(&fc));
691 }
692
693 if (!IS_ERR(inode))
694 goto success;
695 if (fc.ac.abort_code != RX_INVALID_OPERATION)
696 goto out_c;
697
698no_inline_bulk_status:
699 /* We could try FS.BulkStatus next, but this aborts the entire op if
700 * any of the lookups fails - so, for the moment, revert to
701 * FS.FetchStatus for just the primary fid.
702 */
703 cookie->nr_fids = 1;
704 inode = ERR_PTR(-ERESTARTSYS);
705 if (afs_begin_vnode_operation(&fc, dvnode, key)) {
706 while (afs_select_fileserver(&fc)) {
707 afs_fs_fetch_status(&fc,
708 afs_v2net(dvnode),
709 cookie->fids,
710 cookie->statuses,
711 cookie->callbacks,
712 NULL);
713 }
714
715 if (fc.ac.error == 0)
716 cbi = afs_get_cb_interest(fc.cbi);
717 inode = ERR_PTR(afs_end_vnode_operation(&fc));
718 }
719
720 if (IS_ERR(inode))
721 goto out_c;
722
723 for (i = 0; i < cookie->nr_fids; i++)
724 cookie->statuses[i].abort_code = 0;
725
726success:
727 /* Turn all the files into inodes and save the first one - which is the
728 * one we actually want.
729 */
730 if (cookie->statuses[0].abort_code != 0)
731 inode = ERR_PTR(afs_abort_to_error(cookie->statuses[0].abort_code));
732
733 for (i = 0; i < cookie->nr_fids; i++) {
734 struct inode *ti;
735
736 if (cookie->statuses[i].abort_code != 0)
737 continue;
738
739 ti = afs_iget(dir->i_sb, key, &cookie->fids[i],
740 &cookie->statuses[i],
741 &cookie->callbacks[i],
742 cbi);
743 if (i == 0) {
744 inode = ti;
745 } else {
746 if (!IS_ERR(ti))
747 iput(ti);
748 }
749 }
750
751out_c:
752 afs_put_cb_interest(afs_v2net(dvnode), cbi);
753 kfree(cookie->callbacks);
754out_s:
755 kfree(cookie->statuses);
756out:
757 kfree(cookie);
758 return inode;
759}
760
761/*
David Howells6f8880d2018-04-09 21:12:31 +0100762 * Look up an entry in a directory with @sys substitution.
763 */
764static struct dentry *afs_lookup_atsys(struct inode *dir, struct dentry *dentry,
765 struct key *key)
766{
767 struct afs_sysnames *subs;
768 struct afs_net *net = afs_i2net(dir);
769 struct dentry *ret;
770 char *buf, *p, *name;
771 int len, i;
772
773 _enter("");
774
775 ret = ERR_PTR(-ENOMEM);
776 p = buf = kmalloc(AFSNAMEMAX, GFP_KERNEL);
777 if (!buf)
778 goto out_p;
779 if (dentry->d_name.len > 4) {
780 memcpy(p, dentry->d_name.name, dentry->d_name.len - 4);
781 p += dentry->d_name.len - 4;
782 }
783
784 /* There is an ordered list of substitutes that we have to try. */
785 read_lock(&net->sysnames_lock);
786 subs = net->sysnames;
787 refcount_inc(&subs->usage);
788 read_unlock(&net->sysnames_lock);
789
790 for (i = 0; i < subs->nr; i++) {
791 name = subs->subs[i];
792 len = dentry->d_name.len - 4 + strlen(name);
793 if (len >= AFSNAMEMAX) {
794 ret = ERR_PTR(-ENAMETOOLONG);
795 goto out_s;
796 }
797
798 strcpy(p, name);
799 ret = lookup_one_len(buf, dentry->d_parent, len);
800 if (IS_ERR(ret) || d_is_positive(ret))
801 goto out_s;
802 dput(ret);
803 }
804
805 /* We don't want to d_add() the @sys dentry here as we don't want to
806 * the cached dentry to hide changes to the sysnames list.
807 */
808 ret = NULL;
809out_s:
810 afs_put_sysnames(subs);
811 kfree(buf);
812out_p:
813 key_put(key);
814 return ret;
815}
816
817/*
David Howells08e0e7c2007-04-26 15:55:03 -0700818 * look up an entry in a directory
819 */
David Howells260a9802007-04-26 15:59:35 -0700820static struct dentry *afs_lookup(struct inode *dir, struct dentry *dentry,
Al Viro00cd8dd2012-06-10 17:13:09 -0400821 unsigned int flags)
David Howells08e0e7c2007-04-26 15:55:03 -0700822{
David Howells5cf9dd52018-04-09 21:12:31 +0100823 struct afs_vnode *dvnode = AFS_FS_I(dir);
David Howells08e0e7c2007-04-26 15:55:03 -0700824 struct inode *inode;
Al Viro34b2a882018-06-24 10:43:51 -0400825 struct dentry *d;
David Howells00d3b7a2007-04-26 15:57:07 -0700826 struct key *key;
David Howells08e0e7c2007-04-26 15:55:03 -0700827 int ret;
828
Al Viroa4555892014-10-21 20:11:25 -0400829 _enter("{%x:%u},%p{%pd},",
David Howells5cf9dd52018-04-09 21:12:31 +0100830 dvnode->fid.vid, dvnode->fid.vnode, dentry, dentry);
David Howells260a9802007-04-26 15:59:35 -0700831
David Howells2b0143b2015-03-17 22:25:59 +0000832 ASSERTCMP(d_inode(dentry), ==, NULL);
David Howells08e0e7c2007-04-26 15:55:03 -0700833
David Howells45222b92007-05-10 22:22:20 -0700834 if (dentry->d_name.len >= AFSNAMEMAX) {
David Howells08e0e7c2007-04-26 15:55:03 -0700835 _leave(" = -ENAMETOOLONG");
836 return ERR_PTR(-ENAMETOOLONG);
837 }
838
David Howells5cf9dd52018-04-09 21:12:31 +0100839 if (test_bit(AFS_VNODE_DELETED, &dvnode->flags)) {
David Howells08e0e7c2007-04-26 15:55:03 -0700840 _leave(" = -ESTALE");
841 return ERR_PTR(-ESTALE);
842 }
843
David Howells5cf9dd52018-04-09 21:12:31 +0100844 key = afs_request_key(dvnode->volume->cell);
David Howells00d3b7a2007-04-26 15:57:07 -0700845 if (IS_ERR(key)) {
846 _leave(" = %ld [key]", PTR_ERR(key));
David Howellse231c2e2008-02-07 00:15:26 -0800847 return ERR_CAST(key);
David Howells00d3b7a2007-04-26 15:57:07 -0700848 }
849
David Howells5cf9dd52018-04-09 21:12:31 +0100850 ret = afs_validate(dvnode, key);
David Howells08e0e7c2007-04-26 15:55:03 -0700851 if (ret < 0) {
David Howells00d3b7a2007-04-26 15:57:07 -0700852 key_put(key);
David Howells260a9802007-04-26 15:59:35 -0700853 _leave(" = %d [val]", ret);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return ERR_PTR(ret);
855 }
856
David Howells6f8880d2018-04-09 21:12:31 +0100857 if (dentry->d_name.len >= 4 &&
858 dentry->d_name.name[dentry->d_name.len - 4] == '@' &&
859 dentry->d_name.name[dentry->d_name.len - 3] == 's' &&
860 dentry->d_name.name[dentry->d_name.len - 2] == 'y' &&
861 dentry->d_name.name[dentry->d_name.len - 1] == 's')
862 return afs_lookup_atsys(dir, dentry, key);
863
David Howellsd55b4da2018-04-06 14:17:24 +0100864 afs_stat_v(dvnode, n_lookup);
David Howells5cf9dd52018-04-09 21:12:31 +0100865 inode = afs_do_lookup(dir, dentry, key);
David Howells00d3b7a2007-04-26 15:57:07 -0700866 key_put(key);
Al Viro34b2a882018-06-24 10:43:51 -0400867 if (inode == ERR_PTR(-ENOENT)) {
868 inode = afs_try_auto_mntpt(dentry, dir);
Al Viro34b2a882018-06-24 10:43:51 -0400869 } else {
870 dentry->d_fsdata =
871 (void *)(unsigned long)dvnode->status.data_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 }
Al Viro34b2a882018-06-24 10:43:51 -0400873 d = d_splice_alias(inode, dentry);
874 if (!IS_ERR_OR_NULL(d))
875 d->d_fsdata = dentry->d_fsdata;
876 return d;
David Howellsec268152007-04-26 15:49:28 -0700877}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879/*
880 * check that a dentry lookup hit has found a valid entry
881 * - NOTE! the hit can be a negative hit too, so we can't assume we have an
882 * inode
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 */
Al Viro0b728e12012-06-10 16:03:43 -0400884static int afs_d_revalidate(struct dentry *dentry, unsigned int flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
David Howells260a9802007-04-26 15:59:35 -0700886 struct afs_vnode *vnode, *dir;
Artem Bityutskiydd0d9a42009-07-09 10:44:30 +0100887 struct afs_fid uninitialized_var(fid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 struct dentry *parent;
David Howellsc435ee32017-11-02 15:27:49 +0000889 struct inode *inode;
David Howells00d3b7a2007-04-26 15:57:07 -0700890 struct key *key;
David Howellsa4ff7402018-04-06 14:17:24 +0100891 long dir_version, de_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 int ret;
893
Al Viro0b728e12012-06-10 16:03:43 -0400894 if (flags & LOOKUP_RCU)
Nick Piggin34286d62011-01-07 17:49:57 +1100895 return -ECHILD;
896
David Howellsc435ee32017-11-02 15:27:49 +0000897 if (d_really_is_positive(dentry)) {
898 vnode = AFS_FS_I(d_inode(dentry));
Al Viroa4555892014-10-21 20:11:25 -0400899 _enter("{v={%x:%u} n=%pd fl=%lx},",
900 vnode->fid.vid, vnode->fid.vnode, dentry,
David Howells260a9802007-04-26 15:59:35 -0700901 vnode->flags);
David Howellsc435ee32017-11-02 15:27:49 +0000902 } else {
Al Viroa4555892014-10-21 20:11:25 -0400903 _enter("{neg n=%pd}", dentry);
David Howellsc435ee32017-11-02 15:27:49 +0000904 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
David Howells260a9802007-04-26 15:59:35 -0700906 key = afs_request_key(AFS_FS_S(dentry->d_sb)->volume->cell);
David Howells00d3b7a2007-04-26 15:57:07 -0700907 if (IS_ERR(key))
908 key = NULL;
909
David Howellsc435ee32017-11-02 15:27:49 +0000910 if (d_really_is_positive(dentry)) {
911 inode = d_inode(dentry);
912 if (inode) {
913 vnode = AFS_FS_I(inode);
914 afs_validate(vnode, key);
915 if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
916 goto out_bad;
917 }
918 }
919
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 /* lock down the parent dentry so we can peer at it */
David Howells08e0e7c2007-04-26 15:55:03 -0700921 parent = dget_parent(dentry);
David Howells2b0143b2015-03-17 22:25:59 +0000922 dir = AFS_FS_I(d_inode(parent));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923
David Howells260a9802007-04-26 15:59:35 -0700924 /* validate the parent directory */
David Howellsc435ee32017-11-02 15:27:49 +0000925 afs_validate(dir, key);
David Howells260a9802007-04-26 15:59:35 -0700926
927 if (test_bit(AFS_VNODE_DELETED, &dir->flags)) {
Al Viroa4555892014-10-21 20:11:25 -0400928 _debug("%pd: parent dir deleted", dentry);
David Howellsc435ee32017-11-02 15:27:49 +0000929 goto out_bad_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 }
931
David Howellsa4ff7402018-04-06 14:17:24 +0100932 /* We only need to invalidate a dentry if the server's copy changed
933 * behind our back. If we made the change, it's no problem. Note that
934 * on a 32-bit system, we only have 32 bits in the dentry to store the
935 * version.
936 */
937 dir_version = (long)dir->status.data_version;
938 de_version = (long)dentry->d_fsdata;
939 if (de_version == dir_version)
940 goto out_valid;
941
942 dir_version = (long)dir->invalid_before;
943 if (de_version - dir_version >= 0)
944 goto out_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945
David Howells260a9802007-04-26 15:59:35 -0700946 _debug("dir modified");
David Howellsd55b4da2018-04-06 14:17:24 +0100947 afs_stat_v(dir, n_reval);
David Howells260a9802007-04-26 15:59:35 -0700948
949 /* search the directory for this vnode */
David Howells5cf9dd52018-04-09 21:12:31 +0100950 ret = afs_do_lookup_one(&dir->vfs_inode, dentry, &fid, key);
David Howells260a9802007-04-26 15:59:35 -0700951 switch (ret) {
952 case 0:
953 /* the filename maps to something */
David Howells2b0143b2015-03-17 22:25:59 +0000954 if (d_really_is_negative(dentry))
David Howellsc435ee32017-11-02 15:27:49 +0000955 goto out_bad_parent;
956 inode = d_inode(dentry);
957 if (is_bad_inode(inode)) {
Al Viroa4555892014-10-21 20:11:25 -0400958 printk("kAFS: afs_d_revalidate: %pd2 has bad inode\n",
959 dentry);
David Howellsc435ee32017-11-02 15:27:49 +0000960 goto out_bad_parent;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 }
962
David Howellsc435ee32017-11-02 15:27:49 +0000963 vnode = AFS_FS_I(inode);
964
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 /* if the vnode ID has changed, then the dirent points to a
966 * different file */
David Howells08e0e7c2007-04-26 15:55:03 -0700967 if (fid.vnode != vnode->fid.vnode) {
Al Viroa4555892014-10-21 20:11:25 -0400968 _debug("%pd: dirent changed [%u != %u]",
969 dentry, fid.vnode,
David Howells08e0e7c2007-04-26 15:55:03 -0700970 vnode->fid.vnode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 goto not_found;
972 }
973
974 /* if the vnode ID uniqifier has changed, then the file has
David Howells260a9802007-04-26 15:59:35 -0700975 * been deleted and replaced, and the original vnode ID has
976 * been reused */
David Howells08e0e7c2007-04-26 15:55:03 -0700977 if (fid.unique != vnode->fid.unique) {
Al Viroa4555892014-10-21 20:11:25 -0400978 _debug("%pd: file deleted (uq %u -> %u I:%u)",
979 dentry, fid.unique,
Jean Noel Cordenner7a224222008-01-28 23:58:27 -0500980 vnode->fid.unique,
David Howellsc435ee32017-11-02 15:27:49 +0000981 vnode->vfs_inode.i_generation);
982 write_seqlock(&vnode->cb_lock);
David Howells08e0e7c2007-04-26 15:55:03 -0700983 set_bit(AFS_VNODE_DELETED, &vnode->flags);
David Howellsc435ee32017-11-02 15:27:49 +0000984 write_sequnlock(&vnode->cb_lock);
David Howells260a9802007-04-26 15:59:35 -0700985 goto not_found;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700986 }
David Howells260a9802007-04-26 15:59:35 -0700987 goto out_valid;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700988
David Howells260a9802007-04-26 15:59:35 -0700989 case -ENOENT:
990 /* the filename is unknown */
Al Viroa4555892014-10-21 20:11:25 -0400991 _debug("%pd: dirent not found", dentry);
David Howells2b0143b2015-03-17 22:25:59 +0000992 if (d_really_is_positive(dentry))
David Howells260a9802007-04-26 15:59:35 -0700993 goto not_found;
994 goto out_valid;
David Howells08e0e7c2007-04-26 15:55:03 -0700995
David Howells260a9802007-04-26 15:59:35 -0700996 default:
Al Viroa4555892014-10-21 20:11:25 -0400997 _debug("failed to iterate dir %pd: %d",
998 parent, ret);
David Howellsc435ee32017-11-02 15:27:49 +0000999 goto out_bad_parent;
David Howells08e0e7c2007-04-26 15:55:03 -07001000 }
1001
David Howellsec268152007-04-26 15:49:28 -07001002out_valid:
David Howellsa4ff7402018-04-06 14:17:24 +01001003 dentry->d_fsdata = (void *)dir_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 dput(parent);
David Howells00d3b7a2007-04-26 15:57:07 -07001005 key_put(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 _leave(" = 1 [valid]");
1007 return 1;
1008
1009 /* the dirent, if it exists, now points to a different vnode */
David Howellsec268152007-04-26 15:49:28 -07001010not_found:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 spin_lock(&dentry->d_lock);
1012 dentry->d_flags |= DCACHE_NFSFS_RENAMED;
1013 spin_unlock(&dentry->d_lock);
1014
David Howellsc435ee32017-11-02 15:27:49 +00001015out_bad_parent:
Al Viroa4555892014-10-21 20:11:25 -04001016 _debug("dropping dentry %pd2", dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 dput(parent);
David Howellsc435ee32017-11-02 15:27:49 +00001018out_bad:
David Howells00d3b7a2007-04-26 15:57:07 -07001019 key_put(key);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
1021 _leave(" = 0 [bad]");
1022 return 0;
David Howellsec268152007-04-26 15:49:28 -07001023}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025/*
1026 * allow the VFS to enquire as to whether a dentry should be unhashed (mustn't
1027 * sleep)
1028 * - called from dput() when d_count is going to 0.
1029 * - return 1 to request dentry be unhashed, 0 otherwise
1030 */
Nick Pigginfe15ce42011-01-07 17:49:23 +11001031static int afs_d_delete(const struct dentry *dentry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001032{
Al Viroa4555892014-10-21 20:11:25 -04001033 _enter("%pd", dentry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034
1035 if (dentry->d_flags & DCACHE_NFSFS_RENAMED)
1036 goto zap;
1037
David Howells2b0143b2015-03-17 22:25:59 +00001038 if (d_really_is_positive(dentry) &&
1039 (test_bit(AFS_VNODE_DELETED, &AFS_FS_I(d_inode(dentry))->flags) ||
1040 test_bit(AFS_VNODE_PSEUDODIR, &AFS_FS_I(d_inode(dentry))->flags)))
wangleibec5eb62010-08-11 09:38:04 +01001041 goto zap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042
1043 _leave(" = 0 [keep]");
1044 return 0;
1045
David Howellsec268152007-04-26 15:49:28 -07001046zap:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 _leave(" = 1 [zap]");
1048 return 1;
David Howellsec268152007-04-26 15:49:28 -07001049}
David Howells260a9802007-04-26 15:59:35 -07001050
1051/*
1052 * handle dentry release
1053 */
David Howells66c7e1d2018-04-06 14:17:25 +01001054void afs_d_release(struct dentry *dentry)
David Howells260a9802007-04-26 15:59:35 -07001055{
Al Viroa4555892014-10-21 20:11:25 -04001056 _enter("%pd", dentry);
David Howells260a9802007-04-26 15:59:35 -07001057}
1058
1059/*
David Howellsd2ddc772017-11-02 15:27:50 +00001060 * Create a new inode for create/mkdir/symlink
1061 */
1062static void afs_vnode_new_inode(struct afs_fs_cursor *fc,
1063 struct dentry *new_dentry,
1064 struct afs_fid *newfid,
1065 struct afs_file_status *newstatus,
1066 struct afs_callback *newcb)
1067{
David Howells5a813272018-04-06 14:17:26 +01001068 struct afs_vnode *vnode;
David Howellsd2ddc772017-11-02 15:27:50 +00001069 struct inode *inode;
1070
1071 if (fc->ac.error < 0)
1072 return;
1073
David Howellsbc1527d2017-11-20 23:04:08 +00001074 d_drop(new_dentry);
1075
David Howellsd2ddc772017-11-02 15:27:50 +00001076 inode = afs_iget(fc->vnode->vfs_inode.i_sb, fc->key,
1077 newfid, newstatus, newcb, fc->cbi);
1078 if (IS_ERR(inode)) {
1079 /* ENOMEM or EINTR at a really inconvenient time - just abandon
1080 * the new directory on the server.
1081 */
1082 fc->ac.error = PTR_ERR(inode);
1083 return;
1084 }
1085
David Howells5a813272018-04-06 14:17:26 +01001086 vnode = AFS_FS_I(inode);
1087 set_bit(AFS_VNODE_NEW_CONTENT, &vnode->flags);
David Howellsbc1527d2017-11-20 23:04:08 +00001088 d_add(new_dentry, inode);
David Howellsd2ddc772017-11-02 15:27:50 +00001089}
1090
1091/*
David Howells260a9802007-04-26 15:59:35 -07001092 * create a directory on an AFS filesystem
1093 */
Al Viro18bb1db2011-07-26 01:41:39 -04001094static int afs_mkdir(struct inode *dir, struct dentry *dentry, umode_t mode)
David Howells260a9802007-04-26 15:59:35 -07001095{
David Howellsd2ddc772017-11-02 15:27:50 +00001096 struct afs_file_status newstatus;
1097 struct afs_fs_cursor fc;
1098 struct afs_callback newcb;
1099 struct afs_vnode *dvnode = AFS_FS_I(dir);
1100 struct afs_fid newfid;
David Howells260a9802007-04-26 15:59:35 -07001101 struct key *key;
David Howells63a46812018-04-06 14:17:25 +01001102 u64 data_version = dvnode->status.data_version;
David Howells260a9802007-04-26 15:59:35 -07001103 int ret;
1104
David Howellsd2ddc772017-11-02 15:27:50 +00001105 mode |= S_IFDIR;
David Howells260a9802007-04-26 15:59:35 -07001106
Al Viroa4555892014-10-21 20:11:25 -04001107 _enter("{%x:%u},{%pd},%ho",
1108 dvnode->fid.vid, dvnode->fid.vnode, dentry, mode);
David Howells260a9802007-04-26 15:59:35 -07001109
David Howells260a9802007-04-26 15:59:35 -07001110 key = afs_request_key(dvnode->volume->cell);
1111 if (IS_ERR(key)) {
1112 ret = PTR_ERR(key);
1113 goto error;
1114 }
1115
David Howellsd2ddc772017-11-02 15:27:50 +00001116 ret = -ERESTARTSYS;
1117 if (afs_begin_vnode_operation(&fc, dvnode, key)) {
1118 while (afs_select_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +01001119 fc.cb_break = afs_calc_vnode_cb_break(dvnode);
David Howells63a46812018-04-06 14:17:25 +01001120 afs_fs_create(&fc, dentry->d_name.name, mode, data_version,
David Howellsd2ddc772017-11-02 15:27:50 +00001121 &newfid, &newstatus, &newcb);
1122 }
David Howells260a9802007-04-26 15:59:35 -07001123
David Howellsd2ddc772017-11-02 15:27:50 +00001124 afs_check_for_remote_deletion(&fc, fc.vnode);
1125 afs_vnode_commit_status(&fc, dvnode, fc.cb_break);
1126 afs_vnode_new_inode(&fc, dentry, &newfid, &newstatus, &newcb);
1127 ret = afs_end_vnode_operation(&fc);
1128 if (ret < 0)
1129 goto error_key;
David Howells4433b692017-11-20 22:41:00 +00001130 } else {
1131 goto error_key;
David Howells260a9802007-04-26 15:59:35 -07001132 }
1133
David Howells63a46812018-04-06 14:17:25 +01001134 if (ret == 0 &&
1135 test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1136 afs_edit_dir_add(dvnode, &dentry->d_name, &newfid,
1137 afs_edit_dir_for_create);
1138
David Howells260a9802007-04-26 15:59:35 -07001139 key_put(key);
1140 _leave(" = 0");
1141 return 0;
1142
David Howellsd2ddc772017-11-02 15:27:50 +00001143error_key:
David Howells260a9802007-04-26 15:59:35 -07001144 key_put(key);
1145error:
1146 d_drop(dentry);
1147 _leave(" = %d", ret);
1148 return ret;
1149}
1150
1151/*
David Howellsd2ddc772017-11-02 15:27:50 +00001152 * Remove a subdir from a directory.
David Howells260a9802007-04-26 15:59:35 -07001153 */
David Howellsd2ddc772017-11-02 15:27:50 +00001154static void afs_dir_remove_subdir(struct dentry *dentry)
David Howells260a9802007-04-26 15:59:35 -07001155{
David Howells2b0143b2015-03-17 22:25:59 +00001156 if (d_really_is_positive(dentry)) {
David Howellsd2ddc772017-11-02 15:27:50 +00001157 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
1158
David Howells260a9802007-04-26 15:59:35 -07001159 clear_nlink(&vnode->vfs_inode);
1160 set_bit(AFS_VNODE_DELETED, &vnode->flags);
David Howellsc435ee32017-11-02 15:27:49 +00001161 clear_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
David Howells63a46812018-04-06 14:17:25 +01001162 clear_bit(AFS_VNODE_DIR_VALID, &vnode->flags);
David Howells260a9802007-04-26 15:59:35 -07001163 }
David Howells260a9802007-04-26 15:59:35 -07001164}
1165
1166/*
David Howellsd2ddc772017-11-02 15:27:50 +00001167 * remove a directory from an AFS filesystem
David Howells260a9802007-04-26 15:59:35 -07001168 */
David Howellsd2ddc772017-11-02 15:27:50 +00001169static int afs_rmdir(struct inode *dir, struct dentry *dentry)
David Howells260a9802007-04-26 15:59:35 -07001170{
David Howellsd2ddc772017-11-02 15:27:50 +00001171 struct afs_fs_cursor fc;
1172 struct afs_vnode *dvnode = AFS_FS_I(dir);
David Howells260a9802007-04-26 15:59:35 -07001173 struct key *key;
David Howells63a46812018-04-06 14:17:25 +01001174 u64 data_version = dvnode->status.data_version;
David Howells260a9802007-04-26 15:59:35 -07001175 int ret;
1176
Al Viroa4555892014-10-21 20:11:25 -04001177 _enter("{%x:%u},{%pd}",
1178 dvnode->fid.vid, dvnode->fid.vnode, dentry);
David Howells260a9802007-04-26 15:59:35 -07001179
David Howells260a9802007-04-26 15:59:35 -07001180 key = afs_request_key(dvnode->volume->cell);
1181 if (IS_ERR(key)) {
1182 ret = PTR_ERR(key);
1183 goto error;
1184 }
1185
David Howellsd2ddc772017-11-02 15:27:50 +00001186 ret = -ERESTARTSYS;
1187 if (afs_begin_vnode_operation(&fc, dvnode, key)) {
1188 while (afs_select_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +01001189 fc.cb_break = afs_calc_vnode_cb_break(dvnode);
David Howells63a46812018-04-06 14:17:25 +01001190 afs_fs_remove(&fc, dentry->d_name.name, true,
1191 data_version);
David Howellsd2ddc772017-11-02 15:27:50 +00001192 }
David Howells260a9802007-04-26 15:59:35 -07001193
David Howellsd2ddc772017-11-02 15:27:50 +00001194 afs_vnode_commit_status(&fc, dvnode, fc.cb_break);
1195 ret = afs_end_vnode_operation(&fc);
David Howells63a46812018-04-06 14:17:25 +01001196 if (ret == 0) {
David Howellsd2ddc772017-11-02 15:27:50 +00001197 afs_dir_remove_subdir(dentry);
David Howells63a46812018-04-06 14:17:25 +01001198 if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1199 afs_edit_dir_remove(dvnode, &dentry->d_name,
1200 afs_edit_dir_for_rmdir);
1201 }
David Howells260a9802007-04-26 15:59:35 -07001202 }
1203
1204 key_put(key);
David Howellsd2ddc772017-11-02 15:27:50 +00001205error:
1206 return ret;
1207}
David Howells260a9802007-04-26 15:59:35 -07001208
David Howellsd2ddc772017-11-02 15:27:50 +00001209/*
1210 * Remove a link to a file or symlink from a directory.
1211 *
1212 * If the file was not deleted due to excess hard links, the fileserver will
1213 * break the callback promise on the file - if it had one - before it returns
1214 * to us, and if it was deleted, it won't
1215 *
1216 * However, if we didn't have a callback promise outstanding, or it was
1217 * outstanding on a different server, then it won't break it either...
1218 */
David Howells440fbc32018-01-02 10:02:19 +00001219static int afs_dir_remove_link(struct dentry *dentry, struct key *key,
1220 unsigned long d_version_before,
1221 unsigned long d_version_after)
David Howellsd2ddc772017-11-02 15:27:50 +00001222{
David Howells440fbc32018-01-02 10:02:19 +00001223 bool dir_valid;
David Howellsd2ddc772017-11-02 15:27:50 +00001224 int ret = 0;
1225
David Howells440fbc32018-01-02 10:02:19 +00001226 /* There were no intervening changes on the server if the version
1227 * number we got back was incremented by exactly 1.
1228 */
1229 dir_valid = (d_version_after == d_version_before + 1);
1230
David Howellsd2ddc772017-11-02 15:27:50 +00001231 if (d_really_is_positive(dentry)) {
1232 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
1233
David Howells440fbc32018-01-02 10:02:19 +00001234 if (dir_valid) {
1235 drop_nlink(&vnode->vfs_inode);
1236 if (vnode->vfs_inode.i_nlink == 0) {
1237 set_bit(AFS_VNODE_DELETED, &vnode->flags);
1238 clear_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
1239 }
David Howellsd2ddc772017-11-02 15:27:50 +00001240 ret = 0;
David Howells440fbc32018-01-02 10:02:19 +00001241 } else {
1242 clear_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
1243
1244 if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
1245 kdebug("AFS_VNODE_DELETED");
1246
1247 ret = afs_validate(vnode, key);
1248 if (ret == -ESTALE)
1249 ret = 0;
1250 }
David Howellsd2ddc772017-11-02 15:27:50 +00001251 _debug("nlink %d [val %d]", vnode->vfs_inode.i_nlink, ret);
1252 }
1253
1254 return ret;
1255}
1256
1257/*
1258 * Remove a file or symlink from an AFS filesystem.
1259 */
1260static int afs_unlink(struct inode *dir, struct dentry *dentry)
1261{
1262 struct afs_fs_cursor fc;
1263 struct afs_vnode *dvnode = AFS_FS_I(dir), *vnode;
1264 struct key *key;
David Howells440fbc32018-01-02 10:02:19 +00001265 unsigned long d_version = (unsigned long)dentry->d_fsdata;
David Howells63a46812018-04-06 14:17:25 +01001266 u64 data_version = dvnode->status.data_version;
David Howellsd2ddc772017-11-02 15:27:50 +00001267 int ret;
1268
1269 _enter("{%x:%u},{%pd}",
1270 dvnode->fid.vid, dvnode->fid.vnode, dentry);
1271
1272 if (dentry->d_name.len >= AFSNAMEMAX)
1273 return -ENAMETOOLONG;
1274
1275 key = afs_request_key(dvnode->volume->cell);
1276 if (IS_ERR(key)) {
1277 ret = PTR_ERR(key);
1278 goto error;
1279 }
1280
1281 /* Try to make sure we have a callback promise on the victim. */
1282 if (d_really_is_positive(dentry)) {
1283 vnode = AFS_FS_I(d_inode(dentry));
1284 ret = afs_validate(vnode, key);
1285 if (ret < 0)
1286 goto error_key;
1287 }
1288
1289 ret = -ERESTARTSYS;
1290 if (afs_begin_vnode_operation(&fc, dvnode, key)) {
1291 while (afs_select_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +01001292 fc.cb_break = afs_calc_vnode_cb_break(dvnode);
David Howells63a46812018-04-06 14:17:25 +01001293 afs_fs_remove(&fc, dentry->d_name.name, false,
1294 data_version);
David Howellsd2ddc772017-11-02 15:27:50 +00001295 }
1296
1297 afs_vnode_commit_status(&fc, dvnode, fc.cb_break);
1298 ret = afs_end_vnode_operation(&fc);
1299 if (ret == 0)
David Howells440fbc32018-01-02 10:02:19 +00001300 ret = afs_dir_remove_link(
1301 dentry, key, d_version,
1302 (unsigned long)dvnode->status.data_version);
David Howells63a46812018-04-06 14:17:25 +01001303 if (ret == 0 &&
1304 test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1305 afs_edit_dir_remove(dvnode, &dentry->d_name,
1306 afs_edit_dir_for_unlink);
David Howellsd2ddc772017-11-02 15:27:50 +00001307 }
1308
1309error_key:
David Howells260a9802007-04-26 15:59:35 -07001310 key_put(key);
1311error:
1312 _leave(" = %d", ret);
1313 return ret;
1314}
1315
1316/*
1317 * create a regular file on an AFS filesystem
1318 */
Al Viro4acdaf22011-07-26 01:42:34 -04001319static int afs_create(struct inode *dir, struct dentry *dentry, umode_t mode,
Al Viroebfc3b42012-06-10 18:05:36 -04001320 bool excl)
David Howells260a9802007-04-26 15:59:35 -07001321{
David Howellsd2ddc772017-11-02 15:27:50 +00001322 struct afs_fs_cursor fc;
1323 struct afs_file_status newstatus;
1324 struct afs_callback newcb;
Colin Ian King43dd3882017-11-20 13:58:20 +00001325 struct afs_vnode *dvnode = AFS_FS_I(dir);
David Howellsd2ddc772017-11-02 15:27:50 +00001326 struct afs_fid newfid;
David Howells260a9802007-04-26 15:59:35 -07001327 struct key *key;
David Howells63a46812018-04-06 14:17:25 +01001328 u64 data_version = dvnode->status.data_version;
David Howells260a9802007-04-26 15:59:35 -07001329 int ret;
1330
David Howellsd2ddc772017-11-02 15:27:50 +00001331 mode |= S_IFREG;
David Howells260a9802007-04-26 15:59:35 -07001332
Al Viroa4555892014-10-21 20:11:25 -04001333 _enter("{%x:%u},{%pd},%ho,",
1334 dvnode->fid.vid, dvnode->fid.vnode, dentry, mode);
David Howells260a9802007-04-26 15:59:35 -07001335
David Howellsd2ddc772017-11-02 15:27:50 +00001336 ret = -ENAMETOOLONG;
1337 if (dentry->d_name.len >= AFSNAMEMAX)
1338 goto error;
1339
David Howells260a9802007-04-26 15:59:35 -07001340 key = afs_request_key(dvnode->volume->cell);
1341 if (IS_ERR(key)) {
1342 ret = PTR_ERR(key);
1343 goto error;
1344 }
1345
David Howellsd2ddc772017-11-02 15:27:50 +00001346 ret = -ERESTARTSYS;
1347 if (afs_begin_vnode_operation(&fc, dvnode, key)) {
1348 while (afs_select_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +01001349 fc.cb_break = afs_calc_vnode_cb_break(dvnode);
David Howells63a46812018-04-06 14:17:25 +01001350 afs_fs_create(&fc, dentry->d_name.name, mode, data_version,
David Howellsd2ddc772017-11-02 15:27:50 +00001351 &newfid, &newstatus, &newcb);
1352 }
David Howells260a9802007-04-26 15:59:35 -07001353
David Howellsd2ddc772017-11-02 15:27:50 +00001354 afs_check_for_remote_deletion(&fc, fc.vnode);
1355 afs_vnode_commit_status(&fc, dvnode, fc.cb_break);
1356 afs_vnode_new_inode(&fc, dentry, &newfid, &newstatus, &newcb);
1357 ret = afs_end_vnode_operation(&fc);
1358 if (ret < 0)
1359 goto error_key;
David Howells4433b692017-11-20 22:41:00 +00001360 } else {
1361 goto error_key;
David Howells260a9802007-04-26 15:59:35 -07001362 }
1363
David Howells63a46812018-04-06 14:17:25 +01001364 if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1365 afs_edit_dir_add(dvnode, &dentry->d_name, &newfid,
1366 afs_edit_dir_for_create);
1367
David Howells260a9802007-04-26 15:59:35 -07001368 key_put(key);
1369 _leave(" = 0");
1370 return 0;
1371
David Howellsd2ddc772017-11-02 15:27:50 +00001372error_key:
David Howells260a9802007-04-26 15:59:35 -07001373 key_put(key);
1374error:
1375 d_drop(dentry);
1376 _leave(" = %d", ret);
1377 return ret;
1378}
1379
1380/*
1381 * create a hard link between files in an AFS filesystem
1382 */
1383static int afs_link(struct dentry *from, struct inode *dir,
1384 struct dentry *dentry)
1385{
David Howellsd2ddc772017-11-02 15:27:50 +00001386 struct afs_fs_cursor fc;
David Howells260a9802007-04-26 15:59:35 -07001387 struct afs_vnode *dvnode, *vnode;
1388 struct key *key;
David Howells63a46812018-04-06 14:17:25 +01001389 u64 data_version;
David Howells260a9802007-04-26 15:59:35 -07001390 int ret;
1391
David Howells2b0143b2015-03-17 22:25:59 +00001392 vnode = AFS_FS_I(d_inode(from));
David Howells260a9802007-04-26 15:59:35 -07001393 dvnode = AFS_FS_I(dir);
David Howells63a46812018-04-06 14:17:25 +01001394 data_version = dvnode->status.data_version;
David Howells260a9802007-04-26 15:59:35 -07001395
Al Viroa4555892014-10-21 20:11:25 -04001396 _enter("{%x:%u},{%x:%u},{%pd}",
David Howells260a9802007-04-26 15:59:35 -07001397 vnode->fid.vid, vnode->fid.vnode,
1398 dvnode->fid.vid, dvnode->fid.vnode,
Al Viroa4555892014-10-21 20:11:25 -04001399 dentry);
David Howells260a9802007-04-26 15:59:35 -07001400
David Howellsd2ddc772017-11-02 15:27:50 +00001401 ret = -ENAMETOOLONG;
1402 if (dentry->d_name.len >= AFSNAMEMAX)
1403 goto error;
1404
David Howells260a9802007-04-26 15:59:35 -07001405 key = afs_request_key(dvnode->volume->cell);
1406 if (IS_ERR(key)) {
1407 ret = PTR_ERR(key);
1408 goto error;
1409 }
1410
David Howellsd2ddc772017-11-02 15:27:50 +00001411 ret = -ERESTARTSYS;
1412 if (afs_begin_vnode_operation(&fc, dvnode, key)) {
1413 if (mutex_lock_interruptible_nested(&vnode->io_lock, 1) < 0) {
1414 afs_end_vnode_operation(&fc);
David Howellsbc1527d2017-11-20 23:04:08 +00001415 goto error_key;
David Howellsd2ddc772017-11-02 15:27:50 +00001416 }
David Howells260a9802007-04-26 15:59:35 -07001417
David Howellsd2ddc772017-11-02 15:27:50 +00001418 while (afs_select_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +01001419 fc.cb_break = afs_calc_vnode_cb_break(dvnode);
1420 fc.cb_break_2 = afs_calc_vnode_cb_break(vnode);
David Howells63a46812018-04-06 14:17:25 +01001421 afs_fs_link(&fc, vnode, dentry->d_name.name, data_version);
David Howellsd2ddc772017-11-02 15:27:50 +00001422 }
1423
1424 afs_vnode_commit_status(&fc, dvnode, fc.cb_break);
1425 afs_vnode_commit_status(&fc, vnode, fc.cb_break_2);
1426 ihold(&vnode->vfs_inode);
1427 d_instantiate(dentry, &vnode->vfs_inode);
1428
1429 mutex_unlock(&vnode->io_lock);
1430 ret = afs_end_vnode_operation(&fc);
1431 if (ret < 0)
1432 goto error_key;
David Howells4433b692017-11-20 22:41:00 +00001433 } else {
1434 goto error_key;
David Howellsd2ddc772017-11-02 15:27:50 +00001435 }
1436
David Howells63a46812018-04-06 14:17:25 +01001437 if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1438 afs_edit_dir_add(dvnode, &dentry->d_name, &vnode->fid,
1439 afs_edit_dir_for_link);
1440
David Howells260a9802007-04-26 15:59:35 -07001441 key_put(key);
1442 _leave(" = 0");
1443 return 0;
1444
David Howellsd2ddc772017-11-02 15:27:50 +00001445error_key:
David Howells260a9802007-04-26 15:59:35 -07001446 key_put(key);
1447error:
1448 d_drop(dentry);
1449 _leave(" = %d", ret);
1450 return ret;
1451}
1452
1453/*
1454 * create a symlink in an AFS filesystem
1455 */
1456static int afs_symlink(struct inode *dir, struct dentry *dentry,
1457 const char *content)
1458{
David Howellsd2ddc772017-11-02 15:27:50 +00001459 struct afs_fs_cursor fc;
1460 struct afs_file_status newstatus;
1461 struct afs_vnode *dvnode = AFS_FS_I(dir);
1462 struct afs_fid newfid;
David Howells260a9802007-04-26 15:59:35 -07001463 struct key *key;
David Howells63a46812018-04-06 14:17:25 +01001464 u64 data_version = dvnode->status.data_version;
David Howells260a9802007-04-26 15:59:35 -07001465 int ret;
1466
Al Viroa4555892014-10-21 20:11:25 -04001467 _enter("{%x:%u},{%pd},%s",
1468 dvnode->fid.vid, dvnode->fid.vnode, dentry,
David Howells260a9802007-04-26 15:59:35 -07001469 content);
1470
David Howellsd2ddc772017-11-02 15:27:50 +00001471 ret = -ENAMETOOLONG;
1472 if (dentry->d_name.len >= AFSNAMEMAX)
1473 goto error;
1474
David Howells260a9802007-04-26 15:59:35 -07001475 ret = -EINVAL;
David Howells45222b92007-05-10 22:22:20 -07001476 if (strlen(content) >= AFSPATHMAX)
David Howells260a9802007-04-26 15:59:35 -07001477 goto error;
1478
1479 key = afs_request_key(dvnode->volume->cell);
1480 if (IS_ERR(key)) {
1481 ret = PTR_ERR(key);
1482 goto error;
1483 }
1484
David Howellsd2ddc772017-11-02 15:27:50 +00001485 ret = -ERESTARTSYS;
1486 if (afs_begin_vnode_operation(&fc, dvnode, key)) {
1487 while (afs_select_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +01001488 fc.cb_break = afs_calc_vnode_cb_break(dvnode);
David Howells63a46812018-04-06 14:17:25 +01001489 afs_fs_symlink(&fc, dentry->d_name.name,
1490 content, data_version,
David Howellsd2ddc772017-11-02 15:27:50 +00001491 &newfid, &newstatus);
1492 }
David Howells260a9802007-04-26 15:59:35 -07001493
David Howellsd2ddc772017-11-02 15:27:50 +00001494 afs_check_for_remote_deletion(&fc, fc.vnode);
1495 afs_vnode_commit_status(&fc, dvnode, fc.cb_break);
1496 afs_vnode_new_inode(&fc, dentry, &newfid, &newstatus, NULL);
1497 ret = afs_end_vnode_operation(&fc);
1498 if (ret < 0)
1499 goto error_key;
David Howells4433b692017-11-20 22:41:00 +00001500 } else {
1501 goto error_key;
David Howells260a9802007-04-26 15:59:35 -07001502 }
1503
David Howells63a46812018-04-06 14:17:25 +01001504 if (test_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1505 afs_edit_dir_add(dvnode, &dentry->d_name, &newfid,
1506 afs_edit_dir_for_symlink);
1507
David Howells260a9802007-04-26 15:59:35 -07001508 key_put(key);
1509 _leave(" = 0");
1510 return 0;
1511
David Howellsd2ddc772017-11-02 15:27:50 +00001512error_key:
David Howells260a9802007-04-26 15:59:35 -07001513 key_put(key);
1514error:
1515 d_drop(dentry);
1516 _leave(" = %d", ret);
1517 return ret;
1518}
1519
1520/*
1521 * rename a file in an AFS filesystem and/or move it between directories
1522 */
1523static int afs_rename(struct inode *old_dir, struct dentry *old_dentry,
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02001524 struct inode *new_dir, struct dentry *new_dentry,
1525 unsigned int flags)
David Howells260a9802007-04-26 15:59:35 -07001526{
David Howellsd2ddc772017-11-02 15:27:50 +00001527 struct afs_fs_cursor fc;
David Howells260a9802007-04-26 15:59:35 -07001528 struct afs_vnode *orig_dvnode, *new_dvnode, *vnode;
1529 struct key *key;
David Howells63a46812018-04-06 14:17:25 +01001530 u64 orig_data_version, new_data_version;
1531 bool new_negative = d_is_negative(new_dentry);
David Howells260a9802007-04-26 15:59:35 -07001532 int ret;
1533
Miklos Szeredi1cd66c92016-09-27 11:03:58 +02001534 if (flags)
1535 return -EINVAL;
1536
David Howells2b0143b2015-03-17 22:25:59 +00001537 vnode = AFS_FS_I(d_inode(old_dentry));
David Howells260a9802007-04-26 15:59:35 -07001538 orig_dvnode = AFS_FS_I(old_dir);
1539 new_dvnode = AFS_FS_I(new_dir);
David Howells63a46812018-04-06 14:17:25 +01001540 orig_data_version = orig_dvnode->status.data_version;
1541 new_data_version = new_dvnode->status.data_version;
David Howells260a9802007-04-26 15:59:35 -07001542
Al Viroa4555892014-10-21 20:11:25 -04001543 _enter("{%x:%u},{%x:%u},{%x:%u},{%pd}",
David Howells260a9802007-04-26 15:59:35 -07001544 orig_dvnode->fid.vid, orig_dvnode->fid.vnode,
1545 vnode->fid.vid, vnode->fid.vnode,
1546 new_dvnode->fid.vid, new_dvnode->fid.vnode,
Al Viroa4555892014-10-21 20:11:25 -04001547 new_dentry);
David Howells260a9802007-04-26 15:59:35 -07001548
David Howells260a9802007-04-26 15:59:35 -07001549 key = afs_request_key(orig_dvnode->volume->cell);
1550 if (IS_ERR(key)) {
1551 ret = PTR_ERR(key);
1552 goto error;
1553 }
1554
David Howellsd2ddc772017-11-02 15:27:50 +00001555 ret = -ERESTARTSYS;
1556 if (afs_begin_vnode_operation(&fc, orig_dvnode, key)) {
1557 if (orig_dvnode != new_dvnode) {
1558 if (mutex_lock_interruptible_nested(&new_dvnode->io_lock, 1) < 0) {
1559 afs_end_vnode_operation(&fc);
David Howellsbc1527d2017-11-20 23:04:08 +00001560 goto error_key;
David Howellsd2ddc772017-11-02 15:27:50 +00001561 }
1562 }
1563 while (afs_select_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +01001564 fc.cb_break = afs_calc_vnode_cb_break(orig_dvnode);
1565 fc.cb_break_2 = afs_calc_vnode_cb_break(new_dvnode);
David Howellsd2ddc772017-11-02 15:27:50 +00001566 afs_fs_rename(&fc, old_dentry->d_name.name,
David Howells63a46812018-04-06 14:17:25 +01001567 new_dvnode, new_dentry->d_name.name,
1568 orig_data_version, new_data_version);
David Howellsd2ddc772017-11-02 15:27:50 +00001569 }
1570
1571 afs_vnode_commit_status(&fc, orig_dvnode, fc.cb_break);
1572 afs_vnode_commit_status(&fc, new_dvnode, fc.cb_break_2);
1573 if (orig_dvnode != new_dvnode)
1574 mutex_unlock(&new_dvnode->io_lock);
1575 ret = afs_end_vnode_operation(&fc);
1576 if (ret < 0)
1577 goto error_key;
1578 }
1579
David Howells63a46812018-04-06 14:17:25 +01001580 if (ret == 0) {
1581 if (test_bit(AFS_VNODE_DIR_VALID, &orig_dvnode->flags))
1582 afs_edit_dir_remove(orig_dvnode, &old_dentry->d_name,
1583 afs_edit_dir_for_rename);
1584
1585 if (!new_negative &&
1586 test_bit(AFS_VNODE_DIR_VALID, &new_dvnode->flags))
1587 afs_edit_dir_remove(new_dvnode, &new_dentry->d_name,
1588 afs_edit_dir_for_rename);
1589
1590 if (test_bit(AFS_VNODE_DIR_VALID, &new_dvnode->flags))
1591 afs_edit_dir_add(new_dvnode, &new_dentry->d_name,
1592 &vnode->fid, afs_edit_dir_for_rename);
1593 }
1594
David Howellsd2ddc772017-11-02 15:27:50 +00001595error_key:
David Howells260a9802007-04-26 15:59:35 -07001596 key_put(key);
1597error:
David Howells260a9802007-04-26 15:59:35 -07001598 _leave(" = %d", ret);
1599 return ret;
1600}
David Howellsf3ddee82018-04-06 14:17:25 +01001601
1602/*
1603 * Release a directory page and clean up its private state if it's not busy
1604 * - return true if the page can now be released, false if not
1605 */
1606static int afs_dir_releasepage(struct page *page, gfp_t gfp_flags)
1607{
1608 struct afs_vnode *dvnode = AFS_FS_I(page->mapping->host);
1609
1610 _enter("{{%x:%u}[%lu]}", dvnode->fid.vid, dvnode->fid.vnode, page->index);
1611
1612 set_page_private(page, 0);
1613 ClearPagePrivate(page);
1614
1615 /* The directory will need reloading. */
1616 if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1617 afs_stat_v(dvnode, n_relpg);
1618 return 1;
1619}
1620
1621/*
1622 * invalidate part or all of a page
1623 * - release a page and clean up its private data if offset is 0 (indicating
1624 * the entire page)
1625 */
1626static void afs_dir_invalidatepage(struct page *page, unsigned int offset,
1627 unsigned int length)
1628{
1629 struct afs_vnode *dvnode = AFS_FS_I(page->mapping->host);
1630
1631 _enter("{%lu},%u,%u", page->index, offset, length);
1632
1633 BUG_ON(!PageLocked(page));
1634
1635 /* The directory will need reloading. */
1636 if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &dvnode->flags))
1637 afs_stat_v(dvnode, n_inval);
1638
1639 /* we clean up only if the entire page is being invalidated */
1640 if (offset == 0 && length == PAGE_SIZE) {
1641 set_page_private(page, 0);
1642 ClearPagePrivate(page);
1643 }
1644}