Add a missing crit_exit(), fixing a panic. Attempt to continue with the
[dragonfly.git] / sys / vfs / nfs / nfs_vfsops.c
1 /*
2  * Copyright (c) 1989, 1993, 1995
3  *      The Regents of the University of California.  All rights reserved.
4  *
5  * This code is derived from software contributed to Berkeley by
6  * Rick Macklem at The University of Guelph.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 3. All advertising materials mentioning features or use of this software
17  *    must display the following acknowledgement:
18  *      This product includes software developed by the University of
19  *      California, Berkeley and its contributors.
20  * 4. Neither the name of the University nor the names of its contributors
21  *    may be used to endorse or promote products derived from this software
22  *    without specific prior written permission.
23  *
24  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
25  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
26  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
27  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
28  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
29  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
30  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
31  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
32  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
33  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
34  * SUCH DAMAGE.
35  *
36  *      @(#)nfs_vfsops.c        8.12 (Berkeley) 5/20/95
37  * $FreeBSD: src/sys/nfs/nfs_vfsops.c,v 1.91.2.7 2003/01/27 20:04:08 dillon Exp $
38  * $DragonFly: src/sys/vfs/nfs/nfs_vfsops.c,v 1.29 2005/09/03 17:56:24 dillon Exp $
39  */
40
41 #include "opt_bootp.h"
42
43 #include <sys/param.h>
44 #include <sys/sockio.h>
45 #include <sys/proc.h>
46 #include <sys/vnode.h>
47 #include <sys/kernel.h>
48 #include <sys/sysctl.h>
49 #include <sys/malloc.h>
50 #include <sys/mount.h>
51 #include <sys/mbuf.h>
52 #include <sys/socket.h>
53 #include <sys/socketvar.h>
54 #include <sys/systm.h>
55
56 #include <vm/vm.h>
57 #include <vm/vm_extern.h>
58 #include <vm/vm_zone.h>
59
60 #include <net/if.h>
61 #include <net/route.h>
62 #include <netinet/in.h>
63
64 #include <sys/thread2.h>
65
66 #include "rpcv2.h"
67 #include "nfsproto.h"
68 #include "nfs.h"
69 #include "nfsmount.h"
70 #include "nfsnode.h"
71 #include "xdr_subs.h"
72 #include "nfsm_subs.h"
73 #include "nfsdiskless.h"
74 #include "nqnfs.h"
75
76 extern int      nfs_mountroot(struct mount *mp);
77 extern void     bootpc_init(void);
78
79 extern int      nfs_ticks;
80 extern struct vnodeopv_entry_desc nfsv2_vnodeop_entries[];
81 extern struct vnodeopv_entry_desc nfsv2_fifoop_entries[];
82 extern struct vnodeopv_entry_desc nfsv2_specop_entries[];
83
84 MALLOC_DEFINE(M_NFSREQ, "NFS req", "NFS request header");
85 MALLOC_DEFINE(M_NFSBIGFH, "NFSV3 bigfh", "NFS version 3 file handle");
86 MALLOC_DEFINE(M_NFSD, "NFS daemon", "Nfs server daemon structure");
87 MALLOC_DEFINE(M_NFSDIROFF, "NFSV3 diroff", "NFS directory offset data");
88 MALLOC_DEFINE(M_NFSRVDESC, "NFSV3 srvdesc", "NFS server socket descriptor");
89 MALLOC_DEFINE(M_NFSUID, "NFS uid", "Nfs uid mapping structure");
90 MALLOC_DEFINE(M_NQLEASE, "NQNFS Lease", "Nqnfs lease");
91 MALLOC_DEFINE(M_NFSHASH, "NFS hash", "NFS hash tables");
92
93 vm_zone_t nfsmount_zone;
94
95 struct nfsstats nfsstats;
96 SYSCTL_NODE(_vfs, OID_AUTO, nfs, CTLFLAG_RW, 0, "NFS filesystem");
97 SYSCTL_STRUCT(_vfs_nfs, NFS_NFSSTATS, nfsstats, CTLFLAG_RD,
98         &nfsstats, nfsstats, "");
99 static int nfs_ip_paranoia = 1;
100 SYSCTL_INT(_vfs_nfs, OID_AUTO, nfs_ip_paranoia, CTLFLAG_RW,
101         &nfs_ip_paranoia, 0, "");
102 #ifdef NFS_DEBUG
103 int nfs_debug;
104 SYSCTL_INT(_vfs_nfs, OID_AUTO, debug, CTLFLAG_RW, &nfs_debug, 0, "");
105 #endif
106
107 /*
108  * Tunable to determine the Read/Write unit size.  Maximum value
109  * is NFS_MAXDATA.  We also default to NFS_MAXDATA.
110  */
111 static int nfs_io_size = NFS_MAXDATA;
112 SYSCTL_INT(_vfs_nfs, OID_AUTO, nfs_io_size, CTLFLAG_RW,
113         &nfs_io_size, 0, "NFS optimal I/O unit size");
114
115 static void     nfs_decode_args (struct nfsmount *nmp,
116                         struct nfs_args *argp);
117 static int      mountnfs (struct nfs_args *,struct mount *,
118                         struct sockaddr *,char *,char *,struct vnode **);
119 static int      nfs_mount ( struct mount *mp, char *path, caddr_t data,
120                         struct thread *td);
121 static int      nfs_unmount ( struct mount *mp, int mntflags,
122                         struct thread *td);
123 static int      nfs_root ( struct mount *mp, struct vnode **vpp);
124 static int      nfs_statfs ( struct mount *mp, struct statfs *sbp,
125                         struct thread *td);
126 static int      nfs_sync ( struct mount *mp, int waitfor,
127                         struct thread *td);
128
129 /*
130  * nfs vfs operations.
131  */
132 static struct vfsops nfs_vfsops = {
133         .vfs_mount =            nfs_mount,
134         .vfs_unmount =          nfs_unmount,
135         .vfs_root =             nfs_root,
136         .vfs_statfs =           nfs_statfs,
137         .vfs_sync =             nfs_sync,
138         .vfs_init =             nfs_init,
139         .vfs_uninit =           nfs_uninit
140 };
141 VFS_SET(nfs_vfsops, nfs, VFCF_NETWORK);
142
143 /*
144  * This structure must be filled in by a primary bootstrap or bootstrap
145  * server for a diskless/dataless machine. It is initialized below just
146  * to ensure that it is allocated to initialized data (.data not .bss).
147  */
148 struct nfs_diskless nfs_diskless = { { { 0 } } };
149 struct nfsv3_diskless nfsv3_diskless = { { { 0 } } };
150 int nfs_diskless_valid = 0;
151
152 SYSCTL_INT(_vfs_nfs, OID_AUTO, diskless_valid, CTLFLAG_RD, 
153         &nfs_diskless_valid, 0, "");
154
155 SYSCTL_STRING(_vfs_nfs, OID_AUTO, diskless_rootpath, CTLFLAG_RD,
156         nfsv3_diskless.root_hostnam, 0, "");
157
158 SYSCTL_OPAQUE(_vfs_nfs, OID_AUTO, diskless_rootaddr, CTLFLAG_RD,
159         &nfsv3_diskless.root_saddr, sizeof nfsv3_diskless.root_saddr,
160         "%Ssockaddr_in", "");
161
162 SYSCTL_STRING(_vfs_nfs, OID_AUTO, diskless_swappath, CTLFLAG_RD,
163         nfsv3_diskless.swap_hostnam, 0, "");
164
165 SYSCTL_OPAQUE(_vfs_nfs, OID_AUTO, diskless_swapaddr, CTLFLAG_RD,
166         &nfsv3_diskless.swap_saddr, sizeof nfsv3_diskless.swap_saddr, 
167         "%Ssockaddr_in","");
168
169
170 void nfsargs_ntoh (struct nfs_args *);
171 static int nfs_mountdiskless (char *, char *, int,
172                                   struct sockaddr_in *, struct nfs_args *,
173                                   struct thread *, struct vnode **,
174                                   struct mount **);
175 static void nfs_convert_diskless (void);
176 static void nfs_convert_oargs (struct nfs_args *args,
177                                    struct onfs_args *oargs);
178
179 /*
180  * Calculate the buffer I/O block size to use.  The maximum V2 block size
181  * is typically 8K, the maximum datagram size is typically 16K, and the
182  * maximum V3 block size is typically 32K.  The buffer cache tends to work
183  * best with 16K blocks but we allow 32K for TCP connections.
184  *
185  * We force the block size to be at least a page for buffer cache efficiency.
186  */
187 static
188 int
189 nfs_iosize(int v3, int sotype)
190 {
191         int iosize;
192         int iomax;
193
194         if (v3) {
195                 if (sotype == SOCK_STREAM)
196                         iomax = NFS_MAXDATA;
197                 else
198                         iomax = NFS_MAXDGRAMDATA;
199         } else {
200                 iomax = NFS_V2MAXDATA;
201         }
202         if ((iosize = nfs_io_size) > iomax)
203                 iosize = iomax;
204         if (iosize < PAGE_SIZE)
205                 iosize = PAGE_SIZE;
206
207         /*
208          * This is an aweful hack but until the buffer cache is rewritten
209          * we need it.  The problem is that when you combine write() with
210          * mmap() the vm_page->valid bits can become weird looking
211          * (e.g. 0xfc).  This occurs because NFS uses piecemeal buffers
212          * at the file EOF.  To solve the problem the BIO system needs to
213          * be guarenteed that the NFS iosize for regular files will be a
214          * multiple of PAGE_SIZE so it can invalidate the whole page
215          * rather then just the piece of it owned by the buffer when
216          * NFS does vinvalbuf() calls.
217          */
218         if (iosize & PAGE_MASK)
219                 iosize = (iosize & ~PAGE_MASK) + PAGE_SIZE;
220         return iosize;
221 }
222
223 static void
224 nfs_convert_oargs(args, oargs)
225         struct nfs_args *args;
226         struct onfs_args *oargs;
227 {
228         args->version = NFS_ARGSVERSION;
229         args->addr = oargs->addr;
230         args->addrlen = oargs->addrlen;
231         args->sotype = oargs->sotype;
232         args->proto = oargs->proto;
233         args->fh = oargs->fh;
234         args->fhsize = oargs->fhsize;
235         args->flags = oargs->flags;
236         args->wsize = oargs->wsize;
237         args->rsize = oargs->rsize;
238         args->readdirsize = oargs->readdirsize;
239         args->timeo = oargs->timeo;
240         args->retrans = oargs->retrans;
241         args->maxgrouplist = oargs->maxgrouplist;
242         args->readahead = oargs->readahead;
243         args->leaseterm = oargs->leaseterm;
244         args->deadthresh = oargs->deadthresh;
245         args->hostname = oargs->hostname;
246 }
247
248 static void
249 nfs_convert_diskless()
250 {
251         bcopy(&nfs_diskless.myif, &nfsv3_diskless.myif,
252                 sizeof(struct ifaliasreq));
253         bcopy(&nfs_diskless.mygateway, &nfsv3_diskless.mygateway,
254                 sizeof(struct sockaddr_in));
255         nfs_convert_oargs(&nfsv3_diskless.swap_args,&nfs_diskless.swap_args);
256         nfsv3_diskless.swap_fhsize = NFSX_V2FH;
257         bcopy(nfs_diskless.swap_fh,nfsv3_diskless.swap_fh,NFSX_V2FH);
258         bcopy(&nfs_diskless.swap_saddr,&nfsv3_diskless.swap_saddr,
259                 sizeof(struct sockaddr_in));
260         bcopy(nfs_diskless.swap_hostnam,nfsv3_diskless.swap_hostnam, MNAMELEN);
261         nfsv3_diskless.swap_nblks = nfs_diskless.swap_nblks;
262         bcopy(&nfs_diskless.swap_ucred, &nfsv3_diskless.swap_ucred,
263                 sizeof(struct ucred));
264         nfs_convert_oargs(&nfsv3_diskless.root_args,&nfs_diskless.root_args);
265         nfsv3_diskless.root_fhsize = NFSX_V2FH;
266         bcopy(nfs_diskless.root_fh,nfsv3_diskless.root_fh,NFSX_V2FH);
267         bcopy(&nfs_diskless.root_saddr,&nfsv3_diskless.root_saddr,
268                 sizeof(struct sockaddr_in));
269         bcopy(nfs_diskless.root_hostnam,nfsv3_diskless.root_hostnam, MNAMELEN);
270         nfsv3_diskless.root_time = nfs_diskless.root_time;
271         bcopy(nfs_diskless.my_hostnam,nfsv3_diskless.my_hostnam,
272                 MAXHOSTNAMELEN);
273         nfs_diskless_valid = 3;
274 }
275
276 /*
277  * nfs statfs call
278  */
279 int
280 nfs_statfs(struct mount *mp, struct statfs *sbp, struct thread *td)
281 {
282         struct vnode *vp;
283         struct nfs_statfs *sfp;
284         caddr_t cp;
285         u_int32_t *tl;
286         int32_t t1, t2;
287         caddr_t bpos, dpos, cp2;
288         struct nfsmount *nmp = VFSTONFS(mp);
289         int error = 0, v3 = (nmp->nm_flag & NFSMNT_NFSV3), retattr;
290         struct mbuf *mreq, *mrep, *md, *mb, *mb2;
291         struct ucred *cred;
292         struct nfsnode *np;
293         u_quad_t tquad;
294
295 #ifndef nolint
296         sfp = (struct nfs_statfs *)0;
297 #endif
298         error = nfs_nget(mp, (nfsfh_t *)nmp->nm_fh, nmp->nm_fhsize, &np);
299         if (error)
300                 return (error);
301         vp = NFSTOV(np);
302         cred = crget();
303         cred->cr_ngroups = 1;
304         if (v3 && (nmp->nm_state & NFSSTA_GOTFSINFO) == 0)
305                 (void)nfs_fsinfo(nmp, vp, td);
306         nfsstats.rpccnt[NFSPROC_FSSTAT]++;
307         nfsm_reqhead(vp, NFSPROC_FSSTAT, NFSX_FH(v3));
308         nfsm_fhtom(vp, v3);
309         nfsm_request(vp, NFSPROC_FSSTAT, td, cred);
310         if (v3)
311                 nfsm_postop_attr(vp, retattr, NFS_LATTR_NOSHRINK);
312         if (error) {
313                 if (mrep != NULL)
314                         m_freem(mrep);
315                 goto nfsmout;
316         }
317         nfsm_dissect(sfp, struct nfs_statfs *, NFSX_STATFS(v3));
318         sbp->f_flags = nmp->nm_flag;
319         sbp->f_iosize = nfs_iosize(v3, nmp->nm_sotype);
320
321         if (v3) {
322                 sbp->f_bsize = NFS_FABLKSIZE;
323                 tquad = fxdr_hyper(&sfp->sf_tbytes);
324                 sbp->f_blocks = (long)(tquad / ((u_quad_t)NFS_FABLKSIZE));
325                 tquad = fxdr_hyper(&sfp->sf_fbytes);
326                 sbp->f_bfree = (long)(tquad / ((u_quad_t)NFS_FABLKSIZE));
327                 tquad = fxdr_hyper(&sfp->sf_abytes);
328                 sbp->f_bavail = (long)(tquad / ((u_quad_t)NFS_FABLKSIZE));
329                 sbp->f_files = (fxdr_unsigned(int32_t,
330                     sfp->sf_tfiles.nfsuquad[1]) & 0x7fffffff);
331                 sbp->f_ffree = (fxdr_unsigned(int32_t,
332                     sfp->sf_ffiles.nfsuquad[1]) & 0x7fffffff);
333         } else {
334                 sbp->f_bsize = fxdr_unsigned(int32_t, sfp->sf_bsize);
335                 sbp->f_blocks = fxdr_unsigned(int32_t, sfp->sf_blocks);
336                 sbp->f_bfree = fxdr_unsigned(int32_t, sfp->sf_bfree);
337                 sbp->f_bavail = fxdr_unsigned(int32_t, sfp->sf_bavail);
338                 sbp->f_files = 0;
339                 sbp->f_ffree = 0;
340         }
341         if (sbp != &mp->mnt_stat) {
342                 sbp->f_type = mp->mnt_vfc->vfc_typenum;
343                 bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN);
344         }
345         m_freem(mrep);
346 nfsmout:
347         vput(vp);
348         crfree(cred);
349         return (error);
350 }
351
352 /*
353  * nfs version 3 fsinfo rpc call
354  */
355 int
356 nfs_fsinfo(struct nfsmount *nmp, struct vnode *vp, struct thread *td)
357 {
358         struct nfsv3_fsinfo *fsp;
359         caddr_t cp;
360         int32_t t1, t2;
361         u_int32_t *tl, pref, max;
362         caddr_t bpos, dpos, cp2;
363         int error = 0, retattr;
364         struct mbuf *mreq, *mrep, *md, *mb, *mb2;
365         u_int64_t maxfsize;
366
367         nfsstats.rpccnt[NFSPROC_FSINFO]++;
368         nfsm_reqhead(vp, NFSPROC_FSINFO, NFSX_FH(1));
369         nfsm_fhtom(vp, 1);
370         nfsm_request(vp, NFSPROC_FSINFO, td, nfs_vpcred(vp, ND_READ));
371         nfsm_postop_attr(vp, retattr, NFS_LATTR_NOSHRINK);
372         if (!error) {
373                 nfsm_dissect(fsp, struct nfsv3_fsinfo *, NFSX_V3FSINFO);
374                 pref = fxdr_unsigned(u_int32_t, fsp->fs_wtpref);
375                 if (pref < nmp->nm_wsize && pref >= NFS_FABLKSIZE)
376                         nmp->nm_wsize = (pref + NFS_FABLKSIZE - 1) &
377                                 ~(NFS_FABLKSIZE - 1);
378                 max = fxdr_unsigned(u_int32_t, fsp->fs_wtmax);
379                 if (max < nmp->nm_wsize && max > 0) {
380                         nmp->nm_wsize = max & ~(NFS_FABLKSIZE - 1);
381                         if (nmp->nm_wsize == 0)
382                                 nmp->nm_wsize = max;
383                 }
384                 pref = fxdr_unsigned(u_int32_t, fsp->fs_rtpref);
385                 if (pref < nmp->nm_rsize && pref >= NFS_FABLKSIZE)
386                         nmp->nm_rsize = (pref + NFS_FABLKSIZE - 1) &
387                                 ~(NFS_FABLKSIZE - 1);
388                 max = fxdr_unsigned(u_int32_t, fsp->fs_rtmax);
389                 if (max < nmp->nm_rsize && max > 0) {
390                         nmp->nm_rsize = max & ~(NFS_FABLKSIZE - 1);
391                         if (nmp->nm_rsize == 0)
392                                 nmp->nm_rsize = max;
393                 }
394                 pref = fxdr_unsigned(u_int32_t, fsp->fs_dtpref);
395                 if (pref < nmp->nm_readdirsize && pref >= NFS_DIRBLKSIZ)
396                         nmp->nm_readdirsize = (pref + NFS_DIRBLKSIZ - 1) &
397                                 ~(NFS_DIRBLKSIZ - 1);
398                 if (max < nmp->nm_readdirsize && max > 0) {
399                         nmp->nm_readdirsize = max & ~(NFS_DIRBLKSIZ - 1);
400                         if (nmp->nm_readdirsize == 0)
401                                 nmp->nm_readdirsize = max;
402                 }
403                 maxfsize = fxdr_hyper(&fsp->fs_maxfilesize);
404                 if (maxfsize > 0 && maxfsize < nmp->nm_maxfilesize)
405                         nmp->nm_maxfilesize = maxfsize;
406                 nmp->nm_state |= NFSSTA_GOTFSINFO;
407         }
408         m_freem(mrep);
409 nfsmout:
410         return (error);
411 }
412
413 /*
414  * Mount a remote root fs via. nfs. This depends on the info in the
415  * nfs_diskless structure that has been filled in properly by some primary
416  * bootstrap.
417  * It goes something like this:
418  * - do enough of "ifconfig" by calling ifioctl() so that the system
419  *   can talk to the server
420  * - If nfs_diskless.mygateway is filled in, use that address as
421  *   a default gateway.
422  * - build the rootfs mount point and call mountnfs() to do the rest.
423  */
424 int
425 nfs_mountroot(mp)
426         struct mount *mp;
427 {
428         struct mount  *swap_mp;
429         struct nfsv3_diskless *nd = &nfsv3_diskless;
430         struct socket *so;
431         struct vnode *vp;
432         struct thread *td = curthread;          /* XXX */
433         int error, i;
434         u_long l;
435         char buf[128];
436
437 #if defined(BOOTP_NFSROOT) && defined(BOOTP)
438         bootpc_init();          /* use bootp to get nfs_diskless filled in */
439 #endif
440
441         /*
442          * XXX time must be non-zero when we init the interface or else
443          * the arp code will wedge...
444          */
445         while (mycpu->gd_time_seconds == 0)
446                 tsleep(mycpu, 0, "arpkludge", 10);
447
448         if (nfs_diskless_valid==1) 
449                 nfs_convert_diskless();
450
451         printf("nfs_mountroot: interface %s ip %s\n",
452                 nd->myif.ifra_name, inet_ntoa(((struct sockaddr_in *)&nd->myif.ifra_addr)->sin_addr));
453
454         /*
455          * XXX splnet, so networks will receive...
456          */
457         crit_enter();
458
459 #ifdef notyet
460         /* Set up swap credentials. */
461         proc0.p_ucred->cr_uid = ntohl(nd->swap_ucred.cr_uid);
462         proc0.p_ucred->cr_gid = ntohl(nd->swap_ucred.cr_gid);
463         if ((proc0.p_ucred->cr_ngroups = ntohs(nd->swap_ucred.cr_ngroups)) >
464                 NGROUPS)
465                 proc0.p_ucred->cr_ngroups = NGROUPS;
466         for (i = 0; i < proc0.p_ucred->cr_ngroups; i++)
467             proc0.p_ucred->cr_groups[i] = ntohl(nd->swap_ucred.cr_groups[i]);
468 #endif
469
470         /*
471          * Do enough of ifconfig(8) so that the critical net interface can
472          * talk to the server.
473          */
474         error = socreate(nd->myif.ifra_addr.sa_family, &so, SOCK_DGRAM, 0, td);
475         if (error)
476                 panic("nfs_mountroot: socreate(%04x): %d",
477                         nd->myif.ifra_addr.sa_family, error);
478
479 #if 0 /* XXX Bad idea */
480         /*
481          * We might not have been told the right interface, so we pass
482          * over the first ten interfaces of the same kind, until we get
483          * one of them configured.
484          */
485
486         for (i = strlen(nd->myif.ifra_name) - 1;
487                 nd->myif.ifra_name[i] >= '0' &&
488                 nd->myif.ifra_name[i] <= '9';
489                 nd->myif.ifra_name[i] ++) {
490                 error = ifioctl(so, SIOCAIFADDR, (caddr_t)&nd->myif, td);
491                 if(!error)
492                         break;
493         }
494 #endif
495         error = ifioctl(so, SIOCAIFADDR, (caddr_t)&nd->myif, td);
496         if (error)
497                 panic("nfs_mountroot: SIOCAIFADDR: %d", error);
498         soclose(so);
499
500         /*
501          * If the gateway field is filled in, set it as the default route.
502          */
503         if (nd->mygateway.sin_len != 0) {
504                 struct sockaddr_in mask, sin;
505
506                 bzero((caddr_t)&mask, sizeof(mask));
507                 sin = mask;
508                 sin.sin_family = AF_INET;
509                 sin.sin_len = sizeof(sin);
510                 printf("nfs_mountroot: gateway %s\n",
511                         inet_ntoa(nd->mygateway.sin_addr));
512                 error = rtrequest(RTM_ADD, (struct sockaddr *)&sin,
513                     (struct sockaddr *)&nd->mygateway,
514                     (struct sockaddr *)&mask,
515                     RTF_UP | RTF_GATEWAY, (struct rtentry **)0);
516                 if (error)
517                         printf("nfs_mountroot: unable to set gateway, error %d, continuing anyway\n", error);
518         }
519
520         /*
521          * Create the rootfs mount point.
522          */
523         nd->root_args.fh = nd->root_fh;
524         nd->root_args.fhsize = nd->root_fhsize;
525         l = ntohl(nd->root_saddr.sin_addr.s_addr);
526         snprintf(buf, sizeof(buf), "%ld.%ld.%ld.%ld:%s",
527                 (l >> 24) & 0xff, (l >> 16) & 0xff,
528                 (l >>  8) & 0xff, (l >>  0) & 0xff,nd->root_hostnam);
529         printf("NFS ROOT: %s\n",buf);
530         if ((error = nfs_mountdiskless(buf, "/", MNT_RDONLY,
531             &nd->root_saddr, &nd->root_args, td, &vp, &mp)) != 0) {
532                 if (swap_mp) {
533                         mp->mnt_vfc->vfc_refcount--;
534                         free(swap_mp, M_MOUNT);
535                 }
536                 crit_exit();
537                 return (error);
538         }
539
540         swap_mp = NULL;
541         if (nd->swap_nblks) {
542
543                 /* Convert to DEV_BSIZE instead of Kilobyte */
544                 nd->swap_nblks *= 2;
545
546                 /*
547                  * Create a fake mount point just for the swap vnode so that the
548                  * swap file can be on a different server from the rootfs.
549                  */
550                 nd->swap_args.fh = nd->swap_fh;
551                 nd->swap_args.fhsize = nd->swap_fhsize;
552                 l = ntohl(nd->swap_saddr.sin_addr.s_addr);
553                 snprintf(buf, sizeof(buf), "%ld.%ld.%ld.%ld:%s",
554                         (l >> 24) & 0xff, (l >> 16) & 0xff,
555                         (l >>  8) & 0xff, (l >>  0) & 0xff,nd->swap_hostnam);
556                 printf("NFS SWAP: %s\n",buf);
557                 if ((error = nfs_mountdiskless(buf, "/swap", 0,
558                     &nd->swap_saddr, &nd->swap_args, td, &vp, &swap_mp)) != 0) {
559                         crit_exit();
560                         return (error);
561                 }
562                 vfs_unbusy(swap_mp, td);
563
564                 VTONFS(vp)->n_size = VTONFS(vp)->n_vattr.va_size = 
565                                 nd->swap_nblks * DEV_BSIZE ;
566                 
567                 /*
568                  * Since the swap file is not the root dir of a file system,
569                  * hack it to a regular file.
570                  */
571                 vp->v_type = VREG;
572                 vp->v_flag = 0;
573                 vref(vp);
574                 swaponvp(td, vp, nd->swap_nblks);
575         }
576
577         mp->mnt_flag |= MNT_ROOTFS;
578         mp->mnt_vnodecovered = NULLVP;
579         vfs_unbusy(mp, td);
580
581         /*
582          * This is not really an nfs issue, but it is much easier to
583          * set hostname here and then let the "/etc/rc.xxx" files
584          * mount the right /var based upon its preset value.
585          */
586         bcopy(nd->my_hostnam, hostname, MAXHOSTNAMELEN);
587         hostname[MAXHOSTNAMELEN - 1] = '\0';
588         for (i = 0; i < MAXHOSTNAMELEN; i++)
589                 if (hostname[i] == '\0')
590                         break;
591         inittodr(ntohl(nd->root_time));
592         crit_exit();
593         return (0);
594 }
595
596 /*
597  * Internal version of mount system call for diskless setup.
598  */
599 static int
600 nfs_mountdiskless(char *path, char *which, int mountflag,
601         struct sockaddr_in *sin, struct nfs_args *args, struct thread *td,
602         struct vnode **vpp, struct mount **mpp)
603 {
604         struct mount *mp;
605         struct sockaddr *nam;
606         int error;
607         int didalloc = 0;
608
609         mp = *mpp;
610
611         if (mp == NULL) {
612                 if ((error = vfs_rootmountalloc("nfs", path, &mp)) != 0) {
613                         printf("nfs_mountroot: NFS not configured");
614                         return (error);
615                 }
616                 didalloc = 1;
617         }
618
619         mp->mnt_kern_flag = 0;
620         mp->mnt_flag = mountflag;
621         nam = dup_sockaddr((struct sockaddr *)sin);
622         if ((error = mountnfs(args, mp, nam, which, path, vpp)) != 0) {
623                 printf("nfs_mountroot: mount %s on %s: %d", path, which, error);
624                 mp->mnt_vfc->vfc_refcount--;
625                 vfs_unbusy(mp, td);
626                 if (didalloc)
627                         free(mp, M_MOUNT);
628                 FREE(nam, M_SONAME);
629                 return (error);
630         }
631         *mpp = mp;
632         return (0);
633 }
634
635 static void
636 nfs_decode_args(nmp, argp)
637         struct nfsmount *nmp;
638         struct nfs_args *argp;
639 {
640         int adjsock;
641         int maxio;
642
643         crit_enter();
644         /*
645          * Silently clear NFSMNT_NOCONN if it's a TCP mount, it makes
646          * no sense in that context.
647          */
648         if (argp->sotype == SOCK_STREAM)
649                 nmp->nm_flag &= ~NFSMNT_NOCONN;
650
651         /* Also clear RDIRPLUS if not NFSv3, it crashes some servers */
652         if ((argp->flags & NFSMNT_NFSV3) == 0)
653                 nmp->nm_flag &= ~NFSMNT_RDIRPLUS;
654
655         /* Re-bind if rsrvd port requested and wasn't on one */
656         adjsock = !(nmp->nm_flag & NFSMNT_RESVPORT)
657                   && (argp->flags & NFSMNT_RESVPORT);
658         /* Also re-bind if we're switching to/from a connected UDP socket */
659         adjsock |= ((nmp->nm_flag & NFSMNT_NOCONN) !=
660                     (argp->flags & NFSMNT_NOCONN));
661
662         /* Update flags atomically.  Don't change the lock bits. */
663         nmp->nm_flag = argp->flags | nmp->nm_flag;
664         crit_exit();
665
666         if ((argp->flags & NFSMNT_TIMEO) && argp->timeo > 0) {
667                 nmp->nm_timeo = (argp->timeo * NFS_HZ + 5) / 10;
668                 if (nmp->nm_timeo < NFS_MINTIMEO)
669                         nmp->nm_timeo = NFS_MINTIMEO;
670                 else if (nmp->nm_timeo > NFS_MAXTIMEO)
671                         nmp->nm_timeo = NFS_MAXTIMEO;
672         }
673
674         if ((argp->flags & NFSMNT_RETRANS) && argp->retrans > 1) {
675                 nmp->nm_retry = argp->retrans;
676                 if (nmp->nm_retry > NFS_MAXREXMIT)
677                         nmp->nm_retry = NFS_MAXREXMIT;
678         }
679
680         maxio = nfs_iosize(argp->flags & NFSMNT_NFSV3, argp->sotype);
681
682         if ((argp->flags & NFSMNT_WSIZE) && argp->wsize > 0) {
683                 nmp->nm_wsize = argp->wsize;
684                 /* Round down to multiple of blocksize */
685                 nmp->nm_wsize &= ~(NFS_FABLKSIZE - 1);
686                 if (nmp->nm_wsize <= 0)
687                         nmp->nm_wsize = NFS_FABLKSIZE;
688         }
689         if (nmp->nm_wsize > maxio)
690                 nmp->nm_wsize = maxio;
691         if (nmp->nm_wsize > MAXBSIZE)
692                 nmp->nm_wsize = MAXBSIZE;
693
694         if ((argp->flags & NFSMNT_RSIZE) && argp->rsize > 0) {
695                 nmp->nm_rsize = argp->rsize;
696                 /* Round down to multiple of blocksize */
697                 nmp->nm_rsize &= ~(NFS_FABLKSIZE - 1);
698                 if (nmp->nm_rsize <= 0)
699                         nmp->nm_rsize = NFS_FABLKSIZE;
700         }
701         if (nmp->nm_rsize > maxio)
702                 nmp->nm_rsize = maxio;
703         if (nmp->nm_rsize > MAXBSIZE)
704                 nmp->nm_rsize = MAXBSIZE;
705
706         if ((argp->flags & NFSMNT_READDIRSIZE) && argp->readdirsize > 0) {
707                 nmp->nm_readdirsize = argp->readdirsize;
708         }
709         if (nmp->nm_readdirsize > maxio)
710                 nmp->nm_readdirsize = maxio;
711         if (nmp->nm_readdirsize > nmp->nm_rsize)
712                 nmp->nm_readdirsize = nmp->nm_rsize;
713
714         if ((argp->flags & NFSMNT_ACREGMIN) && argp->acregmin >= 0)
715                 nmp->nm_acregmin = argp->acregmin;
716         else
717                 nmp->nm_acregmin = NFS_MINATTRTIMO;
718         if ((argp->flags & NFSMNT_ACREGMAX) && argp->acregmax >= 0)
719                 nmp->nm_acregmax = argp->acregmax;
720         else
721                 nmp->nm_acregmax = NFS_MAXATTRTIMO;
722         if ((argp->flags & NFSMNT_ACDIRMIN) && argp->acdirmin >= 0)
723                 nmp->nm_acdirmin = argp->acdirmin;
724         else
725                 nmp->nm_acdirmin = NFS_MINDIRATTRTIMO;
726         if ((argp->flags & NFSMNT_ACDIRMAX) && argp->acdirmax >= 0)
727                 nmp->nm_acdirmax = argp->acdirmax;
728         else
729                 nmp->nm_acdirmax = NFS_MAXDIRATTRTIMO;
730         if (nmp->nm_acdirmin > nmp->nm_acdirmax)
731                 nmp->nm_acdirmin = nmp->nm_acdirmax;
732         if (nmp->nm_acregmin > nmp->nm_acregmax)
733                 nmp->nm_acregmin = nmp->nm_acregmax;
734
735         if ((argp->flags & NFSMNT_MAXGRPS) && argp->maxgrouplist >= 0) {
736                 if (argp->maxgrouplist <= NFS_MAXGRPS)
737                         nmp->nm_numgrps = argp->maxgrouplist;
738                 else
739                         nmp->nm_numgrps = NFS_MAXGRPS;
740         }
741         if ((argp->flags & NFSMNT_READAHEAD) && argp->readahead >= 0) {
742                 if (argp->readahead <= NFS_MAXRAHEAD)
743                         nmp->nm_readahead = argp->readahead;
744                 else
745                         nmp->nm_readahead = NFS_MAXRAHEAD;
746         }
747         if ((argp->flags & NFSMNT_LEASETERM) && argp->leaseterm >= 2) {
748                 if (argp->leaseterm <= NQ_MAXLEASE)
749                         nmp->nm_leaseterm = argp->leaseterm;
750                 else
751                         nmp->nm_leaseterm = NQ_MAXLEASE;
752         }
753         if ((argp->flags & NFSMNT_DEADTHRESH) && argp->deadthresh >= 1) {
754                 if (argp->deadthresh <= NQ_NEVERDEAD)
755                         nmp->nm_deadthresh = argp->deadthresh;
756                 else
757                         nmp->nm_deadthresh = NQ_NEVERDEAD;
758         }
759
760         adjsock |= ((nmp->nm_sotype != argp->sotype) ||
761                     (nmp->nm_soproto != argp->proto));
762         nmp->nm_sotype = argp->sotype;
763         nmp->nm_soproto = argp->proto;
764
765         if (nmp->nm_so && adjsock) {
766                 nfs_safedisconnect(nmp);
767                 if (nmp->nm_sotype == SOCK_DGRAM)
768                         while (nfs_connect(nmp, (struct nfsreq *)0)) {
769                                 printf("nfs_args: retrying connect\n");
770                                 (void) tsleep((caddr_t)&lbolt, 0, "nfscon", 0);
771                         }
772         }
773 }
774
775 /*
776  * VFS Operations.
777  *
778  * mount system call
779  * It seems a bit dumb to copyinstr() the host and path here and then
780  * bcopy() them in mountnfs(), but I wanted to detect errors before
781  * doing the sockargs() call because sockargs() allocates an mbuf and
782  * an error after that means that I have to release the mbuf.
783  */
784 /* ARGSUSED */
785 static int
786 nfs_mount(struct mount *mp, char *path, caddr_t data, struct thread *td)
787 {
788         int error;
789         struct nfs_args args;
790         struct sockaddr *nam;
791         struct vnode *vp;
792         char pth[MNAMELEN], hst[MNAMELEN];
793         size_t len;
794         u_char nfh[NFSX_V3FHMAX];
795
796         if (path == NULL) {
797                 nfs_mountroot(mp);
798                 return (0);
799         }
800         error = copyin(data, (caddr_t)&args, sizeof (struct nfs_args));
801         if (error)
802                 return (error);
803         if (args.version != NFS_ARGSVERSION) {
804 #ifdef COMPAT_PRELITE2
805                 /*
806                  * If the argument version is unknown, then assume the
807                  * caller is a pre-lite2 4.4BSD client and convert its
808                  * arguments.
809                  */
810                 struct onfs_args oargs;
811                 error = copyin(data, (caddr_t)&oargs, sizeof (struct onfs_args));
812                 if (error)
813                         return (error);
814                 nfs_convert_oargs(&args,&oargs);
815 #else /* !COMPAT_PRELITE2 */
816                 return (EPROGMISMATCH);
817 #endif /* COMPAT_PRELITE2 */
818         }
819         if (mp->mnt_flag & MNT_UPDATE) {
820                 struct nfsmount *nmp = VFSTONFS(mp);
821
822                 if (nmp == NULL)
823                         return (EIO);
824                 /*
825                  * When doing an update, we can't change from or to
826                  * v3 and/or nqnfs, or change cookie translation
827                  */
828                 args.flags = (args.flags &
829                     ~(NFSMNT_NFSV3|NFSMNT_NQNFS /*|NFSMNT_XLATECOOKIE*/)) |
830                     (nmp->nm_flag &
831                         (NFSMNT_NFSV3|NFSMNT_NQNFS /*|NFSMNT_XLATECOOKIE*/));
832                 nfs_decode_args(nmp, &args);
833                 return (0);
834         }
835
836         /*
837          * Make the nfs_ip_paranoia sysctl serve as the default connection
838          * or no-connection mode for those protocols that support 
839          * no-connection mode (the flag will be cleared later for protocols
840          * that do not support no-connection mode).  This will allow a client
841          * to receive replies from a different IP then the request was
842          * sent to.  Note: default value for nfs_ip_paranoia is 1 (paranoid),
843          * not 0.
844          */
845         if (nfs_ip_paranoia == 0)
846                 args.flags |= NFSMNT_NOCONN;
847         if (args.fhsize < 0 || args.fhsize > NFSX_V3FHMAX)
848                 return (EINVAL);
849         error = copyin((caddr_t)args.fh, (caddr_t)nfh, args.fhsize);
850         if (error)
851                 return (error);
852         error = copyinstr(path, pth, MNAMELEN-1, &len);
853         if (error)
854                 return (error);
855         bzero(&pth[len], MNAMELEN - len);
856         error = copyinstr(args.hostname, hst, MNAMELEN-1, &len);
857         if (error)
858                 return (error);
859         bzero(&hst[len], MNAMELEN - len);
860         /* sockargs() call must be after above copyin() calls */
861         error = getsockaddr(&nam, (caddr_t)args.addr, args.addrlen);
862         if (error)
863                 return (error);
864         args.fh = nfh;
865         error = mountnfs(&args, mp, nam, pth, hst, &vp);
866         return (error);
867 }
868
869 /*
870  * Common code for mount and mountroot
871  */
872 static int
873 mountnfs(struct nfs_args *argp, struct mount *mp, struct sockaddr *nam,
874         char *pth, char *hst, struct vnode **vpp)
875 {
876         struct nfsmount *nmp;
877         struct nfsnode *np;
878         int error;
879
880         if (mp->mnt_flag & MNT_UPDATE) {
881                 nmp = VFSTONFS(mp);
882                 /* update paths, file handles, etc, here        XXX */
883                 FREE(nam, M_SONAME);
884                 return (0);
885         } else {
886                 nmp = zalloc(nfsmount_zone);
887                 bzero((caddr_t)nmp, sizeof (struct nfsmount));
888                 TAILQ_INIT(&nmp->nm_uidlruhead);
889                 TAILQ_INIT(&nmp->nm_bufq);
890                 mp->mnt_data = (qaddr_t)nmp;
891         }
892         vfs_getnewfsid(mp);
893         nmp->nm_mountp = mp;
894         if (argp->flags & NFSMNT_NQNFS)
895                 /*
896                  * We have to set mnt_maxsymlink to a non-zero value so
897                  * that COMPAT_43 routines will know that we are setting
898                  * the d_type field in directories (and can zero it for
899                  * unsuspecting binaries).
900                  */
901                 mp->mnt_maxsymlinklen = 1;
902
903         /*
904          * V2 can only handle 32 bit filesizes.  A 4GB-1 limit may be too
905          * high, depending on whether we end up with negative offsets in
906          * the client or server somewhere.  2GB-1 may be safer.
907          *
908          * For V3, nfs_fsinfo will adjust this as necessary.  Assume maximum
909          * that we can handle until we find out otherwise.
910          * XXX Our "safe" limit on the client is what we can store in our
911          * buffer cache using signed(!) block numbers.
912          */
913         if ((argp->flags & NFSMNT_NFSV3) == 0)
914                 nmp->nm_maxfilesize = 0xffffffffLL;
915         else
916                 nmp->nm_maxfilesize = (u_int64_t)0x80000000 * DEV_BSIZE - 1;
917
918         nmp->nm_timeo = NFS_TIMEO;
919         nmp->nm_retry = NFS_RETRANS;
920         nmp->nm_wsize = nfs_iosize(argp->flags & NFSMNT_NFSV3, argp->sotype);
921         nmp->nm_rsize = nmp->nm_wsize;
922         nmp->nm_readdirsize = NFS_READDIRSIZE;
923         nmp->nm_numgrps = NFS_MAXGRPS;
924         nmp->nm_readahead = NFS_DEFRAHEAD;
925         nmp->nm_leaseterm = NQ_DEFLEASE;
926         nmp->nm_deadthresh = NQ_DEADTHRESH;
927         CIRCLEQ_INIT(&nmp->nm_timerhead);
928         nmp->nm_inprog = NULLVP;
929         nmp->nm_fhsize = argp->fhsize;
930         bcopy((caddr_t)argp->fh, (caddr_t)nmp->nm_fh, argp->fhsize);
931         bcopy(hst, mp->mnt_stat.f_mntfromname, MNAMELEN);
932         nmp->nm_nam = nam;
933         /* Set up the sockets and per-host congestion */
934         nmp->nm_sotype = argp->sotype;
935         nmp->nm_soproto = argp->proto;
936         nmp->nm_cred = crhold(proc0.p_ucred);
937
938         nfs_decode_args(nmp, argp);
939
940         /*
941          * For Connection based sockets (TCP,...) defer the connect until
942          * the first request, in case the server is not responding.
943          */
944         if (nmp->nm_sotype == SOCK_DGRAM &&
945                 (error = nfs_connect(nmp, (struct nfsreq *)0)))
946                 goto bad;
947
948         /*
949          * This is silly, but it has to be set so that vinifod() works.
950          * We do not want to do an nfs_statfs() here since we can get
951          * stuck on a dead server and we are holding a lock on the mount
952          * point.
953          */
954         mp->mnt_stat.f_iosize = 
955                 nfs_iosize(nmp->nm_flag & NFSMNT_NFSV3, nmp->nm_sotype);
956
957         /*
958          * Install vop_ops for our vnops
959          */
960         vfs_add_vnodeops(mp, &mp->mnt_vn_norm_ops, nfsv2_vnodeop_entries);
961         vfs_add_vnodeops(mp, &mp->mnt_vn_spec_ops, nfsv2_specop_entries);
962         vfs_add_vnodeops(mp, &mp->mnt_vn_fifo_ops, nfsv2_fifoop_entries);
963
964         /*
965          * A reference count is needed on the nfsnode representing the
966          * remote root.  If this object is not persistent, then backward
967          * traversals of the mount point (i.e. "..") will not work if
968          * the nfsnode gets flushed out of the cache. Ufs does not have
969          * this problem, because one can identify root inodes by their
970          * number == ROOTINO (2).
971          */
972         error = nfs_nget(mp, (nfsfh_t *)nmp->nm_fh, nmp->nm_fhsize, &np);
973         if (error)
974                 goto bad;
975         *vpp = NFSTOV(np);
976
977         /*
978          * Retrieval of mountpoint attributes is delayed until nfs_rot
979          * or nfs_statfs are first called.  This will happen either when
980          * we first traverse the mount point or if somebody does a df(1).
981          *
982          * NFSSTA_GOTFSINFO is used to flag if we have successfully
983          * retrieved mountpoint attributes.  In the case of NFSv3 we
984          * also flag static fsinfo.
985          */
986         if (*vpp != NULL)
987                 (*vpp)->v_type = VNON;
988
989         /*
990          * Lose the lock but keep the ref.
991          */
992         VOP_UNLOCK(*vpp, 0, curthread);
993
994         return (0);
995 bad:
996         nfs_disconnect(nmp);
997         nfs_free_mount(nmp);
998         FREE(nam, M_SONAME);
999         return (error);
1000 }
1001
1002 /*
1003  * unmount system call
1004  */
1005 static int
1006 nfs_unmount(struct mount *mp, int mntflags, struct thread *td)
1007 {
1008         struct nfsmount *nmp;
1009         int error, flags = 0;
1010
1011         if (mntflags & MNT_FORCE)
1012                 flags |= FORCECLOSE;
1013         nmp = VFSTONFS(mp);
1014         /*
1015          * Goes something like this..
1016          * - Call vflush() to clear out vnodes for this file system
1017          * - Close the socket
1018          * - Free up the data structures
1019          */
1020         /* In the forced case, cancel any outstanding requests. */
1021         if (flags & FORCECLOSE) {
1022                 error = nfs_nmcancelreqs(nmp);
1023                 if (error)
1024                         return (error);
1025         }
1026         /*
1027          * Must handshake with nqnfs_clientd() if it is active.
1028          */
1029         nmp->nm_state |= NFSSTA_DISMINPROG;
1030         while (nmp->nm_inprog != NULLVP)
1031                 (void) tsleep((caddr_t)&lbolt, 0, "nfsdism", 0);
1032
1033         /* We hold 1 extra ref on the root vnode; see comment in mountnfs(). */
1034         error = vflush(mp, 1, flags);
1035         if (error) {
1036                 nmp->nm_state &= ~NFSSTA_DISMINPROG;
1037                 return (error);
1038         }
1039
1040         /*
1041          * We are now committed to the unmount.
1042          * For NQNFS, let the server daemon free the nfsmount structure.
1043          */
1044         if (nmp->nm_flag & (NFSMNT_NQNFS | NFSMNT_KERB))
1045                 nmp->nm_state |= NFSSTA_DISMNT;
1046
1047         nfs_disconnect(nmp);
1048         FREE(nmp->nm_nam, M_SONAME);
1049
1050         if ((nmp->nm_flag & (NFSMNT_NQNFS | NFSMNT_KERB)) == 0)
1051                 nfs_free_mount(nmp);
1052         return (0);
1053 }
1054
1055 void
1056 nfs_free_mount(struct nfsmount *nmp)
1057 {
1058         if (nmp->nm_cred)  {
1059                 crfree(nmp->nm_cred);
1060                 nmp->nm_cred = NULL;
1061         }
1062         zfree(nfsmount_zone, nmp);
1063 }
1064
1065 /*
1066  * Return root of a filesystem
1067  */
1068 static int
1069 nfs_root(mp, vpp)
1070         struct mount *mp;
1071         struct vnode **vpp;
1072 {
1073         struct vnode *vp;
1074         struct nfsmount *nmp;
1075         struct vattr attrs;
1076         struct nfsnode *np;
1077         int error;
1078
1079         nmp = VFSTONFS(mp);
1080         error = nfs_nget(mp, (nfsfh_t *)nmp->nm_fh, nmp->nm_fhsize, &np);
1081         if (error)
1082                 return (error);
1083         vp = NFSTOV(np);
1084
1085         /*
1086          * Get transfer parameters and root vnode attributes
1087          */
1088         if ((nmp->nm_state & NFSSTA_GOTFSINFO) == 0) {
1089             if (nmp->nm_flag & NFSMNT_NFSV3) {
1090                 nfs_fsinfo(nmp, vp, curthread);
1091                 mp->mnt_stat.f_iosize = nfs_iosize(1, nmp->nm_sotype);
1092             } else {
1093                 if ((error = VOP_GETATTR(vp, &attrs, curthread)) == 0)
1094                         nmp->nm_state |= NFSSTA_GOTFSINFO;
1095                 
1096             }
1097         }
1098         if (vp->v_type == VNON)
1099             vp->v_type = VDIR;
1100         vp->v_flag = VROOT;
1101         *vpp = vp;
1102         return (0);
1103 }
1104
1105 extern int syncprt;
1106
1107 struct scaninfo {
1108         int rescan;
1109         thread_t td;
1110         int waitfor;
1111         int allerror;
1112 };
1113
1114 static int nfs_sync_scan1(struct mount *mp, struct vnode *vp, void *data);
1115 static int nfs_sync_scan2(struct mount *mp, struct vnode *vp, void *data);
1116
1117 /*
1118  * Flush out the buffer cache
1119  */
1120 /* ARGSUSED */
1121 static int
1122 nfs_sync(struct mount *mp, int waitfor, struct thread *td)
1123 {
1124         struct scaninfo scaninfo;
1125         int error;
1126
1127         scaninfo.rescan = 0;
1128         scaninfo.td = td;
1129         scaninfo.waitfor = waitfor;
1130         scaninfo.allerror = 0;
1131
1132         /*
1133          * Force stale buffer cache information to be flushed.
1134          */
1135         error = 0;
1136         while (error == 0 && scaninfo.rescan) {
1137                 scaninfo.rescan = 0;
1138                 error = vmntvnodescan(mp, VMSC_GETVP, nfs_sync_scan1,
1139                                         nfs_sync_scan2, &scaninfo);
1140         }
1141         return(error);
1142 }
1143
1144 static
1145 int
1146 nfs_sync_scan1(struct mount *mp, struct vnode *vp, void *data)
1147 {
1148     struct scaninfo *info = data;
1149
1150     if (VOP_ISLOCKED(vp, NULL) || RB_EMPTY(&vp->v_rbdirty_tree))
1151         return(-1);
1152     if (info->waitfor == MNT_LAZY)
1153         return(-1);
1154     return(0);
1155 }
1156
1157 static
1158 int
1159 nfs_sync_scan2(struct mount *mp, struct vnode *vp, void *data)
1160 {
1161     struct scaninfo *info = data;
1162     int error;
1163
1164     error = VOP_FSYNC(vp, info->waitfor, info->td);
1165     if (error)
1166         info->allerror = error;
1167     return(0);
1168 }
1169