blob: f30aa5eacd39f91253e1590ff48f9db3212bdeca [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Copyright (c) 2002 Red Hat, Inc. All rights reserved.
3 *
4 * This software may be freely redistributed under the terms of the
5 * GNU General Public License.
6 *
7 * You should have received a copy of the GNU General Public License
8 * along with this program; if not, write to the Free Software
9 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
10 *
David Woodhouse44d1b982008-06-05 22:46:18 -070011 * Authors: David Woodhouse <dwmw2@infradead.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * David Howells <dhowells@redhat.com>
13 *
14 */
15
16#include <linux/kernel.h>
17#include <linux/module.h>
18#include <linux/init.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/fs.h>
20#include <linux/pagemap.h>
Alexey Dobriyane8edc6e2007-05-21 01:22:52 +040021#include <linux/sched.h>
wangleibec5eb62010-08-11 09:38:04 +010022#include <linux/mount.h>
23#include <linux/namei.h>
Jeff Laytona01179e2017-12-11 06:35:11 -050024#include <linux/iversion.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include "internal.h"
26
David Howellsd3e3b7ea2017-07-06 15:50:27 +010027static const struct inode_operations afs_symlink_inode_operations = {
28 .get_link = page_get_link,
29 .listxattr = afs_listxattr,
30};
31
David Howellsb134d682019-04-25 14:26:52 +010032static noinline void dump_vnode(struct afs_vnode *vnode, struct afs_vnode *parent_vnode)
33{
34 static unsigned long once_only;
35
36 pr_warn("kAFS: AFS vnode with undefined type %u\n",
37 vnode->status.type);
38 pr_warn("kAFS: A=%d m=%o s=%llx v=%llx\n",
39 vnode->status.abort_code,
40 vnode->status.mode,
41 vnode->status.size,
42 vnode->status.data_version);
43 pr_warn("kAFS: vnode %llx:%llx:%x\n",
44 vnode->fid.vid,
45 vnode->fid.vnode,
46 vnode->fid.unique);
47 if (parent_vnode)
48 pr_warn("kAFS: dir %llx:%llx:%x\n",
49 parent_vnode->fid.vid,
50 parent_vnode->fid.vnode,
51 parent_vnode->fid.unique);
52
53 if (!test_and_set_bit(0, &once_only))
54 dump_stack();
55}
56
Linus Torvalds1da177e2005-04-16 15:20:36 -070057/*
David Howellsdd9fbcb2018-04-06 14:17:24 +010058 * Initialise an inode from the vnode status.
Linus Torvalds1da177e2005-04-16 15:20:36 -070059 */
David Howellsb134d682019-04-25 14:26:52 +010060static int afs_inode_init_from_status(struct afs_vnode *vnode, struct key *key,
61 struct afs_vnode *parent_vnode)
Linus Torvalds1da177e2005-04-16 15:20:36 -070062{
63 struct inode *inode = AFS_VNODE_TO_I(vnode);
64
David Howells260a9802007-04-26 15:59:35 -070065 _debug("FS: ft=%d lk=%d sz=%llu ver=%Lu mod=%hu",
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 vnode->status.type,
67 vnode->status.nlink,
David S. Millerba3e0e12007-04-26 16:06:22 -070068 (unsigned long long) vnode->status.size,
David Howells08e0e7c2007-04-26 15:55:03 -070069 vnode->status.data_version,
Linus Torvalds1da177e2005-04-16 15:20:36 -070070 vnode->status.mode);
71
David Howellsc435ee32017-11-02 15:27:49 +000072 read_seqlock_excl(&vnode->cb_lock);
73
David Howellsdd9fbcb2018-04-06 14:17:24 +010074 afs_update_inode_from_status(vnode, &vnode->status, NULL,
75 AFS_VNODE_NOT_YET_SET);
76
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 switch (vnode->status.type) {
78 case AFS_FTYPE_FILE:
79 inode->i_mode = S_IFREG | vnode->status.mode;
80 inode->i_op = &afs_file_inode_operations;
David Howells00d3b7a2007-04-26 15:57:07 -070081 inode->i_fop = &afs_file_operations;
David Howellsf3ddee82018-04-06 14:17:25 +010082 inode->i_mapping->a_ops = &afs_fs_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 break;
84 case AFS_FTYPE_DIR:
85 inode->i_mode = S_IFDIR | vnode->status.mode;
86 inode->i_op = &afs_dir_inode_operations;
87 inode->i_fop = &afs_dir_file_operations;
David Howellsf3ddee82018-04-06 14:17:25 +010088 inode->i_mapping->a_ops = &afs_dir_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 break;
90 case AFS_FTYPE_SYMLINK:
David Howells944c74f2017-03-16 16:27:45 +000091 /* Symlinks with a mode of 0644 are actually mountpoints. */
92 if ((vnode->status.mode & 0777) == 0644) {
93 inode->i_flags |= S_AUTOMOUNT;
94
David Howells944c74f2017-03-16 16:27:45 +000095 set_bit(AFS_VNODE_MOUNTPOINT, &vnode->flags);
David Howells944c74f2017-03-16 16:27:45 +000096
97 inode->i_mode = S_IFDIR | 0555;
98 inode->i_op = &afs_mntpt_inode_operations;
99 inode->i_fop = &afs_mntpt_file_operations;
David Howellsf3ddee82018-04-06 14:17:25 +0100100 inode->i_mapping->a_ops = &afs_fs_aops;
David Howells944c74f2017-03-16 16:27:45 +0000101 } else {
102 inode->i_mode = S_IFLNK | vnode->status.mode;
David Howellsd3e3b7ea2017-07-06 15:50:27 +0100103 inode->i_op = &afs_symlink_inode_operations;
David Howellsf3ddee82018-04-06 14:17:25 +0100104 inode->i_mapping->a_ops = &afs_fs_aops;
David Howells944c74f2017-03-16 16:27:45 +0000105 }
Al Viro21fc61c2015-11-17 01:07:57 -0500106 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 break;
108 default:
David Howellsb134d682019-04-25 14:26:52 +0100109 dump_vnode(vnode, parent_vnode);
David Howellsc435ee32017-11-02 15:27:49 +0000110 read_sequnlock_excl(&vnode->cb_lock);
David Howells160cb952018-10-20 00:57:56 +0100111 return afs_protocol_error(NULL, -EBADMSG, afs_eproto_file_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 }
113
Marc Dionnec0abbb52019-04-25 12:04:37 -0300114 /*
115 * Estimate 512 bytes blocks used, rounded up to nearest 1K
116 * for consistency with other AFS clients.
117 */
118 inode->i_blocks = ((i_size_read(inode) + 1023) >> 10) << 1;
David Howellsa4ff7402018-04-06 14:17:24 +0100119 vnode->invalid_before = vnode->status.data_version;
David Howellsc435ee32017-11-02 15:27:49 +0000120
121 read_sequnlock_excl(&vnode->cb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 return 0;
David Howellsec268152007-04-26 15:49:28 -0700123}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125/*
David Howellsd2ddc772017-11-02 15:27:50 +0000126 * Fetch file status from the volume.
127 */
David Howells0c3a5ac2018-04-06 14:17:24 +0100128int afs_fetch_status(struct afs_vnode *vnode, struct key *key, bool new_inode)
David Howellsd2ddc772017-11-02 15:27:50 +0000129{
130 struct afs_fs_cursor fc;
131 int ret;
132
David Howells3b6492d2018-10-20 00:57:57 +0100133 _enter("%s,{%llx:%llu.%u,S=%lx}",
David Howellsd2ddc772017-11-02 15:27:50 +0000134 vnode->volume->name,
135 vnode->fid.vid, vnode->fid.vnode, vnode->fid.unique,
136 vnode->flags);
137
138 ret = -ERESTARTSYS;
139 if (afs_begin_vnode_operation(&fc, vnode, key)) {
140 while (afs_select_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +0100141 fc.cb_break = afs_calc_vnode_cb_break(vnode);
David Howells0c3a5ac2018-04-06 14:17:24 +0100142 afs_fs_fetch_file_status(&fc, NULL, new_inode);
David Howellsd2ddc772017-11-02 15:27:50 +0000143 }
144
145 afs_check_for_remote_deletion(&fc, fc.vnode);
146 afs_vnode_commit_status(&fc, vnode, fc.cb_break);
147 ret = afs_end_vnode_operation(&fc);
148 }
149
150 _leave(" = %d", ret);
151 return ret;
152}
153
154/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 * iget5() comparator
156 */
David Howellsc435ee32017-11-02 15:27:49 +0000157int afs_iget5_test(struct inode *inode, void *opaque)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
159 struct afs_iget_data *data = opaque;
David Howells3b6492d2018-10-20 00:57:57 +0100160 struct afs_vnode *vnode = AFS_FS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161
David Howells3b6492d2018-10-20 00:57:57 +0100162 return memcmp(&vnode->fid, &data->fid, sizeof(data->fid)) == 0;
David Howellsec268152007-04-26 15:49:28 -0700163}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165/*
wangleibec5eb62010-08-11 09:38:04 +0100166 * iget5() comparator for inode created by autocell operations
167 *
168 * These pseudo inodes don't match anything.
169 */
David Howells4d673da2018-02-06 06:26:30 +0000170static int afs_iget5_pseudo_dir_test(struct inode *inode, void *opaque)
wangleibec5eb62010-08-11 09:38:04 +0100171{
172 return 0;
173}
174
175/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 * iget5() inode initialiser
177 */
178static int afs_iget5_set(struct inode *inode, void *opaque)
179{
180 struct afs_iget_data *data = opaque;
181 struct afs_vnode *vnode = AFS_FS_I(inode);
182
Linus Torvalds1da177e2005-04-16 15:20:36 -0700183 vnode->fid = data->fid;
184 vnode->volume = data->volume;
185
David Howells3b6492d2018-10-20 00:57:57 +0100186 /* YFS supports 96-bit vnode IDs, but Linux only supports
187 * 64-bit inode numbers.
188 */
189 inode->i_ino = data->fid.vnode;
190 inode->i_generation = data->fid.unique;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 return 0;
David Howellsec268152007-04-26 15:49:28 -0700192}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194/*
David Howells4d673da2018-02-06 06:26:30 +0000195 * Create an inode for a dynamic root directory or an autocell dynamic
196 * automount dir.
wangleibec5eb62010-08-11 09:38:04 +0100197 */
David Howells4d673da2018-02-06 06:26:30 +0000198struct inode *afs_iget_pseudo_dir(struct super_block *sb, bool root)
wangleibec5eb62010-08-11 09:38:04 +0100199{
200 struct afs_iget_data data;
201 struct afs_super_info *as;
202 struct afs_vnode *vnode;
wangleibec5eb62010-08-11 09:38:04 +0100203 struct inode *inode;
204 static atomic_t afs_autocell_ino;
205
David Howells4d673da2018-02-06 06:26:30 +0000206 _enter("");
wangleibec5eb62010-08-11 09:38:04 +0100207
wangleibec5eb62010-08-11 09:38:04 +0100208 as = sb->s_fs_info;
David Howells4d673da2018-02-06 06:26:30 +0000209 if (as->volume) {
210 data.volume = as->volume;
211 data.fid.vid = as->volume->vid;
212 }
213 if (root) {
214 data.fid.vnode = 1;
215 data.fid.unique = 1;
216 } else {
217 data.fid.vnode = atomic_inc_return(&afs_autocell_ino);
218 data.fid.unique = 0;
219 }
wangleibec5eb62010-08-11 09:38:04 +0100220
David Howells4d673da2018-02-06 06:26:30 +0000221 inode = iget5_locked(sb, data.fid.vnode,
222 afs_iget5_pseudo_dir_test, afs_iget5_set,
wangleibec5eb62010-08-11 09:38:04 +0100223 &data);
224 if (!inode) {
225 _leave(" = -ENOMEM");
226 return ERR_PTR(-ENOMEM);
227 }
228
David Howells3b6492d2018-10-20 00:57:57 +0100229 _debug("GOT INODE %p { ino=%lu, vl=%llx, vn=%llx, u=%x }",
wangleibec5eb62010-08-11 09:38:04 +0100230 inode, inode->i_ino, data.fid.vid, data.fid.vnode,
231 data.fid.unique);
232
233 vnode = AFS_FS_I(inode);
234
235 /* there shouldn't be an existing inode */
236 BUG_ON(!(inode->i_state & I_NEW));
237
238 inode->i_size = 0;
239 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO;
David Howells4d673da2018-02-06 06:26:30 +0000240 if (root) {
241 inode->i_op = &afs_dynroot_inode_operations;
242 inode->i_fop = &afs_dynroot_file_operations;
243 } else {
244 inode->i_op = &afs_autocell_inode_operations;
245 }
Miklos Szeredibfe86842011-10-28 14:13:29 +0200246 set_nlink(inode, 2);
Eric W. Biedermana0a53862012-02-07 16:20:48 -0800247 inode->i_uid = GLOBAL_ROOT_UID;
248 inode->i_gid = GLOBAL_ROOT_GID;
Arnd Bergmannba25b812019-04-13 08:37:36 +0100249 inode->i_ctime = inode->i_atime = inode->i_mtime = current_time(inode);
wangleibec5eb62010-08-11 09:38:04 +0100250 inode->i_blocks = 0;
Jeff Laytona01179e2017-12-11 06:35:11 -0500251 inode_set_iversion_raw(inode, 0);
wangleibec5eb62010-08-11 09:38:04 +0100252 inode->i_generation = 0;
253
254 set_bit(AFS_VNODE_PSEUDODIR, &vnode->flags);
David Howells4d673da2018-02-06 06:26:30 +0000255 if (!root) {
256 set_bit(AFS_VNODE_MOUNTPOINT, &vnode->flags);
257 inode->i_flags |= S_AUTOMOUNT;
258 }
259
260 inode->i_flags |= S_NOATIME;
wangleibec5eb62010-08-11 09:38:04 +0100261 unlock_new_inode(inode);
262 _leave(" = %p", inode);
263 return inode;
264}
265
266/*
David Howells402cb8d2018-04-04 13:41:28 +0100267 * Get a cache cookie for an inode.
268 */
269static void afs_get_inode_cache(struct afs_vnode *vnode)
270{
271#ifdef CONFIG_AFS_FSCACHE
272 struct {
273 u32 vnode_id;
274 u32 unique;
275 u32 vnode_id_ext[2]; /* Allow for a 96-bit key */
276 } __packed key;
277 struct afs_vnode_cache_aux aux;
278
David Howellsf3ddee82018-04-06 14:17:25 +0100279 if (vnode->status.type == AFS_FTYPE_DIR) {
280 vnode->cache = NULL;
281 return;
282 }
283
David Howells402cb8d2018-04-04 13:41:28 +0100284 key.vnode_id = vnode->fid.vnode;
285 key.unique = vnode->fid.unique;
David Howells3b6492d2018-10-20 00:57:57 +0100286 key.vnode_id_ext[0] = vnode->fid.vnode >> 32;
287 key.vnode_id_ext[1] = vnode->fid.vnode_hi;
David Howells402cb8d2018-04-04 13:41:28 +0100288 aux.data_version = vnode->status.data_version;
289
290 vnode->cache = fscache_acquire_cookie(vnode->volume->cache,
291 &afs_vnode_cache_index_def,
292 &key, sizeof(key),
293 &aux, sizeof(aux),
David Howellsee1235a2018-04-04 13:41:28 +0100294 vnode, vnode->status.size, true);
David Howells402cb8d2018-04-04 13:41:28 +0100295#endif
296}
297
298/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299 * inode retrieval
300 */
David Howells260a9802007-04-26 15:59:35 -0700301struct inode *afs_iget(struct super_block *sb, struct key *key,
302 struct afs_fid *fid, struct afs_file_status *status,
David Howellsb134d682019-04-25 14:26:52 +0100303 struct afs_callback *cb, struct afs_cb_interest *cbi,
304 struct afs_vnode *parent_vnode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305{
306 struct afs_iget_data data = { .fid = *fid };
307 struct afs_super_info *as;
308 struct afs_vnode *vnode;
309 struct inode *inode;
310 int ret;
311
David Howells3b6492d2018-10-20 00:57:57 +0100312 _enter(",{%llx:%llu.%u},,", fid->vid, fid->vnode, fid->unique);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 as = sb->s_fs_info;
315 data.volume = as->volume;
316
317 inode = iget5_locked(sb, fid->vnode, afs_iget5_test, afs_iget5_set,
318 &data);
319 if (!inode) {
320 _leave(" = -ENOMEM");
David Howells08e0e7c2007-04-26 15:55:03 -0700321 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 }
323
David Howells3b6492d2018-10-20 00:57:57 +0100324 _debug("GOT INODE %p { vl=%llx vn=%llx, u=%x }",
David Howells08e0e7c2007-04-26 15:55:03 -0700325 inode, fid->vid, fid->vnode, fid->unique);
326
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 vnode = AFS_FS_I(inode);
328
329 /* deal with an existing inode */
330 if (!(inode->i_state & I_NEW)) {
David Howells08e0e7c2007-04-26 15:55:03 -0700331 _leave(" = %p", inode);
332 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333 }
334
David Howells260a9802007-04-26 15:59:35 -0700335 if (!status) {
336 /* it's a remotely extant inode */
David Howells0c3a5ac2018-04-06 14:17:24 +0100337 ret = afs_fetch_status(vnode, key, true);
David Howells260a9802007-04-26 15:59:35 -0700338 if (ret < 0)
339 goto bad_inode;
340 } else {
341 /* it's an inode we just created */
342 memcpy(&vnode->status, status, sizeof(vnode->status));
343
344 if (!cb) {
345 /* it's a symlink we just created (the fileserver
346 * didn't give us a callback) */
347 vnode->cb_version = 0;
David Howells260a9802007-04-26 15:59:35 -0700348 vnode->cb_type = 0;
David Howells12d8e952018-10-20 00:57:58 +0100349 vnode->cb_expires_at = ktime_get();
David Howells260a9802007-04-26 15:59:35 -0700350 } else {
351 vnode->cb_version = cb->version;
David Howells260a9802007-04-26 15:59:35 -0700352 vnode->cb_type = cb->type;
David Howells12d8e952018-10-20 00:57:58 +0100353 vnode->cb_expires_at = cb->expires_at;
David Howellsd2ddc772017-11-02 15:27:50 +0000354 vnode->cb_interest = afs_get_cb_interest(cbi);
David Howellsc435ee32017-11-02 15:27:49 +0000355 set_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
David Howells260a9802007-04-26 15:59:35 -0700356 }
David Howellsc435ee32017-11-02 15:27:49 +0000357
358 vnode->cb_expires_at += ktime_get_real_seconds();
David Howells260a9802007-04-26 15:59:35 -0700359 }
360
David Howellsb134d682019-04-25 14:26:52 +0100361 ret = afs_inode_init_from_status(vnode, key, parent_vnode);
David Howells08e0e7c2007-04-26 15:55:03 -0700362 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 goto bad_inode;
364
David Howells5800db82018-04-06 14:17:24 +0100365 afs_get_inode_cache(vnode);
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 /* success */
David Howells260a9802007-04-26 15:59:35 -0700368 clear_bit(AFS_VNODE_UNSET, &vnode->flags);
David Howells08e0e7c2007-04-26 15:55:03 -0700369 inode->i_flags |= S_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 unlock_new_inode(inode);
David Howells08e0e7c2007-04-26 15:55:03 -0700371 _leave(" = %p [CB { v=%u t=%u }]", inode, vnode->cb_version, vnode->cb_type);
372 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
374 /* failure */
David Howellsec268152007-04-26 15:49:28 -0700375bad_inode:
David Howellsaa7fa242008-02-07 00:15:28 -0800376 iget_failed(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 _leave(" = %d [bad]", ret);
David Howells08e0e7c2007-04-26 15:55:03 -0700378 return ERR_PTR(ret);
David Howellsec268152007-04-26 15:49:28 -0700379}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381/*
David Howells416351f2007-05-09 02:33:45 -0700382 * mark the data attached to an inode as obsolete due to a write on the server
383 * - might also want to ditch all the outstanding writes and dirty pages
384 */
385void afs_zap_data(struct afs_vnode *vnode)
386{
David Howells3b6492d2018-10-20 00:57:57 +0100387 _enter("{%llx:%llu}", vnode->fid.vid, vnode->fid.vnode);
David Howells416351f2007-05-09 02:33:45 -0700388
David Howellsc1515992018-04-04 13:41:25 +0100389#ifdef CONFIG_AFS_FSCACHE
390 fscache_invalidate(vnode->cache);
391#endif
392
David Howells416351f2007-05-09 02:33:45 -0700393 /* nuke all the non-dirty pages that aren't locked, mapped or being
David Howells0f300ca2007-05-10 22:22:20 -0700394 * written back in a regular file and completely discard the pages in a
395 * directory or symlink */
396 if (S_ISREG(vnode->vfs_inode.i_mode))
397 invalidate_remote_inode(&vnode->vfs_inode);
398 else
399 invalidate_inode_pages2(vnode->vfs_inode.i_mapping);
David Howells416351f2007-05-09 02:33:45 -0700400}
401
402/*
David Howells260a9802007-04-26 15:59:35 -0700403 * validate a vnode/inode
404 * - there are several things we need to check
405 * - parent dir data changes (rm, rmdir, rename, mkdir, create, link,
406 * symlink)
407 * - parent dir metadata changed (security changes)
408 * - dentry data changed (write, truncate)
409 * - dentry metadata changed (security changes)
410 */
411int afs_validate(struct afs_vnode *vnode, struct key *key)
412{
David Howellsc435ee32017-11-02 15:27:49 +0000413 time64_t now = ktime_get_real_seconds();
David Howellsae3b7362018-11-13 23:20:21 +0000414 bool valid;
David Howells260a9802007-04-26 15:59:35 -0700415 int ret;
416
David Howells3b6492d2018-10-20 00:57:57 +0100417 _enter("{v={%llx:%llu} fl=%lx},%x",
David Howells260a9802007-04-26 15:59:35 -0700418 vnode->fid.vid, vnode->fid.vnode, vnode->flags,
419 key_serial(key));
420
David Howellsc435ee32017-11-02 15:27:49 +0000421 /* Quickly check the callback state. Ideally, we'd use read_seqbegin
422 * here, but we have no way to pass the net namespace to the RCU
423 * cleanup for the server record.
424 */
425 read_seqlock_excl(&vnode->cb_lock);
426
427 if (test_bit(AFS_VNODE_CB_PROMISED, &vnode->flags)) {
David Howells68251f02018-05-12 22:31:33 +0100428 if (vnode->cb_s_break != vnode->cb_interest->server->cb_s_break ||
429 vnode->cb_v_break != vnode->volume->cb_v_break) {
David Howellsc435ee32017-11-02 15:27:49 +0000430 vnode->cb_s_break = vnode->cb_interest->server->cb_s_break;
David Howells68251f02018-05-12 22:31:33 +0100431 vnode->cb_v_break = vnode->volume->cb_v_break;
432 valid = false;
David Howells63a46812018-04-06 14:17:25 +0100433 } else if (vnode->status.type == AFS_FTYPE_DIR &&
David Howellsae3b7362018-11-13 23:20:21 +0000434 (!test_bit(AFS_VNODE_DIR_VALID, &vnode->flags) ||
435 vnode->cb_expires_at - 10 <= now)) {
436 valid = false;
437 } else if (test_bit(AFS_VNODE_ZAP_DATA, &vnode->flags) ||
438 vnode->cb_expires_at - 10 <= now) {
439 valid = false;
440 } else {
David Howells68251f02018-05-12 22:31:33 +0100441 valid = true;
David Howells260a9802007-04-26 15:59:35 -0700442 }
David Howellsc435ee32017-11-02 15:27:49 +0000443 } else if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
444 valid = true;
David Howellsae3b7362018-11-13 23:20:21 +0000445 } else {
David Howellsae3b7362018-11-13 23:20:21 +0000446 vnode->cb_v_break = vnode->volume->cb_v_break;
447 valid = false;
David Howells260a9802007-04-26 15:59:35 -0700448 }
449
David Howellsc435ee32017-11-02 15:27:49 +0000450 read_sequnlock_excl(&vnode->cb_lock);
David Howells440fbc32018-01-02 10:02:19 +0000451
452 if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
453 clear_nlink(&vnode->vfs_inode);
454
David Howellsc435ee32017-11-02 15:27:49 +0000455 if (valid)
David Howells260a9802007-04-26 15:59:35 -0700456 goto valid;
457
David Howellsb61f7dc2018-04-27 20:46:22 +0100458 down_write(&vnode->validate_lock);
David Howells260a9802007-04-26 15:59:35 -0700459
460 /* if the promise has expired, we need to check the server again to get
461 * a new promise - note that if the (parent) directory's metadata was
462 * changed then the security may be different and we may no longer have
463 * access */
David Howellsc435ee32017-11-02 15:27:49 +0000464 if (!test_bit(AFS_VNODE_CB_PROMISED, &vnode->flags)) {
David Howells260a9802007-04-26 15:59:35 -0700465 _debug("not promised");
David Howells0c3a5ac2018-04-06 14:17:24 +0100466 ret = afs_fetch_status(vnode, key, false);
David Howellsc435ee32017-11-02 15:27:49 +0000467 if (ret < 0) {
468 if (ret == -ENOENT) {
469 set_bit(AFS_VNODE_DELETED, &vnode->flags);
470 ret = -ESTALE;
471 }
David Howells260a9802007-04-26 15:59:35 -0700472 goto error_unlock;
David Howellsc435ee32017-11-02 15:27:49 +0000473 }
David Howells260a9802007-04-26 15:59:35 -0700474 _debug("new promise [fl=%lx]", vnode->flags);
475 }
476
477 if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
478 _debug("file already deleted");
479 ret = -ESTALE;
480 goto error_unlock;
481 }
482
483 /* if the vnode's data version number changed then its contents are
484 * different */
David Howells416351f2007-05-09 02:33:45 -0700485 if (test_and_clear_bit(AFS_VNODE_ZAP_DATA, &vnode->flags))
486 afs_zap_data(vnode);
David Howellsb61f7dc2018-04-27 20:46:22 +0100487 up_write(&vnode->validate_lock);
David Howells260a9802007-04-26 15:59:35 -0700488valid:
489 _leave(" = 0");
490 return 0;
491
492error_unlock:
David Howellsb61f7dc2018-04-27 20:46:22 +0100493 up_write(&vnode->validate_lock);
David Howells260a9802007-04-26 15:59:35 -0700494 _leave(" = %d", ret);
495 return ret;
496}
497
498/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499 * read the attributes of an inode
500 */
David Howellsa528d352017-01-31 16:46:22 +0000501int afs_getattr(const struct path *path, struct kstat *stat,
502 u32 request_mask, unsigned int query_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
David Howellsa528d352017-01-31 16:46:22 +0000504 struct inode *inode = d_inode(path->dentry);
David Howellsc435ee32017-11-02 15:27:49 +0000505 struct afs_vnode *vnode = AFS_FS_I(inode);
506 int seq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507
David Howellsd6e43f72011-06-14 00:45:44 +0100508 _enter("{ ino=%lu v=%u }", inode->i_ino, inode->i_generation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509
David Howellsc435ee32017-11-02 15:27:49 +0000510 do {
511 read_seqbegin_or_lock(&vnode->cb_lock, &seq);
512 generic_fillattr(inode, stat);
513 } while (need_seqretry(&vnode->cb_lock, seq));
514
515 done_seqretry(&vnode->cb_lock, seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 return 0;
David Howellsec268152007-04-26 15:49:28 -0700517}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519/*
wangleibec5eb62010-08-11 09:38:04 +0100520 * discard an AFS inode
521 */
522int afs_drop_inode(struct inode *inode)
523{
524 _enter("");
525
526 if (test_bit(AFS_VNODE_PSEUDODIR, &AFS_FS_I(inode)->flags))
527 return generic_delete_inode(inode);
528 else
529 return generic_drop_inode(inode);
530}
531
532/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 * clear an AFS inode
534 */
Al Virob57922d2010-06-07 14:34:48 -0400535void afs_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536{
537 struct afs_vnode *vnode;
538
539 vnode = AFS_FS_I(inode);
540
David Howells3b6492d2018-10-20 00:57:57 +0100541 _enter("{%llx:%llu.%d}",
David Howells260a9802007-04-26 15:59:35 -0700542 vnode->fid.vid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 vnode->fid.vnode,
David Howellsc435ee32017-11-02 15:27:49 +0000544 vnode->fid.unique);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545
David Howells08e0e7c2007-04-26 15:55:03 -0700546 _debug("CLEAR INODE %p", inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
David Howells08e0e7c2007-04-26 15:55:03 -0700548 ASSERTCMP(inode->i_ino, ==, vnode->fid.vnode);
549
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700550 truncate_inode_pages_final(&inode->i_data);
Jan Karadbd57682012-05-03 14:48:02 +0200551 clear_inode(inode);
Al Virob57922d2010-06-07 14:34:48 -0400552
David Howellsc435ee32017-11-02 15:27:49 +0000553 if (vnode->cb_interest) {
554 afs_put_cb_interest(afs_i2net(inode), vnode->cb_interest);
555 vnode->cb_interest = NULL;
David Howells08e0e7c2007-04-26 15:55:03 -0700556 }
557
David Howells4343d002017-11-02 15:27:52 +0000558 while (!list_empty(&vnode->wb_keys)) {
559 struct afs_wb_key *wbk = list_entry(vnode->wb_keys.next,
560 struct afs_wb_key, vnode_link);
561 list_del(&wbk->vnode_link);
562 afs_put_wb_key(wbk);
563 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
David Howells9b3f26c2009-04-03 16:42:41 +0100565#ifdef CONFIG_AFS_FSCACHE
David Howells402cb8d2018-04-04 13:41:28 +0100566 {
567 struct afs_vnode_cache_aux aux;
568
569 aux.data_version = vnode->status.data_version;
570 fscache_relinquish_cookie(vnode->cache, &aux,
571 test_bit(AFS_VNODE_DELETED, &vnode->flags));
572 vnode->cache = NULL;
573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574#endif
575
David Howellsa1b879e2019-05-15 12:09:17 +0100576 afs_prune_wb_keys(vnode);
David Howellsfe342cf2018-04-09 21:12:31 +0100577 afs_put_permits(rcu_access_pointer(vnode->permit_cache));
David Howells79ddbfa2019-04-25 14:26:51 +0100578 key_put(vnode->silly_key);
579 vnode->silly_key = NULL;
David Howells59d49072019-01-09 17:23:54 +0000580 key_put(vnode->lock_key);
581 vnode->lock_key = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700582 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700583}
David Howells31143d52007-05-09 02:33:46 -0700584
585/*
586 * set the attributes of an inode
587 */
588int afs_setattr(struct dentry *dentry, struct iattr *attr)
589{
David Howellsd2ddc772017-11-02 15:27:50 +0000590 struct afs_fs_cursor fc;
David Howells2b0143b2015-03-17 22:25:59 +0000591 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
David Howells31143d52007-05-09 02:33:46 -0700592 struct key *key;
593 int ret;
594
David Howells3b6492d2018-10-20 00:57:57 +0100595 _enter("{%llx:%llu},{n=%pd},%x",
Al Viroa4555892014-10-21 20:11:25 -0400596 vnode->fid.vid, vnode->fid.vnode, dentry,
David Howells31143d52007-05-09 02:33:46 -0700597 attr->ia_valid);
598
599 if (!(attr->ia_valid & (ATTR_SIZE | ATTR_MODE | ATTR_UID | ATTR_GID |
600 ATTR_MTIME))) {
601 _leave(" = 0 [unsupported]");
602 return 0;
603 }
604
605 /* flush any dirty data outstanding on a regular file */
David Howells4343d002017-11-02 15:27:52 +0000606 if (S_ISREG(vnode->vfs_inode.i_mode))
David Howells31143d52007-05-09 02:33:46 -0700607 filemap_write_and_wait(vnode->vfs_inode.i_mapping);
David Howells31143d52007-05-09 02:33:46 -0700608
609 if (attr->ia_valid & ATTR_FILE) {
David Howells215804a2017-11-02 15:27:52 +0000610 key = afs_file_key(attr->ia_file);
David Howells31143d52007-05-09 02:33:46 -0700611 } else {
612 key = afs_request_key(vnode->volume->cell);
613 if (IS_ERR(key)) {
614 ret = PTR_ERR(key);
615 goto error;
616 }
617 }
618
David Howellsd2ddc772017-11-02 15:27:50 +0000619 ret = -ERESTARTSYS;
620 if (afs_begin_vnode_operation(&fc, vnode, key)) {
621 while (afs_select_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +0100622 fc.cb_break = afs_calc_vnode_cb_break(vnode);
David Howellsd2ddc772017-11-02 15:27:50 +0000623 afs_fs_setattr(&fc, attr);
624 }
625
626 afs_check_for_remote_deletion(&fc, fc.vnode);
627 afs_vnode_commit_status(&fc, vnode, fc.cb_break);
628 ret = afs_end_vnode_operation(&fc);
629 }
630
David Howells31143d52007-05-09 02:33:46 -0700631 if (!(attr->ia_valid & ATTR_FILE))
632 key_put(key);
633
634error:
635 _leave(" = %d", ret);
636 return ret;
637}