Merge branch 'linus' into timers/core
[deliverable/linux.git] / fs / nfs / inode.c
CommitLineData
1da177e4
LT
1/*
2 * linux/fs/nfs/inode.c
3 *
4 * Copyright (C) 1992 Rick Sladkey
5 *
6 * nfs inode and superblock handling functions
7 *
526719ba 8 * Modularised by Alan Cox <alan@lxorguk.ukuu.org.uk>, while hacking some
1da177e4
LT
9 * experimental NFS changes. Modularisation taken straight from SYS5 fs.
10 *
11 * Change to nfs_read_super() to permit NFS mounts to multi-homed hosts.
12 * J.S.Peatfield@damtp.cam.ac.uk
13 *
14 */
15
1da177e4
LT
16#include <linux/module.h>
17#include <linux/init.h>
e8edc6e0 18#include <linux/sched.h>
1da177e4
LT
19#include <linux/time.h>
20#include <linux/kernel.h>
21#include <linux/mm.h>
22#include <linux/string.h>
23#include <linux/stat.h>
24#include <linux/errno.h>
25#include <linux/unistd.h>
26#include <linux/sunrpc/clnt.h>
27#include <linux/sunrpc/stats.h>
4ece3a2d 28#include <linux/sunrpc/metrics.h>
1da177e4
LT
29#include <linux/nfs_fs.h>
30#include <linux/nfs_mount.h>
31#include <linux/nfs4_mount.h>
32#include <linux/lockd/bind.h>
1da177e4
LT
33#include <linux/seq_file.h>
34#include <linux/mount.h>
1da177e4 35#include <linux/vfs.h>
9cdb3883
MN
36#include <linux/inet.h>
37#include <linux/nfs_xdr.h>
5a0e3ad6 38#include <linux/slab.h>
3fa0b4e2 39#include <linux/compat.h>
d310310c 40#include <linux/freezer.h>
d8e0539e 41#include <linux/crc32.h>
1da177e4 42
1da177e4
LT
43#include <asm/uaccess.h>
44
4ce79717 45#include "nfs4_fs.h"
a72b4422 46#include "callback.h"
1da177e4 47#include "delegation.h"
d9ef5a8c 48#include "iostat.h"
f7b422b1 49#include "internal.h"
8ec442ae 50#include "fscache.h"
e5e94017 51#include "pnfs.h"
ab7017a3 52#include "nfs.h"
1b340d01 53#include "netns.h"
1da177e4
LT
54
55#define NFSDBG_FACILITY NFSDBG_VFS
1da177e4 56
f43bf0be
TM
57#define NFS_64_BIT_INODE_NUMBERS_ENABLED 1
58
59/* Default is to see 64-bit inode numbers */
90ab5ee9 60static bool enable_ino64 = NFS_64_BIT_INODE_NUMBERS_ENABLED;
f43bf0be 61
1da177e4 62static void nfs_invalidate_inode(struct inode *);
24aa1fe6 63static int nfs_update_inode(struct inode *, struct nfs_fattr *);
1da177e4 64
e18b890b 65static struct kmem_cache * nfs_inode_cachep;
b7fa0554 66
1da177e4
LT
67static inline unsigned long
68nfs_fattr_to_ino_t(struct nfs_fattr *fattr)
69{
70 return nfs_fileid_to_ino_t(fattr->fileid);
71}
72
72cb77f4
TM
73/**
74 * nfs_wait_bit_killable - helper for functions that are sleeping on bit locks
75 * @word: long word containing the bit lock
76 */
77int nfs_wait_bit_killable(void *word)
78{
79 if (fatal_signal_pending(current))
80 return -ERESTARTSYS;
416ad3c9 81 freezable_schedule_unsafe();
72cb77f4
TM
82 return 0;
83}
89d77c8f 84EXPORT_SYMBOL_GPL(nfs_wait_bit_killable);
72cb77f4 85
f43bf0be
TM
86/**
87 * nfs_compat_user_ino64 - returns the user-visible inode number
88 * @fileid: 64-bit fileid
89 *
90 * This function returns a 32-bit inode number if the boot parameter
91 * nfs.enable_ino64 is zero.
92 */
93u64 nfs_compat_user_ino64(u64 fileid)
94{
3fa0b4e2
FF
95#ifdef CONFIG_COMPAT
96 compat_ulong_t ino;
97#else
98 unsigned long ino;
99#endif
f43bf0be
TM
100
101 if (enable_ino64)
102 return fileid;
103 ino = fileid;
104 if (sizeof(ino) < sizeof(fileid))
105 ino ^= fileid >> (sizeof(fileid)-sizeof(ino)) * 8;
106 return ino;
107}
108
eed99357
TM
109int nfs_drop_inode(struct inode *inode)
110{
111 return NFS_STALE(inode) || generic_drop_inode(inode);
112}
113EXPORT_SYMBOL_GPL(nfs_drop_inode);
114
19d87ca3 115void nfs_clear_inode(struct inode *inode)
1da177e4 116{
da6d503a
TM
117 /*
118 * The following should never happen...
119 */
f48407dd
TM
120 WARN_ON_ONCE(nfs_have_writebacks(inode));
121 WARN_ON_ONCE(!list_empty(&NFS_I(inode)->open_files));
ada70d94 122 nfs_zap_acl_cache(inode);
1c3c07e9 123 nfs_access_zap_cache(inode);
ef79c097 124 nfs_fscache_release_inode_cookie(inode);
1da177e4 125}
89d77c8f 126EXPORT_SYMBOL_GPL(nfs_clear_inode);
1da177e4 127
b57922d9
AV
128void nfs_evict_inode(struct inode *inode)
129{
130 truncate_inode_pages(&inode->i_data, 0);
dbd5768f 131 clear_inode(inode);
b57922d9
AV
132 nfs_clear_inode(inode);
133}
134
29884df0
TM
135/**
136 * nfs_sync_mapping - helper to flush all mmapped dirty data to disk
137 */
138int nfs_sync_mapping(struct address_space *mapping)
139{
5cf95214 140 int ret = 0;
29884df0 141
5cf95214
TM
142 if (mapping->nrpages != 0) {
143 unmap_mapping_range(mapping, 0, 0, 0);
144 ret = nfs_wb_all(mapping->host);
145 }
29884df0
TM
146 return ret;
147}
148
1da177e4
LT
149/*
150 * Invalidate the local caches
151 */
b37b03b7 152static void nfs_zap_caches_locked(struct inode *inode)
1da177e4
LT
153{
154 struct nfs_inode *nfsi = NFS_I(inode);
155 int mode = inode->i_mode;
156
91d5b470
CL
157 nfs_inc_stats(inode, NFSIOS_ATTRINVALIDATE);
158
c7c20973
TM
159 nfsi->attrtimeo = NFS_MINATTRTIMEO(inode);
160 nfsi->attrtimeo_timestamp = jiffies;
1da177e4 161
c3f52af3 162 memset(NFS_I(inode)->cookieverf, 0, sizeof(NFS_I(inode)->cookieverf));
de242c0b 163 if (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode)) {
de242c0b 164 nfs_fscache_invalidate(inode);
aa9c2669
DQ
165 nfsi->cache_validity |= NFS_INO_INVALID_ATTR
166 | NFS_INO_INVALID_LABEL
167 | NFS_INO_INVALID_DATA
168 | NFS_INO_INVALID_ACCESS
169 | NFS_INO_INVALID_ACL
170 | NFS_INO_REVAL_PAGECACHE;
171 } else
172 nfsi->cache_validity |= NFS_INO_INVALID_ATTR
173 | NFS_INO_INVALID_LABEL
174 | NFS_INO_INVALID_ACCESS
175 | NFS_INO_INVALID_ACL
176 | NFS_INO_REVAL_PAGECACHE;
b37b03b7 177}
dc59250c 178
b37b03b7
TM
179void nfs_zap_caches(struct inode *inode)
180{
181 spin_lock(&inode->i_lock);
182 nfs_zap_caches_locked(inode);
dc59250c 183 spin_unlock(&inode->i_lock);
ada70d94
TM
184}
185
cd9ae2b6
TM
186void nfs_zap_mapping(struct inode *inode, struct address_space *mapping)
187{
188 if (mapping->nrpages != 0) {
189 spin_lock(&inode->i_lock);
190 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_DATA;
de242c0b 191 nfs_fscache_invalidate(inode);
cd9ae2b6
TM
192 spin_unlock(&inode->i_lock);
193 }
194}
195
f41f7418 196void nfs_zap_acl_cache(struct inode *inode)
ada70d94
TM
197{
198 void (*clear_acl_cache)(struct inode *);
199
200 clear_acl_cache = NFS_PROTO(inode)->clear_acl_cache;
201 if (clear_acl_cache != NULL)
202 clear_acl_cache(inode);
dc59250c 203 spin_lock(&inode->i_lock);
55296809 204 NFS_I(inode)->cache_validity &= ~NFS_INO_INVALID_ACL;
dc59250c 205 spin_unlock(&inode->i_lock);
1da177e4 206}
1c606fb7 207EXPORT_SYMBOL_GPL(nfs_zap_acl_cache);
1da177e4 208
c4812998
TM
209void nfs_invalidate_atime(struct inode *inode)
210{
211 spin_lock(&inode->i_lock);
212 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ATIME;
213 spin_unlock(&inode->i_lock);
214}
ddda8e0a 215EXPORT_SYMBOL_GPL(nfs_invalidate_atime);
c4812998 216
1da177e4 217/*
b37b03b7
TM
218 * Invalidate, but do not unhash, the inode.
219 * NB: must be called with inode->i_lock held!
1da177e4 220 */
b37b03b7 221static void nfs_invalidate_inode(struct inode *inode)
1da177e4 222{
3a10c30a 223 set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
b37b03b7 224 nfs_zap_caches_locked(inode);
1da177e4
LT
225}
226
227struct nfs_find_desc {
228 struct nfs_fh *fh;
229 struct nfs_fattr *fattr;
230};
231
232/*
233 * In NFSv3 we can have 64bit inode numbers. In order to support
234 * this, and re-exported directories (also seen in NFSv2)
235 * we are forced to allow 2 different inodes to have the same
236 * i_ino.
237 */
238static int
239nfs_find_actor(struct inode *inode, void *opaque)
240{
241 struct nfs_find_desc *desc = (struct nfs_find_desc *)opaque;
242 struct nfs_fh *fh = desc->fh;
243 struct nfs_fattr *fattr = desc->fattr;
244
245 if (NFS_FILEID(inode) != fattr->fileid)
246 return 0;
f6488c9b
JL
247 if ((S_IFMT & inode->i_mode) != (S_IFMT & fattr->mode))
248 return 0;
1da177e4
LT
249 if (nfs_compare_fh(NFS_FH(inode), fh))
250 return 0;
251 if (is_bad_inode(inode) || NFS_STALE(inode))
252 return 0;
253 return 1;
254}
255
256static int
257nfs_init_locked(struct inode *inode, void *opaque)
258{
259 struct nfs_find_desc *desc = (struct nfs_find_desc *)opaque;
260 struct nfs_fattr *fattr = desc->fattr;
261
99fadcd7 262 set_nfs_fileid(inode, fattr->fileid);
1da177e4
LT
263 nfs_copy_fh(NFS_FH(inode), desc->fh);
264 return 0;
265}
266
e058f70b 267#ifdef CONFIG_NFS_V4_SECURITY_LABEL
aa9c2669
DQ
268void nfs_setsecurity(struct inode *inode, struct nfs_fattr *fattr,
269 struct nfs4_label *label)
270{
271 int error;
272
273 if (label == NULL)
274 return;
275
276 if (nfs_server_capable(inode, NFS_CAP_SECURITY_LABEL) == 0)
277 return;
278
279 if (NFS_SERVER(inode)->nfs_client->cl_minorversion < 2)
280 return;
281
282 if ((fattr->valid & NFS_ATTR_FATTR_V4_SECURITY_LABEL) && inode->i_security) {
283 error = security_inode_notifysecctx(inode, label->label,
284 label->len);
285 if (error)
286 printk(KERN_ERR "%s() %s %d "
287 "security_inode_notifysecctx() %d\n",
288 __func__,
289 (char *)label->label,
290 label->len, error);
291 }
292}
293
e058f70b
SD
294struct nfs4_label *nfs4_label_alloc(struct nfs_server *server, gfp_t flags)
295{
296 struct nfs4_label *label = NULL;
297 int minor_version = server->nfs_client->cl_minorversion;
298
299 if (minor_version < 2)
300 return label;
301
302 if (!(server->caps & NFS_CAP_SECURITY_LABEL))
303 return label;
304
305 label = kzalloc(sizeof(struct nfs4_label), flags);
306 if (label == NULL)
307 return ERR_PTR(-ENOMEM);
308
309 label->label = kzalloc(NFS4_MAXLABELLEN, flags);
310 if (label->label == NULL) {
311 kfree(label);
312 return ERR_PTR(-ENOMEM);
313 }
314 label->len = NFS4_MAXLABELLEN;
315
316 return label;
317}
318EXPORT_SYMBOL_GPL(nfs4_label_alloc);
aa9c2669
DQ
319#else
320void inline nfs_setsecurity(struct inode *inode, struct nfs_fattr *fattr,
321 struct nfs4_label *label)
322{
323}
e058f70b 324#endif
aa9c2669 325EXPORT_SYMBOL_GPL(nfs_setsecurity);
e058f70b 326
1da177e4
LT
327/*
328 * This is our front-end to iget that looks up inodes by file handle
329 * instead of inode number.
330 */
331struct inode *
1775fd3e 332nfs_fhget(struct super_block *sb, struct nfs_fh *fh, struct nfs_fattr *fattr, struct nfs4_label *label)
1da177e4
LT
333{
334 struct nfs_find_desc desc = {
335 .fh = fh,
336 .fattr = fattr
337 };
03f28e3a 338 struct inode *inode = ERR_PTR(-ENOENT);
1da177e4
LT
339 unsigned long hash;
340
7ebb9315
BS
341 nfs_attr_check_mountpoint(sb, fattr);
342
533eb461
AA
343 if (((fattr->valid & NFS_ATTR_FATTR_FILEID) == 0) &&
344 !nfs_attr_use_mounted_on_fileid(fattr))
1da177e4 345 goto out_no_inode;
9e6e70f8 346 if ((fattr->valid & NFS_ATTR_FATTR_TYPE) == 0)
1da177e4 347 goto out_no_inode;
1da177e4
LT
348
349 hash = nfs_fattr_to_ino_t(fattr);
350
03f28e3a
TM
351 inode = iget5_locked(sb, hash, nfs_find_actor, nfs_init_locked, &desc);
352 if (inode == NULL) {
353 inode = ERR_PTR(-ENOMEM);
1da177e4 354 goto out_no_inode;
03f28e3a 355 }
1da177e4
LT
356
357 if (inode->i_state & I_NEW) {
358 struct nfs_inode *nfsi = NFS_I(inode);
b0c4fddc 359 unsigned long now = jiffies;
1da177e4
LT
360
361 /* We set i_ino for the few things that still rely on it,
362 * such as stat(2) */
363 inode->i_ino = hash;
364
365 /* We can't support update_atime(), since the server will reset it */
366 inode->i_flags |= S_NOATIME|S_NOCMTIME;
367 inode->i_mode = fattr->mode;
62ab460c
TM
368 if ((fattr->valid & NFS_ATTR_FATTR_MODE) == 0
369 && nfs_server_capable(inode, NFS_CAP_MODE))
4124bbc5 370 nfsi->cache_validity |= NFS_INO_INVALID_ATTR;
1da177e4
LT
371 /* Why so? Because we want revalidate for devices/FIFOs, and
372 * that's precisely what we have in nfs_file_inode_operations.
373 */
8fa5c000 374 inode->i_op = NFS_SB(sb)->nfs_client->rpc_ops->file_inode_ops;
1da177e4 375 if (S_ISREG(inode->i_mode)) {
1788ea6e 376 inode->i_fop = NFS_SB(sb)->nfs_client->rpc_ops->file_ops;
1da177e4
LT
377 inode->i_data.a_ops = &nfs_file_aops;
378 inode->i_data.backing_dev_info = &NFS_SB(sb)->backing_dev_info;
379 } else if (S_ISDIR(inode->i_mode)) {
8fa5c000 380 inode->i_op = NFS_SB(sb)->nfs_client->rpc_ops->dir_inode_ops;
1da177e4 381 inode->i_fop = &nfs_dir_operations;
11de3b11 382 inode->i_data.a_ops = &nfs_dir_aops;
55a97593 383 /* Deal with crossing mountpoints */
7ebb9315
BS
384 if (fattr->valid & NFS_ATTR_FATTR_MOUNTPOINT ||
385 fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL) {
6b97fd3d
MN
386 if (fattr->valid & NFS_ATTR_FATTR_V4_REFERRAL)
387 inode->i_op = &nfs_referral_inode_operations;
388 else
389 inode->i_op = &nfs_mountpoint_inode_operations;
55a97593 390 inode->i_fop = NULL;
36d43a43 391 inode->i_flags |= S_AUTOMOUNT;
55a97593 392 }
1da177e4
LT
393 } else if (S_ISLNK(inode->i_mode))
394 inode->i_op = &nfs_symlink_inode_operations;
395 else
396 init_special_inode(inode, inode->i_mode, fattr->rdev);
397
9e6e70f8
TM
398 memset(&inode->i_atime, 0, sizeof(inode->i_atime));
399 memset(&inode->i_mtime, 0, sizeof(inode->i_mtime));
400 memset(&inode->i_ctime, 0, sizeof(inode->i_ctime));
a9a4a87a 401 inode->i_version = 0;
9e6e70f8 402 inode->i_size = 0;
6d6b77f1 403 clear_nlink(inode);
9ff593c4
EB
404 inode->i_uid = make_kuid(&init_user_ns, -2);
405 inode->i_gid = make_kgid(&init_user_ns, -2);
9e6e70f8
TM
406 inode->i_blocks = 0;
407 memset(nfsi->cookieverf, 0, sizeof(nfsi->cookieverf));
2701d086
AA
408 nfsi->write_io = 0;
409 nfsi->read_io = 0;
9e6e70f8 410
33801147 411 nfsi->read_cache_jiffies = fattr->time_start;
4704f0e2 412 nfsi->attr_gencount = fattr->gencount;
9e6e70f8
TM
413 if (fattr->valid & NFS_ATTR_FATTR_ATIME)
414 inode->i_atime = fattr->atime;
62ab460c
TM
415 else if (nfs_server_capable(inode, NFS_CAP_ATIME))
416 nfsi->cache_validity |= NFS_INO_INVALID_ATTR;
9e6e70f8
TM
417 if (fattr->valid & NFS_ATTR_FATTR_MTIME)
418 inode->i_mtime = fattr->mtime;
62ab460c 419 else if (nfs_server_capable(inode, NFS_CAP_MTIME))
4124bbc5 420 nfsi->cache_validity |= NFS_INO_INVALID_ATTR;
9e6e70f8
TM
421 if (fattr->valid & NFS_ATTR_FATTR_CTIME)
422 inode->i_ctime = fattr->ctime;
62ab460c 423 else if (nfs_server_capable(inode, NFS_CAP_CTIME))
4124bbc5 424 nfsi->cache_validity |= NFS_INO_INVALID_ATTR;
9e6e70f8 425 if (fattr->valid & NFS_ATTR_FATTR_CHANGE)
a9a4a87a 426 inode->i_version = fattr->change_attr;
62ab460c 427 else if (nfs_server_capable(inode, NFS_CAP_CHANGE_ATTR))
4124bbc5 428 nfsi->cache_validity |= NFS_INO_INVALID_ATTR;
9e6e70f8
TM
429 if (fattr->valid & NFS_ATTR_FATTR_SIZE)
430 inode->i_size = nfs_size_to_loff_t(fattr->size);
62ab460c
TM
431 else
432 nfsi->cache_validity |= NFS_INO_INVALID_ATTR
62ab460c 433 | NFS_INO_REVAL_PAGECACHE;
9e6e70f8 434 if (fattr->valid & NFS_ATTR_FATTR_NLINK)
bfe86848 435 set_nlink(inode, fattr->nlink);
62ab460c
TM
436 else if (nfs_server_capable(inode, NFS_CAP_NLINK))
437 nfsi->cache_validity |= NFS_INO_INVALID_ATTR;
9e6e70f8
TM
438 if (fattr->valid & NFS_ATTR_FATTR_OWNER)
439 inode->i_uid = fattr->uid;
62ab460c 440 else if (nfs_server_capable(inode, NFS_CAP_OWNER))
4124bbc5 441 nfsi->cache_validity |= NFS_INO_INVALID_ATTR;
9e6e70f8
TM
442 if (fattr->valid & NFS_ATTR_FATTR_GROUP)
443 inode->i_gid = fattr->gid;
62ab460c 444 else if (nfs_server_capable(inode, NFS_CAP_OWNER_GROUP))
4124bbc5 445 nfsi->cache_validity |= NFS_INO_INVALID_ATTR;
9e6e70f8
TM
446 if (fattr->valid & NFS_ATTR_FATTR_BLOCKS_USED)
447 inode->i_blocks = fattr->du.nfs2.blocks;
448 if (fattr->valid & NFS_ATTR_FATTR_SPACE_USED) {
1da177e4
LT
449 /*
450 * report the blocks in 512byte units
451 */
452 inode->i_blocks = nfs_calc_block_size(fattr->du.nfs3.used);
1da177e4 453 }
aa9c2669
DQ
454
455 nfs_setsecurity(inode, fattr, label);
456
1da177e4 457 nfsi->attrtimeo = NFS_MINATTRTIMEO(inode);
b0c4fddc 458 nfsi->attrtimeo_timestamp = now;
1c3c07e9 459 nfsi->access_cache = RB_ROOT;
1da177e4 460
ef79c097
DH
461 nfs_fscache_init_inode_cookie(inode);
462
1da177e4
LT
463 unlock_new_inode(inode);
464 } else
465 nfs_refresh_inode(inode, fattr);
4f1abd22 466 dprintk("NFS: nfs_fhget(%s/%Ld fh_crc=0x%08x ct=%d)\n",
1da177e4
LT
467 inode->i_sb->s_id,
468 (long long)NFS_FILEID(inode),
4f1abd22 469 nfs_display_fhandle_hash(fh),
1da177e4
LT
470 atomic_read(&inode->i_count));
471
472out:
473 return inode;
474
475out_no_inode:
03f28e3a 476 dprintk("nfs_fhget: iget failed with error %ld\n", PTR_ERR(inode));
1da177e4
LT
477 goto out;
478}
89d77c8f 479EXPORT_SYMBOL_GPL(nfs_fhget);
1da177e4 480
536e43d1 481#define NFS_VALID_ATTRS (ATTR_MODE|ATTR_UID|ATTR_GID|ATTR_SIZE|ATTR_ATIME|ATTR_ATIME_SET|ATTR_MTIME|ATTR_MTIME_SET|ATTR_FILE|ATTR_OPEN)
1da177e4
LT
482
483int
484nfs_setattr(struct dentry *dentry, struct iattr *attr)
485{
486 struct inode *inode = dentry->d_inode;
987f8dfc
TM
487 struct nfs_fattr *fattr;
488 int error = -ENOMEM;
1da177e4 489
91d5b470
CL
490 nfs_inc_stats(inode, NFSIOS_VFSSETATTR);
491
188b95dd
JL
492 /* skip mode change if it's just for clearing setuid/setgid */
493 if (attr->ia_valid & (ATTR_KILL_SUID | ATTR_KILL_SGID))
494 attr->ia_valid &= ~ATTR_MODE;
495
1da177e4
LT
496 if (attr->ia_valid & ATTR_SIZE) {
497 if (!S_ISREG(inode->i_mode) || attr->ia_size == i_size_read(inode))
498 attr->ia_valid &= ~ATTR_SIZE;
499 }
500
501 /* Optimization: if the end result is no change, don't RPC */
502 attr->ia_valid &= NFS_VALID_ATTRS;
536e43d1 503 if ((attr->ia_valid & ~(ATTR_FILE|ATTR_OPEN)) == 0)
1da177e4
LT
504 return 0;
505
755c1e20 506 /* Write all dirty data */
1d59d61f
TM
507 if (S_ISREG(inode->i_mode)) {
508 nfs_inode_dio_wait(inode);
e1552e19 509 nfs_wb_all(inode);
1d59d61f 510 }
987f8dfc
TM
511
512 fattr = nfs_alloc_fattr();
513 if (fattr == NULL)
514 goto out;
642ac549
TM
515 /*
516 * Return any delegations if we're going to change ACLs
517 */
518 if ((attr->ia_valid & (ATTR_MODE|ATTR_UID|ATTR_GID)) != 0)
57ec14c5 519 NFS_PROTO(inode)->return_delegation(inode);
987f8dfc 520 error = NFS_PROTO(inode)->setattr(dentry, fattr, attr);
65e4308d 521 if (error == 0)
aa9c2669 522 error = nfs_refresh_inode(inode, fattr);
987f8dfc
TM
523 nfs_free_fattr(fattr);
524out:
65e4308d
TM
525 return error;
526}
ddda8e0a 527EXPORT_SYMBOL_GPL(nfs_setattr);
65e4308d 528
a3d01454
TM
529/**
530 * nfs_vmtruncate - unmap mappings "freed" by truncate() syscall
531 * @inode: inode of the file used
532 * @offset: file offset to start truncating
533 *
534 * This is a copy of the common vmtruncate, but with the locking
535 * corrected to take into account the fact that NFS requires
536 * inode->i_size to be updated under the inode->i_lock.
537 */
538static int nfs_vmtruncate(struct inode * inode, loff_t offset)
539{
c08d3b0e 540 loff_t oldsize;
541 int err;
a3d01454 542
c08d3b0e 543 err = inode_newsize_ok(inode, offset);
544 if (err)
545 goto out;
a3d01454 546
c08d3b0e 547 spin_lock(&inode->i_lock);
548 oldsize = inode->i_size;
549 i_size_write(inode, offset);
550 spin_unlock(&inode->i_lock);
551
552 truncate_pagecache(inode, oldsize, offset);
553out:
554 return err;
a3d01454
TM
555}
556
65e4308d
TM
557/**
558 * nfs_setattr_update_inode - Update inode metadata after a setattr call.
559 * @inode: pointer to struct inode
560 * @attr: pointer to struct iattr
561 *
562 * Note: we do this in the *proc.c in order to ensure that
563 * it works for things like exclusive creates too.
564 */
565void nfs_setattr_update_inode(struct inode *inode, struct iattr *attr)
566{
567 if ((attr->ia_valid & (ATTR_MODE|ATTR_UID|ATTR_GID)) != 0) {
2f28ea61 568 spin_lock(&inode->i_lock);
1da177e4 569 if ((attr->ia_valid & ATTR_MODE) != 0) {
65e4308d
TM
570 int mode = attr->ia_mode & S_IALLUGO;
571 mode |= inode->i_mode & ~S_IALLUGO;
1da177e4
LT
572 inode->i_mode = mode;
573 }
574 if ((attr->ia_valid & ATTR_UID) != 0)
575 inode->i_uid = attr->ia_uid;
576 if ((attr->ia_valid & ATTR_GID) != 0)
577 inode->i_gid = attr->ia_gid;
55296809 578 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
dc59250c 579 spin_unlock(&inode->i_lock);
65e4308d
TM
580 }
581 if ((attr->ia_valid & ATTR_SIZE) != 0) {
91d5b470 582 nfs_inc_stats(inode, NFSIOS_SETATTRTRUNC);
a3d01454 583 nfs_vmtruncate(inode, attr->ia_size);
65e4308d 584 }
1da177e4 585}
ddda8e0a 586EXPORT_SYMBOL_GPL(nfs_setattr_update_inode);
1da177e4 587
1da177e4
LT
588int nfs_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
589{
590 struct inode *inode = dentry->d_inode;
55296809 591 int need_atime = NFS_I(inode)->cache_validity & NFS_INO_INVALID_ATIME;
1da177e4
LT
592 int err;
593
acdc53b2 594 /* Flush out writes to the server in order to update c/mtime. */
28c494c5 595 if (S_ISREG(inode->i_mode)) {
1d59d61f 596 nfs_inode_dio_wait(inode);
acdc53b2
TM
597 err = filemap_write_and_wait(inode->i_mapping);
598 if (err)
599 goto out;
28c494c5 600 }
fc33a7bb
CH
601
602 /*
603 * We may force a getattr if the user cares about atime.
604 *
605 * Note that we only have to check the vfsmount flags here:
606 * - NFS always sets S_NOATIME by so checking it would give a
607 * bogus result
608 * - NFS never sets MS_NOATIME or MS_NODIRATIME so there is
609 * no point in checking those.
610 */
611 if ((mnt->mnt_flags & MNT_NOATIME) ||
612 ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode)))
1da177e4 613 need_atime = 0;
fc33a7bb 614
1da177e4
LT
615 if (need_atime)
616 err = __nfs_revalidate_inode(NFS_SERVER(inode), inode);
617 else
618 err = nfs_revalidate_inode(NFS_SERVER(inode), inode);
4e769b93 619 if (!err) {
1da177e4 620 generic_fillattr(inode, stat);
f43bf0be 621 stat->ino = nfs_compat_user_ino64(NFS_FILEID(inode));
4e769b93 622 }
acdc53b2 623out:
1da177e4
LT
624 return err;
625}
ddda8e0a 626EXPORT_SYMBOL_GPL(nfs_getattr);
1da177e4 627
f11ac8db
TM
628static void nfs_init_lock_context(struct nfs_lock_context *l_ctx)
629{
630 atomic_set(&l_ctx->count, 1);
2a369153
TM
631 l_ctx->lockowner.l_owner = current->files;
632 l_ctx->lockowner.l_pid = current->tgid;
f11ac8db 633 INIT_LIST_HEAD(&l_ctx->list);
577b4232 634 nfs_iocounter_init(&l_ctx->io_count);
f11ac8db
TM
635}
636
637static struct nfs_lock_context *__nfs_find_lock_context(struct nfs_open_context *ctx)
638{
8c86899f
TM
639 struct nfs_lock_context *head = &ctx->lock_context;
640 struct nfs_lock_context *pos = head;
f11ac8db 641
8c86899f 642 do {
2a369153 643 if (pos->lockowner.l_owner != current->files)
f11ac8db 644 continue;
2a369153 645 if (pos->lockowner.l_pid != current->tgid)
f11ac8db
TM
646 continue;
647 atomic_inc(&pos->count);
648 return pos;
8c86899f 649 } while ((pos = list_entry(pos->list.next, typeof(*pos), list)) != head);
f11ac8db
TM
650 return NULL;
651}
652
653struct nfs_lock_context *nfs_get_lock_context(struct nfs_open_context *ctx)
654{
655 struct nfs_lock_context *res, *new = NULL;
3d4ff43d 656 struct inode *inode = ctx->dentry->d_inode;
f11ac8db
TM
657
658 spin_lock(&inode->i_lock);
659 res = __nfs_find_lock_context(ctx);
660 if (res == NULL) {
661 spin_unlock(&inode->i_lock);
662 new = kmalloc(sizeof(*new), GFP_KERNEL);
663 if (new == NULL)
b3c54de6 664 return ERR_PTR(-ENOMEM);
f11ac8db
TM
665 nfs_init_lock_context(new);
666 spin_lock(&inode->i_lock);
667 res = __nfs_find_lock_context(ctx);
668 if (res == NULL) {
669 list_add_tail(&new->list, &ctx->lock_context.list);
670 new->open_context = ctx;
671 res = new;
672 new = NULL;
673 }
674 }
675 spin_unlock(&inode->i_lock);
676 kfree(new);
677 return res;
678}
679
680void nfs_put_lock_context(struct nfs_lock_context *l_ctx)
681{
682 struct nfs_open_context *ctx = l_ctx->open_context;
3d4ff43d 683 struct inode *inode = ctx->dentry->d_inode;
f11ac8db
TM
684
685 if (!atomic_dec_and_lock(&l_ctx->count, &inode->i_lock))
686 return;
687 list_del(&l_ctx->list);
688 spin_unlock(&inode->i_lock);
689 kfree(l_ctx);
690}
691
7fe5c398
TM
692/**
693 * nfs_close_context - Common close_context() routine NFSv2/v3
694 * @ctx: pointer to context
695 * @is_sync: is this a synchronous close
696 *
697 * always ensure that the attributes are up to date if we're mounted
698 * with close-to-open semantics
699 */
700void nfs_close_context(struct nfs_open_context *ctx, int is_sync)
701{
702 struct inode *inode;
703 struct nfs_server *server;
704
705 if (!(ctx->mode & FMODE_WRITE))
706 return;
707 if (!is_sync)
708 return;
3d4ff43d 709 inode = ctx->dentry->d_inode;
7fe5c398
TM
710 if (!list_empty(&NFS_I(inode)->open_files))
711 return;
712 server = NFS_SERVER(inode);
713 if (server->flags & NFS_MOUNT_NOCTO)
714 return;
715 nfs_revalidate_inode(server, inode);
716}
ddda8e0a 717EXPORT_SYMBOL_GPL(nfs_close_context);
7fe5c398 718
5ede7b1c 719struct nfs_open_context *alloc_nfs_open_context(struct dentry *dentry, fmode_t f_mode)
1da177e4
LT
720{
721 struct nfs_open_context *ctx;
5ede7b1c
AV
722 struct rpc_cred *cred = rpc_lookup_cred();
723 if (IS_ERR(cred))
724 return ERR_CAST(cred);
1da177e4 725
f52720ca 726 ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
5ede7b1c
AV
727 if (!ctx) {
728 put_rpccred(cred);
729 return ERR_PTR(-ENOMEM);
1da177e4 730 }
5ede7b1c
AV
731 nfs_sb_active(dentry->d_sb);
732 ctx->dentry = dget(dentry);
733 ctx->cred = cred;
734 ctx->state = NULL;
735 ctx->mode = f_mode;
736 ctx->flags = 0;
737 ctx->error = 0;
738 nfs_init_lock_context(&ctx->lock_context);
739 ctx->lock_context.open_context = ctx;
740 INIT_LIST_HEAD(&ctx->list);
82be417a 741 ctx->mdsthreshold = NULL;
1da177e4
LT
742 return ctx;
743}
89d77c8f 744EXPORT_SYMBOL_GPL(alloc_nfs_open_context);
1da177e4
LT
745
746struct nfs_open_context *get_nfs_open_context(struct nfs_open_context *ctx)
747{
748 if (ctx != NULL)
f11ac8db 749 atomic_inc(&ctx->lock_context.count);
1da177e4
LT
750 return ctx;
751}
89d77c8f 752EXPORT_SYMBOL_GPL(get_nfs_open_context);
1da177e4 753
7fe5c398 754static void __put_nfs_open_context(struct nfs_open_context *ctx, int is_sync)
1da177e4 755{
3d4ff43d
AV
756 struct inode *inode = ctx->dentry->d_inode;
757 struct super_block *sb = ctx->dentry->d_sb;
3bec63db 758
5c78f58e 759 if (!list_empty(&ctx->list)) {
ef84303e
BH
760 if (!atomic_dec_and_lock(&ctx->lock_context.count, &inode->i_lock))
761 return;
762 list_del(&ctx->list);
763 spin_unlock(&inode->i_lock);
ef84303e 764 } else if (!atomic_dec_and_test(&ctx->lock_context.count))
5e11934d 765 return;
5c78f58e
TM
766 if (inode != NULL)
767 NFS_PROTO(inode)->close_context(ctx, is_sync);
3bec63db
TM
768 if (ctx->cred != NULL)
769 put_rpccred(ctx->cred);
3d4ff43d 770 dput(ctx->dentry);
322b2b90 771 nfs_sb_deactive(sb);
82be417a 772 kfree(ctx->mdsthreshold);
3bec63db
TM
773 kfree(ctx);
774}
775
a49c3c77
TM
776void put_nfs_open_context(struct nfs_open_context *ctx)
777{
778 __put_nfs_open_context(ctx, 0);
779}
89d77c8f 780EXPORT_SYMBOL_GPL(put_nfs_open_context);
a49c3c77 781
1da177e4
LT
782/*
783 * Ensure that mmap has a recent RPC credential for use when writing out
784 * shared pages
785 */
c45ffdd2 786void nfs_inode_attach_open_context(struct nfs_open_context *ctx)
1da177e4 787{
c45ffdd2 788 struct inode *inode = ctx->dentry->d_inode;
1da177e4
LT
789 struct nfs_inode *nfsi = NFS_I(inode);
790
1da177e4
LT
791 spin_lock(&inode->i_lock);
792 list_add(&ctx->list, &nfsi->open_files);
793 spin_unlock(&inode->i_lock);
794}
c45ffdd2
TM
795EXPORT_SYMBOL_GPL(nfs_inode_attach_open_context);
796
797void nfs_file_set_open_context(struct file *filp, struct nfs_open_context *ctx)
798{
799 filp->private_data = get_nfs_open_context(ctx);
800 if (list_empty(&ctx->list))
801 nfs_inode_attach_open_context(ctx);
802}
89d77c8f 803EXPORT_SYMBOL_GPL(nfs_file_set_open_context);
1da177e4 804
d530838b
TM
805/*
806 * Given an inode, search for an open context with the desired characteristics
807 */
dc0b027d 808struct nfs_open_context *nfs_find_open_context(struct inode *inode, struct rpc_cred *cred, fmode_t mode)
1da177e4
LT
809{
810 struct nfs_inode *nfsi = NFS_I(inode);
811 struct nfs_open_context *pos, *ctx = NULL;
812
813 spin_lock(&inode->i_lock);
814 list_for_each_entry(pos, &nfsi->open_files, list) {
d530838b
TM
815 if (cred != NULL && pos->cred != cred)
816 continue;
1544fa0f
TM
817 if ((pos->mode & (FMODE_READ|FMODE_WRITE)) != mode)
818 continue;
819 ctx = get_nfs_open_context(pos);
820 break;
1da177e4
LT
821 }
822 spin_unlock(&inode->i_lock);
823 return ctx;
824}
825
b92dccf6 826static void nfs_file_clear_open_context(struct file *filp)
1da177e4 827{
cd3758e3 828 struct nfs_open_context *ctx = nfs_file_open_context(filp);
1da177e4
LT
829
830 if (ctx) {
c45ffdd2
TM
831 struct inode *inode = ctx->dentry->d_inode;
832
1da177e4
LT
833 filp->private_data = NULL;
834 spin_lock(&inode->i_lock);
835 list_move_tail(&ctx->list, &NFS_I(inode)->open_files);
836 spin_unlock(&inode->i_lock);
f895c53f 837 __put_nfs_open_context(ctx, filp->f_flags & O_DIRECT ? 0 : 1);
1da177e4
LT
838 }
839}
840
841/*
842 * These allocate and release file read/write context information.
843 */
844int nfs_open(struct inode *inode, struct file *filp)
845{
846 struct nfs_open_context *ctx;
1da177e4 847
5ede7b1c
AV
848 ctx = alloc_nfs_open_context(filp->f_path.dentry, filp->f_mode);
849 if (IS_ERR(ctx))
850 return PTR_ERR(ctx);
1da177e4
LT
851 nfs_file_set_open_context(filp, ctx);
852 put_nfs_open_context(ctx);
ef79c097 853 nfs_fscache_set_inode_cookie(inode, filp);
1da177e4
LT
854 return 0;
855}
856
857int nfs_release(struct inode *inode, struct file *filp)
858{
1da177e4
LT
859 nfs_file_clear_open_context(filp);
860 return 0;
861}
862
863/*
864 * This function is called whenever some part of NFS notices that
865 * the cached attributes have to be refreshed.
866 */
867int
868__nfs_revalidate_inode(struct nfs_server *server, struct inode *inode)
869{
870 int status = -ESTALE;
1775fd3e 871 struct nfs4_label *label = NULL;
a3cba2aa 872 struct nfs_fattr *fattr = NULL;
1da177e4 873 struct nfs_inode *nfsi = NFS_I(inode);
1da177e4
LT
874
875 dfprintk(PAGECACHE, "NFS: revalidating (%s/%Ld)\n",
876 inode->i_sb->s_id, (long long)NFS_FILEID(inode));
877
85233a7a 878 if (is_bad_inode(inode))
691beb13 879 goto out;
1da177e4 880 if (NFS_STALE(inode))
412d582e 881 goto out;
7fdc49c4 882
a3cba2aa
TM
883 status = -ENOMEM;
884 fattr = nfs_alloc_fattr();
885 if (fattr == NULL)
886 goto out;
887
691beb13 888 nfs_inc_stats(inode, NFSIOS_INODEREVALIDATE);
14c43f76
DQ
889
890 label = nfs4_label_alloc(NFS_SERVER(inode), GFP_KERNEL);
891 if (IS_ERR(label)) {
892 status = PTR_ERR(label);
893 goto out;
894 }
895
1775fd3e 896 status = NFS_PROTO(inode)->getattr(server, NFS_FH(inode), fattr, label);
1da177e4
LT
897 if (status != 0) {
898 dfprintk(PAGECACHE, "nfs_revalidate_inode: (%s/%Ld) getattr failed, error=%d\n",
899 inode->i_sb->s_id,
900 (long long)NFS_FILEID(inode), status);
901 if (status == -ESTALE) {
902 nfs_zap_caches(inode);
903 if (!S_ISDIR(inode->i_mode))
3a10c30a 904 set_bit(NFS_INO_STALE, &NFS_I(inode)->flags);
1da177e4 905 }
14c43f76 906 goto err_out;
1da177e4
LT
907 }
908
a3cba2aa 909 status = nfs_refresh_inode(inode, fattr);
1da177e4
LT
910 if (status) {
911 dfprintk(PAGECACHE, "nfs_revalidate_inode: (%s/%Ld) refresh failed, error=%d\n",
912 inode->i_sb->s_id,
913 (long long)NFS_FILEID(inode), status);
14c43f76 914 goto err_out;
1da177e4 915 }
55296809 916
24aa1fe6 917 if (nfsi->cache_validity & NFS_INO_INVALID_ACL)
ada70d94 918 nfs_zap_acl_cache(inode);
55296809 919
1da177e4
LT
920 dfprintk(PAGECACHE, "NFS: (%s/%Ld) revalidation complete\n",
921 inode->i_sb->s_id,
922 (long long)NFS_FILEID(inode));
923
14c43f76
DQ
924err_out:
925 nfs4_label_free(label);
926out:
a3cba2aa 927 nfs_free_fattr(fattr);
1da177e4
LT
928 return status;
929}
930
931int nfs_attribute_timeout(struct inode *inode)
932{
933 struct nfs_inode *nfsi = NFS_I(inode);
934
d7cf8dd0
TM
935 return !time_in_range_open(jiffies, nfsi->read_cache_jiffies, nfsi->read_cache_jiffies + nfsi->attrtimeo);
936}
937
43f291cd 938int nfs_attribute_cache_expired(struct inode *inode)
d7cf8dd0 939{
b4d2314b 940 if (nfs_have_delegated_attributes(inode))
1da177e4 941 return 0;
d7cf8dd0 942 return nfs_attribute_timeout(inode);
1da177e4
LT
943}
944
945/**
946 * nfs_revalidate_inode - Revalidate the inode attributes
947 * @server - pointer to nfs_server struct
948 * @inode - pointer to inode struct
949 *
950 * Updates inode attribute information by retrieving the data from the server.
951 */
952int nfs_revalidate_inode(struct nfs_server *server, struct inode *inode)
953{
aa9c2669
DQ
954 if (!(NFS_I(inode)->cache_validity &
955 (NFS_INO_INVALID_ATTR|NFS_INO_INVALID_LABEL))
d7cf8dd0 956 && !nfs_attribute_cache_expired(inode))
1da177e4
LT
957 return NFS_STALE(inode) ? -ESTALE : 0;
958 return __nfs_revalidate_inode(server, inode);
959}
1c606fb7 960EXPORT_SYMBOL_GPL(nfs_revalidate_inode);
1da177e4 961
1cda707d 962static int nfs_invalidate_mapping(struct inode *inode, struct address_space *mapping)
717d44e8
TM
963{
964 struct nfs_inode *nfsi = NFS_I(inode);
f8806c84
TM
965 int ret;
966
717d44e8 967 if (mapping->nrpages != 0) {
f8806c84
TM
968 if (S_ISREG(inode->i_mode)) {
969 ret = nfs_sync_mapping(mapping);
970 if (ret < 0)
971 return ret;
972 }
973 ret = invalidate_inode_pages2(mapping);
717d44e8
TM
974 if (ret < 0)
975 return ret;
976 }
977 spin_lock(&inode->i_lock);
978 nfsi->cache_validity &= ~NFS_INO_INVALID_DATA;
2f78e431 979 if (S_ISDIR(inode->i_mode))
717d44e8 980 memset(nfsi->cookieverf, 0, sizeof(nfsi->cookieverf));
717d44e8
TM
981 spin_unlock(&inode->i_lock);
982 nfs_inc_stats(inode, NFSIOS_DATAINVALIDATE);
de242c0b 983 nfs_fscache_wait_on_invalidate(inode);
717d44e8
TM
984 dfprintk(PAGECACHE, "NFS: (%s/%Ld) data cache invalidated\n",
985 inode->i_sb->s_id, (long long)NFS_FILEID(inode));
986 return 0;
987}
988
b4b1eadf
TM
989static bool nfs_mapping_need_revalidate_inode(struct inode *inode)
990{
991 if (nfs_have_delegated_attributes(inode))
992 return false;
993 return (NFS_I(inode)->cache_validity & NFS_INO_REVAL_PAGECACHE)
994 || nfs_attribute_timeout(inode)
995 || NFS_STALE(inode);
996}
997
717d44e8
TM
998/**
999 * nfs_revalidate_mapping - Revalidate the pagecache
1000 * @inode - pointer to host inode
1001 * @mapping - pointer to mapping
717d44e8
TM
1002 */
1003int nfs_revalidate_mapping(struct inode *inode, struct address_space *mapping)
1004{
1005 struct nfs_inode *nfsi = NFS_I(inode);
1006 int ret = 0;
dc59250c 1007
29418aa4
MG
1008 /* swapfiles are not supposed to be shared. */
1009 if (IS_SWAPFILE(inode))
1010 goto out;
1011
b4b1eadf 1012 if (nfs_mapping_need_revalidate_inode(inode)) {
717d44e8
TM
1013 ret = __nfs_revalidate_inode(NFS_SERVER(inode), inode);
1014 if (ret < 0)
1015 goto out;
7d52e862 1016 }
717d44e8
TM
1017 if (nfsi->cache_validity & NFS_INO_INVALID_DATA)
1018 ret = nfs_invalidate_mapping(inode, mapping);
cd9ae2b6 1019out:
44b11874 1020 return ret;
7d52e862
TM
1021}
1022
27dc1cd3 1023static unsigned long nfs_wcc_update_inode(struct inode *inode, struct nfs_fattr *fattr)
a895b4a1
TM
1024{
1025 struct nfs_inode *nfsi = NFS_I(inode);
27dc1cd3 1026 unsigned long ret = 0;
a895b4a1 1027
9e6e70f8
TM
1028 if ((fattr->valid & NFS_ATTR_FATTR_PRECHANGE)
1029 && (fattr->valid & NFS_ATTR_FATTR_CHANGE)
a9a4a87a
TM
1030 && inode->i_version == fattr->pre_change_attr) {
1031 inode->i_version = fattr->change_attr;
70ca8852
TM
1032 if (S_ISDIR(inode->i_mode))
1033 nfsi->cache_validity |= NFS_INO_INVALID_DATA;
27dc1cd3 1034 ret |= NFS_INO_INVALID_ATTR;
70ca8852 1035 }
a895b4a1 1036 /* If we have atomic WCC data, we may update some attributes */
9e6e70f8
TM
1037 if ((fattr->valid & NFS_ATTR_FATTR_PRECTIME)
1038 && (fattr->valid & NFS_ATTR_FATTR_CTIME)
27dc1cd3
TM
1039 && timespec_equal(&inode->i_ctime, &fattr->pre_ctime)) {
1040 memcpy(&inode->i_ctime, &fattr->ctime, sizeof(inode->i_ctime));
1041 ret |= NFS_INO_INVALID_ATTR;
1042 }
9e6e70f8
TM
1043
1044 if ((fattr->valid & NFS_ATTR_FATTR_PREMTIME)
1045 && (fattr->valid & NFS_ATTR_FATTR_MTIME)
1046 && timespec_equal(&inode->i_mtime, &fattr->pre_mtime)) {
27dc1cd3
TM
1047 memcpy(&inode->i_mtime, &fattr->mtime, sizeof(inode->i_mtime));
1048 if (S_ISDIR(inode->i_mode))
1049 nfsi->cache_validity |= NFS_INO_INVALID_DATA;
1050 ret |= NFS_INO_INVALID_ATTR;
a895b4a1 1051 }
9e6e70f8
TM
1052 if ((fattr->valid & NFS_ATTR_FATTR_PRESIZE)
1053 && (fattr->valid & NFS_ATTR_FATTR_SIZE)
1054 && i_size_read(inode) == nfs_size_to_loff_t(fattr->pre_size)
27dc1cd3
TM
1055 && nfsi->npages == 0) {
1056 i_size_write(inode, nfs_size_to_loff_t(fattr->size));
1057 ret |= NFS_INO_INVALID_ATTR;
1058 }
de242c0b
DH
1059
1060 if (nfsi->cache_validity & NFS_INO_INVALID_DATA)
1061 nfs_fscache_invalidate(inode);
1062
27dc1cd3 1063 return ret;
a895b4a1
TM
1064}
1065
1da177e4 1066/**
33801147 1067 * nfs_check_inode_attributes - verify consistency of the inode attribute cache
1da177e4
LT
1068 * @inode - pointer to inode
1069 * @fattr - updated attributes
1070 *
1071 * Verifies the attribute cache. If we have just changed the attributes,
1072 * so that fattr carries weak cache consistency data, then it may
1073 * also update the ctime/mtime/change_attribute.
1074 */
33801147 1075static int nfs_check_inode_attributes(struct inode *inode, struct nfs_fattr *fattr)
1da177e4
LT
1076{
1077 struct nfs_inode *nfsi = NFS_I(inode);
1078 loff_t cur_size, new_isize;
2a3f5fd4 1079 unsigned long invalid = 0;
1da177e4 1080
dc59250c 1081
01da47bd
TM
1082 if (nfs_have_delegated_attributes(inode))
1083 return 0;
ca62b9c3 1084 /* Has the inode gone and changed behind our back? */
9e6e70f8
TM
1085 if ((fattr->valid & NFS_ATTR_FATTR_FILEID) && nfsi->fileid != fattr->fileid)
1086 return -EIO;
1087 if ((fattr->valid & NFS_ATTR_FATTR_TYPE) && (inode->i_mode & S_IFMT) != (fattr->mode & S_IFMT))
ca62b9c3 1088 return -EIO;
ca62b9c3 1089
9e6e70f8 1090 if ((fattr->valid & NFS_ATTR_FATTR_CHANGE) != 0 &&
a9a4a87a 1091 inode->i_version != fattr->change_attr)
2a3f5fd4 1092 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE;
1da177e4 1093
1da177e4 1094 /* Verify a few of the more important attributes */
9e6e70f8 1095 if ((fattr->valid & NFS_ATTR_FATTR_MTIME) && !timespec_equal(&inode->i_mtime, &fattr->mtime))
fee7fe19 1096 invalid |= NFS_INO_INVALID_ATTR;
ca62b9c3 1097
9e6e70f8
TM
1098 if (fattr->valid & NFS_ATTR_FATTR_SIZE) {
1099 cur_size = i_size_read(inode);
1100 new_isize = nfs_size_to_loff_t(fattr->size);
1101 if (cur_size != new_isize && nfsi->npages == 0)
1102 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE;
1103 }
1da177e4
LT
1104
1105 /* Have any file permissions changed? */
9e6e70f8
TM
1106 if ((fattr->valid & NFS_ATTR_FATTR_MODE) && (inode->i_mode & S_IALLUGO) != (fattr->mode & S_IALLUGO))
1107 invalid |= NFS_INO_INVALID_ATTR | NFS_INO_INVALID_ACCESS | NFS_INO_INVALID_ACL;
9ff593c4 1108 if ((fattr->valid & NFS_ATTR_FATTR_OWNER) && !uid_eq(inode->i_uid, fattr->uid))
9e6e70f8 1109 invalid |= NFS_INO_INVALID_ATTR | NFS_INO_INVALID_ACCESS | NFS_INO_INVALID_ACL;
9ff593c4 1110 if ((fattr->valid & NFS_ATTR_FATTR_GROUP) && !gid_eq(inode->i_gid, fattr->gid))
2a3f5fd4 1111 invalid |= NFS_INO_INVALID_ATTR | NFS_INO_INVALID_ACCESS | NFS_INO_INVALID_ACL;
1da177e4
LT
1112
1113 /* Has the link count changed? */
9e6e70f8 1114 if ((fattr->valid & NFS_ATTR_FATTR_NLINK) && inode->i_nlink != fattr->nlink)
2a3f5fd4 1115 invalid |= NFS_INO_INVALID_ATTR;
1da177e4 1116
9e6e70f8 1117 if ((fattr->valid & NFS_ATTR_FATTR_ATIME) && !timespec_equal(&inode->i_atime, &fattr->atime))
2a3f5fd4
TM
1118 invalid |= NFS_INO_INVALID_ATIME;
1119
1120 if (invalid != 0)
1121 nfsi->cache_validity |= invalid;
1da177e4 1122
33801147 1123 nfsi->read_cache_jiffies = fattr->time_start;
1da177e4
LT
1124 return 0;
1125}
1126
a10ad176 1127static int nfs_ctime_need_update(const struct inode *inode, const struct nfs_fattr *fattr)
870a5be8 1128{
9e6e70f8
TM
1129 if (!(fattr->valid & NFS_ATTR_FATTR_CTIME))
1130 return 0;
a10ad176
TM
1131 return timespec_compare(&fattr->ctime, &inode->i_ctime) > 0;
1132}
1133
1134static int nfs_size_need_update(const struct inode *inode, const struct nfs_fattr *fattr)
1135{
9e6e70f8
TM
1136 if (!(fattr->valid & NFS_ATTR_FATTR_SIZE))
1137 return 0;
a10ad176
TM
1138 return nfs_size_to_loff_t(fattr->size) > i_size_read(inode);
1139}
870a5be8 1140
ae05f269 1141static atomic_long_t nfs_attr_generation_counter;
4704f0e2
TM
1142
1143static unsigned long nfs_read_attr_generation_counter(void)
1144{
ae05f269 1145 return atomic_long_read(&nfs_attr_generation_counter);
4704f0e2
TM
1146}
1147
1148unsigned long nfs_inc_attr_generation_counter(void)
1149{
ae05f269 1150 return atomic_long_inc_return(&nfs_attr_generation_counter);
4704f0e2
TM
1151}
1152
1153void nfs_fattr_init(struct nfs_fattr *fattr)
1154{
1155 fattr->valid = 0;
1156 fattr->time_start = jiffies;
1157 fattr->gencount = nfs_inc_attr_generation_counter();
6926afd1
TM
1158 fattr->owner_name = NULL;
1159 fattr->group_name = NULL;
4704f0e2 1160}
ddda8e0a 1161EXPORT_SYMBOL_GPL(nfs_fattr_init);
4704f0e2 1162
2d36bfde
TM
1163struct nfs_fattr *nfs_alloc_fattr(void)
1164{
1165 struct nfs_fattr *fattr;
1166
1167 fattr = kmalloc(sizeof(*fattr), GFP_NOFS);
1168 if (fattr != NULL)
1169 nfs_fattr_init(fattr);
1170 return fattr;
1171}
ddda8e0a 1172EXPORT_SYMBOL_GPL(nfs_alloc_fattr);
2d36bfde
TM
1173
1174struct nfs_fh *nfs_alloc_fhandle(void)
1175{
1176 struct nfs_fh *fh;
1177
1178 fh = kmalloc(sizeof(struct nfs_fh), GFP_NOFS);
1179 if (fh != NULL)
1180 fh->size = 0;
1181 return fh;
1182}
ddda8e0a 1183EXPORT_SYMBOL_GPL(nfs_alloc_fhandle);
2d36bfde 1184
e27d359e 1185#ifdef NFS_DEBUG
d8e0539e
WAA
1186/*
1187 * _nfs_display_fhandle_hash - calculate the crc32 hash for the filehandle
1188 * in the same way that wireshark does
1189 *
1190 * @fh: file handle
1191 *
1192 * For debugging only.
1193 */
1194u32 _nfs_display_fhandle_hash(const struct nfs_fh *fh)
1195{
1196 /* wireshark uses 32-bit AUTODIN crc and does a bitwise
1197 * not on the result */
1198 return ~crc32(0xFFFFFFFF, &fh->data[0], fh->size);
1199}
1200
1201/*
20d27e92
CL
1202 * _nfs_display_fhandle - display an NFS file handle on the console
1203 *
1204 * @fh: file handle to display
1205 * @caption: display caption
1206 *
1207 * For debugging only.
1208 */
20d27e92
CL
1209void _nfs_display_fhandle(const struct nfs_fh *fh, const char *caption)
1210{
1211 unsigned short i;
1212
fa68a1ba 1213 if (fh == NULL || fh->size == 0) {
20d27e92
CL
1214 printk(KERN_DEFAULT "%s at %p is empty\n", caption, fh);
1215 return;
1216 }
1217
d8e0539e
WAA
1218 printk(KERN_DEFAULT "%s at %p is %u bytes, crc: 0x%08x:\n",
1219 caption, fh, fh->size, _nfs_display_fhandle_hash(fh));
20d27e92
CL
1220 for (i = 0; i < fh->size; i += 16) {
1221 __be32 *pos = (__be32 *)&fh->data[i];
1222
1223 switch ((fh->size - i - 1) >> 2) {
1224 case 0:
1225 printk(KERN_DEFAULT " %08x\n",
1226 be32_to_cpup(pos));
1227 break;
1228 case 1:
1229 printk(KERN_DEFAULT " %08x %08x\n",
1230 be32_to_cpup(pos), be32_to_cpup(pos + 1));
1231 break;
1232 case 2:
1233 printk(KERN_DEFAULT " %08x %08x %08x\n",
1234 be32_to_cpup(pos), be32_to_cpup(pos + 1),
1235 be32_to_cpup(pos + 2));
1236 break;
1237 default:
1238 printk(KERN_DEFAULT " %08x %08x %08x %08x\n",
1239 be32_to_cpup(pos), be32_to_cpup(pos + 1),
1240 be32_to_cpup(pos + 2), be32_to_cpup(pos + 3));
1241 }
1242 }
1243}
1244#endif
1245
a10ad176
TM
1246/**
1247 * nfs_inode_attrs_need_update - check if the inode attributes need updating
1248 * @inode - pointer to inode
1249 * @fattr - attributes
1250 *
1251 * Attempt to divine whether or not an RPC call reply carrying stale
1252 * attributes got scheduled after another call carrying updated ones.
1253 *
1254 * To do so, the function first assumes that a more recent ctime means
1255 * that the attributes in fattr are newer, however it also attempt to
1256 * catch the case where ctime either didn't change, or went backwards
1257 * (if someone reset the clock on the server) by looking at whether
1258 * or not this RPC call was started after the inode was last updated.
4704f0e2 1259 * Note also the check for wraparound of 'attr_gencount'
a10ad176
TM
1260 *
1261 * The function returns 'true' if it thinks the attributes in 'fattr' are
1262 * more recent than the ones cached in the inode.
1263 *
1264 */
1265static int nfs_inode_attrs_need_update(const struct inode *inode, const struct nfs_fattr *fattr)
1266{
1267 const struct nfs_inode *nfsi = NFS_I(inode);
1268
4704f0e2 1269 return ((long)fattr->gencount - (long)nfsi->attr_gencount) > 0 ||
03254e65
TM
1270 nfs_ctime_need_update(inode, fattr) ||
1271 nfs_size_need_update(inode, fattr) ||
4704f0e2 1272 ((long)nfsi->attr_gencount - (long)nfs_read_attr_generation_counter() > 0);
a10ad176
TM
1273}
1274
1275static int nfs_refresh_inode_locked(struct inode *inode, struct nfs_fattr *fattr)
1276{
1277 if (nfs_inode_attrs_need_update(inode, fattr))
870a5be8
TM
1278 return nfs_update_inode(inode, fattr);
1279 return nfs_check_inode_attributes(inode, fattr);
1280}
1281
33801147
TM
1282/**
1283 * nfs_refresh_inode - try to update the inode attribute cache
1284 * @inode - pointer to inode
1285 * @fattr - updated attributes
1286 *
1287 * Check that an RPC call that returned attributes has not overlapped with
1288 * other recent updates of the inode metadata, then decide whether it is
1289 * safe to do a full update of the inode attributes, or whether just to
1290 * call nfs_check_inode_attributes.
1291 */
1292int nfs_refresh_inode(struct inode *inode, struct nfs_fattr *fattr)
1293{
33801147
TM
1294 int status;
1295
1296 if ((fattr->valid & NFS_ATTR_FATTR) == 0)
1297 return 0;
1298 spin_lock(&inode->i_lock);
870a5be8 1299 status = nfs_refresh_inode_locked(inode, fattr);
33801147 1300 spin_unlock(&inode->i_lock);
ef79c097 1301
33801147
TM
1302 return status;
1303}
ddda8e0a 1304EXPORT_SYMBOL_GPL(nfs_refresh_inode);
33801147 1305
d65f557f
TM
1306static int nfs_post_op_update_inode_locked(struct inode *inode, struct nfs_fattr *fattr)
1307{
1308 struct nfs_inode *nfsi = NFS_I(inode);
1309
1310 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE;
de242c0b 1311 if (S_ISDIR(inode->i_mode)) {
d65f557f 1312 nfsi->cache_validity |= NFS_INO_INVALID_DATA;
de242c0b
DH
1313 nfs_fscache_invalidate(inode);
1314 }
d65f557f
TM
1315 if ((fattr->valid & NFS_ATTR_FATTR) == 0)
1316 return 0;
1317 return nfs_refresh_inode_locked(inode, fattr);
1318}
1319
decf491f
TM
1320/**
1321 * nfs_post_op_update_inode - try to update the inode attribute cache
1322 * @inode - pointer to inode
1323 * @fattr - updated attributes
1324 *
1325 * After an operation that has changed the inode metadata, mark the
1326 * attribute cache as being invalid, then try to update it.
f551e44f
CL
1327 *
1328 * NB: if the server didn't return any post op attributes, this
1329 * function will force the retrieval of attributes before the next
1330 * NFS request. Thus it should be used only for operations that
1331 * are expected to change one or more attributes, to avoid
1332 * unnecessary NFS requests and trips through nfs_update_inode().
decf491f
TM
1333 */
1334int nfs_post_op_update_inode(struct inode *inode, struct nfs_fattr *fattr)
1335{
d65f557f 1336 int status;
decf491f 1337
7668fdbe 1338 spin_lock(&inode->i_lock);
d65f557f 1339 status = nfs_post_op_update_inode_locked(inode, fattr);
7668fdbe 1340 spin_unlock(&inode->i_lock);
aa9c2669 1341
870a5be8 1342 return status;
decf491f 1343}
1c606fb7 1344EXPORT_SYMBOL_GPL(nfs_post_op_update_inode);
decf491f 1345
70ca8852
TM
1346/**
1347 * nfs_post_op_update_inode_force_wcc - try to update the inode attribute cache
1348 * @inode - pointer to inode
1349 * @fattr - updated attributes
1350 *
1351 * After an operation that has changed the inode metadata, mark the
1352 * attribute cache as being invalid, then try to update it. Fake up
1353 * weak cache consistency data, if none exist.
1354 *
1355 * This function is mainly designed to be used by the ->write_done() functions.
1356 */
1357int nfs_post_op_update_inode_force_wcc(struct inode *inode, struct nfs_fattr *fattr)
1358{
d65f557f
TM
1359 int status;
1360
1361 spin_lock(&inode->i_lock);
1362 /* Don't do a WCC update if these attributes are already stale */
1363 if ((fattr->valid & NFS_ATTR_FATTR) == 0 ||
1364 !nfs_inode_attrs_need_update(inode, fattr)) {
9e6e70f8
TM
1365 fattr->valid &= ~(NFS_ATTR_FATTR_PRECHANGE
1366 | NFS_ATTR_FATTR_PRESIZE
1367 | NFS_ATTR_FATTR_PREMTIME
1368 | NFS_ATTR_FATTR_PRECTIME);
d65f557f
TM
1369 goto out_noforce;
1370 }
9e6e70f8
TM
1371 if ((fattr->valid & NFS_ATTR_FATTR_CHANGE) != 0 &&
1372 (fattr->valid & NFS_ATTR_FATTR_PRECHANGE) == 0) {
a9a4a87a 1373 fattr->pre_change_attr = inode->i_version;
9e6e70f8 1374 fattr->valid |= NFS_ATTR_FATTR_PRECHANGE;
70ca8852 1375 }
9e6e70f8
TM
1376 if ((fattr->valid & NFS_ATTR_FATTR_CTIME) != 0 &&
1377 (fattr->valid & NFS_ATTR_FATTR_PRECTIME) == 0) {
70ca8852 1378 memcpy(&fattr->pre_ctime, &inode->i_ctime, sizeof(fattr->pre_ctime));
9e6e70f8
TM
1379 fattr->valid |= NFS_ATTR_FATTR_PRECTIME;
1380 }
1381 if ((fattr->valid & NFS_ATTR_FATTR_MTIME) != 0 &&
1382 (fattr->valid & NFS_ATTR_FATTR_PREMTIME) == 0) {
70ca8852 1383 memcpy(&fattr->pre_mtime, &inode->i_mtime, sizeof(fattr->pre_mtime));
9e6e70f8
TM
1384 fattr->valid |= NFS_ATTR_FATTR_PREMTIME;
1385 }
1386 if ((fattr->valid & NFS_ATTR_FATTR_SIZE) != 0 &&
1387 (fattr->valid & NFS_ATTR_FATTR_PRESIZE) == 0) {
a3d01454 1388 fattr->pre_size = i_size_read(inode);
9e6e70f8 1389 fattr->valid |= NFS_ATTR_FATTR_PRESIZE;
70ca8852 1390 }
d65f557f
TM
1391out_noforce:
1392 status = nfs_post_op_update_inode_locked(inode, fattr);
1393 spin_unlock(&inode->i_lock);
1394 return status;
70ca8852 1395}
ddda8e0a 1396EXPORT_SYMBOL_GPL(nfs_post_op_update_inode_force_wcc);
70ca8852 1397
1da177e4
LT
1398/*
1399 * Many nfs protocol calls return the new file attributes after
1400 * an operation. Here we update the inode to reflect the state
1401 * of the server's inode.
1402 *
1403 * This is a bit tricky because we have to make sure all dirty pages
1404 * have been sent off to the server before calling invalidate_inode_pages.
1405 * To make sure no other process adds more write requests while we try
1406 * our best to flush them, we make them sleep during the attribute refresh.
1407 *
1408 * A very similar scenario holds for the dir cache.
1409 */
24aa1fe6 1410static int nfs_update_inode(struct inode *inode, struct nfs_fattr *fattr)
1da177e4 1411{
8b4bdcf8 1412 struct nfs_server *server;
1da177e4 1413 struct nfs_inode *nfsi = NFS_I(inode);
951a143b 1414 loff_t cur_isize, new_isize;
2a3f5fd4 1415 unsigned long invalid = 0;
3e7d950a 1416 unsigned long now = jiffies;
62ab460c 1417 unsigned long save_cache_validity;
1da177e4 1418
4f1abd22 1419 dfprintk(VFS, "NFS: %s(%s/%ld fh_crc=0x%08x ct=%d info=0x%x)\n",
3110ff80 1420 __func__, inode->i_sb->s_id, inode->i_ino,
4f1abd22 1421 nfs_display_fhandle_hash(NFS_FH(inode)),
1da177e4
LT
1422 atomic_read(&inode->i_count), fattr->valid);
1423
e73e6c9e
MT
1424 if ((fattr->valid & NFS_ATTR_FATTR_FILEID) && nfsi->fileid != fattr->fileid) {
1425 printk(KERN_ERR "NFS: server %s error: fileid changed\n"
1426 "fsid %s: expected fileid 0x%Lx, got 0x%Lx\n",
1427 NFS_SERVER(inode)->nfs_client->cl_hostname,
1428 inode->i_sb->s_id, (long long)nfsi->fileid,
1429 (long long)fattr->fileid);
1430 goto out_err;
1431 }
1da177e4
LT
1432
1433 /*
1434 * Make sure the inode's type hasn't changed.
1435 */
e73e6c9e
MT
1436 if ((fattr->valid & NFS_ATTR_FATTR_TYPE) && (inode->i_mode & S_IFMT) != (fattr->mode & S_IFMT)) {
1437 /*
1438 * Big trouble! The inode has become a different object.
1439 */
1440 printk(KERN_DEBUG "NFS: %s: inode %ld mode changed, %07o to %07o\n",
1441 __func__, inode->i_ino, inode->i_mode, fattr->mode);
1442 goto out_err;
1443 }
1da177e4 1444
8b4bdcf8 1445 server = NFS_SERVER(inode);
a0356862 1446 /* Update the fsid? */
9e6e70f8 1447 if (S_ISDIR(inode->i_mode) && (fattr->valid & NFS_ATTR_FATTR_FSID) &&
c37dcd33 1448 !nfs_fsid_equal(&server->fsid, &fattr->fsid) &&
36d43a43 1449 !IS_AUTOMOUNT(inode))
8b4bdcf8
TM
1450 server->fsid = fattr->fsid;
1451
1da177e4
LT
1452 /*
1453 * Update the read time so we don't revalidate too often.
1454 */
33801147 1455 nfsi->read_cache_jiffies = fattr->time_start;
3e7d950a 1456
62ab460c
TM
1457 save_cache_validity = nfsi->cache_validity;
1458 nfsi->cache_validity &= ~(NFS_INO_INVALID_ATTR
1459 | NFS_INO_INVALID_ATIME
1460 | NFS_INO_REVAL_FORCED
1461 | NFS_INO_REVAL_PAGECACHE);
1da177e4 1462
a895b4a1 1463 /* Do atomic weak cache consistency updates */
27dc1cd3 1464 invalid |= nfs_wcc_update_inode(inode, fattr);
a895b4a1 1465
47aabaa7 1466 /* More cache consistency checks */
9e6e70f8 1467 if (fattr->valid & NFS_ATTR_FATTR_CHANGE) {
a9a4a87a 1468 if (inode->i_version != fattr->change_attr) {
9e6e70f8
TM
1469 dprintk("NFS: change_attr change on server for file %s/%ld\n",
1470 inode->i_sb->s_id, inode->i_ino);
6a4506c0
TM
1471 invalid |= NFS_INO_INVALID_ATTR
1472 | NFS_INO_INVALID_DATA
1473 | NFS_INO_INVALID_ACCESS
1474 | NFS_INO_INVALID_ACL
1475 | NFS_INO_REVAL_PAGECACHE;
9e6e70f8
TM
1476 if (S_ISDIR(inode->i_mode))
1477 nfs_force_lookup_revalidate(inode);
a9a4a87a 1478 inode->i_version = fattr->change_attr;
9e6e70f8 1479 }
62ab460c
TM
1480 } else if (server->caps & NFS_CAP_CHANGE_ATTR)
1481 invalid |= save_cache_validity;
9e6e70f8
TM
1482
1483 if (fattr->valid & NFS_ATTR_FATTR_MTIME) {
fee7fe19 1484 memcpy(&inode->i_mtime, &fattr->mtime, sizeof(inode->i_mtime));
62ab460c
TM
1485 } else if (server->caps & NFS_CAP_MTIME)
1486 invalid |= save_cache_validity & (NFS_INO_INVALID_ATTR
62ab460c
TM
1487 | NFS_INO_REVAL_FORCED);
1488
9e6e70f8 1489 if (fattr->valid & NFS_ATTR_FATTR_CTIME) {
fee7fe19 1490 memcpy(&inode->i_ctime, &fattr->ctime, sizeof(inode->i_ctime));
62ab460c
TM
1491 } else if (server->caps & NFS_CAP_CTIME)
1492 invalid |= save_cache_validity & (NFS_INO_INVALID_ATTR
62ab460c 1493 | NFS_INO_REVAL_FORCED);
47aabaa7 1494
951a143b 1495 /* Check if our cached file size is stale */
9e6e70f8
TM
1496 if (fattr->valid & NFS_ATTR_FATTR_SIZE) {
1497 new_isize = nfs_size_to_loff_t(fattr->size);
1498 cur_isize = i_size_read(inode);
1499 if (new_isize != cur_isize) {
1500 /* Do we perhaps have any outstanding writes, or has
1501 * the file grown beyond our last write? */
0f66b598
PT
1502 if ((nfsi->npages == 0 && !test_bit(NFS_INO_LAYOUTCOMMIT, &nfsi->flags)) ||
1503 new_isize > cur_isize) {
9e6e70f8
TM
1504 i_size_write(inode, new_isize);
1505 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA;
1506 }
60c16ea8
HJ
1507 dprintk("NFS: isize change on server for file %s/%ld "
1508 "(%Ld to %Ld)\n",
1509 inode->i_sb->s_id,
1510 inode->i_ino,
1511 (long long)cur_isize,
1512 (long long)new_isize);
1da177e4 1513 }
62ab460c
TM
1514 } else
1515 invalid |= save_cache_validity & (NFS_INO_INVALID_ATTR
1516 | NFS_INO_REVAL_PAGECACHE
1517 | NFS_INO_REVAL_FORCED);
1da177e4 1518
1da177e4 1519
9e6e70f8
TM
1520 if (fattr->valid & NFS_ATTR_FATTR_ATIME)
1521 memcpy(&inode->i_atime, &fattr->atime, sizeof(inode->i_atime));
62ab460c
TM
1522 else if (server->caps & NFS_CAP_ATIME)
1523 invalid |= save_cache_validity & (NFS_INO_INVALID_ATIME
1524 | NFS_INO_REVAL_FORCED);
1da177e4 1525
9e6e70f8
TM
1526 if (fattr->valid & NFS_ATTR_FATTR_MODE) {
1527 if ((inode->i_mode & S_IALLUGO) != (fattr->mode & S_IALLUGO)) {
9b4b3513
TM
1528 umode_t newmode = inode->i_mode & S_IFMT;
1529 newmode |= fattr->mode & S_IALLUGO;
1530 inode->i_mode = newmode;
9e6e70f8 1531 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
9e6e70f8 1532 }
62ab460c
TM
1533 } else if (server->caps & NFS_CAP_MODE)
1534 invalid |= save_cache_validity & (NFS_INO_INVALID_ATTR
1535 | NFS_INO_INVALID_ACCESS
1536 | NFS_INO_INVALID_ACL
1537 | NFS_INO_REVAL_FORCED);
1538
9e6e70f8 1539 if (fattr->valid & NFS_ATTR_FATTR_OWNER) {
9ff593c4 1540 if (!uid_eq(inode->i_uid, fattr->uid)) {
9e6e70f8
TM
1541 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
1542 inode->i_uid = fattr->uid;
1543 }
62ab460c
TM
1544 } else if (server->caps & NFS_CAP_OWNER)
1545 invalid |= save_cache_validity & (NFS_INO_INVALID_ATTR
1546 | NFS_INO_INVALID_ACCESS
1547 | NFS_INO_INVALID_ACL
1548 | NFS_INO_REVAL_FORCED);
1549
9e6e70f8 1550 if (fattr->valid & NFS_ATTR_FATTR_GROUP) {
9ff593c4 1551 if (!gid_eq(inode->i_gid, fattr->gid)) {
9e6e70f8
TM
1552 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
1553 inode->i_gid = fattr->gid;
1554 }
62ab460c
TM
1555 } else if (server->caps & NFS_CAP_OWNER_GROUP)
1556 invalid |= save_cache_validity & (NFS_INO_INVALID_ATTR
1557 | NFS_INO_INVALID_ACCESS
1558 | NFS_INO_INVALID_ACL
1559 | NFS_INO_REVAL_FORCED);
921615f1 1560
9e6e70f8
TM
1561 if (fattr->valid & NFS_ATTR_FATTR_NLINK) {
1562 if (inode->i_nlink != fattr->nlink) {
1563 invalid |= NFS_INO_INVALID_ATTR;
1564 if (S_ISDIR(inode->i_mode))
1565 invalid |= NFS_INO_INVALID_DATA;
bfe86848 1566 set_nlink(inode, fattr->nlink);
9e6e70f8 1567 }
62ab460c
TM
1568 } else if (server->caps & NFS_CAP_NLINK)
1569 invalid |= save_cache_validity & (NFS_INO_INVALID_ATTR
1570 | NFS_INO_REVAL_FORCED);
1da177e4 1571
9e6e70f8 1572 if (fattr->valid & NFS_ATTR_FATTR_SPACE_USED) {
1da177e4
LT
1573 /*
1574 * report the blocks in 512byte units
1575 */
1576 inode->i_blocks = nfs_calc_block_size(fattr->du.nfs3.used);
1da177e4 1577 }
9e6e70f8
TM
1578 if (fattr->valid & NFS_ATTR_FATTR_BLOCKS_USED)
1579 inode->i_blocks = fattr->du.nfs2.blocks;
1da177e4
LT
1580
1581 /* Update attrtimeo value if we're out of the unstable period */
aa9c2669 1582 if (invalid & (NFS_INO_INVALID_ATTR|NFS_INO_INVALID_LABEL)) {
91d5b470 1583 nfs_inc_stats(inode, NFSIOS_ATTRINVALIDATE);
1da177e4 1584 nfsi->attrtimeo = NFS_MINATTRTIMEO(inode);
3e7d950a 1585 nfsi->attrtimeo_timestamp = now;
4704f0e2 1586 nfsi->attr_gencount = nfs_inc_attr_generation_counter();
6d2b2966 1587 } else {
64672d55 1588 if (!time_in_range_open(now, nfsi->attrtimeo_timestamp, nfsi->attrtimeo_timestamp + nfsi->attrtimeo)) {
6d2b2966
TM
1589 if ((nfsi->attrtimeo <<= 1) > NFS_MAXATTRTIMEO(inode))
1590 nfsi->attrtimeo = NFS_MAXATTRTIMEO(inode);
1591 nfsi->attrtimeo_timestamp = now;
1592 }
1da177e4 1593 }
f2115dc9 1594 invalid &= ~NFS_INO_INVALID_ATTR;
aa9c2669 1595 invalid &= ~NFS_INO_INVALID_LABEL;
1da177e4
LT
1596 /* Don't invalidate the data if we were to blame */
1597 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode)
1598 || S_ISLNK(inode->i_mode)))
1599 invalid &= ~NFS_INO_INVALID_DATA;
011e2a7f 1600 if (!NFS_PROTO(inode)->have_delegation(inode, FMODE_READ) ||
62ab460c 1601 (save_cache_validity & NFS_INO_REVAL_FORCED))
55296809 1602 nfsi->cache_validity |= invalid;
1da177e4 1603
de242c0b
DH
1604 if (invalid & NFS_INO_INVALID_DATA)
1605 nfs_fscache_invalidate(inode);
1606
1da177e4 1607 return 0;
b37b03b7 1608 out_err:
1da177e4
LT
1609 /*
1610 * No need to worry about unhashing the dentry, as the
1611 * lookup validation will know that the inode is bad.
1612 * (But we fall through to invalidate the caches.)
1613 */
1614 nfs_invalidate_inode(inode);
1da177e4
LT
1615 return -ESTALE;
1616}
1617
f7b422b1 1618struct inode *nfs_alloc_inode(struct super_block *sb)
1da177e4
LT
1619{
1620 struct nfs_inode *nfsi;
e94b1766 1621 nfsi = (struct nfs_inode *)kmem_cache_alloc(nfs_inode_cachep, GFP_KERNEL);
1da177e4
LT
1622 if (!nfsi)
1623 return NULL;
55296809
CL
1624 nfsi->flags = 0UL;
1625 nfsi->cache_validity = 0UL;
458818ed
TM
1626#ifdef CONFIG_NFS_V3_ACL
1627 nfsi->acl_access = ERR_PTR(-EAGAIN);
1628 nfsi->acl_default = ERR_PTR(-EAGAIN);
1629#endif
89d77c8f 1630#if IS_ENABLED(CONFIG_NFS_V4)
e50a1c2e
BF
1631 nfsi->nfs4_acl = NULL;
1632#endif /* CONFIG_NFS_V4 */
1da177e4
LT
1633 return &nfsi->vfs_inode;
1634}
89d77c8f 1635EXPORT_SYMBOL_GPL(nfs_alloc_inode);
1da177e4 1636
fa0d7e3d 1637static void nfs_i_callback(struct rcu_head *head)
1da177e4 1638{
fa0d7e3d 1639 struct inode *inode = container_of(head, struct inode, i_rcu);
1da177e4
LT
1640 kmem_cache_free(nfs_inode_cachep, NFS_I(inode));
1641}
1642
fa0d7e3d
NP
1643void nfs_destroy_inode(struct inode *inode)
1644{
1645 call_rcu(&inode->i_rcu, nfs_i_callback);
1646}
89d77c8f 1647EXPORT_SYMBOL_GPL(nfs_destroy_inode);
fa0d7e3d 1648
d75d5414
AM
1649static inline void nfs4_init_once(struct nfs_inode *nfsi)
1650{
89d77c8f 1651#if IS_ENABLED(CONFIG_NFS_V4)
d75d5414
AM
1652 INIT_LIST_HEAD(&nfsi->open_states);
1653 nfsi->delegation = NULL;
1654 nfsi->delegation_state = 0;
1655 init_rwsem(&nfsi->rwsem);
e5e94017 1656 nfsi->layout = NULL;
d75d5414
AM
1657#endif
1658}
f7b422b1 1659
51cc5068 1660static void init_once(void *foo)
1da177e4
LT
1661{
1662 struct nfs_inode *nfsi = (struct nfs_inode *) foo;
1663
a35afb83 1664 inode_init_once(&nfsi->vfs_inode);
a35afb83
CL
1665 INIT_LIST_HEAD(&nfsi->open_files);
1666 INIT_LIST_HEAD(&nfsi->access_cache_entry_lru);
1667 INIT_LIST_HEAD(&nfsi->access_cache_inode_lru);
ea2cf228 1668 INIT_LIST_HEAD(&nfsi->commit_info.list);
a35afb83 1669 nfsi->npages = 0;
ea2cf228 1670 nfsi->commit_info.ncommit = 0;
1a0de48a 1671 atomic_set(&nfsi->commit_info.rpcs_out, 0);
565277f6
TM
1672 atomic_set(&nfsi->silly_count, 1);
1673 INIT_HLIST_HEAD(&nfsi->silly_list);
1674 init_waitqueue_head(&nfsi->waitqueue);
a35afb83 1675 nfs4_init_once(nfsi);
1da177e4 1676}
20c2df83 1677
f7b422b1 1678static int __init nfs_init_inodecache(void)
1da177e4
LT
1679{
1680 nfs_inode_cachep = kmem_cache_create("nfs_inode_cache",
1681 sizeof(struct nfs_inode),
fffb60f9
PJ
1682 0, (SLAB_RECLAIM_ACCOUNT|
1683 SLAB_MEM_SPREAD),
20c2df83 1684 init_once);
1da177e4
LT
1685 if (nfs_inode_cachep == NULL)
1686 return -ENOMEM;
1687
1688 return 0;
1689}
1690
266bee88 1691static void nfs_destroy_inodecache(void)
1da177e4 1692{
8c0a8537
KS
1693 /*
1694 * Make sure all delayed rcu free inodes are flushed before we
1695 * destroy cache.
1696 */
1697 rcu_barrier();
1a1d92c1 1698 kmem_cache_destroy(nfs_inode_cachep);
1da177e4
LT
1699}
1700
5746006f 1701struct workqueue_struct *nfsiod_workqueue;
89d77c8f 1702EXPORT_SYMBOL_GPL(nfsiod_workqueue);
5746006f
TM
1703
1704/*
1705 * start up the nfsiod workqueue
1706 */
1707static int nfsiod_start(void)
1708{
1709 struct workqueue_struct *wq;
1710 dprintk("RPC: creating workqueue nfsiod\n");
ada609ee 1711 wq = alloc_workqueue("nfsiod", WQ_MEM_RECLAIM, 0);
5746006f
TM
1712 if (wq == NULL)
1713 return -ENOMEM;
1714 nfsiod_workqueue = wq;
1715 return 0;
1716}
1717
1718/*
1719 * Destroy the nfsiod workqueue
1720 */
1721static void nfsiod_stop(void)
1722{
1723 struct workqueue_struct *wq;
1724
1725 wq = nfsiod_workqueue;
1726 if (wq == NULL)
1727 return;
1728 nfsiod_workqueue = NULL;
1729 destroy_workqueue(wq);
1730}
1731
1b340d01 1732int nfs_net_id;
9e2e74db 1733EXPORT_SYMBOL_GPL(nfs_net_id);
1b340d01
SK
1734
1735static int nfs_net_init(struct net *net)
1736{
6b13168b 1737 nfs_clients_init(net);
c8d74d9b 1738 return 0;
1b340d01
SK
1739}
1740
1741static void nfs_net_exit(struct net *net)
1742{
28cd1b3f 1743 nfs_cleanup_cb_ident_idr(net);
1b340d01
SK
1744}
1745
1746static struct pernet_operations nfs_net_ops = {
1747 .init = nfs_net_init,
1748 .exit = nfs_net_exit,
1749 .id = &nfs_net_id,
1750 .size = sizeof(struct nfs_net),
1751};
1752
1da177e4
LT
1753/*
1754 * Initialize NFS
1755 */
1756static int __init init_nfs_fs(void)
1757{
1758 int err;
1759
1b340d01 1760 err = register_pernet_subsys(&nfs_net_ops);
e571cbf1 1761 if (err < 0)
89d77c8f 1762 goto out9;
e571cbf1 1763
8ec442ae
DH
1764 err = nfs_fscache_register();
1765 if (err < 0)
89d77c8f 1766 goto out8;
8ec442ae 1767
5746006f
TM
1768 err = nfsiod_start();
1769 if (err)
89d77c8f 1770 goto out7;
5746006f 1771
6aaca566
DH
1772 err = nfs_fs_proc_init();
1773 if (err)
89d77c8f 1774 goto out6;
6aaca566 1775
1da177e4
LT
1776 err = nfs_init_nfspagecache();
1777 if (err)
89d77c8f 1778 goto out5;
1da177e4
LT
1779
1780 err = nfs_init_inodecache();
1781 if (err)
89d77c8f 1782 goto out4;
1da177e4
LT
1783
1784 err = nfs_init_readpagecache();
1785 if (err)
89d77c8f 1786 goto out3;
1da177e4
LT
1787
1788 err = nfs_init_writepagecache();
1789 if (err)
89d77c8f 1790 goto out2;
1da177e4 1791
1da177e4
LT
1792 err = nfs_init_directcache();
1793 if (err)
89d77c8f 1794 goto out1;
1da177e4
LT
1795
1796#ifdef CONFIG_PROC_FS
ec7652aa 1797 rpc_proc_register(&init_net, &nfs_rpcstat);
1da177e4 1798#endif
f7b422b1 1799 if ((err = register_nfs_fs()) != 0)
129d1977
BS
1800 goto out0;
1801
1da177e4 1802 return 0;
129d1977 1803out0:
1da177e4 1804#ifdef CONFIG_PROC_FS
ec7652aa 1805 rpc_proc_unregister(&init_net, "nfs");
1da177e4 1806#endif
1da177e4 1807 nfs_destroy_directcache();
89d77c8f 1808out1:
129d1977 1809 nfs_destroy_writepagecache();
89d77c8f 1810out2:
129d1977 1811 nfs_destroy_readpagecache();
89d77c8f 1812out3:
129d1977 1813 nfs_destroy_inodecache();
89d77c8f 1814out4:
129d1977 1815 nfs_destroy_nfspagecache();
89d77c8f 1816out5:
129d1977 1817 nfs_fs_proc_exit();
89d77c8f 1818out6:
129d1977 1819 nfsiod_stop();
89d77c8f 1820out7:
129d1977 1821 nfs_fscache_unregister();
89d77c8f 1822out8:
129d1977 1823 unregister_pernet_subsys(&nfs_net_ops);
89d77c8f 1824out9:
1da177e4
LT
1825 return err;
1826}
1827
1828static void __exit exit_nfs_fs(void)
1829{
1da177e4 1830 nfs_destroy_directcache();
1da177e4
LT
1831 nfs_destroy_writepagecache();
1832 nfs_destroy_readpagecache();
1833 nfs_destroy_inodecache();
1834 nfs_destroy_nfspagecache();
8ec442ae 1835 nfs_fscache_unregister();
1b340d01 1836 unregister_pernet_subsys(&nfs_net_ops);
1da177e4 1837#ifdef CONFIG_PROC_FS
ec7652aa 1838 rpc_proc_unregister(&init_net, "nfs");
1da177e4 1839#endif
f7b422b1 1840 unregister_nfs_fs();
6aaca566 1841 nfs_fs_proc_exit();
5746006f 1842 nfsiod_stop();
1da177e4
LT
1843}
1844
1845/* Not quite true; I just maintain it */
1846MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
1847MODULE_LICENSE("GPL");
f43bf0be 1848module_param(enable_ino64, bool, 0644);
1da177e4
LT
1849
1850module_init(init_nfs_fs)
1851module_exit(exit_nfs_fs)
This page took 0.755561 seconds and 5 git commands to generate.