blob: e1a523d2e378bd5e60a6b7ff5062c16acdad569d [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"
David Howellsa38a7552019-05-14 12:29:11 +010026#include "afs_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070027
David Howellsd3e3b7ea2017-07-06 15:50:27 +010028static const struct inode_operations afs_symlink_inode_operations = {
29 .get_link = page_get_link,
30 .listxattr = afs_listxattr,
31};
32
David Howellsb134d682019-04-25 14:26:52 +010033static noinline void dump_vnode(struct afs_vnode *vnode, struct afs_vnode *parent_vnode)
34{
35 static unsigned long once_only;
36
37 pr_warn("kAFS: AFS vnode with undefined type %u\n",
38 vnode->status.type);
39 pr_warn("kAFS: A=%d m=%o s=%llx v=%llx\n",
40 vnode->status.abort_code,
41 vnode->status.mode,
42 vnode->status.size,
43 vnode->status.data_version);
44 pr_warn("kAFS: vnode %llx:%llx:%x\n",
45 vnode->fid.vid,
46 vnode->fid.vnode,
47 vnode->fid.unique);
48 if (parent_vnode)
49 pr_warn("kAFS: dir %llx:%llx:%x\n",
50 parent_vnode->fid.vid,
51 parent_vnode->fid.vnode,
52 parent_vnode->fid.unique);
53
54 if (!test_and_set_bit(0, &once_only))
55 dump_stack();
56}
57
Linus Torvalds1da177e2005-04-16 15:20:36 -070058/*
David Howellsdd9fbcb2018-04-06 14:17:24 +010059 * Initialise an inode from the vnode status.
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 */
David Howellsb134d682019-04-25 14:26:52 +010061static int afs_inode_init_from_status(struct afs_vnode *vnode, struct key *key,
David Howellsa58823a2019-05-09 15:16:10 +010062 struct afs_cb_interest *cbi,
63 struct afs_vnode *parent_vnode,
64 struct afs_status_cb *scb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070065{
David Howellsa58823a2019-05-09 15:16:10 +010066 struct afs_cb_interest *old_cbi = NULL;
67 struct afs_file_status *status = &scb->status;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 struct inode *inode = AFS_VNODE_TO_I(vnode);
David Howellsa58823a2019-05-09 15:16:10 +010069 struct timespec64 t;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
David Howells260a9802007-04-26 15:59:35 -070071 _debug("FS: ft=%d lk=%d sz=%llu ver=%Lu mod=%hu",
David Howellsa58823a2019-05-09 15:16:10 +010072 status->type,
73 status->nlink,
74 (unsigned long long) status->size,
75 status->data_version,
76 status->mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
David Howellsa58823a2019-05-09 15:16:10 +010078 write_seqlock(&vnode->cb_lock);
David Howellsc435ee32017-11-02 15:27:49 +000079
David Howellsa58823a2019-05-09 15:16:10 +010080 vnode->status = *status;
David Howellsdd9fbcb2018-04-06 14:17:24 +010081
David Howellsa58823a2019-05-09 15:16:10 +010082 t = status->mtime_client;
83 inode->i_ctime = t;
84 inode->i_mtime = t;
85 inode->i_atime = t;
86 inode->i_uid = make_kuid(&init_user_ns, status->owner);
87 inode->i_gid = make_kgid(&init_user_ns, status->group);
88 set_nlink(&vnode->vfs_inode, status->nlink);
89
90 switch (status->type) {
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 case AFS_FTYPE_FILE:
David Howellsa58823a2019-05-09 15:16:10 +010092 inode->i_mode = S_IFREG | status->mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 inode->i_op = &afs_file_inode_operations;
David Howells00d3b7a2007-04-26 15:57:07 -070094 inode->i_fop = &afs_file_operations;
David Howellsf3ddee82018-04-06 14:17:25 +010095 inode->i_mapping->a_ops = &afs_fs_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -070096 break;
97 case AFS_FTYPE_DIR:
David Howellsa58823a2019-05-09 15:16:10 +010098 inode->i_mode = S_IFDIR | status->mode;
Linus Torvalds1da177e2005-04-16 15:20:36 -070099 inode->i_op = &afs_dir_inode_operations;
100 inode->i_fop = &afs_dir_file_operations;
David Howellsf3ddee82018-04-06 14:17:25 +0100101 inode->i_mapping->a_ops = &afs_dir_aops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 break;
103 case AFS_FTYPE_SYMLINK:
David Howells944c74f2017-03-16 16:27:45 +0000104 /* Symlinks with a mode of 0644 are actually mountpoints. */
David Howellsa58823a2019-05-09 15:16:10 +0100105 if ((status->mode & 0777) == 0644) {
David Howells944c74f2017-03-16 16:27:45 +0000106 inode->i_flags |= S_AUTOMOUNT;
107
David Howells944c74f2017-03-16 16:27:45 +0000108 set_bit(AFS_VNODE_MOUNTPOINT, &vnode->flags);
David Howells944c74f2017-03-16 16:27:45 +0000109
110 inode->i_mode = S_IFDIR | 0555;
111 inode->i_op = &afs_mntpt_inode_operations;
112 inode->i_fop = &afs_mntpt_file_operations;
David Howellsf3ddee82018-04-06 14:17:25 +0100113 inode->i_mapping->a_ops = &afs_fs_aops;
David Howells944c74f2017-03-16 16:27:45 +0000114 } else {
David Howellsa58823a2019-05-09 15:16:10 +0100115 inode->i_mode = S_IFLNK | status->mode;
David Howellsd3e3b7ea2017-07-06 15:50:27 +0100116 inode->i_op = &afs_symlink_inode_operations;
David Howellsf3ddee82018-04-06 14:17:25 +0100117 inode->i_mapping->a_ops = &afs_fs_aops;
David Howells944c74f2017-03-16 16:27:45 +0000118 }
Al Viro21fc61c2015-11-17 01:07:57 -0500119 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 break;
121 default:
David Howellsb134d682019-04-25 14:26:52 +0100122 dump_vnode(vnode, parent_vnode);
David Howellsa58823a2019-05-09 15:16:10 +0100123 write_sequnlock(&vnode->cb_lock);
David Howells160cb952018-10-20 00:57:56 +0100124 return afs_protocol_error(NULL, -EBADMSG, afs_eproto_file_type);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125 }
126
Marc Dionnec0abbb52019-04-25 12:04:37 -0300127 /*
128 * Estimate 512 bytes blocks used, rounded up to nearest 1K
129 * for consistency with other AFS clients.
130 */
131 inode->i_blocks = ((i_size_read(inode) + 1023) >> 10) << 1;
David Howellsa58823a2019-05-09 15:16:10 +0100132 i_size_write(&vnode->vfs_inode, status->size);
David Howellsc435ee32017-11-02 15:27:49 +0000133
David Howellsa58823a2019-05-09 15:16:10 +0100134 vnode->invalid_before = status->data_version;
135 inode_set_iversion_raw(&vnode->vfs_inode, status->data_version);
136
137 if (!scb->have_cb) {
138 /* it's a symlink we just created (the fileserver
139 * didn't give us a callback) */
David Howellsa58823a2019-05-09 15:16:10 +0100140 vnode->cb_expires_at = ktime_get_real_seconds();
141 } else {
David Howellsa58823a2019-05-09 15:16:10 +0100142 vnode->cb_expires_at = scb->callback.expires_at;
David Howellsf6424042019-05-13 16:14:32 +0100143 old_cbi = rcu_dereference_protected(vnode->cb_interest,
144 lockdep_is_held(&vnode->cb_lock.lock));
David Howellsa58823a2019-05-09 15:16:10 +0100145 if (cbi != old_cbi)
David Howellsf6424042019-05-13 16:14:32 +0100146 rcu_assign_pointer(vnode->cb_interest, afs_get_cb_interest(cbi));
David Howellsa58823a2019-05-09 15:16:10 +0100147 else
148 old_cbi = NULL;
149 set_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
150 }
151
152 write_sequnlock(&vnode->cb_lock);
153 afs_put_cb_interest(afs_v2net(vnode), old_cbi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 return 0;
David Howellsec268152007-04-26 15:49:28 -0700155}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157/*
David Howellsa58823a2019-05-09 15:16:10 +0100158 * Update the core inode struct from a returned status record.
159 */
160static void afs_apply_status(struct afs_fs_cursor *fc,
161 struct afs_vnode *vnode,
162 struct afs_status_cb *scb,
163 const afs_dataversion_t *expected_version)
164{
165 struct afs_file_status *status = &scb->status;
166 struct timespec64 t;
167 umode_t mode;
168 bool data_changed = false;
169
170 BUG_ON(test_bit(AFS_VNODE_UNSET, &vnode->flags));
171
172 if (status->type != vnode->status.type) {
173 pr_warning("Vnode %llx:%llx:%x changed type %u to %u\n",
174 vnode->fid.vid,
175 vnode->fid.vnode,
176 vnode->fid.unique,
177 status->type, vnode->status.type);
178 afs_protocol_error(NULL, -EBADMSG, afs_eproto_bad_status);
179 return;
180 }
181
182 if (status->nlink != vnode->status.nlink)
183 set_nlink(&vnode->vfs_inode, status->nlink);
184
185 if (status->owner != vnode->status.owner)
186 vnode->vfs_inode.i_uid = make_kuid(&init_user_ns, status->owner);
187
188 if (status->group != vnode->status.group)
189 vnode->vfs_inode.i_gid = make_kgid(&init_user_ns, status->group);
190
191 if (status->mode != vnode->status.mode) {
192 mode = vnode->vfs_inode.i_mode;
193 mode &= ~S_IALLUGO;
194 mode |= status->mode;
195 WRITE_ONCE(vnode->vfs_inode.i_mode, mode);
196 }
197
198 t = status->mtime_client;
199 vnode->vfs_inode.i_ctime = t;
200 vnode->vfs_inode.i_mtime = t;
201 vnode->vfs_inode.i_atime = t;
202
203 if (vnode->status.data_version != status->data_version)
204 data_changed = true;
205
206 vnode->status = *status;
207
208 if (expected_version &&
209 *expected_version != status->data_version) {
210 kdebug("vnode modified %llx on {%llx:%llu} [exp %llx] %s",
211 (unsigned long long) status->data_version,
212 vnode->fid.vid, vnode->fid.vnode,
213 (unsigned long long) *expected_version,
214 fc->type ? fc->type->name : "???");
215 vnode->invalid_before = status->data_version;
216 if (vnode->status.type == AFS_FTYPE_DIR) {
217 if (test_and_clear_bit(AFS_VNODE_DIR_VALID, &vnode->flags))
218 afs_stat_v(vnode, n_inval);
219 } else {
220 set_bit(AFS_VNODE_ZAP_DATA, &vnode->flags);
221 }
222 } else if (vnode->status.type == AFS_FTYPE_DIR) {
223 /* Expected directory change is handled elsewhere so
224 * that we can locally edit the directory and save on a
225 * download.
226 */
227 if (test_bit(AFS_VNODE_DIR_VALID, &vnode->flags))
228 data_changed = false;
229 }
230
231 if (data_changed) {
232 inode_set_iversion_raw(&vnode->vfs_inode, status->data_version);
233 i_size_write(&vnode->vfs_inode, status->size);
234 }
235}
236
237/*
238 * Apply a callback to a vnode.
239 */
240static void afs_apply_callback(struct afs_fs_cursor *fc,
241 struct afs_vnode *vnode,
242 struct afs_status_cb *scb,
243 unsigned int cb_break)
244{
245 struct afs_cb_interest *old;
246 struct afs_callback *cb = &scb->callback;
247
248 if (!afs_cb_is_broken(cb_break, vnode, fc->cbi)) {
David Howellsa58823a2019-05-09 15:16:10 +0100249 vnode->cb_expires_at = cb->expires_at;
David Howellsf6424042019-05-13 16:14:32 +0100250 old = rcu_dereference_protected(vnode->cb_interest,
251 lockdep_is_held(&vnode->cb_lock.lock));
David Howellsa58823a2019-05-09 15:16:10 +0100252 if (old != fc->cbi) {
David Howellsf6424042019-05-13 16:14:32 +0100253 rcu_assign_pointer(vnode->cb_interest, afs_get_cb_interest(fc->cbi));
David Howellsa58823a2019-05-09 15:16:10 +0100254 afs_put_cb_interest(afs_v2net(vnode), old);
255 }
256 set_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
257 }
258}
259
260/*
261 * Apply the received status and callback to an inode all in the same critical
262 * section to avoid races with afs_validate().
263 */
264void afs_vnode_commit_status(struct afs_fs_cursor *fc,
265 struct afs_vnode *vnode,
266 unsigned int cb_break,
267 const afs_dataversion_t *expected_version,
268 struct afs_status_cb *scb)
269{
270 if (fc->ac.error != 0)
271 return;
272
273 write_seqlock(&vnode->cb_lock);
274
David Howellsa38a7552019-05-14 12:29:11 +0100275 if (scb->have_error) {
276 if (scb->status.abort_code == VNOVNODE) {
277 set_bit(AFS_VNODE_DELETED, &vnode->flags);
278 clear_nlink(&vnode->vfs_inode);
279 __afs_break_callback(vnode);
280 }
281 } else {
282 if (scb->have_status)
283 afs_apply_status(fc, vnode, scb, expected_version);
284 if (scb->have_cb)
285 afs_apply_callback(fc, vnode, scb, cb_break);
286 }
David Howellsa58823a2019-05-09 15:16:10 +0100287
288 write_sequnlock(&vnode->cb_lock);
289
David Howellsa38a7552019-05-14 12:29:11 +0100290 if (fc->ac.error == 0 && scb->have_status)
David Howellsa58823a2019-05-09 15:16:10 +0100291 afs_cache_permit(vnode, fc->key, cb_break, scb);
292}
293
294/*
David Howellsd2ddc772017-11-02 15:27:50 +0000295 * Fetch file status from the volume.
296 */
David Howellsa58823a2019-05-09 15:16:10 +0100297int afs_fetch_status(struct afs_vnode *vnode, struct key *key, bool is_new,
298 afs_access_t *_caller_access)
David Howellsd2ddc772017-11-02 15:27:50 +0000299{
David Howellsa58823a2019-05-09 15:16:10 +0100300 struct afs_status_cb *scb;
David Howellsd2ddc772017-11-02 15:27:50 +0000301 struct afs_fs_cursor fc;
302 int ret;
303
David Howells3b6492d2018-10-20 00:57:57 +0100304 _enter("%s,{%llx:%llu.%u,S=%lx}",
David Howellsd2ddc772017-11-02 15:27:50 +0000305 vnode->volume->name,
306 vnode->fid.vid, vnode->fid.vnode, vnode->fid.unique,
307 vnode->flags);
308
David Howellsa58823a2019-05-09 15:16:10 +0100309 scb = kzalloc(sizeof(struct afs_status_cb), GFP_KERNEL);
310 if (!scb)
311 return -ENOMEM;
312
David Howellsd2ddc772017-11-02 15:27:50 +0000313 ret = -ERESTARTSYS;
David Howells20b83912019-05-08 16:16:31 +0100314 if (afs_begin_vnode_operation(&fc, vnode, key, true)) {
David Howellsa58823a2019-05-09 15:16:10 +0100315 afs_dataversion_t data_version = vnode->status.data_version;
316
David Howellsd2ddc772017-11-02 15:27:50 +0000317 while (afs_select_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +0100318 fc.cb_break = afs_calc_vnode_cb_break(vnode);
David Howellsa58823a2019-05-09 15:16:10 +0100319 afs_fs_fetch_file_status(&fc, scb, NULL);
David Howellsd2ddc772017-11-02 15:27:50 +0000320 }
321
David Howellsa58823a2019-05-09 15:16:10 +0100322 if (fc.error) {
323 /* Do nothing. */
324 } else if (is_new) {
325 ret = afs_inode_init_from_status(vnode, key, fc.cbi,
326 NULL, scb);
327 fc.error = ret;
328 if (ret == 0)
329 afs_cache_permit(vnode, key, fc.cb_break, scb);
330 } else {
331 afs_vnode_commit_status(&fc, vnode, fc.cb_break,
332 &data_version, scb);
333 }
334 afs_check_for_remote_deletion(&fc, vnode);
David Howellsd2ddc772017-11-02 15:27:50 +0000335 ret = afs_end_vnode_operation(&fc);
336 }
337
David Howellsa58823a2019-05-09 15:16:10 +0100338 if (ret == 0 && _caller_access)
339 *_caller_access = scb->status.caller_access;
340 kfree(scb);
David Howellsd2ddc772017-11-02 15:27:50 +0000341 _leave(" = %d", ret);
342 return ret;
343}
344
345/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 * iget5() comparator
347 */
David Howellsc435ee32017-11-02 15:27:49 +0000348int afs_iget5_test(struct inode *inode, void *opaque)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 struct afs_iget_data *data = opaque;
David Howells3b6492d2018-10-20 00:57:57 +0100351 struct afs_vnode *vnode = AFS_FS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700352
David Howells3b6492d2018-10-20 00:57:57 +0100353 return memcmp(&vnode->fid, &data->fid, sizeof(data->fid)) == 0;
David Howellsec268152007-04-26 15:49:28 -0700354}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356/*
wangleibec5eb62010-08-11 09:38:04 +0100357 * iget5() comparator for inode created by autocell operations
358 *
359 * These pseudo inodes don't match anything.
360 */
David Howells4d673da2018-02-06 06:26:30 +0000361static int afs_iget5_pseudo_dir_test(struct inode *inode, void *opaque)
wangleibec5eb62010-08-11 09:38:04 +0100362{
363 return 0;
364}
365
366/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 * iget5() inode initialiser
368 */
369static int afs_iget5_set(struct inode *inode, void *opaque)
370{
371 struct afs_iget_data *data = opaque;
372 struct afs_vnode *vnode = AFS_FS_I(inode);
373
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 vnode->fid = data->fid;
375 vnode->volume = data->volume;
376
David Howells3b6492d2018-10-20 00:57:57 +0100377 /* YFS supports 96-bit vnode IDs, but Linux only supports
378 * 64-bit inode numbers.
379 */
380 inode->i_ino = data->fid.vnode;
381 inode->i_generation = data->fid.unique;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 return 0;
David Howellsec268152007-04-26 15:49:28 -0700383}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385/*
David Howells4d673da2018-02-06 06:26:30 +0000386 * Create an inode for a dynamic root directory or an autocell dynamic
387 * automount dir.
wangleibec5eb62010-08-11 09:38:04 +0100388 */
David Howells4d673da2018-02-06 06:26:30 +0000389struct inode *afs_iget_pseudo_dir(struct super_block *sb, bool root)
wangleibec5eb62010-08-11 09:38:04 +0100390{
391 struct afs_iget_data data;
392 struct afs_super_info *as;
393 struct afs_vnode *vnode;
wangleibec5eb62010-08-11 09:38:04 +0100394 struct inode *inode;
395 static atomic_t afs_autocell_ino;
396
David Howells4d673da2018-02-06 06:26:30 +0000397 _enter("");
wangleibec5eb62010-08-11 09:38:04 +0100398
wangleibec5eb62010-08-11 09:38:04 +0100399 as = sb->s_fs_info;
David Howells4d673da2018-02-06 06:26:30 +0000400 if (as->volume) {
401 data.volume = as->volume;
402 data.fid.vid = as->volume->vid;
403 }
404 if (root) {
405 data.fid.vnode = 1;
406 data.fid.unique = 1;
407 } else {
408 data.fid.vnode = atomic_inc_return(&afs_autocell_ino);
409 data.fid.unique = 0;
410 }
wangleibec5eb62010-08-11 09:38:04 +0100411
David Howells4d673da2018-02-06 06:26:30 +0000412 inode = iget5_locked(sb, data.fid.vnode,
413 afs_iget5_pseudo_dir_test, afs_iget5_set,
wangleibec5eb62010-08-11 09:38:04 +0100414 &data);
415 if (!inode) {
416 _leave(" = -ENOMEM");
417 return ERR_PTR(-ENOMEM);
418 }
419
David Howells3b6492d2018-10-20 00:57:57 +0100420 _debug("GOT INODE %p { ino=%lu, vl=%llx, vn=%llx, u=%x }",
wangleibec5eb62010-08-11 09:38:04 +0100421 inode, inode->i_ino, data.fid.vid, data.fid.vnode,
422 data.fid.unique);
423
424 vnode = AFS_FS_I(inode);
425
426 /* there shouldn't be an existing inode */
427 BUG_ON(!(inode->i_state & I_NEW));
428
429 inode->i_size = 0;
430 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO;
David Howells4d673da2018-02-06 06:26:30 +0000431 if (root) {
432 inode->i_op = &afs_dynroot_inode_operations;
433 inode->i_fop = &afs_dynroot_file_operations;
434 } else {
435 inode->i_op = &afs_autocell_inode_operations;
436 }
Miklos Szeredibfe86842011-10-28 14:13:29 +0200437 set_nlink(inode, 2);
Eric W. Biedermana0a53862012-02-07 16:20:48 -0800438 inode->i_uid = GLOBAL_ROOT_UID;
439 inode->i_gid = GLOBAL_ROOT_GID;
Arnd Bergmannba25b812019-04-13 08:37:36 +0100440 inode->i_ctime = inode->i_atime = inode->i_mtime = current_time(inode);
wangleibec5eb62010-08-11 09:38:04 +0100441 inode->i_blocks = 0;
Jeff Laytona01179e2017-12-11 06:35:11 -0500442 inode_set_iversion_raw(inode, 0);
wangleibec5eb62010-08-11 09:38:04 +0100443 inode->i_generation = 0;
444
445 set_bit(AFS_VNODE_PSEUDODIR, &vnode->flags);
David Howells4d673da2018-02-06 06:26:30 +0000446 if (!root) {
447 set_bit(AFS_VNODE_MOUNTPOINT, &vnode->flags);
448 inode->i_flags |= S_AUTOMOUNT;
449 }
450
451 inode->i_flags |= S_NOATIME;
wangleibec5eb62010-08-11 09:38:04 +0100452 unlock_new_inode(inode);
453 _leave(" = %p", inode);
454 return inode;
455}
456
457/*
David Howells402cb8d2018-04-04 13:41:28 +0100458 * Get a cache cookie for an inode.
459 */
460static void afs_get_inode_cache(struct afs_vnode *vnode)
461{
462#ifdef CONFIG_AFS_FSCACHE
463 struct {
464 u32 vnode_id;
465 u32 unique;
466 u32 vnode_id_ext[2]; /* Allow for a 96-bit key */
467 } __packed key;
468 struct afs_vnode_cache_aux aux;
469
David Howellsf3ddee82018-04-06 14:17:25 +0100470 if (vnode->status.type == AFS_FTYPE_DIR) {
471 vnode->cache = NULL;
472 return;
473 }
474
David Howells402cb8d2018-04-04 13:41:28 +0100475 key.vnode_id = vnode->fid.vnode;
476 key.unique = vnode->fid.unique;
David Howells3b6492d2018-10-20 00:57:57 +0100477 key.vnode_id_ext[0] = vnode->fid.vnode >> 32;
478 key.vnode_id_ext[1] = vnode->fid.vnode_hi;
David Howells402cb8d2018-04-04 13:41:28 +0100479 aux.data_version = vnode->status.data_version;
480
481 vnode->cache = fscache_acquire_cookie(vnode->volume->cache,
482 &afs_vnode_cache_index_def,
483 &key, sizeof(key),
484 &aux, sizeof(aux),
David Howellsee1235a2018-04-04 13:41:28 +0100485 vnode, vnode->status.size, true);
David Howells402cb8d2018-04-04 13:41:28 +0100486#endif
487}
488
489/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 * inode retrieval
491 */
David Howells260a9802007-04-26 15:59:35 -0700492struct inode *afs_iget(struct super_block *sb, struct key *key,
David Howellsa58823a2019-05-09 15:16:10 +0100493 struct afs_fid *fid, struct afs_status_cb *scb,
494 struct afs_cb_interest *cbi,
David Howellsb134d682019-04-25 14:26:52 +0100495 struct afs_vnode *parent_vnode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
497 struct afs_iget_data data = { .fid = *fid };
498 struct afs_super_info *as;
499 struct afs_vnode *vnode;
500 struct inode *inode;
501 int ret;
502
David Howells3b6492d2018-10-20 00:57:57 +0100503 _enter(",{%llx:%llu.%u},,", fid->vid, fid->vnode, fid->unique);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504
505 as = sb->s_fs_info;
506 data.volume = as->volume;
507
508 inode = iget5_locked(sb, fid->vnode, afs_iget5_test, afs_iget5_set,
509 &data);
510 if (!inode) {
511 _leave(" = -ENOMEM");
David Howells08e0e7c2007-04-26 15:55:03 -0700512 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 }
514
David Howells3b6492d2018-10-20 00:57:57 +0100515 _debug("GOT INODE %p { vl=%llx vn=%llx, u=%x }",
David Howells08e0e7c2007-04-26 15:55:03 -0700516 inode, fid->vid, fid->vnode, fid->unique);
517
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 vnode = AFS_FS_I(inode);
519
520 /* deal with an existing inode */
521 if (!(inode->i_state & I_NEW)) {
David Howells08e0e7c2007-04-26 15:55:03 -0700522 _leave(" = %p", inode);
523 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 }
525
David Howellsa58823a2019-05-09 15:16:10 +0100526 if (!scb) {
David Howells260a9802007-04-26 15:59:35 -0700527 /* it's a remotely extant inode */
David Howellsa58823a2019-05-09 15:16:10 +0100528 ret = afs_fetch_status(vnode, key, true, NULL);
David Howells260a9802007-04-26 15:59:35 -0700529 if (ret < 0)
530 goto bad_inode;
531 } else {
David Howellsa58823a2019-05-09 15:16:10 +0100532 ret = afs_inode_init_from_status(vnode, key, cbi, parent_vnode,
533 scb);
534 if (ret < 0)
535 goto bad_inode;
David Howells260a9802007-04-26 15:59:35 -0700536 }
537
David Howells5800db82018-04-06 14:17:24 +0100538 afs_get_inode_cache(vnode);
539
Linus Torvalds1da177e2005-04-16 15:20:36 -0700540 /* success */
David Howells260a9802007-04-26 15:59:35 -0700541 clear_bit(AFS_VNODE_UNSET, &vnode->flags);
David Howells08e0e7c2007-04-26 15:55:03 -0700542 inode->i_flags |= S_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543 unlock_new_inode(inode);
David Howells7c712452019-05-14 15:35:44 +0100544 _leave(" = %p", inode);
David Howells08e0e7c2007-04-26 15:55:03 -0700545 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546
547 /* failure */
David Howellsec268152007-04-26 15:49:28 -0700548bad_inode:
David Howellsaa7fa242008-02-07 00:15:28 -0800549 iget_failed(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 _leave(" = %d [bad]", ret);
David Howells08e0e7c2007-04-26 15:55:03 -0700551 return ERR_PTR(ret);
David Howellsec268152007-04-26 15:49:28 -0700552}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700553
Linus Torvalds1da177e2005-04-16 15:20:36 -0700554/*
David Howells416351f2007-05-09 02:33:45 -0700555 * mark the data attached to an inode as obsolete due to a write on the server
556 * - might also want to ditch all the outstanding writes and dirty pages
557 */
558void afs_zap_data(struct afs_vnode *vnode)
559{
David Howells3b6492d2018-10-20 00:57:57 +0100560 _enter("{%llx:%llu}", vnode->fid.vid, vnode->fid.vnode);
David Howells416351f2007-05-09 02:33:45 -0700561
David Howellsc1515992018-04-04 13:41:25 +0100562#ifdef CONFIG_AFS_FSCACHE
563 fscache_invalidate(vnode->cache);
564#endif
565
David Howells416351f2007-05-09 02:33:45 -0700566 /* nuke all the non-dirty pages that aren't locked, mapped or being
David Howells0f300ca2007-05-10 22:22:20 -0700567 * written back in a regular file and completely discard the pages in a
568 * directory or symlink */
569 if (S_ISREG(vnode->vfs_inode.i_mode))
570 invalidate_remote_inode(&vnode->vfs_inode);
571 else
572 invalidate_inode_pages2(vnode->vfs_inode.i_mapping);
David Howells416351f2007-05-09 02:33:45 -0700573}
574
575/*
David Howellsc925bd02019-05-09 14:31:11 +0100576 * Check the validity of a vnode/inode.
David Howells260a9802007-04-26 15:59:35 -0700577 */
David Howellsc925bd02019-05-09 14:31:11 +0100578bool afs_check_validity(struct afs_vnode *vnode)
David Howells260a9802007-04-26 15:59:35 -0700579{
David Howellsf6424042019-05-13 16:14:32 +0100580 struct afs_cb_interest *cbi;
581 struct afs_server *server;
582 struct afs_volume *volume = vnode->volume;
David Howellsc435ee32017-11-02 15:27:49 +0000583 time64_t now = ktime_get_real_seconds();
David Howells61c347b2019-05-09 14:15:11 +0100584 bool valid, need_clear = false;
David Howellsf6424042019-05-13 16:14:32 +0100585 unsigned int cb_break, cb_s_break, cb_v_break;
586 int seq = 0;
David Howells260a9802007-04-26 15:59:35 -0700587
David Howellsf6424042019-05-13 16:14:32 +0100588 do {
589 read_seqbegin_or_lock(&vnode->cb_lock, &seq);
590 cb_v_break = READ_ONCE(volume->cb_v_break);
591 cb_break = vnode->cb_break;
David Howellsc435ee32017-11-02 15:27:49 +0000592
David Howellsf6424042019-05-13 16:14:32 +0100593 if (test_bit(AFS_VNODE_CB_PROMISED, &vnode->flags)) {
594 cbi = rcu_dereference(vnode->cb_interest);
595 server = rcu_dereference(cbi->server);
596 cb_s_break = READ_ONCE(server->cb_s_break);
597
598 if (vnode->cb_s_break != cb_s_break ||
599 vnode->cb_v_break != cb_v_break) {
600 vnode->cb_s_break = cb_s_break;
601 vnode->cb_v_break = cb_v_break;
David Howells61c347b2019-05-09 14:15:11 +0100602 need_clear = true;
David Howellsf6424042019-05-13 16:14:32 +0100603 valid = false;
604 } else if (test_bit(AFS_VNODE_ZAP_DATA, &vnode->flags)) {
David Howells61c347b2019-05-09 14:15:11 +0100605 need_clear = true;
David Howellsf6424042019-05-13 16:14:32 +0100606 valid = false;
607 } else if (vnode->cb_expires_at - 10 <= now) {
David Howells61c347b2019-05-09 14:15:11 +0100608 need_clear = true;
David Howellsf6424042019-05-13 16:14:32 +0100609 valid = false;
610 } else {
611 valid = true;
612 }
613 } else if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
David Howells68251f02018-05-12 22:31:33 +0100614 valid = true;
David Howellsf6424042019-05-13 16:14:32 +0100615 } else {
616 vnode->cb_v_break = cb_v_break;
617 valid = false;
David Howells260a9802007-04-26 15:59:35 -0700618 }
David Howells260a9802007-04-26 15:59:35 -0700619
David Howellsf6424042019-05-13 16:14:32 +0100620 } while (need_seqretry(&vnode->cb_lock, seq));
621
622 done_seqretry(&vnode->cb_lock, seq);
David Howells61c347b2019-05-09 14:15:11 +0100623
624 if (need_clear) {
625 write_seqlock(&vnode->cb_lock);
626 if (cb_break == vnode->cb_break)
627 __afs_break_callback(vnode);
628 write_sequnlock(&vnode->cb_lock);
629 valid = false;
630 }
631
David Howellsc925bd02019-05-09 14:31:11 +0100632 return valid;
633}
634
635/*
636 * validate a vnode/inode
637 * - there are several things we need to check
638 * - parent dir data changes (rm, rmdir, rename, mkdir, create, link,
639 * symlink)
640 * - parent dir metadata changed (security changes)
641 * - dentry data changed (write, truncate)
642 * - dentry metadata changed (security changes)
643 */
644int afs_validate(struct afs_vnode *vnode, struct key *key)
645{
646 bool valid;
647 int ret;
648
649 _enter("{v={%llx:%llu} fl=%lx},%x",
650 vnode->fid.vid, vnode->fid.vnode, vnode->flags,
651 key_serial(key));
652
David Howellsf6424042019-05-13 16:14:32 +0100653 rcu_read_lock();
David Howellsc925bd02019-05-09 14:31:11 +0100654 valid = afs_check_validity(vnode);
David Howellsf6424042019-05-13 16:14:32 +0100655 rcu_read_unlock();
David Howells440fbc32018-01-02 10:02:19 +0000656
657 if (test_bit(AFS_VNODE_DELETED, &vnode->flags))
658 clear_nlink(&vnode->vfs_inode);
659
David Howellsc435ee32017-11-02 15:27:49 +0000660 if (valid)
David Howells260a9802007-04-26 15:59:35 -0700661 goto valid;
662
David Howellsb61f7dc2018-04-27 20:46:22 +0100663 down_write(&vnode->validate_lock);
David Howells260a9802007-04-26 15:59:35 -0700664
665 /* if the promise has expired, we need to check the server again to get
666 * a new promise - note that if the (parent) directory's metadata was
667 * changed then the security may be different and we may no longer have
668 * access */
David Howellsc435ee32017-11-02 15:27:49 +0000669 if (!test_bit(AFS_VNODE_CB_PROMISED, &vnode->flags)) {
David Howells260a9802007-04-26 15:59:35 -0700670 _debug("not promised");
David Howellsa58823a2019-05-09 15:16:10 +0100671 ret = afs_fetch_status(vnode, key, false, NULL);
David Howellsc435ee32017-11-02 15:27:49 +0000672 if (ret < 0) {
673 if (ret == -ENOENT) {
674 set_bit(AFS_VNODE_DELETED, &vnode->flags);
675 ret = -ESTALE;
676 }
David Howells260a9802007-04-26 15:59:35 -0700677 goto error_unlock;
David Howellsc435ee32017-11-02 15:27:49 +0000678 }
David Howells260a9802007-04-26 15:59:35 -0700679 _debug("new promise [fl=%lx]", vnode->flags);
680 }
681
682 if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
683 _debug("file already deleted");
684 ret = -ESTALE;
685 goto error_unlock;
686 }
687
688 /* if the vnode's data version number changed then its contents are
689 * different */
David Howells416351f2007-05-09 02:33:45 -0700690 if (test_and_clear_bit(AFS_VNODE_ZAP_DATA, &vnode->flags))
691 afs_zap_data(vnode);
David Howellsb61f7dc2018-04-27 20:46:22 +0100692 up_write(&vnode->validate_lock);
David Howells260a9802007-04-26 15:59:35 -0700693valid:
694 _leave(" = 0");
695 return 0;
696
697error_unlock:
David Howellsb61f7dc2018-04-27 20:46:22 +0100698 up_write(&vnode->validate_lock);
David Howells260a9802007-04-26 15:59:35 -0700699 _leave(" = %d", ret);
700 return ret;
701}
702
703/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704 * read the attributes of an inode
705 */
David Howellsa528d352017-01-31 16:46:22 +0000706int afs_getattr(const struct path *path, struct kstat *stat,
707 u32 request_mask, unsigned int query_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708{
David Howellsa528d352017-01-31 16:46:22 +0000709 struct inode *inode = d_inode(path->dentry);
David Howellsc435ee32017-11-02 15:27:49 +0000710 struct afs_vnode *vnode = AFS_FS_I(inode);
711 int seq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700712
David Howellsd6e43f72011-06-14 00:45:44 +0100713 _enter("{ ino=%lu v=%u }", inode->i_ino, inode->i_generation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714
David Howellsc435ee32017-11-02 15:27:49 +0000715 do {
716 read_seqbegin_or_lock(&vnode->cb_lock, &seq);
717 generic_fillattr(inode, stat);
718 } while (need_seqretry(&vnode->cb_lock, seq));
719
720 done_seqretry(&vnode->cb_lock, seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 return 0;
David Howellsec268152007-04-26 15:49:28 -0700722}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724/*
wangleibec5eb62010-08-11 09:38:04 +0100725 * discard an AFS inode
726 */
727int afs_drop_inode(struct inode *inode)
728{
729 _enter("");
730
731 if (test_bit(AFS_VNODE_PSEUDODIR, &AFS_FS_I(inode)->flags))
732 return generic_delete_inode(inode);
733 else
734 return generic_drop_inode(inode);
735}
736
737/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738 * clear an AFS inode
739 */
Al Virob57922d2010-06-07 14:34:48 -0400740void afs_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
David Howellsf6424042019-05-13 16:14:32 +0100742 struct afs_cb_interest *cbi;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 struct afs_vnode *vnode;
744
745 vnode = AFS_FS_I(inode);
746
David Howells3b6492d2018-10-20 00:57:57 +0100747 _enter("{%llx:%llu.%d}",
David Howells260a9802007-04-26 15:59:35 -0700748 vnode->fid.vid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 vnode->fid.vnode,
David Howellsc435ee32017-11-02 15:27:49 +0000750 vnode->fid.unique);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751
David Howells08e0e7c2007-04-26 15:55:03 -0700752 _debug("CLEAR INODE %p", inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700753
David Howells08e0e7c2007-04-26 15:55:03 -0700754 ASSERTCMP(inode->i_ino, ==, vnode->fid.vnode);
755
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700756 truncate_inode_pages_final(&inode->i_data);
Jan Karadbd57682012-05-03 14:48:02 +0200757 clear_inode(inode);
Al Virob57922d2010-06-07 14:34:48 -0400758
David Howellsf6424042019-05-13 16:14:32 +0100759 write_seqlock(&vnode->cb_lock);
760 cbi = rcu_dereference_protected(vnode->cb_interest,
761 lockdep_is_held(&vnode->cb_lock.lock));
762 if (cbi) {
763 afs_put_cb_interest(afs_i2net(inode), cbi);
764 rcu_assign_pointer(vnode->cb_interest, NULL);
David Howells08e0e7c2007-04-26 15:55:03 -0700765 }
David Howellsf6424042019-05-13 16:14:32 +0100766 write_sequnlock(&vnode->cb_lock);
David Howells08e0e7c2007-04-26 15:55:03 -0700767
David Howells4343d002017-11-02 15:27:52 +0000768 while (!list_empty(&vnode->wb_keys)) {
769 struct afs_wb_key *wbk = list_entry(vnode->wb_keys.next,
770 struct afs_wb_key, vnode_link);
771 list_del(&wbk->vnode_link);
772 afs_put_wb_key(wbk);
773 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774
David Howells9b3f26c2009-04-03 16:42:41 +0100775#ifdef CONFIG_AFS_FSCACHE
David Howells402cb8d2018-04-04 13:41:28 +0100776 {
777 struct afs_vnode_cache_aux aux;
778
779 aux.data_version = vnode->status.data_version;
780 fscache_relinquish_cookie(vnode->cache, &aux,
781 test_bit(AFS_VNODE_DELETED, &vnode->flags));
782 vnode->cache = NULL;
783 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784#endif
785
David Howellsa1b879e2019-05-15 12:09:17 +0100786 afs_prune_wb_keys(vnode);
David Howellsfe342cf2018-04-09 21:12:31 +0100787 afs_put_permits(rcu_access_pointer(vnode->permit_cache));
David Howells79ddbfa2019-04-25 14:26:51 +0100788 key_put(vnode->silly_key);
789 vnode->silly_key = NULL;
David Howells59d49072019-01-09 17:23:54 +0000790 key_put(vnode->lock_key);
791 vnode->lock_key = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700793}
David Howells31143d52007-05-09 02:33:46 -0700794
795/*
796 * set the attributes of an inode
797 */
798int afs_setattr(struct dentry *dentry, struct iattr *attr)
799{
David Howellsd2ddc772017-11-02 15:27:50 +0000800 struct afs_fs_cursor fc;
David Howellsa58823a2019-05-09 15:16:10 +0100801 struct afs_status_cb *scb;
David Howells2b0143b2015-03-17 22:25:59 +0000802 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
David Howells31143d52007-05-09 02:33:46 -0700803 struct key *key;
David Howellsa58823a2019-05-09 15:16:10 +0100804 int ret = -ENOMEM;
David Howells31143d52007-05-09 02:33:46 -0700805
David Howells3b6492d2018-10-20 00:57:57 +0100806 _enter("{%llx:%llu},{n=%pd},%x",
Al Viroa4555892014-10-21 20:11:25 -0400807 vnode->fid.vid, vnode->fid.vnode, dentry,
David Howells31143d52007-05-09 02:33:46 -0700808 attr->ia_valid);
809
810 if (!(attr->ia_valid & (ATTR_SIZE | ATTR_MODE | ATTR_UID | ATTR_GID |
811 ATTR_MTIME))) {
812 _leave(" = 0 [unsupported]");
813 return 0;
814 }
815
David Howellsa58823a2019-05-09 15:16:10 +0100816 scb = kzalloc(sizeof(struct afs_status_cb), GFP_KERNEL);
817 if (!scb)
818 goto error;
819
David Howells31143d52007-05-09 02:33:46 -0700820 /* flush any dirty data outstanding on a regular file */
David Howells4343d002017-11-02 15:27:52 +0000821 if (S_ISREG(vnode->vfs_inode.i_mode))
David Howells31143d52007-05-09 02:33:46 -0700822 filemap_write_and_wait(vnode->vfs_inode.i_mapping);
David Howells31143d52007-05-09 02:33:46 -0700823
824 if (attr->ia_valid & ATTR_FILE) {
David Howells215804a2017-11-02 15:27:52 +0000825 key = afs_file_key(attr->ia_file);
David Howells31143d52007-05-09 02:33:46 -0700826 } else {
827 key = afs_request_key(vnode->volume->cell);
828 if (IS_ERR(key)) {
829 ret = PTR_ERR(key);
David Howellsa58823a2019-05-09 15:16:10 +0100830 goto error_scb;
David Howells31143d52007-05-09 02:33:46 -0700831 }
832 }
833
David Howellsd2ddc772017-11-02 15:27:50 +0000834 ret = -ERESTARTSYS;
David Howells20b83912019-05-08 16:16:31 +0100835 if (afs_begin_vnode_operation(&fc, vnode, key, false)) {
David Howellsa58823a2019-05-09 15:16:10 +0100836 afs_dataversion_t data_version = vnode->status.data_version;
837
838 if (attr->ia_valid & ATTR_SIZE)
839 data_version++;
840
David Howellsd2ddc772017-11-02 15:27:50 +0000841 while (afs_select_fileserver(&fc)) {
David Howells68251f02018-05-12 22:31:33 +0100842 fc.cb_break = afs_calc_vnode_cb_break(vnode);
David Howellsa58823a2019-05-09 15:16:10 +0100843 afs_fs_setattr(&fc, attr, scb);
David Howellsd2ddc772017-11-02 15:27:50 +0000844 }
845
David Howellsa58823a2019-05-09 15:16:10 +0100846 afs_check_for_remote_deletion(&fc, vnode);
847 afs_vnode_commit_status(&fc, vnode, fc.cb_break,
848 &data_version, scb);
David Howellsd2ddc772017-11-02 15:27:50 +0000849 ret = afs_end_vnode_operation(&fc);
850 }
851
David Howells31143d52007-05-09 02:33:46 -0700852 if (!(attr->ia_valid & ATTR_FILE))
853 key_put(key);
854
David Howellsa58823a2019-05-09 15:16:10 +0100855error_scb:
856 kfree(scb);
David Howells31143d52007-05-09 02:33:46 -0700857error:
858 _leave(" = %d", ret);
859 return ret;
860}