blob: 8d3d060a33fcf766914e5e68af3c95a1a2af1d4b [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,
David Howellsa58823a2019-05-09 15:16:10 +010061 struct afs_cb_interest *cbi,
62 struct afs_vnode *parent_vnode,
63 struct afs_status_cb *scb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070064{
David Howellsa58823a2019-05-09 15:16:10 +010065 struct afs_cb_interest *old_cbi = NULL;
66 struct afs_file_status *status = &scb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070067 struct inode *inode = AFS_VNODE_TO_I(vnode);
David Howellsa58823a2019-05-09 15:16:10 +010068 struct timespec64 t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
David Howells260a9802007-04-26 15:59:35 -070070 _debug("FS: ft=%d lk=%d sz=%llu ver=%Lu mod=%hu",
David Howellsa58823a2019-05-09 15:16:10 +010071 status->type,
72 status->nlink,
73 (unsigned long long) status->size,
74 status->data_version,
75 status->mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
David Howellsa58823a2019-05-09 15:16:10 +010077 write_seqlock(&vnode->cb_lock);
David Howellsc435ee32017-11-02 15:27:49 +000078
David Howellsa58823a2019-05-09 15:16:10 +010079 vnode->status = *status;
David Howellsdd9fbcb2018-04-06 14:17:24 +010080
David Howellsa58823a2019-05-09 15:16:10 +010081 t = status->mtime_client;
82 inode->i_ctime = t;
83 inode->i_mtime = t;
84 inode->i_atime = t;
85 inode->i_uid = make_kuid(&init_user_ns, status->owner);
86 inode->i_gid = make_kgid(&init_user_ns, status->group);
87 set_nlink(&vnode->vfs_inode, status->nlink);
88
89 switch (status->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 case AFS_FTYPE_FILE:
David Howellsa58823a2019-05-09 15:16:10 +010091 inode->i_mode = S_IFREG | status->mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092 inode->i_op = &afs_file_inode_operations;
David Howells00d3b7a2007-04-26 15:57:07 -070093 inode->i_fop = &afs_file_operations;
David Howellsf3ddee82018-04-06 14:17:25 +010094 inode->i_mapping->a_ops = &afs_fs_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 break;
96 case AFS_FTYPE_DIR:
David Howellsa58823a2019-05-09 15:16:10 +010097 inode->i_mode = S_IFDIR | status->mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 inode->i_op = &afs_dir_inode_operations;
99 inode->i_fop = &afs_dir_file_operations;
David Howellsf3ddee82018-04-06 14:17:25 +0100100 inode->i_mapping->a_ops = &afs_dir_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 break;
102 case AFS_FTYPE_SYMLINK:
David Howells944c74f2017-03-16 16:27:45 +0000103 /* Symlinks with a mode of 0644 are actually mountpoints. */
David Howellsa58823a2019-05-09 15:16:10 +0100104 if ((status->mode & 0777) == 0644) {
David Howells944c74f2017-03-16 16:27:45 +0000105 inode->i_flags |= S_AUTOMOUNT;
106
David Howells944c74f2017-03-16 16:27:45 +0000107 set_bit(AFS_VNODE_MOUNTPOINT, &vnode->flags);
David Howells944c74f2017-03-16 16:27:45 +0000108
109 inode->i_mode = S_IFDIR | 0555;
110 inode->i_op = &afs_mntpt_inode_operations;
111 inode->i_fop = &afs_mntpt_file_operations;
David Howellsf3ddee82018-04-06 14:17:25 +0100112 inode->i_mapping->a_ops = &afs_fs_aops;
David Howells944c74f2017-03-16 16:27:45 +0000113 } else {
David Howellsa58823a2019-05-09 15:16:10 +0100114 inode->i_mode = S_IFLNK | status->mode;
David Howellsd3e3b7ea2017-07-06 15:50:27 +0100115 inode->i_op = &afs_symlink_inode_operations;
David Howellsf3ddee82018-04-06 14:17:25 +0100116 inode->i_mapping->a_ops = &afs_fs_aops;
David Howells944c74f2017-03-16 16:27:45 +0000117 }
Al Viro21fc61c2015-11-17 01:07:57 -0500118 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 break;
120 default:
David Howellsb134d682019-04-25 14:26:52 +0100121 dump_vnode(vnode, parent_vnode);
David Howellsa58823a2019-05-09 15:16:10 +0100122 write_sequnlock(&vnode->cb_lock);
David Howells160cb952018-10-20 00:57:56 +0100123 return afs_protocol_error(NULL, -EBADMSG, afs_eproto_file_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 }
125
Marc Dionnec0abbb52019-04-25 12:04:37 -0300126 /*
127 * Estimate 512 bytes blocks used, rounded up to nearest 1K
128 * for consistency with other AFS clients.
129 */
130 inode->i_blocks = ((i_size_read(inode) + 1023) >> 10) << 1;
David Howellsa58823a2019-05-09 15:16:10 +0100131 i_size_write(&vnode->vfs_inode, status->size);
David Howellsc435ee32017-11-02 15:27:49 +0000132
David Howellsa58823a2019-05-09 15:16:10 +0100133 vnode->invalid_before = status->data_version;
134 inode_set_iversion_raw(&vnode->vfs_inode, status->data_version);
135
136 if (!scb->have_cb) {
137 /* it's a symlink we just created (the fileserver
138 * didn't give us a callback) */
David Howellsa58823a2019-05-09 15:16:10 +0100139 vnode->cb_expires_at = ktime_get_real_seconds();
140 } else {
David Howellsa58823a2019-05-09 15:16:10 +0100141 vnode->cb_expires_at = scb->callback.expires_at;
142 old_cbi = vnode->cb_interest;
143 if (cbi != old_cbi)
144 vnode->cb_interest = afs_get_cb_interest(cbi);
145 else
146 old_cbi = NULL;
147 set_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
148 }
149
150 write_sequnlock(&vnode->cb_lock);
151 afs_put_cb_interest(afs_v2net(vnode), old_cbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152 return 0;
David Howellsec268152007-04-26 15:49:28 -0700153}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155/*
David Howellsa58823a2019-05-09 15:16:10 +0100156 * Update the core inode struct from a returned status record.
157 */
158static void afs_apply_status(struct afs_fs_cursor *fc,
159 struct afs_vnode *vnode,
160 struct afs_status_cb *scb,
161 const afs_dataversion_t *expected_version)
162{
163 struct afs_file_status *status = &scb->status;
164 struct timespec64 t;
165 umode_t mode;
166 bool data_changed = false;
167
168 BUG_ON(test_bit(AFS_VNODE_UNSET, &vnode->flags));
169
170 if (status->type != vnode->status.type) {
171 pr_warning("Vnode %llx:%llx:%x changed type %u to %u\n",
172 vnode->fid.vid,
173 vnode->fid.vnode,
174 vnode->fid.unique,
175 status->type, vnode->status.type);
176 afs_protocol_error(NULL, -EBADMSG, afs_eproto_bad_status);
177 return;
178 }
179
180 if (status->nlink != vnode->status.nlink)
181 set_nlink(&vnode->vfs_inode, status->nlink);
182
183 if (status->owner != vnode->status.owner)
184 vnode->vfs_inode.i_uid = make_kuid(&init_user_ns, status->owner);
185
186 if (status->group != vnode->status.group)
187 vnode->vfs_inode.i_gid = make_kgid(&init_user_ns, status->group);
188
189 if (status->mode != vnode->status.mode) {
190 mode = vnode->vfs_inode.i_mode;
191 mode &= ~S_IALLUGO;
192 mode |= status->mode;
193 WRITE_ONCE(vnode->vfs_inode.i_mode, mode);
194 }
195
196 t = status->mtime_client;
197 vnode->vfs_inode.i_ctime = t;
198 vnode->vfs_inode.i_mtime = t;
199 vnode->vfs_inode.i_atime = t;
200
201 if (vnode->status.data_version != status->data_version)
202 data_changed = true;
203
204 vnode->status = *status;
205
206 if (expected_version &&
207 *expected_version != status->data_version) {
208 kdebug("vnode modified %llx on {%llx:%llu} [exp %llx] %s",
209 (unsigned long long) status->data_version,
210 vnode->fid.vid, vnode->fid.vnode,
211 (unsigned long long) *expected_version,
212 fc->type ? fc->type->name : "???");
213 vnode->invalid_before = status->data_version;
214 if (vnode->status.type == AFS_FTYPE_DIR) {
215 if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &vnode->flags))
216 afs_stat_v(vnode, n_inval);
217 } else {
218 set_bit(AFS_VNODE_ZAP_DATA, &vnode->flags);
219 }
220 } else if (vnode->status.type == AFS_FTYPE_DIR) {
221 /* Expected directory change is handled elsewhere so
222 * that we can locally edit the directory and save on a
223 * download.
224 */
225 if (test_bit(AFS_VNODE_DIR_VALID, &vnode->flags))
226 data_changed = false;
227 }
228
229 if (data_changed) {
230 inode_set_iversion_raw(&vnode->vfs_inode, status->data_version);
231 i_size_write(&vnode->vfs_inode, status->size);
232 }
233}
234
235/*
236 * Apply a callback to a vnode.
237 */
238static void afs_apply_callback(struct afs_fs_cursor *fc,
239 struct afs_vnode *vnode,
240 struct afs_status_cb *scb,
241 unsigned int cb_break)
242{
243 struct afs_cb_interest *old;
244 struct afs_callback *cb = &scb->callback;
245
246 if (!afs_cb_is_broken(cb_break, vnode, fc->cbi)) {
David Howellsa58823a2019-05-09 15:16:10 +0100247 vnode->cb_expires_at = cb->expires_at;
248 old = vnode->cb_interest;
249 if (old != fc->cbi) {
250 vnode->cb_interest = afs_get_cb_interest(fc->cbi);
251 afs_put_cb_interest(afs_v2net(vnode), old);
252 }
253 set_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
254 }
255}
256
257/*
258 * Apply the received status and callback to an inode all in the same critical
259 * section to avoid races with afs_validate().
260 */
261void afs_vnode_commit_status(struct afs_fs_cursor *fc,
262 struct afs_vnode *vnode,
263 unsigned int cb_break,
264 const afs_dataversion_t *expected_version,
265 struct afs_status_cb *scb)
266{
267 if (fc->ac.error != 0)
268 return;
269
270 write_seqlock(&vnode->cb_lock);
271
272 afs_apply_status(fc, vnode, scb, expected_version);
273 if (scb->have_cb)
274 afs_apply_callback(fc, vnode, scb, cb_break);
275
276 write_sequnlock(&vnode->cb_lock);
277
278 if (fc->ac.error == 0)
279 afs_cache_permit(vnode, fc->key, cb_break, scb);
280}
281
282/*
David Howellsd2ddc772017-11-02 15:27:50 +0000283 * Fetch file status from the volume.
284 */
David Howellsa58823a2019-05-09 15:16:10 +0100285int afs_fetch_status(struct afs_vnode *vnode, struct key *key, bool is_new,
286 afs_access_t *_caller_access)
David Howellsd2ddc772017-11-02 15:27:50 +0000287{
David Howellsa58823a2019-05-09 15:16:10 +0100288 struct afs_status_cb *scb;
David Howellsd2ddc772017-11-02 15:27:50 +0000289 struct afs_fs_cursor fc;
290 int ret;
291
David Howells3b6492d2018-10-20 00:57:57 +0100292 _enter("%s,{%llx:%llu.%u,S=%lx}",
David Howellsd2ddc772017-11-02 15:27:50 +0000293 vnode->volume->name,
294 vnode->fid.vid, vnode->fid.vnode, vnode->fid.unique,
295 vnode->flags);
296
David Howellsa58823a2019-05-09 15:16:10 +0100297 scb = kzalloc(sizeof(struct afs_status_cb), GFP_KERNEL);
298 if (!scb)
299 return -ENOMEM;
300
David Howellsd2ddc772017-11-02 15:27:50 +0000301 ret = -ERESTARTSYS;
David Howells20b83912019-05-08 16:16:31 +0100302 if (afs_begin_vnode_operation(&fc, vnode, key, true)) {
David Howellsa58823a2019-05-09 15:16:10 +0100303 afs_dataversion_t data_version = vnode->status.data_version;
304
David Howellsd2ddc772017-11-02 15:27:50 +0000305 while (afs_select_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +0100306 fc.cb_break = afs_calc_vnode_cb_break(vnode);
David Howellsa58823a2019-05-09 15:16:10 +0100307 afs_fs_fetch_file_status(&fc, scb, NULL);
David Howellsd2ddc772017-11-02 15:27:50 +0000308 }
309
David Howellsa58823a2019-05-09 15:16:10 +0100310 if (fc.error) {
311 /* Do nothing. */
312 } else if (is_new) {
313 ret = afs_inode_init_from_status(vnode, key, fc.cbi,
314 NULL, scb);
315 fc.error = ret;
316 if (ret == 0)
317 afs_cache_permit(vnode, key, fc.cb_break, scb);
318 } else {
319 afs_vnode_commit_status(&fc, vnode, fc.cb_break,
320 &data_version, scb);
321 }
322 afs_check_for_remote_deletion(&fc, vnode);
David Howellsd2ddc772017-11-02 15:27:50 +0000323 ret = afs_end_vnode_operation(&fc);
324 }
325
David Howellsa58823a2019-05-09 15:16:10 +0100326 if (ret == 0 && _caller_access)
327 *_caller_access = scb->status.caller_access;
328 kfree(scb);
David Howellsd2ddc772017-11-02 15:27:50 +0000329 _leave(" = %d", ret);
330 return ret;
331}
332
333/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 * iget5() comparator
335 */
David Howellsc435ee32017-11-02 15:27:49 +0000336int afs_iget5_test(struct inode *inode, void *opaque)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337{
338 struct afs_iget_data *data = opaque;
David Howells3b6492d2018-10-20 00:57:57 +0100339 struct afs_vnode *vnode = AFS_FS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
David Howells3b6492d2018-10-20 00:57:57 +0100341 return memcmp(&vnode->fid, &data->fid, sizeof(data->fid)) == 0;
David Howellsec268152007-04-26 15:49:28 -0700342}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344/*
wangleibec5eb62010-08-11 09:38:04 +0100345 * iget5() comparator for inode created by autocell operations
346 *
347 * These pseudo inodes don't match anything.
348 */
David Howells4d673da2018-02-06 06:26:30 +0000349static int afs_iget5_pseudo_dir_test(struct inode *inode, void *opaque)
wangleibec5eb62010-08-11 09:38:04 +0100350{
351 return 0;
352}
353
354/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 * iget5() inode initialiser
356 */
357static int afs_iget5_set(struct inode *inode, void *opaque)
358{
359 struct afs_iget_data *data = opaque;
360 struct afs_vnode *vnode = AFS_FS_I(inode);
361
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362 vnode->fid = data->fid;
363 vnode->volume = data->volume;
364
David Howells3b6492d2018-10-20 00:57:57 +0100365 /* YFS supports 96-bit vnode IDs, but Linux only supports
366 * 64-bit inode numbers.
367 */
368 inode->i_ino = data->fid.vnode;
369 inode->i_generation = data->fid.unique;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 return 0;
David Howellsec268152007-04-26 15:49:28 -0700371}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373/*
David Howells4d673da2018-02-06 06:26:30 +0000374 * Create an inode for a dynamic root directory or an autocell dynamic
375 * automount dir.
wangleibec5eb62010-08-11 09:38:04 +0100376 */
David Howells4d673da2018-02-06 06:26:30 +0000377struct inode *afs_iget_pseudo_dir(struct super_block *sb, bool root)
wangleibec5eb62010-08-11 09:38:04 +0100378{
379 struct afs_iget_data data;
380 struct afs_super_info *as;
381 struct afs_vnode *vnode;
wangleibec5eb62010-08-11 09:38:04 +0100382 struct inode *inode;
383 static atomic_t afs_autocell_ino;
384
David Howells4d673da2018-02-06 06:26:30 +0000385 _enter("");
wangleibec5eb62010-08-11 09:38:04 +0100386
wangleibec5eb62010-08-11 09:38:04 +0100387 as = sb->s_fs_info;
David Howells4d673da2018-02-06 06:26:30 +0000388 if (as->volume) {
389 data.volume = as->volume;
390 data.fid.vid = as->volume->vid;
391 }
392 if (root) {
393 data.fid.vnode = 1;
394 data.fid.unique = 1;
395 } else {
396 data.fid.vnode = atomic_inc_return(&afs_autocell_ino);
397 data.fid.unique = 0;
398 }
wangleibec5eb62010-08-11 09:38:04 +0100399
David Howells4d673da2018-02-06 06:26:30 +0000400 inode = iget5_locked(sb, data.fid.vnode,
401 afs_iget5_pseudo_dir_test, afs_iget5_set,
wangleibec5eb62010-08-11 09:38:04 +0100402 &data);
403 if (!inode) {
404 _leave(" = -ENOMEM");
405 return ERR_PTR(-ENOMEM);
406 }
407
David Howells3b6492d2018-10-20 00:57:57 +0100408 _debug("GOT INODE %p { ino=%lu, vl=%llx, vn=%llx, u=%x }",
wangleibec5eb62010-08-11 09:38:04 +0100409 inode, inode->i_ino, data.fid.vid, data.fid.vnode,
410 data.fid.unique);
411
412 vnode = AFS_FS_I(inode);
413
414 /* there shouldn't be an existing inode */
415 BUG_ON(!(inode->i_state & I_NEW));
416
417 inode->i_size = 0;
418 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO;
David Howells4d673da2018-02-06 06:26:30 +0000419 if (root) {
420 inode->i_op = &afs_dynroot_inode_operations;
421 inode->i_fop = &afs_dynroot_file_operations;
422 } else {
423 inode->i_op = &afs_autocell_inode_operations;
424 }
Miklos Szeredibfe86842011-10-28 14:13:29 +0200425 set_nlink(inode, 2);
Eric W. Biedermana0a53862012-02-07 16:20:48 -0800426 inode->i_uid = GLOBAL_ROOT_UID;
427 inode->i_gid = GLOBAL_ROOT_GID;
Arnd Bergmannba25b812019-04-13 08:37:36 +0100428 inode->i_ctime = inode->i_atime = inode->i_mtime = current_time(inode);
wangleibec5eb62010-08-11 09:38:04 +0100429 inode->i_blocks = 0;
Jeff Laytona01179e2017-12-11 06:35:11 -0500430 inode_set_iversion_raw(inode, 0);
wangleibec5eb62010-08-11 09:38:04 +0100431 inode->i_generation = 0;
432
433 set_bit(AFS_VNODE_PSEUDODIR, &vnode->flags);
David Howells4d673da2018-02-06 06:26:30 +0000434 if (!root) {
435 set_bit(AFS_VNODE_MOUNTPOINT, &vnode->flags);
436 inode->i_flags |= S_AUTOMOUNT;
437 }
438
439 inode->i_flags |= S_NOATIME;
wangleibec5eb62010-08-11 09:38:04 +0100440 unlock_new_inode(inode);
441 _leave(" = %p", inode);
442 return inode;
443}
444
445/*
David Howells402cb8d2018-04-04 13:41:28 +0100446 * Get a cache cookie for an inode.
447 */
448static void afs_get_inode_cache(struct afs_vnode *vnode)
449{
450#ifdef CONFIG_AFS_FSCACHE
451 struct {
452 u32 vnode_id;
453 u32 unique;
454 u32 vnode_id_ext[2]; /* Allow for a 96-bit key */
455 } __packed key;
456 struct afs_vnode_cache_aux aux;
457
David Howellsf3ddee82018-04-06 14:17:25 +0100458 if (vnode->status.type == AFS_FTYPE_DIR) {
459 vnode->cache = NULL;
460 return;
461 }
462
David Howells402cb8d2018-04-04 13:41:28 +0100463 key.vnode_id = vnode->fid.vnode;
464 key.unique = vnode->fid.unique;
David Howells3b6492d2018-10-20 00:57:57 +0100465 key.vnode_id_ext[0] = vnode->fid.vnode >> 32;
466 key.vnode_id_ext[1] = vnode->fid.vnode_hi;
David Howells402cb8d2018-04-04 13:41:28 +0100467 aux.data_version = vnode->status.data_version;
468
469 vnode->cache = fscache_acquire_cookie(vnode->volume->cache,
470 &afs_vnode_cache_index_def,
471 &key, sizeof(key),
472 &aux, sizeof(aux),
David Howellsee1235a2018-04-04 13:41:28 +0100473 vnode, vnode->status.size, true);
David Howells402cb8d2018-04-04 13:41:28 +0100474#endif
475}
476
477/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 * inode retrieval
479 */
David Howells260a9802007-04-26 15:59:35 -0700480struct inode *afs_iget(struct super_block *sb, struct key *key,
David Howellsa58823a2019-05-09 15:16:10 +0100481 struct afs_fid *fid, struct afs_status_cb *scb,
482 struct afs_cb_interest *cbi,
David Howellsb134d682019-04-25 14:26:52 +0100483 struct afs_vnode *parent_vnode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484{
485 struct afs_iget_data data = { .fid = *fid };
486 struct afs_super_info *as;
487 struct afs_vnode *vnode;
488 struct inode *inode;
489 int ret;
490
David Howells3b6492d2018-10-20 00:57:57 +0100491 _enter(",{%llx:%llu.%u},,", fid->vid, fid->vnode, fid->unique);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492
493 as = sb->s_fs_info;
494 data.volume = as->volume;
495
496 inode = iget5_locked(sb, fid->vnode, afs_iget5_test, afs_iget5_set,
497 &data);
498 if (!inode) {
499 _leave(" = -ENOMEM");
David Howells08e0e7c2007-04-26 15:55:03 -0700500 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 }
502
David Howells3b6492d2018-10-20 00:57:57 +0100503 _debug("GOT INODE %p { vl=%llx vn=%llx, u=%x }",
David Howells08e0e7c2007-04-26 15:55:03 -0700504 inode, fid->vid, fid->vnode, fid->unique);
505
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 vnode = AFS_FS_I(inode);
507
508 /* deal with an existing inode */
509 if (!(inode->i_state & I_NEW)) {
David Howells08e0e7c2007-04-26 15:55:03 -0700510 _leave(" = %p", inode);
511 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 }
513
David Howellsa58823a2019-05-09 15:16:10 +0100514 if (!scb) {
David Howells260a9802007-04-26 15:59:35 -0700515 /* it's a remotely extant inode */
David Howellsa58823a2019-05-09 15:16:10 +0100516 ret = afs_fetch_status(vnode, key, true, NULL);
David Howells260a9802007-04-26 15:59:35 -0700517 if (ret < 0)
518 goto bad_inode;
519 } else {
David Howellsa58823a2019-05-09 15:16:10 +0100520 ret = afs_inode_init_from_status(vnode, key, cbi, parent_vnode,
521 scb);
522 if (ret < 0)
523 goto bad_inode;
David Howells260a9802007-04-26 15:59:35 -0700524 }
525
David Howells5800db82018-04-06 14:17:24 +0100526 afs_get_inode_cache(vnode);
527
Linus Torvalds1da177e2005-04-16 15:20:36 -0700528 /* success */
David Howells260a9802007-04-26 15:59:35 -0700529 clear_bit(AFS_VNODE_UNSET, &vnode->flags);
David Howells08e0e7c2007-04-26 15:55:03 -0700530 inode->i_flags |= S_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 unlock_new_inode(inode);
David Howells7c712452019-05-14 15:35:44 +0100532 _leave(" = %p", inode);
David Howells08e0e7c2007-04-26 15:55:03 -0700533 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534
535 /* failure */
David Howellsec268152007-04-26 15:49:28 -0700536bad_inode:
David Howellsaa7fa242008-02-07 00:15:28 -0800537 iget_failed(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700538 _leave(" = %d [bad]", ret);
David Howells08e0e7c2007-04-26 15:55:03 -0700539 return ERR_PTR(ret);
David Howellsec268152007-04-26 15:49:28 -0700540}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542/*
David Howells416351f2007-05-09 02:33:45 -0700543 * mark the data attached to an inode as obsolete due to a write on the server
544 * - might also want to ditch all the outstanding writes and dirty pages
545 */
546void afs_zap_data(struct afs_vnode *vnode)
547{
David Howells3b6492d2018-10-20 00:57:57 +0100548 _enter("{%llx:%llu}", vnode->fid.vid, vnode->fid.vnode);
David Howells416351f2007-05-09 02:33:45 -0700549
David Howellsc1515992018-04-04 13:41:25 +0100550#ifdef CONFIG_AFS_FSCACHE
551 fscache_invalidate(vnode->cache);
552#endif
553
David Howells416351f2007-05-09 02:33:45 -0700554 /* nuke all the non-dirty pages that aren't locked, mapped or being
David Howells0f300ca2007-05-10 22:22:20 -0700555 * written back in a regular file and completely discard the pages in a
556 * directory or symlink */
557 if (S_ISREG(vnode->vfs_inode.i_mode))
558 invalidate_remote_inode(&vnode->vfs_inode);
559 else
560 invalidate_inode_pages2(vnode->vfs_inode.i_mapping);
David Howells416351f2007-05-09 02:33:45 -0700561}
562
563/*
David Howells260a9802007-04-26 15:59:35 -0700564 * validate a vnode/inode
565 * - there are several things we need to check
566 * - parent dir data changes (rm, rmdir, rename, mkdir, create, link,
567 * symlink)
568 * - parent dir metadata changed (security changes)
569 * - dentry data changed (write, truncate)
570 * - dentry metadata changed (security changes)
571 */
572int afs_validate(struct afs_vnode *vnode, struct key *key)
573{
David Howellsc435ee32017-11-02 15:27:49 +0000574 time64_t now = ktime_get_real_seconds();
David Howellsae3b7362018-11-13 23:20:21 +0000575 bool valid;
David Howells260a9802007-04-26 15:59:35 -0700576 int ret;
577
David Howells3b6492d2018-10-20 00:57:57 +0100578 _enter("{v={%llx:%llu} fl=%lx},%x",
David Howells260a9802007-04-26 15:59:35 -0700579 vnode->fid.vid, vnode->fid.vnode, vnode->flags,
580 key_serial(key));
581
David Howellsc435ee32017-11-02 15:27:49 +0000582 /* Quickly check the callback state. Ideally, we'd use read_seqbegin
583 * here, but we have no way to pass the net namespace to the RCU
584 * cleanup for the server record.
585 */
586 read_seqlock_excl(&vnode->cb_lock);
587
588 if (test_bit(AFS_VNODE_CB_PROMISED, &vnode->flags)) {
David Howells68251f02018-05-12 22:31:33 +0100589 if (vnode->cb_s_break != vnode->cb_interest->server->cb_s_break ||
590 vnode->cb_v_break != vnode->volume->cb_v_break) {
David Howellsc435ee32017-11-02 15:27:49 +0000591 vnode->cb_s_break = vnode->cb_interest->server->cb_s_break;
David Howells68251f02018-05-12 22:31:33 +0100592 vnode->cb_v_break = vnode->volume->cb_v_break;
593 valid = false;
David Howellsd9052dd2019-05-14 11:52:03 +0100594 } else if (test_bit(AFS_VNODE_ZAP_DATA, &vnode->flags)) {
David Howellsae3b7362018-11-13 23:20:21 +0000595 valid = false;
David Howellsd9052dd2019-05-14 11:52:03 +0100596 } else if (vnode->cb_expires_at - 10 <= now) {
David Howellsae3b7362018-11-13 23:20:21 +0000597 valid = false;
598 } else {
David Howells68251f02018-05-12 22:31:33 +0100599 valid = true;
David Howells260a9802007-04-26 15:59:35 -0700600 }
David Howellsc435ee32017-11-02 15:27:49 +0000601 } else if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
602 valid = true;
David Howellsae3b7362018-11-13 23:20:21 +0000603 } else {
David Howellsae3b7362018-11-13 23:20:21 +0000604 vnode->cb_v_break = vnode->volume->cb_v_break;
605 valid = false;
David Howells260a9802007-04-26 15:59:35 -0700606 }
607
David Howellsc435ee32017-11-02 15:27:49 +0000608 read_sequnlock_excl(&vnode->cb_lock);
David Howells440fbc32018-01-02 10:02:19 +0000609
610 if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
611 clear_nlink(&vnode->vfs_inode);
612
David Howellsc435ee32017-11-02 15:27:49 +0000613 if (valid)
David Howells260a9802007-04-26 15:59:35 -0700614 goto valid;
615
David Howellsb61f7dc2018-04-27 20:46:22 +0100616 down_write(&vnode->validate_lock);
David Howells260a9802007-04-26 15:59:35 -0700617
618 /* if the promise has expired, we need to check the server again to get
619 * a new promise - note that if the (parent) directory's metadata was
620 * changed then the security may be different and we may no longer have
621 * access */
David Howellsc435ee32017-11-02 15:27:49 +0000622 if (!test_bit(AFS_VNODE_CB_PROMISED, &vnode->flags)) {
David Howells260a9802007-04-26 15:59:35 -0700623 _debug("not promised");
David Howellsa58823a2019-05-09 15:16:10 +0100624 ret = afs_fetch_status(vnode, key, false, NULL);
David Howellsc435ee32017-11-02 15:27:49 +0000625 if (ret < 0) {
626 if (ret == -ENOENT) {
627 set_bit(AFS_VNODE_DELETED, &vnode->flags);
628 ret = -ESTALE;
629 }
David Howells260a9802007-04-26 15:59:35 -0700630 goto error_unlock;
David Howellsc435ee32017-11-02 15:27:49 +0000631 }
David Howells260a9802007-04-26 15:59:35 -0700632 _debug("new promise [fl=%lx]", vnode->flags);
633 }
634
635 if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
636 _debug("file already deleted");
637 ret = -ESTALE;
638 goto error_unlock;
639 }
640
641 /* if the vnode's data version number changed then its contents are
642 * different */
David Howells416351f2007-05-09 02:33:45 -0700643 if (test_and_clear_bit(AFS_VNODE_ZAP_DATA, &vnode->flags))
644 afs_zap_data(vnode);
David Howellsb61f7dc2018-04-27 20:46:22 +0100645 up_write(&vnode->validate_lock);
David Howells260a9802007-04-26 15:59:35 -0700646valid:
647 _leave(" = 0");
648 return 0;
649
650error_unlock:
David Howellsb61f7dc2018-04-27 20:46:22 +0100651 up_write(&vnode->validate_lock);
David Howells260a9802007-04-26 15:59:35 -0700652 _leave(" = %d", ret);
653 return ret;
654}
655
656/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 * read the attributes of an inode
658 */
David Howellsa528d352017-01-31 16:46:22 +0000659int afs_getattr(const struct path *path, struct kstat *stat,
660 u32 request_mask, unsigned int query_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661{
David Howellsa528d352017-01-31 16:46:22 +0000662 struct inode *inode = d_inode(path->dentry);
David Howellsc435ee32017-11-02 15:27:49 +0000663 struct afs_vnode *vnode = AFS_FS_I(inode);
664 int seq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665
David Howellsd6e43f72011-06-14 00:45:44 +0100666 _enter("{ ino=%lu v=%u }", inode->i_ino, inode->i_generation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
David Howellsc435ee32017-11-02 15:27:49 +0000668 do {
669 read_seqbegin_or_lock(&vnode->cb_lock, &seq);
670 generic_fillattr(inode, stat);
671 } while (need_seqretry(&vnode->cb_lock, seq));
672
673 done_seqretry(&vnode->cb_lock, seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 return 0;
David Howellsec268152007-04-26 15:49:28 -0700675}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677/*
wangleibec5eb62010-08-11 09:38:04 +0100678 * discard an AFS inode
679 */
680int afs_drop_inode(struct inode *inode)
681{
682 _enter("");
683
684 if (test_bit(AFS_VNODE_PSEUDODIR, &AFS_FS_I(inode)->flags))
685 return generic_delete_inode(inode);
686 else
687 return generic_drop_inode(inode);
688}
689
690/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691 * clear an AFS inode
692 */
Al Virob57922d2010-06-07 14:34:48 -0400693void afs_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694{
695 struct afs_vnode *vnode;
696
697 vnode = AFS_FS_I(inode);
698
David Howells3b6492d2018-10-20 00:57:57 +0100699 _enter("{%llx:%llu.%d}",
David Howells260a9802007-04-26 15:59:35 -0700700 vnode->fid.vid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 vnode->fid.vnode,
David Howellsc435ee32017-11-02 15:27:49 +0000702 vnode->fid.unique);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
David Howells08e0e7c2007-04-26 15:55:03 -0700704 _debug("CLEAR INODE %p", inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705
David Howells08e0e7c2007-04-26 15:55:03 -0700706 ASSERTCMP(inode->i_ino, ==, vnode->fid.vnode);
707
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700708 truncate_inode_pages_final(&inode->i_data);
Jan Karadbd57682012-05-03 14:48:02 +0200709 clear_inode(inode);
Al Virob57922d2010-06-07 14:34:48 -0400710
David Howellsc435ee32017-11-02 15:27:49 +0000711 if (vnode->cb_interest) {
712 afs_put_cb_interest(afs_i2net(inode), vnode->cb_interest);
713 vnode->cb_interest = NULL;
David Howells08e0e7c2007-04-26 15:55:03 -0700714 }
715
David Howells4343d002017-11-02 15:27:52 +0000716 while (!list_empty(&vnode->wb_keys)) {
717 struct afs_wb_key *wbk = list_entry(vnode->wb_keys.next,
718 struct afs_wb_key, vnode_link);
719 list_del(&wbk->vnode_link);
720 afs_put_wb_key(wbk);
721 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700722
David Howells9b3f26c2009-04-03 16:42:41 +0100723#ifdef CONFIG_AFS_FSCACHE
David Howells402cb8d2018-04-04 13:41:28 +0100724 {
725 struct afs_vnode_cache_aux aux;
726
727 aux.data_version = vnode->status.data_version;
728 fscache_relinquish_cookie(vnode->cache, &aux,
729 test_bit(AFS_VNODE_DELETED, &vnode->flags));
730 vnode->cache = NULL;
731 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732#endif
733
David Howellsa1b879e2019-05-15 12:09:17 +0100734 afs_prune_wb_keys(vnode);
David Howellsfe342cf2018-04-09 21:12:31 +0100735 afs_put_permits(rcu_access_pointer(vnode->permit_cache));
David Howells79ddbfa2019-04-25 14:26:51 +0100736 key_put(vnode->silly_key);
737 vnode->silly_key = NULL;
David Howells59d49072019-01-09 17:23:54 +0000738 key_put(vnode->lock_key);
739 vnode->lock_key = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700741}
David Howells31143d52007-05-09 02:33:46 -0700742
743/*
744 * set the attributes of an inode
745 */
746int afs_setattr(struct dentry *dentry, struct iattr *attr)
747{
David Howellsd2ddc772017-11-02 15:27:50 +0000748 struct afs_fs_cursor fc;
David Howellsa58823a2019-05-09 15:16:10 +0100749 struct afs_status_cb *scb;
David Howells2b0143b2015-03-17 22:25:59 +0000750 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
David Howells31143d52007-05-09 02:33:46 -0700751 struct key *key;
David Howellsa58823a2019-05-09 15:16:10 +0100752 int ret = -ENOMEM;
David Howells31143d52007-05-09 02:33:46 -0700753
David Howells3b6492d2018-10-20 00:57:57 +0100754 _enter("{%llx:%llu},{n=%pd},%x",
Al Viroa4555892014-10-21 20:11:25 -0400755 vnode->fid.vid, vnode->fid.vnode, dentry,
David Howells31143d52007-05-09 02:33:46 -0700756 attr->ia_valid);
757
758 if (!(attr->ia_valid & (ATTR_SIZE | ATTR_MODE | ATTR_UID | ATTR_GID |
759 ATTR_MTIME))) {
760 _leave(" = 0 [unsupported]");
761 return 0;
762 }
763
David Howellsa58823a2019-05-09 15:16:10 +0100764 scb = kzalloc(sizeof(struct afs_status_cb), GFP_KERNEL);
765 if (!scb)
766 goto error;
767
David Howells31143d52007-05-09 02:33:46 -0700768 /* flush any dirty data outstanding on a regular file */
David Howells4343d002017-11-02 15:27:52 +0000769 if (S_ISREG(vnode->vfs_inode.i_mode))
David Howells31143d52007-05-09 02:33:46 -0700770 filemap_write_and_wait(vnode->vfs_inode.i_mapping);
David Howells31143d52007-05-09 02:33:46 -0700771
772 if (attr->ia_valid & ATTR_FILE) {
David Howells215804a2017-11-02 15:27:52 +0000773 key = afs_file_key(attr->ia_file);
David Howells31143d52007-05-09 02:33:46 -0700774 } else {
775 key = afs_request_key(vnode->volume->cell);
776 if (IS_ERR(key)) {
777 ret = PTR_ERR(key);
David Howellsa58823a2019-05-09 15:16:10 +0100778 goto error_scb;
David Howells31143d52007-05-09 02:33:46 -0700779 }
780 }
781
David Howellsd2ddc772017-11-02 15:27:50 +0000782 ret = -ERESTARTSYS;
David Howells20b83912019-05-08 16:16:31 +0100783 if (afs_begin_vnode_operation(&fc, vnode, key, false)) {
David Howellsa58823a2019-05-09 15:16:10 +0100784 afs_dataversion_t data_version = vnode->status.data_version;
785
786 if (attr->ia_valid & ATTR_SIZE)
787 data_version++;
788
David Howellsd2ddc772017-11-02 15:27:50 +0000789 while (afs_select_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +0100790 fc.cb_break = afs_calc_vnode_cb_break(vnode);
David Howellsa58823a2019-05-09 15:16:10 +0100791 afs_fs_setattr(&fc, attr, scb);
David Howellsd2ddc772017-11-02 15:27:50 +0000792 }
793
David Howellsa58823a2019-05-09 15:16:10 +0100794 afs_check_for_remote_deletion(&fc, vnode);
795 afs_vnode_commit_status(&fc, vnode, fc.cb_break,
796 &data_version, scb);
David Howellsd2ddc772017-11-02 15:27:50 +0000797 ret = afs_end_vnode_operation(&fc);
798 }
799
David Howells31143d52007-05-09 02:33:46 -0700800 if (!(attr->ia_valid & ATTR_FILE))
801 key_put(key);
802
David Howellsa58823a2019-05-09 15:16:10 +0100803error_scb:
804 kfree(scb);
David Howells31143d52007-05-09 02:33:46 -0700805error:
806 _leave(" = %d", ret);
807 return ret;
808}