blob: 4a9004b9ac5fb970125c728843275caf4c743807 [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) */
139 vnode->cb_version = 0;
140 vnode->cb_type = 0;
141 vnode->cb_expires_at = ktime_get_real_seconds();
142 } else {
143 vnode->cb_version = scb->callback.version;
144 vnode->cb_type = scb->callback.type;
145 vnode->cb_expires_at = scb->callback.expires_at;
146 old_cbi = vnode->cb_interest;
147 if (cbi != old_cbi)
148 vnode->cb_interest = afs_get_cb_interest(cbi);
149 else
150 old_cbi = NULL;
151 set_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
152 }
153
154 write_sequnlock(&vnode->cb_lock);
155 afs_put_cb_interest(afs_v2net(vnode), old_cbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 return 0;
David Howellsec268152007-04-26 15:49:28 -0700157}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159/*
David Howellsa58823a2019-05-09 15:16:10 +0100160 * Update the core inode struct from a returned status record.
161 */
162static void afs_apply_status(struct afs_fs_cursor *fc,
163 struct afs_vnode *vnode,
164 struct afs_status_cb *scb,
165 const afs_dataversion_t *expected_version)
166{
167 struct afs_file_status *status = &scb->status;
168 struct timespec64 t;
169 umode_t mode;
170 bool data_changed = false;
171
172 BUG_ON(test_bit(AFS_VNODE_UNSET, &vnode->flags));
173
174 if (status->type != vnode->status.type) {
175 pr_warning("Vnode %llx:%llx:%x changed type %u to %u\n",
176 vnode->fid.vid,
177 vnode->fid.vnode,
178 vnode->fid.unique,
179 status->type, vnode->status.type);
180 afs_protocol_error(NULL, -EBADMSG, afs_eproto_bad_status);
181 return;
182 }
183
184 if (status->nlink != vnode->status.nlink)
185 set_nlink(&vnode->vfs_inode, status->nlink);
186
187 if (status->owner != vnode->status.owner)
188 vnode->vfs_inode.i_uid = make_kuid(&init_user_ns, status->owner);
189
190 if (status->group != vnode->status.group)
191 vnode->vfs_inode.i_gid = make_kgid(&init_user_ns, status->group);
192
193 if (status->mode != vnode->status.mode) {
194 mode = vnode->vfs_inode.i_mode;
195 mode &= ~S_IALLUGO;
196 mode |= status->mode;
197 WRITE_ONCE(vnode->vfs_inode.i_mode, mode);
198 }
199
200 t = status->mtime_client;
201 vnode->vfs_inode.i_ctime = t;
202 vnode->vfs_inode.i_mtime = t;
203 vnode->vfs_inode.i_atime = t;
204
205 if (vnode->status.data_version != status->data_version)
206 data_changed = true;
207
208 vnode->status = *status;
209
210 if (expected_version &&
211 *expected_version != status->data_version) {
212 kdebug("vnode modified %llx on {%llx:%llu} [exp %llx] %s",
213 (unsigned long long) status->data_version,
214 vnode->fid.vid, vnode->fid.vnode,
215 (unsigned long long) *expected_version,
216 fc->type ? fc->type->name : "???");
217 vnode->invalid_before = status->data_version;
218 if (vnode->status.type == AFS_FTYPE_DIR) {
219 if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &vnode->flags))
220 afs_stat_v(vnode, n_inval);
221 } else {
222 set_bit(AFS_VNODE_ZAP_DATA, &vnode->flags);
223 }
224 } else if (vnode->status.type == AFS_FTYPE_DIR) {
225 /* Expected directory change is handled elsewhere so
226 * that we can locally edit the directory and save on a
227 * download.
228 */
229 if (test_bit(AFS_VNODE_DIR_VALID, &vnode->flags))
230 data_changed = false;
231 }
232
233 if (data_changed) {
234 inode_set_iversion_raw(&vnode->vfs_inode, status->data_version);
235 i_size_write(&vnode->vfs_inode, status->size);
236 }
237}
238
239/*
240 * Apply a callback to a vnode.
241 */
242static void afs_apply_callback(struct afs_fs_cursor *fc,
243 struct afs_vnode *vnode,
244 struct afs_status_cb *scb,
245 unsigned int cb_break)
246{
247 struct afs_cb_interest *old;
248 struct afs_callback *cb = &scb->callback;
249
250 if (!afs_cb_is_broken(cb_break, vnode, fc->cbi)) {
251 vnode->cb_version = cb->version;
252 vnode->cb_type = cb->type;
253 vnode->cb_expires_at = cb->expires_at;
254 old = vnode->cb_interest;
255 if (old != fc->cbi) {
256 vnode->cb_interest = afs_get_cb_interest(fc->cbi);
257 afs_put_cb_interest(afs_v2net(vnode), old);
258 }
259 set_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
260 }
261}
262
263/*
264 * Apply the received status and callback to an inode all in the same critical
265 * section to avoid races with afs_validate().
266 */
267void afs_vnode_commit_status(struct afs_fs_cursor *fc,
268 struct afs_vnode *vnode,
269 unsigned int cb_break,
270 const afs_dataversion_t *expected_version,
271 struct afs_status_cb *scb)
272{
273 if (fc->ac.error != 0)
274 return;
275
276 write_seqlock(&vnode->cb_lock);
277
278 afs_apply_status(fc, vnode, scb, expected_version);
279 if (scb->have_cb)
280 afs_apply_callback(fc, vnode, scb, cb_break);
281
282 write_sequnlock(&vnode->cb_lock);
283
284 if (fc->ac.error == 0)
285 afs_cache_permit(vnode, fc->key, cb_break, scb);
286}
287
288/*
David Howellsd2ddc772017-11-02 15:27:50 +0000289 * Fetch file status from the volume.
290 */
David Howellsa58823a2019-05-09 15:16:10 +0100291int afs_fetch_status(struct afs_vnode *vnode, struct key *key, bool is_new,
292 afs_access_t *_caller_access)
David Howellsd2ddc772017-11-02 15:27:50 +0000293{
David Howellsa58823a2019-05-09 15:16:10 +0100294 struct afs_status_cb *scb;
David Howellsd2ddc772017-11-02 15:27:50 +0000295 struct afs_fs_cursor fc;
296 int ret;
297
David Howells3b6492d2018-10-20 00:57:57 +0100298 _enter("%s,{%llx:%llu.%u,S=%lx}",
David Howellsd2ddc772017-11-02 15:27:50 +0000299 vnode->volume->name,
300 vnode->fid.vid, vnode->fid.vnode, vnode->fid.unique,
301 vnode->flags);
302
David Howellsa58823a2019-05-09 15:16:10 +0100303 scb = kzalloc(sizeof(struct afs_status_cb), GFP_KERNEL);
304 if (!scb)
305 return -ENOMEM;
306
David Howellsd2ddc772017-11-02 15:27:50 +0000307 ret = -ERESTARTSYS;
David Howells20b83912019-05-08 16:16:31 +0100308 if (afs_begin_vnode_operation(&fc, vnode, key, true)) {
David Howellsa58823a2019-05-09 15:16:10 +0100309 afs_dataversion_t data_version = vnode->status.data_version;
310
David Howellsd2ddc772017-11-02 15:27:50 +0000311 while (afs_select_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +0100312 fc.cb_break = afs_calc_vnode_cb_break(vnode);
David Howellsa58823a2019-05-09 15:16:10 +0100313 afs_fs_fetch_file_status(&fc, scb, NULL);
David Howellsd2ddc772017-11-02 15:27:50 +0000314 }
315
David Howellsa58823a2019-05-09 15:16:10 +0100316 if (fc.error) {
317 /* Do nothing. */
318 } else if (is_new) {
319 ret = afs_inode_init_from_status(vnode, key, fc.cbi,
320 NULL, scb);
321 fc.error = ret;
322 if (ret == 0)
323 afs_cache_permit(vnode, key, fc.cb_break, scb);
324 } else {
325 afs_vnode_commit_status(&fc, vnode, fc.cb_break,
326 &data_version, scb);
327 }
328 afs_check_for_remote_deletion(&fc, vnode);
David Howellsd2ddc772017-11-02 15:27:50 +0000329 ret = afs_end_vnode_operation(&fc);
330 }
331
David Howellsa58823a2019-05-09 15:16:10 +0100332 if (ret == 0 && _caller_access)
333 *_caller_access = scb->status.caller_access;
334 kfree(scb);
David Howellsd2ddc772017-11-02 15:27:50 +0000335 _leave(" = %d", ret);
336 return ret;
337}
338
339/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340 * iget5() comparator
341 */
David Howellsc435ee32017-11-02 15:27:49 +0000342int afs_iget5_test(struct inode *inode, void *opaque)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
344 struct afs_iget_data *data = opaque;
David Howells3b6492d2018-10-20 00:57:57 +0100345 struct afs_vnode *vnode = AFS_FS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346
David Howells3b6492d2018-10-20 00:57:57 +0100347 return memcmp(&vnode->fid, &data->fid, sizeof(data->fid)) == 0;
David Howellsec268152007-04-26 15:49:28 -0700348}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350/*
wangleibec5eb62010-08-11 09:38:04 +0100351 * iget5() comparator for inode created by autocell operations
352 *
353 * These pseudo inodes don't match anything.
354 */
David Howells4d673da2018-02-06 06:26:30 +0000355static int afs_iget5_pseudo_dir_test(struct inode *inode, void *opaque)
wangleibec5eb62010-08-11 09:38:04 +0100356{
357 return 0;
358}
359
360/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 * iget5() inode initialiser
362 */
363static int afs_iget5_set(struct inode *inode, void *opaque)
364{
365 struct afs_iget_data *data = opaque;
366 struct afs_vnode *vnode = AFS_FS_I(inode);
367
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368 vnode->fid = data->fid;
369 vnode->volume = data->volume;
370
David Howells3b6492d2018-10-20 00:57:57 +0100371 /* YFS supports 96-bit vnode IDs, but Linux only supports
372 * 64-bit inode numbers.
373 */
374 inode->i_ino = data->fid.vnode;
375 inode->i_generation = data->fid.unique;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 return 0;
David Howellsec268152007-04-26 15:49:28 -0700377}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379/*
David Howells4d673da2018-02-06 06:26:30 +0000380 * Create an inode for a dynamic root directory or an autocell dynamic
381 * automount dir.
wangleibec5eb62010-08-11 09:38:04 +0100382 */
David Howells4d673da2018-02-06 06:26:30 +0000383struct inode *afs_iget_pseudo_dir(struct super_block *sb, bool root)
wangleibec5eb62010-08-11 09:38:04 +0100384{
385 struct afs_iget_data data;
386 struct afs_super_info *as;
387 struct afs_vnode *vnode;
wangleibec5eb62010-08-11 09:38:04 +0100388 struct inode *inode;
389 static atomic_t afs_autocell_ino;
390
David Howells4d673da2018-02-06 06:26:30 +0000391 _enter("");
wangleibec5eb62010-08-11 09:38:04 +0100392
wangleibec5eb62010-08-11 09:38:04 +0100393 as = sb->s_fs_info;
David Howells4d673da2018-02-06 06:26:30 +0000394 if (as->volume) {
395 data.volume = as->volume;
396 data.fid.vid = as->volume->vid;
397 }
398 if (root) {
399 data.fid.vnode = 1;
400 data.fid.unique = 1;
401 } else {
402 data.fid.vnode = atomic_inc_return(&afs_autocell_ino);
403 data.fid.unique = 0;
404 }
wangleibec5eb62010-08-11 09:38:04 +0100405
David Howells4d673da2018-02-06 06:26:30 +0000406 inode = iget5_locked(sb, data.fid.vnode,
407 afs_iget5_pseudo_dir_test, afs_iget5_set,
wangleibec5eb62010-08-11 09:38:04 +0100408 &data);
409 if (!inode) {
410 _leave(" = -ENOMEM");
411 return ERR_PTR(-ENOMEM);
412 }
413
David Howells3b6492d2018-10-20 00:57:57 +0100414 _debug("GOT INODE %p { ino=%lu, vl=%llx, vn=%llx, u=%x }",
wangleibec5eb62010-08-11 09:38:04 +0100415 inode, inode->i_ino, data.fid.vid, data.fid.vnode,
416 data.fid.unique);
417
418 vnode = AFS_FS_I(inode);
419
420 /* there shouldn't be an existing inode */
421 BUG_ON(!(inode->i_state & I_NEW));
422
423 inode->i_size = 0;
424 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO;
David Howells4d673da2018-02-06 06:26:30 +0000425 if (root) {
426 inode->i_op = &afs_dynroot_inode_operations;
427 inode->i_fop = &afs_dynroot_file_operations;
428 } else {
429 inode->i_op = &afs_autocell_inode_operations;
430 }
Miklos Szeredibfe86842011-10-28 14:13:29 +0200431 set_nlink(inode, 2);
Eric W. Biedermana0a53862012-02-07 16:20:48 -0800432 inode->i_uid = GLOBAL_ROOT_UID;
433 inode->i_gid = GLOBAL_ROOT_GID;
Arnd Bergmannba25b812019-04-13 08:37:36 +0100434 inode->i_ctime = inode->i_atime = inode->i_mtime = current_time(inode);
wangleibec5eb62010-08-11 09:38:04 +0100435 inode->i_blocks = 0;
Jeff Laytona01179e2017-12-11 06:35:11 -0500436 inode_set_iversion_raw(inode, 0);
wangleibec5eb62010-08-11 09:38:04 +0100437 inode->i_generation = 0;
438
439 set_bit(AFS_VNODE_PSEUDODIR, &vnode->flags);
David Howells4d673da2018-02-06 06:26:30 +0000440 if (!root) {
441 set_bit(AFS_VNODE_MOUNTPOINT, &vnode->flags);
442 inode->i_flags |= S_AUTOMOUNT;
443 }
444
445 inode->i_flags |= S_NOATIME;
wangleibec5eb62010-08-11 09:38:04 +0100446 unlock_new_inode(inode);
447 _leave(" = %p", inode);
448 return inode;
449}
450
451/*
David Howells402cb8d2018-04-04 13:41:28 +0100452 * Get a cache cookie for an inode.
453 */
454static void afs_get_inode_cache(struct afs_vnode *vnode)
455{
456#ifdef CONFIG_AFS_FSCACHE
457 struct {
458 u32 vnode_id;
459 u32 unique;
460 u32 vnode_id_ext[2]; /* Allow for a 96-bit key */
461 } __packed key;
462 struct afs_vnode_cache_aux aux;
463
David Howellsf3ddee82018-04-06 14:17:25 +0100464 if (vnode->status.type == AFS_FTYPE_DIR) {
465 vnode->cache = NULL;
466 return;
467 }
468
David Howells402cb8d2018-04-04 13:41:28 +0100469 key.vnode_id = vnode->fid.vnode;
470 key.unique = vnode->fid.unique;
David Howells3b6492d2018-10-20 00:57:57 +0100471 key.vnode_id_ext[0] = vnode->fid.vnode >> 32;
472 key.vnode_id_ext[1] = vnode->fid.vnode_hi;
David Howells402cb8d2018-04-04 13:41:28 +0100473 aux.data_version = vnode->status.data_version;
474
475 vnode->cache = fscache_acquire_cookie(vnode->volume->cache,
476 &afs_vnode_cache_index_def,
477 &key, sizeof(key),
478 &aux, sizeof(aux),
David Howellsee1235a2018-04-04 13:41:28 +0100479 vnode, vnode->status.size, true);
David Howells402cb8d2018-04-04 13:41:28 +0100480#endif
481}
482
483/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484 * inode retrieval
485 */
David Howells260a9802007-04-26 15:59:35 -0700486struct inode *afs_iget(struct super_block *sb, struct key *key,
David Howellsa58823a2019-05-09 15:16:10 +0100487 struct afs_fid *fid, struct afs_status_cb *scb,
488 struct afs_cb_interest *cbi,
David Howellsb134d682019-04-25 14:26:52 +0100489 struct afs_vnode *parent_vnode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
491 struct afs_iget_data data = { .fid = *fid };
492 struct afs_super_info *as;
493 struct afs_vnode *vnode;
494 struct inode *inode;
495 int ret;
496
David Howells3b6492d2018-10-20 00:57:57 +0100497 _enter(",{%llx:%llu.%u},,", fid->vid, fid->vnode, fid->unique);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498
499 as = sb->s_fs_info;
500 data.volume = as->volume;
501
502 inode = iget5_locked(sb, fid->vnode, afs_iget5_test, afs_iget5_set,
503 &data);
504 if (!inode) {
505 _leave(" = -ENOMEM");
David Howells08e0e7c2007-04-26 15:55:03 -0700506 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 }
508
David Howells3b6492d2018-10-20 00:57:57 +0100509 _debug("GOT INODE %p { vl=%llx vn=%llx, u=%x }",
David Howells08e0e7c2007-04-26 15:55:03 -0700510 inode, fid->vid, fid->vnode, fid->unique);
511
Linus Torvalds1da177e2005-04-16 15:20:36 -0700512 vnode = AFS_FS_I(inode);
513
514 /* deal with an existing inode */
515 if (!(inode->i_state & I_NEW)) {
David Howells08e0e7c2007-04-26 15:55:03 -0700516 _leave(" = %p", inode);
517 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 }
519
David Howellsa58823a2019-05-09 15:16:10 +0100520 if (!scb) {
David Howells260a9802007-04-26 15:59:35 -0700521 /* it's a remotely extant inode */
David Howellsa58823a2019-05-09 15:16:10 +0100522 ret = afs_fetch_status(vnode, key, true, NULL);
David Howells260a9802007-04-26 15:59:35 -0700523 if (ret < 0)
524 goto bad_inode;
525 } else {
David Howellsa58823a2019-05-09 15:16:10 +0100526 ret = afs_inode_init_from_status(vnode, key, cbi, parent_vnode,
527 scb);
528 if (ret < 0)
529 goto bad_inode;
David Howells260a9802007-04-26 15:59:35 -0700530 }
531
David Howells5800db82018-04-06 14:17:24 +0100532 afs_get_inode_cache(vnode);
533
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 /* success */
David Howells260a9802007-04-26 15:59:35 -0700535 clear_bit(AFS_VNODE_UNSET, &vnode->flags);
David Howells08e0e7c2007-04-26 15:55:03 -0700536 inode->i_flags |= S_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 unlock_new_inode(inode);
David Howells08e0e7c2007-04-26 15:55:03 -0700538 _leave(" = %p [CB { v=%u t=%u }]", inode, vnode->cb_version, vnode->cb_type);
539 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540
541 /* failure */
David Howellsec268152007-04-26 15:49:28 -0700542bad_inode:
David Howellsaa7fa242008-02-07 00:15:28 -0800543 iget_failed(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544 _leave(" = %d [bad]", ret);
David Howells08e0e7c2007-04-26 15:55:03 -0700545 return ERR_PTR(ret);
David Howellsec268152007-04-26 15:49:28 -0700546}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547
Linus Torvalds1da177e2005-04-16 15:20:36 -0700548/*
David Howells416351f2007-05-09 02:33:45 -0700549 * mark the data attached to an inode as obsolete due to a write on the server
550 * - might also want to ditch all the outstanding writes and dirty pages
551 */
552void afs_zap_data(struct afs_vnode *vnode)
553{
David Howells3b6492d2018-10-20 00:57:57 +0100554 _enter("{%llx:%llu}", vnode->fid.vid, vnode->fid.vnode);
David Howells416351f2007-05-09 02:33:45 -0700555
David Howellsc1515992018-04-04 13:41:25 +0100556#ifdef CONFIG_AFS_FSCACHE
557 fscache_invalidate(vnode->cache);
558#endif
559
David Howells416351f2007-05-09 02:33:45 -0700560 /* nuke all the non-dirty pages that aren't locked, mapped or being
David Howells0f300ca2007-05-10 22:22:20 -0700561 * written back in a regular file and completely discard the pages in a
562 * directory or symlink */
563 if (S_ISREG(vnode->vfs_inode.i_mode))
564 invalidate_remote_inode(&vnode->vfs_inode);
565 else
566 invalidate_inode_pages2(vnode->vfs_inode.i_mapping);
David Howells416351f2007-05-09 02:33:45 -0700567}
568
569/*
David Howells260a9802007-04-26 15:59:35 -0700570 * validate a vnode/inode
571 * - there are several things we need to check
572 * - parent dir data changes (rm, rmdir, rename, mkdir, create, link,
573 * symlink)
574 * - parent dir metadata changed (security changes)
575 * - dentry data changed (write, truncate)
576 * - dentry metadata changed (security changes)
577 */
578int afs_validate(struct afs_vnode *vnode, struct key *key)
579{
David Howellsc435ee32017-11-02 15:27:49 +0000580 time64_t now = ktime_get_real_seconds();
David Howellsae3b7362018-11-13 23:20:21 +0000581 bool valid;
David Howells260a9802007-04-26 15:59:35 -0700582 int ret;
583
David Howells3b6492d2018-10-20 00:57:57 +0100584 _enter("{v={%llx:%llu} fl=%lx},%x",
David Howells260a9802007-04-26 15:59:35 -0700585 vnode->fid.vid, vnode->fid.vnode, vnode->flags,
586 key_serial(key));
587
David Howellsc435ee32017-11-02 15:27:49 +0000588 /* Quickly check the callback state. Ideally, we'd use read_seqbegin
589 * here, but we have no way to pass the net namespace to the RCU
590 * cleanup for the server record.
591 */
592 read_seqlock_excl(&vnode->cb_lock);
593
594 if (test_bit(AFS_VNODE_CB_PROMISED, &vnode->flags)) {
David Howells68251f02018-05-12 22:31:33 +0100595 if (vnode->cb_s_break != vnode->cb_interest->server->cb_s_break ||
596 vnode->cb_v_break != vnode->volume->cb_v_break) {
David Howellsc435ee32017-11-02 15:27:49 +0000597 vnode->cb_s_break = vnode->cb_interest->server->cb_s_break;
David Howells68251f02018-05-12 22:31:33 +0100598 vnode->cb_v_break = vnode->volume->cb_v_break;
599 valid = false;
David Howellsd9052dd2019-05-14 11:52:03 +0100600 } else if (test_bit(AFS_VNODE_ZAP_DATA, &vnode->flags)) {
David Howellsae3b7362018-11-13 23:20:21 +0000601 valid = false;
David Howellsd9052dd2019-05-14 11:52:03 +0100602 } else if (vnode->cb_expires_at - 10 <= now) {
David Howellsae3b7362018-11-13 23:20:21 +0000603 valid = false;
604 } else {
David Howells68251f02018-05-12 22:31:33 +0100605 valid = true;
David Howells260a9802007-04-26 15:59:35 -0700606 }
David Howellsc435ee32017-11-02 15:27:49 +0000607 } else if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
608 valid = true;
David Howellsae3b7362018-11-13 23:20:21 +0000609 } else {
David Howellsae3b7362018-11-13 23:20:21 +0000610 vnode->cb_v_break = vnode->volume->cb_v_break;
611 valid = false;
David Howells260a9802007-04-26 15:59:35 -0700612 }
613
David Howellsc435ee32017-11-02 15:27:49 +0000614 read_sequnlock_excl(&vnode->cb_lock);
David Howells440fbc32018-01-02 10:02:19 +0000615
616 if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
617 clear_nlink(&vnode->vfs_inode);
618
David Howellsc435ee32017-11-02 15:27:49 +0000619 if (valid)
David Howells260a9802007-04-26 15:59:35 -0700620 goto valid;
621
David Howellsb61f7dc2018-04-27 20:46:22 +0100622 down_write(&vnode->validate_lock);
David Howells260a9802007-04-26 15:59:35 -0700623
624 /* if the promise has expired, we need to check the server again to get
625 * a new promise - note that if the (parent) directory's metadata was
626 * changed then the security may be different and we may no longer have
627 * access */
David Howellsc435ee32017-11-02 15:27:49 +0000628 if (!test_bit(AFS_VNODE_CB_PROMISED, &vnode->flags)) {
David Howells260a9802007-04-26 15:59:35 -0700629 _debug("not promised");
David Howellsa58823a2019-05-09 15:16:10 +0100630 ret = afs_fetch_status(vnode, key, false, NULL);
David Howellsc435ee32017-11-02 15:27:49 +0000631 if (ret < 0) {
632 if (ret == -ENOENT) {
633 set_bit(AFS_VNODE_DELETED, &vnode->flags);
634 ret = -ESTALE;
635 }
David Howells260a9802007-04-26 15:59:35 -0700636 goto error_unlock;
David Howellsc435ee32017-11-02 15:27:49 +0000637 }
David Howells260a9802007-04-26 15:59:35 -0700638 _debug("new promise [fl=%lx]", vnode->flags);
639 }
640
641 if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
642 _debug("file already deleted");
643 ret = -ESTALE;
644 goto error_unlock;
645 }
646
647 /* if the vnode's data version number changed then its contents are
648 * different */
David Howells416351f2007-05-09 02:33:45 -0700649 if (test_and_clear_bit(AFS_VNODE_ZAP_DATA, &vnode->flags))
650 afs_zap_data(vnode);
David Howellsb61f7dc2018-04-27 20:46:22 +0100651 up_write(&vnode->validate_lock);
David Howells260a9802007-04-26 15:59:35 -0700652valid:
653 _leave(" = 0");
654 return 0;
655
656error_unlock:
David Howellsb61f7dc2018-04-27 20:46:22 +0100657 up_write(&vnode->validate_lock);
David Howells260a9802007-04-26 15:59:35 -0700658 _leave(" = %d", ret);
659 return ret;
660}
661
662/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 * read the attributes of an inode
664 */
David Howellsa528d352017-01-31 16:46:22 +0000665int afs_getattr(const struct path *path, struct kstat *stat,
666 u32 request_mask, unsigned int query_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667{
David Howellsa528d352017-01-31 16:46:22 +0000668 struct inode *inode = d_inode(path->dentry);
David Howellsc435ee32017-11-02 15:27:49 +0000669 struct afs_vnode *vnode = AFS_FS_I(inode);
670 int seq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
David Howellsd6e43f72011-06-14 00:45:44 +0100672 _enter("{ ino=%lu v=%u }", inode->i_ino, inode->i_generation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
David Howellsc435ee32017-11-02 15:27:49 +0000674 do {
675 read_seqbegin_or_lock(&vnode->cb_lock, &seq);
676 generic_fillattr(inode, stat);
677 } while (need_seqretry(&vnode->cb_lock, seq));
678
679 done_seqretry(&vnode->cb_lock, seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return 0;
David Howellsec268152007-04-26 15:49:28 -0700681}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683/*
wangleibec5eb62010-08-11 09:38:04 +0100684 * discard an AFS inode
685 */
686int afs_drop_inode(struct inode *inode)
687{
688 _enter("");
689
690 if (test_bit(AFS_VNODE_PSEUDODIR, &AFS_FS_I(inode)->flags))
691 return generic_delete_inode(inode);
692 else
693 return generic_drop_inode(inode);
694}
695
696/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 * clear an AFS inode
698 */
Al Virob57922d2010-06-07 14:34:48 -0400699void afs_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
701 struct afs_vnode *vnode;
702
703 vnode = AFS_FS_I(inode);
704
David Howells3b6492d2018-10-20 00:57:57 +0100705 _enter("{%llx:%llu.%d}",
David Howells260a9802007-04-26 15:59:35 -0700706 vnode->fid.vid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 vnode->fid.vnode,
David Howellsc435ee32017-11-02 15:27:49 +0000708 vnode->fid.unique);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709
David Howells08e0e7c2007-04-26 15:55:03 -0700710 _debug("CLEAR INODE %p", inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711
David Howells08e0e7c2007-04-26 15:55:03 -0700712 ASSERTCMP(inode->i_ino, ==, vnode->fid.vnode);
713
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700714 truncate_inode_pages_final(&inode->i_data);
Jan Karadbd57682012-05-03 14:48:02 +0200715 clear_inode(inode);
Al Virob57922d2010-06-07 14:34:48 -0400716
David Howellsc435ee32017-11-02 15:27:49 +0000717 if (vnode->cb_interest) {
718 afs_put_cb_interest(afs_i2net(inode), vnode->cb_interest);
719 vnode->cb_interest = NULL;
David Howells08e0e7c2007-04-26 15:55:03 -0700720 }
721
David Howells4343d002017-11-02 15:27:52 +0000722 while (!list_empty(&vnode->wb_keys)) {
723 struct afs_wb_key *wbk = list_entry(vnode->wb_keys.next,
724 struct afs_wb_key, vnode_link);
725 list_del(&wbk->vnode_link);
726 afs_put_wb_key(wbk);
727 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728
David Howells9b3f26c2009-04-03 16:42:41 +0100729#ifdef CONFIG_AFS_FSCACHE
David Howells402cb8d2018-04-04 13:41:28 +0100730 {
731 struct afs_vnode_cache_aux aux;
732
733 aux.data_version = vnode->status.data_version;
734 fscache_relinquish_cookie(vnode->cache, &aux,
735 test_bit(AFS_VNODE_DELETED, &vnode->flags));
736 vnode->cache = NULL;
737 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738#endif
739
David Howellsa1b879e2019-05-15 12:09:17 +0100740 afs_prune_wb_keys(vnode);
David Howellsfe342cf2018-04-09 21:12:31 +0100741 afs_put_permits(rcu_access_pointer(vnode->permit_cache));
David Howells79ddbfa2019-04-25 14:26:51 +0100742 key_put(vnode->silly_key);
743 vnode->silly_key = NULL;
David Howells59d49072019-01-09 17:23:54 +0000744 key_put(vnode->lock_key);
745 vnode->lock_key = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700746 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700747}
David Howells31143d52007-05-09 02:33:46 -0700748
749/*
750 * set the attributes of an inode
751 */
752int afs_setattr(struct dentry *dentry, struct iattr *attr)
753{
David Howellsd2ddc772017-11-02 15:27:50 +0000754 struct afs_fs_cursor fc;
David Howellsa58823a2019-05-09 15:16:10 +0100755 struct afs_status_cb *scb;
David Howells2b0143b2015-03-17 22:25:59 +0000756 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
David Howells31143d52007-05-09 02:33:46 -0700757 struct key *key;
David Howellsa58823a2019-05-09 15:16:10 +0100758 int ret = -ENOMEM;
David Howells31143d52007-05-09 02:33:46 -0700759
David Howells3b6492d2018-10-20 00:57:57 +0100760 _enter("{%llx:%llu},{n=%pd},%x",
Al Viroa4555892014-10-21 20:11:25 -0400761 vnode->fid.vid, vnode->fid.vnode, dentry,
David Howells31143d52007-05-09 02:33:46 -0700762 attr->ia_valid);
763
764 if (!(attr->ia_valid & (ATTR_SIZE | ATTR_MODE | ATTR_UID | ATTR_GID |
765 ATTR_MTIME))) {
766 _leave(" = 0 [unsupported]");
767 return 0;
768 }
769
David Howellsa58823a2019-05-09 15:16:10 +0100770 scb = kzalloc(sizeof(struct afs_status_cb), GFP_KERNEL);
771 if (!scb)
772 goto error;
773
David Howells31143d52007-05-09 02:33:46 -0700774 /* flush any dirty data outstanding on a regular file */
David Howells4343d002017-11-02 15:27:52 +0000775 if (S_ISREG(vnode->vfs_inode.i_mode))
David Howells31143d52007-05-09 02:33:46 -0700776 filemap_write_and_wait(vnode->vfs_inode.i_mapping);
David Howells31143d52007-05-09 02:33:46 -0700777
778 if (attr->ia_valid & ATTR_FILE) {
David Howells215804a2017-11-02 15:27:52 +0000779 key = afs_file_key(attr->ia_file);
David Howells31143d52007-05-09 02:33:46 -0700780 } else {
781 key = afs_request_key(vnode->volume->cell);
782 if (IS_ERR(key)) {
783 ret = PTR_ERR(key);
David Howellsa58823a2019-05-09 15:16:10 +0100784 goto error_scb;
David Howells31143d52007-05-09 02:33:46 -0700785 }
786 }
787
David Howellsd2ddc772017-11-02 15:27:50 +0000788 ret = -ERESTARTSYS;
David Howells20b83912019-05-08 16:16:31 +0100789 if (afs_begin_vnode_operation(&fc, vnode, key, false)) {
David Howellsa58823a2019-05-09 15:16:10 +0100790 afs_dataversion_t data_version = vnode->status.data_version;
791
792 if (attr->ia_valid & ATTR_SIZE)
793 data_version++;
794
David Howellsd2ddc772017-11-02 15:27:50 +0000795 while (afs_select_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +0100796 fc.cb_break = afs_calc_vnode_cb_break(vnode);
David Howellsa58823a2019-05-09 15:16:10 +0100797 afs_fs_setattr(&fc, attr, scb);
David Howellsd2ddc772017-11-02 15:27:50 +0000798 }
799
David Howellsa58823a2019-05-09 15:16:10 +0100800 afs_check_for_remote_deletion(&fc, vnode);
801 afs_vnode_commit_status(&fc, vnode, fc.cb_break,
802 &data_version, scb);
David Howellsd2ddc772017-11-02 15:27:50 +0000803 ret = afs_end_vnode_operation(&fc);
804 }
805
David Howells31143d52007-05-09 02:33:46 -0700806 if (!(attr->ia_valid & ATTR_FILE))
807 key_put(key);
808
David Howellsa58823a2019-05-09 15:16:10 +0100809error_scb:
810 kfree(scb);
David Howells31143d52007-05-09 02:33:46 -0700811error:
812 _leave(" = %d", ret);
813 return ret;
814}