blob: b9f35ca266c294a039ef4762ca78e355a6f4dde3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/fs/nfs/inode.c
3 *
4 * Copyright (C) 1992 Rick Sladkey
5 *
6 * nfs inode and superblock handling functions
7 *
8 * Modularised by Alan Cox <Alan.Cox@linux.org>, while hacking some
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
16#include <linux/config.h>
17#include <linux/module.h>
18#include <linux/init.h>
19
20#include <linux/time.h>
21#include <linux/kernel.h>
22#include <linux/mm.h>
23#include <linux/string.h>
24#include <linux/stat.h>
25#include <linux/errno.h>
26#include <linux/unistd.h>
27#include <linux/sunrpc/clnt.h>
28#include <linux/sunrpc/stats.h>
Chuck Lever4ece3a22006-03-20 13:44:22 -050029#include <linux/sunrpc/metrics.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/nfs_fs.h>
31#include <linux/nfs_mount.h>
32#include <linux/nfs4_mount.h>
33#include <linux/lockd/bind.h>
34#include <linux/smp_lock.h>
35#include <linux/seq_file.h>
36#include <linux/mount.h>
37#include <linux/nfs_idmap.h>
38#include <linux/vfs.h>
39
40#include <asm/system.h>
41#include <asm/uaccess.h>
42
Trond Myklebust4ce79712005-06-22 17:16:21 +000043#include "nfs4_fs.h"
Trond Myklebusta72b4422006-01-03 09:55:41 +010044#include "callback.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070045#include "delegation.h"
Chuck Leverd9ef5a82006-03-20 13:44:13 -050046#include "iostat.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
48#define NFSDBG_FACILITY NFSDBG_VFS
49#define NFS_PARANOIA 1
50
51/* Maximum number of readahead requests
52 * FIXME: this should really be a sysctl so that users may tune it to suit
53 * their needs. People that do NFS over a slow network, might for
54 * instance want to reduce it to something closer to 1 for improved
55 * interactive response.
56 */
57#define NFS_MAX_READAHEAD (RPC_DEF_SLOT_TABLE - 1)
58
59static void nfs_invalidate_inode(struct inode *);
Trond Myklebust24aa1fe2005-12-03 15:20:07 -050060static int nfs_update_inode(struct inode *, struct nfs_fattr *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62static struct inode *nfs_alloc_inode(struct super_block *sb);
63static void nfs_destroy_inode(struct inode *);
64static int nfs_write_inode(struct inode *,int);
65static void nfs_delete_inode(struct inode *);
66static void nfs_clear_inode(struct inode *);
67static void nfs_umount_begin(struct super_block *);
68static int nfs_statfs(struct super_block *, struct kstatfs *);
69static int nfs_show_options(struct seq_file *, struct vfsmount *);
Chuck Leverd9ef5a82006-03-20 13:44:13 -050070static int nfs_show_stats(struct seq_file *, struct vfsmount *);
Trond Myklebustada70d92005-06-22 17:16:22 +000071static void nfs_zap_acl_cache(struct inode *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73static struct rpc_program nfs_program;
74
75static struct super_operations nfs_sops = {
76 .alloc_inode = nfs_alloc_inode,
77 .destroy_inode = nfs_destroy_inode,
78 .write_inode = nfs_write_inode,
79 .delete_inode = nfs_delete_inode,
80 .statfs = nfs_statfs,
81 .clear_inode = nfs_clear_inode,
82 .umount_begin = nfs_umount_begin,
83 .show_options = nfs_show_options,
Chuck Leverd9ef5a82006-03-20 13:44:13 -050084 .show_stats = nfs_show_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -070085};
86
87/*
88 * RPC cruft for NFS
89 */
90static struct rpc_stat nfs_rpcstat = {
91 .program = &nfs_program
92};
93static struct rpc_version * nfs_version[] = {
94 NULL,
95 NULL,
96 &nfs_version2,
97#if defined(CONFIG_NFS_V3)
98 &nfs_version3,
99#elif defined(CONFIG_NFS_V4)
100 NULL,
101#endif
102#if defined(CONFIG_NFS_V4)
103 &nfs_version4,
104#endif
105};
106
107static struct rpc_program nfs_program = {
108 .name = "nfs",
109 .number = NFS_PROGRAM,
110 .nrvers = sizeof(nfs_version) / sizeof(nfs_version[0]),
111 .version = nfs_version,
112 .stats = &nfs_rpcstat,
113 .pipe_dir_name = "/nfs",
114};
115
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000116#ifdef CONFIG_NFS_V3_ACL
117static struct rpc_stat nfsacl_rpcstat = { &nfsacl_program };
118static struct rpc_version * nfsacl_version[] = {
119 [3] = &nfsacl_version3,
120};
121
122struct rpc_program nfsacl_program = {
123 .name = "nfsacl",
124 .number = NFS_ACL_PROGRAM,
125 .nrvers = sizeof(nfsacl_version) / sizeof(nfsacl_version[0]),
126 .version = nfsacl_version,
127 .stats = &nfsacl_rpcstat,
128};
129#endif /* CONFIG_NFS_V3_ACL */
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131static inline unsigned long
132nfs_fattr_to_ino_t(struct nfs_fattr *fattr)
133{
134 return nfs_fileid_to_ino_t(fattr->fileid);
135}
136
137static int
138nfs_write_inode(struct inode *inode, int sync)
139{
140 int flags = sync ? FLUSH_WAIT : 0;
141 int ret;
142
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000143 ret = nfs_commit_inode(inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 if (ret < 0)
145 return ret;
146 return 0;
147}
148
149static void
150nfs_delete_inode(struct inode * inode)
151{
152 dprintk("NFS: delete_inode(%s/%ld)\n", inode->i_sb->s_id, inode->i_ino);
153
Mark Fashehfef26652005-09-09 13:01:31 -0700154 truncate_inode_pages(&inode->i_data, 0);
155
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156 nfs_wb_all(inode);
157 /*
158 * The following should never happen...
159 */
160 if (nfs_have_writebacks(inode)) {
161 printk(KERN_ERR "nfs_delete_inode: inode %ld has pending RPC requests\n", inode->i_ino);
162 }
163
164 clear_inode(inode);
165}
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167static void
168nfs_clear_inode(struct inode *inode)
169{
170 struct nfs_inode *nfsi = NFS_I(inode);
171 struct rpc_cred *cred;
172
173 nfs_wb_all(inode);
174 BUG_ON (!list_empty(&nfsi->open_files));
Trond Myklebustada70d92005-06-22 17:16:22 +0000175 nfs_zap_acl_cache(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176 cred = nfsi->cache_access.cred;
177 if (cred)
178 put_rpccred(cred);
179 BUG_ON(atomic_read(&nfsi->data_updates) != 0);
180}
181
182void
183nfs_umount_begin(struct super_block *sb)
184{
J. Bruce Fields6a192752005-06-22 17:16:23 +0000185 struct rpc_clnt *rpc = NFS_SB(sb)->client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
187 /* -EIO all pending I/O */
J. Bruce Fields6a192752005-06-22 17:16:23 +0000188 if (!IS_ERR(rpc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 rpc_killall_tasks(rpc);
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000190 rpc = NFS_SB(sb)->client_acl;
191 if (!IS_ERR(rpc))
192 rpc_killall_tasks(rpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193}
194
195
196static inline unsigned long
197nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp)
198{
199 /* make sure blocksize is a power of two */
200 if ((bsize & (bsize - 1)) || nrbitsp) {
201 unsigned char nrbits;
202
203 for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--)
204 ;
205 bsize = 1 << nrbits;
206 if (nrbitsp)
207 *nrbitsp = nrbits;
208 }
209
210 return bsize;
211}
212
213/*
214 * Calculate the number of 512byte blocks used.
215 */
216static inline unsigned long
217nfs_calc_block_size(u64 tsize)
218{
219 loff_t used = (tsize + 511) >> 9;
220 return (used > ULONG_MAX) ? ULONG_MAX : used;
221}
222
223/*
224 * Compute and set NFS server blocksize
225 */
226static inline unsigned long
227nfs_block_size(unsigned long bsize, unsigned char *nrbitsp)
228{
Chuck Lever40859d72005-11-30 18:09:02 -0500229 if (bsize < NFS_MIN_FILE_IO_SIZE)
230 bsize = NFS_DEF_FILE_IO_SIZE;
231 else if (bsize >= NFS_MAX_FILE_IO_SIZE)
232 bsize = NFS_MAX_FILE_IO_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233
234 return nfs_block_bits(bsize, nrbitsp);
235}
236
237/*
238 * Obtain the root inode of the file system.
239 */
240static struct inode *
241nfs_get_root(struct super_block *sb, struct nfs_fh *rootfh, struct nfs_fsinfo *fsinfo)
242{
243 struct nfs_server *server = NFS_SB(sb);
244 struct inode *rooti;
245 int error;
246
247 error = server->rpc_ops->getroot(server, rootfh, fsinfo);
248 if (error < 0) {
249 dprintk("nfs_get_root: getattr error = %d\n", -error);
250 return ERR_PTR(error);
251 }
252
253 rooti = nfs_fhget(sb, rootfh, fsinfo->fattr);
254 if (!rooti)
255 return ERR_PTR(-ENOMEM);
256 return rooti;
257}
258
259/*
260 * Do NFS version-independent mount processing, and sanity checking
261 */
262static int
263nfs_sb_init(struct super_block *sb, rpc_authflavor_t authflavor)
264{
265 struct nfs_server *server;
266 struct inode *root_inode;
267 struct nfs_fattr fattr;
268 struct nfs_fsinfo fsinfo = {
269 .fattr = &fattr,
270 };
271 struct nfs_pathconf pathinfo = {
272 .fattr = &fattr,
273 };
274 int no_root_error = 0;
275 unsigned long max_rpc_payload;
276
277 /* We probably want something more informative here */
278 snprintf(sb->s_id, sizeof(sb->s_id), "%x:%x", MAJOR(sb->s_dev), MINOR(sb->s_dev));
279
280 server = NFS_SB(sb);
281
282 sb->s_magic = NFS_SUPER_MAGIC;
283
284 root_inode = nfs_get_root(sb, &server->fh, &fsinfo);
285 /* Did getting the root inode fail? */
286 if (IS_ERR(root_inode)) {
287 no_root_error = PTR_ERR(root_inode);
288 goto out_no_root;
289 }
290 sb->s_root = d_alloc_root(root_inode);
291 if (!sb->s_root) {
292 no_root_error = -ENOMEM;
293 goto out_no_root;
294 }
295 sb->s_root->d_op = server->rpc_ops->dentry_ops;
296
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500297 server->io_stats = nfs_alloc_iostats();
298 if (!server->io_stats) {
299 no_root_error = -ENOMEM;
300 goto out_no_root;
301 }
302
Chuck Lever67ec9f42006-03-20 13:44:15 -0500303 /* mount time stamp, in seconds */
304 server->mount_time = jiffies;
305
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 /* Get some general file system info */
307 if (server->namelen == 0 &&
308 server->rpc_ops->pathconf(server, &server->fh, &pathinfo) >= 0)
309 server->namelen = pathinfo.max_namelen;
310 /* Work out a lot of parameters */
311 if (server->rsize == 0)
312 server->rsize = nfs_block_size(fsinfo.rtpref, NULL);
313 if (server->wsize == 0)
314 server->wsize = nfs_block_size(fsinfo.wtpref, NULL);
315
316 if (fsinfo.rtmax >= 512 && server->rsize > fsinfo.rtmax)
317 server->rsize = nfs_block_size(fsinfo.rtmax, NULL);
318 if (fsinfo.wtmax >= 512 && server->wsize > fsinfo.wtmax)
319 server->wsize = nfs_block_size(fsinfo.wtmax, NULL);
320
321 max_rpc_payload = nfs_block_size(rpc_max_payload(server->client), NULL);
322 if (server->rsize > max_rpc_payload)
323 server->rsize = max_rpc_payload;
Chuck Lever40859d72005-11-30 18:09:02 -0500324 if (server->rsize > NFS_MAX_FILE_IO_SIZE)
325 server->rsize = NFS_MAX_FILE_IO_SIZE;
326 server->rpages = (server->rsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
327
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 if (server->wsize > max_rpc_payload)
329 server->wsize = max_rpc_payload;
Chuck Lever40859d72005-11-30 18:09:02 -0500330 if (server->wsize > NFS_MAX_FILE_IO_SIZE)
331 server->wsize = NFS_MAX_FILE_IO_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 server->wpages = (server->wsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334 if (sb->s_blocksize == 0)
335 sb->s_blocksize = nfs_block_bits(server->wsize,
336 &sb->s_blocksize_bits);
337 server->wtmult = nfs_block_bits(fsinfo.wtmult, NULL);
338
339 server->dtsize = nfs_block_size(fsinfo.dtpref, NULL);
340 if (server->dtsize > PAGE_CACHE_SIZE)
341 server->dtsize = PAGE_CACHE_SIZE;
342 if (server->dtsize > server->rsize)
343 server->dtsize = server->rsize;
344
345 if (server->flags & NFS_MOUNT_NOAC) {
346 server->acregmin = server->acregmax = 0;
347 server->acdirmin = server->acdirmax = 0;
348 sb->s_flags |= MS_SYNCHRONOUS;
349 }
350 server->backing_dev_info.ra_pages = server->rpages * NFS_MAX_READAHEAD;
351
352 sb->s_maxbytes = fsinfo.maxfilesize;
353 if (sb->s_maxbytes > MAX_LFS_FILESIZE)
354 sb->s_maxbytes = MAX_LFS_FILESIZE;
355
356 server->client->cl_intr = (server->flags & NFS_MOUNT_INTR) ? 1 : 0;
357 server->client->cl_softrtry = (server->flags & NFS_MOUNT_SOFT) ? 1 : 0;
358
359 /* We're airborne Set socket buffersize */
360 rpc_setbufsize(server->client, server->wsize + 100, server->rsize + 100);
361 return 0;
362 /* Yargs. It didn't work out. */
363out_no_root:
364 dprintk("nfs_sb_init: get root inode failed: errno %d\n", -no_root_error);
365 if (!IS_ERR(root_inode))
366 iput(root_inode);
367 return no_root_error;
368}
369
Chuck Levereab5c082005-08-11 16:25:14 -0400370static void nfs_init_timeout_values(struct rpc_timeout *to, int proto, unsigned int timeo, unsigned int retrans)
371{
372 to->to_initval = timeo * HZ / 10;
373 to->to_retries = retrans;
374 if (!to->to_retries)
375 to->to_retries = 2;
376
377 switch (proto) {
378 case IPPROTO_TCP:
379 if (!to->to_initval)
380 to->to_initval = 60 * HZ;
Chuck Lever03bf4b72005-08-25 16:25:55 -0700381 if (to->to_initval > NFS_MAX_TCP_TIMEOUT)
382 to->to_initval = NFS_MAX_TCP_TIMEOUT;
Chuck Levereab5c082005-08-11 16:25:14 -0400383 to->to_increment = to->to_initval;
384 to->to_maxval = to->to_initval + (to->to_increment * to->to_retries);
385 to->to_exponential = 0;
386 break;
387 case IPPROTO_UDP:
388 default:
389 if (!to->to_initval)
390 to->to_initval = 11 * HZ / 10;
Chuck Lever03bf4b72005-08-25 16:25:55 -0700391 if (to->to_initval > NFS_MAX_UDP_TIMEOUT)
392 to->to_initval = NFS_MAX_UDP_TIMEOUT;
393 to->to_maxval = NFS_MAX_UDP_TIMEOUT;
Chuck Levereab5c082005-08-11 16:25:14 -0400394 to->to_exponential = 1;
395 break;
396 }
397}
398
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399/*
400 * Create an RPC client handle.
401 */
402static struct rpc_clnt *
403nfs_create_client(struct nfs_server *server, const struct nfs_mount_data *data)
404{
405 struct rpc_timeout timeparms;
406 struct rpc_xprt *xprt = NULL;
407 struct rpc_clnt *clnt = NULL;
Chuck Levereab5c082005-08-11 16:25:14 -0400408 int proto = (data->flags & NFS_MOUNT_TCP) ? IPPROTO_TCP : IPPROTO_UDP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
Chuck Levereab5c082005-08-11 16:25:14 -0400410 nfs_init_timeout_values(&timeparms, proto, data->timeo, data->retrans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411
Chuck Lever7a480e22006-03-20 13:44:12 -0500412 server->retrans_timeo = timeparms.to_initval;
413 server->retrans_count = timeparms.to_retries;
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415 /* create transport and client */
Chuck Levereab5c082005-08-11 16:25:14 -0400416 xprt = xprt_create_proto(proto, &server->addr, &timeparms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417 if (IS_ERR(xprt)) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +0000418 dprintk("%s: cannot create RPC transport. Error = %ld\n",
419 __FUNCTION__, PTR_ERR(xprt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420 return (struct rpc_clnt *)xprt;
421 }
422 clnt = rpc_create_client(xprt, server->hostname, &nfs_program,
423 server->rpc_ops->version, data->pseudoflavor);
424 if (IS_ERR(clnt)) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +0000425 dprintk("%s: cannot create RPC client. Error = %ld\n",
426 __FUNCTION__, PTR_ERR(xprt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427 goto out_fail;
428 }
429
430 clnt->cl_intr = 1;
431 clnt->cl_softrtry = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432
433 return clnt;
434
435out_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 return clnt;
437}
438
439/*
440 * The way this works is that the mount process passes a structure
441 * in the data argument which contains the server's IP address
442 * and the root file handle obtained from the server's mount
443 * daemon. We stash these away in the private superblock fields.
444 */
445static int
446nfs_fill_super(struct super_block *sb, struct nfs_mount_data *data, int silent)
447{
448 struct nfs_server *server;
449 rpc_authflavor_t authflavor;
450
451 server = NFS_SB(sb);
452 sb->s_blocksize_bits = 0;
453 sb->s_blocksize = 0;
454 if (data->bsize)
455 sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
456 if (data->rsize)
457 server->rsize = nfs_block_size(data->rsize, NULL);
458 if (data->wsize)
459 server->wsize = nfs_block_size(data->wsize, NULL);
460 server->flags = data->flags & NFS_MOUNT_FLAGMASK;
461
462 server->acregmin = data->acregmin*HZ;
463 server->acregmax = data->acregmax*HZ;
464 server->acdirmin = data->acdirmin*HZ;
465 server->acdirmax = data->acdirmax*HZ;
466
467 /* Start lockd here, before we might error out */
468 if (!(server->flags & NFS_MOUNT_NONLM))
469 lockd_up();
470
471 server->namelen = data->namlen;
472 server->hostname = kmalloc(strlen(data->hostname) + 1, GFP_KERNEL);
473 if (!server->hostname)
474 return -ENOMEM;
475 strcpy(server->hostname, data->hostname);
476
477 /* Check NFS protocol revision and initialize RPC op vector
478 * and file handle pool. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479#ifdef CONFIG_NFS_V3
Trond Myklebust9085bbc2005-06-22 17:16:20 +0000480 if (server->flags & NFS_MOUNT_VER3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 server->rpc_ops = &nfs_v3_clientops;
482 server->caps |= NFS_CAP_READDIRPLUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483 } else {
484 server->rpc_ops = &nfs_v2_clientops;
485 }
Trond Myklebust9085bbc2005-06-22 17:16:20 +0000486#else
487 server->rpc_ops = &nfs_v2_clientops;
488#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489
490 /* Fill in pseudoflavor for mount version < 5 */
491 if (!(data->flags & NFS_MOUNT_SECFLAVOUR))
492 data->pseudoflavor = RPC_AUTH_UNIX;
493 authflavor = data->pseudoflavor; /* save for sb_init() */
494 /* XXX maybe we want to add a server->pseudoflavor field */
495
496 /* Create RPC client handles */
497 server->client = nfs_create_client(server, data);
498 if (IS_ERR(server->client))
499 return PTR_ERR(server->client);
500 /* RFC 2623, sec 2.3.2 */
501 if (authflavor != RPC_AUTH_UNIX) {
J. Bruce Fields6a192752005-06-22 17:16:23 +0000502 struct rpc_auth *auth;
503
Linus Torvalds1da177e2005-04-16 15:20:36 -0700504 server->client_sys = rpc_clone_client(server->client);
505 if (IS_ERR(server->client_sys))
506 return PTR_ERR(server->client_sys);
J. Bruce Fields6a192752005-06-22 17:16:23 +0000507 auth = rpcauth_create(RPC_AUTH_UNIX, server->client_sys);
508 if (IS_ERR(auth))
509 return PTR_ERR(auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510 } else {
511 atomic_inc(&server->client->cl_count);
512 server->client_sys = server->client;
513 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514 if (server->flags & NFS_MOUNT_VER3) {
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000515#ifdef CONFIG_NFS_V3_ACL
516 if (!(server->flags & NFS_MOUNT_NOACL)) {
517 server->client_acl = rpc_bind_new_program(server->client, &nfsacl_program, 3);
518 /* No errors! Assume that Sun nfsacls are supported */
519 if (!IS_ERR(server->client_acl))
520 server->caps |= NFS_CAP_ACLS;
521 }
522#else
523 server->flags &= ~NFS_MOUNT_NOACL;
524#endif /* CONFIG_NFS_V3_ACL */
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000525 /*
526 * The VFS shouldn't apply the umask to mode bits. We will
527 * do so ourselves when necessary.
528 */
529 sb->s_flags |= MS_POSIXACL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700530 if (server->namelen == 0 || server->namelen > NFS3_MAXNAMLEN)
531 server->namelen = NFS3_MAXNAMLEN;
532 sb->s_time_gran = 1;
533 } else {
534 if (server->namelen == 0 || server->namelen > NFS2_MAXNAMLEN)
535 server->namelen = NFS2_MAXNAMLEN;
536 }
537
538 sb->s_op = &nfs_sops;
539 return nfs_sb_init(sb, authflavor);
540}
541
542static int
543nfs_statfs(struct super_block *sb, struct kstatfs *buf)
544{
545 struct nfs_server *server = NFS_SB(sb);
546 unsigned char blockbits;
547 unsigned long blockres;
548 struct nfs_fh *rootfh = NFS_FH(sb->s_root->d_inode);
549 struct nfs_fattr fattr;
550 struct nfs_fsstat res = {
551 .fattr = &fattr,
552 };
553 int error;
554
555 lock_kernel();
556
557 error = server->rpc_ops->statfs(server, rootfh, &res);
558 buf->f_type = NFS_SUPER_MAGIC;
559 if (error < 0)
560 goto out_err;
561
562 /*
563 * Current versions of glibc do not correctly handle the
564 * case where f_frsize != f_bsize. Eventually we want to
565 * report the value of wtmult in this field.
566 */
567 buf->f_frsize = sb->s_blocksize;
568
569 /*
570 * On most *nix systems, f_blocks, f_bfree, and f_bavail
571 * are reported in units of f_frsize. Linux hasn't had
572 * an f_frsize field in its statfs struct until recently,
573 * thus historically Linux's sys_statfs reports these
574 * fields in units of f_bsize.
575 */
576 buf->f_bsize = sb->s_blocksize;
577 blockbits = sb->s_blocksize_bits;
578 blockres = (1 << blockbits) - 1;
579 buf->f_blocks = (res.tbytes + blockres) >> blockbits;
580 buf->f_bfree = (res.fbytes + blockres) >> blockbits;
581 buf->f_bavail = (res.abytes + blockres) >> blockbits;
582
583 buf->f_files = res.tfiles;
584 buf->f_ffree = res.afiles;
585
586 buf->f_namelen = server->namelen;
587 out:
588 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589 return 0;
590
591 out_err:
Chuck Leverdc20f802005-11-30 18:08:57 -0500592 dprintk("%s: statfs error = %d\n", __FUNCTION__, -error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 buf->f_bsize = buf->f_blocks = buf->f_bfree = buf->f_bavail = -1;
594 goto out;
595
596}
597
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500598static void nfs_show_mount_options(struct seq_file *m, struct nfs_server *nfss, int showdefaults)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599{
600 static struct proc_nfs_info {
601 int flag;
602 char *str;
603 char *nostr;
604 } nfs_info[] = {
605 { NFS_MOUNT_SOFT, ",soft", ",hard" },
606 { NFS_MOUNT_INTR, ",intr", "" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 { NFS_MOUNT_NOCTO, ",nocto", "" },
608 { NFS_MOUNT_NOAC, ",noac", "" },
Chuck Leverc8bded92006-03-20 13:44:13 -0500609 { NFS_MOUNT_NONLM, ",nolock", "" },
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000610 { NFS_MOUNT_NOACL, ",noacl", "" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700611 { 0, NULL, NULL }
612 };
613 struct proc_nfs_info *nfs_infop;
Trond Myklebust3063d8a2005-08-25 16:25:57 -0700614 char buf[12];
615 char *proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616
Chuck Leverc8bded92006-03-20 13:44:13 -0500617 seq_printf(m, ",vers=%d", nfss->rpc_ops->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700618 seq_printf(m, ",rsize=%d", nfss->rsize);
619 seq_printf(m, ",wsize=%d", nfss->wsize);
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500620 if (nfss->acregmin != 3*HZ || showdefaults)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621 seq_printf(m, ",acregmin=%d", nfss->acregmin/HZ);
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500622 if (nfss->acregmax != 60*HZ || showdefaults)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 seq_printf(m, ",acregmax=%d", nfss->acregmax/HZ);
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500624 if (nfss->acdirmin != 30*HZ || showdefaults)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700625 seq_printf(m, ",acdirmin=%d", nfss->acdirmin/HZ);
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500626 if (nfss->acdirmax != 60*HZ || showdefaults)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627 seq_printf(m, ",acdirmax=%d", nfss->acdirmax/HZ);
628 for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) {
629 if (nfss->flags & nfs_infop->flag)
630 seq_puts(m, nfs_infop->str);
631 else
632 seq_puts(m, nfs_infop->nostr);
633 }
Trond Myklebust3063d8a2005-08-25 16:25:57 -0700634 switch (nfss->client->cl_xprt->prot) {
635 case IPPROTO_TCP:
636 proto = "tcp";
637 break;
638 case IPPROTO_UDP:
639 proto = "udp";
640 break;
641 default:
642 snprintf(buf, sizeof(buf), "%u", nfss->client->cl_xprt->prot);
643 proto = buf;
644 }
645 seq_printf(m, ",proto=%s", proto);
Chuck Lever7a480e22006-03-20 13:44:12 -0500646 seq_printf(m, ",timeo=%lu", 10U * nfss->retrans_timeo / HZ);
647 seq_printf(m, ",retrans=%u", nfss->retrans_count);
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500648}
649
650static int nfs_show_options(struct seq_file *m, struct vfsmount *mnt)
651{
652 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
653
654 nfs_show_mount_options(m, nfss, 0);
655
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 seq_puts(m, ",addr=");
657 seq_escape(m, nfss->hostname, " \t\n\\");
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500658
659 return 0;
660}
661
662static int nfs_show_stats(struct seq_file *m, struct vfsmount *mnt)
663{
664 int i, cpu;
665 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
666 struct rpc_auth *auth = nfss->client->cl_auth;
667 struct nfs_iostats totals = { };
668
669 seq_printf(m, "statvers=%s", NFS_IOSTAT_VERS);
670
671 /*
672 * Display all mount option settings
673 */
674 seq_printf(m, "\n\topts:\t");
675 seq_puts(m, mnt->mnt_sb->s_flags & MS_RDONLY ? "ro" : "rw");
676 seq_puts(m, mnt->mnt_sb->s_flags & MS_SYNCHRONOUS ? ",sync" : "");
677 seq_puts(m, mnt->mnt_sb->s_flags & MS_NOATIME ? ",noatime" : "");
678 seq_puts(m, mnt->mnt_sb->s_flags & MS_NODIRATIME ? ",nodiratime" : "");
679 nfs_show_mount_options(m, nfss, 1);
680
Chuck Lever67ec9f42006-03-20 13:44:15 -0500681 seq_printf(m, "\n\tage:\t%lu", (jiffies - nfss->mount_time) / HZ);
682
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500683 seq_printf(m, "\n\tcaps:\t");
684 seq_printf(m, "caps=0x%x", nfss->caps);
685 seq_printf(m, ",wtmult=%d", nfss->wtmult);
686 seq_printf(m, ",dtsize=%d", nfss->dtsize);
687 seq_printf(m, ",bsize=%d", nfss->bsize);
688 seq_printf(m, ",namelen=%d", nfss->namelen);
689
690#ifdef CONFIG_NFS_V4
691 if (nfss->rpc_ops->version == 4) {
692 seq_printf(m, "\n\tnfsv4:\t");
693 seq_printf(m, "bm0=0x%x", nfss->attr_bitmask[0]);
694 seq_printf(m, ",bm1=0x%x", nfss->attr_bitmask[1]);
695 seq_printf(m, ",acl=0x%x", nfss->acl_bitmask);
696 }
697#endif
698
699 /*
700 * Display security flavor in effect for this mount
701 */
702 seq_printf(m, "\n\tsec:\tflavor=%d", auth->au_ops->au_flavor);
703 if (auth->au_flavor)
704 seq_printf(m, ",pseudoflavor=%d", auth->au_flavor);
705
706 /*
707 * Display superblock I/O counters
708 */
709 for (cpu = 0; cpu < NR_CPUS; cpu++) {
710 struct nfs_iostats *stats;
711
712 if (!cpu_possible(cpu))
713 continue;
714
715 preempt_disable();
716 stats = per_cpu_ptr(nfss->io_stats, cpu);
717
718 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
719 totals.events[i] += stats->events[i];
720 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
721 totals.bytes[i] += stats->bytes[i];
722
723 preempt_enable();
724 }
725
726 seq_printf(m, "\n\tevents:\t");
727 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
728 seq_printf(m, "%lu ", totals.events[i]);
729 seq_printf(m, "\n\tbytes:\t");
730 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
731 seq_printf(m, "%Lu ", totals.bytes[i]);
Chuck Lever4ece3a22006-03-20 13:44:22 -0500732 seq_printf(m, "\n");
733
734 rpc_print_iostats(m, nfss->client);
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500735
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return 0;
737}
738
Trond Myklebust29884df2005-12-13 16:13:54 -0500739/**
740 * nfs_sync_mapping - helper to flush all mmapped dirty data to disk
741 */
742int nfs_sync_mapping(struct address_space *mapping)
743{
744 int ret;
745
746 if (mapping->nrpages == 0)
747 return 0;
748 unmap_mapping_range(mapping, 0, 0, 0);
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800749 ret = filemap_write_and_wait(mapping);
Trond Myklebust29884df2005-12-13 16:13:54 -0500750 if (ret != 0)
751 goto out;
752 ret = nfs_wb_all(mapping->host);
753out:
754 return ret;
755}
756
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757/*
758 * Invalidate the local caches
759 */
Trond Myklebustb37b03b2005-11-25 17:10:06 -0500760static void nfs_zap_caches_locked(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700761{
762 struct nfs_inode *nfsi = NFS_I(inode);
763 int mode = inode->i_mode;
764
Chuck Lever91d5b472006-03-20 13:44:14 -0500765 nfs_inc_stats(inode, NFSIOS_ATTRINVALIDATE);
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 NFS_ATTRTIMEO(inode) = NFS_MINATTRTIMEO(inode);
768 NFS_ATTRTIMEO_UPDATE(inode) = jiffies;
769
770 memset(NFS_COOKIEVERF(inode), 0, sizeof(NFS_COOKIEVERF(inode)));
771 if (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))
Chuck Lever55296802005-08-18 11:24:09 -0700772 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA|NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL|NFS_INO_REVAL_PAGECACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 else
Chuck Lever55296802005-08-18 11:24:09 -0700774 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL|NFS_INO_REVAL_PAGECACHE;
Trond Myklebustb37b03b2005-11-25 17:10:06 -0500775}
Chuck Leverdc592502005-08-18 11:24:12 -0700776
Trond Myklebustb37b03b2005-11-25 17:10:06 -0500777void nfs_zap_caches(struct inode *inode)
778{
779 spin_lock(&inode->i_lock);
780 nfs_zap_caches_locked(inode);
Chuck Leverdc592502005-08-18 11:24:12 -0700781 spin_unlock(&inode->i_lock);
Trond Myklebustada70d92005-06-22 17:16:22 +0000782}
783
784static void nfs_zap_acl_cache(struct inode *inode)
785{
786 void (*clear_acl_cache)(struct inode *);
787
788 clear_acl_cache = NFS_PROTO(inode)->clear_acl_cache;
789 if (clear_acl_cache != NULL)
790 clear_acl_cache(inode);
Chuck Leverdc592502005-08-18 11:24:12 -0700791 spin_lock(&inode->i_lock);
Chuck Lever55296802005-08-18 11:24:09 -0700792 NFS_I(inode)->cache_validity &= ~NFS_INO_INVALID_ACL;
Chuck Leverdc592502005-08-18 11:24:12 -0700793 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794}
795
796/*
Trond Myklebustb37b03b2005-11-25 17:10:06 -0500797 * Invalidate, but do not unhash, the inode.
798 * NB: must be called with inode->i_lock held!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 */
Trond Myklebustb37b03b2005-11-25 17:10:06 -0500800static void nfs_invalidate_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801{
Trond Myklebustb37b03b2005-11-25 17:10:06 -0500802 set_bit(NFS_INO_STALE, &NFS_FLAGS(inode));
803 nfs_zap_caches_locked(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700804}
805
806struct nfs_find_desc {
807 struct nfs_fh *fh;
808 struct nfs_fattr *fattr;
809};
810
811/*
812 * In NFSv3 we can have 64bit inode numbers. In order to support
813 * this, and re-exported directories (also seen in NFSv2)
814 * we are forced to allow 2 different inodes to have the same
815 * i_ino.
816 */
817static int
818nfs_find_actor(struct inode *inode, void *opaque)
819{
820 struct nfs_find_desc *desc = (struct nfs_find_desc *)opaque;
821 struct nfs_fh *fh = desc->fh;
822 struct nfs_fattr *fattr = desc->fattr;
823
824 if (NFS_FILEID(inode) != fattr->fileid)
825 return 0;
826 if (nfs_compare_fh(NFS_FH(inode), fh))
827 return 0;
828 if (is_bad_inode(inode) || NFS_STALE(inode))
829 return 0;
830 return 1;
831}
832
833static int
834nfs_init_locked(struct inode *inode, void *opaque)
835{
836 struct nfs_find_desc *desc = (struct nfs_find_desc *)opaque;
837 struct nfs_fattr *fattr = desc->fattr;
838
839 NFS_FILEID(inode) = fattr->fileid;
840 nfs_copy_fh(NFS_FH(inode), desc->fh);
841 return 0;
842}
843
844/* Don't use READDIRPLUS on directories that we believe are too large */
845#define NFS_LIMIT_READDIRPLUS (8*PAGE_SIZE)
846
847/*
848 * This is our front-end to iget that looks up inodes by file handle
849 * instead of inode number.
850 */
851struct inode *
852nfs_fhget(struct super_block *sb, struct nfs_fh *fh, struct nfs_fattr *fattr)
853{
854 struct nfs_find_desc desc = {
855 .fh = fh,
856 .fattr = fattr
857 };
858 struct inode *inode = NULL;
859 unsigned long hash;
860
861 if ((fattr->valid & NFS_ATTR_FATTR) == 0)
862 goto out_no_inode;
863
864 if (!fattr->nlink) {
865 printk("NFS: Buggy server - nlink == 0!\n");
866 goto out_no_inode;
867 }
868
869 hash = nfs_fattr_to_ino_t(fattr);
870
871 if (!(inode = iget5_locked(sb, hash, nfs_find_actor, nfs_init_locked, &desc)))
872 goto out_no_inode;
873
874 if (inode->i_state & I_NEW) {
875 struct nfs_inode *nfsi = NFS_I(inode);
876
877 /* We set i_ino for the few things that still rely on it,
878 * such as stat(2) */
879 inode->i_ino = hash;
880
881 /* We can't support update_atime(), since the server will reset it */
882 inode->i_flags |= S_NOATIME|S_NOCMTIME;
883 inode->i_mode = fattr->mode;
884 /* Why so? Because we want revalidate for devices/FIFOs, and
885 * that's precisely what we have in nfs_file_inode_operations.
886 */
J. Bruce Fields92cfc622005-06-22 17:16:22 +0000887 inode->i_op = NFS_SB(sb)->rpc_ops->file_inode_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 if (S_ISREG(inode->i_mode)) {
889 inode->i_fop = &nfs_file_operations;
890 inode->i_data.a_ops = &nfs_file_aops;
891 inode->i_data.backing_dev_info = &NFS_SB(sb)->backing_dev_info;
892 } else if (S_ISDIR(inode->i_mode)) {
893 inode->i_op = NFS_SB(sb)->rpc_ops->dir_inode_ops;
894 inode->i_fop = &nfs_dir_operations;
895 if (nfs_server_capable(inode, NFS_CAP_READDIRPLUS)
896 && fattr->size <= NFS_LIMIT_READDIRPLUS)
Chuck Lever412d5822005-08-18 11:24:11 -0700897 set_bit(NFS_INO_ADVISE_RDPLUS, &NFS_FLAGS(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 } else if (S_ISLNK(inode->i_mode))
899 inode->i_op = &nfs_symlink_inode_operations;
900 else
901 init_special_inode(inode, inode->i_mode, fattr->rdev);
902
Trond Myklebust33801142005-10-27 22:12:39 -0400903 nfsi->read_cache_jiffies = fattr->time_start;
904 nfsi->last_updated = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 inode->i_atime = fattr->atime;
906 inode->i_mtime = fattr->mtime;
907 inode->i_ctime = fattr->ctime;
908 if (fattr->valid & NFS_ATTR_FATTR_V4)
909 nfsi->change_attr = fattr->change_attr;
910 inode->i_size = nfs_size_to_loff_t(fattr->size);
911 inode->i_nlink = fattr->nlink;
912 inode->i_uid = fattr->uid;
913 inode->i_gid = fattr->gid;
914 if (fattr->valid & (NFS_ATTR_FATTR_V3 | NFS_ATTR_FATTR_V4)) {
915 /*
916 * report the blocks in 512byte units
917 */
918 inode->i_blocks = nfs_calc_block_size(fattr->du.nfs3.used);
919 inode->i_blksize = inode->i_sb->s_blocksize;
920 } else {
921 inode->i_blocks = fattr->du.nfs2.blocks;
922 inode->i_blksize = fattr->du.nfs2.blocksize;
923 }
924 nfsi->attrtimeo = NFS_MINATTRTIMEO(inode);
925 nfsi->attrtimeo_timestamp = jiffies;
926 memset(nfsi->cookieverf, 0, sizeof(nfsi->cookieverf));
927 nfsi->cache_access.cred = NULL;
928
929 unlock_new_inode(inode);
930 } else
931 nfs_refresh_inode(inode, fattr);
932 dprintk("NFS: nfs_fhget(%s/%Ld ct=%d)\n",
933 inode->i_sb->s_id,
934 (long long)NFS_FILEID(inode),
935 atomic_read(&inode->i_count));
936
937out:
938 return inode;
939
940out_no_inode:
941 printk("nfs_fhget: iget failed\n");
942 goto out;
943}
944
945#define NFS_VALID_ATTRS (ATTR_MODE|ATTR_UID|ATTR_GID|ATTR_SIZE|ATTR_ATIME|ATTR_ATIME_SET|ATTR_MTIME|ATTR_MTIME_SET)
946
947int
948nfs_setattr(struct dentry *dentry, struct iattr *attr)
949{
950 struct inode *inode = dentry->d_inode;
951 struct nfs_fattr fattr;
952 int error;
953
Chuck Lever91d5b472006-03-20 13:44:14 -0500954 nfs_inc_stats(inode, NFSIOS_VFSSETATTR);
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 if (attr->ia_valid & ATTR_SIZE) {
957 if (!S_ISREG(inode->i_mode) || attr->ia_size == i_size_read(inode))
958 attr->ia_valid &= ~ATTR_SIZE;
959 }
960
961 /* Optimization: if the end result is no change, don't RPC */
962 attr->ia_valid &= NFS_VALID_ATTRS;
963 if (attr->ia_valid == 0)
964 return 0;
965
966 lock_kernel();
967 nfs_begin_data_update(inode);
Trond Myklebust755c1e22006-03-20 13:44:06 -0500968 /* Write all dirty data */
969 filemap_write_and_wait(inode->i_mapping);
970 nfs_wb_all(inode);
Trond Myklebust642ac542005-10-18 14:20:19 -0700971 /*
972 * Return any delegations if we're going to change ACLs
973 */
974 if ((attr->ia_valid & (ATTR_MODE|ATTR_UID|ATTR_GID)) != 0)
975 nfs_inode_return_delegation(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 error = NFS_PROTO(inode)->setattr(dentry, &fattr, attr);
Trond Myklebust65e43082005-08-16 11:49:44 -0400977 if (error == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 nfs_refresh_inode(inode, &fattr);
Trond Myklebust65e43082005-08-16 11:49:44 -0400979 nfs_end_data_update(inode);
980 unlock_kernel();
981 return error;
982}
983
984/**
985 * nfs_setattr_update_inode - Update inode metadata after a setattr call.
986 * @inode: pointer to struct inode
987 * @attr: pointer to struct iattr
988 *
989 * Note: we do this in the *proc.c in order to ensure that
990 * it works for things like exclusive creates too.
991 */
992void nfs_setattr_update_inode(struct inode *inode, struct iattr *attr)
993{
994 if ((attr->ia_valid & (ATTR_MODE|ATTR_UID|ATTR_GID)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 if ((attr->ia_valid & ATTR_MODE) != 0) {
Trond Myklebust65e43082005-08-16 11:49:44 -0400996 int mode = attr->ia_mode & S_IALLUGO;
997 mode |= inode->i_mode & ~S_IALLUGO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998 inode->i_mode = mode;
999 }
1000 if ((attr->ia_valid & ATTR_UID) != 0)
1001 inode->i_uid = attr->ia_uid;
1002 if ((attr->ia_valid & ATTR_GID) != 0)
1003 inode->i_gid = attr->ia_gid;
Chuck Leverdc592502005-08-18 11:24:12 -07001004 spin_lock(&inode->i_lock);
Chuck Lever55296802005-08-18 11:24:09 -07001005 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
Chuck Leverdc592502005-08-18 11:24:12 -07001006 spin_unlock(&inode->i_lock);
Trond Myklebust65e43082005-08-16 11:49:44 -04001007 }
1008 if ((attr->ia_valid & ATTR_SIZE) != 0) {
Chuck Lever91d5b472006-03-20 13:44:14 -05001009 nfs_inc_stats(inode, NFSIOS_SETATTRTRUNC);
Trond Myklebust65e43082005-08-16 11:49:44 -04001010 inode->i_size = attr->ia_size;
1011 vmtruncate(inode, attr->ia_size);
1012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013}
1014
Chuck Lever412d5822005-08-18 11:24:11 -07001015static int nfs_wait_schedule(void *word)
1016{
1017 if (signal_pending(current))
1018 return -ERESTARTSYS;
1019 schedule();
1020 return 0;
1021}
1022
Linus Torvalds1da177e2005-04-16 15:20:36 -07001023/*
1024 * Wait for the inode to get unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025 */
Chuck Lever412d5822005-08-18 11:24:11 -07001026static int nfs_wait_on_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027{
1028 struct rpc_clnt *clnt = NFS_CLIENT(inode);
1029 struct nfs_inode *nfsi = NFS_I(inode);
Chuck Lever412d5822005-08-18 11:24:11 -07001030 sigset_t oldmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 int error;
Chuck Lever412d5822005-08-18 11:24:11 -07001032
Chuck Lever412d5822005-08-18 11:24:11 -07001033 rpc_clnt_sigmask(clnt, &oldmask);
1034 error = wait_on_bit_lock(&nfsi->flags, NFS_INO_REVALIDATING,
1035 nfs_wait_schedule, TASK_INTERRUPTIBLE);
1036 rpc_clnt_sigunmask(clnt, &oldmask);
Chuck Lever412d5822005-08-18 11:24:11 -07001037
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 return error;
1039}
1040
Chuck Lever412d5822005-08-18 11:24:11 -07001041static void nfs_wake_up_inode(struct inode *inode)
1042{
1043 struct nfs_inode *nfsi = NFS_I(inode);
1044
1045 clear_bit(NFS_INO_REVALIDATING, &nfsi->flags);
1046 smp_mb__after_clear_bit();
1047 wake_up_bit(&nfsi->flags, NFS_INO_REVALIDATING);
1048}
1049
Linus Torvalds1da177e2005-04-16 15:20:36 -07001050int nfs_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
1051{
1052 struct inode *inode = dentry->d_inode;
Chuck Lever55296802005-08-18 11:24:09 -07001053 int need_atime = NFS_I(inode)->cache_validity & NFS_INO_INVALID_ATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001054 int err;
1055
Trond Myklebust70b9ecb2006-01-03 09:55:34 +01001056 /* Flush out writes to the server in order to update c/mtime */
1057 nfs_sync_inode(inode, 0, 0, FLUSH_WAIT|FLUSH_NOCOMMIT);
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001058
1059 /*
1060 * We may force a getattr if the user cares about atime.
1061 *
1062 * Note that we only have to check the vfsmount flags here:
1063 * - NFS always sets S_NOATIME by so checking it would give a
1064 * bogus result
1065 * - NFS never sets MS_NOATIME or MS_NODIRATIME so there is
1066 * no point in checking those.
1067 */
1068 if ((mnt->mnt_flags & MNT_NOATIME) ||
1069 ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 need_atime = 0;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001071
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 if (need_atime)
1073 err = __nfs_revalidate_inode(NFS_SERVER(inode), inode);
1074 else
1075 err = nfs_revalidate_inode(NFS_SERVER(inode), inode);
1076 if (!err)
1077 generic_fillattr(inode, stat);
1078 return err;
1079}
1080
Trond Myklebustb92dccf2006-03-20 13:44:03 -05001081static struct nfs_open_context *alloc_nfs_open_context(struct vfsmount *mnt, struct dentry *dentry, struct rpc_cred *cred)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001082{
1083 struct nfs_open_context *ctx;
1084
1085 ctx = (struct nfs_open_context *)kmalloc(sizeof(*ctx), GFP_KERNEL);
1086 if (ctx != NULL) {
1087 atomic_set(&ctx->count, 1);
1088 ctx->dentry = dget(dentry);
Trond Myklebustb92dccf2006-03-20 13:44:03 -05001089 ctx->vfsmnt = mntget(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001090 ctx->cred = get_rpccred(cred);
1091 ctx->state = NULL;
1092 ctx->lockowner = current->files;
1093 ctx->error = 0;
Olivier Galibert00a92642005-06-22 17:16:29 +00001094 ctx->dir_cookie = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 }
1096 return ctx;
1097}
1098
1099struct nfs_open_context *get_nfs_open_context(struct nfs_open_context *ctx)
1100{
1101 if (ctx != NULL)
1102 atomic_inc(&ctx->count);
1103 return ctx;
1104}
1105
1106void put_nfs_open_context(struct nfs_open_context *ctx)
1107{
1108 if (atomic_dec_and_test(&ctx->count)) {
1109 if (!list_empty(&ctx->list)) {
1110 struct inode *inode = ctx->dentry->d_inode;
1111 spin_lock(&inode->i_lock);
1112 list_del(&ctx->list);
1113 spin_unlock(&inode->i_lock);
1114 }
1115 if (ctx->state != NULL)
1116 nfs4_close_state(ctx->state, ctx->mode);
1117 if (ctx->cred != NULL)
1118 put_rpccred(ctx->cred);
1119 dput(ctx->dentry);
Trond Myklebustb92dccf2006-03-20 13:44:03 -05001120 mntput(ctx->vfsmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 kfree(ctx);
1122 }
1123}
1124
1125/*
1126 * Ensure that mmap has a recent RPC credential for use when writing out
1127 * shared pages
1128 */
Trond Myklebustb92dccf2006-03-20 13:44:03 -05001129static void nfs_file_set_open_context(struct file *filp, struct nfs_open_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001130{
1131 struct inode *inode = filp->f_dentry->d_inode;
1132 struct nfs_inode *nfsi = NFS_I(inode);
1133
1134 filp->private_data = get_nfs_open_context(ctx);
1135 spin_lock(&inode->i_lock);
1136 list_add(&ctx->list, &nfsi->open_files);
1137 spin_unlock(&inode->i_lock);
1138}
1139
Trond Myklebustd5308382005-11-04 15:33:38 -05001140/*
1141 * Given an inode, search for an open context with the desired characteristics
1142 */
1143struct nfs_open_context *nfs_find_open_context(struct inode *inode, struct rpc_cred *cred, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001144{
1145 struct nfs_inode *nfsi = NFS_I(inode);
1146 struct nfs_open_context *pos, *ctx = NULL;
1147
1148 spin_lock(&inode->i_lock);
1149 list_for_each_entry(pos, &nfsi->open_files, list) {
Trond Myklebustd5308382005-11-04 15:33:38 -05001150 if (cred != NULL && pos->cred != cred)
1151 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 if ((pos->mode & mode) == mode) {
1153 ctx = get_nfs_open_context(pos);
1154 break;
1155 }
1156 }
1157 spin_unlock(&inode->i_lock);
1158 return ctx;
1159}
1160
Trond Myklebustb92dccf2006-03-20 13:44:03 -05001161static void nfs_file_clear_open_context(struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162{
1163 struct inode *inode = filp->f_dentry->d_inode;
1164 struct nfs_open_context *ctx = (struct nfs_open_context *)filp->private_data;
1165
1166 if (ctx) {
1167 filp->private_data = NULL;
1168 spin_lock(&inode->i_lock);
1169 list_move_tail(&ctx->list, &NFS_I(inode)->open_files);
1170 spin_unlock(&inode->i_lock);
1171 put_nfs_open_context(ctx);
1172 }
1173}
1174
1175/*
1176 * These allocate and release file read/write context information.
1177 */
1178int nfs_open(struct inode *inode, struct file *filp)
1179{
1180 struct nfs_open_context *ctx;
1181 struct rpc_cred *cred;
1182
1183 cred = rpcauth_lookupcred(NFS_CLIENT(inode)->cl_auth, 0);
1184 if (IS_ERR(cred))
1185 return PTR_ERR(cred);
Trond Myklebustb92dccf2006-03-20 13:44:03 -05001186 ctx = alloc_nfs_open_context(filp->f_vfsmnt, filp->f_dentry, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187 put_rpccred(cred);
1188 if (ctx == NULL)
1189 return -ENOMEM;
1190 ctx->mode = filp->f_mode;
1191 nfs_file_set_open_context(filp, ctx);
1192 put_nfs_open_context(ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 return 0;
1194}
1195
1196int nfs_release(struct inode *inode, struct file *filp)
1197{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001198 nfs_file_clear_open_context(filp);
1199 return 0;
1200}
1201
1202/*
1203 * This function is called whenever some part of NFS notices that
1204 * the cached attributes have to be refreshed.
1205 */
1206int
1207__nfs_revalidate_inode(struct nfs_server *server, struct inode *inode)
1208{
1209 int status = -ESTALE;
1210 struct nfs_fattr fattr;
1211 struct nfs_inode *nfsi = NFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212
1213 dfprintk(PAGECACHE, "NFS: revalidating (%s/%Ld)\n",
1214 inode->i_sb->s_id, (long long)NFS_FILEID(inode));
1215
1216 lock_kernel();
1217 if (!inode || is_bad_inode(inode))
1218 goto out_nowait;
1219 if (NFS_STALE(inode))
1220 goto out_nowait;
1221
Chuck Lever412d5822005-08-18 11:24:11 -07001222 status = nfs_wait_on_inode(inode);
1223 if (status < 0)
1224 goto out;
1225 if (NFS_STALE(inode)) {
1226 status = -ESTALE;
1227 /* Do we trust the cached ESTALE? */
1228 if (NFS_ATTRTIMEO(inode) != 0) {
1229 if (nfsi->cache_validity & (NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA|NFS_INO_INVALID_ATIME)) {
1230 /* no */
1231 } else
1232 goto out;
1233 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236 status = NFS_PROTO(inode)->getattr(server, NFS_FH(inode), &fattr);
1237 if (status != 0) {
1238 dfprintk(PAGECACHE, "nfs_revalidate_inode: (%s/%Ld) getattr failed, error=%d\n",
1239 inode->i_sb->s_id,
1240 (long long)NFS_FILEID(inode), status);
1241 if (status == -ESTALE) {
1242 nfs_zap_caches(inode);
1243 if (!S_ISDIR(inode->i_mode))
Chuck Lever412d5822005-08-18 11:24:11 -07001244 set_bit(NFS_INO_STALE, &NFS_FLAGS(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 }
1246 goto out;
1247 }
1248
Trond Myklebust33801142005-10-27 22:12:39 -04001249 spin_lock(&inode->i_lock);
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001250 status = nfs_update_inode(inode, &fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001251 if (status) {
Trond Myklebust33801142005-10-27 22:12:39 -04001252 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 dfprintk(PAGECACHE, "nfs_revalidate_inode: (%s/%Ld) refresh failed, error=%d\n",
1254 inode->i_sb->s_id,
1255 (long long)NFS_FILEID(inode), status);
1256 goto out;
1257 }
Chuck Leverdc592502005-08-18 11:24:12 -07001258 spin_unlock(&inode->i_lock);
Chuck Lever55296802005-08-18 11:24:09 -07001259
Trond Myklebust7d52e862005-06-22 17:16:30 +00001260 nfs_revalidate_mapping(inode, inode->i_mapping);
Chuck Lever55296802005-08-18 11:24:09 -07001261
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001262 if (nfsi->cache_validity & NFS_INO_INVALID_ACL)
Trond Myklebustada70d92005-06-22 17:16:22 +00001263 nfs_zap_acl_cache(inode);
Chuck Lever55296802005-08-18 11:24:09 -07001264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 dfprintk(PAGECACHE, "NFS: (%s/%Ld) revalidation complete\n",
1266 inode->i_sb->s_id,
1267 (long long)NFS_FILEID(inode));
1268
Chuck Lever412d5822005-08-18 11:24:11 -07001269 out:
1270 nfs_wake_up_inode(inode);
1271
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 out_nowait:
1273 unlock_kernel();
1274 return status;
1275}
1276
1277int nfs_attribute_timeout(struct inode *inode)
1278{
1279 struct nfs_inode *nfsi = NFS_I(inode);
1280
1281 if (nfs_have_delegation(inode, FMODE_READ))
1282 return 0;
1283 return time_after(jiffies, nfsi->read_cache_jiffies+nfsi->attrtimeo);
1284}
1285
1286/**
1287 * nfs_revalidate_inode - Revalidate the inode attributes
1288 * @server - pointer to nfs_server struct
1289 * @inode - pointer to inode struct
1290 *
1291 * Updates inode attribute information by retrieving the data from the server.
1292 */
1293int nfs_revalidate_inode(struct nfs_server *server, struct inode *inode)
1294{
Chuck Lever91d5b472006-03-20 13:44:14 -05001295 nfs_inc_stats(inode, NFSIOS_INODEREVALIDATE);
Chuck Lever55296802005-08-18 11:24:09 -07001296 if (!(NFS_I(inode)->cache_validity & (NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 && !nfs_attribute_timeout(inode))
1298 return NFS_STALE(inode) ? -ESTALE : 0;
1299 return __nfs_revalidate_inode(server, inode);
1300}
1301
1302/**
Trond Myklebust7d52e862005-06-22 17:16:30 +00001303 * nfs_revalidate_mapping - Revalidate the pagecache
1304 * @inode - pointer to host inode
1305 * @mapping - pointer to mapping
1306 */
1307void nfs_revalidate_mapping(struct inode *inode, struct address_space *mapping)
1308{
1309 struct nfs_inode *nfsi = NFS_I(inode);
1310
Chuck Lever55296802005-08-18 11:24:09 -07001311 if (nfsi->cache_validity & NFS_INO_INVALID_DATA) {
Chuck Lever91d5b472006-03-20 13:44:14 -05001312 nfs_inc_stats(inode, NFSIOS_DATAINVALIDATE);
Trond Myklebust29884df2005-12-13 16:13:54 -05001313 if (S_ISREG(inode->i_mode))
1314 nfs_sync_mapping(mapping);
Trond Myklebust7d52e862005-06-22 17:16:30 +00001315 invalidate_inode_pages2(mapping);
Chuck Leverdc592502005-08-18 11:24:12 -07001316
1317 spin_lock(&inode->i_lock);
Chuck Lever55296802005-08-18 11:24:09 -07001318 nfsi->cache_validity &= ~NFS_INO_INVALID_DATA;
Trond Myklebust7d52e862005-06-22 17:16:30 +00001319 if (S_ISDIR(inode->i_mode)) {
1320 memset(nfsi->cookieverf, 0, sizeof(nfsi->cookieverf));
1321 /* This ensures we revalidate child dentries */
Trond Myklebust913a70f2005-10-27 22:12:38 -04001322 nfsi->cache_change_attribute = jiffies;
Trond Myklebust7d52e862005-06-22 17:16:30 +00001323 }
Chuck Leverdc592502005-08-18 11:24:12 -07001324 spin_unlock(&inode->i_lock);
1325
Trond Myklebust7d52e862005-06-22 17:16:30 +00001326 dfprintk(PAGECACHE, "NFS: (%s/%Ld) data cache invalidated\n",
1327 inode->i_sb->s_id,
1328 (long long)NFS_FILEID(inode));
1329 }
1330}
1331
1332/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001333 * nfs_begin_data_update
1334 * @inode - pointer to inode
1335 * Declare that a set of operations will update file data on the server
1336 */
1337void nfs_begin_data_update(struct inode *inode)
1338{
1339 atomic_inc(&NFS_I(inode)->data_updates);
1340}
1341
1342/**
1343 * nfs_end_data_update
1344 * @inode - pointer to inode
1345 * Declare end of the operations that will update file data
1346 * This will mark the inode as immediately needing revalidation
1347 * of its attribute cache.
1348 */
1349void nfs_end_data_update(struct inode *inode)
1350{
1351 struct nfs_inode *nfsi = NFS_I(inode);
1352
1353 if (!nfs_have_delegation(inode, FMODE_READ)) {
Trond Myklebustdecf4912005-10-27 22:12:39 -04001354 /* Directories and symlinks: invalidate page cache */
1355 if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode)) {
1356 spin_lock(&inode->i_lock);
Chuck Lever55296802005-08-18 11:24:09 -07001357 nfsi->cache_validity |= NFS_INO_INVALID_DATA;
Trond Myklebustdecf4912005-10-27 22:12:39 -04001358 spin_unlock(&inode->i_lock);
1359 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 }
Trond Myklebust913a70f2005-10-27 22:12:38 -04001361 nfsi->cache_change_attribute = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001362 atomic_dec(&nfsi->data_updates);
1363}
1364
Trond Myklebusta895b4a2006-01-03 09:55:40 +01001365static void nfs_wcc_update_inode(struct inode *inode, struct nfs_fattr *fattr)
1366{
1367 struct nfs_inode *nfsi = NFS_I(inode);
1368
1369 if ((fattr->valid & NFS_ATTR_PRE_CHANGE) != 0
1370 && nfsi->change_attr == fattr->pre_change_attr) {
1371 nfsi->change_attr = fattr->change_attr;
1372 nfsi->cache_change_attribute = jiffies;
1373 }
1374
1375 /* If we have atomic WCC data, we may update some attributes */
1376 if ((fattr->valid & NFS_ATTR_WCC) != 0) {
1377 if (timespec_equal(&inode->i_ctime, &fattr->pre_ctime)) {
1378 memcpy(&inode->i_ctime, &fattr->ctime, sizeof(inode->i_ctime));
1379 nfsi->cache_change_attribute = jiffies;
1380 }
1381 if (timespec_equal(&inode->i_mtime, &fattr->pre_mtime)) {
1382 memcpy(&inode->i_mtime, &fattr->mtime, sizeof(inode->i_mtime));
1383 nfsi->cache_change_attribute = jiffies;
1384 }
1385 if (inode->i_size == fattr->pre_size && nfsi->npages == 0) {
1386 inode->i_size = fattr->size;
1387 nfsi->cache_change_attribute = jiffies;
1388 }
1389 }
1390}
1391
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392/**
Trond Myklebust33801142005-10-27 22:12:39 -04001393 * nfs_check_inode_attributes - verify consistency of the inode attribute cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 * @inode - pointer to inode
1395 * @fattr - updated attributes
1396 *
1397 * Verifies the attribute cache. If we have just changed the attributes,
1398 * so that fattr carries weak cache consistency data, then it may
1399 * also update the ctime/mtime/change_attribute.
1400 */
Trond Myklebust33801142005-10-27 22:12:39 -04001401static int nfs_check_inode_attributes(struct inode *inode, struct nfs_fattr *fattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402{
1403 struct nfs_inode *nfsi = NFS_I(inode);
1404 loff_t cur_size, new_isize;
1405 int data_unstable;
1406
Chuck Leverdc592502005-08-18 11:24:12 -07001407
Trond Myklebusta895b4a2006-01-03 09:55:40 +01001408 if ((fattr->valid & NFS_ATTR_FATTR) == 0)
1409 return 0;
1410
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411 /* Has the inode gone and changed behind our back? */
1412 if (nfsi->fileid != fattr->fileid
Chuck Leverdc592502005-08-18 11:24:12 -07001413 || (inode->i_mode & S_IFMT) != (fattr->mode & S_IFMT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414 return -EIO;
Chuck Leverdc592502005-08-18 11:24:12 -07001415 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416
Trond Myklebustca62b9c2006-03-20 13:44:07 -05001417 /* Are we in the process of updating data on the server? */
1418 data_unstable = nfs_caches_unstable(inode);
1419
1420 /* Do atomic weak cache consistency updates */
1421 nfs_wcc_update_inode(inode, fattr);
1422
1423 if ((fattr->valid & NFS_ATTR_FATTR_V4) != 0) {
1424 if (nfsi->change_attr == fattr->change_attr)
1425 goto out;
1426 nfsi->cache_validity |= NFS_INO_INVALID_ATTR;
1427 if (!data_unstable)
1428 nfsi->cache_validity |= NFS_INO_REVAL_PAGECACHE;
1429 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 /* Verify a few of the more important attributes */
Trond Myklebustfe51beec2005-06-22 17:16:30 +00001432 if (!timespec_equal(&inode->i_mtime, &fattr->mtime)) {
Chuck Lever55296802005-08-18 11:24:09 -07001433 nfsi->cache_validity |= NFS_INO_INVALID_ATTR;
Trond Myklebustfe51beec2005-06-22 17:16:30 +00001434 if (!data_unstable)
Chuck Lever55296802005-08-18 11:24:09 -07001435 nfsi->cache_validity |= NFS_INO_REVAL_PAGECACHE;
Trond Myklebustfe51beec2005-06-22 17:16:30 +00001436 }
Trond Myklebustca62b9c2006-03-20 13:44:07 -05001437
1438 cur_size = i_size_read(inode);
1439 new_isize = nfs_size_to_loff_t(fattr->size);
Trond Myklebustfb374d22006-03-20 13:44:08 -05001440 if (cur_size != new_isize && nfsi->npages == 0)
1441 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001442
1443 /* Have any file permissions changed? */
1444 if ((inode->i_mode & S_IALLUGO) != (fattr->mode & S_IALLUGO)
1445 || inode->i_uid != fattr->uid
1446 || inode->i_gid != fattr->gid)
Chuck Lever55296802005-08-18 11:24:09 -07001447 nfsi->cache_validity |= NFS_INO_INVALID_ATTR | NFS_INO_INVALID_ACCESS | NFS_INO_INVALID_ACL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448
1449 /* Has the link count changed? */
1450 if (inode->i_nlink != fattr->nlink)
Chuck Lever55296802005-08-18 11:24:09 -07001451 nfsi->cache_validity |= NFS_INO_INVALID_ATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001452
Trond Myklebustca62b9c2006-03-20 13:44:07 -05001453out:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 if (!timespec_equal(&inode->i_atime, &fattr->atime))
Chuck Lever55296802005-08-18 11:24:09 -07001455 nfsi->cache_validity |= NFS_INO_INVALID_ATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456
Trond Myklebust33801142005-10-27 22:12:39 -04001457 nfsi->read_cache_jiffies = fattr->time_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 return 0;
1459}
1460
Trond Myklebust33801142005-10-27 22:12:39 -04001461/**
1462 * nfs_refresh_inode - try to update the inode attribute cache
1463 * @inode - pointer to inode
1464 * @fattr - updated attributes
1465 *
1466 * Check that an RPC call that returned attributes has not overlapped with
1467 * other recent updates of the inode metadata, then decide whether it is
1468 * safe to do a full update of the inode attributes, or whether just to
1469 * call nfs_check_inode_attributes.
1470 */
1471int nfs_refresh_inode(struct inode *inode, struct nfs_fattr *fattr)
1472{
1473 struct nfs_inode *nfsi = NFS_I(inode);
1474 int status;
1475
1476 if ((fattr->valid & NFS_ATTR_FATTR) == 0)
1477 return 0;
1478 spin_lock(&inode->i_lock);
1479 nfsi->cache_validity &= ~NFS_INO_REVAL_PAGECACHE;
Trond Myklebust33801142005-10-27 22:12:39 -04001480 if (time_after(fattr->time_start, nfsi->last_updated))
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001481 status = nfs_update_inode(inode, fattr);
Trond Myklebust33801142005-10-27 22:12:39 -04001482 else
1483 status = nfs_check_inode_attributes(inode, fattr);
1484
1485 spin_unlock(&inode->i_lock);
1486 return status;
1487}
1488
Trond Myklebustdecf4912005-10-27 22:12:39 -04001489/**
1490 * nfs_post_op_update_inode - try to update the inode attribute cache
1491 * @inode - pointer to inode
1492 * @fattr - updated attributes
1493 *
1494 * After an operation that has changed the inode metadata, mark the
1495 * attribute cache as being invalid, then try to update it.
1496 */
1497int nfs_post_op_update_inode(struct inode *inode, struct nfs_fattr *fattr)
1498{
1499 struct nfs_inode *nfsi = NFS_I(inode);
1500 int status = 0;
1501
1502 spin_lock(&inode->i_lock);
1503 if (unlikely((fattr->valid & NFS_ATTR_FATTR) == 0)) {
1504 nfsi->cache_validity |= NFS_INO_INVALID_ATTR | NFS_INO_INVALID_ACCESS;
1505 goto out;
1506 }
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001507 status = nfs_update_inode(inode, fattr);
Trond Myklebustdecf4912005-10-27 22:12:39 -04001508out:
1509 spin_unlock(&inode->i_lock);
1510 return status;
1511}
1512
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513/*
1514 * Many nfs protocol calls return the new file attributes after
1515 * an operation. Here we update the inode to reflect the state
1516 * of the server's inode.
1517 *
1518 * This is a bit tricky because we have to make sure all dirty pages
1519 * have been sent off to the server before calling invalidate_inode_pages.
1520 * To make sure no other process adds more write requests while we try
1521 * our best to flush them, we make them sleep during the attribute refresh.
1522 *
1523 * A very similar scenario holds for the dir cache.
1524 */
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001525static int nfs_update_inode(struct inode *inode, struct nfs_fattr *fattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526{
1527 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust951a1432005-06-22 17:16:30 +00001528 loff_t cur_isize, new_isize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 unsigned int invalid = 0;
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001530 int data_stable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531
1532 dfprintk(VFS, "NFS: %s(%s/%ld ct=%d info=0x%x)\n",
1533 __FUNCTION__, inode->i_sb->s_id, inode->i_ino,
1534 atomic_read(&inode->i_count), fattr->valid);
1535
1536 if ((fattr->valid & NFS_ATTR_FATTR) == 0)
1537 return 0;
1538
Chuck Lever325cfed2005-11-30 18:08:55 -05001539 if (nfsi->fileid != fattr->fileid)
1540 goto out_fileid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
1542 /*
1543 * Make sure the inode's type hasn't changed.
1544 */
Trond Myklebust33801142005-10-27 22:12:39 -04001545 if ((inode->i_mode & S_IFMT) != (fattr->mode & S_IFMT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 goto out_changed;
1547
1548 /*
1549 * Update the read time so we don't revalidate too often.
1550 */
Trond Myklebust33801142005-10-27 22:12:39 -04001551 nfsi->read_cache_jiffies = fattr->time_start;
1552 nfsi->last_updated = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001553
1554 /* Are we racing with known updates of the metadata on the server? */
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001555 data_stable = nfs_verify_change_attribute(inode, fattr->time_start);
1556 if (data_stable)
1557 nfsi->cache_validity &= ~(NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ATIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558
Trond Myklebusta895b4a2006-01-03 09:55:40 +01001559 /* Do atomic weak cache consistency updates */
1560 nfs_wcc_update_inode(inode, fattr);
1561
Trond Myklebust951a1432005-06-22 17:16:30 +00001562 /* Check if our cached file size is stale */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 new_isize = nfs_size_to_loff_t(fattr->size);
1564 cur_isize = i_size_read(inode);
Trond Myklebust951a1432005-06-22 17:16:30 +00001565 if (new_isize != cur_isize) {
1566 /* Do we perhaps have any outstanding writes? */
1567 if (nfsi->npages == 0) {
1568 /* No, but did we race with nfs_end_data_update()? */
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001569 if (data_stable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 inode->i_size = new_isize;
Trond Myklebust951a1432005-06-22 17:16:30 +00001571 invalid |= NFS_INO_INVALID_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001572 }
Trond Myklebust951a1432005-06-22 17:16:30 +00001573 invalid |= NFS_INO_INVALID_ATTR;
1574 } else if (new_isize > cur_isize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575 inode->i_size = new_isize;
1576 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA;
1577 }
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001578 nfsi->cache_change_attribute = jiffies;
Trond Myklebust951a1432005-06-22 17:16:30 +00001579 dprintk("NFS: isize change on server for file %s/%ld\n",
1580 inode->i_sb->s_id, inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581 }
1582
Trond Myklebust951a1432005-06-22 17:16:30 +00001583 /* Check if the mtime agrees */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584 if (!timespec_equal(&inode->i_mtime, &fattr->mtime)) {
1585 memcpy(&inode->i_mtime, &fattr->mtime, sizeof(inode->i_mtime));
Trond Myklebust951a1432005-06-22 17:16:30 +00001586 dprintk("NFS: mtime change on server for file %s/%ld\n",
1587 inode->i_sb->s_id, inode->i_ino);
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001588 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA;
1589 nfsi->cache_change_attribute = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 }
1591
Trond Myklebustada70d92005-06-22 17:16:22 +00001592 /* If ctime has changed we should definitely clear access+acl caches */
1593 if (!timespec_equal(&inode->i_ctime, &fattr->ctime)) {
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001594 invalid |= NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
Trond Myklebustada70d92005-06-22 17:16:22 +00001595 memcpy(&inode->i_ctime, &fattr->ctime, sizeof(inode->i_ctime));
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001596 nfsi->cache_change_attribute = jiffies;
Trond Myklebustada70d92005-06-22 17:16:22 +00001597 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598 memcpy(&inode->i_atime, &fattr->atime, sizeof(inode->i_atime));
1599
1600 if ((inode->i_mode & S_IALLUGO) != (fattr->mode & S_IALLUGO) ||
1601 inode->i_uid != fattr->uid ||
1602 inode->i_gid != fattr->gid)
Trond Myklebustada70d92005-06-22 17:16:22 +00001603 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
1605 inode->i_mode = fattr->mode;
1606 inode->i_nlink = fattr->nlink;
1607 inode->i_uid = fattr->uid;
1608 inode->i_gid = fattr->gid;
1609
1610 if (fattr->valid & (NFS_ATTR_FATTR_V3 | NFS_ATTR_FATTR_V4)) {
1611 /*
1612 * report the blocks in 512byte units
1613 */
1614 inode->i_blocks = nfs_calc_block_size(fattr->du.nfs3.used);
1615 inode->i_blksize = inode->i_sb->s_blocksize;
1616 } else {
1617 inode->i_blocks = fattr->du.nfs2.blocks;
1618 inode->i_blksize = fattr->du.nfs2.blocksize;
1619 }
1620
Trond Myklebustca62b9c2006-03-20 13:44:07 -05001621 if ((fattr->valid & NFS_ATTR_FATTR_V4)) {
1622 if (nfsi->change_attr != fattr->change_attr) {
1623 dprintk("NFS: change_attr change on server for file %s/%ld\n",
1624 inode->i_sb->s_id, inode->i_ino);
1625 nfsi->change_attr = fattr->change_attr;
1626 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA|NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
1627 nfsi->cache_change_attribute = jiffies;
1628 } else
1629 invalid &= ~(NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA);
1630 }
1631
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 /* Update attrtimeo value if we're out of the unstable period */
1633 if (invalid & NFS_INO_INVALID_ATTR) {
Chuck Lever91d5b472006-03-20 13:44:14 -05001634 nfs_inc_stats(inode, NFSIOS_ATTRINVALIDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 nfsi->attrtimeo = NFS_MINATTRTIMEO(inode);
1636 nfsi->attrtimeo_timestamp = jiffies;
1637 } else if (time_after(jiffies, nfsi->attrtimeo_timestamp+nfsi->attrtimeo)) {
1638 if ((nfsi->attrtimeo <<= 1) > NFS_MAXATTRTIMEO(inode))
1639 nfsi->attrtimeo = NFS_MAXATTRTIMEO(inode);
1640 nfsi->attrtimeo_timestamp = jiffies;
1641 }
1642 /* Don't invalidate the data if we were to blame */
1643 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode)
1644 || S_ISLNK(inode->i_mode)))
1645 invalid &= ~NFS_INO_INVALID_DATA;
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001646 if (data_stable)
1647 invalid &= ~(NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ATIME|NFS_INO_REVAL_PAGECACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001648 if (!nfs_have_delegation(inode, FMODE_READ))
Chuck Lever55296802005-08-18 11:24:09 -07001649 nfsi->cache_validity |= invalid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
1651 return 0;
1652 out_changed:
1653 /*
1654 * Big trouble! The inode has become a different object.
1655 */
1656#ifdef NFS_PARANOIA
1657 printk(KERN_DEBUG "%s: inode %ld mode changed, %07o to %07o\n",
1658 __FUNCTION__, inode->i_ino, inode->i_mode, fattr->mode);
1659#endif
Trond Myklebustb37b03b2005-11-25 17:10:06 -05001660 out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001661 /*
1662 * No need to worry about unhashing the dentry, as the
1663 * lookup validation will know that the inode is bad.
1664 * (But we fall through to invalidate the caches.)
1665 */
1666 nfs_invalidate_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001667 return -ESTALE;
Chuck Lever325cfed2005-11-30 18:08:55 -05001668
1669 out_fileid:
1670 printk(KERN_ERR "NFS: server %s error: fileid changed\n"
1671 "fsid %s: expected fileid 0x%Lx, got 0x%Lx\n",
1672 NFS_SERVER(inode)->hostname, inode->i_sb->s_id,
1673 (long long)nfsi->fileid, (long long)fattr->fileid);
1674 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001675}
1676
1677/*
1678 * File system information
1679 */
1680
1681static int nfs_set_super(struct super_block *s, void *data)
1682{
1683 s->s_fs_info = data;
1684 return set_anon_super(s, data);
1685}
1686
1687static int nfs_compare_super(struct super_block *sb, void *data)
1688{
1689 struct nfs_server *server = data;
1690 struct nfs_server *old = NFS_SB(sb);
1691
1692 if (old->addr.sin_addr.s_addr != server->addr.sin_addr.s_addr)
1693 return 0;
1694 if (old->addr.sin_port != server->addr.sin_port)
1695 return 0;
1696 return !nfs_compare_fh(&old->fh, &server->fh);
1697}
1698
1699static struct super_block *nfs_get_sb(struct file_system_type *fs_type,
1700 int flags, const char *dev_name, void *raw_data)
1701{
1702 int error;
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001703 struct nfs_server *server = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 struct super_block *s;
1705 struct nfs_fh *root;
1706 struct nfs_mount_data *data = raw_data;
1707
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001708 s = ERR_PTR(-EINVAL);
1709 if (data == NULL) {
1710 dprintk("%s: missing data argument\n", __FUNCTION__);
1711 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 }
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001713 if (data->version <= 0 || data->version > NFS_MOUNT_VERSION) {
1714 dprintk("%s: bad mount version\n", __FUNCTION__);
1715 goto out_err;
1716 }
1717 switch (data->version) {
1718 case 1:
1719 data->namlen = 0;
1720 case 2:
1721 data->bsize = 0;
1722 case 3:
1723 if (data->flags & NFS_MOUNT_VER3) {
1724 dprintk("%s: mount structure version %d does not support NFSv3\n",
1725 __FUNCTION__,
1726 data->version);
1727 goto out_err;
1728 }
1729 data->root.size = NFS2_FHSIZE;
1730 memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
1731 case 4:
1732 if (data->flags & NFS_MOUNT_SECFLAVOUR) {
1733 dprintk("%s: mount structure version %d does not support strong security\n",
1734 __FUNCTION__,
1735 data->version);
1736 goto out_err;
1737 }
1738 case 5:
1739 memset(data->context, 0, sizeof(data->context));
1740 }
1741#ifndef CONFIG_NFS_V3
1742 /* If NFSv3 is not compiled in, return -EPROTONOSUPPORT */
1743 s = ERR_PTR(-EPROTONOSUPPORT);
1744 if (data->flags & NFS_MOUNT_VER3) {
1745 dprintk("%s: NFSv3 not compiled into kernel\n", __FUNCTION__);
1746 goto out_err;
1747 }
1748#endif /* CONFIG_NFS_V3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001750 s = ERR_PTR(-ENOMEM);
Eric Sesterhennbd647542006-03-20 13:44:10 -05001751 server = kzalloc(sizeof(struct nfs_server), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752 if (!server)
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001753 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001754 /* Zero out the NFS state stuff */
1755 init_nfsv4_state(server);
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +00001756 server->client = server->client_sys = server->client_acl = ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001757
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 root = &server->fh;
1759 if (data->flags & NFS_MOUNT_VER3)
1760 root->size = data->root.size;
1761 else
1762 root->size = NFS2_FHSIZE;
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001763 s = ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001764 if (root->size > sizeof(root->data)) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001765 dprintk("%s: invalid root filehandle\n", __FUNCTION__);
1766 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001767 }
1768 memcpy(root->data, data->root.data, root->size);
1769
1770 /* We now require that the mount process passes the remote address */
1771 memcpy(&server->addr, &data->addr, sizeof(server->addr));
1772 if (server->addr.sin_addr.s_addr == INADDR_ANY) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001773 dprintk("%s: mount program didn't pass remote address!\n",
1774 __FUNCTION__);
1775 goto out_err;
1776 }
1777
1778 /* Fire up rpciod if not yet running */
1779 s = ERR_PTR(rpciod_up());
1780 if (IS_ERR(s)) {
1781 dprintk("%s: couldn't start rpciod! Error = %ld\n",
1782 __FUNCTION__, PTR_ERR(s));
1783 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 }
1785
1786 s = sget(fs_type, nfs_compare_super, nfs_set_super, server);
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001787 if (IS_ERR(s) || s->s_root)
1788 goto out_rpciod_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001789
1790 s->s_flags = flags;
1791
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 error = nfs_fill_super(s, data, flags & MS_VERBOSE ? 1 : 0);
1793 if (error) {
1794 up_write(&s->s_umount);
1795 deactivate_super(s);
1796 return ERR_PTR(error);
1797 }
1798 s->s_flags |= MS_ACTIVE;
1799 return s;
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001800out_rpciod_down:
1801 rpciod_down();
1802out_err:
1803 kfree(server);
1804 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001805}
1806
1807static void nfs_kill_super(struct super_block *s)
1808{
1809 struct nfs_server *server = NFS_SB(s);
1810
1811 kill_anon_super(s);
1812
J. Bruce Fields6a192752005-06-22 17:16:23 +00001813 if (!IS_ERR(server->client))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 rpc_shutdown_client(server->client);
J. Bruce Fields6a192752005-06-22 17:16:23 +00001815 if (!IS_ERR(server->client_sys))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001816 rpc_shutdown_client(server->client_sys);
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +00001817 if (!IS_ERR(server->client_acl))
1818 rpc_shutdown_client(server->client_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001819
1820 if (!(server->flags & NFS_MOUNT_NONLM))
1821 lockd_down(); /* release rpc.lockd */
1822
1823 rpciod_down(); /* release rpciod */
1824
Jesper Juhlf99d49a2005-11-07 01:01:34 -08001825 kfree(server->hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826 kfree(server);
1827}
1828
1829static struct file_system_type nfs_fs_type = {
1830 .owner = THIS_MODULE,
1831 .name = "nfs",
1832 .get_sb = nfs_get_sb,
1833 .kill_sb = nfs_kill_super,
1834 .fs_flags = FS_ODD_RENAME|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
1835};
1836
1837#ifdef CONFIG_NFS_V4
1838
1839static void nfs4_clear_inode(struct inode *);
1840
1841
1842static struct super_operations nfs4_sops = {
1843 .alloc_inode = nfs_alloc_inode,
1844 .destroy_inode = nfs_destroy_inode,
1845 .write_inode = nfs_write_inode,
1846 .delete_inode = nfs_delete_inode,
1847 .statfs = nfs_statfs,
1848 .clear_inode = nfs4_clear_inode,
1849 .umount_begin = nfs_umount_begin,
1850 .show_options = nfs_show_options,
Chuck Leverd9ef5a82006-03-20 13:44:13 -05001851 .show_stats = nfs_show_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001852};
1853
1854/*
1855 * Clean out any remaining NFSv4 state that might be left over due
1856 * to open() calls that passed nfs_atomic_lookup, but failed to call
1857 * nfs_open().
1858 */
1859static void nfs4_clear_inode(struct inode *inode)
1860{
1861 struct nfs_inode *nfsi = NFS_I(inode);
1862
1863 /* If we are holding a delegation, return it! */
Trond Myklebustcae7a072005-10-18 14:20:19 -07001864 nfs_inode_return_delegation(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001865 /* First call standard NFS clear_inode() code */
1866 nfs_clear_inode(inode);
1867 /* Now clear out any remaining state */
1868 while (!list_empty(&nfsi->open_states)) {
1869 struct nfs4_state *state;
1870
1871 state = list_entry(nfsi->open_states.next,
1872 struct nfs4_state,
1873 inode_states);
1874 dprintk("%s(%s/%Ld): found unclaimed NFSv4 state %p\n",
1875 __FUNCTION__,
1876 inode->i_sb->s_id,
1877 (long long)NFS_FILEID(inode),
1878 state);
1879 BUG_ON(atomic_read(&state->count) != 1);
1880 nfs4_close_state(state, state->state);
1881 }
1882}
1883
1884
1885static int nfs4_fill_super(struct super_block *sb, struct nfs4_mount_data *data, int silent)
1886{
1887 struct nfs_server *server;
1888 struct nfs4_client *clp = NULL;
1889 struct rpc_xprt *xprt = NULL;
1890 struct rpc_clnt *clnt = NULL;
1891 struct rpc_timeout timeparms;
1892 rpc_authflavor_t authflavour;
Chuck Levereab5c082005-08-11 16:25:14 -04001893 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001894
1895 sb->s_blocksize_bits = 0;
1896 sb->s_blocksize = 0;
1897 server = NFS_SB(sb);
1898 if (data->rsize != 0)
1899 server->rsize = nfs_block_size(data->rsize, NULL);
1900 if (data->wsize != 0)
1901 server->wsize = nfs_block_size(data->wsize, NULL);
1902 server->flags = data->flags & NFS_MOUNT_FLAGMASK;
1903 server->caps = NFS_CAP_ATOMIC_OPEN;
1904
1905 server->acregmin = data->acregmin*HZ;
1906 server->acregmax = data->acregmax*HZ;
1907 server->acdirmin = data->acdirmin*HZ;
1908 server->acdirmax = data->acdirmax*HZ;
1909
1910 server->rpc_ops = &nfs_v4_clientops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Chuck Levereab5c082005-08-11 16:25:14 -04001912 nfs_init_timeout_values(&timeparms, data->proto, data->timeo, data->retrans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001913
Chuck Lever7a480e22006-03-20 13:44:12 -05001914 server->retrans_timeo = timeparms.to_initval;
1915 server->retrans_count = timeparms.to_retries;
1916
Linus Torvalds1da177e2005-04-16 15:20:36 -07001917 clp = nfs4_get_client(&server->addr.sin_addr);
1918 if (!clp) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001919 dprintk("%s: failed to create NFS4 client.\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 return -EIO;
1921 }
1922
1923 /* Now create transport and client */
1924 authflavour = RPC_AUTH_UNIX;
1925 if (data->auth_flavourlen != 0) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001926 if (data->auth_flavourlen != 1) {
1927 dprintk("%s: Invalid number of RPC auth flavours %d.\n",
1928 __FUNCTION__, data->auth_flavourlen);
1929 err = -EINVAL;
1930 goto out_fail;
1931 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932 if (copy_from_user(&authflavour, data->auth_flavours, sizeof(authflavour))) {
1933 err = -EFAULT;
1934 goto out_fail;
1935 }
1936 }
1937
1938 down_write(&clp->cl_sem);
J. Bruce Fields6a192752005-06-22 17:16:23 +00001939 if (IS_ERR(clp->cl_rpcclient)) {
Chuck Levereab5c082005-08-11 16:25:14 -04001940 xprt = xprt_create_proto(data->proto, &server->addr, &timeparms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 if (IS_ERR(xprt)) {
1942 up_write(&clp->cl_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943 err = PTR_ERR(xprt);
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001944 dprintk("%s: cannot create RPC transport. Error = %d\n",
1945 __FUNCTION__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 goto out_fail;
1947 }
1948 clnt = rpc_create_client(xprt, server->hostname, &nfs_program,
1949 server->rpc_ops->version, authflavour);
1950 if (IS_ERR(clnt)) {
1951 up_write(&clp->cl_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 err = PTR_ERR(clnt);
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001953 dprintk("%s: cannot create RPC client. Error = %d\n",
1954 __FUNCTION__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001955 goto out_fail;
1956 }
1957 clnt->cl_intr = 1;
1958 clnt->cl_softrtry = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001959 clp->cl_rpcclient = clnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 memcpy(clp->cl_ipaddr, server->ip_addr, sizeof(clp->cl_ipaddr));
1961 nfs_idmap_new(clp);
1962 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963 list_add_tail(&server->nfs4_siblings, &clp->cl_superblocks);
1964 clnt = rpc_clone_client(clp->cl_rpcclient);
1965 if (!IS_ERR(clnt))
1966 server->nfs4_state = clp;
1967 up_write(&clp->cl_sem);
1968 clp = NULL;
1969
1970 if (IS_ERR(clnt)) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001971 err = PTR_ERR(clnt);
1972 dprintk("%s: cannot create RPC client. Error = %d\n",
1973 __FUNCTION__, err);
1974 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001975 }
1976
1977 server->client = clnt;
1978
1979 if (server->nfs4_state->cl_idmap == NULL) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001980 dprintk("%s: failed to create idmapper.\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981 return -ENOMEM;
1982 }
1983
1984 if (clnt->cl_auth->au_flavor != authflavour) {
J. Bruce Fields6a192752005-06-22 17:16:23 +00001985 struct rpc_auth *auth;
1986
1987 auth = rpcauth_create(authflavour, clnt);
1988 if (IS_ERR(auth)) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001989 dprintk("%s: couldn't create credcache!\n", __FUNCTION__);
J. Bruce Fields6a192752005-06-22 17:16:23 +00001990 return PTR_ERR(auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001991 }
1992 }
1993
1994 sb->s_time_gran = 1;
1995
1996 sb->s_op = &nfs4_sops;
1997 err = nfs_sb_init(sb, authflavour);
1998 if (err == 0)
1999 return 0;
2000out_fail:
2001 if (clp)
2002 nfs4_put_client(clp);
2003 return err;
2004}
2005
2006static int nfs4_compare_super(struct super_block *sb, void *data)
2007{
2008 struct nfs_server *server = data;
2009 struct nfs_server *old = NFS_SB(sb);
2010
2011 if (strcmp(server->hostname, old->hostname) != 0)
2012 return 0;
2013 if (strcmp(server->mnt_path, old->mnt_path) != 0)
2014 return 0;
2015 return 1;
2016}
2017
2018static void *
2019nfs_copy_user_string(char *dst, struct nfs_string *src, int maxlen)
2020{
2021 void *p = NULL;
2022
2023 if (!src->len)
2024 return ERR_PTR(-EINVAL);
2025 if (src->len < maxlen)
2026 maxlen = src->len;
2027 if (dst == NULL) {
2028 p = dst = kmalloc(maxlen + 1, GFP_KERNEL);
2029 if (p == NULL)
2030 return ERR_PTR(-ENOMEM);
2031 }
2032 if (copy_from_user(dst, src->data, maxlen)) {
Jesper Juhlf99d49a2005-11-07 01:01:34 -08002033 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002034 return ERR_PTR(-EFAULT);
2035 }
2036 dst[maxlen] = '\0';
2037 return dst;
2038}
2039
2040static struct super_block *nfs4_get_sb(struct file_system_type *fs_type,
2041 int flags, const char *dev_name, void *raw_data)
2042{
2043 int error;
2044 struct nfs_server *server;
2045 struct super_block *s;
2046 struct nfs4_mount_data *data = raw_data;
2047 void *p;
2048
Trond Myklebust9085bbc2005-06-22 17:16:20 +00002049 if (data == NULL) {
2050 dprintk("%s: missing data argument\n", __FUNCTION__);
2051 return ERR_PTR(-EINVAL);
2052 }
2053 if (data->version <= 0 || data->version > NFS4_MOUNT_VERSION) {
2054 dprintk("%s: bad mount version\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055 return ERR_PTR(-EINVAL);
2056 }
2057
Eric Sesterhennbd647542006-03-20 13:44:10 -05002058 server = kzalloc(sizeof(struct nfs_server), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 if (!server)
2060 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002061 /* Zero out the NFS state stuff */
2062 init_nfsv4_state(server);
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +00002063 server->client = server->client_sys = server->client_acl = ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002064
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 p = nfs_copy_user_string(NULL, &data->hostname, 256);
2066 if (IS_ERR(p))
2067 goto out_err;
2068 server->hostname = p;
2069
2070 p = nfs_copy_user_string(NULL, &data->mnt_path, 1024);
2071 if (IS_ERR(p))
2072 goto out_err;
2073 server->mnt_path = p;
2074
2075 p = nfs_copy_user_string(server->ip_addr, &data->client_addr,
2076 sizeof(server->ip_addr) - 1);
2077 if (IS_ERR(p))
2078 goto out_err;
2079
2080 /* We now require that the mount process passes the remote address */
2081 if (data->host_addrlen != sizeof(server->addr)) {
2082 s = ERR_PTR(-EINVAL);
2083 goto out_free;
2084 }
2085 if (copy_from_user(&server->addr, data->host_addr, sizeof(server->addr))) {
2086 s = ERR_PTR(-EFAULT);
2087 goto out_free;
2088 }
2089 if (server->addr.sin_family != AF_INET ||
2090 server->addr.sin_addr.s_addr == INADDR_ANY) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00002091 dprintk("%s: mount program didn't pass remote IP address!\n",
2092 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002093 s = ERR_PTR(-EINVAL);
2094 goto out_free;
2095 }
2096
Trond Myklebust9085bbc2005-06-22 17:16:20 +00002097 /* Fire up rpciod if not yet running */
2098 s = ERR_PTR(rpciod_up());
2099 if (IS_ERR(s)) {
2100 dprintk("%s: couldn't start rpciod! Error = %ld\n",
2101 __FUNCTION__, PTR_ERR(s));
2102 goto out_free;
2103 }
2104
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 s = sget(fs_type, nfs4_compare_super, nfs_set_super, server);
2106
2107 if (IS_ERR(s) || s->s_root)
2108 goto out_free;
2109
2110 s->s_flags = flags;
2111
Linus Torvalds1da177e2005-04-16 15:20:36 -07002112 error = nfs4_fill_super(s, data, flags & MS_VERBOSE ? 1 : 0);
2113 if (error) {
2114 up_write(&s->s_umount);
2115 deactivate_super(s);
2116 return ERR_PTR(error);
2117 }
2118 s->s_flags |= MS_ACTIVE;
2119 return s;
2120out_err:
2121 s = (struct super_block *)p;
2122out_free:
Jesper Juhlf99d49a2005-11-07 01:01:34 -08002123 kfree(server->mnt_path);
2124 kfree(server->hostname);
Chuck Leverd9ef5a82006-03-20 13:44:13 -05002125 nfs_free_iostats(server->io_stats);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 kfree(server);
2127 return s;
2128}
2129
2130static void nfs4_kill_super(struct super_block *sb)
2131{
2132 struct nfs_server *server = NFS_SB(sb);
2133
2134 nfs_return_all_delegations(sb);
2135 kill_anon_super(sb);
2136
2137 nfs4_renewd_prepare_shutdown(server);
2138
2139 if (server->client != NULL && !IS_ERR(server->client))
2140 rpc_shutdown_client(server->client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002141
2142 destroy_nfsv4_state(server);
2143
Trond Myklebust967b9282006-03-20 13:44:09 -05002144 rpciod_down();
2145
Jesper Juhlf99d49a2005-11-07 01:01:34 -08002146 kfree(server->hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147 kfree(server);
2148}
2149
2150static struct file_system_type nfs4_fs_type = {
2151 .owner = THIS_MODULE,
2152 .name = "nfs4",
2153 .get_sb = nfs4_get_sb,
2154 .kill_sb = nfs4_kill_super,
2155 .fs_flags = FS_ODD_RENAME|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
2156};
2157
Trond Myklebusta72b4422006-01-03 09:55:41 +01002158static const int nfs_set_port_min = 0;
2159static const int nfs_set_port_max = 65535;
2160static int param_set_port(const char *val, struct kernel_param *kp)
2161{
2162 char *endp;
2163 int num = simple_strtol(val, &endp, 0);
2164 if (endp == val || *endp || num < nfs_set_port_min || num > nfs_set_port_max)
2165 return -EINVAL;
2166 *((int *)kp->arg) = num;
2167 return 0;
2168}
2169
2170module_param_call(callback_tcpport, param_set_port, param_get_int,
2171 &nfs_callback_set_tcpport, 0644);
2172
Trond Myklebust58df0952006-01-03 09:55:57 +01002173static int param_set_idmap_timeout(const char *val, struct kernel_param *kp)
2174{
2175 char *endp;
2176 int num = simple_strtol(val, &endp, 0);
2177 int jif = num * HZ;
2178 if (endp == val || *endp || num < 0 || jif < num)
2179 return -EINVAL;
2180 *((int *)kp->arg) = jif;
2181 return 0;
2182}
2183
2184module_param_call(idmap_cache_timeout, param_set_idmap_timeout, param_get_int,
2185 &nfs_idmap_cache_timeout, 0644);
2186
Linus Torvalds1da177e2005-04-16 15:20:36 -07002187#define nfs4_init_once(nfsi) \
2188 do { \
2189 INIT_LIST_HEAD(&(nfsi)->open_states); \
2190 nfsi->delegation = NULL; \
2191 nfsi->delegation_state = 0; \
2192 init_rwsem(&nfsi->rwsem); \
2193 } while(0)
Trond Myklebusta72b4422006-01-03 09:55:41 +01002194
2195static inline int register_nfs4fs(void)
2196{
2197 int ret;
2198
2199 ret = nfs_register_sysctl();
2200 if (ret != 0)
2201 return ret;
2202 ret = register_filesystem(&nfs4_fs_type);
2203 if (ret != 0)
2204 nfs_unregister_sysctl();
2205 return ret;
2206}
2207
2208static inline void unregister_nfs4fs(void)
2209{
2210 unregister_filesystem(&nfs4_fs_type);
2211 nfs_unregister_sysctl();
2212}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002213#else
2214#define nfs4_init_once(nfsi) \
2215 do { } while (0)
2216#define register_nfs4fs() (0)
2217#define unregister_nfs4fs()
2218#endif
2219
2220extern int nfs_init_nfspagecache(void);
2221extern void nfs_destroy_nfspagecache(void);
2222extern int nfs_init_readpagecache(void);
2223extern void nfs_destroy_readpagecache(void);
2224extern int nfs_init_writepagecache(void);
2225extern void nfs_destroy_writepagecache(void);
2226#ifdef CONFIG_NFS_DIRECTIO
2227extern int nfs_init_directcache(void);
2228extern void nfs_destroy_directcache(void);
2229#endif
2230
2231static kmem_cache_t * nfs_inode_cachep;
2232
2233static struct inode *nfs_alloc_inode(struct super_block *sb)
2234{
2235 struct nfs_inode *nfsi;
2236 nfsi = (struct nfs_inode *)kmem_cache_alloc(nfs_inode_cachep, SLAB_KERNEL);
2237 if (!nfsi)
2238 return NULL;
Chuck Lever55296802005-08-18 11:24:09 -07002239 nfsi->flags = 0UL;
2240 nfsi->cache_validity = 0UL;
Steve Dickson223db122005-11-30 09:25:33 -05002241 nfsi->cache_change_attribute = jiffies;
Trond Myklebust458818e2005-06-22 17:16:27 +00002242#ifdef CONFIG_NFS_V3_ACL
2243 nfsi->acl_access = ERR_PTR(-EAGAIN);
2244 nfsi->acl_default = ERR_PTR(-EAGAIN);
2245#endif
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002246#ifdef CONFIG_NFS_V4
2247 nfsi->nfs4_acl = NULL;
2248#endif /* CONFIG_NFS_V4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249 return &nfsi->vfs_inode;
2250}
2251
2252static void nfs_destroy_inode(struct inode *inode)
2253{
2254 kmem_cache_free(nfs_inode_cachep, NFS_I(inode));
2255}
2256
2257static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
2258{
2259 struct nfs_inode *nfsi = (struct nfs_inode *) foo;
2260
2261 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
2262 SLAB_CTOR_CONSTRUCTOR) {
2263 inode_init_once(&nfsi->vfs_inode);
2264 spin_lock_init(&nfsi->req_lock);
2265 INIT_LIST_HEAD(&nfsi->dirty);
2266 INIT_LIST_HEAD(&nfsi->commit);
2267 INIT_LIST_HEAD(&nfsi->open_files);
2268 INIT_RADIX_TREE(&nfsi->nfs_page_tree, GFP_ATOMIC);
2269 atomic_set(&nfsi->data_updates, 0);
2270 nfsi->ndirty = 0;
2271 nfsi->ncommit = 0;
2272 nfsi->npages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002273 nfs4_init_once(nfsi);
2274 }
2275}
2276
Adrian Bunk75c96f82005-05-05 16:16:09 -07002277static int nfs_init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278{
2279 nfs_inode_cachep = kmem_cache_create("nfs_inode_cache",
2280 sizeof(struct nfs_inode),
2281 0, SLAB_RECLAIM_ACCOUNT,
2282 init_once, NULL);
2283 if (nfs_inode_cachep == NULL)
2284 return -ENOMEM;
2285
2286 return 0;
2287}
2288
Adrian Bunk75c96f82005-05-05 16:16:09 -07002289static void nfs_destroy_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002290{
2291 if (kmem_cache_destroy(nfs_inode_cachep))
2292 printk(KERN_INFO "nfs_inode_cache: not all structures were freed\n");
2293}
2294
2295/*
2296 * Initialize NFS
2297 */
2298static int __init init_nfs_fs(void)
2299{
2300 int err;
2301
2302 err = nfs_init_nfspagecache();
2303 if (err)
2304 goto out4;
2305
2306 err = nfs_init_inodecache();
2307 if (err)
2308 goto out3;
2309
2310 err = nfs_init_readpagecache();
2311 if (err)
2312 goto out2;
2313
2314 err = nfs_init_writepagecache();
2315 if (err)
2316 goto out1;
2317
2318#ifdef CONFIG_NFS_DIRECTIO
2319 err = nfs_init_directcache();
2320 if (err)
2321 goto out0;
2322#endif
2323
2324#ifdef CONFIG_PROC_FS
2325 rpc_proc_register(&nfs_rpcstat);
2326#endif
2327 err = register_filesystem(&nfs_fs_type);
2328 if (err)
2329 goto out;
2330 if ((err = register_nfs4fs()) != 0)
2331 goto out;
2332 return 0;
2333out:
2334#ifdef CONFIG_PROC_FS
2335 rpc_proc_unregister("nfs");
2336#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002337#ifdef CONFIG_NFS_DIRECTIO
Linus Torvalds1da177e2005-04-16 15:20:36 -07002338 nfs_destroy_directcache();
Chuck Lever6b59a752005-11-30 18:08:19 -05002339out0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002340#endif
Chuck Lever6b59a752005-11-30 18:08:19 -05002341 nfs_destroy_writepagecache();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002342out1:
2343 nfs_destroy_readpagecache();
2344out2:
2345 nfs_destroy_inodecache();
2346out3:
2347 nfs_destroy_nfspagecache();
2348out4:
2349 return err;
2350}
2351
2352static void __exit exit_nfs_fs(void)
2353{
2354#ifdef CONFIG_NFS_DIRECTIO
2355 nfs_destroy_directcache();
2356#endif
2357 nfs_destroy_writepagecache();
2358 nfs_destroy_readpagecache();
2359 nfs_destroy_inodecache();
2360 nfs_destroy_nfspagecache();
2361#ifdef CONFIG_PROC_FS
2362 rpc_proc_unregister("nfs");
2363#endif
2364 unregister_filesystem(&nfs_fs_type);
2365 unregister_nfs4fs();
2366}
2367
2368/* Not quite true; I just maintain it */
2369MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
2370MODULE_LICENSE("GPL");
2371
2372module_init(init_nfs_fs)
2373module_exit(exit_nfs_fs)