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