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