blob: ee86d5ad22d1dc4e532e7d5abf08ff3227d0ca36 [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/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 * iget5() comparator
106 */
David Howellsc435ee32017-11-02 15:27:49 +0000107int afs_iget5_test(struct inode *inode, void *opaque)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108{
109 struct afs_iget_data *data = opaque;
110
111 return inode->i_ino == data->fid.vnode &&
David Howellsd6e43f72011-06-14 00:45:44 +0100112 inode->i_generation == data->fid.unique;
David Howellsec268152007-04-26 15:49:28 -0700113}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115/*
wangleibec5eb62010-08-11 09:38:04 +0100116 * iget5() comparator for inode created by autocell operations
117 *
118 * These pseudo inodes don't match anything.
119 */
120static int afs_iget5_autocell_test(struct inode *inode, void *opaque)
121{
122 return 0;
123}
124
125/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 * iget5() inode initialiser
127 */
128static int afs_iget5_set(struct inode *inode, void *opaque)
129{
130 struct afs_iget_data *data = opaque;
131 struct afs_vnode *vnode = AFS_FS_I(inode);
132
133 inode->i_ino = data->fid.vnode;
David Howellsd6e43f72011-06-14 00:45:44 +0100134 inode->i_generation = data->fid.unique;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135 vnode->fid = data->fid;
136 vnode->volume = data->volume;
137
138 return 0;
David Howellsec268152007-04-26 15:49:28 -0700139}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141/*
wangleibec5eb62010-08-11 09:38:04 +0100142 * inode retrieval for autocell
143 */
144struct inode *afs_iget_autocell(struct inode *dir, const char *dev_name,
145 int namesz, struct key *key)
146{
147 struct afs_iget_data data;
148 struct afs_super_info *as;
149 struct afs_vnode *vnode;
150 struct super_block *sb;
151 struct inode *inode;
152 static atomic_t afs_autocell_ino;
153
154 _enter("{%x:%u},%*.*s,",
155 AFS_FS_I(dir)->fid.vid, AFS_FS_I(dir)->fid.vnode,
156 namesz, namesz, dev_name ?: "");
157
158 sb = dir->i_sb;
159 as = sb->s_fs_info;
160 data.volume = as->volume;
161 data.fid.vid = as->volume->vid;
162 data.fid.unique = 0;
163 data.fid.vnode = 0;
164
165 inode = iget5_locked(sb, atomic_inc_return(&afs_autocell_ino),
166 afs_iget5_autocell_test, afs_iget5_set,
167 &data);
168 if (!inode) {
169 _leave(" = -ENOMEM");
170 return ERR_PTR(-ENOMEM);
171 }
172
173 _debug("GOT INODE %p { ino=%lu, vl=%x, vn=%x, u=%x }",
174 inode, inode->i_ino, data.fid.vid, data.fid.vnode,
175 data.fid.unique);
176
177 vnode = AFS_FS_I(inode);
178
179 /* there shouldn't be an existing inode */
180 BUG_ON(!(inode->i_state & I_NEW));
181
182 inode->i_size = 0;
183 inode->i_mode = S_IFDIR | S_IRUGO | S_IXUGO;
184 inode->i_op = &afs_autocell_inode_operations;
Miklos Szeredibfe86842011-10-28 14:13:29 +0200185 set_nlink(inode, 2);
Eric W. Biedermana0a53862012-02-07 16:20:48 -0800186 inode->i_uid = GLOBAL_ROOT_UID;
187 inode->i_gid = GLOBAL_ROOT_GID;
wangleibec5eb62010-08-11 09:38:04 +0100188 inode->i_ctime.tv_sec = get_seconds();
189 inode->i_ctime.tv_nsec = 0;
190 inode->i_atime = inode->i_mtime = inode->i_ctime;
191 inode->i_blocks = 0;
192 inode->i_version = 0;
193 inode->i_generation = 0;
194
195 set_bit(AFS_VNODE_PSEUDODIR, &vnode->flags);
David Howellsd18610b2011-01-14 19:04:05 +0000196 set_bit(AFS_VNODE_MOUNTPOINT, &vnode->flags);
197 inode->i_flags |= S_AUTOMOUNT | S_NOATIME;
wangleibec5eb62010-08-11 09:38:04 +0100198 unlock_new_inode(inode);
199 _leave(" = %p", inode);
200 return inode;
201}
202
203/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204 * inode retrieval
205 */
David Howells260a9802007-04-26 15:59:35 -0700206struct inode *afs_iget(struct super_block *sb, struct key *key,
207 struct afs_fid *fid, struct afs_file_status *status,
208 struct afs_callback *cb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210 struct afs_iget_data data = { .fid = *fid };
211 struct afs_super_info *as;
212 struct afs_vnode *vnode;
213 struct inode *inode;
214 int ret;
215
David Howells416351f2007-05-09 02:33:45 -0700216 _enter(",{%x:%u.%u},,", fid->vid, fid->vnode, fid->unique);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218 as = sb->s_fs_info;
219 data.volume = as->volume;
220
221 inode = iget5_locked(sb, fid->vnode, afs_iget5_test, afs_iget5_set,
222 &data);
223 if (!inode) {
224 _leave(" = -ENOMEM");
David Howells08e0e7c2007-04-26 15:55:03 -0700225 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
227
David Howells08e0e7c2007-04-26 15:55:03 -0700228 _debug("GOT INODE %p { vl=%x vn=%x, u=%x }",
229 inode, fid->vid, fid->vnode, fid->unique);
230
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231 vnode = AFS_FS_I(inode);
232
233 /* deal with an existing inode */
234 if (!(inode->i_state & I_NEW)) {
David Howells08e0e7c2007-04-26 15:55:03 -0700235 _leave(" = %p", inode);
236 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 }
238
David Howells260a9802007-04-26 15:59:35 -0700239 if (!status) {
240 /* it's a remotely extant inode */
David Howellsbe080a62017-11-02 15:27:49 +0000241 ret = afs_vnode_fetch_status(vnode, key, true);
David Howells260a9802007-04-26 15:59:35 -0700242 if (ret < 0)
243 goto bad_inode;
244 } else {
245 /* it's an inode we just created */
246 memcpy(&vnode->status, status, sizeof(vnode->status));
247
248 if (!cb) {
249 /* it's a symlink we just created (the fileserver
250 * didn't give us a callback) */
251 vnode->cb_version = 0;
David Howells260a9802007-04-26 15:59:35 -0700252 vnode->cb_type = 0;
David Howellsc435ee32017-11-02 15:27:49 +0000253 vnode->cb_expires_at = 0;
David Howells260a9802007-04-26 15:59:35 -0700254 } else {
255 vnode->cb_version = cb->version;
David Howells260a9802007-04-26 15:59:35 -0700256 vnode->cb_type = cb->type;
David Howellsc435ee32017-11-02 15:27:49 +0000257 vnode->cb_expires_at = cb->expiry;
258 set_bit(AFS_VNODE_CB_PROMISED, &vnode->flags);
David Howells260a9802007-04-26 15:59:35 -0700259 }
David Howellsc435ee32017-11-02 15:27:49 +0000260
261 vnode->cb_expires_at += ktime_get_real_seconds();
David Howells260a9802007-04-26 15:59:35 -0700262 }
263
David Howells9b3f26c2009-04-03 16:42:41 +0100264 /* set up caching before mapping the status, as map-status reads the
265 * first page of symlinks to see if they're really mountpoints */
266 inode->i_size = vnode->status.size;
267#ifdef CONFIG_AFS_FSCACHE
268 vnode->cache = fscache_acquire_cookie(vnode->volume->cache,
269 &afs_vnode_cache_index_def,
David Howells94d30ae2013-09-21 00:09:31 +0100270 vnode, true);
David Howells9b3f26c2009-04-03 16:42:41 +0100271#endif
272
David Howells00d3b7a2007-04-26 15:57:07 -0700273 ret = afs_inode_map_status(vnode, key);
David Howells08e0e7c2007-04-26 15:55:03 -0700274 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 goto bad_inode;
276
277 /* success */
David Howells260a9802007-04-26 15:59:35 -0700278 clear_bit(AFS_VNODE_UNSET, &vnode->flags);
David Howells08e0e7c2007-04-26 15:55:03 -0700279 inode->i_flags |= S_NOATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280 unlock_new_inode(inode);
David Howells08e0e7c2007-04-26 15:55:03 -0700281 _leave(" = %p [CB { v=%u t=%u }]", inode, vnode->cb_version, vnode->cb_type);
282 return inode;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283
284 /* failure */
David Howellsec268152007-04-26 15:49:28 -0700285bad_inode:
David Howells9b3f26c2009-04-03 16:42:41 +0100286#ifdef CONFIG_AFS_FSCACHE
287 fscache_relinquish_cookie(vnode->cache, 0);
288 vnode->cache = NULL;
289#endif
David Howellsaa7fa242008-02-07 00:15:28 -0800290 iget_failed(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 _leave(" = %d [bad]", ret);
David Howells08e0e7c2007-04-26 15:55:03 -0700292 return ERR_PTR(ret);
David Howellsec268152007-04-26 15:49:28 -0700293}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295/*
David Howells416351f2007-05-09 02:33:45 -0700296 * mark the data attached to an inode as obsolete due to a write on the server
297 * - might also want to ditch all the outstanding writes and dirty pages
298 */
299void afs_zap_data(struct afs_vnode *vnode)
300{
David Howells0f300ca2007-05-10 22:22:20 -0700301 _enter("{%x:%u}", vnode->fid.vid, vnode->fid.vnode);
David Howells416351f2007-05-09 02:33:45 -0700302
303 /* nuke all the non-dirty pages that aren't locked, mapped or being
David Howells0f300ca2007-05-10 22:22:20 -0700304 * written back in a regular file and completely discard the pages in a
305 * directory or symlink */
306 if (S_ISREG(vnode->vfs_inode.i_mode))
307 invalidate_remote_inode(&vnode->vfs_inode);
308 else
309 invalidate_inode_pages2(vnode->vfs_inode.i_mapping);
David Howells416351f2007-05-09 02:33:45 -0700310}
311
312/*
David Howells260a9802007-04-26 15:59:35 -0700313 * validate a vnode/inode
314 * - there are several things we need to check
315 * - parent dir data changes (rm, rmdir, rename, mkdir, create, link,
316 * symlink)
317 * - parent dir metadata changed (security changes)
318 * - dentry data changed (write, truncate)
319 * - dentry metadata changed (security changes)
320 */
321int afs_validate(struct afs_vnode *vnode, struct key *key)
322{
David Howellsc435ee32017-11-02 15:27:49 +0000323 time64_t now = ktime_get_real_seconds();
324 bool valid = false;
David Howells260a9802007-04-26 15:59:35 -0700325 int ret;
326
327 _enter("{v={%x:%u} fl=%lx},%x",
328 vnode->fid.vid, vnode->fid.vnode, vnode->flags,
329 key_serial(key));
330
David Howellsc435ee32017-11-02 15:27:49 +0000331 /* Quickly check the callback state. Ideally, we'd use read_seqbegin
332 * here, but we have no way to pass the net namespace to the RCU
333 * cleanup for the server record.
334 */
335 read_seqlock_excl(&vnode->cb_lock);
336
337 if (test_bit(AFS_VNODE_CB_PROMISED, &vnode->flags)) {
338 if (vnode->cb_s_break != vnode->cb_interest->server->cb_s_break) {
339 vnode->cb_s_break = vnode->cb_interest->server->cb_s_break;
340 } else if (!test_bit(AFS_VNODE_DIR_MODIFIED, &vnode->flags) &&
341 !test_bit(AFS_VNODE_ZAP_DATA, &vnode->flags) &&
342 vnode->cb_expires_at - 10 > now) {
343 valid = true;
David Howells260a9802007-04-26 15:59:35 -0700344 }
David Howellsc435ee32017-11-02 15:27:49 +0000345 } else if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
346 valid = true;
David Howells260a9802007-04-26 15:59:35 -0700347 }
348
David Howellsc435ee32017-11-02 15:27:49 +0000349 read_sequnlock_excl(&vnode->cb_lock);
350 if (valid)
David Howells260a9802007-04-26 15:59:35 -0700351 goto valid;
352
353 mutex_lock(&vnode->validate_lock);
354
355 /* if the promise has expired, we need to check the server again to get
356 * a new promise - note that if the (parent) directory's metadata was
357 * changed then the security may be different and we may no longer have
358 * access */
David Howellsc435ee32017-11-02 15:27:49 +0000359 if (!test_bit(AFS_VNODE_CB_PROMISED, &vnode->flags)) {
David Howells260a9802007-04-26 15:59:35 -0700360 _debug("not promised");
David Howellsbe080a62017-11-02 15:27:49 +0000361 ret = afs_vnode_fetch_status(vnode, key, false);
David Howellsc435ee32017-11-02 15:27:49 +0000362 if (ret < 0) {
363 if (ret == -ENOENT) {
364 set_bit(AFS_VNODE_DELETED, &vnode->flags);
365 ret = -ESTALE;
366 }
David Howells260a9802007-04-26 15:59:35 -0700367 goto error_unlock;
David Howellsc435ee32017-11-02 15:27:49 +0000368 }
David Howells260a9802007-04-26 15:59:35 -0700369 _debug("new promise [fl=%lx]", vnode->flags);
370 }
371
372 if (test_bit(AFS_VNODE_DELETED, &vnode->flags)) {
373 _debug("file already deleted");
374 ret = -ESTALE;
375 goto error_unlock;
376 }
377
378 /* if the vnode's data version number changed then its contents are
379 * different */
David Howells416351f2007-05-09 02:33:45 -0700380 if (test_and_clear_bit(AFS_VNODE_ZAP_DATA, &vnode->flags))
381 afs_zap_data(vnode);
David Howells260a9802007-04-26 15:59:35 -0700382
David Howellsc435ee32017-11-02 15:27:49 +0000383 clear_bit(AFS_VNODE_DIR_MODIFIED, &vnode->flags);
David Howells260a9802007-04-26 15:59:35 -0700384 mutex_unlock(&vnode->validate_lock);
385valid:
386 _leave(" = 0");
387 return 0;
388
389error_unlock:
390 mutex_unlock(&vnode->validate_lock);
391 _leave(" = %d", ret);
392 return ret;
393}
394
395/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396 * read the attributes of an inode
397 */
David Howellsa528d352017-01-31 16:46:22 +0000398int afs_getattr(const struct path *path, struct kstat *stat,
399 u32 request_mask, unsigned int query_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400{
David Howellsa528d352017-01-31 16:46:22 +0000401 struct inode *inode = d_inode(path->dentry);
David Howellsc435ee32017-11-02 15:27:49 +0000402 struct afs_vnode *vnode = AFS_FS_I(inode);
403 int seq = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404
David Howellsd6e43f72011-06-14 00:45:44 +0100405 _enter("{ ino=%lu v=%u }", inode->i_ino, inode->i_generation);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406
David Howellsc435ee32017-11-02 15:27:49 +0000407 do {
408 read_seqbegin_or_lock(&vnode->cb_lock, &seq);
409 generic_fillattr(inode, stat);
410 } while (need_seqretry(&vnode->cb_lock, seq));
411
412 done_seqretry(&vnode->cb_lock, seq);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return 0;
David Howellsec268152007-04-26 15:49:28 -0700414}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416/*
wangleibec5eb62010-08-11 09:38:04 +0100417 * discard an AFS inode
418 */
419int afs_drop_inode(struct inode *inode)
420{
421 _enter("");
422
423 if (test_bit(AFS_VNODE_PSEUDODIR, &AFS_FS_I(inode)->flags))
424 return generic_delete_inode(inode);
425 else
426 return generic_drop_inode(inode);
427}
428
429/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430 * clear an AFS inode
431 */
Al Virob57922d2010-06-07 14:34:48 -0400432void afs_evict_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 struct afs_vnode *vnode;
435
436 vnode = AFS_FS_I(inode);
437
David Howellsc435ee32017-11-02 15:27:49 +0000438 _enter("{%x:%u.%d}",
David Howells260a9802007-04-26 15:59:35 -0700439 vnode->fid.vid,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 vnode->fid.vnode,
David Howellsc435ee32017-11-02 15:27:49 +0000441 vnode->fid.unique);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
David Howells08e0e7c2007-04-26 15:55:03 -0700443 _debug("CLEAR INODE %p", inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
David Howells08e0e7c2007-04-26 15:55:03 -0700445 ASSERTCMP(inode->i_ino, ==, vnode->fid.vnode);
446
Johannes Weiner91b0abe2014-04-03 14:47:49 -0700447 truncate_inode_pages_final(&inode->i_data);
Jan Karadbd57682012-05-03 14:48:02 +0200448 clear_inode(inode);
Al Virob57922d2010-06-07 14:34:48 -0400449
David Howellsc435ee32017-11-02 15:27:49 +0000450 if (vnode->cb_interest) {
451 afs_put_cb_interest(afs_i2net(inode), vnode->cb_interest);
452 vnode->cb_interest = NULL;
David Howells08e0e7c2007-04-26 15:55:03 -0700453 }
454
David Howells31143d52007-05-09 02:33:46 -0700455 ASSERT(list_empty(&vnode->writebacks));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
David Howells9b3f26c2009-04-03 16:42:41 +0100457#ifdef CONFIG_AFS_FSCACHE
458 fscache_relinquish_cookie(vnode->cache, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 vnode->cache = NULL;
460#endif
461
David Howellsbe080a62017-11-02 15:27:49 +0000462 afs_put_permits(vnode->permit_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 _leave("");
David Howellsec268152007-04-26 15:49:28 -0700464}
David Howells31143d52007-05-09 02:33:46 -0700465
466/*
467 * set the attributes of an inode
468 */
469int afs_setattr(struct dentry *dentry, struct iattr *attr)
470{
David Howells2b0143b2015-03-17 22:25:59 +0000471 struct afs_vnode *vnode = AFS_FS_I(d_inode(dentry));
David Howells31143d52007-05-09 02:33:46 -0700472 struct key *key;
473 int ret;
474
Al Viroa4555892014-10-21 20:11:25 -0400475 _enter("{%x:%u},{n=%pd},%x",
476 vnode->fid.vid, vnode->fid.vnode, dentry,
David Howells31143d52007-05-09 02:33:46 -0700477 attr->ia_valid);
478
479 if (!(attr->ia_valid & (ATTR_SIZE | ATTR_MODE | ATTR_UID | ATTR_GID |
480 ATTR_MTIME))) {
481 _leave(" = 0 [unsupported]");
482 return 0;
483 }
484
485 /* flush any dirty data outstanding on a regular file */
486 if (S_ISREG(vnode->vfs_inode.i_mode)) {
487 filemap_write_and_wait(vnode->vfs_inode.i_mapping);
488 afs_writeback_all(vnode);
489 }
490
491 if (attr->ia_valid & ATTR_FILE) {
492 key = attr->ia_file->private_data;
493 } else {
494 key = afs_request_key(vnode->volume->cell);
495 if (IS_ERR(key)) {
496 ret = PTR_ERR(key);
497 goto error;
498 }
499 }
500
501 ret = afs_vnode_setattr(vnode, key, attr);
502 if (!(attr->ia_valid & ATTR_FILE))
503 key_put(key);
504
505error:
506 _leave(" = %d", ret);
507 return ret;
508}