blob: c80a81ff59c6f2d48e26c56317ace634d98659d9 [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>
29#include <linux/nfs_fs.h>
30#include <linux/nfs_mount.h>
31#include <linux/nfs4_mount.h>
32#include <linux/lockd/bind.h>
33#include <linux/smp_lock.h>
34#include <linux/seq_file.h>
35#include <linux/mount.h>
36#include <linux/nfs_idmap.h>
37#include <linux/vfs.h>
38
39#include <asm/system.h>
40#include <asm/uaccess.h>
41
Trond Myklebust4ce79712005-06-22 17:16:21 +000042#include "nfs4_fs.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070043#include "delegation.h"
44
45#define NFSDBG_FACILITY NFSDBG_VFS
46#define NFS_PARANOIA 1
47
48/* Maximum number of readahead requests
49 * FIXME: this should really be a sysctl so that users may tune it to suit
50 * their needs. People that do NFS over a slow network, might for
51 * instance want to reduce it to something closer to 1 for improved
52 * interactive response.
53 */
54#define NFS_MAX_READAHEAD (RPC_DEF_SLOT_TABLE - 1)
55
56static void nfs_invalidate_inode(struct inode *);
57static int nfs_update_inode(struct inode *, struct nfs_fattr *, unsigned long);
58
59static struct inode *nfs_alloc_inode(struct super_block *sb);
60static void nfs_destroy_inode(struct inode *);
61static int nfs_write_inode(struct inode *,int);
62static void nfs_delete_inode(struct inode *);
63static void nfs_clear_inode(struct inode *);
64static void nfs_umount_begin(struct super_block *);
65static int nfs_statfs(struct super_block *, struct kstatfs *);
66static int nfs_show_options(struct seq_file *, struct vfsmount *);
67
68static struct rpc_program nfs_program;
69
70static struct super_operations nfs_sops = {
71 .alloc_inode = nfs_alloc_inode,
72 .destroy_inode = nfs_destroy_inode,
73 .write_inode = nfs_write_inode,
74 .delete_inode = nfs_delete_inode,
75 .statfs = nfs_statfs,
76 .clear_inode = nfs_clear_inode,
77 .umount_begin = nfs_umount_begin,
78 .show_options = nfs_show_options,
79};
80
81/*
82 * RPC cruft for NFS
83 */
84static struct rpc_stat nfs_rpcstat = {
85 .program = &nfs_program
86};
87static struct rpc_version * nfs_version[] = {
88 NULL,
89 NULL,
90 &nfs_version2,
91#if defined(CONFIG_NFS_V3)
92 &nfs_version3,
93#elif defined(CONFIG_NFS_V4)
94 NULL,
95#endif
96#if defined(CONFIG_NFS_V4)
97 &nfs_version4,
98#endif
99};
100
101static struct rpc_program nfs_program = {
102 .name = "nfs",
103 .number = NFS_PROGRAM,
104 .nrvers = sizeof(nfs_version) / sizeof(nfs_version[0]),
105 .version = nfs_version,
106 .stats = &nfs_rpcstat,
107 .pipe_dir_name = "/nfs",
108};
109
110static inline unsigned long
111nfs_fattr_to_ino_t(struct nfs_fattr *fattr)
112{
113 return nfs_fileid_to_ino_t(fattr->fileid);
114}
115
116static int
117nfs_write_inode(struct inode *inode, int sync)
118{
119 int flags = sync ? FLUSH_WAIT : 0;
120 int ret;
121
122 ret = nfs_commit_inode(inode, 0, 0, flags);
123 if (ret < 0)
124 return ret;
125 return 0;
126}
127
128static void
129nfs_delete_inode(struct inode * inode)
130{
131 dprintk("NFS: delete_inode(%s/%ld)\n", inode->i_sb->s_id, inode->i_ino);
132
133 nfs_wb_all(inode);
134 /*
135 * The following should never happen...
136 */
137 if (nfs_have_writebacks(inode)) {
138 printk(KERN_ERR "nfs_delete_inode: inode %ld has pending RPC requests\n", inode->i_ino);
139 }
140
141 clear_inode(inode);
142}
143
144/*
145 * For the moment, the only task for the NFS clear_inode method is to
146 * release the mmap credential
147 */
148static void
149nfs_clear_inode(struct inode *inode)
150{
151 struct nfs_inode *nfsi = NFS_I(inode);
152 struct rpc_cred *cred;
153
154 nfs_wb_all(inode);
155 BUG_ON (!list_empty(&nfsi->open_files));
156 cred = nfsi->cache_access.cred;
157 if (cred)
158 put_rpccred(cred);
159 BUG_ON(atomic_read(&nfsi->data_updates) != 0);
160}
161
162void
163nfs_umount_begin(struct super_block *sb)
164{
165 struct nfs_server *server = NFS_SB(sb);
166 struct rpc_clnt *rpc;
167
168 /* -EIO all pending I/O */
169 if ((rpc = server->client) != NULL)
170 rpc_killall_tasks(rpc);
171}
172
173
174static inline unsigned long
175nfs_block_bits(unsigned long bsize, unsigned char *nrbitsp)
176{
177 /* make sure blocksize is a power of two */
178 if ((bsize & (bsize - 1)) || nrbitsp) {
179 unsigned char nrbits;
180
181 for (nrbits = 31; nrbits && !(bsize & (1 << nrbits)); nrbits--)
182 ;
183 bsize = 1 << nrbits;
184 if (nrbitsp)
185 *nrbitsp = nrbits;
186 }
187
188 return bsize;
189}
190
191/*
192 * Calculate the number of 512byte blocks used.
193 */
194static inline unsigned long
195nfs_calc_block_size(u64 tsize)
196{
197 loff_t used = (tsize + 511) >> 9;
198 return (used > ULONG_MAX) ? ULONG_MAX : used;
199}
200
201/*
202 * Compute and set NFS server blocksize
203 */
204static inline unsigned long
205nfs_block_size(unsigned long bsize, unsigned char *nrbitsp)
206{
207 if (bsize < 1024)
208 bsize = NFS_DEF_FILE_IO_BUFFER_SIZE;
209 else if (bsize >= NFS_MAX_FILE_IO_BUFFER_SIZE)
210 bsize = NFS_MAX_FILE_IO_BUFFER_SIZE;
211
212 return nfs_block_bits(bsize, nrbitsp);
213}
214
215/*
216 * Obtain the root inode of the file system.
217 */
218static struct inode *
219nfs_get_root(struct super_block *sb, struct nfs_fh *rootfh, struct nfs_fsinfo *fsinfo)
220{
221 struct nfs_server *server = NFS_SB(sb);
222 struct inode *rooti;
223 int error;
224
225 error = server->rpc_ops->getroot(server, rootfh, fsinfo);
226 if (error < 0) {
227 dprintk("nfs_get_root: getattr error = %d\n", -error);
228 return ERR_PTR(error);
229 }
230
231 rooti = nfs_fhget(sb, rootfh, fsinfo->fattr);
232 if (!rooti)
233 return ERR_PTR(-ENOMEM);
234 return rooti;
235}
236
237/*
238 * Do NFS version-independent mount processing, and sanity checking
239 */
240static int
241nfs_sb_init(struct super_block *sb, rpc_authflavor_t authflavor)
242{
243 struct nfs_server *server;
244 struct inode *root_inode;
245 struct nfs_fattr fattr;
246 struct nfs_fsinfo fsinfo = {
247 .fattr = &fattr,
248 };
249 struct nfs_pathconf pathinfo = {
250 .fattr = &fattr,
251 };
252 int no_root_error = 0;
253 unsigned long max_rpc_payload;
254
255 /* We probably want something more informative here */
256 snprintf(sb->s_id, sizeof(sb->s_id), "%x:%x", MAJOR(sb->s_dev), MINOR(sb->s_dev));
257
258 server = NFS_SB(sb);
259
260 sb->s_magic = NFS_SUPER_MAGIC;
261
262 root_inode = nfs_get_root(sb, &server->fh, &fsinfo);
263 /* Did getting the root inode fail? */
264 if (IS_ERR(root_inode)) {
265 no_root_error = PTR_ERR(root_inode);
266 goto out_no_root;
267 }
268 sb->s_root = d_alloc_root(root_inode);
269 if (!sb->s_root) {
270 no_root_error = -ENOMEM;
271 goto out_no_root;
272 }
273 sb->s_root->d_op = server->rpc_ops->dentry_ops;
274
275 /* Get some general file system info */
276 if (server->namelen == 0 &&
277 server->rpc_ops->pathconf(server, &server->fh, &pathinfo) >= 0)
278 server->namelen = pathinfo.max_namelen;
279 /* Work out a lot of parameters */
280 if (server->rsize == 0)
281 server->rsize = nfs_block_size(fsinfo.rtpref, NULL);
282 if (server->wsize == 0)
283 server->wsize = nfs_block_size(fsinfo.wtpref, NULL);
284
285 if (fsinfo.rtmax >= 512 && server->rsize > fsinfo.rtmax)
286 server->rsize = nfs_block_size(fsinfo.rtmax, NULL);
287 if (fsinfo.wtmax >= 512 && server->wsize > fsinfo.wtmax)
288 server->wsize = nfs_block_size(fsinfo.wtmax, NULL);
289
290 max_rpc_payload = nfs_block_size(rpc_max_payload(server->client), NULL);
291 if (server->rsize > max_rpc_payload)
292 server->rsize = max_rpc_payload;
293 if (server->wsize > max_rpc_payload)
294 server->wsize = max_rpc_payload;
295
296 server->rpages = (server->rsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
297 if (server->rpages > NFS_READ_MAXIOV) {
298 server->rpages = NFS_READ_MAXIOV;
299 server->rsize = server->rpages << PAGE_CACHE_SHIFT;
300 }
301
302 server->wpages = (server->wsize + PAGE_CACHE_SIZE - 1) >> PAGE_CACHE_SHIFT;
303 if (server->wpages > NFS_WRITE_MAXIOV) {
304 server->wpages = NFS_WRITE_MAXIOV;
305 server->wsize = server->wpages << PAGE_CACHE_SHIFT;
306 }
307
308 if (sb->s_blocksize == 0)
309 sb->s_blocksize = nfs_block_bits(server->wsize,
310 &sb->s_blocksize_bits);
311 server->wtmult = nfs_block_bits(fsinfo.wtmult, NULL);
312
313 server->dtsize = nfs_block_size(fsinfo.dtpref, NULL);
314 if (server->dtsize > PAGE_CACHE_SIZE)
315 server->dtsize = PAGE_CACHE_SIZE;
316 if (server->dtsize > server->rsize)
317 server->dtsize = server->rsize;
318
319 if (server->flags & NFS_MOUNT_NOAC) {
320 server->acregmin = server->acregmax = 0;
321 server->acdirmin = server->acdirmax = 0;
322 sb->s_flags |= MS_SYNCHRONOUS;
323 }
324 server->backing_dev_info.ra_pages = server->rpages * NFS_MAX_READAHEAD;
325
326 sb->s_maxbytes = fsinfo.maxfilesize;
327 if (sb->s_maxbytes > MAX_LFS_FILESIZE)
328 sb->s_maxbytes = MAX_LFS_FILESIZE;
329
330 server->client->cl_intr = (server->flags & NFS_MOUNT_INTR) ? 1 : 0;
331 server->client->cl_softrtry = (server->flags & NFS_MOUNT_SOFT) ? 1 : 0;
332
333 /* We're airborne Set socket buffersize */
334 rpc_setbufsize(server->client, server->wsize + 100, server->rsize + 100);
335 return 0;
336 /* Yargs. It didn't work out. */
337out_no_root:
338 dprintk("nfs_sb_init: get root inode failed: errno %d\n", -no_root_error);
339 if (!IS_ERR(root_inode))
340 iput(root_inode);
341 return no_root_error;
342}
343
344/*
345 * Create an RPC client handle.
346 */
347static struct rpc_clnt *
348nfs_create_client(struct nfs_server *server, const struct nfs_mount_data *data)
349{
350 struct rpc_timeout timeparms;
351 struct rpc_xprt *xprt = NULL;
352 struct rpc_clnt *clnt = NULL;
353 int tcp = (data->flags & NFS_MOUNT_TCP);
354
355 /* Initialize timeout values */
356 timeparms.to_initval = data->timeo * HZ / 10;
357 timeparms.to_retries = data->retrans;
358 timeparms.to_maxval = tcp ? RPC_MAX_TCP_TIMEOUT : RPC_MAX_UDP_TIMEOUT;
359 timeparms.to_exponential = 1;
360
361 if (!timeparms.to_initval)
362 timeparms.to_initval = (tcp ? 600 : 11) * HZ / 10;
363 if (!timeparms.to_retries)
364 timeparms.to_retries = 5;
365
366 /* create transport and client */
367 xprt = xprt_create_proto(tcp ? IPPROTO_TCP : IPPROTO_UDP,
368 &server->addr, &timeparms);
369 if (IS_ERR(xprt)) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +0000370 dprintk("%s: cannot create RPC transport. Error = %ld\n",
371 __FUNCTION__, PTR_ERR(xprt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 return (struct rpc_clnt *)xprt;
373 }
374 clnt = rpc_create_client(xprt, server->hostname, &nfs_program,
375 server->rpc_ops->version, data->pseudoflavor);
376 if (IS_ERR(clnt)) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +0000377 dprintk("%s: cannot create RPC client. Error = %ld\n",
378 __FUNCTION__, PTR_ERR(xprt));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 goto out_fail;
380 }
381
382 clnt->cl_intr = 1;
383 clnt->cl_softrtry = 1;
384 clnt->cl_chatty = 1;
385
386 return clnt;
387
388out_fail:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return clnt;
390}
391
392/*
393 * The way this works is that the mount process passes a structure
394 * in the data argument which contains the server's IP address
395 * and the root file handle obtained from the server's mount
396 * daemon. We stash these away in the private superblock fields.
397 */
398static int
399nfs_fill_super(struct super_block *sb, struct nfs_mount_data *data, int silent)
400{
401 struct nfs_server *server;
402 rpc_authflavor_t authflavor;
403
404 server = NFS_SB(sb);
405 sb->s_blocksize_bits = 0;
406 sb->s_blocksize = 0;
407 if (data->bsize)
408 sb->s_blocksize = nfs_block_size(data->bsize, &sb->s_blocksize_bits);
409 if (data->rsize)
410 server->rsize = nfs_block_size(data->rsize, NULL);
411 if (data->wsize)
412 server->wsize = nfs_block_size(data->wsize, NULL);
413 server->flags = data->flags & NFS_MOUNT_FLAGMASK;
414
415 server->acregmin = data->acregmin*HZ;
416 server->acregmax = data->acregmax*HZ;
417 server->acdirmin = data->acdirmin*HZ;
418 server->acdirmax = data->acdirmax*HZ;
419
420 /* Start lockd here, before we might error out */
421 if (!(server->flags & NFS_MOUNT_NONLM))
422 lockd_up();
423
424 server->namelen = data->namlen;
425 server->hostname = kmalloc(strlen(data->hostname) + 1, GFP_KERNEL);
426 if (!server->hostname)
427 return -ENOMEM;
428 strcpy(server->hostname, data->hostname);
429
430 /* Check NFS protocol revision and initialize RPC op vector
431 * and file handle pool. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432#ifdef CONFIG_NFS_V3
Trond Myklebust9085bbc2005-06-22 17:16:20 +0000433 if (server->flags & NFS_MOUNT_VER3) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434 server->rpc_ops = &nfs_v3_clientops;
435 server->caps |= NFS_CAP_READDIRPLUS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436 } else {
437 server->rpc_ops = &nfs_v2_clientops;
438 }
Trond Myklebust9085bbc2005-06-22 17:16:20 +0000439#else
440 server->rpc_ops = &nfs_v2_clientops;
441#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442
443 /* Fill in pseudoflavor for mount version < 5 */
444 if (!(data->flags & NFS_MOUNT_SECFLAVOUR))
445 data->pseudoflavor = RPC_AUTH_UNIX;
446 authflavor = data->pseudoflavor; /* save for sb_init() */
447 /* XXX maybe we want to add a server->pseudoflavor field */
448
449 /* Create RPC client handles */
450 server->client = nfs_create_client(server, data);
451 if (IS_ERR(server->client))
452 return PTR_ERR(server->client);
453 /* RFC 2623, sec 2.3.2 */
454 if (authflavor != RPC_AUTH_UNIX) {
455 server->client_sys = rpc_clone_client(server->client);
456 if (IS_ERR(server->client_sys))
457 return PTR_ERR(server->client_sys);
458 if (!rpcauth_create(RPC_AUTH_UNIX, server->client_sys))
459 return -ENOMEM;
460 } else {
461 atomic_inc(&server->client->cl_count);
462 server->client_sys = server->client;
463 }
464
465 if (server->flags & NFS_MOUNT_VER3) {
466 if (server->namelen == 0 || server->namelen > NFS3_MAXNAMLEN)
467 server->namelen = NFS3_MAXNAMLEN;
468 sb->s_time_gran = 1;
469 } else {
470 if (server->namelen == 0 || server->namelen > NFS2_MAXNAMLEN)
471 server->namelen = NFS2_MAXNAMLEN;
472 }
473
474 sb->s_op = &nfs_sops;
475 return nfs_sb_init(sb, authflavor);
476}
477
478static int
479nfs_statfs(struct super_block *sb, struct kstatfs *buf)
480{
481 struct nfs_server *server = NFS_SB(sb);
482 unsigned char blockbits;
483 unsigned long blockres;
484 struct nfs_fh *rootfh = NFS_FH(sb->s_root->d_inode);
485 struct nfs_fattr fattr;
486 struct nfs_fsstat res = {
487 .fattr = &fattr,
488 };
489 int error;
490
491 lock_kernel();
492
493 error = server->rpc_ops->statfs(server, rootfh, &res);
494 buf->f_type = NFS_SUPER_MAGIC;
495 if (error < 0)
496 goto out_err;
497
498 /*
499 * Current versions of glibc do not correctly handle the
500 * case where f_frsize != f_bsize. Eventually we want to
501 * report the value of wtmult in this field.
502 */
503 buf->f_frsize = sb->s_blocksize;
504
505 /*
506 * On most *nix systems, f_blocks, f_bfree, and f_bavail
507 * are reported in units of f_frsize. Linux hasn't had
508 * an f_frsize field in its statfs struct until recently,
509 * thus historically Linux's sys_statfs reports these
510 * fields in units of f_bsize.
511 */
512 buf->f_bsize = sb->s_blocksize;
513 blockbits = sb->s_blocksize_bits;
514 blockres = (1 << blockbits) - 1;
515 buf->f_blocks = (res.tbytes + blockres) >> blockbits;
516 buf->f_bfree = (res.fbytes + blockres) >> blockbits;
517 buf->f_bavail = (res.abytes + blockres) >> blockbits;
518
519 buf->f_files = res.tfiles;
520 buf->f_ffree = res.afiles;
521
522 buf->f_namelen = server->namelen;
523 out:
524 unlock_kernel();
525
526 return 0;
527
528 out_err:
529 printk(KERN_WARNING "nfs_statfs: statfs error = %d\n", -error);
530 buf->f_bsize = buf->f_blocks = buf->f_bfree = buf->f_bavail = -1;
531 goto out;
532
533}
534
535static int nfs_show_options(struct seq_file *m, struct vfsmount *mnt)
536{
537 static struct proc_nfs_info {
538 int flag;
539 char *str;
540 char *nostr;
541 } nfs_info[] = {
542 { NFS_MOUNT_SOFT, ",soft", ",hard" },
543 { NFS_MOUNT_INTR, ",intr", "" },
544 { NFS_MOUNT_POSIX, ",posix", "" },
545 { NFS_MOUNT_TCP, ",tcp", ",udp" },
546 { NFS_MOUNT_NOCTO, ",nocto", "" },
547 { NFS_MOUNT_NOAC, ",noac", "" },
548 { NFS_MOUNT_NONLM, ",nolock", ",lock" },
549 { 0, NULL, NULL }
550 };
551 struct proc_nfs_info *nfs_infop;
552 struct nfs_server *nfss = NFS_SB(mnt->mnt_sb);
553
554 seq_printf(m, ",v%d", nfss->rpc_ops->version);
555 seq_printf(m, ",rsize=%d", nfss->rsize);
556 seq_printf(m, ",wsize=%d", nfss->wsize);
557 if (nfss->acregmin != 3*HZ)
558 seq_printf(m, ",acregmin=%d", nfss->acregmin/HZ);
559 if (nfss->acregmax != 60*HZ)
560 seq_printf(m, ",acregmax=%d", nfss->acregmax/HZ);
561 if (nfss->acdirmin != 30*HZ)
562 seq_printf(m, ",acdirmin=%d", nfss->acdirmin/HZ);
563 if (nfss->acdirmax != 60*HZ)
564 seq_printf(m, ",acdirmax=%d", nfss->acdirmax/HZ);
565 for (nfs_infop = nfs_info; nfs_infop->flag; nfs_infop++) {
566 if (nfss->flags & nfs_infop->flag)
567 seq_puts(m, nfs_infop->str);
568 else
569 seq_puts(m, nfs_infop->nostr);
570 }
571 seq_puts(m, ",addr=");
572 seq_escape(m, nfss->hostname, " \t\n\\");
573 return 0;
574}
575
576/*
577 * Invalidate the local caches
578 */
579void
580nfs_zap_caches(struct inode *inode)
581{
582 struct nfs_inode *nfsi = NFS_I(inode);
583 int mode = inode->i_mode;
584
585 NFS_ATTRTIMEO(inode) = NFS_MINATTRTIMEO(inode);
586 NFS_ATTRTIMEO_UPDATE(inode) = jiffies;
587
588 memset(NFS_COOKIEVERF(inode), 0, sizeof(NFS_COOKIEVERF(inode)));
589 if (S_ISREG(mode) || S_ISDIR(mode) || S_ISLNK(mode))
590 nfsi->flags |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA|NFS_INO_INVALID_ACCESS;
591 else
592 nfsi->flags |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ACCESS;
593}
594
595/*
596 * Invalidate, but do not unhash, the inode
597 */
598static void
599nfs_invalidate_inode(struct inode *inode)
600{
601 umode_t save_mode = inode->i_mode;
602
603 make_bad_inode(inode);
604 inode->i_mode = save_mode;
605 nfs_zap_caches(inode);
606}
607
608struct nfs_find_desc {
609 struct nfs_fh *fh;
610 struct nfs_fattr *fattr;
611};
612
613/*
614 * In NFSv3 we can have 64bit inode numbers. In order to support
615 * this, and re-exported directories (also seen in NFSv2)
616 * we are forced to allow 2 different inodes to have the same
617 * i_ino.
618 */
619static int
620nfs_find_actor(struct inode *inode, void *opaque)
621{
622 struct nfs_find_desc *desc = (struct nfs_find_desc *)opaque;
623 struct nfs_fh *fh = desc->fh;
624 struct nfs_fattr *fattr = desc->fattr;
625
626 if (NFS_FILEID(inode) != fattr->fileid)
627 return 0;
628 if (nfs_compare_fh(NFS_FH(inode), fh))
629 return 0;
630 if (is_bad_inode(inode) || NFS_STALE(inode))
631 return 0;
632 return 1;
633}
634
635static int
636nfs_init_locked(struct inode *inode, void *opaque)
637{
638 struct nfs_find_desc *desc = (struct nfs_find_desc *)opaque;
639 struct nfs_fattr *fattr = desc->fattr;
640
641 NFS_FILEID(inode) = fattr->fileid;
642 nfs_copy_fh(NFS_FH(inode), desc->fh);
643 return 0;
644}
645
646/* Don't use READDIRPLUS on directories that we believe are too large */
647#define NFS_LIMIT_READDIRPLUS (8*PAGE_SIZE)
648
649/*
650 * This is our front-end to iget that looks up inodes by file handle
651 * instead of inode number.
652 */
653struct inode *
654nfs_fhget(struct super_block *sb, struct nfs_fh *fh, struct nfs_fattr *fattr)
655{
656 struct nfs_find_desc desc = {
657 .fh = fh,
658 .fattr = fattr
659 };
660 struct inode *inode = NULL;
661 unsigned long hash;
662
663 if ((fattr->valid & NFS_ATTR_FATTR) == 0)
664 goto out_no_inode;
665
666 if (!fattr->nlink) {
667 printk("NFS: Buggy server - nlink == 0!\n");
668 goto out_no_inode;
669 }
670
671 hash = nfs_fattr_to_ino_t(fattr);
672
673 if (!(inode = iget5_locked(sb, hash, nfs_find_actor, nfs_init_locked, &desc)))
674 goto out_no_inode;
675
676 if (inode->i_state & I_NEW) {
677 struct nfs_inode *nfsi = NFS_I(inode);
678
679 /* We set i_ino for the few things that still rely on it,
680 * such as stat(2) */
681 inode->i_ino = hash;
682
683 /* We can't support update_atime(), since the server will reset it */
684 inode->i_flags |= S_NOATIME|S_NOCMTIME;
685 inode->i_mode = fattr->mode;
686 /* Why so? Because we want revalidate for devices/FIFOs, and
687 * that's precisely what we have in nfs_file_inode_operations.
688 */
689 inode->i_op = &nfs_file_inode_operations;
690 if (S_ISREG(inode->i_mode)) {
691 inode->i_fop = &nfs_file_operations;
692 inode->i_data.a_ops = &nfs_file_aops;
693 inode->i_data.backing_dev_info = &NFS_SB(sb)->backing_dev_info;
694 } else if (S_ISDIR(inode->i_mode)) {
695 inode->i_op = NFS_SB(sb)->rpc_ops->dir_inode_ops;
696 inode->i_fop = &nfs_dir_operations;
697 if (nfs_server_capable(inode, NFS_CAP_READDIRPLUS)
698 && fattr->size <= NFS_LIMIT_READDIRPLUS)
699 NFS_FLAGS(inode) |= NFS_INO_ADVISE_RDPLUS;
700 } else if (S_ISLNK(inode->i_mode))
701 inode->i_op = &nfs_symlink_inode_operations;
702 else
703 init_special_inode(inode, inode->i_mode, fattr->rdev);
704
705 nfsi->read_cache_jiffies = fattr->timestamp;
706 inode->i_atime = fattr->atime;
707 inode->i_mtime = fattr->mtime;
708 inode->i_ctime = fattr->ctime;
709 if (fattr->valid & NFS_ATTR_FATTR_V4)
710 nfsi->change_attr = fattr->change_attr;
711 inode->i_size = nfs_size_to_loff_t(fattr->size);
712 inode->i_nlink = fattr->nlink;
713 inode->i_uid = fattr->uid;
714 inode->i_gid = fattr->gid;
715 if (fattr->valid & (NFS_ATTR_FATTR_V3 | NFS_ATTR_FATTR_V4)) {
716 /*
717 * report the blocks in 512byte units
718 */
719 inode->i_blocks = nfs_calc_block_size(fattr->du.nfs3.used);
720 inode->i_blksize = inode->i_sb->s_blocksize;
721 } else {
722 inode->i_blocks = fattr->du.nfs2.blocks;
723 inode->i_blksize = fattr->du.nfs2.blocksize;
724 }
725 nfsi->attrtimeo = NFS_MINATTRTIMEO(inode);
726 nfsi->attrtimeo_timestamp = jiffies;
727 memset(nfsi->cookieverf, 0, sizeof(nfsi->cookieverf));
728 nfsi->cache_access.cred = NULL;
729
730 unlock_new_inode(inode);
731 } else
732 nfs_refresh_inode(inode, fattr);
733 dprintk("NFS: nfs_fhget(%s/%Ld ct=%d)\n",
734 inode->i_sb->s_id,
735 (long long)NFS_FILEID(inode),
736 atomic_read(&inode->i_count));
737
738out:
739 return inode;
740
741out_no_inode:
742 printk("nfs_fhget: iget failed\n");
743 goto out;
744}
745
746#define NFS_VALID_ATTRS (ATTR_MODE|ATTR_UID|ATTR_GID|ATTR_SIZE|ATTR_ATIME|ATTR_ATIME_SET|ATTR_MTIME|ATTR_MTIME_SET)
747
748int
749nfs_setattr(struct dentry *dentry, struct iattr *attr)
750{
751 struct inode *inode = dentry->d_inode;
752 struct nfs_fattr fattr;
753 int error;
754
755 if (attr->ia_valid & ATTR_SIZE) {
756 if (!S_ISREG(inode->i_mode) || attr->ia_size == i_size_read(inode))
757 attr->ia_valid &= ~ATTR_SIZE;
758 }
759
760 /* Optimization: if the end result is no change, don't RPC */
761 attr->ia_valid &= NFS_VALID_ATTRS;
762 if (attr->ia_valid == 0)
763 return 0;
764
765 lock_kernel();
766 nfs_begin_data_update(inode);
767 /* Write all dirty data if we're changing file permissions or size */
768 if ((attr->ia_valid & (ATTR_MODE|ATTR_UID|ATTR_GID|ATTR_SIZE)) != 0) {
769 if (filemap_fdatawrite(inode->i_mapping) == 0)
770 filemap_fdatawait(inode->i_mapping);
771 nfs_wb_all(inode);
772 }
773 error = NFS_PROTO(inode)->setattr(dentry, &fattr, attr);
774 if (error == 0) {
775 nfs_refresh_inode(inode, &fattr);
776 if ((attr->ia_valid & ATTR_MODE) != 0) {
777 int mode;
778 mode = inode->i_mode & ~S_IALLUGO;
779 mode |= attr->ia_mode & S_IALLUGO;
780 inode->i_mode = mode;
781 }
782 if ((attr->ia_valid & ATTR_UID) != 0)
783 inode->i_uid = attr->ia_uid;
784 if ((attr->ia_valid & ATTR_GID) != 0)
785 inode->i_gid = attr->ia_gid;
786 if ((attr->ia_valid & ATTR_SIZE) != 0) {
787 inode->i_size = attr->ia_size;
788 vmtruncate(inode, attr->ia_size);
789 }
790 }
791 if ((attr->ia_valid & (ATTR_MODE|ATTR_UID|ATTR_GID)) != 0)
792 NFS_FLAGS(inode) |= NFS_INO_INVALID_ACCESS;
793 nfs_end_data_update(inode);
794 unlock_kernel();
795 return error;
796}
797
798/*
799 * Wait for the inode to get unlocked.
800 * (Used for NFS_INO_LOCKED and NFS_INO_REVALIDATING).
801 */
802static int
803nfs_wait_on_inode(struct inode *inode, int flag)
804{
805 struct rpc_clnt *clnt = NFS_CLIENT(inode);
806 struct nfs_inode *nfsi = NFS_I(inode);
807
808 int error;
809 if (!(NFS_FLAGS(inode) & flag))
810 return 0;
811 atomic_inc(&inode->i_count);
812 error = nfs_wait_event(clnt, nfsi->nfs_i_wait,
813 !(NFS_FLAGS(inode) & flag));
814 iput(inode);
815 return error;
816}
817
818int nfs_getattr(struct vfsmount *mnt, struct dentry *dentry, struct kstat *stat)
819{
820 struct inode *inode = dentry->d_inode;
821 struct nfs_inode *nfsi = NFS_I(inode);
822 int need_atime = nfsi->flags & NFS_INO_INVALID_ATIME;
823 int err;
824
825 if (__IS_FLG(inode, MS_NOATIME))
826 need_atime = 0;
827 else if (__IS_FLG(inode, MS_NODIRATIME) && S_ISDIR(inode->i_mode))
828 need_atime = 0;
829 /* We may force a getattr if the user cares about atime */
830 if (need_atime)
831 err = __nfs_revalidate_inode(NFS_SERVER(inode), inode);
832 else
833 err = nfs_revalidate_inode(NFS_SERVER(inode), inode);
834 if (!err)
835 generic_fillattr(inode, stat);
836 return err;
837}
838
839struct nfs_open_context *alloc_nfs_open_context(struct dentry *dentry, struct rpc_cred *cred)
840{
841 struct nfs_open_context *ctx;
842
843 ctx = (struct nfs_open_context *)kmalloc(sizeof(*ctx), GFP_KERNEL);
844 if (ctx != NULL) {
845 atomic_set(&ctx->count, 1);
846 ctx->dentry = dget(dentry);
847 ctx->cred = get_rpccred(cred);
848 ctx->state = NULL;
849 ctx->lockowner = current->files;
850 ctx->error = 0;
851 init_waitqueue_head(&ctx->waitq);
852 }
853 return ctx;
854}
855
856struct nfs_open_context *get_nfs_open_context(struct nfs_open_context *ctx)
857{
858 if (ctx != NULL)
859 atomic_inc(&ctx->count);
860 return ctx;
861}
862
863void put_nfs_open_context(struct nfs_open_context *ctx)
864{
865 if (atomic_dec_and_test(&ctx->count)) {
866 if (!list_empty(&ctx->list)) {
867 struct inode *inode = ctx->dentry->d_inode;
868 spin_lock(&inode->i_lock);
869 list_del(&ctx->list);
870 spin_unlock(&inode->i_lock);
871 }
872 if (ctx->state != NULL)
873 nfs4_close_state(ctx->state, ctx->mode);
874 if (ctx->cred != NULL)
875 put_rpccred(ctx->cred);
876 dput(ctx->dentry);
877 kfree(ctx);
878 }
879}
880
881/*
882 * Ensure that mmap has a recent RPC credential for use when writing out
883 * shared pages
884 */
885void nfs_file_set_open_context(struct file *filp, struct nfs_open_context *ctx)
886{
887 struct inode *inode = filp->f_dentry->d_inode;
888 struct nfs_inode *nfsi = NFS_I(inode);
889
890 filp->private_data = get_nfs_open_context(ctx);
891 spin_lock(&inode->i_lock);
892 list_add(&ctx->list, &nfsi->open_files);
893 spin_unlock(&inode->i_lock);
894}
895
896struct nfs_open_context *nfs_find_open_context(struct inode *inode, int mode)
897{
898 struct nfs_inode *nfsi = NFS_I(inode);
899 struct nfs_open_context *pos, *ctx = NULL;
900
901 spin_lock(&inode->i_lock);
902 list_for_each_entry(pos, &nfsi->open_files, list) {
903 if ((pos->mode & mode) == mode) {
904 ctx = get_nfs_open_context(pos);
905 break;
906 }
907 }
908 spin_unlock(&inode->i_lock);
909 return ctx;
910}
911
912void nfs_file_clear_open_context(struct file *filp)
913{
914 struct inode *inode = filp->f_dentry->d_inode;
915 struct nfs_open_context *ctx = (struct nfs_open_context *)filp->private_data;
916
917 if (ctx) {
918 filp->private_data = NULL;
919 spin_lock(&inode->i_lock);
920 list_move_tail(&ctx->list, &NFS_I(inode)->open_files);
921 spin_unlock(&inode->i_lock);
922 put_nfs_open_context(ctx);
923 }
924}
925
926/*
927 * These allocate and release file read/write context information.
928 */
929int nfs_open(struct inode *inode, struct file *filp)
930{
931 struct nfs_open_context *ctx;
932 struct rpc_cred *cred;
933
934 cred = rpcauth_lookupcred(NFS_CLIENT(inode)->cl_auth, 0);
935 if (IS_ERR(cred))
936 return PTR_ERR(cred);
937 ctx = alloc_nfs_open_context(filp->f_dentry, cred);
938 put_rpccred(cred);
939 if (ctx == NULL)
940 return -ENOMEM;
941 ctx->mode = filp->f_mode;
942 nfs_file_set_open_context(filp, ctx);
943 put_nfs_open_context(ctx);
944 if ((filp->f_mode & FMODE_WRITE) != 0)
945 nfs_begin_data_update(inode);
946 return 0;
947}
948
949int nfs_release(struct inode *inode, struct file *filp)
950{
951 if ((filp->f_mode & FMODE_WRITE) != 0)
952 nfs_end_data_update(inode);
953 nfs_file_clear_open_context(filp);
954 return 0;
955}
956
957/*
958 * This function is called whenever some part of NFS notices that
959 * the cached attributes have to be refreshed.
960 */
961int
962__nfs_revalidate_inode(struct nfs_server *server, struct inode *inode)
963{
964 int status = -ESTALE;
965 struct nfs_fattr fattr;
966 struct nfs_inode *nfsi = NFS_I(inode);
967 unsigned long verifier;
968 unsigned int flags;
969
970 dfprintk(PAGECACHE, "NFS: revalidating (%s/%Ld)\n",
971 inode->i_sb->s_id, (long long)NFS_FILEID(inode));
972
973 lock_kernel();
974 if (!inode || is_bad_inode(inode))
975 goto out_nowait;
976 if (NFS_STALE(inode))
977 goto out_nowait;
978
979 while (NFS_REVALIDATING(inode)) {
980 status = nfs_wait_on_inode(inode, NFS_INO_REVALIDATING);
981 if (status < 0)
982 goto out_nowait;
983 if (NFS_ATTRTIMEO(inode) == 0)
984 continue;
985 if (NFS_FLAGS(inode) & (NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA|NFS_INO_INVALID_ATIME))
986 continue;
987 status = NFS_STALE(inode) ? -ESTALE : 0;
988 goto out_nowait;
989 }
990 NFS_FLAGS(inode) |= NFS_INO_REVALIDATING;
991
992 /* Protect against RPC races by saving the change attribute */
993 verifier = nfs_save_change_attribute(inode);
994 status = NFS_PROTO(inode)->getattr(server, NFS_FH(inode), &fattr);
995 if (status != 0) {
996 dfprintk(PAGECACHE, "nfs_revalidate_inode: (%s/%Ld) getattr failed, error=%d\n",
997 inode->i_sb->s_id,
998 (long long)NFS_FILEID(inode), status);
999 if (status == -ESTALE) {
1000 nfs_zap_caches(inode);
1001 if (!S_ISDIR(inode->i_mode))
1002 NFS_FLAGS(inode) |= NFS_INO_STALE;
1003 }
1004 goto out;
1005 }
1006
1007 status = nfs_update_inode(inode, &fattr, verifier);
1008 if (status) {
1009 dfprintk(PAGECACHE, "nfs_revalidate_inode: (%s/%Ld) refresh failed, error=%d\n",
1010 inode->i_sb->s_id,
1011 (long long)NFS_FILEID(inode), status);
1012 goto out;
1013 }
1014 flags = nfsi->flags;
1015 /*
1016 * We may need to keep the attributes marked as invalid if
1017 * we raced with nfs_end_attr_update().
1018 */
1019 if (verifier == nfsi->cache_change_attribute)
1020 nfsi->flags &= ~(NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ATIME);
1021 /* Do the page cache invalidation */
1022 if (flags & NFS_INO_INVALID_DATA) {
1023 if (S_ISREG(inode->i_mode)) {
1024 if (filemap_fdatawrite(inode->i_mapping) == 0)
1025 filemap_fdatawait(inode->i_mapping);
1026 nfs_wb_all(inode);
1027 }
1028 nfsi->flags &= ~NFS_INO_INVALID_DATA;
1029 invalidate_inode_pages2(inode->i_mapping);
1030 memset(NFS_COOKIEVERF(inode), 0, sizeof(NFS_COOKIEVERF(inode)));
1031 dfprintk(PAGECACHE, "NFS: (%s/%Ld) data cache invalidated\n",
1032 inode->i_sb->s_id,
1033 (long long)NFS_FILEID(inode));
1034 /* This ensures we revalidate dentries */
1035 nfsi->cache_change_attribute++;
1036 }
1037 dfprintk(PAGECACHE, "NFS: (%s/%Ld) revalidation complete\n",
1038 inode->i_sb->s_id,
1039 (long long)NFS_FILEID(inode));
1040
1041out:
1042 NFS_FLAGS(inode) &= ~NFS_INO_REVALIDATING;
1043 wake_up(&nfsi->nfs_i_wait);
1044 out_nowait:
1045 unlock_kernel();
1046 return status;
1047}
1048
1049int nfs_attribute_timeout(struct inode *inode)
1050{
1051 struct nfs_inode *nfsi = NFS_I(inode);
1052
1053 if (nfs_have_delegation(inode, FMODE_READ))
1054 return 0;
1055 return time_after(jiffies, nfsi->read_cache_jiffies+nfsi->attrtimeo);
1056}
1057
1058/**
1059 * nfs_revalidate_inode - Revalidate the inode attributes
1060 * @server - pointer to nfs_server struct
1061 * @inode - pointer to inode struct
1062 *
1063 * Updates inode attribute information by retrieving the data from the server.
1064 */
1065int nfs_revalidate_inode(struct nfs_server *server, struct inode *inode)
1066{
1067 if (!(NFS_FLAGS(inode) & (NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA))
1068 && !nfs_attribute_timeout(inode))
1069 return NFS_STALE(inode) ? -ESTALE : 0;
1070 return __nfs_revalidate_inode(server, inode);
1071}
1072
1073/**
1074 * nfs_begin_data_update
1075 * @inode - pointer to inode
1076 * Declare that a set of operations will update file data on the server
1077 */
1078void nfs_begin_data_update(struct inode *inode)
1079{
1080 atomic_inc(&NFS_I(inode)->data_updates);
1081}
1082
1083/**
1084 * nfs_end_data_update
1085 * @inode - pointer to inode
1086 * Declare end of the operations that will update file data
1087 * This will mark the inode as immediately needing revalidation
1088 * of its attribute cache.
1089 */
1090void nfs_end_data_update(struct inode *inode)
1091{
1092 struct nfs_inode *nfsi = NFS_I(inode);
1093
1094 if (!nfs_have_delegation(inode, FMODE_READ)) {
1095 /* Mark the attribute cache for revalidation */
1096 nfsi->flags |= NFS_INO_INVALID_ATTR;
1097 /* Directories and symlinks: invalidate page cache too */
1098 if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
1099 nfsi->flags |= NFS_INO_INVALID_DATA;
1100 }
1101 nfsi->cache_change_attribute ++;
1102 atomic_dec(&nfsi->data_updates);
1103}
1104
1105/**
1106 * nfs_end_data_update_defer
1107 * @inode - pointer to inode
1108 * Declare end of the operations that will update file data
1109 * This will defer marking the inode as needing revalidation
1110 * unless there are no other pending updates.
1111 */
1112void nfs_end_data_update_defer(struct inode *inode)
1113{
1114 struct nfs_inode *nfsi = NFS_I(inode);
1115
1116 if (atomic_dec_and_test(&nfsi->data_updates)) {
1117 /* Mark the attribute cache for revalidation */
1118 nfsi->flags |= NFS_INO_INVALID_ATTR;
1119 /* Directories and symlinks: invalidate page cache too */
1120 if (S_ISDIR(inode->i_mode) || S_ISLNK(inode->i_mode))
1121 nfsi->flags |= NFS_INO_INVALID_DATA;
1122 nfsi->cache_change_attribute ++;
1123 }
1124}
1125
1126/**
1127 * nfs_refresh_inode - verify consistency of the inode attribute cache
1128 * @inode - pointer to inode
1129 * @fattr - updated attributes
1130 *
1131 * Verifies the attribute cache. If we have just changed the attributes,
1132 * so that fattr carries weak cache consistency data, then it may
1133 * also update the ctime/mtime/change_attribute.
1134 */
1135int nfs_refresh_inode(struct inode *inode, struct nfs_fattr *fattr)
1136{
1137 struct nfs_inode *nfsi = NFS_I(inode);
1138 loff_t cur_size, new_isize;
1139 int data_unstable;
1140
1141 /* Do we hold a delegation? */
1142 if (nfs_have_delegation(inode, FMODE_READ))
1143 return 0;
1144
1145 /* Are we in the process of updating data on the server? */
1146 data_unstable = nfs_caches_unstable(inode);
1147
1148 if (fattr->valid & NFS_ATTR_FATTR_V4) {
1149 if ((fattr->valid & NFS_ATTR_PRE_CHANGE) != 0
1150 && nfsi->change_attr == fattr->pre_change_attr)
1151 nfsi->change_attr = fattr->change_attr;
1152 if (!data_unstable && nfsi->change_attr != fattr->change_attr)
1153 nfsi->flags |= NFS_INO_INVALID_ATTR;
1154 }
1155
1156 if ((fattr->valid & NFS_ATTR_FATTR) == 0)
1157 return 0;
1158
1159 /* Has the inode gone and changed behind our back? */
1160 if (nfsi->fileid != fattr->fileid
1161 || (inode->i_mode & S_IFMT) != (fattr->mode & S_IFMT))
1162 return -EIO;
1163
1164 cur_size = i_size_read(inode);
1165 new_isize = nfs_size_to_loff_t(fattr->size);
1166
1167 /* If we have atomic WCC data, we may update some attributes */
1168 if ((fattr->valid & NFS_ATTR_WCC) != 0) {
1169 if (timespec_equal(&inode->i_ctime, &fattr->pre_ctime))
1170 memcpy(&inode->i_ctime, &fattr->ctime, sizeof(inode->i_ctime));
1171 if (timespec_equal(&inode->i_mtime, &fattr->pre_mtime))
1172 memcpy(&inode->i_mtime, &fattr->mtime, sizeof(inode->i_mtime));
1173 }
1174
1175 /* Verify a few of the more important attributes */
1176 if (!data_unstable) {
1177 if (!timespec_equal(&inode->i_mtime, &fattr->mtime)
1178 || cur_size != new_isize)
1179 nfsi->flags |= NFS_INO_INVALID_ATTR;
1180 } else if (S_ISREG(inode->i_mode) && new_isize > cur_size)
1181 nfsi->flags |= NFS_INO_INVALID_ATTR;
1182
1183 /* Have any file permissions changed? */
1184 if ((inode->i_mode & S_IALLUGO) != (fattr->mode & S_IALLUGO)
1185 || inode->i_uid != fattr->uid
1186 || inode->i_gid != fattr->gid)
1187 nfsi->flags |= NFS_INO_INVALID_ATTR | NFS_INO_INVALID_ACCESS;
1188
1189 /* Has the link count changed? */
1190 if (inode->i_nlink != fattr->nlink)
1191 nfsi->flags |= NFS_INO_INVALID_ATTR;
1192
1193 if (!timespec_equal(&inode->i_atime, &fattr->atime))
1194 nfsi->flags |= NFS_INO_INVALID_ATIME;
1195
1196 nfsi->read_cache_jiffies = fattr->timestamp;
1197 return 0;
1198}
1199
1200/*
1201 * Many nfs protocol calls return the new file attributes after
1202 * an operation. Here we update the inode to reflect the state
1203 * of the server's inode.
1204 *
1205 * This is a bit tricky because we have to make sure all dirty pages
1206 * have been sent off to the server before calling invalidate_inode_pages.
1207 * To make sure no other process adds more write requests while we try
1208 * our best to flush them, we make them sleep during the attribute refresh.
1209 *
1210 * A very similar scenario holds for the dir cache.
1211 */
1212static int nfs_update_inode(struct inode *inode, struct nfs_fattr *fattr, unsigned long verifier)
1213{
1214 struct nfs_inode *nfsi = NFS_I(inode);
1215 __u64 new_size;
1216 loff_t new_isize;
1217 unsigned int invalid = 0;
1218 loff_t cur_isize;
1219 int data_unstable;
1220
1221 dfprintk(VFS, "NFS: %s(%s/%ld ct=%d info=0x%x)\n",
1222 __FUNCTION__, inode->i_sb->s_id, inode->i_ino,
1223 atomic_read(&inode->i_count), fattr->valid);
1224
1225 if ((fattr->valid & NFS_ATTR_FATTR) == 0)
1226 return 0;
1227
1228 if (nfsi->fileid != fattr->fileid) {
1229 printk(KERN_ERR "%s: inode number mismatch\n"
1230 "expected (%s/0x%Lx), got (%s/0x%Lx)\n",
1231 __FUNCTION__,
1232 inode->i_sb->s_id, (long long)nfsi->fileid,
1233 inode->i_sb->s_id, (long long)fattr->fileid);
1234 goto out_err;
1235 }
1236
1237 /*
1238 * Make sure the inode's type hasn't changed.
1239 */
1240 if ((inode->i_mode & S_IFMT) != (fattr->mode & S_IFMT))
1241 goto out_changed;
1242
1243 /*
1244 * Update the read time so we don't revalidate too often.
1245 */
1246 nfsi->read_cache_jiffies = fattr->timestamp;
1247
1248 /* Are we racing with known updates of the metadata on the server? */
1249 data_unstable = ! nfs_verify_change_attribute(inode, verifier);
1250
1251 /* Check if the file size agrees */
1252 new_size = fattr->size;
1253 new_isize = nfs_size_to_loff_t(fattr->size);
1254 cur_isize = i_size_read(inode);
1255 if (cur_isize != new_size) {
1256#ifdef NFS_DEBUG_VERBOSE
1257 printk(KERN_DEBUG "NFS: isize change on %s/%ld\n", inode->i_sb->s_id, inode->i_ino);
1258#endif
1259 /*
1260 * If we have pending writebacks, things can get
1261 * messy.
1262 */
1263 if (S_ISREG(inode->i_mode) && data_unstable) {
1264 if (new_isize > cur_isize) {
1265 inode->i_size = new_isize;
1266 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA;
1267 }
1268 } else {
1269 inode->i_size = new_isize;
1270 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA;
1271 }
1272 }
1273
1274 /*
1275 * Note: we don't check inode->i_mtime since pipes etc.
1276 * can change this value in VFS without requiring a
1277 * cache revalidation.
1278 */
1279 if (!timespec_equal(&inode->i_mtime, &fattr->mtime)) {
1280 memcpy(&inode->i_mtime, &fattr->mtime, sizeof(inode->i_mtime));
1281#ifdef NFS_DEBUG_VERBOSE
1282 printk(KERN_DEBUG "NFS: mtime change on %s/%ld\n", inode->i_sb->s_id, inode->i_ino);
1283#endif
1284 if (!data_unstable)
1285 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA;
1286 }
1287
1288 if ((fattr->valid & NFS_ATTR_FATTR_V4)
1289 && nfsi->change_attr != fattr->change_attr) {
1290#ifdef NFS_DEBUG_VERBOSE
1291 printk(KERN_DEBUG "NFS: change_attr change on %s/%ld\n",
1292 inode->i_sb->s_id, inode->i_ino);
1293#endif
1294 nfsi->change_attr = fattr->change_attr;
1295 if (!data_unstable)
1296 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_DATA|NFS_INO_INVALID_ACCESS;
1297 }
1298
1299 memcpy(&inode->i_ctime, &fattr->ctime, sizeof(inode->i_ctime));
1300 memcpy(&inode->i_atime, &fattr->atime, sizeof(inode->i_atime));
1301
1302 if ((inode->i_mode & S_IALLUGO) != (fattr->mode & S_IALLUGO) ||
1303 inode->i_uid != fattr->uid ||
1304 inode->i_gid != fattr->gid)
1305 invalid |= NFS_INO_INVALID_ATTR|NFS_INO_INVALID_ACCESS;
1306
1307 inode->i_mode = fattr->mode;
1308 inode->i_nlink = fattr->nlink;
1309 inode->i_uid = fattr->uid;
1310 inode->i_gid = fattr->gid;
1311
1312 if (fattr->valid & (NFS_ATTR_FATTR_V3 | NFS_ATTR_FATTR_V4)) {
1313 /*
1314 * report the blocks in 512byte units
1315 */
1316 inode->i_blocks = nfs_calc_block_size(fattr->du.nfs3.used);
1317 inode->i_blksize = inode->i_sb->s_blocksize;
1318 } else {
1319 inode->i_blocks = fattr->du.nfs2.blocks;
1320 inode->i_blksize = fattr->du.nfs2.blocksize;
1321 }
1322
1323 /* Update attrtimeo value if we're out of the unstable period */
1324 if (invalid & NFS_INO_INVALID_ATTR) {
1325 nfsi->attrtimeo = NFS_MINATTRTIMEO(inode);
1326 nfsi->attrtimeo_timestamp = jiffies;
1327 } else if (time_after(jiffies, nfsi->attrtimeo_timestamp+nfsi->attrtimeo)) {
1328 if ((nfsi->attrtimeo <<= 1) > NFS_MAXATTRTIMEO(inode))
1329 nfsi->attrtimeo = NFS_MAXATTRTIMEO(inode);
1330 nfsi->attrtimeo_timestamp = jiffies;
1331 }
1332 /* Don't invalidate the data if we were to blame */
1333 if (!(S_ISREG(inode->i_mode) || S_ISDIR(inode->i_mode)
1334 || S_ISLNK(inode->i_mode)))
1335 invalid &= ~NFS_INO_INVALID_DATA;
1336 if (!nfs_have_delegation(inode, FMODE_READ))
1337 nfsi->flags |= invalid;
1338
1339 return 0;
1340 out_changed:
1341 /*
1342 * Big trouble! The inode has become a different object.
1343 */
1344#ifdef NFS_PARANOIA
1345 printk(KERN_DEBUG "%s: inode %ld mode changed, %07o to %07o\n",
1346 __FUNCTION__, inode->i_ino, inode->i_mode, fattr->mode);
1347#endif
1348 /*
1349 * No need to worry about unhashing the dentry, as the
1350 * lookup validation will know that the inode is bad.
1351 * (But we fall through to invalidate the caches.)
1352 */
1353 nfs_invalidate_inode(inode);
1354 out_err:
1355 NFS_FLAGS(inode) |= NFS_INO_STALE;
1356 return -ESTALE;
1357}
1358
1359/*
1360 * File system information
1361 */
1362
1363static int nfs_set_super(struct super_block *s, void *data)
1364{
1365 s->s_fs_info = data;
1366 return set_anon_super(s, data);
1367}
1368
1369static int nfs_compare_super(struct super_block *sb, void *data)
1370{
1371 struct nfs_server *server = data;
1372 struct nfs_server *old = NFS_SB(sb);
1373
1374 if (old->addr.sin_addr.s_addr != server->addr.sin_addr.s_addr)
1375 return 0;
1376 if (old->addr.sin_port != server->addr.sin_port)
1377 return 0;
1378 return !nfs_compare_fh(&old->fh, &server->fh);
1379}
1380
1381static struct super_block *nfs_get_sb(struct file_system_type *fs_type,
1382 int flags, const char *dev_name, void *raw_data)
1383{
1384 int error;
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001385 struct nfs_server *server = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001386 struct super_block *s;
1387 struct nfs_fh *root;
1388 struct nfs_mount_data *data = raw_data;
1389
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001390 s = ERR_PTR(-EINVAL);
1391 if (data == NULL) {
1392 dprintk("%s: missing data argument\n", __FUNCTION__);
1393 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001394 }
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001395 if (data->version <= 0 || data->version > NFS_MOUNT_VERSION) {
1396 dprintk("%s: bad mount version\n", __FUNCTION__);
1397 goto out_err;
1398 }
1399 switch (data->version) {
1400 case 1:
1401 data->namlen = 0;
1402 case 2:
1403 data->bsize = 0;
1404 case 3:
1405 if (data->flags & NFS_MOUNT_VER3) {
1406 dprintk("%s: mount structure version %d does not support NFSv3\n",
1407 __FUNCTION__,
1408 data->version);
1409 goto out_err;
1410 }
1411 data->root.size = NFS2_FHSIZE;
1412 memcpy(data->root.data, data->old_root.data, NFS2_FHSIZE);
1413 case 4:
1414 if (data->flags & NFS_MOUNT_SECFLAVOUR) {
1415 dprintk("%s: mount structure version %d does not support strong security\n",
1416 __FUNCTION__,
1417 data->version);
1418 goto out_err;
1419 }
1420 case 5:
1421 memset(data->context, 0, sizeof(data->context));
1422 }
1423#ifndef CONFIG_NFS_V3
1424 /* If NFSv3 is not compiled in, return -EPROTONOSUPPORT */
1425 s = ERR_PTR(-EPROTONOSUPPORT);
1426 if (data->flags & NFS_MOUNT_VER3) {
1427 dprintk("%s: NFSv3 not compiled into kernel\n", __FUNCTION__);
1428 goto out_err;
1429 }
1430#endif /* CONFIG_NFS_V3 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001432 s = ERR_PTR(-ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 server = kmalloc(sizeof(struct nfs_server), GFP_KERNEL);
1434 if (!server)
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001435 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 memset(server, 0, sizeof(struct nfs_server));
1437 /* Zero out the NFS state stuff */
1438 init_nfsv4_state(server);
1439
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 root = &server->fh;
1441 if (data->flags & NFS_MOUNT_VER3)
1442 root->size = data->root.size;
1443 else
1444 root->size = NFS2_FHSIZE;
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001445 s = ERR_PTR(-EINVAL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 if (root->size > sizeof(root->data)) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001447 dprintk("%s: invalid root filehandle\n", __FUNCTION__);
1448 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 }
1450 memcpy(root->data, data->root.data, root->size);
1451
1452 /* We now require that the mount process passes the remote address */
1453 memcpy(&server->addr, &data->addr, sizeof(server->addr));
1454 if (server->addr.sin_addr.s_addr == INADDR_ANY) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001455 dprintk("%s: mount program didn't pass remote address!\n",
1456 __FUNCTION__);
1457 goto out_err;
1458 }
1459
1460 /* Fire up rpciod if not yet running */
1461 s = ERR_PTR(rpciod_up());
1462 if (IS_ERR(s)) {
1463 dprintk("%s: couldn't start rpciod! Error = %ld\n",
1464 __FUNCTION__, PTR_ERR(s));
1465 goto out_err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
1467
1468 s = sget(fs_type, nfs_compare_super, nfs_set_super, server);
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001469 if (IS_ERR(s) || s->s_root)
1470 goto out_rpciod_down;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001471
1472 s->s_flags = flags;
1473
Linus Torvalds1da177e2005-04-16 15:20:36 -07001474 error = nfs_fill_super(s, data, flags & MS_VERBOSE ? 1 : 0);
1475 if (error) {
1476 up_write(&s->s_umount);
1477 deactivate_super(s);
1478 return ERR_PTR(error);
1479 }
1480 s->s_flags |= MS_ACTIVE;
1481 return s;
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001482out_rpciod_down:
1483 rpciod_down();
1484out_err:
1485 kfree(server);
1486 return s;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001487}
1488
1489static void nfs_kill_super(struct super_block *s)
1490{
1491 struct nfs_server *server = NFS_SB(s);
1492
1493 kill_anon_super(s);
1494
1495 if (server->client != NULL && !IS_ERR(server->client))
1496 rpc_shutdown_client(server->client);
1497 if (server->client_sys != NULL && !IS_ERR(server->client_sys))
1498 rpc_shutdown_client(server->client_sys);
1499
1500 if (!(server->flags & NFS_MOUNT_NONLM))
1501 lockd_down(); /* release rpc.lockd */
1502
1503 rpciod_down(); /* release rpciod */
1504
1505 if (server->hostname != NULL)
1506 kfree(server->hostname);
1507 kfree(server);
1508}
1509
1510static struct file_system_type nfs_fs_type = {
1511 .owner = THIS_MODULE,
1512 .name = "nfs",
1513 .get_sb = nfs_get_sb,
1514 .kill_sb = nfs_kill_super,
1515 .fs_flags = FS_ODD_RENAME|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
1516};
1517
1518#ifdef CONFIG_NFS_V4
1519
1520static void nfs4_clear_inode(struct inode *);
1521
1522
1523static struct super_operations nfs4_sops = {
1524 .alloc_inode = nfs_alloc_inode,
1525 .destroy_inode = nfs_destroy_inode,
1526 .write_inode = nfs_write_inode,
1527 .delete_inode = nfs_delete_inode,
1528 .statfs = nfs_statfs,
1529 .clear_inode = nfs4_clear_inode,
1530 .umount_begin = nfs_umount_begin,
1531 .show_options = nfs_show_options,
1532};
1533
1534/*
1535 * Clean out any remaining NFSv4 state that might be left over due
1536 * to open() calls that passed nfs_atomic_lookup, but failed to call
1537 * nfs_open().
1538 */
1539static void nfs4_clear_inode(struct inode *inode)
1540{
1541 struct nfs_inode *nfsi = NFS_I(inode);
1542
1543 /* If we are holding a delegation, return it! */
1544 if (nfsi->delegation != NULL)
1545 nfs_inode_return_delegation(inode);
1546 /* First call standard NFS clear_inode() code */
1547 nfs_clear_inode(inode);
1548 /* Now clear out any remaining state */
1549 while (!list_empty(&nfsi->open_states)) {
1550 struct nfs4_state *state;
1551
1552 state = list_entry(nfsi->open_states.next,
1553 struct nfs4_state,
1554 inode_states);
1555 dprintk("%s(%s/%Ld): found unclaimed NFSv4 state %p\n",
1556 __FUNCTION__,
1557 inode->i_sb->s_id,
1558 (long long)NFS_FILEID(inode),
1559 state);
1560 BUG_ON(atomic_read(&state->count) != 1);
1561 nfs4_close_state(state, state->state);
1562 }
1563}
1564
1565
1566static int nfs4_fill_super(struct super_block *sb, struct nfs4_mount_data *data, int silent)
1567{
1568 struct nfs_server *server;
1569 struct nfs4_client *clp = NULL;
1570 struct rpc_xprt *xprt = NULL;
1571 struct rpc_clnt *clnt = NULL;
1572 struct rpc_timeout timeparms;
1573 rpc_authflavor_t authflavour;
1574 int proto, err = -EIO;
1575
1576 sb->s_blocksize_bits = 0;
1577 sb->s_blocksize = 0;
1578 server = NFS_SB(sb);
1579 if (data->rsize != 0)
1580 server->rsize = nfs_block_size(data->rsize, NULL);
1581 if (data->wsize != 0)
1582 server->wsize = nfs_block_size(data->wsize, NULL);
1583 server->flags = data->flags & NFS_MOUNT_FLAGMASK;
1584 server->caps = NFS_CAP_ATOMIC_OPEN;
1585
1586 server->acregmin = data->acregmin*HZ;
1587 server->acregmax = data->acregmax*HZ;
1588 server->acdirmin = data->acdirmin*HZ;
1589 server->acdirmax = data->acdirmax*HZ;
1590
1591 server->rpc_ops = &nfs_v4_clientops;
1592 /* Initialize timeout values */
1593
1594 timeparms.to_initval = data->timeo * HZ / 10;
1595 timeparms.to_retries = data->retrans;
1596 timeparms.to_exponential = 1;
1597 if (!timeparms.to_retries)
1598 timeparms.to_retries = 5;
1599
1600 proto = data->proto;
1601 /* Which IP protocol do we use? */
1602 switch (proto) {
1603 case IPPROTO_TCP:
1604 timeparms.to_maxval = RPC_MAX_TCP_TIMEOUT;
1605 if (!timeparms.to_initval)
1606 timeparms.to_initval = 600 * HZ / 10;
1607 break;
1608 case IPPROTO_UDP:
1609 timeparms.to_maxval = RPC_MAX_UDP_TIMEOUT;
1610 if (!timeparms.to_initval)
1611 timeparms.to_initval = 11 * HZ / 10;
1612 break;
1613 default:
1614 return -EINVAL;
1615 }
1616
1617 clp = nfs4_get_client(&server->addr.sin_addr);
1618 if (!clp) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001619 dprintk("%s: failed to create NFS4 client.\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620 return -EIO;
1621 }
1622
1623 /* Now create transport and client */
1624 authflavour = RPC_AUTH_UNIX;
1625 if (data->auth_flavourlen != 0) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001626 if (data->auth_flavourlen != 1) {
1627 dprintk("%s: Invalid number of RPC auth flavours %d.\n",
1628 __FUNCTION__, data->auth_flavourlen);
1629 err = -EINVAL;
1630 goto out_fail;
1631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 if (copy_from_user(&authflavour, data->auth_flavours, sizeof(authflavour))) {
1633 err = -EFAULT;
1634 goto out_fail;
1635 }
1636 }
1637
1638 down_write(&clp->cl_sem);
1639 if (clp->cl_rpcclient == NULL) {
1640 xprt = xprt_create_proto(proto, &server->addr, &timeparms);
1641 if (IS_ERR(xprt)) {
1642 up_write(&clp->cl_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001643 err = PTR_ERR(xprt);
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001644 dprintk("%s: cannot create RPC transport. Error = %d\n",
1645 __FUNCTION__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 goto out_fail;
1647 }
1648 clnt = rpc_create_client(xprt, server->hostname, &nfs_program,
1649 server->rpc_ops->version, authflavour);
1650 if (IS_ERR(clnt)) {
1651 up_write(&clp->cl_sem);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652 err = PTR_ERR(clnt);
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001653 dprintk("%s: cannot create RPC client. Error = %d\n",
1654 __FUNCTION__, err);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 goto out_fail;
1656 }
1657 clnt->cl_intr = 1;
1658 clnt->cl_softrtry = 1;
1659 clnt->cl_chatty = 1;
1660 clp->cl_rpcclient = clnt;
1661 clp->cl_cred = rpcauth_lookupcred(clnt->cl_auth, 0);
1662 if (IS_ERR(clp->cl_cred)) {
1663 up_write(&clp->cl_sem);
1664 err = PTR_ERR(clp->cl_cred);
1665 clp->cl_cred = NULL;
1666 goto out_fail;
1667 }
1668 memcpy(clp->cl_ipaddr, server->ip_addr, sizeof(clp->cl_ipaddr));
1669 nfs_idmap_new(clp);
1670 }
1671 if (list_empty(&clp->cl_superblocks)) {
1672 err = nfs4_init_client(clp);
1673 if (err != 0) {
1674 up_write(&clp->cl_sem);
1675 goto out_fail;
1676 }
1677 }
1678 list_add_tail(&server->nfs4_siblings, &clp->cl_superblocks);
1679 clnt = rpc_clone_client(clp->cl_rpcclient);
1680 if (!IS_ERR(clnt))
1681 server->nfs4_state = clp;
1682 up_write(&clp->cl_sem);
1683 clp = NULL;
1684
1685 if (IS_ERR(clnt)) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001686 err = PTR_ERR(clnt);
1687 dprintk("%s: cannot create RPC client. Error = %d\n",
1688 __FUNCTION__, err);
1689 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 }
1691
1692 server->client = clnt;
1693
1694 if (server->nfs4_state->cl_idmap == NULL) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001695 dprintk("%s: failed to create idmapper.\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001696 return -ENOMEM;
1697 }
1698
1699 if (clnt->cl_auth->au_flavor != authflavour) {
1700 if (rpcauth_create(authflavour, clnt) == NULL) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001701 dprintk("%s: couldn't create credcache!\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001702 return -ENOMEM;
1703 }
1704 }
1705
1706 sb->s_time_gran = 1;
1707
1708 sb->s_op = &nfs4_sops;
1709 err = nfs_sb_init(sb, authflavour);
1710 if (err == 0)
1711 return 0;
1712out_fail:
1713 if (clp)
1714 nfs4_put_client(clp);
1715 return err;
1716}
1717
1718static int nfs4_compare_super(struct super_block *sb, void *data)
1719{
1720 struct nfs_server *server = data;
1721 struct nfs_server *old = NFS_SB(sb);
1722
1723 if (strcmp(server->hostname, old->hostname) != 0)
1724 return 0;
1725 if (strcmp(server->mnt_path, old->mnt_path) != 0)
1726 return 0;
1727 return 1;
1728}
1729
1730static void *
1731nfs_copy_user_string(char *dst, struct nfs_string *src, int maxlen)
1732{
1733 void *p = NULL;
1734
1735 if (!src->len)
1736 return ERR_PTR(-EINVAL);
1737 if (src->len < maxlen)
1738 maxlen = src->len;
1739 if (dst == NULL) {
1740 p = dst = kmalloc(maxlen + 1, GFP_KERNEL);
1741 if (p == NULL)
1742 return ERR_PTR(-ENOMEM);
1743 }
1744 if (copy_from_user(dst, src->data, maxlen)) {
1745 if (p != NULL)
1746 kfree(p);
1747 return ERR_PTR(-EFAULT);
1748 }
1749 dst[maxlen] = '\0';
1750 return dst;
1751}
1752
1753static struct super_block *nfs4_get_sb(struct file_system_type *fs_type,
1754 int flags, const char *dev_name, void *raw_data)
1755{
1756 int error;
1757 struct nfs_server *server;
1758 struct super_block *s;
1759 struct nfs4_mount_data *data = raw_data;
1760 void *p;
1761
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001762 if (data == NULL) {
1763 dprintk("%s: missing data argument\n", __FUNCTION__);
1764 return ERR_PTR(-EINVAL);
1765 }
1766 if (data->version <= 0 || data->version > NFS4_MOUNT_VERSION) {
1767 dprintk("%s: bad mount version\n", __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001768 return ERR_PTR(-EINVAL);
1769 }
1770
1771 server = kmalloc(sizeof(struct nfs_server), GFP_KERNEL);
1772 if (!server)
1773 return ERR_PTR(-ENOMEM);
1774 memset(server, 0, sizeof(struct nfs_server));
1775 /* Zero out the NFS state stuff */
1776 init_nfsv4_state(server);
1777
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778 p = nfs_copy_user_string(NULL, &data->hostname, 256);
1779 if (IS_ERR(p))
1780 goto out_err;
1781 server->hostname = p;
1782
1783 p = nfs_copy_user_string(NULL, &data->mnt_path, 1024);
1784 if (IS_ERR(p))
1785 goto out_err;
1786 server->mnt_path = p;
1787
1788 p = nfs_copy_user_string(server->ip_addr, &data->client_addr,
1789 sizeof(server->ip_addr) - 1);
1790 if (IS_ERR(p))
1791 goto out_err;
1792
1793 /* We now require that the mount process passes the remote address */
1794 if (data->host_addrlen != sizeof(server->addr)) {
1795 s = ERR_PTR(-EINVAL);
1796 goto out_free;
1797 }
1798 if (copy_from_user(&server->addr, data->host_addr, sizeof(server->addr))) {
1799 s = ERR_PTR(-EFAULT);
1800 goto out_free;
1801 }
1802 if (server->addr.sin_family != AF_INET ||
1803 server->addr.sin_addr.s_addr == INADDR_ANY) {
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001804 dprintk("%s: mount program didn't pass remote IP address!\n",
1805 __FUNCTION__);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001806 s = ERR_PTR(-EINVAL);
1807 goto out_free;
1808 }
1809
Trond Myklebust9085bbc2005-06-22 17:16:20 +00001810 /* Fire up rpciod if not yet running */
1811 s = ERR_PTR(rpciod_up());
1812 if (IS_ERR(s)) {
1813 dprintk("%s: couldn't start rpciod! Error = %ld\n",
1814 __FUNCTION__, PTR_ERR(s));
1815 goto out_free;
1816 }
1817
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 s = sget(fs_type, nfs4_compare_super, nfs_set_super, server);
1819
1820 if (IS_ERR(s) || s->s_root)
1821 goto out_free;
1822
1823 s->s_flags = flags;
1824
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 error = nfs4_fill_super(s, data, flags & MS_VERBOSE ? 1 : 0);
1826 if (error) {
1827 up_write(&s->s_umount);
1828 deactivate_super(s);
1829 return ERR_PTR(error);
1830 }
1831 s->s_flags |= MS_ACTIVE;
1832 return s;
1833out_err:
1834 s = (struct super_block *)p;
1835out_free:
1836 if (server->mnt_path)
1837 kfree(server->mnt_path);
1838 if (server->hostname)
1839 kfree(server->hostname);
1840 kfree(server);
1841 return s;
1842}
1843
1844static void nfs4_kill_super(struct super_block *sb)
1845{
1846 struct nfs_server *server = NFS_SB(sb);
1847
1848 nfs_return_all_delegations(sb);
1849 kill_anon_super(sb);
1850
1851 nfs4_renewd_prepare_shutdown(server);
1852
1853 if (server->client != NULL && !IS_ERR(server->client))
1854 rpc_shutdown_client(server->client);
1855 rpciod_down(); /* release rpciod */
1856
1857 destroy_nfsv4_state(server);
1858
1859 if (server->hostname != NULL)
1860 kfree(server->hostname);
1861 kfree(server);
1862}
1863
1864static struct file_system_type nfs4_fs_type = {
1865 .owner = THIS_MODULE,
1866 .name = "nfs4",
1867 .get_sb = nfs4_get_sb,
1868 .kill_sb = nfs4_kill_super,
1869 .fs_flags = FS_ODD_RENAME|FS_REVAL_DOT|FS_BINARY_MOUNTDATA,
1870};
1871
1872#define nfs4_init_once(nfsi) \
1873 do { \
1874 INIT_LIST_HEAD(&(nfsi)->open_states); \
1875 nfsi->delegation = NULL; \
1876 nfsi->delegation_state = 0; \
1877 init_rwsem(&nfsi->rwsem); \
1878 } while(0)
1879#define register_nfs4fs() register_filesystem(&nfs4_fs_type)
1880#define unregister_nfs4fs() unregister_filesystem(&nfs4_fs_type)
1881#else
1882#define nfs4_init_once(nfsi) \
1883 do { } while (0)
1884#define register_nfs4fs() (0)
1885#define unregister_nfs4fs()
1886#endif
1887
1888extern int nfs_init_nfspagecache(void);
1889extern void nfs_destroy_nfspagecache(void);
1890extern int nfs_init_readpagecache(void);
1891extern void nfs_destroy_readpagecache(void);
1892extern int nfs_init_writepagecache(void);
1893extern void nfs_destroy_writepagecache(void);
1894#ifdef CONFIG_NFS_DIRECTIO
1895extern int nfs_init_directcache(void);
1896extern void nfs_destroy_directcache(void);
1897#endif
1898
1899static kmem_cache_t * nfs_inode_cachep;
1900
1901static struct inode *nfs_alloc_inode(struct super_block *sb)
1902{
1903 struct nfs_inode *nfsi;
1904 nfsi = (struct nfs_inode *)kmem_cache_alloc(nfs_inode_cachep, SLAB_KERNEL);
1905 if (!nfsi)
1906 return NULL;
1907 nfsi->flags = 0;
1908 return &nfsi->vfs_inode;
1909}
1910
1911static void nfs_destroy_inode(struct inode *inode)
1912{
1913 kmem_cache_free(nfs_inode_cachep, NFS_I(inode));
1914}
1915
1916static void init_once(void * foo, kmem_cache_t * cachep, unsigned long flags)
1917{
1918 struct nfs_inode *nfsi = (struct nfs_inode *) foo;
1919
1920 if ((flags & (SLAB_CTOR_VERIFY|SLAB_CTOR_CONSTRUCTOR)) ==
1921 SLAB_CTOR_CONSTRUCTOR) {
1922 inode_init_once(&nfsi->vfs_inode);
1923 spin_lock_init(&nfsi->req_lock);
1924 INIT_LIST_HEAD(&nfsi->dirty);
1925 INIT_LIST_HEAD(&nfsi->commit);
1926 INIT_LIST_HEAD(&nfsi->open_files);
1927 INIT_RADIX_TREE(&nfsi->nfs_page_tree, GFP_ATOMIC);
1928 atomic_set(&nfsi->data_updates, 0);
1929 nfsi->ndirty = 0;
1930 nfsi->ncommit = 0;
1931 nfsi->npages = 0;
1932 init_waitqueue_head(&nfsi->nfs_i_wait);
1933 nfs4_init_once(nfsi);
1934 }
1935}
1936
Adrian Bunk75c96f82005-05-05 16:16:09 -07001937static int nfs_init_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001938{
1939 nfs_inode_cachep = kmem_cache_create("nfs_inode_cache",
1940 sizeof(struct nfs_inode),
1941 0, SLAB_RECLAIM_ACCOUNT,
1942 init_once, NULL);
1943 if (nfs_inode_cachep == NULL)
1944 return -ENOMEM;
1945
1946 return 0;
1947}
1948
Adrian Bunk75c96f82005-05-05 16:16:09 -07001949static void nfs_destroy_inodecache(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950{
1951 if (kmem_cache_destroy(nfs_inode_cachep))
1952 printk(KERN_INFO "nfs_inode_cache: not all structures were freed\n");
1953}
1954
1955/*
1956 * Initialize NFS
1957 */
1958static int __init init_nfs_fs(void)
1959{
1960 int err;
1961
1962 err = nfs_init_nfspagecache();
1963 if (err)
1964 goto out4;
1965
1966 err = nfs_init_inodecache();
1967 if (err)
1968 goto out3;
1969
1970 err = nfs_init_readpagecache();
1971 if (err)
1972 goto out2;
1973
1974 err = nfs_init_writepagecache();
1975 if (err)
1976 goto out1;
1977
1978#ifdef CONFIG_NFS_DIRECTIO
1979 err = nfs_init_directcache();
1980 if (err)
1981 goto out0;
1982#endif
1983
1984#ifdef CONFIG_PROC_FS
1985 rpc_proc_register(&nfs_rpcstat);
1986#endif
1987 err = register_filesystem(&nfs_fs_type);
1988 if (err)
1989 goto out;
1990 if ((err = register_nfs4fs()) != 0)
1991 goto out;
1992 return 0;
1993out:
1994#ifdef CONFIG_PROC_FS
1995 rpc_proc_unregister("nfs");
1996#endif
1997 nfs_destroy_writepagecache();
1998#ifdef CONFIG_NFS_DIRECTIO
1999out0:
2000 nfs_destroy_directcache();
2001#endif
2002out1:
2003 nfs_destroy_readpagecache();
2004out2:
2005 nfs_destroy_inodecache();
2006out3:
2007 nfs_destroy_nfspagecache();
2008out4:
2009 return err;
2010}
2011
2012static void __exit exit_nfs_fs(void)
2013{
2014#ifdef CONFIG_NFS_DIRECTIO
2015 nfs_destroy_directcache();
2016#endif
2017 nfs_destroy_writepagecache();
2018 nfs_destroy_readpagecache();
2019 nfs_destroy_inodecache();
2020 nfs_destroy_nfspagecache();
2021#ifdef CONFIG_PROC_FS
2022 rpc_proc_unregister("nfs");
2023#endif
2024 unregister_filesystem(&nfs_fs_type);
2025 unregister_nfs4fs();
2026}
2027
2028/* Not quite true; I just maintain it */
2029MODULE_AUTHOR("Olaf Kirch <okir@monad.swb.de>");
2030MODULE_LICENSE("GPL");
2031
2032module_init(init_nfs_fs)
2033module_exit(exit_nfs_fs)