blob: 5a2f5854f349cb29447f65c03564f6bcd179db41 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include "internal.h"
25
David Howellsd3e3b7ea2017-07-06 15:50:27 +010026static const struct inode_operations afs_symlink_inode_operations = {
27 .get_link = page_get_link,
28 .listxattr = afs_listxattr,
29};
30
Linus Torvalds1da177e2005-04-16 15:20:36 -070031/*
32 * map the AFS file status to the inode member variables
33 */
David Howells00d3b7a2007-04-26 15:57:07 -070034static int afs_inode_map_status(struct afs_vnode *vnode, struct key *key)
Linus Torvalds1da177e2005-04-16 15:20:36 -070035{
36 struct inode *inode = AFS_VNODE_TO_I(vnode);
David Howellsc435ee32017-11-02 15:27:49 +000037 bool changed;
Linus Torvalds1da177e2005-04-16 15:20:36 -070038
David Howells260a9802007-04-26 15:59:35 -070039 _debug("FS: ft=%d lk=%d sz=%llu ver=%Lu mod=%hu",
Linus Torvalds1da177e2005-04-16 15:20:36 -070040 vnode->status.type,
41 vnode->status.nlink,
David S. Millerba3e0e12007-04-26 16:06:22 -070042 (unsigned long long) vnode->status.size,
David Howells08e0e7c2007-04-26 15:55:03 -070043 vnode->status.data_version,
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 vnode->status.mode);
45
David Howellsc435ee32017-11-02 15:27:49 +000046 read_seqlock_excl(&vnode->cb_lock);
47
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 switch (vnode->status.type) {
49 case AFS_FTYPE_FILE:
50 inode->i_mode = S_IFREG | vnode->status.mode;
51 inode->i_op = &afs_file_inode_operations;
David Howells00d3b7a2007-04-26 15:57:07 -070052 inode->i_fop = &afs_file_operations;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053 break;
54 case AFS_FTYPE_DIR:
55 inode->i_mode = S_IFDIR | vnode->status.mode;
56 inode->i_op = &afs_dir_inode_operations;
57 inode->i_fop = &afs_dir_file_operations;
58 break;
59 case AFS_FTYPE_SYMLINK:
David Howells944c74f2017-03-16 16:27:45 +000060 /* Symlinks with a mode of 0644 are actually mountpoints. */
61 if ((vnode->status.mode & 0777) == 0644) {
62 inode->i_flags |= S_AUTOMOUNT;
63
David Howells944c74f2017-03-16 16:27:45 +000064 set_bit(AFS_VNODE_MOUNTPOINT, &vnode->flags);
David Howells944c74f2017-03-16 16:27:45 +000065
66 inode->i_mode = S_IFDIR | 0555;
67 inode->i_op = &afs_mntpt_inode_operations;
68 inode->i_fop = &afs_mntpt_file_operations;
69 } else {
70 inode->i_mode = S_IFLNK | vnode->status.mode;
David Howellsd3e3b7ea2017-07-06 15:50:27 +010071 inode->i_op = &afs_symlink_inode_operations;
David Howells944c74f2017-03-16 16:27:45 +000072 }
Al Viro21fc61c2015-11-17 01:07:57 -050073 inode_nohighmem(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 break;
75 default:
76 printk("kAFS: AFS vnode with undefined type\n");
David Howellsc435ee32017-11-02 15:27:49 +000077 read_sequnlock_excl(&vnode->cb_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 return -EBADMSG;
79 }
80
David Howellsc435ee32017-11-02 15:27:49 +000081 changed = (vnode->status.size != inode->i_size);
David Howells9b3f26c2009-04-03 16:42:41 +010082
Miklos Szeredibfe86842011-10-28 14:13:29 +020083 set_nlink(inode, vnode->status.nlink);
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 inode->i_uid = vnode->status.owner;
Marc Dionne6186f072017-03-16 16:27:43 +000085 inode->i_gid = vnode->status.group;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 inode->i_size = vnode->status.size;
Marc Dionneab94f5d2017-03-16 16:27:47 +000087 inode->i_ctime.tv_sec = vnode->status.mtime_client;
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 inode->i_ctime.tv_nsec = 0;
89 inode->i_atime = inode->i_mtime = inode->i_ctime;
Linus Torvalds1da177e2005-04-16 15:20:36 -070090 inode->i_blocks = 0;
David Howellsd6e43f72011-06-14 00:45:44 +010091 inode->i_generation = vnode->fid.unique;
92 inode->i_version = vnode->status.data_version;
Linus Torvalds1da177e2005-04-16 15:20:36 -070093 inode->i_mapping->a_ops = &afs_fs_aops;
David Howellsc435ee32017-11-02 15:27:49 +000094
95 read_sequnlock_excl(&vnode->cb_lock);
96
97#ifdef CONFIG_AFS_FSCACHE
98 if (changed)
99 fscache_attr_changed(vnode->cache);
100#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 return 0;
David Howellsec268152007-04-26 15:49:28 -0700102}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104/*
David Howellsd2ddc772017-11-02 15:27:50 +0000105 * Fetch file status from the volume.
106 */
107int afs_fetch_status(struct afs_vnode *vnode, struct key *key)
108{
109 struct afs_fs_cursor fc;
110 int ret;
111
112 _enter("%s,{%x:%u.%u,S=%lx}",
113 vnode->volume->name,
114 vnode->fid.vid, vnode->fid.vnode, vnode->fid.unique,
115 vnode->flags);
116
117 ret = -ERESTARTSYS;
118 if (afs_begin_vnode_operation(&fc, vnode, key)) {
119 while (afs_select_fileserver(&fc)) {
120 fc.cb_break = vnode->cb_break + vnode->cb_s_break;
121 afs_fs_fetch_file_status(&fc, NULL);
122 }
123
124 afs_check_for_remote_deletion(&fc, fc.vnode);
125 afs_vnode_commit_status(&fc, vnode, fc.cb_break);
126 ret = afs_end_vnode_operation(&fc);
127 }
128
129 _leave(" = %d", ret);
130 return ret;
131}
132
133/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 * iget5() comparator
135 */
David Howellsc435ee32017-11-02 15:27:49 +0000136int afs_iget5_test(struct inode *inode, void *opaque)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137{
138 struct afs_iget_data *data = opaque;
139
140 return inode->i_ino == data->fid.vnode &&
David Howellsd6e43f72011-06-14 00:45:44 +0100141 inode->i_generation == data->fid.unique;
David Howellsec268152007-04-26 15:49:28 -0700142}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144/*
wangleibec5eb62010-08-11 09:38:04 +0100145 * iget5() comparator for inode created by autocell operations
146 *
147 * These pseudo inodes don't match anything.
148 */
149static int afs_iget5_autocell_test(struct inode *inode, void *opaque)
150{
151 return 0;
152}
153
154/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 * iget5() inode initialiser
156 */
157static int afs_iget5_set(struct inode *inode, void *opaque)
158{
159 struct afs_iget_data *data = opaque;
160 struct afs_vnode *vnode = AFS_FS_I(inode);
161
162 inode->i_ino = data->fid.vnode;
David Howellsd6e43f72011-06-14 00:45:44 +0100163 inode->i_generation = data->fid.unique;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 vnode->fid = data->fid;
165 vnode->volume = data->volume;
166
167 return 0;
David Howellsec268152007-04-26 15:49:28 -0700168}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170/*
wangleibec5eb62010-08-11 09:38:04 +0100171 * inode retrieval for autocell
172 */
173struct inode *afs_iget_autocell(struct inode *dir, const char *dev_name,
174 int namesz, struct key *key)
175{
176 struct afs_iget_data data;
177 struct afs_super_info *as;
178 struct afs_vnode *vnode;
179 struct super_block *sb;
180 struct inode *inode;
181 static atomic_t afs_autocell_ino;
182
183 _enter("{%x:%u},%*.*s,",
184 AFS_FS_I(dir)->fid.vid, AFS_FS_I(dir)->fid.vnode,
185 namesz, namesz, dev_name ?: "");
186
187 sb = dir->i_sb;
188 as = sb->s_fs_info;
189 data.volume = as->volume;
190 data.fid.vid = as->volume->vid;
191 data.fid.unique = 0;
192 data.fid.vnode = 0;
193
194 inode = iget5_locked(sb, atomic_inc_return(&afs_autocell_ino),
195 afs_iget5_autocell_test, afs_iget5_set,
196 &data);
197 if (!inode) {
198 _leave(" = -ENOMEM");
199 return ERR_PTR(-ENOMEM);
200 }
201
202 _debug("GOT INODE %p { ino=%lu, vl=%x, vn=%x, u=%x }",
203 inode, inode->i_ino, data.fid.vid, data.fid.vnode,
204 data.fid.unique);
205
206 vnode = AFS_FS_I(inode);
207
208 /* there shouldn't be an existing inode */
209 BUG_ON(!(inode->i_state & I_NEW));
210
211 inode->i_size = 0;
212 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO;
213 inode->i_op = &afs_autocell_inode_operations;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200214 set_nlink(inode, 2);
Eric W. Biedermana0a53862012-02-07 16:20:48 -0800215 inode->i_uid = GLOBAL_ROOT_UID;
216 inode->i_gid = GLOBAL_ROOT_GID;
wangleibec5eb62010-08-11 09:38:04 +0100217 inode->i_ctime.tv_sec = get_seconds();
218 inode->i_ctime.tv_nsec = 0;
219 inode->i_atime = inode->i_mtime = inode->i_ctime;
220 inode->i_blocks = 0;
221 inode->i_version = 0;
222 inode->i_generation = 0;
223
224 set_bit(AFS_VNODE_PSEUDODIR, &vnode->flags);
David Howellsd18610b2011-01-14 19:04:05 +0000225 set_bit(AFS_VNODE_MOUNTPOINT, &vnode->flags);
226 inode->i_flags |= S_AUTOMOUNT | S_NOATIME;
wangleibec5eb62010-08-11 09:38:04 +0100227 unlock_new_inode(inode);
228 _leave(" = %p", inode);
229 return inode;
230}
231
232/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233 * inode retrieval
234 */
David Howells260a9802007-04-26 15:59:35 -0700235struct inode *afs_iget(struct super_block *sb, struct key *key,
236 struct afs_fid *fid, struct afs_file_status *status,
David Howellsd2ddc772017-11-02 15:27:50 +0000237 struct afs_callback *cb, struct afs_cb_interest *cbi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
239 struct afs_iget_data data = { .fid = *fid };
240 struct afs_super_info *as;
241 struct afs_vnode *vnode;
242 struct inode *inode;
243 int ret;
244
David Howells416351f2007-05-09 02:33:45 -0700245 _enter(",{%x:%u.%u},,", fid->vid, fid->vnode, fid->unique);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
247 as = sb->s_fs_info;
248 data.volume = as->volume;
249
250 inode = iget5_locked(sb, fid->vnode, afs_iget5_test, afs_iget5_set,
251 &data);
252 if (!inode) {
253 _leave(" = -ENOMEM");
David Howells08e0e7c2007-04-26 15:55:03 -0700254 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 }
256
David Howells08e0e7c2007-04-26 15:55:03 -0700257 _debug("GOT INODE %p { vl=%x vn=%x, u=%x }",
258 inode, fid->vid, fid->vnode, fid->unique);
259
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260 vnode = AFS_FS_I(inode);
261
262 /* deal with an existing inode */
263 if (!(inode->i_state & I_NEW)) {
David Howells08e0e7c2007-04-26 15:55:03 -0700264 _leave(" = %p", inode);
265 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266 }
267
David Howells260a9802007-04-26 15:59:35 -0700268 if (!status) {
269 /* it's a remotely extant inode */
David Howellsd2ddc772017-11-02 15:27:50 +0000270 ret = afs_fetch_status(vnode, key);
David Howells260a9802007-04-26 15:59:35 -0700271 if (ret < 0)
272 goto bad_inode;
273 } else {
274 /* it's an inode we just created */
275 memcpy(&vnode->status, status, sizeof(vnode->status));
276
277 if (!cb) {
278 /* it's a symlink we just created (the fileserver
279 * didn't give us a callback) */
280 vnode->cb_version = 0;
David Howells260a9802007-04-26 15:59:35 -0700281 vnode->cb_type = 0;
David Howellsc435ee32017-11-02 15:27:49 +0000282 vnode->cb_expires_at = 0;
David Howells260a9802007-04-26 15:59:35 -0700283 } else {
284 vnode->cb_version = cb->version;
David Howells260a9802007-04-26 15:59:35 -0700285 vnode->cb_type = cb->type;
David Howellsc435ee32017-11-02 15:27:49 +0000286 vnode->cb_expires_at = cb->expiry;
David Howellsd2ddc772017-11-02 15:27:50 +0000287 vnode->cb_interest = afs_get_cb_interest(cbi);
David Howellsc435ee32017-11-02 15:27:49 +0000288 set_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
David Howells260a9802007-04-26 15:59:35 -0700289 }
David Howellsc435ee32017-11-02 15:27:49 +0000290
291 vnode->cb_expires_at += ktime_get_real_seconds();
David Howells260a9802007-04-26 15:59:35 -0700292 }
293
David Howells9b3f26c2009-04-03 16:42:41 +0100294 /* set up caching before mapping the status, as map-status reads the
295 * first page of symlinks to see if they're really mountpoints */
296 inode->i_size = vnode->status.size;
297#ifdef CONFIG_AFS_FSCACHE
298 vnode->cache = fscache_acquire_cookie(vnode->volume->cache,
299 &afs_vnode_cache_index_def,
David Howells94d30ae2013-09-21 00:09:31 +0100300 vnode, true);
David Howells9b3f26c2009-04-03 16:42:41 +0100301#endif
302
David Howells00d3b7a2007-04-26 15:57:07 -0700303 ret = afs_inode_map_status(vnode, key);
David Howells08e0e7c2007-04-26 15:55:03 -0700304 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 goto bad_inode;
306
307 /* success */
David Howells260a9802007-04-26 15:59:35 -0700308 clear_bit(AFS_VNODE_UNSET, &vnode->flags);
David Howells08e0e7c2007-04-26 15:55:03 -0700309 inode->i_flags |= S_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 unlock_new_inode(inode);
David Howells08e0e7c2007-04-26 15:55:03 -0700311 _leave(" = %p [CB { v=%u t=%u }]", inode, vnode->cb_version, vnode->cb_type);
312 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313
314 /* failure */
David Howellsec268152007-04-26 15:49:28 -0700315bad_inode:
David Howells9b3f26c2009-04-03 16:42:41 +0100316#ifdef CONFIG_AFS_FSCACHE
317 fscache_relinquish_cookie(vnode->cache, 0);
318 vnode->cache = NULL;
319#endif
David Howellsaa7fa242008-02-07 00:15:28 -0800320 iget_failed(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 _leave(" = %d [bad]", ret);
David Howells08e0e7c2007-04-26 15:55:03 -0700322 return ERR_PTR(ret);
David Howellsec268152007-04-26 15:49:28 -0700323}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325/*
David Howells416351f2007-05-09 02:33:45 -0700326 * mark the data attached to an inode as obsolete due to a write on the server
327 * - might also want to ditch all the outstanding writes and dirty pages
328 */
329void afs_zap_data(struct afs_vnode *vnode)
330{
David Howells0f300ca2007-05-10 22:22:20 -0700331 _enter("{%x:%u}", vnode->fid.vid, vnode->fid.vnode);
David Howells416351f2007-05-09 02:33:45 -0700332
333 /* nuke all the non-dirty pages that aren't locked, mapped or being
David Howells0f300ca2007-05-10 22:22:20 -0700334 * written back in a regular file and completely discard the pages in a
335 * directory or symlink */
336 if (S_ISREG(vnode->vfs_inode.i_mode))
337 invalidate_remote_inode(&vnode->vfs_inode);
338 else
339 invalidate_inode_pages2(vnode->vfs_inode.i_mapping);
David Howells416351f2007-05-09 02:33:45 -0700340}
341
342/*
David Howells260a9802007-04-26 15:59:35 -0700343 * validate a vnode/inode
344 * - there are several things we need to check
345 * - parent dir data changes (rm, rmdir, rename, mkdir, create, link,
346 * symlink)
347 * - parent dir metadata changed (security changes)
348 * - dentry data changed (write, truncate)
349 * - dentry metadata changed (security changes)
350 */
351int afs_validate(struct afs_vnode *vnode, struct key *key)
352{
David Howellsc435ee32017-11-02 15:27:49 +0000353 time64_t now = ktime_get_real_seconds();
354 bool valid = false;
David Howells260a9802007-04-26 15:59:35 -0700355 int ret;
356
357 _enter("{v={%x:%u} fl=%lx},%x",
358 vnode->fid.vid, vnode->fid.vnode, vnode->flags,
359 key_serial(key));
360
David Howellsc435ee32017-11-02 15:27:49 +0000361 /* Quickly check the callback state. Ideally, we'd use read_seqbegin
362 * here, but we have no way to pass the net namespace to the RCU
363 * cleanup for the server record.
364 */
365 read_seqlock_excl(&vnode->cb_lock);
366
367 if (test_bit(AFS_VNODE_CB_PROMISED, &vnode->flags)) {
368 if (vnode->cb_s_break != vnode->cb_interest->server->cb_s_break) {
369 vnode->cb_s_break = vnode->cb_interest->server->cb_s_break;
370 } else if (!test_bit(AFS_VNODE_DIR_MODIFIED, &vnode->flags) &&
371 !test_bit(AFS_VNODE_ZAP_DATA, &vnode->flags) &&
372 vnode->cb_expires_at - 10 > now) {
373 valid = true;
David Howells260a9802007-04-26 15:59:35 -0700374 }
David Howellsc435ee32017-11-02 15:27:49 +0000375 } else if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
376 valid = true;
David Howells260a9802007-04-26 15:59:35 -0700377 }
378
David Howellsc435ee32017-11-02 15:27:49 +0000379 read_sequnlock_excl(&vnode->cb_lock);
380 if (valid)
David Howells260a9802007-04-26 15:59:35 -0700381 goto valid;
382
383 mutex_lock(&vnode->validate_lock);
384
385 /* if the promise has expired, we need to check the server again to get
386 * a new promise - note that if the (parent) directory's metadata was
387 * changed then the security may be different and we may no longer have
388 * access */
David Howellsc435ee32017-11-02 15:27:49 +0000389 if (!test_bit(AFS_VNODE_CB_PROMISED, &vnode->flags)) {
David Howells260a9802007-04-26 15:59:35 -0700390 _debug("not promised");
David Howellsd2ddc772017-11-02 15:27:50 +0000391 ret = afs_fetch_status(vnode, key);
David Howellsc435ee32017-11-02 15:27:49 +0000392 if (ret < 0) {
393 if (ret == -ENOENT) {
394 set_bit(AFS_VNODE_DELETED, &vnode->flags);
395 ret = -ESTALE;
396 }
David Howells260a9802007-04-26 15:59:35 -0700397 goto error_unlock;
David Howellsc435ee32017-11-02 15:27:49 +0000398 }
David Howells260a9802007-04-26 15:59:35 -0700399 _debug("new promise [fl=%lx]", vnode->flags);
400 }
401
402 if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
403 _debug("file already deleted");
404 ret = -ESTALE;
405 goto error_unlock;
406 }
407
408 /* if the vnode's data version number changed then its contents are
409 * different */
David Howells416351f2007-05-09 02:33:45 -0700410 if (test_and_clear_bit(AFS_VNODE_ZAP_DATA, &vnode->flags))
411 afs_zap_data(vnode);
David Howells260a9802007-04-26 15:59:35 -0700412
David Howellsc435ee32017-11-02 15:27:49 +0000413 clear_bit(AFS_VNODE_DIR_MODIFIED, &vnode->flags);
David Howells260a9802007-04-26 15:59:35 -0700414 mutex_unlock(&vnode->validate_lock);
415valid:
416 _leave(" = 0");
417 return 0;
418
419error_unlock:
420 mutex_unlock(&vnode->validate_lock);
421 _leave(" = %d", ret);
422 return ret;
423}
424
425/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 * read the attributes of an inode
427 */
David Howellsa528d352017-01-31 16:46:22 +0000428int afs_getattr(const struct path *path, struct kstat *stat,
429 u32 request_mask, unsigned int query_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
David Howellsa528d352017-01-31 16:46:22 +0000431 struct inode *inode = d_inode(path->dentry);
David Howellsc435ee32017-11-02 15:27:49 +0000432 struct afs_vnode *vnode = AFS_FS_I(inode);
433 int seq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434
David Howellsd6e43f72011-06-14 00:45:44 +0100435 _enter("{ ino=%lu v=%u }", inode->i_ino, inode->i_generation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436
David Howellsc435ee32017-11-02 15:27:49 +0000437 do {
438 read_seqbegin_or_lock(&vnode->cb_lock, &seq);
439 generic_fillattr(inode, stat);
440 } while (need_seqretry(&vnode->cb_lock, seq));
441
442 done_seqretry(&vnode->cb_lock, seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443 return 0;
David Howellsec268152007-04-26 15:49:28 -0700444}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446/*
wangleibec5eb62010-08-11 09:38:04 +0100447 * discard an AFS inode
448 */
449int afs_drop_inode(struct inode *inode)
450{
451 _enter("");
452
453 if (test_bit(AFS_VNODE_PSEUDODIR, &AFS_FS_I(inode)->flags))
454 return generic_delete_inode(inode);
455 else
456 return generic_drop_inode(inode);
457}
458
459/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 * clear an AFS inode
461 */
Al Virob57922d2010-06-07 14:34:48 -0400462void afs_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463{
464 struct afs_vnode *vnode;
465
466 vnode = AFS_FS_I(inode);
467
David Howellsc435ee32017-11-02 15:27:49 +0000468 _enter("{%x:%u.%d}",
David Howells260a9802007-04-26 15:59:35 -0700469 vnode->fid.vid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 vnode->fid.vnode,
David Howellsc435ee32017-11-02 15:27:49 +0000471 vnode->fid.unique);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472
David Howells08e0e7c2007-04-26 15:55:03 -0700473 _debug("CLEAR INODE %p", inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474
David Howells08e0e7c2007-04-26 15:55:03 -0700475 ASSERTCMP(inode->i_ino, ==, vnode->fid.vnode);
476
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700477 truncate_inode_pages_final(&inode->i_data);
Jan Karadbd57682012-05-03 14:48:02 +0200478 clear_inode(inode);
Al Virob57922d2010-06-07 14:34:48 -0400479
David Howellsc435ee32017-11-02 15:27:49 +0000480 if (vnode->cb_interest) {
481 afs_put_cb_interest(afs_i2net(inode), vnode->cb_interest);
482 vnode->cb_interest = NULL;
David Howells08e0e7c2007-04-26 15:55:03 -0700483 }
484
David Howells31143d52007-05-09 02:33:46 -0700485 ASSERT(list_empty(&vnode->writebacks));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486
David Howells9b3f26c2009-04-03 16:42:41 +0100487#ifdef CONFIG_AFS_FSCACHE
488 fscache_relinquish_cookie(vnode->cache, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489 vnode->cache = NULL;
490#endif
491
David Howellsbe080a62017-11-02 15:27:49 +0000492 afs_put_permits(vnode->permit_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700494}
David Howells31143d52007-05-09 02:33:46 -0700495
496/*
497 * set the attributes of an inode
498 */
499int afs_setattr(struct dentry *dentry, struct iattr *attr)
500{
David Howellsd2ddc772017-11-02 15:27:50 +0000501 struct afs_fs_cursor fc;
David Howells2b0143b2015-03-17 22:25:59 +0000502 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
David Howells31143d52007-05-09 02:33:46 -0700503 struct key *key;
504 int ret;
505
Al Viroa4555892014-10-21 20:11:25 -0400506 _enter("{%x:%u},{n=%pd},%x",
507 vnode->fid.vid, vnode->fid.vnode, dentry,
David Howells31143d52007-05-09 02:33:46 -0700508 attr->ia_valid);
509
510 if (!(attr->ia_valid & (ATTR_SIZE | ATTR_MODE | ATTR_UID | ATTR_GID |
511 ATTR_MTIME))) {
512 _leave(" = 0 [unsupported]");
513 return 0;
514 }
515
516 /* flush any dirty data outstanding on a regular file */
517 if (S_ISREG(vnode->vfs_inode.i_mode)) {
518 filemap_write_and_wait(vnode->vfs_inode.i_mapping);
519 afs_writeback_all(vnode);
520 }
521
522 if (attr->ia_valid & ATTR_FILE) {
523 key = attr->ia_file->private_data;
524 } else {
525 key = afs_request_key(vnode->volume->cell);
526 if (IS_ERR(key)) {
527 ret = PTR_ERR(key);
528 goto error;
529 }
530 }
531
David Howellsd2ddc772017-11-02 15:27:50 +0000532 ret = -ERESTARTSYS;
533 if (afs_begin_vnode_operation(&fc, vnode, key)) {
534 while (afs_select_fileserver(&fc)) {
535 fc.cb_break = vnode->cb_break + vnode->cb_s_break;
536 afs_fs_setattr(&fc, attr);
537 }
538
539 afs_check_for_remote_deletion(&fc, fc.vnode);
540 afs_vnode_commit_status(&fc, vnode, fc.cb_break);
541 ret = afs_end_vnode_operation(&fc);
542 }
543
David Howells31143d52007-05-09 02:33:46 -0700544 if (!(attr->ia_valid & ATTR_FILE))
545 key_put(key);
546
547error:
548 _leave(" = %d", ret);
549 return ret;
550}