blob: 9ff039f9a83639b5ae6b1bb8473c2e3fe6bb5e09 [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);
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static void nfs_clear_inode(struct inode *);
66static void nfs_umount_begin(struct super_block *);
67static int nfs_statfs(struct super_block *, struct kstatfs *);
68static int nfs_show_options(struct seq_file *, struct vfsmount *);
Chuck Leverd9ef5a82006-03-20 13:44:13 -050069static int nfs_show_stats(struct seq_file *, struct vfsmount *);
Trond Myklebustada70d92005-06-22 17:16:22 +000070static void nfs_zap_acl_cache(struct inode *);
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
72static struct rpc_program nfs_program;
73
74static struct super_operations nfs_sops = {
75 .alloc_inode = nfs_alloc_inode,
76 .destroy_inode = nfs_destroy_inode,
77 .write_inode = nfs_write_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 .statfs = nfs_statfs,
79 .clear_inode = nfs_clear_inode,
80 .umount_begin = nfs_umount_begin,
81 .show_options = nfs_show_options,
Chuck Leverd9ef5a82006-03-20 13:44:13 -050082 .show_stats = nfs_show_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -070083};
84
85/*
86 * RPC cruft for NFS
87 */
88static struct rpc_stat nfs_rpcstat = {
89 .program = &nfs_program
90};
91static struct rpc_version * nfs_version[] = {
92 NULL,
93 NULL,
94 &nfs_version2,
95#if defined(CONFIG_NFS_V3)
96 &nfs_version3,
97#elif defined(CONFIG_NFS_V4)
98 NULL,
99#endif
100#if defined(CONFIG_NFS_V4)
101 &nfs_version4,
102#endif
103};
104
105static struct rpc_program nfs_program = {
106 .name = "nfs",
107 .number = NFS_PROGRAM,
Tobias Klausere8c96f82006-03-24 03:15:34 -0800108 .nrvers = ARRAY_SIZE(nfs_version),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 .version = nfs_version,
110 .stats = &nfs_rpcstat,
111 .pipe_dir_name = "/nfs",
112};
113
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000114#ifdef CONFIG_NFS_V3_ACL
115static struct rpc_stat nfsacl_rpcstat = { &nfsacl_program };
116static struct rpc_version * nfsacl_version[] = {
117 [3] = &nfsacl_version3,
118};
119
120struct rpc_program nfsacl_program = {
121 .name = "nfsacl",
122 .number = NFS_ACL_PROGRAM,
Tobias Klausere8c96f82006-03-24 03:15:34 -0800123 .nrvers = ARRAY_SIZE(nfsacl_version),
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000124 .version = nfsacl_version,
125 .stats = &nfsacl_rpcstat,
126};
127#endif /* CONFIG_NFS_V3_ACL */
128
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129static inline unsigned long
130nfs_fattr_to_ino_t(struct nfs_fattr *fattr)
131{
132 return nfs_fileid_to_ino_t(fattr->fileid);
133}
134
135static int
136nfs_write_inode(struct inode *inode, int sync)
137{
Trond Myklebustc42de9d2006-03-20 13:44:51 -0500138 int flags = sync ? FLUSH_SYNC : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139 int ret;
140
Trond Myklebust3da28eb2005-06-22 17:16:31 +0000141 ret = nfs_commit_inode(inode, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 if (ret < 0)
143 return ret;
144 return 0;
145}
146
147static void
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148nfs_clear_inode(struct inode *inode)
149{
150 struct nfs_inode *nfsi = NFS_I(inode);
151 struct rpc_cred *cred;
152
Trond Myklebustda6d5032006-06-01 17:26:35 -0400153 /*
154 * The following should never happen...
155 */
156 BUG_ON(nfs_have_writebacks(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157 BUG_ON (!list_empty(&nfsi->open_files));
Trond Myklebustada70d92005-06-22 17:16:22 +0000158 nfs_zap_acl_cache(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 cred = nfsi->cache_access.cred;
160 if (cred)
161 put_rpccred(cred);
162 BUG_ON(atomic_read(&nfsi->data_updates) != 0);
163}
164
165void
166nfs_umount_begin(struct super_block *sb)
167{
J. Bruce Fields6a192752005-06-22 17:16:23 +0000168 struct rpc_clnt *rpc = NFS_SB(sb)->client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169
170 /* -EIO all pending I/O */
J. Bruce Fields6a192752005-06-22 17:16:23 +0000171 if (!IS_ERR(rpc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 rpc_killall_tasks(rpc);
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000173 rpc = NFS_SB(sb)->client_acl;
174 if (!IS_ERR(rpc))
175 rpc_killall_tasks(rpc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176}
177
178
179static inline unsigned long
180nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp)
181{
182 /* make sure blocksize is a power of two */
183 if ((bsize & (bsize - 1)) || nrbitsp) {
184 unsigned char nrbits;
185
186 for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--)
187 ;
188 bsize = 1 << nrbits;
189 if (nrbitsp)
190 *nrbitsp = nrbits;
191 }
192
193 return bsize;
194}
195
196/*
197 * Calculate the number of 512byte blocks used.
198 */
199static inline unsigned long
200nfs_calc_block_size(u64 tsize)
201{
202 loff_t used = (tsize + 511) >> 9;
203 return (used > ULONG_MAX) ? ULONG_MAX : used;
204}
205
206/*
207 * Compute and set NFS server blocksize
208 */
209static inline unsigned long
210nfs_block_size(unsigned long bsize, unsigned char *nrbitsp)
211{
Chuck Lever40859d72005-11-30 18:09:02 -0500212 if (bsize < NFS_MIN_FILE_IO_SIZE)
213 bsize = NFS_DEF_FILE_IO_SIZE;
214 else if (bsize >= NFS_MAX_FILE_IO_SIZE)
215 bsize = NFS_MAX_FILE_IO_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
217 return nfs_block_bits(bsize, nrbitsp);
218}
219
220/*
221 * Obtain the root inode of the file system.
222 */
223static struct inode *
224nfs_get_root(struct super_block *sb, struct nfs_fh *rootfh, struct nfs_fsinfo *fsinfo)
225{
226 struct nfs_server *server = NFS_SB(sb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227 int error;
228
229 error = server->rpc_ops->getroot(server, rootfh, fsinfo);
230 if (error < 0) {
231 dprintk("nfs_get_root: getattr error = %d\n", -error);
232 return ERR_PTR(error);
233 }
234
Trond Myklebust03f28e32006-03-20 13:44:48 -0500235 return nfs_fhget(sb, rootfh, fsinfo->fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236}
237
238/*
239 * Do NFS version-independent mount processing, and sanity checking
240 */
241static int
242nfs_sb_init(struct super_block *sb, rpc_authflavor_t authflavor)
243{
244 struct nfs_server *server;
245 struct inode *root_inode;
246 struct nfs_fattr fattr;
247 struct nfs_fsinfo fsinfo = {
248 .fattr = &fattr,
249 };
250 struct nfs_pathconf pathinfo = {
251 .fattr = &fattr,
252 };
253 int no_root_error = 0;
254 unsigned long max_rpc_payload;
255
256 /* We probably want something more informative here */
257 snprintf(sb->s_id, sizeof(sb->s_id), "%x:%x", MAJOR(sb->s_dev), MINOR(sb->s_dev));
258
259 server = NFS_SB(sb);
260
261 sb->s_magic = NFS_SUPER_MAGIC;
262
Trond Myklebust01d0ae82006-03-20 13:44:48 -0500263 server->io_stats = nfs_alloc_iostats();
264 if (server->io_stats == NULL)
265 return -ENOMEM;
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267 root_inode = nfs_get_root(sb, &server->fh, &fsinfo);
268 /* Did getting the root inode fail? */
269 if (IS_ERR(root_inode)) {
270 no_root_error = PTR_ERR(root_inode);
271 goto out_no_root;
272 }
273 sb->s_root = d_alloc_root(root_inode);
274 if (!sb->s_root) {
275 no_root_error = -ENOMEM;
276 goto out_no_root;
277 }
278 sb->s_root->d_op = server->rpc_ops->dentry_ops;
279
Chuck Lever67ec9f42006-03-20 13:44:15 -0500280 /* mount time stamp, in seconds */
281 server->mount_time = jiffies;
282
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283 /* Get some general file system info */
284 if (server->namelen == 0 &&
285 server->rpc_ops->pathconf(server, &server->fh, &pathinfo) >= 0)
286 server->namelen = pathinfo.max_namelen;
287 /* Work out a lot of parameters */
288 if (server->rsize == 0)
289 server->rsize = nfs_block_size(fsinfo.rtpref, NULL);
290 if (server->wsize == 0)
291 server->wsize = nfs_block_size(fsinfo.wtpref, NULL);
292
293 if (fsinfo.rtmax >= 512 && server->rsize > fsinfo.rtmax)
294 server->rsize = nfs_block_size(fsinfo.rtmax, NULL);
295 if (fsinfo.wtmax >= 512 && server->wsize > fsinfo.wtmax)
296 server->wsize = nfs_block_size(fsinfo.wtmax, NULL);
297
298 max_rpc_payload = nfs_block_size(rpc_max_payload(server->client), NULL);
299 if (server->rsize > max_rpc_payload)
300 server->rsize = max_rpc_payload;
Chuck Lever40859d72005-11-30 18:09:02 -0500301 if (server->rsize > NFS_MAX_FILE_IO_SIZE)
302 server->rsize = NFS_MAX_FILE_IO_SIZE;
303 server->rpages = (server->rsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
304
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 if (server->wsize > max_rpc_payload)
306 server->wsize = max_rpc_payload;
Chuck Lever40859d72005-11-30 18:09:02 -0500307 if (server->wsize > NFS_MAX_FILE_IO_SIZE)
308 server->wsize = NFS_MAX_FILE_IO_SIZE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 server->wpages = (server->wsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310
311 if (sb->s_blocksize == 0)
312 sb->s_blocksize = nfs_block_bits(server->wsize,
313 &sb->s_blocksize_bits);
314 server->wtmult = nfs_block_bits(fsinfo.wtmult, NULL);
315
316 server->dtsize = nfs_block_size(fsinfo.dtpref, NULL);
317 if (server->dtsize > PAGE_CACHE_SIZE)
318 server->dtsize = PAGE_CACHE_SIZE;
319 if (server->dtsize > server->rsize)
320 server->dtsize = server->rsize;
321
322 if (server->flags & NFS_MOUNT_NOAC) {
323 server->acregmin = server->acregmax = 0;
324 server->acdirmin = server->acdirmax = 0;
325 sb->s_flags |= MS_SYNCHRONOUS;
326 }
327 server->backing_dev_info.ra_pages = server->rpages * NFS_MAX_READAHEAD;
328
329 sb->s_maxbytes = fsinfo.maxfilesize;
330 if (sb->s_maxbytes > MAX_LFS_FILESIZE)
331 sb->s_maxbytes = MAX_LFS_FILESIZE;
332
333 server->client->cl_intr = (server->flags & NFS_MOUNT_INTR) ? 1 : 0;
334 server->client->cl_softrtry = (server->flags & NFS_MOUNT_SOFT) ? 1 : 0;
335
336 /* We're airborne Set socket buffersize */
337 rpc_setbufsize(server->client, server->wsize + 100, server->rsize + 100);
338 return 0;
339 /* Yargs. It didn't work out. */
340out_no_root:
341 dprintk("nfs_sb_init: get root inode failed: errno %d\n", -no_root_error);
342 if (!IS_ERR(root_inode))
343 iput(root_inode);
344 return no_root_error;
345}
346
Chuck Levereab5c082005-08-11 16:25:14 -0400347static void nfs_init_timeout_values(struct rpc_timeout *to, int proto, unsigned int timeo, unsigned int retrans)
348{
349 to->to_initval = timeo * HZ / 10;
350 to->to_retries = retrans;
351 if (!to->to_retries)
352 to->to_retries = 2;
353
354 switch (proto) {
355 case IPPROTO_TCP:
356 if (!to->to_initval)
357 to->to_initval = 60 * HZ;
Chuck Lever03bf4b72005-08-25 16:25:55 -0700358 if (to->to_initval > NFS_MAX_TCP_TIMEOUT)
359 to->to_initval = NFS_MAX_TCP_TIMEOUT;
Chuck Levereab5c082005-08-11 16:25:14 -0400360 to->to_increment = to->to_initval;
361 to->to_maxval = to->to_initval + (to->to_increment * to->to_retries);
362 to->to_exponential = 0;
363 break;
364 case IPPROTO_UDP:
365 default:
366 if (!to->to_initval)
367 to->to_initval = 11 * HZ / 10;
Chuck Lever03bf4b72005-08-25 16:25:55 -0700368 if (to->to_initval > NFS_MAX_UDP_TIMEOUT)
369 to->to_initval = NFS_MAX_UDP_TIMEOUT;
370 to->to_maxval = NFS_MAX_UDP_TIMEOUT;
Chuck Levereab5c082005-08-11 16:25:14 -0400371 to->to_exponential = 1;
372 break;
373 }
374}
375
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376/*
377 * Create an RPC client handle.
378 */
379static struct rpc_clnt *
380nfs_create_client(struct nfs_server *server, const struct nfs_mount_data *data)
381{
382 struct rpc_timeout timeparms;
383 struct rpc_xprt *xprt = NULL;
384 struct rpc_clnt *clnt = NULL;
Chuck Levereab5c082005-08-11 16:25:14 -0400385 int proto = (data->flags & NFS_MOUNT_TCP) ? IPPROTO_TCP : IPPROTO_UDP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Chuck Levereab5c082005-08-11 16:25:14 -0400387 nfs_init_timeout_values(&timeparms, proto, data->timeo, data->retrans);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388
Chuck Lever7a480e22006-03-20 13:44:12 -0500389 server->retrans_timeo = timeparms.to_initval;
390 server->retrans_count = timeparms.to_retries;
391
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 /* create transport and client */
Chuck Levereab5c082005-08-11 16:25:14 -0400393 xprt = xprt_create_proto(proto, &server->addr, &timeparms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 if (IS_ERR(xprt)) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +0000395 dprintk("%s: cannot create RPC transport. Error = %ld\n",
396 __FUNCTION__, PTR_ERR(xprt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 return (struct rpc_clnt *)xprt;
398 }
399 clnt = rpc_create_client(xprt, server->hostname, &nfs_program,
400 server->rpc_ops->version, data->pseudoflavor);
401 if (IS_ERR(clnt)) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +0000402 dprintk("%s: cannot create RPC client. Error = %ld\n",
403 __FUNCTION__, PTR_ERR(xprt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 goto out_fail;
405 }
406
407 clnt->cl_intr = 1;
408 clnt->cl_softrtry = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410 return clnt;
411
412out_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 return clnt;
414}
415
416/*
417 * The way this works is that the mount process passes a structure
418 * in the data argument which contains the server's IP address
419 * and the root file handle obtained from the server's mount
420 * daemon. We stash these away in the private superblock fields.
421 */
422static int
423nfs_fill_super(struct super_block *sb, struct nfs_mount_data *data, int silent)
424{
425 struct nfs_server *server;
426 rpc_authflavor_t authflavor;
427
428 server = NFS_SB(sb);
429 sb->s_blocksize_bits = 0;
430 sb->s_blocksize = 0;
431 if (data->bsize)
432 sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
433 if (data->rsize)
434 server->rsize = nfs_block_size(data->rsize, NULL);
435 if (data->wsize)
436 server->wsize = nfs_block_size(data->wsize, NULL);
437 server->flags = data->flags & NFS_MOUNT_FLAGMASK;
438
439 server->acregmin = data->acregmin*HZ;
440 server->acregmax = data->acregmax*HZ;
441 server->acdirmin = data->acdirmin*HZ;
442 server->acdirmax = data->acdirmax*HZ;
443
444 /* Start lockd here, before we might error out */
445 if (!(server->flags & NFS_MOUNT_NONLM))
446 lockd_up();
447
448 server->namelen = data->namlen;
449 server->hostname = kmalloc(strlen(data->hostname) + 1, GFP_KERNEL);
450 if (!server->hostname)
451 return -ENOMEM;
452 strcpy(server->hostname, data->hostname);
453
454 /* Check NFS protocol revision and initialize RPC op vector
455 * and file handle pool. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456#ifdef CONFIG_NFS_V3
Trond Myklebust9085bbc2005-06-22 17:16:20 +0000457 if (server->flags & NFS_MOUNT_VER3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700458 server->rpc_ops = &nfs_v3_clientops;
459 server->caps |= NFS_CAP_READDIRPLUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 } else {
461 server->rpc_ops = &nfs_v2_clientops;
462 }
Trond Myklebust9085bbc2005-06-22 17:16:20 +0000463#else
464 server->rpc_ops = &nfs_v2_clientops;
465#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466
467 /* Fill in pseudoflavor for mount version < 5 */
468 if (!(data->flags & NFS_MOUNT_SECFLAVOUR))
469 data->pseudoflavor = RPC_AUTH_UNIX;
470 authflavor = data->pseudoflavor; /* save for sb_init() */
471 /* XXX maybe we want to add a server->pseudoflavor field */
472
473 /* Create RPC client handles */
474 server->client = nfs_create_client(server, data);
475 if (IS_ERR(server->client))
476 return PTR_ERR(server->client);
477 /* RFC 2623, sec 2.3.2 */
478 if (authflavor != RPC_AUTH_UNIX) {
J. Bruce Fields6a192752005-06-22 17:16:23 +0000479 struct rpc_auth *auth;
480
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 server->client_sys = rpc_clone_client(server->client);
482 if (IS_ERR(server->client_sys))
483 return PTR_ERR(server->client_sys);
J. Bruce Fields6a192752005-06-22 17:16:23 +0000484 auth = rpcauth_create(RPC_AUTH_UNIX, server->client_sys);
485 if (IS_ERR(auth))
486 return PTR_ERR(auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487 } else {
488 atomic_inc(&server->client->cl_count);
489 server->client_sys = server->client;
490 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 if (server->flags & NFS_MOUNT_VER3) {
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000492#ifdef CONFIG_NFS_V3_ACL
493 if (!(server->flags & NFS_MOUNT_NOACL)) {
494 server->client_acl = rpc_bind_new_program(server->client, &nfsacl_program, 3);
495 /* No errors! Assume that Sun nfsacls are supported */
496 if (!IS_ERR(server->client_acl))
497 server->caps |= NFS_CAP_ACLS;
498 }
499#else
500 server->flags &= ~NFS_MOUNT_NOACL;
501#endif /* CONFIG_NFS_V3_ACL */
Andreas Gruenbacher055ffbe2005-06-22 17:16:27 +0000502 /*
503 * The VFS shouldn't apply the umask to mode bits. We will
504 * do so ourselves when necessary.
505 */
506 sb->s_flags |= MS_POSIXACL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 if (server->namelen == 0 || server->namelen > NFS3_MAXNAMLEN)
508 server->namelen = NFS3_MAXNAMLEN;
509 sb->s_time_gran = 1;
510 } else {
511 if (server->namelen == 0 || server->namelen > NFS2_MAXNAMLEN)
512 server->namelen = NFS2_MAXNAMLEN;
513 }
514
515 sb->s_op = &nfs_sops;
516 return nfs_sb_init(sb, authflavor);
517}
518
519static int
520nfs_statfs(struct super_block *sb, struct kstatfs *buf)
521{
522 struct nfs_server *server = NFS_SB(sb);
523 unsigned char blockbits;
524 unsigned long blockres;
525 struct nfs_fh *rootfh = NFS_FH(sb->s_root->d_inode);
526 struct nfs_fattr fattr;
527 struct nfs_fsstat res = {
528 .fattr = &fattr,
529 };
530 int error;
531
532 lock_kernel();
533
534 error = server->rpc_ops->statfs(server, rootfh, &res);
535 buf->f_type = NFS_SUPER_MAGIC;
536 if (error < 0)
537 goto out_err;
538
539 /*
540 * Current versions of glibc do not correctly handle the
541 * case where f_frsize != f_bsize. Eventually we want to
542 * report the value of wtmult in this field.
543 */
544 buf->f_frsize = sb->s_blocksize;
545
546 /*
547 * On most *nix systems, f_blocks, f_bfree, and f_bavail
548 * are reported in units of f_frsize. Linux hasn't had
549 * an f_frsize field in its statfs struct until recently,
550 * thus historically Linux's sys_statfs reports these
551 * fields in units of f_bsize.
552 */
553 buf->f_bsize = sb->s_blocksize;
554 blockbits = sb->s_blocksize_bits;
555 blockres = (1 << blockbits) - 1;
556 buf->f_blocks = (res.tbytes + blockres) >> blockbits;
557 buf->f_bfree = (res.fbytes + blockres) >> blockbits;
558 buf->f_bavail = (res.abytes + blockres) >> blockbits;
559
560 buf->f_files = res.tfiles;
561 buf->f_ffree = res.afiles;
562
563 buf->f_namelen = server->namelen;
564 out:
565 unlock_kernel();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 return 0;
567
568 out_err:
Chuck Leverdc20f802005-11-30 18:08:57 -0500569 dprintk("%s: statfs error = %d\n", __FUNCTION__, -error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700570 buf->f_bsize = buf->f_blocks = buf->f_bfree = buf->f_bavail = -1;
571 goto out;
572
573}
574
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500575static void nfs_show_mount_options(struct seq_file *m, struct nfs_server *nfss, int showdefaults)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576{
577 static struct proc_nfs_info {
578 int flag;
579 char *str;
580 char *nostr;
581 } nfs_info[] = {
582 { NFS_MOUNT_SOFT, ",soft", ",hard" },
583 { NFS_MOUNT_INTR, ",intr", "" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700584 { NFS_MOUNT_NOCTO, ",nocto", "" },
585 { NFS_MOUNT_NOAC, ",noac", "" },
Chuck Leverc8bded92006-03-20 13:44:13 -0500586 { NFS_MOUNT_NONLM, ",nolock", "" },
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +0000587 { NFS_MOUNT_NOACL, ",noacl", "" },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588 { 0, NULL, NULL }
589 };
590 struct proc_nfs_info *nfs_infop;
Trond Myklebust3063d8a2005-08-25 16:25:57 -0700591 char buf[12];
592 char *proto;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
Chuck Leverc8bded92006-03-20 13:44:13 -0500594 seq_printf(m, ",vers=%d", nfss->rpc_ops->version);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 seq_printf(m, ",rsize=%d", nfss->rsize);
596 seq_printf(m, ",wsize=%d", nfss->wsize);
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500597 if (nfss->acregmin != 3*HZ || showdefaults)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598 seq_printf(m, ",acregmin=%d", nfss->acregmin/HZ);
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500599 if (nfss->acregmax != 60*HZ || showdefaults)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 seq_printf(m, ",acregmax=%d", nfss->acregmax/HZ);
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500601 if (nfss->acdirmin != 30*HZ || showdefaults)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 seq_printf(m, ",acdirmin=%d", nfss->acdirmin/HZ);
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500603 if (nfss->acdirmax != 60*HZ || showdefaults)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604 seq_printf(m, ",acdirmax=%d", nfss->acdirmax/HZ);
605 for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) {
606 if (nfss->flags & nfs_infop->flag)
607 seq_puts(m, nfs_infop->str);
608 else
609 seq_puts(m, nfs_infop->nostr);
610 }
Trond Myklebust3063d8a2005-08-25 16:25:57 -0700611 switch (nfss->client->cl_xprt->prot) {
612 case IPPROTO_TCP:
613 proto = "tcp";
614 break;
615 case IPPROTO_UDP:
616 proto = "udp";
617 break;
618 default:
619 snprintf(buf, sizeof(buf), "%u", nfss->client->cl_xprt->prot);
620 proto = buf;
621 }
622 seq_printf(m, ",proto=%s", proto);
Chuck Lever7a480e22006-03-20 13:44:12 -0500623 seq_printf(m, ",timeo=%lu", 10U * nfss->retrans_timeo / HZ);
624 seq_printf(m, ",retrans=%u", nfss->retrans_count);
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500625}
626
627static int nfs_show_options(struct seq_file *m, struct vfsmount *mnt)
628{
629 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
630
631 nfs_show_mount_options(m, nfss, 0);
632
Linus Torvalds1da177e2005-04-16 15:20:36 -0700633 seq_puts(m, ",addr=");
634 seq_escape(m, nfss->hostname, " \t\n\\");
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500635
636 return 0;
637}
638
639static int nfs_show_stats(struct seq_file *m, struct vfsmount *mnt)
640{
641 int i, cpu;
642 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
643 struct rpc_auth *auth = nfss->client->cl_auth;
644 struct nfs_iostats totals = { };
645
646 seq_printf(m, "statvers=%s", NFS_IOSTAT_VERS);
647
648 /*
649 * Display all mount option settings
650 */
651 seq_printf(m, "\n\topts:\t");
652 seq_puts(m, mnt->mnt_sb->s_flags & MS_RDONLY ? "ro" : "rw");
653 seq_puts(m, mnt->mnt_sb->s_flags & MS_SYNCHRONOUS ? ",sync" : "");
654 seq_puts(m, mnt->mnt_sb->s_flags & MS_NOATIME ? ",noatime" : "");
655 seq_puts(m, mnt->mnt_sb->s_flags & MS_NODIRATIME ? ",nodiratime" : "");
656 nfs_show_mount_options(m, nfss, 1);
657
Chuck Lever67ec9f42006-03-20 13:44:15 -0500658 seq_printf(m, "\n\tage:\t%lu", (jiffies - nfss->mount_time) / HZ);
659
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500660 seq_printf(m, "\n\tcaps:\t");
661 seq_printf(m, "caps=0x%x", nfss->caps);
662 seq_printf(m, ",wtmult=%d", nfss->wtmult);
663 seq_printf(m, ",dtsize=%d", nfss->dtsize);
664 seq_printf(m, ",bsize=%d", nfss->bsize);
665 seq_printf(m, ",namelen=%d", nfss->namelen);
666
667#ifdef CONFIG_NFS_V4
668 if (nfss->rpc_ops->version == 4) {
669 seq_printf(m, "\n\tnfsv4:\t");
670 seq_printf(m, "bm0=0x%x", nfss->attr_bitmask[0]);
671 seq_printf(m, ",bm1=0x%x", nfss->attr_bitmask[1]);
672 seq_printf(m, ",acl=0x%x", nfss->acl_bitmask);
673 }
674#endif
675
676 /*
677 * Display security flavor in effect for this mount
678 */
679 seq_printf(m, "\n\tsec:\tflavor=%d", auth->au_ops->au_flavor);
680 if (auth->au_flavor)
681 seq_printf(m, ",pseudoflavor=%d", auth->au_flavor);
682
683 /*
684 * Display superblock I/O counters
685 */
John Hawkesb9d95062006-04-19 13:06:20 -0400686 for_each_possible_cpu(cpu) {
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500687 struct nfs_iostats *stats;
688
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500689 preempt_disable();
690 stats = per_cpu_ptr(nfss->io_stats, cpu);
691
692 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
693 totals.events[i] += stats->events[i];
694 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
695 totals.bytes[i] += stats->bytes[i];
696
697 preempt_enable();
698 }
699
700 seq_printf(m, "\n\tevents:\t");
701 for (i = 0; i < __NFSIOS_COUNTSMAX; i++)
702 seq_printf(m, "%lu ", totals.events[i]);
703 seq_printf(m, "\n\tbytes:\t");
704 for (i = 0; i < __NFSIOS_BYTESMAX; i++)
705 seq_printf(m, "%Lu ", totals.bytes[i]);
Chuck Lever4ece3a22006-03-20 13:44:22 -0500706 seq_printf(m, "\n");
707
708 rpc_print_iostats(m, nfss->client);
Chuck Leverd9ef5a82006-03-20 13:44:13 -0500709
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 return 0;
711}
712
Trond Myklebust29884df2005-12-13 16:13:54 -0500713/**
714 * nfs_sync_mapping - helper to flush all mmapped dirty data to disk
715 */
716int nfs_sync_mapping(struct address_space *mapping)
717{
718 int ret;
719
720 if (mapping->nrpages == 0)
721 return 0;
722 unmap_mapping_range(mapping, 0, 0, 0);
OGAWA Hirofumi28fd1292006-01-08 01:02:14 -0800723 ret = filemap_write_and_wait(mapping);
Trond Myklebust29884df2005-12-13 16:13:54 -0500724 if (ret != 0)
725 goto out;
726 ret = nfs_wb_all(mapping->host);
727out:
728 return ret;
729}
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731/*
732 * Invalidate the local caches
733 */
Trond Myklebustb37b03b2005-11-25 17:10:06 -0500734static void nfs_zap_caches_locked(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735{
736 struct nfs_inode *nfsi = NFS_I(inode);
737 int mode = inode->i_mode;
738
Chuck Lever91d5b472006-03-20 13:44:14 -0500739 nfs_inc_stats(inode, NFSIOS_ATTRINVALIDATE);
740
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 NFS_ATTRTIMEO(inode) = NFS_MINATTRTIMEO(inode);
742 NFS_ATTRTIMEO_UPDATE(inode) = jiffies;
743
744 memset(NFS_COOKIEVERF(inode), 0, sizeof(NFS_COOKIEVERF(inode)));
745 if (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))
Chuck Lever55296802005-08-18 11:24:09 -0700746 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 -0700747 else
Chuck Lever55296802005-08-18 11:24:09 -0700748 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 -0500749}
Chuck Leverdc592502005-08-18 11:24:12 -0700750
Trond Myklebustb37b03b2005-11-25 17:10:06 -0500751void nfs_zap_caches(struct inode *inode)
752{
753 spin_lock(&inode->i_lock);
754 nfs_zap_caches_locked(inode);
Chuck Leverdc592502005-08-18 11:24:12 -0700755 spin_unlock(&inode->i_lock);
Trond Myklebustada70d92005-06-22 17:16:22 +0000756}
757
758static void nfs_zap_acl_cache(struct inode *inode)
759{
760 void (*clear_acl_cache)(struct inode *);
761
762 clear_acl_cache = NFS_PROTO(inode)->clear_acl_cache;
763 if (clear_acl_cache != NULL)
764 clear_acl_cache(inode);
Chuck Leverdc592502005-08-18 11:24:12 -0700765 spin_lock(&inode->i_lock);
Chuck Lever55296802005-08-18 11:24:09 -0700766 NFS_I(inode)->cache_validity &= ~NFS_INO_INVALID_ACL;
Chuck Leverdc592502005-08-18 11:24:12 -0700767 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768}
769
770/*
Trond Myklebustb37b03b2005-11-25 17:10:06 -0500771 * Invalidate, but do not unhash, the inode.
772 * NB: must be called with inode->i_lock held!
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773 */
Trond Myklebustb37b03b2005-11-25 17:10:06 -0500774static void nfs_invalidate_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775{
Trond Myklebustb37b03b2005-11-25 17:10:06 -0500776 set_bit(NFS_INO_STALE, &NFS_FLAGS(inode));
777 nfs_zap_caches_locked(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
779
780struct nfs_find_desc {
781 struct nfs_fh *fh;
782 struct nfs_fattr *fattr;
783};
784
785/*
786 * In NFSv3 we can have 64bit inode numbers. In order to support
787 * this, and re-exported directories (also seen in NFSv2)
788 * we are forced to allow 2 different inodes to have the same
789 * i_ino.
790 */
791static int
792nfs_find_actor(struct inode *inode, void *opaque)
793{
794 struct nfs_find_desc *desc = (struct nfs_find_desc *)opaque;
795 struct nfs_fh *fh = desc->fh;
796 struct nfs_fattr *fattr = desc->fattr;
797
798 if (NFS_FILEID(inode) != fattr->fileid)
799 return 0;
800 if (nfs_compare_fh(NFS_FH(inode), fh))
801 return 0;
802 if (is_bad_inode(inode) || NFS_STALE(inode))
803 return 0;
804 return 1;
805}
806
807static int
808nfs_init_locked(struct inode *inode, void *opaque)
809{
810 struct nfs_find_desc *desc = (struct nfs_find_desc *)opaque;
811 struct nfs_fattr *fattr = desc->fattr;
812
813 NFS_FILEID(inode) = fattr->fileid;
814 nfs_copy_fh(NFS_FH(inode), desc->fh);
815 return 0;
816}
817
818/* Don't use READDIRPLUS on directories that we believe are too large */
819#define NFS_LIMIT_READDIRPLUS (8*PAGE_SIZE)
820
821/*
822 * This is our front-end to iget that looks up inodes by file handle
823 * instead of inode number.
824 */
825struct inode *
826nfs_fhget(struct super_block *sb, struct nfs_fh *fh, struct nfs_fattr *fattr)
827{
828 struct nfs_find_desc desc = {
829 .fh = fh,
830 .fattr = fattr
831 };
Trond Myklebust03f28e32006-03-20 13:44:48 -0500832 struct inode *inode = ERR_PTR(-ENOENT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 unsigned long hash;
834
835 if ((fattr->valid & NFS_ATTR_FATTR) == 0)
836 goto out_no_inode;
837
838 if (!fattr->nlink) {
839 printk("NFS: Buggy server - nlink == 0!\n");
840 goto out_no_inode;
841 }
842
843 hash = nfs_fattr_to_ino_t(fattr);
844
Trond Myklebust03f28e32006-03-20 13:44:48 -0500845 inode = iget5_locked(sb, hash, nfs_find_actor, nfs_init_locked, &desc);
846 if (inode == NULL) {
847 inode = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 goto out_no_inode;
Trond Myklebust03f28e32006-03-20 13:44:48 -0500849 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 if (inode->i_state & I_NEW) {
852 struct nfs_inode *nfsi = NFS_I(inode);
853
854 /* We set i_ino for the few things that still rely on it,
855 * such as stat(2) */
856 inode->i_ino = hash;
857
858 /* We can't support update_atime(), since the server will reset it */
859 inode->i_flags |= S_NOATIME|S_NOCMTIME;
860 inode->i_mode = fattr->mode;
861 /* Why so? Because we want revalidate for devices/FIFOs, and
862 * that's precisely what we have in nfs_file_inode_operations.
863 */
J. Bruce Fields92cfc622005-06-22 17:16:22 +0000864 inode->i_op = NFS_SB(sb)->rpc_ops->file_inode_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 if (S_ISREG(inode->i_mode)) {
866 inode->i_fop = &nfs_file_operations;
867 inode->i_data.a_ops = &nfs_file_aops;
868 inode->i_data.backing_dev_info = &NFS_SB(sb)->backing_dev_info;
869 } else if (S_ISDIR(inode->i_mode)) {
870 inode->i_op = NFS_SB(sb)->rpc_ops->dir_inode_ops;
871 inode->i_fop = &nfs_dir_operations;
872 if (nfs_server_capable(inode, NFS_CAP_READDIRPLUS)
873 && fattr->size <= NFS_LIMIT_READDIRPLUS)
Chuck Lever412d5822005-08-18 11:24:11 -0700874 set_bit(NFS_INO_ADVISE_RDPLUS, &NFS_FLAGS(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 } else if (S_ISLNK(inode->i_mode))
876 inode->i_op = &nfs_symlink_inode_operations;
877 else
878 init_special_inode(inode, inode->i_mode, fattr->rdev);
879
Trond Myklebust33801142005-10-27 22:12:39 -0400880 nfsi->read_cache_jiffies = fattr->time_start;
881 nfsi->last_updated = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 inode->i_atime = fattr->atime;
883 inode->i_mtime = fattr->mtime;
884 inode->i_ctime = fattr->ctime;
885 if (fattr->valid & NFS_ATTR_FATTR_V4)
886 nfsi->change_attr = fattr->change_attr;
887 inode->i_size = nfs_size_to_loff_t(fattr->size);
888 inode->i_nlink = fattr->nlink;
889 inode->i_uid = fattr->uid;
890 inode->i_gid = fattr->gid;
891 if (fattr->valid & (NFS_ATTR_FATTR_V3 | NFS_ATTR_FATTR_V4)) {
892 /*
893 * report the blocks in 512byte units
894 */
895 inode->i_blocks = nfs_calc_block_size(fattr->du.nfs3.used);
896 inode->i_blksize = inode->i_sb->s_blocksize;
897 } else {
898 inode->i_blocks = fattr->du.nfs2.blocks;
899 inode->i_blksize = fattr->du.nfs2.blocksize;
900 }
901 nfsi->attrtimeo = NFS_MINATTRTIMEO(inode);
902 nfsi->attrtimeo_timestamp = jiffies;
903 memset(nfsi->cookieverf, 0, sizeof(nfsi->cookieverf));
904 nfsi->cache_access.cred = NULL;
905
906 unlock_new_inode(inode);
907 } else
908 nfs_refresh_inode(inode, fattr);
909 dprintk("NFS: nfs_fhget(%s/%Ld ct=%d)\n",
910 inode->i_sb->s_id,
911 (long long)NFS_FILEID(inode),
912 atomic_read(&inode->i_count));
913
914out:
915 return inode;
916
917out_no_inode:
Trond Myklebust03f28e32006-03-20 13:44:48 -0500918 dprintk("nfs_fhget: iget failed with error %ld\n", PTR_ERR(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700919 goto out;
920}
921
922#define NFS_VALID_ATTRS (ATTR_MODE|ATTR_UID|ATTR_GID|ATTR_SIZE|ATTR_ATIME|ATTR_ATIME_SET|ATTR_MTIME|ATTR_MTIME_SET)
923
924int
925nfs_setattr(struct dentry *dentry, struct iattr *attr)
926{
927 struct inode *inode = dentry->d_inode;
928 struct nfs_fattr fattr;
929 int error;
930
Chuck Lever91d5b472006-03-20 13:44:14 -0500931 nfs_inc_stats(inode, NFSIOS_VFSSETATTR);
932
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 if (attr->ia_valid & ATTR_SIZE) {
934 if (!S_ISREG(inode->i_mode) || attr->ia_size == i_size_read(inode))
935 attr->ia_valid &= ~ATTR_SIZE;
936 }
937
938 /* Optimization: if the end result is no change, don't RPC */
939 attr->ia_valid &= NFS_VALID_ATTRS;
940 if (attr->ia_valid == 0)
941 return 0;
942
943 lock_kernel();
944 nfs_begin_data_update(inode);
Trond Myklebust755c1e22006-03-20 13:44:06 -0500945 /* Write all dirty data */
946 filemap_write_and_wait(inode->i_mapping);
947 nfs_wb_all(inode);
Trond Myklebust642ac542005-10-18 14:20:19 -0700948 /*
949 * Return any delegations if we're going to change ACLs
950 */
951 if ((attr->ia_valid & (ATTR_MODE|ATTR_UID|ATTR_GID)) != 0)
952 nfs_inode_return_delegation(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 error = NFS_PROTO(inode)->setattr(dentry, &fattr, attr);
Trond Myklebust65e43082005-08-16 11:49:44 -0400954 if (error == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955 nfs_refresh_inode(inode, &fattr);
Trond Myklebust65e43082005-08-16 11:49:44 -0400956 nfs_end_data_update(inode);
957 unlock_kernel();
958 return error;
959}
960
961/**
962 * nfs_setattr_update_inode - Update inode metadata after a setattr call.
963 * @inode: pointer to struct inode
964 * @attr: pointer to struct iattr
965 *
966 * Note: we do this in the *proc.c in order to ensure that
967 * it works for things like exclusive creates too.
968 */
969void nfs_setattr_update_inode(struct inode *inode, struct iattr *attr)
970{
971 if ((attr->ia_valid & (ATTR_MODE|ATTR_UID|ATTR_GID)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 if ((attr->ia_valid & ATTR_MODE) != 0) {
Trond Myklebust65e43082005-08-16 11:49:44 -0400973 int mode = attr->ia_mode & S_IALLUGO;
974 mode |= inode->i_mode & ~S_IALLUGO;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700975 inode->i_mode = mode;
976 }
977 if ((attr->ia_valid & ATTR_UID) != 0)
978 inode->i_uid = attr->ia_uid;
979 if ((attr->ia_valid & ATTR_GID) != 0)
980 inode->i_gid = attr->ia_gid;
Chuck Leverdc592502005-08-18 11:24:12 -0700981 spin_lock(&inode->i_lock);
Chuck Lever55296802005-08-18 11:24:09 -0700982 NFS_I(inode)->cache_validity |= NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
Chuck Leverdc592502005-08-18 11:24:12 -0700983 spin_unlock(&inode->i_lock);
Trond Myklebust65e43082005-08-16 11:49:44 -0400984 }
985 if ((attr->ia_valid & ATTR_SIZE) != 0) {
Chuck Lever91d5b472006-03-20 13:44:14 -0500986 nfs_inc_stats(inode, NFSIOS_SETATTRTRUNC);
Trond Myklebust65e43082005-08-16 11:49:44 -0400987 inode->i_size = attr->ia_size;
988 vmtruncate(inode, attr->ia_size);
989 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990}
991
Chuck Lever412d5822005-08-18 11:24:11 -0700992static int nfs_wait_schedule(void *word)
993{
994 if (signal_pending(current))
995 return -ERESTARTSYS;
996 schedule();
997 return 0;
998}
999
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000/*
1001 * Wait for the inode to get unlocked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002 */
Chuck Lever412d5822005-08-18 11:24:11 -07001003static int nfs_wait_on_inode(struct inode *inode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004{
1005 struct rpc_clnt *clnt = NFS_CLIENT(inode);
1006 struct nfs_inode *nfsi = NFS_I(inode);
Chuck Lever412d5822005-08-18 11:24:11 -07001007 sigset_t oldmask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008 int error;
Chuck Lever412d5822005-08-18 11:24:11 -07001009
Chuck Lever412d5822005-08-18 11:24:11 -07001010 rpc_clnt_sigmask(clnt, &oldmask);
1011 error = wait_on_bit_lock(&nfsi->flags, NFS_INO_REVALIDATING,
1012 nfs_wait_schedule, TASK_INTERRUPTIBLE);
1013 rpc_clnt_sigunmask(clnt, &oldmask);
Chuck Lever412d5822005-08-18 11:24:11 -07001014
Linus Torvalds1da177e2005-04-16 15:20:36 -07001015 return error;
1016}
1017
Chuck Lever412d5822005-08-18 11:24:11 -07001018static void nfs_wake_up_inode(struct inode *inode)
1019{
1020 struct nfs_inode *nfsi = NFS_I(inode);
1021
1022 clear_bit(NFS_INO_REVALIDATING, &nfsi->flags);
1023 smp_mb__after_clear_bit();
1024 wake_up_bit(&nfsi->flags, NFS_INO_REVALIDATING);
1025}
1026
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027int nfs_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
1028{
1029 struct inode *inode = dentry->d_inode;
Chuck Lever55296802005-08-18 11:24:09 -07001030 int need_atime = NFS_I(inode)->cache_validity & NFS_INO_INVALID_ATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 int err;
1032
Trond Myklebust70b9ecb2006-01-03 09:55:34 +01001033 /* Flush out writes to the server in order to update c/mtime */
Trond Myklebustc42de9d2006-03-20 13:44:51 -05001034 nfs_sync_inode_wait(inode, 0, 0, FLUSH_NOCOMMIT);
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001035
1036 /*
1037 * We may force a getattr if the user cares about atime.
1038 *
1039 * Note that we only have to check the vfsmount flags here:
1040 * - NFS always sets S_NOATIME by so checking it would give a
1041 * bogus result
1042 * - NFS never sets MS_NOATIME or MS_NODIRATIME so there is
1043 * no point in checking those.
1044 */
1045 if ((mnt->mnt_flags & MNT_NOATIME) ||
1046 ((mnt->mnt_flags & MNT_NODIRATIME) && S_ISDIR(inode->i_mode)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 need_atime = 0;
Christoph Hellwigfc33a7b2006-01-09 20:52:17 -08001048
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049 if (need_atime)
1050 err = __nfs_revalidate_inode(NFS_SERVER(inode), inode);
1051 else
1052 err = nfs_revalidate_inode(NFS_SERVER(inode), inode);
1053 if (!err)
1054 generic_fillattr(inode, stat);
1055 return err;
1056}
1057
Trond Myklebustb92dccf2006-03-20 13:44:03 -05001058static 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 -07001059{
1060 struct nfs_open_context *ctx;
1061
1062 ctx = (struct nfs_open_context *)kmalloc(sizeof(*ctx), GFP_KERNEL);
1063 if (ctx != NULL) {
1064 atomic_set(&ctx->count, 1);
1065 ctx->dentry = dget(dentry);
Trond Myklebustb92dccf2006-03-20 13:44:03 -05001066 ctx->vfsmnt = mntget(mnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 ctx->cred = get_rpccred(cred);
1068 ctx->state = NULL;
1069 ctx->lockowner = current->files;
1070 ctx->error = 0;
Olivier Galibert00a92642005-06-22 17:16:29 +00001071 ctx->dir_cookie = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072 }
1073 return ctx;
1074}
1075
1076struct nfs_open_context *get_nfs_open_context(struct nfs_open_context *ctx)
1077{
1078 if (ctx != NULL)
1079 atomic_inc(&ctx->count);
1080 return ctx;
1081}
1082
1083void put_nfs_open_context(struct nfs_open_context *ctx)
1084{
1085 if (atomic_dec_and_test(&ctx->count)) {
1086 if (!list_empty(&ctx->list)) {
1087 struct inode *inode = ctx->dentry->d_inode;
1088 spin_lock(&inode->i_lock);
1089 list_del(&ctx->list);
1090 spin_unlock(&inode->i_lock);
1091 }
1092 if (ctx->state != NULL)
1093 nfs4_close_state(ctx->state, ctx->mode);
1094 if (ctx->cred != NULL)
1095 put_rpccred(ctx->cred);
1096 dput(ctx->dentry);
Trond Myklebustb92dccf2006-03-20 13:44:03 -05001097 mntput(ctx->vfsmnt);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 kfree(ctx);
1099 }
1100}
1101
1102/*
1103 * Ensure that mmap has a recent RPC credential for use when writing out
1104 * shared pages
1105 */
Trond Myklebustb92dccf2006-03-20 13:44:03 -05001106static void nfs_file_set_open_context(struct file *filp, struct nfs_open_context *ctx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107{
1108 struct inode *inode = filp->f_dentry->d_inode;
1109 struct nfs_inode *nfsi = NFS_I(inode);
1110
1111 filp->private_data = get_nfs_open_context(ctx);
1112 spin_lock(&inode->i_lock);
1113 list_add(&ctx->list, &nfsi->open_files);
1114 spin_unlock(&inode->i_lock);
1115}
1116
Trond Myklebustd5308382005-11-04 15:33:38 -05001117/*
1118 * Given an inode, search for an open context with the desired characteristics
1119 */
1120struct nfs_open_context *nfs_find_open_context(struct inode *inode, struct rpc_cred *cred, int mode)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121{
1122 struct nfs_inode *nfsi = NFS_I(inode);
1123 struct nfs_open_context *pos, *ctx = NULL;
1124
1125 spin_lock(&inode->i_lock);
1126 list_for_each_entry(pos, &nfsi->open_files, list) {
Trond Myklebustd5308382005-11-04 15:33:38 -05001127 if (cred != NULL && pos->cred != cred)
1128 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001129 if ((pos->mode & mode) == mode) {
1130 ctx = get_nfs_open_context(pos);
1131 break;
1132 }
1133 }
1134 spin_unlock(&inode->i_lock);
1135 return ctx;
1136}
1137
Trond Myklebustb92dccf2006-03-20 13:44:03 -05001138static void nfs_file_clear_open_context(struct file *filp)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
1140 struct inode *inode = filp->f_dentry->d_inode;
1141 struct nfs_open_context *ctx = (struct nfs_open_context *)filp->private_data;
1142
1143 if (ctx) {
1144 filp->private_data = NULL;
1145 spin_lock(&inode->i_lock);
1146 list_move_tail(&ctx->list, &NFS_I(inode)->open_files);
1147 spin_unlock(&inode->i_lock);
1148 put_nfs_open_context(ctx);
1149 }
1150}
1151
1152/*
1153 * These allocate and release file read/write context information.
1154 */
1155int nfs_open(struct inode *inode, struct file *filp)
1156{
1157 struct nfs_open_context *ctx;
1158 struct rpc_cred *cred;
1159
1160 cred = rpcauth_lookupcred(NFS_CLIENT(inode)->cl_auth, 0);
1161 if (IS_ERR(cred))
1162 return PTR_ERR(cred);
Trond Myklebustb92dccf2006-03-20 13:44:03 -05001163 ctx = alloc_nfs_open_context(filp->f_vfsmnt, filp->f_dentry, cred);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 put_rpccred(cred);
1165 if (ctx == NULL)
1166 return -ENOMEM;
1167 ctx->mode = filp->f_mode;
1168 nfs_file_set_open_context(filp, ctx);
1169 put_nfs_open_context(ctx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 return 0;
1171}
1172
1173int nfs_release(struct inode *inode, struct file *filp)
1174{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175 nfs_file_clear_open_context(filp);
1176 return 0;
1177}
1178
1179/*
1180 * This function is called whenever some part of NFS notices that
1181 * the cached attributes have to be refreshed.
1182 */
1183int
1184__nfs_revalidate_inode(struct nfs_server *server, struct inode *inode)
1185{
1186 int status = -ESTALE;
1187 struct nfs_fattr fattr;
1188 struct nfs_inode *nfsi = NFS_I(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 dfprintk(PAGECACHE, "NFS: revalidating (%s/%Ld)\n",
1191 inode->i_sb->s_id, (long long)NFS_FILEID(inode));
1192
Trond Myklebust1842bfb2006-05-25 01:41:01 -04001193 nfs_inc_stats(inode, NFSIOS_INODEREVALIDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194 lock_kernel();
1195 if (!inode || is_bad_inode(inode))
1196 goto out_nowait;
1197 if (NFS_STALE(inode))
1198 goto out_nowait;
1199
Chuck Lever412d5822005-08-18 11:24:11 -07001200 status = nfs_wait_on_inode(inode);
1201 if (status < 0)
1202 goto out;
1203 if (NFS_STALE(inode)) {
1204 status = -ESTALE;
1205 /* Do we trust the cached ESTALE? */
1206 if (NFS_ATTRTIMEO(inode) != 0) {
Trond Myklebust44b11872006-05-25 01:40:59 -04001207 if (nfsi->cache_validity & (NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ATIME)) {
Chuck Lever412d5822005-08-18 11:24:11 -07001208 /* no */
1209 } else
1210 goto out;
1211 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 status = NFS_PROTO(inode)->getattr(server, NFS_FH(inode), &fattr);
1215 if (status != 0) {
1216 dfprintk(PAGECACHE, "nfs_revalidate_inode: (%s/%Ld) getattr failed, error=%d\n",
1217 inode->i_sb->s_id,
1218 (long long)NFS_FILEID(inode), status);
1219 if (status == -ESTALE) {
1220 nfs_zap_caches(inode);
1221 if (!S_ISDIR(inode->i_mode))
Chuck Lever412d5822005-08-18 11:24:11 -07001222 set_bit(NFS_INO_STALE, &NFS_FLAGS(inode));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001223 }
1224 goto out;
1225 }
1226
Trond Myklebust33801142005-10-27 22:12:39 -04001227 spin_lock(&inode->i_lock);
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001228 status = nfs_update_inode(inode, &fattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 if (status) {
Trond Myklebust33801142005-10-27 22:12:39 -04001230 spin_unlock(&inode->i_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001231 dfprintk(PAGECACHE, "nfs_revalidate_inode: (%s/%Ld) refresh failed, error=%d\n",
1232 inode->i_sb->s_id,
1233 (long long)NFS_FILEID(inode), status);
1234 goto out;
1235 }
Chuck Leverdc592502005-08-18 11:24:12 -07001236 spin_unlock(&inode->i_lock);
Chuck Lever55296802005-08-18 11:24:09 -07001237
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001238 if (nfsi->cache_validity & NFS_INO_INVALID_ACL)
Trond Myklebustada70d92005-06-22 17:16:22 +00001239 nfs_zap_acl_cache(inode);
Chuck Lever55296802005-08-18 11:24:09 -07001240
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 dfprintk(PAGECACHE, "NFS: (%s/%Ld) revalidation complete\n",
1242 inode->i_sb->s_id,
1243 (long long)NFS_FILEID(inode));
1244
Chuck Lever412d5822005-08-18 11:24:11 -07001245 out:
1246 nfs_wake_up_inode(inode);
1247
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 out_nowait:
1249 unlock_kernel();
1250 return status;
1251}
1252
1253int nfs_attribute_timeout(struct inode *inode)
1254{
1255 struct nfs_inode *nfsi = NFS_I(inode);
1256
1257 if (nfs_have_delegation(inode, FMODE_READ))
1258 return 0;
1259 return time_after(jiffies, nfsi->read_cache_jiffies+nfsi->attrtimeo);
1260}
1261
1262/**
1263 * nfs_revalidate_inode - Revalidate the inode attributes
1264 * @server - pointer to nfs_server struct
1265 * @inode - pointer to inode struct
1266 *
1267 * Updates inode attribute information by retrieving the data from the server.
1268 */
1269int nfs_revalidate_inode(struct nfs_server *server, struct inode *inode)
1270{
Trond Myklebust44b11872006-05-25 01:40:59 -04001271 if (!(NFS_I(inode)->cache_validity & NFS_INO_INVALID_ATTR)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001272 && !nfs_attribute_timeout(inode))
1273 return NFS_STALE(inode) ? -ESTALE : 0;
1274 return __nfs_revalidate_inode(server, inode);
1275}
1276
1277/**
Trond Myklebust7d52e862005-06-22 17:16:30 +00001278 * nfs_revalidate_mapping - Revalidate the pagecache
1279 * @inode - pointer to host inode
1280 * @mapping - pointer to mapping
1281 */
Trond Myklebust44b11872006-05-25 01:40:59 -04001282int nfs_revalidate_mapping(struct inode *inode, struct address_space *mapping)
Trond Myklebust7d52e862005-06-22 17:16:30 +00001283{
1284 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust44b11872006-05-25 01:40:59 -04001285 int ret = 0;
1286
1287 if (NFS_STALE(inode))
1288 ret = -ESTALE;
1289 if ((nfsi->cache_validity & NFS_INO_REVAL_PAGECACHE)
1290 || nfs_attribute_timeout(inode))
1291 ret = __nfs_revalidate_inode(NFS_SERVER(inode), inode);
Trond Myklebust7d52e862005-06-22 17:16:30 +00001292
Chuck Lever55296802005-08-18 11:24:09 -07001293 if (nfsi->cache_validity & NFS_INO_INVALID_DATA) {
Chuck Lever91d5b472006-03-20 13:44:14 -05001294 nfs_inc_stats(inode, NFSIOS_DATAINVALIDATE);
Trond Myklebust29884df2005-12-13 16:13:54 -05001295 if (S_ISREG(inode->i_mode))
1296 nfs_sync_mapping(mapping);
Trond Myklebust7d52e862005-06-22 17:16:30 +00001297 invalidate_inode_pages2(mapping);
Chuck Leverdc592502005-08-18 11:24:12 -07001298
1299 spin_lock(&inode->i_lock);
Chuck Lever55296802005-08-18 11:24:09 -07001300 nfsi->cache_validity &= ~NFS_INO_INVALID_DATA;
Trond Myklebust7d52e862005-06-22 17:16:30 +00001301 if (S_ISDIR(inode->i_mode)) {
1302 memset(nfsi->cookieverf, 0, sizeof(nfsi->cookieverf));
1303 /* This ensures we revalidate child dentries */
Trond Myklebust913a70f2005-10-27 22:12:38 -04001304 nfsi->cache_change_attribute = jiffies;
Trond Myklebust7d52e862005-06-22 17:16:30 +00001305 }
Chuck Leverdc592502005-08-18 11:24:12 -07001306 spin_unlock(&inode->i_lock);
1307
Trond Myklebust7d52e862005-06-22 17:16:30 +00001308 dfprintk(PAGECACHE, "NFS: (%s/%Ld) data cache invalidated\n",
1309 inode->i_sb->s_id,
1310 (long long)NFS_FILEID(inode));
1311 }
Trond Myklebust44b11872006-05-25 01:40:59 -04001312 return ret;
Trond Myklebust7d52e862005-06-22 17:16:30 +00001313}
1314
1315/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 * nfs_begin_data_update
1317 * @inode - pointer to inode
1318 * Declare that a set of operations will update file data on the server
1319 */
1320void nfs_begin_data_update(struct inode *inode)
1321{
1322 atomic_inc(&NFS_I(inode)->data_updates);
1323}
1324
1325/**
1326 * nfs_end_data_update
1327 * @inode - pointer to inode
1328 * Declare end of the operations that will update file data
1329 * This will mark the inode as immediately needing revalidation
1330 * of its attribute cache.
1331 */
1332void nfs_end_data_update(struct inode *inode)
1333{
1334 struct nfs_inode *nfsi = NFS_I(inode);
1335
1336 if (!nfs_have_delegation(inode, FMODE_READ)) {
Trond Myklebustdecf4912005-10-27 22:12:39 -04001337 /* Directories and symlinks: invalidate page cache */
1338 if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode)) {
1339 spin_lock(&inode->i_lock);
Chuck Lever55296802005-08-18 11:24:09 -07001340 nfsi->cache_validity |= NFS_INO_INVALID_DATA;
Trond Myklebustdecf4912005-10-27 22:12:39 -04001341 spin_unlock(&inode->i_lock);
1342 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 }
Trond Myklebust913a70f2005-10-27 22:12:38 -04001344 nfsi->cache_change_attribute = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 atomic_dec(&nfsi->data_updates);
1346}
1347
Trond Myklebusta895b4a2006-01-03 09:55:40 +01001348static void nfs_wcc_update_inode(struct inode *inode, struct nfs_fattr *fattr)
1349{
1350 struct nfs_inode *nfsi = NFS_I(inode);
1351
Trond Myklebusta895b4a2006-01-03 09:55:40 +01001352 /* If we have atomic WCC data, we may update some attributes */
1353 if ((fattr->valid & NFS_ATTR_WCC) != 0) {
1354 if (timespec_equal(&inode->i_ctime, &fattr->pre_ctime)) {
1355 memcpy(&inode->i_ctime, &fattr->ctime, sizeof(inode->i_ctime));
1356 nfsi->cache_change_attribute = jiffies;
1357 }
1358 if (timespec_equal(&inode->i_mtime, &fattr->pre_mtime)) {
1359 memcpy(&inode->i_mtime, &fattr->mtime, sizeof(inode->i_mtime));
1360 nfsi->cache_change_attribute = jiffies;
1361 }
1362 if (inode->i_size == fattr->pre_size && nfsi->npages == 0) {
1363 inode->i_size = fattr->size;
1364 nfsi->cache_change_attribute = jiffies;
1365 }
1366 }
1367}
1368
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369/**
Trond Myklebust33801142005-10-27 22:12:39 -04001370 * nfs_check_inode_attributes - verify consistency of the inode attribute cache
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 * @inode - pointer to inode
1372 * @fattr - updated attributes
1373 *
1374 * Verifies the attribute cache. If we have just changed the attributes,
1375 * so that fattr carries weak cache consistency data, then it may
1376 * also update the ctime/mtime/change_attribute.
1377 */
Trond Myklebust33801142005-10-27 22:12:39 -04001378static int nfs_check_inode_attributes(struct inode *inode, struct nfs_fattr *fattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379{
1380 struct nfs_inode *nfsi = NFS_I(inode);
1381 loff_t cur_size, new_isize;
1382 int data_unstable;
1383
Chuck Leverdc592502005-08-18 11:24:12 -07001384
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385 /* Has the inode gone and changed behind our back? */
1386 if (nfsi->fileid != fattr->fileid
Chuck Leverdc592502005-08-18 11:24:12 -07001387 || (inode->i_mode & S_IFMT) != (fattr->mode & S_IFMT)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001388 return -EIO;
Chuck Leverdc592502005-08-18 11:24:12 -07001389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Trond Myklebustca62b9c2006-03-20 13:44:07 -05001391 /* Are we in the process of updating data on the server? */
1392 data_unstable = nfs_caches_unstable(inode);
1393
1394 /* Do atomic weak cache consistency updates */
1395 nfs_wcc_update_inode(inode, fattr);
1396
Trond Myklebust9d1e9232006-05-25 01:40:46 -04001397 if ((fattr->valid & NFS_ATTR_FATTR_V4) != 0 &&
Trond Myklebustf1bb0b92006-05-25 01:40:55 -04001398 nfsi->change_attr != fattr->change_attr)
1399 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 /* Verify a few of the more important attributes */
Trond Myklebustf1bb0b92006-05-25 01:40:55 -04001402 if (!timespec_equal(&inode->i_mtime, &fattr->mtime))
1403 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE;
Trond Myklebustca62b9c2006-03-20 13:44:07 -05001404
1405 cur_size = i_size_read(inode);
1406 new_isize = nfs_size_to_loff_t(fattr->size);
Trond Myklebustfb374d22006-03-20 13:44:08 -05001407 if (cur_size != new_isize && nfsi->npages == 0)
1408 nfsi->cache_validity |= NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409
1410 /* Have any file permissions changed? */
1411 if ((inode->i_mode & S_IALLUGO) != (fattr->mode & S_IALLUGO)
1412 || inode->i_uid != fattr->uid
1413 || inode->i_gid != fattr->gid)
Chuck Lever55296802005-08-18 11:24:09 -07001414 nfsi->cache_validity |= NFS_INO_INVALID_ATTR | NFS_INO_INVALID_ACCESS | NFS_INO_INVALID_ACL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001415
1416 /* Has the link count changed? */
1417 if (inode->i_nlink != fattr->nlink)
Chuck Lever55296802005-08-18 11:24:09 -07001418 nfsi->cache_validity |= NFS_INO_INVALID_ATTR;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001419
1420 if (!timespec_equal(&inode->i_atime, &fattr->atime))
Chuck Lever55296802005-08-18 11:24:09 -07001421 nfsi->cache_validity |= NFS_INO_INVALID_ATIME;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422
Trond Myklebust33801142005-10-27 22:12:39 -04001423 nfsi->read_cache_jiffies = fattr->time_start;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 return 0;
1425}
1426
Trond Myklebust33801142005-10-27 22:12:39 -04001427/**
1428 * nfs_refresh_inode - try to update the inode attribute cache
1429 * @inode - pointer to inode
1430 * @fattr - updated attributes
1431 *
1432 * Check that an RPC call that returned attributes has not overlapped with
1433 * other recent updates of the inode metadata, then decide whether it is
1434 * safe to do a full update of the inode attributes, or whether just to
1435 * call nfs_check_inode_attributes.
1436 */
1437int nfs_refresh_inode(struct inode *inode, struct nfs_fattr *fattr)
1438{
1439 struct nfs_inode *nfsi = NFS_I(inode);
1440 int status;
1441
1442 if ((fattr->valid & NFS_ATTR_FATTR) == 0)
1443 return 0;
1444 spin_lock(&inode->i_lock);
Trond Myklebust33801142005-10-27 22:12:39 -04001445 if (time_after(fattr->time_start, nfsi->last_updated))
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001446 status = nfs_update_inode(inode, fattr);
Trond Myklebust33801142005-10-27 22:12:39 -04001447 else
1448 status = nfs_check_inode_attributes(inode, fattr);
1449
1450 spin_unlock(&inode->i_lock);
1451 return status;
1452}
1453
Trond Myklebustdecf4912005-10-27 22:12:39 -04001454/**
1455 * nfs_post_op_update_inode - try to update the inode attribute cache
1456 * @inode - pointer to inode
1457 * @fattr - updated attributes
1458 *
1459 * After an operation that has changed the inode metadata, mark the
1460 * attribute cache as being invalid, then try to update it.
1461 */
1462int nfs_post_op_update_inode(struct inode *inode, struct nfs_fattr *fattr)
1463{
1464 struct nfs_inode *nfsi = NFS_I(inode);
1465 int status = 0;
1466
1467 spin_lock(&inode->i_lock);
1468 if (unlikely((fattr->valid & NFS_ATTR_FATTR) == 0)) {
Trond Myklebustf1bb0b92006-05-25 01:40:55 -04001469 nfsi->cache_validity |= NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE;
Trond Myklebustdecf4912005-10-27 22:12:39 -04001470 goto out;
1471 }
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001472 status = nfs_update_inode(inode, fattr);
Trond Myklebustdecf4912005-10-27 22:12:39 -04001473out:
1474 spin_unlock(&inode->i_lock);
1475 return status;
1476}
1477
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478/*
1479 * Many nfs protocol calls return the new file attributes after
1480 * an operation. Here we update the inode to reflect the state
1481 * of the server's inode.
1482 *
1483 * This is a bit tricky because we have to make sure all dirty pages
1484 * have been sent off to the server before calling invalidate_inode_pages.
1485 * To make sure no other process adds more write requests while we try
1486 * our best to flush them, we make them sleep during the attribute refresh.
1487 *
1488 * A very similar scenario holds for the dir cache.
1489 */
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001490static int nfs_update_inode(struct inode *inode, struct nfs_fattr *fattr)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491{
1492 struct nfs_inode *nfsi = NFS_I(inode);
Trond Myklebust951a1432005-06-22 17:16:30 +00001493 loff_t cur_isize, new_isize;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 unsigned int invalid = 0;
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001495 int data_stable;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001496
1497 dfprintk(VFS, "NFS: %s(%s/%ld ct=%d info=0x%x)\n",
1498 __FUNCTION__, inode->i_sb->s_id, inode->i_ino,
1499 atomic_read(&inode->i_count), fattr->valid);
1500
Chuck Lever325cfed2005-11-30 18:08:55 -05001501 if (nfsi->fileid != fattr->fileid)
1502 goto out_fileid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001503
1504 /*
1505 * Make sure the inode's type hasn't changed.
1506 */
Trond Myklebust33801142005-10-27 22:12:39 -04001507 if ((inode->i_mode & S_IFMT) != (fattr->mode & S_IFMT))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508 goto out_changed;
1509
1510 /*
1511 * Update the read time so we don't revalidate too often.
1512 */
Trond Myklebust33801142005-10-27 22:12:39 -04001513 nfsi->read_cache_jiffies = fattr->time_start;
1514 nfsi->last_updated = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515
1516 /* Are we racing with known updates of the metadata on the server? */
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001517 data_stable = nfs_verify_change_attribute(inode, fattr->time_start);
1518 if (data_stable)
Trond Myklebustf1bb0b92006-05-25 01:40:55 -04001519 nfsi->cache_validity &= ~(NFS_INO_INVALID_ATTR|NFS_INO_REVAL_PAGECACHE|NFS_INO_INVALID_ATIME);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001520
Trond Myklebusta895b4a2006-01-03 09:55:40 +01001521 /* Do atomic weak cache consistency updates */
1522 nfs_wcc_update_inode(inode, fattr);
1523
Trond Myklebust951a1432005-06-22 17:16:30 +00001524 /* Check if our cached file size is stale */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 new_isize = nfs_size_to_loff_t(fattr->size);
1526 cur_isize = i_size_read(inode);
Trond Myklebust951a1432005-06-22 17:16:30 +00001527 if (new_isize != cur_isize) {
1528 /* Do we perhaps have any outstanding writes? */
1529 if (nfsi->npages == 0) {
1530 /* No, but did we race with nfs_end_data_update()? */
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001531 if (data_stable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 inode->i_size = new_isize;
Trond Myklebust951a1432005-06-22 17:16:30 +00001533 invalid |= NFS_INO_INVALID_DATA;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534 }
Trond Myklebust951a1432005-06-22 17:16:30 +00001535 invalid |= NFS_INO_INVALID_ATTR;
1536 } else if (new_isize > cur_isize) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537 inode->i_size = new_isize;
1538 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA;
1539 }
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001540 nfsi->cache_change_attribute = jiffies;
Trond Myklebust951a1432005-06-22 17:16:30 +00001541 dprintk("NFS: isize change on server for file %s/%ld\n",
1542 inode->i_sb->s_id, inode->i_ino);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001543 }
1544
Trond Myklebust951a1432005-06-22 17:16:30 +00001545 /* Check if the mtime agrees */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001546 if (!timespec_equal(&inode->i_mtime, &fattr->mtime)) {
1547 memcpy(&inode->i_mtime, &fattr->mtime, sizeof(inode->i_mtime));
Trond Myklebust951a1432005-06-22 17:16:30 +00001548 dprintk("NFS: mtime change on server for file %s/%ld\n",
1549 inode->i_sb->s_id, inode->i_ino);
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001550 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA;
1551 nfsi->cache_change_attribute = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 }
1553
Trond Myklebustada70d92005-06-22 17:16:22 +00001554 /* If ctime has changed we should definitely clear access+acl caches */
1555 if (!timespec_equal(&inode->i_ctime, &fattr->ctime)) {
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001556 invalid |= NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
Trond Myklebustada70d92005-06-22 17:16:22 +00001557 memcpy(&inode->i_ctime, &fattr->ctime, sizeof(inode->i_ctime));
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001558 nfsi->cache_change_attribute = jiffies;
Trond Myklebustada70d92005-06-22 17:16:22 +00001559 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 memcpy(&inode->i_atime, &fattr->atime, sizeof(inode->i_atime));
1561
1562 if ((inode->i_mode & S_IALLUGO) != (fattr->mode & S_IALLUGO) ||
1563 inode->i_uid != fattr->uid ||
1564 inode->i_gid != fattr->gid)
Trond Myklebustada70d92005-06-22 17:16:22 +00001565 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
1567 inode->i_mode = fattr->mode;
1568 inode->i_nlink = fattr->nlink;
1569 inode->i_uid = fattr->uid;
1570 inode->i_gid = fattr->gid;
1571
1572 if (fattr->valid & (NFS_ATTR_FATTR_V3 | NFS_ATTR_FATTR_V4)) {
1573 /*
1574 * report the blocks in 512byte units
1575 */
1576 inode->i_blocks = nfs_calc_block_size(fattr->du.nfs3.used);
1577 inode->i_blksize = inode->i_sb->s_blocksize;
1578 } else {
1579 inode->i_blocks = fattr->du.nfs2.blocks;
1580 inode->i_blksize = fattr->du.nfs2.blocksize;
1581 }
1582
Trond Myklebust9d1e9232006-05-25 01:40:46 -04001583 if ((fattr->valid & NFS_ATTR_FATTR_V4) != 0 &&
1584 nfsi->change_attr != fattr->change_attr) {
1585 dprintk("NFS: change_attr change on server for file %s/%ld\n",
1586 inode->i_sb->s_id, inode->i_ino);
1587 nfsi->change_attr = fattr->change_attr;
1588 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA|NFS_INO_INVALID_ACCESS|NFS_INO_INVALID_ACL;
1589 nfsi->cache_change_attribute = jiffies;
Trond Myklebustca62b9c2006-03-20 13:44:07 -05001590 }
1591
Linus Torvalds1da177e2005-04-16 15:20:36 -07001592 /* Update attrtimeo value if we're out of the unstable period */
1593 if (invalid & NFS_INO_INVALID_ATTR) {
Chuck Lever91d5b472006-03-20 13:44:14 -05001594 nfs_inc_stats(inode, NFSIOS_ATTRINVALIDATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001595 nfsi->attrtimeo = NFS_MINATTRTIMEO(inode);
1596 nfsi->attrtimeo_timestamp = jiffies;
1597 } else if (time_after(jiffies, nfsi->attrtimeo_timestamp+nfsi->attrtimeo)) {
1598 if ((nfsi->attrtimeo <<= 1) > NFS_MAXATTRTIMEO(inode))
1599 nfsi->attrtimeo = NFS_MAXATTRTIMEO(inode);
1600 nfsi->attrtimeo_timestamp = jiffies;
1601 }
1602 /* Don't invalidate the data if we were to blame */
1603 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode)
1604 || S_ISLNK(inode->i_mode)))
1605 invalid &= ~NFS_INO_INVALID_DATA;
Trond Myklebust24aa1fe2005-12-03 15:20:07 -05001606 if (data_stable)
1607 invalid &= ~(NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ATIME|NFS_INO_REVAL_PAGECACHE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 if (!nfs_have_delegation(inode, FMODE_READ))
Chuck Lever55296802005-08-18 11:24:09 -07001609 nfsi->cache_validity |= invalid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610
1611 return 0;
1612 out_changed:
1613 /*
1614 * Big trouble! The inode has become a different object.
1615 */
1616#ifdef NFS_PARANOIA
1617 printk(KERN_DEBUG "%s: inode %ld mode changed, %07o to %07o\n",
1618 __FUNCTION__, inode->i_ino, inode->i_mode, fattr->mode);
1619#endif
Trond Myklebustb37b03b2005-11-25 17:10:06 -05001620 out_err:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 /*
1622 * No need to worry about unhashing the dentry, as the
1623 * lookup validation will know that the inode is bad.
1624 * (But we fall through to invalidate the caches.)
1625 */
1626 nfs_invalidate_inode(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 return -ESTALE;
Chuck Lever325cfed2005-11-30 18:08:55 -05001628
1629 out_fileid:
1630 printk(KERN_ERR "NFS: server %s error: fileid changed\n"
1631 "fsid %s: expected fileid 0x%Lx, got 0x%Lx\n",
1632 NFS_SERVER(inode)->hostname, inode->i_sb->s_id,
1633 (long long)nfsi->fileid, (long long)fattr->fileid);
1634 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635}
1636
1637/*
1638 * File system information
1639 */
1640
1641static int nfs_set_super(struct super_block *s, void *data)
1642{
1643 s->s_fs_info = data;
1644 return set_anon_super(s, data);
1645}
1646
1647static int nfs_compare_super(struct super_block *sb, void *data)
1648{
1649 struct nfs_server *server = data;
1650 struct nfs_server *old = NFS_SB(sb);
1651
1652 if (old->addr.sin_addr.s_addr != server->addr.sin_addr.s_addr)
1653 return 0;
1654 if (old->addr.sin_port != server->addr.sin_port)
1655 return 0;
1656 return !nfs_compare_fh(&old->fh, &server->fh);
1657}
1658
1659static struct super_block *nfs_get_sb(struct file_system_type *fs_type,
1660 int flags, const char *dev_name, void *raw_data)
1661{
1662 int error;
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001663 struct nfs_server *server = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 struct super_block *s;
1665 struct nfs_fh *root;
1666 struct nfs_mount_data *data = raw_data;
1667
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001668 s = ERR_PTR(-EINVAL);
1669 if (data == NULL) {
1670 dprintk("%s: missing data argument\n", __FUNCTION__);
1671 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 }
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001673 if (data->version <= 0 || data->version > NFS_MOUNT_VERSION) {
1674 dprintk("%s: bad mount version\n", __FUNCTION__);
1675 goto out_err;
1676 }
1677 switch (data->version) {
1678 case 1:
1679 data->namlen = 0;
1680 case 2:
1681 data->bsize = 0;
1682 case 3:
1683 if (data->flags & NFS_MOUNT_VER3) {
1684 dprintk("%s: mount structure version %d does not support NFSv3\n",
1685 __FUNCTION__,
1686 data->version);
1687 goto out_err;
1688 }
1689 data->root.size = NFS2_FHSIZE;
1690 memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
1691 case 4:
1692 if (data->flags & NFS_MOUNT_SECFLAVOUR) {
1693 dprintk("%s: mount structure version %d does not support strong security\n",
1694 __FUNCTION__,
1695 data->version);
1696 goto out_err;
1697 }
1698 case 5:
1699 memset(data->context, 0, sizeof(data->context));
1700 }
1701#ifndef CONFIG_NFS_V3
1702 /* If NFSv3 is not compiled in, return -EPROTONOSUPPORT */
1703 s = ERR_PTR(-EPROTONOSUPPORT);
1704 if (data->flags & NFS_MOUNT_VER3) {
1705 dprintk("%s: NFSv3 not compiled into kernel\n", __FUNCTION__);
1706 goto out_err;
1707 }
1708#endif /* CONFIG_NFS_V3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001709
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001710 s = ERR_PTR(-ENOMEM);
Eric Sesterhennbd647542006-03-20 13:44:10 -05001711 server = kzalloc(sizeof(struct nfs_server), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001712 if (!server)
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001713 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001714 /* Zero out the NFS state stuff */
1715 init_nfsv4_state(server);
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +00001716 server->client = server->client_sys = server->client_acl = ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717
Linus Torvalds1da177e2005-04-16 15:20:36 -07001718 root = &server->fh;
1719 if (data->flags & NFS_MOUNT_VER3)
1720 root->size = data->root.size;
1721 else
1722 root->size = NFS2_FHSIZE;
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001723 s = ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001724 if (root->size > sizeof(root->data)) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001725 dprintk("%s: invalid root filehandle\n", __FUNCTION__);
1726 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727 }
1728 memcpy(root->data, data->root.data, root->size);
1729
1730 /* We now require that the mount process passes the remote address */
1731 memcpy(&server->addr, &data->addr, sizeof(server->addr));
1732 if (server->addr.sin_addr.s_addr == INADDR_ANY) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001733 dprintk("%s: mount program didn't pass remote address!\n",
1734 __FUNCTION__);
1735 goto out_err;
1736 }
1737
1738 /* Fire up rpciod if not yet running */
1739 s = ERR_PTR(rpciod_up());
1740 if (IS_ERR(s)) {
1741 dprintk("%s: couldn't start rpciod! Error = %ld\n",
1742 __FUNCTION__, PTR_ERR(s));
1743 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 }
1745
1746 s = sget(fs_type, nfs_compare_super, nfs_set_super, server);
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001747 if (IS_ERR(s) || s->s_root)
1748 goto out_rpciod_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749
1750 s->s_flags = flags;
1751
Theodore Ts'o9b04c992006-03-24 03:15:10 -08001752 error = nfs_fill_super(s, data, flags & MS_SILENT ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 if (error) {
1754 up_write(&s->s_umount);
1755 deactivate_super(s);
1756 return ERR_PTR(error);
1757 }
1758 s->s_flags |= MS_ACTIVE;
1759 return s;
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001760out_rpciod_down:
1761 rpciod_down();
1762out_err:
1763 kfree(server);
1764 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001765}
1766
1767static void nfs_kill_super(struct super_block *s)
1768{
1769 struct nfs_server *server = NFS_SB(s);
1770
1771 kill_anon_super(s);
1772
J. Bruce Fields6a192752005-06-22 17:16:23 +00001773 if (!IS_ERR(server->client))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001774 rpc_shutdown_client(server->client);
J. Bruce Fields6a192752005-06-22 17:16:23 +00001775 if (!IS_ERR(server->client_sys))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776 rpc_shutdown_client(server->client_sys);
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +00001777 if (!IS_ERR(server->client_acl))
1778 rpc_shutdown_client(server->client_acl);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001779
1780 if (!(server->flags & NFS_MOUNT_NONLM))
1781 lockd_down(); /* release rpc.lockd */
1782
1783 rpciod_down(); /* release rpciod */
1784
Trond Myklebust01d0ae82006-03-20 13:44:48 -05001785 nfs_free_iostats(server->io_stats);
Jesper Juhlf99d49a2005-11-07 01:01:34 -08001786 kfree(server->hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001787 kfree(server);
1788}
1789
1790static struct file_system_type nfs_fs_type = {
1791 .owner = THIS_MODULE,
1792 .name = "nfs",
1793 .get_sb = nfs_get_sb,
1794 .kill_sb = nfs_kill_super,
1795 .fs_flags = FS_ODD_RENAME|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
1796};
1797
1798#ifdef CONFIG_NFS_V4
1799
1800static void nfs4_clear_inode(struct inode *);
1801
1802
1803static struct super_operations nfs4_sops = {
1804 .alloc_inode = nfs_alloc_inode,
1805 .destroy_inode = nfs_destroy_inode,
1806 .write_inode = nfs_write_inode,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001807 .statfs = nfs_statfs,
1808 .clear_inode = nfs4_clear_inode,
1809 .umount_begin = nfs_umount_begin,
1810 .show_options = nfs_show_options,
Chuck Leverd9ef5a82006-03-20 13:44:13 -05001811 .show_stats = nfs_show_stats,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812};
1813
1814/*
1815 * Clean out any remaining NFSv4 state that might be left over due
1816 * to open() calls that passed nfs_atomic_lookup, but failed to call
1817 * nfs_open().
1818 */
1819static void nfs4_clear_inode(struct inode *inode)
1820{
1821 struct nfs_inode *nfsi = NFS_I(inode);
1822
1823 /* If we are holding a delegation, return it! */
Trond Myklebustcae7a072005-10-18 14:20:19 -07001824 nfs_inode_return_delegation(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 /* First call standard NFS clear_inode() code */
1826 nfs_clear_inode(inode);
1827 /* Now clear out any remaining state */
1828 while (!list_empty(&nfsi->open_states)) {
1829 struct nfs4_state *state;
1830
1831 state = list_entry(nfsi->open_states.next,
1832 struct nfs4_state,
1833 inode_states);
1834 dprintk("%s(%s/%Ld): found unclaimed NFSv4 state %p\n",
1835 __FUNCTION__,
1836 inode->i_sb->s_id,
1837 (long long)NFS_FILEID(inode),
1838 state);
1839 BUG_ON(atomic_read(&state->count) != 1);
1840 nfs4_close_state(state, state->state);
1841 }
1842}
1843
1844
1845static int nfs4_fill_super(struct super_block *sb, struct nfs4_mount_data *data, int silent)
1846{
1847 struct nfs_server *server;
1848 struct nfs4_client *clp = NULL;
1849 struct rpc_xprt *xprt = NULL;
1850 struct rpc_clnt *clnt = NULL;
1851 struct rpc_timeout timeparms;
1852 rpc_authflavor_t authflavour;
Chuck Levereab5c082005-08-11 16:25:14 -04001853 int err = -EIO;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001854
1855 sb->s_blocksize_bits = 0;
1856 sb->s_blocksize = 0;
1857 server = NFS_SB(sb);
1858 if (data->rsize != 0)
1859 server->rsize = nfs_block_size(data->rsize, NULL);
1860 if (data->wsize != 0)
1861 server->wsize = nfs_block_size(data->wsize, NULL);
1862 server->flags = data->flags & NFS_MOUNT_FLAGMASK;
1863 server->caps = NFS_CAP_ATOMIC_OPEN;
1864
1865 server->acregmin = data->acregmin*HZ;
1866 server->acregmax = data->acregmax*HZ;
1867 server->acdirmin = data->acdirmin*HZ;
1868 server->acdirmax = data->acdirmax*HZ;
1869
1870 server->rpc_ops = &nfs_v4_clientops;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871
Chuck Levereab5c082005-08-11 16:25:14 -04001872 nfs_init_timeout_values(&timeparms, data->proto, data->timeo, data->retrans);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001873
Chuck Lever7a480e22006-03-20 13:44:12 -05001874 server->retrans_timeo = timeparms.to_initval;
1875 server->retrans_count = timeparms.to_retries;
1876
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 clp = nfs4_get_client(&server->addr.sin_addr);
1878 if (!clp) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001879 dprintk("%s: failed to create NFS4 client.\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001880 return -EIO;
1881 }
1882
1883 /* Now create transport and client */
1884 authflavour = RPC_AUTH_UNIX;
1885 if (data->auth_flavourlen != 0) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001886 if (data->auth_flavourlen != 1) {
1887 dprintk("%s: Invalid number of RPC auth flavours %d.\n",
1888 __FUNCTION__, data->auth_flavourlen);
1889 err = -EINVAL;
1890 goto out_fail;
1891 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001892 if (copy_from_user(&authflavour, data->auth_flavours, sizeof(authflavour))) {
1893 err = -EFAULT;
1894 goto out_fail;
1895 }
1896 }
1897
1898 down_write(&clp->cl_sem);
J. Bruce Fields6a192752005-06-22 17:16:23 +00001899 if (IS_ERR(clp->cl_rpcclient)) {
Chuck Levereab5c082005-08-11 16:25:14 -04001900 xprt = xprt_create_proto(data->proto, &server->addr, &timeparms);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001901 if (IS_ERR(xprt)) {
1902 up_write(&clp->cl_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001903 err = PTR_ERR(xprt);
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001904 dprintk("%s: cannot create RPC transport. Error = %d\n",
1905 __FUNCTION__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 goto out_fail;
1907 }
1908 clnt = rpc_create_client(xprt, server->hostname, &nfs_program,
1909 server->rpc_ops->version, authflavour);
1910 if (IS_ERR(clnt)) {
1911 up_write(&clp->cl_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 err = PTR_ERR(clnt);
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001913 dprintk("%s: cannot create RPC client. Error = %d\n",
1914 __FUNCTION__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001915 goto out_fail;
1916 }
1917 clnt->cl_intr = 1;
1918 clnt->cl_softrtry = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001919 clp->cl_rpcclient = clnt;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 memcpy(clp->cl_ipaddr, server->ip_addr, sizeof(clp->cl_ipaddr));
1921 nfs_idmap_new(clp);
1922 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 list_add_tail(&server->nfs4_siblings, &clp->cl_superblocks);
1924 clnt = rpc_clone_client(clp->cl_rpcclient);
1925 if (!IS_ERR(clnt))
1926 server->nfs4_state = clp;
1927 up_write(&clp->cl_sem);
1928 clp = NULL;
1929
1930 if (IS_ERR(clnt)) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001931 err = PTR_ERR(clnt);
1932 dprintk("%s: cannot create RPC client. Error = %d\n",
1933 __FUNCTION__, err);
1934 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001935 }
1936
1937 server->client = clnt;
1938
1939 if (server->nfs4_state->cl_idmap == NULL) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001940 dprintk("%s: failed to create idmapper.\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941 return -ENOMEM;
1942 }
1943
1944 if (clnt->cl_auth->au_flavor != authflavour) {
J. Bruce Fields6a192752005-06-22 17:16:23 +00001945 struct rpc_auth *auth;
1946
1947 auth = rpcauth_create(authflavour, clnt);
1948 if (IS_ERR(auth)) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001949 dprintk("%s: couldn't create credcache!\n", __FUNCTION__);
J. Bruce Fields6a192752005-06-22 17:16:23 +00001950 return PTR_ERR(auth);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001951 }
1952 }
1953
1954 sb->s_time_gran = 1;
1955
1956 sb->s_op = &nfs4_sops;
1957 err = nfs_sb_init(sb, authflavour);
1958 if (err == 0)
1959 return 0;
1960out_fail:
1961 if (clp)
1962 nfs4_put_client(clp);
1963 return err;
1964}
1965
1966static int nfs4_compare_super(struct super_block *sb, void *data)
1967{
1968 struct nfs_server *server = data;
1969 struct nfs_server *old = NFS_SB(sb);
1970
1971 if (strcmp(server->hostname, old->hostname) != 0)
1972 return 0;
1973 if (strcmp(server->mnt_path, old->mnt_path) != 0)
1974 return 0;
1975 return 1;
1976}
1977
1978static void *
1979nfs_copy_user_string(char *dst, struct nfs_string *src, int maxlen)
1980{
1981 void *p = NULL;
1982
1983 if (!src->len)
1984 return ERR_PTR(-EINVAL);
1985 if (src->len < maxlen)
1986 maxlen = src->len;
1987 if (dst == NULL) {
1988 p = dst = kmalloc(maxlen + 1, GFP_KERNEL);
1989 if (p == NULL)
1990 return ERR_PTR(-ENOMEM);
1991 }
1992 if (copy_from_user(dst, src->data, maxlen)) {
Jesper Juhlf99d49a2005-11-07 01:01:34 -08001993 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001994 return ERR_PTR(-EFAULT);
1995 }
1996 dst[maxlen] = '\0';
1997 return dst;
1998}
1999
2000static struct super_block *nfs4_get_sb(struct file_system_type *fs_type,
2001 int flags, const char *dev_name, void *raw_data)
2002{
2003 int error;
2004 struct nfs_server *server;
2005 struct super_block *s;
2006 struct nfs4_mount_data *data = raw_data;
2007 void *p;
2008
Trond Myklebust9085bbc2005-06-22 17:16:20 +00002009 if (data == NULL) {
2010 dprintk("%s: missing data argument\n", __FUNCTION__);
2011 return ERR_PTR(-EINVAL);
2012 }
2013 if (data->version <= 0 || data->version > NFS4_MOUNT_VERSION) {
2014 dprintk("%s: bad mount version\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 return ERR_PTR(-EINVAL);
2016 }
2017
Eric Sesterhennbd647542006-03-20 13:44:10 -05002018 server = kzalloc(sizeof(struct nfs_server), GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 if (!server)
2020 return ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002021 /* Zero out the NFS state stuff */
2022 init_nfsv4_state(server);
Andreas Gruenbacherb7fa0552005-06-22 17:16:27 +00002023 server->client = server->client_sys = server->client_acl = ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002024
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025 p = nfs_copy_user_string(NULL, &data->hostname, 256);
2026 if (IS_ERR(p))
2027 goto out_err;
2028 server->hostname = p;
2029
2030 p = nfs_copy_user_string(NULL, &data->mnt_path, 1024);
2031 if (IS_ERR(p))
2032 goto out_err;
2033 server->mnt_path = p;
2034
2035 p = nfs_copy_user_string(server->ip_addr, &data->client_addr,
2036 sizeof(server->ip_addr) - 1);
2037 if (IS_ERR(p))
2038 goto out_err;
2039
2040 /* We now require that the mount process passes the remote address */
2041 if (data->host_addrlen != sizeof(server->addr)) {
2042 s = ERR_PTR(-EINVAL);
2043 goto out_free;
2044 }
2045 if (copy_from_user(&server->addr, data->host_addr, sizeof(server->addr))) {
2046 s = ERR_PTR(-EFAULT);
2047 goto out_free;
2048 }
2049 if (server->addr.sin_family != AF_INET ||
2050 server->addr.sin_addr.s_addr == INADDR_ANY) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00002051 dprintk("%s: mount program didn't pass remote IP address!\n",
2052 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002053 s = ERR_PTR(-EINVAL);
2054 goto out_free;
2055 }
2056
Trond Myklebust9085bbc2005-06-22 17:16:20 +00002057 /* Fire up rpciod if not yet running */
2058 s = ERR_PTR(rpciod_up());
2059 if (IS_ERR(s)) {
2060 dprintk("%s: couldn't start rpciod! Error = %ld\n",
2061 __FUNCTION__, PTR_ERR(s));
2062 goto out_free;
2063 }
2064
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065 s = sget(fs_type, nfs4_compare_super, nfs_set_super, server);
2066
2067 if (IS_ERR(s) || s->s_root)
2068 goto out_free;
2069
2070 s->s_flags = flags;
2071
Theodore Ts'o9b04c992006-03-24 03:15:10 -08002072 error = nfs4_fill_super(s, data, flags & MS_SILENT ? 1 : 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002073 if (error) {
2074 up_write(&s->s_umount);
2075 deactivate_super(s);
2076 return ERR_PTR(error);
2077 }
2078 s->s_flags |= MS_ACTIVE;
2079 return s;
2080out_err:
2081 s = (struct super_block *)p;
2082out_free:
Jesper Juhlf99d49a2005-11-07 01:01:34 -08002083 kfree(server->mnt_path);
2084 kfree(server->hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002085 kfree(server);
2086 return s;
2087}
2088
2089static void nfs4_kill_super(struct super_block *sb)
2090{
2091 struct nfs_server *server = NFS_SB(sb);
2092
2093 nfs_return_all_delegations(sb);
2094 kill_anon_super(sb);
2095
2096 nfs4_renewd_prepare_shutdown(server);
2097
2098 if (server->client != NULL && !IS_ERR(server->client))
2099 rpc_shutdown_client(server->client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
2101 destroy_nfsv4_state(server);
2102
Trond Myklebust967b9282006-03-20 13:44:09 -05002103 rpciod_down();
2104
Trond Myklebust01d0ae82006-03-20 13:44:48 -05002105 nfs_free_iostats(server->io_stats);
Jesper Juhlf99d49a2005-11-07 01:01:34 -08002106 kfree(server->hostname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 kfree(server);
2108}
2109
2110static struct file_system_type nfs4_fs_type = {
2111 .owner = THIS_MODULE,
2112 .name = "nfs4",
2113 .get_sb = nfs4_get_sb,
2114 .kill_sb = nfs4_kill_super,
2115 .fs_flags = FS_ODD_RENAME|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
2116};
2117
Trond Myklebusta72b4422006-01-03 09:55:41 +01002118static const int nfs_set_port_min = 0;
2119static const int nfs_set_port_max = 65535;
2120static int param_set_port(const char *val, struct kernel_param *kp)
2121{
2122 char *endp;
2123 int num = simple_strtol(val, &endp, 0);
2124 if (endp == val || *endp || num < nfs_set_port_min || num > nfs_set_port_max)
2125 return -EINVAL;
2126 *((int *)kp->arg) = num;
2127 return 0;
2128}
2129
2130module_param_call(callback_tcpport, param_set_port, param_get_int,
2131 &nfs_callback_set_tcpport, 0644);
2132
Trond Myklebust58df0952006-01-03 09:55:57 +01002133static int param_set_idmap_timeout(const char *val, struct kernel_param *kp)
2134{
2135 char *endp;
2136 int num = simple_strtol(val, &endp, 0);
2137 int jif = num * HZ;
2138 if (endp == val || *endp || num < 0 || jif < num)
2139 return -EINVAL;
2140 *((int *)kp->arg) = jif;
2141 return 0;
2142}
2143
2144module_param_call(idmap_cache_timeout, param_set_idmap_timeout, param_get_int,
2145 &nfs_idmap_cache_timeout, 0644);
2146
Linus Torvalds1da177e2005-04-16 15:20:36 -07002147#define nfs4_init_once(nfsi) \
2148 do { \
2149 INIT_LIST_HEAD(&(nfsi)->open_states); \
2150 nfsi->delegation = NULL; \
2151 nfsi->delegation_state = 0; \
2152 init_rwsem(&nfsi->rwsem); \
2153 } while(0)
Trond Myklebusta72b4422006-01-03 09:55:41 +01002154
2155static inline int register_nfs4fs(void)
2156{
2157 int ret;
2158
2159 ret = nfs_register_sysctl();
2160 if (ret != 0)
2161 return ret;
2162 ret = register_filesystem(&nfs4_fs_type);
2163 if (ret != 0)
2164 nfs_unregister_sysctl();
2165 return ret;
2166}
2167
2168static inline void unregister_nfs4fs(void)
2169{
2170 unregister_filesystem(&nfs4_fs_type);
2171 nfs_unregister_sysctl();
2172}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002173#else
2174#define nfs4_init_once(nfsi) \
2175 do { } while (0)
2176#define register_nfs4fs() (0)
2177#define unregister_nfs4fs()
2178#endif
2179
2180extern int nfs_init_nfspagecache(void);
2181extern void nfs_destroy_nfspagecache(void);
2182extern int nfs_init_readpagecache(void);
2183extern void nfs_destroy_readpagecache(void);
2184extern int nfs_init_writepagecache(void);
2185extern void nfs_destroy_writepagecache(void);
2186#ifdef CONFIG_NFS_DIRECTIO
2187extern int nfs_init_directcache(void);
2188extern void nfs_destroy_directcache(void);
2189#endif
2190
2191static kmem_cache_t * nfs_inode_cachep;
2192
2193static struct inode *nfs_alloc_inode(struct super_block *sb)
2194{
2195 struct nfs_inode *nfsi;
2196 nfsi = (struct nfs_inode *)kmem_cache_alloc(nfs_inode_cachep, SLAB_KERNEL);
2197 if (!nfsi)
2198 return NULL;
Chuck Lever55296802005-08-18 11:24:09 -07002199 nfsi->flags = 0UL;
2200 nfsi->cache_validity = 0UL;
Steve Dickson223db122005-11-30 09:25:33 -05002201 nfsi->cache_change_attribute = jiffies;
Trond Myklebust458818e2005-06-22 17:16:27 +00002202#ifdef CONFIG_NFS_V3_ACL
2203 nfsi->acl_access = ERR_PTR(-EAGAIN);
2204 nfsi->acl_default = ERR_PTR(-EAGAIN);
2205#endif
J. Bruce Fieldse50a1c22005-06-22 17:16:23 +00002206#ifdef CONFIG_NFS_V4
2207 nfsi->nfs4_acl = NULL;
2208#endif /* CONFIG_NFS_V4 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 return &nfsi->vfs_inode;
2210}
2211
2212static void nfs_destroy_inode(struct inode *inode)
2213{
2214 kmem_cache_free(nfs_inode_cachep, NFS_I(inode));
2215}
2216
2217static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
2218{
2219 struct nfs_inode *nfsi = (struct nfs_inode *) foo;
2220
2221 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
2222 SLAB_CTOR_CONSTRUCTOR) {
2223 inode_init_once(&nfsi->vfs_inode);
2224 spin_lock_init(&nfsi->req_lock);
2225 INIT_LIST_HEAD(&nfsi->dirty);
2226 INIT_LIST_HEAD(&nfsi->commit);
2227 INIT_LIST_HEAD(&nfsi->open_files);
2228 INIT_RADIX_TREE(&nfsi->nfs_page_tree, GFP_ATOMIC);
2229 atomic_set(&nfsi->data_updates, 0);
2230 nfsi->ndirty = 0;
2231 nfsi->ncommit = 0;
2232 nfsi->npages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 nfs4_init_once(nfsi);
2234 }
2235}
2236
Adrian Bunk75c96f82005-05-05 16:16:09 -07002237static int nfs_init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002238{
2239 nfs_inode_cachep = kmem_cache_create("nfs_inode_cache",
2240 sizeof(struct nfs_inode),
Paul Jacksonfffb60f2006-03-24 03:16:06 -08002241 0, (SLAB_RECLAIM_ACCOUNT|
2242 SLAB_MEM_SPREAD),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 init_once, NULL);
2244 if (nfs_inode_cachep == NULL)
2245 return -ENOMEM;
2246
2247 return 0;
2248}
2249
Adrian Bunk75c96f82005-05-05 16:16:09 -07002250static void nfs_destroy_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002251{
2252 if (kmem_cache_destroy(nfs_inode_cachep))
2253 printk(KERN_INFO "nfs_inode_cache: not all structures were freed\n");
2254}
2255
2256/*
2257 * Initialize NFS
2258 */
2259static int __init init_nfs_fs(void)
2260{
2261 int err;
2262
2263 err = nfs_init_nfspagecache();
2264 if (err)
2265 goto out4;
2266
2267 err = nfs_init_inodecache();
2268 if (err)
2269 goto out3;
2270
2271 err = nfs_init_readpagecache();
2272 if (err)
2273 goto out2;
2274
2275 err = nfs_init_writepagecache();
2276 if (err)
2277 goto out1;
2278
2279#ifdef CONFIG_NFS_DIRECTIO
2280 err = nfs_init_directcache();
2281 if (err)
2282 goto out0;
2283#endif
2284
2285#ifdef CONFIG_PROC_FS
2286 rpc_proc_register(&nfs_rpcstat);
2287#endif
2288 err = register_filesystem(&nfs_fs_type);
2289 if (err)
2290 goto out;
2291 if ((err = register_nfs4fs()) != 0)
2292 goto out;
2293 return 0;
2294out:
2295#ifdef CONFIG_PROC_FS
2296 rpc_proc_unregister("nfs");
2297#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002298#ifdef CONFIG_NFS_DIRECTIO
Linus Torvalds1da177e2005-04-16 15:20:36 -07002299 nfs_destroy_directcache();
Chuck Lever6b59a752005-11-30 18:08:19 -05002300out0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301#endif
Chuck Lever6b59a752005-11-30 18:08:19 -05002302 nfs_destroy_writepagecache();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002303out1:
2304 nfs_destroy_readpagecache();
2305out2:
2306 nfs_destroy_inodecache();
2307out3:
2308 nfs_destroy_nfspagecache();
2309out4:
2310 return err;
2311}
2312
2313static void __exit exit_nfs_fs(void)
2314{
2315#ifdef CONFIG_NFS_DIRECTIO
2316 nfs_destroy_directcache();
2317#endif
2318 nfs_destroy_writepagecache();
2319 nfs_destroy_readpagecache();
2320 nfs_destroy_inodecache();
2321 nfs_destroy_nfspagecache();
2322#ifdef CONFIG_PROC_FS
2323 rpc_proc_unregister("nfs");
2324#endif
2325 unregister_filesystem(&nfs_fs_type);
2326 unregister_nfs4fs();
2327}
2328
2329/* Not quite true; I just maintain it */
2330MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
2331MODULE_LICENSE("GPL");
2332
2333module_init(init_nfs_fs)
2334module_exit(exit_nfs_fs)