Remove NQNFS support. The mechanisms are too crude to co-exist with
[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.36 2006/03/27 16:18:39 dillon Exp $
39  */
40
41 #include "opt_bootp.h"
42 #include "opt_nfsroot.h"
43
44 #include <sys/param.h>
45 #include <sys/sockio.h>
46 #include <sys/proc.h>
47 #include <sys/vnode.h>
48 #include <sys/kernel.h>
49 #include <sys/sysctl.h>
50 #include <sys/malloc.h>
51 #include <sys/mount.h>
52 #include <sys/mbuf.h>
53 #include <sys/socket.h>
54 #include <sys/socketvar.h>
55 #include <sys/systm.h>
56
57 #include <vm/vm.h>
58 #include <vm/vm_extern.h>
59 #include <vm/vm_zone.h>
60
61 #include <net/if.h>
62 #include <net/route.h>
63 #include <netinet/in.h>
64
65 #include <sys/thread2.h>
66
67 #include "rpcv2.h"
68 #include "nfsproto.h"
69 #include "nfs.h"
70 #include "nfsmount.h"
71 #include "nfsnode.h"
72 #include "xdr_subs.h"
73 #include "nfsm_subs.h"
74 #include "nfsdiskless.h"
75 #include "nfsmountrpc.h"
76
77 extern int      nfs_mountroot(struct mount *mp);
78 extern void     bootpc_init(void);
79
80 extern int      nfs_ticks;
81 extern struct vnodeopv_entry_desc nfsv2_vnodeop_entries[];
82 extern struct vnodeopv_entry_desc nfsv2_fifoop_entries[];
83 extern struct vnodeopv_entry_desc nfsv2_specop_entries[];
84
85 MALLOC_DEFINE(M_NFSREQ, "NFS req", "NFS request header");
86 MALLOC_DEFINE(M_NFSBIGFH, "NFSV3 bigfh", "NFS version 3 file handle");
87 MALLOC_DEFINE(M_NFSD, "NFS daemon", "Nfs server daemon structure");
88 MALLOC_DEFINE(M_NFSDIROFF, "NFSV3 diroff", "NFS directory offset data");
89 MALLOC_DEFINE(M_NFSRVDESC, "NFSV3 srvdesc", "NFS server socket descriptor");
90 MALLOC_DEFINE(M_NFSUID, "NFS uid", "Nfs uid mapping structure");
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         int i;
252
253         bcopy(&nfs_diskless.myif, &nfsv3_diskless.myif,
254                 sizeof(struct ifaliasreq));
255         bcopy(&nfs_diskless.mygateway, &nfsv3_diskless.mygateway,
256                 sizeof(struct sockaddr_in));
257         nfs_convert_oargs(&nfsv3_diskless.swap_args,&nfs_diskless.swap_args);
258
259         bcopy(nfs_diskless.swap_fh,nfsv3_diskless.swap_fh,NFSX_V2FH);
260         nfsv3_diskless.swap_fhsize = NFSX_V2FH;
261         for (i = NFSX_V2FH - 1; i >= 0; --i) {
262                 if (nfs_diskless.swap_fh[i])
263                         break;
264         }
265         if (i < 0)
266                 nfsv3_diskless.swap_fhsize = 0;
267
268         bcopy(&nfs_diskless.swap_saddr,&nfsv3_diskless.swap_saddr,
269                 sizeof(struct sockaddr_in));
270         bcopy(nfs_diskless.swap_hostnam,nfsv3_diskless.swap_hostnam, MNAMELEN);
271         nfsv3_diskless.swap_nblks = nfs_diskless.swap_nblks;
272         bcopy(&nfs_diskless.swap_ucred, &nfsv3_diskless.swap_ucred,
273                 sizeof(struct ucred));
274         nfs_convert_oargs(&nfsv3_diskless.root_args,&nfs_diskless.root_args);
275
276         bcopy(nfs_diskless.root_fh,nfsv3_diskless.root_fh,NFSX_V2FH);
277         nfsv3_diskless.root_fhsize = NFSX_V2FH;
278         for (i = NFSX_V2FH - 1; i >= 0; --i) {
279                 if (nfs_diskless.root_fh[i])
280                         break;
281         }
282         if (i < 0)
283                 nfsv3_diskless.root_fhsize = 0;
284
285         bcopy(&nfs_diskless.root_saddr,&nfsv3_diskless.root_saddr,
286                 sizeof(struct sockaddr_in));
287         bcopy(nfs_diskless.root_hostnam,nfsv3_diskless.root_hostnam, MNAMELEN);
288         nfsv3_diskless.root_time = nfs_diskless.root_time;
289         bcopy(nfs_diskless.my_hostnam,nfsv3_diskless.my_hostnam,
290                 MAXHOSTNAMELEN);
291         nfs_diskless_valid = 3;
292 }
293
294 /*
295  * nfs statfs call
296  */
297 int
298 nfs_statfs(struct mount *mp, struct statfs *sbp, struct thread *td)
299 {
300         struct vnode *vp;
301         struct nfs_statfs *sfp;
302         caddr_t cp;
303         u_int32_t *tl;
304         int32_t t1, t2;
305         caddr_t bpos, dpos, cp2;
306         struct nfsmount *nmp = VFSTONFS(mp);
307         int error = 0, v3 = (nmp->nm_flag & NFSMNT_NFSV3), retattr;
308         struct mbuf *mreq, *mrep, *md, *mb, *mb2;
309         struct ucred *cred;
310         struct nfsnode *np;
311         u_quad_t tquad;
312
313 #ifndef nolint
314         sfp = (struct nfs_statfs *)0;
315 #endif
316         error = nfs_nget(mp, (nfsfh_t *)nmp->nm_fh, nmp->nm_fhsize, &np);
317         if (error)
318                 return (error);
319         vp = NFSTOV(np);
320         cred = crget();
321         cred->cr_ngroups = 1;
322         if (v3 && (nmp->nm_state & NFSSTA_GOTFSINFO) == 0)
323                 (void)nfs_fsinfo(nmp, vp, td);
324         nfsstats.rpccnt[NFSPROC_FSSTAT]++;
325         nfsm_reqhead(vp, NFSPROC_FSSTAT, NFSX_FH(v3));
326         nfsm_fhtom(vp, v3);
327         nfsm_request(vp, NFSPROC_FSSTAT, td, cred);
328         if (v3)
329                 nfsm_postop_attr(vp, retattr, NFS_LATTR_NOSHRINK);
330         if (error) {
331                 if (mrep != NULL)
332                         m_freem(mrep);
333                 goto nfsmout;
334         }
335         nfsm_dissect(sfp, struct nfs_statfs *, NFSX_STATFS(v3));
336         sbp->f_flags = nmp->nm_flag;
337         sbp->f_iosize = nfs_iosize(v3, nmp->nm_sotype);
338
339         if (v3) {
340                 sbp->f_bsize = NFS_FABLKSIZE;
341                 tquad = fxdr_hyper(&sfp->sf_tbytes);
342                 sbp->f_blocks = (long)(tquad / ((u_quad_t)NFS_FABLKSIZE));
343                 tquad = fxdr_hyper(&sfp->sf_fbytes);
344                 sbp->f_bfree = (long)(tquad / ((u_quad_t)NFS_FABLKSIZE));
345                 tquad = fxdr_hyper(&sfp->sf_abytes);
346                 sbp->f_bavail = (long)(tquad / ((u_quad_t)NFS_FABLKSIZE));
347                 sbp->f_files = (fxdr_unsigned(int32_t,
348                     sfp->sf_tfiles.nfsuquad[1]) & 0x7fffffff);
349                 sbp->f_ffree = (fxdr_unsigned(int32_t,
350                     sfp->sf_ffiles.nfsuquad[1]) & 0x7fffffff);
351         } else {
352                 sbp->f_bsize = fxdr_unsigned(int32_t, sfp->sf_bsize);
353                 sbp->f_blocks = fxdr_unsigned(int32_t, sfp->sf_blocks);
354                 sbp->f_bfree = fxdr_unsigned(int32_t, sfp->sf_bfree);
355                 sbp->f_bavail = fxdr_unsigned(int32_t, sfp->sf_bavail);
356                 sbp->f_files = 0;
357                 sbp->f_ffree = 0;
358         }
359         if (sbp != &mp->mnt_stat) {
360                 sbp->f_type = mp->mnt_vfc->vfc_typenum;
361                 bcopy(mp->mnt_stat.f_mntfromname, sbp->f_mntfromname, MNAMELEN);
362         }
363         m_freem(mrep);
364 nfsmout:
365         vput(vp);
366         crfree(cred);
367         return (error);
368 }
369
370 /*
371  * nfs version 3 fsinfo rpc call
372  */
373 int
374 nfs_fsinfo(struct nfsmount *nmp, struct vnode *vp, struct thread *td)
375 {
376         struct nfsv3_fsinfo *fsp;
377         caddr_t cp;
378         int32_t t1, t2;
379         u_int32_t *tl, pref, max;
380         caddr_t bpos, dpos, cp2;
381         int error = 0, retattr;
382         struct mbuf *mreq, *mrep, *md, *mb, *mb2;
383         u_int64_t maxfsize;
384
385         nfsstats.rpccnt[NFSPROC_FSINFO]++;
386         nfsm_reqhead(vp, NFSPROC_FSINFO, NFSX_FH(1));
387         nfsm_fhtom(vp, 1);
388         nfsm_request(vp, NFSPROC_FSINFO, td, nfs_vpcred(vp, ND_READ));
389         nfsm_postop_attr(vp, retattr, NFS_LATTR_NOSHRINK);
390         if (!error) {
391                 nfsm_dissect(fsp, struct nfsv3_fsinfo *, NFSX_V3FSINFO);
392                 pref = fxdr_unsigned(u_int32_t, fsp->fs_wtpref);
393                 if (pref < nmp->nm_wsize && pref >= NFS_FABLKSIZE)
394                         nmp->nm_wsize = (pref + NFS_FABLKSIZE - 1) &
395                                 ~(NFS_FABLKSIZE - 1);
396                 max = fxdr_unsigned(u_int32_t, fsp->fs_wtmax);
397                 if (max < nmp->nm_wsize && max > 0) {
398                         nmp->nm_wsize = max & ~(NFS_FABLKSIZE - 1);
399                         if (nmp->nm_wsize == 0)
400                                 nmp->nm_wsize = max;
401                 }
402                 pref = fxdr_unsigned(u_int32_t, fsp->fs_rtpref);
403                 if (pref < nmp->nm_rsize && pref >= NFS_FABLKSIZE)
404                         nmp->nm_rsize = (pref + NFS_FABLKSIZE - 1) &
405                                 ~(NFS_FABLKSIZE - 1);
406                 max = fxdr_unsigned(u_int32_t, fsp->fs_rtmax);
407                 if (max < nmp->nm_rsize && max > 0) {
408                         nmp->nm_rsize = max & ~(NFS_FABLKSIZE - 1);
409                         if (nmp->nm_rsize == 0)
410                                 nmp->nm_rsize = max;
411                 }
412                 pref = fxdr_unsigned(u_int32_t, fsp->fs_dtpref);
413                 if (pref < nmp->nm_readdirsize && pref >= NFS_DIRBLKSIZ)
414                         nmp->nm_readdirsize = (pref + NFS_DIRBLKSIZ - 1) &
415                                 ~(NFS_DIRBLKSIZ - 1);
416                 if (max < nmp->nm_readdirsize && max > 0) {
417                         nmp->nm_readdirsize = max & ~(NFS_DIRBLKSIZ - 1);
418                         if (nmp->nm_readdirsize == 0)
419                                 nmp->nm_readdirsize = max;
420                 }
421                 maxfsize = fxdr_hyper(&fsp->fs_maxfilesize);
422                 if (maxfsize > 0 && maxfsize < nmp->nm_maxfilesize)
423                         nmp->nm_maxfilesize = maxfsize;
424                 nmp->nm_state |= NFSSTA_GOTFSINFO;
425         }
426         m_freem(mrep);
427 nfsmout:
428         return (error);
429 }
430
431 /*
432  * Mount a remote root fs via. nfs. This depends on the info in the
433  * nfs_diskless structure that has been filled in properly by some primary
434  * bootstrap.
435  * It goes something like this:
436  * - do enough of "ifconfig" by calling ifioctl() so that the system
437  *   can talk to the server
438  * - If nfs_diskless.mygateway is filled in, use that address as
439  *   a default gateway.
440  * - build the rootfs mount point and call mountnfs() to do the rest.
441  */
442 int
443 nfs_mountroot(mp)
444         struct mount *mp;
445 {
446         struct mount  *swap_mp;
447         struct nfsv3_diskless *nd = &nfsv3_diskless;
448         struct socket *so;
449         struct vnode *vp;
450         struct thread *td = curthread;          /* XXX */
451         int error, i;
452         u_long l;
453         char buf[128];
454
455 #if defined(BOOTP_NFSROOT) && defined(BOOTP)
456         bootpc_init();          /* use bootp to get nfs_diskless filled in */
457 #endif
458
459         /*
460          * XXX time must be non-zero when we init the interface or else
461          * the arp code will wedge...
462          */
463         while (mycpu->gd_time_seconds == 0)
464                 tsleep(mycpu, 0, "arpkludge", 10);
465
466         /*
467          * The boot code may have passed us a diskless structure.
468          */
469         if (nfs_diskless_valid == 1) 
470                 nfs_convert_diskless();
471
472 #define SINP(sockaddr)  ((struct sockaddr_in *)(sockaddr))
473         printf("nfs_mountroot: interface %s ip %s",
474                 nd->myif.ifra_name, 
475                 inet_ntoa(SINP(&nd->myif.ifra_addr)->sin_addr));
476         printf(" bcast %s", 
477                 inet_ntoa(SINP(&nd->myif.ifra_broadaddr)->sin_addr));
478         printf(" mask %s\n", 
479                 inet_ntoa(SINP(&nd->myif.ifra_mask)->sin_addr));
480 #undef SINP
481
482         /*
483          * XXX splnet, so networks will receive...
484          */
485         crit_enter();
486
487         /*
488          * BOOTP does not necessarily have to be compiled into the kernel
489          * for an NFS root to work.  If we inherited the network 
490          * configuration for PXEBOOT then pxe_setup_nfsdiskless() has figured
491          * out our interface for us and all we need to do is ifconfig the
492          * interface.  We only do this if the interface has not already been
493          * ifconfig'd by e.g. BOOTP.
494          */
495         error = socreate(nd->myif.ifra_addr.sa_family, &so, SOCK_DGRAM, 0, td);
496         if (error) {
497                 panic("nfs_mountroot: socreate(%04x): %d",
498                         nd->myif.ifra_addr.sa_family, error);
499         }
500
501         error = ifioctl(so, SIOCAIFADDR, (caddr_t)&nd->myif, td);
502         if (error)
503                 panic("nfs_mountroot: SIOCAIFADDR: %d", error);
504
505         soclose(so);
506
507         /*
508          * If the gateway field is filled in, set it as the default route.
509          */
510         if (nd->mygateway.sin_len != 0) {
511                 struct sockaddr_in mask, sin;
512
513                 bzero((caddr_t)&mask, sizeof(mask));
514                 sin = mask;
515                 sin.sin_family = AF_INET;
516                 sin.sin_len = sizeof(sin);
517                 printf("nfs_mountroot: gateway %s\n",
518                         inet_ntoa(nd->mygateway.sin_addr));
519                 error = rtrequest_global(RTM_ADD, (struct sockaddr *)&sin,
520                                         (struct sockaddr *)&nd->mygateway,
521                                         (struct sockaddr *)&mask,
522                                         RTF_UP | RTF_GATEWAY);
523                 if (error)
524                         printf("nfs_mountroot: unable to set gateway, error %d, continuing anyway\n", error);
525         }
526
527         /*
528          * Create the rootfs mount point.
529          */
530         nd->root_args.fh = nd->root_fh;
531         nd->root_args.fhsize = nd->root_fhsize;
532         l = ntohl(nd->root_saddr.sin_addr.s_addr);
533         snprintf(buf, sizeof(buf), "%ld.%ld.%ld.%ld:%s",
534                 (l >> 24) & 0xff, (l >> 16) & 0xff,
535                 (l >>  8) & 0xff, (l >>  0) & 0xff,nd->root_hostnam);
536         printf("NFS ROOT: %s\n",buf);
537         if ((error = nfs_mountdiskless(buf, "/", MNT_RDONLY,
538             &nd->root_saddr, &nd->root_args, td, &vp, &mp)) != 0) {
539                 if (swap_mp) {
540                         mp->mnt_vfc->vfc_refcount--;
541                         free(swap_mp, M_MOUNT);
542                 }
543                 crit_exit();
544                 return (error);
545         }
546
547         swap_mp = NULL;
548         if (nd->swap_nblks) {
549
550                 /* Convert to DEV_BSIZE instead of Kilobyte */
551                 nd->swap_nblks *= 2;
552
553                 /*
554                  * Create a fake mount point just for the swap vnode so that the
555                  * swap file can be on a different server from the rootfs.
556                  */
557                 nd->swap_args.fh = nd->swap_fh;
558                 nd->swap_args.fhsize = nd->swap_fhsize;
559                 l = ntohl(nd->swap_saddr.sin_addr.s_addr);
560                 snprintf(buf, sizeof(buf), "%ld.%ld.%ld.%ld:%s",
561                         (l >> 24) & 0xff, (l >> 16) & 0xff,
562                         (l >>  8) & 0xff, (l >>  0) & 0xff,nd->swap_hostnam);
563                 printf("NFS SWAP: %s\n",buf);
564                 if ((error = nfs_mountdiskless(buf, "/swap", 0,
565                     &nd->swap_saddr, &nd->swap_args, td, &vp, &swap_mp)) != 0) {
566                         crit_exit();
567                         return (error);
568                 }
569                 vfs_unbusy(swap_mp, td);
570
571                 VTONFS(vp)->n_size = VTONFS(vp)->n_vattr.va_size = 
572                                 nd->swap_nblks * DEV_BSIZE ;
573                 
574                 /*
575                  * Since the swap file is not the root dir of a file system,
576                  * hack it to a regular file.
577                  */
578                 vp->v_type = VREG;
579                 vp->v_flag = 0;
580                 vref(vp);
581                 swaponvp(td, vp, nd->swap_nblks);
582         }
583
584         mp->mnt_flag |= MNT_ROOTFS;
585         mp->mnt_vnodecovered = NULLVP;
586         vfs_unbusy(mp, td);
587
588         /*
589          * This is not really an nfs issue, but it is much easier to
590          * set hostname here and then let the "/etc/rc.xxx" files
591          * mount the right /var based upon its preset value.
592          */
593         bcopy(nd->my_hostnam, hostname, MAXHOSTNAMELEN);
594         hostname[MAXHOSTNAMELEN - 1] = '\0';
595         for (i = 0; i < MAXHOSTNAMELEN; i++)
596                 if (hostname[i] == '\0')
597                         break;
598         inittodr(ntohl(nd->root_time));
599         crit_exit();
600         return (0);
601 }
602
603 /*
604  * Internal version of mount system call for diskless setup.
605  */
606 static int
607 nfs_mountdiskless(char *path, char *which, int mountflag,
608         struct sockaddr_in *sin, struct nfs_args *args, struct thread *td,
609         struct vnode **vpp, struct mount **mpp)
610 {
611         struct mount *mp;
612         struct sockaddr *nam;
613         int didalloc = 0;
614         int error;
615
616         mp = *mpp;
617
618         if (mp == NULL) {
619                 if ((error = vfs_rootmountalloc("nfs", path, &mp)) != 0) {
620                         printf("nfs_mountroot: NFS not configured");
621                         return (error);
622                 }
623                 didalloc = 1;
624         }
625         mp->mnt_kern_flag = 0;
626         mp->mnt_flag = mountflag;
627         nam = dup_sockaddr((struct sockaddr *)sin);
628
629 #if defined(BOOTP) || defined(NFS_ROOT)
630         if (args->fhsize == 0) {
631                 printf("NFS_ROOT: No FH passed from loader, attempting mount rpc...");
632                 args->fhsize = 0;
633                 error = md_mount(sin, which, args->fh, &args->fhsize, args, td);
634                 if (error) {
635                         printf("failed.\n");
636                         goto haderror;
637                 }
638                 printf("success!\n");
639         }
640 #endif
641
642         if ((error = mountnfs(args, mp, nam, which, path, vpp)) != 0) {
643 #if defined(BOOTP) || defined(NFS_ROOT)
644 haderror:
645 #endif
646                 printf("nfs_mountroot: mount %s on %s: %d", path, which, error);
647                 mp->mnt_vfc->vfc_refcount--;
648                 vfs_unbusy(mp, td);
649                 if (didalloc)
650                         free(mp, M_MOUNT);
651                 FREE(nam, M_SONAME);
652                 return (error);
653         }
654         *mpp = mp;
655         return (0);
656 }
657
658 static void
659 nfs_decode_args(nmp, argp)
660         struct nfsmount *nmp;
661         struct nfs_args *argp;
662 {
663         int adjsock;
664         int maxio;
665
666         crit_enter();
667         /*
668          * Silently clear NFSMNT_NOCONN if it's a TCP mount, it makes
669          * no sense in that context.
670          */
671         if (argp->sotype == SOCK_STREAM)
672                 nmp->nm_flag &= ~NFSMNT_NOCONN;
673
674         /* Also clear RDIRPLUS if not NFSv3, it crashes some servers */
675         if ((argp->flags & NFSMNT_NFSV3) == 0)
676                 nmp->nm_flag &= ~NFSMNT_RDIRPLUS;
677
678         /* Re-bind if rsrvd port requested and wasn't on one */
679         adjsock = !(nmp->nm_flag & NFSMNT_RESVPORT)
680                   && (argp->flags & NFSMNT_RESVPORT);
681         /* Also re-bind if we're switching to/from a connected UDP socket */
682         adjsock |= ((nmp->nm_flag & NFSMNT_NOCONN) !=
683                     (argp->flags & NFSMNT_NOCONN));
684
685         /* Update flags atomically.  Don't change the lock bits. */
686         nmp->nm_flag = argp->flags | nmp->nm_flag;
687         crit_exit();
688
689         if ((argp->flags & NFSMNT_TIMEO) && argp->timeo > 0) {
690                 nmp->nm_timeo = (argp->timeo * NFS_HZ + 5) / 10;
691                 if (nmp->nm_timeo < NFS_MINTIMEO)
692                         nmp->nm_timeo = NFS_MINTIMEO;
693                 else if (nmp->nm_timeo > NFS_MAXTIMEO)
694                         nmp->nm_timeo = NFS_MAXTIMEO;
695         }
696
697         if ((argp->flags & NFSMNT_RETRANS) && argp->retrans > 1) {
698                 nmp->nm_retry = argp->retrans;
699                 if (nmp->nm_retry > NFS_MAXREXMIT)
700                         nmp->nm_retry = NFS_MAXREXMIT;
701         }
702
703         maxio = nfs_iosize(argp->flags & NFSMNT_NFSV3, argp->sotype);
704
705         if ((argp->flags & NFSMNT_WSIZE) && argp->wsize > 0) {
706                 nmp->nm_wsize = argp->wsize;
707                 /* Round down to multiple of blocksize */
708                 nmp->nm_wsize &= ~(NFS_FABLKSIZE - 1);
709                 if (nmp->nm_wsize <= 0)
710                         nmp->nm_wsize = NFS_FABLKSIZE;
711         }
712         if (nmp->nm_wsize > maxio)
713                 nmp->nm_wsize = maxio;
714         if (nmp->nm_wsize > MAXBSIZE)
715                 nmp->nm_wsize = MAXBSIZE;
716
717         if ((argp->flags & NFSMNT_RSIZE) && argp->rsize > 0) {
718                 nmp->nm_rsize = argp->rsize;
719                 /* Round down to multiple of blocksize */
720                 nmp->nm_rsize &= ~(NFS_FABLKSIZE - 1);
721                 if (nmp->nm_rsize <= 0)
722                         nmp->nm_rsize = NFS_FABLKSIZE;
723         }
724         if (nmp->nm_rsize > maxio)
725                 nmp->nm_rsize = maxio;
726         if (nmp->nm_rsize > MAXBSIZE)
727                 nmp->nm_rsize = MAXBSIZE;
728
729         if ((argp->flags & NFSMNT_READDIRSIZE) && argp->readdirsize > 0) {
730                 nmp->nm_readdirsize = argp->readdirsize;
731         }
732         if (nmp->nm_readdirsize > maxio)
733                 nmp->nm_readdirsize = maxio;
734         if (nmp->nm_readdirsize > nmp->nm_rsize)
735                 nmp->nm_readdirsize = nmp->nm_rsize;
736
737         if ((argp->flags & NFSMNT_ACREGMIN) && argp->acregmin >= 0)
738                 nmp->nm_acregmin = argp->acregmin;
739         else
740                 nmp->nm_acregmin = NFS_MINATTRTIMO;
741         if ((argp->flags & NFSMNT_ACREGMAX) && argp->acregmax >= 0)
742                 nmp->nm_acregmax = argp->acregmax;
743         else
744                 nmp->nm_acregmax = NFS_MAXATTRTIMO;
745         if ((argp->flags & NFSMNT_ACDIRMIN) && argp->acdirmin >= 0)
746                 nmp->nm_acdirmin = argp->acdirmin;
747         else
748                 nmp->nm_acdirmin = NFS_MINDIRATTRTIMO;
749         if ((argp->flags & NFSMNT_ACDIRMAX) && argp->acdirmax >= 0)
750                 nmp->nm_acdirmax = argp->acdirmax;
751         else
752                 nmp->nm_acdirmax = NFS_MAXDIRATTRTIMO;
753         if (nmp->nm_acdirmin > nmp->nm_acdirmax)
754                 nmp->nm_acdirmin = nmp->nm_acdirmax;
755         if (nmp->nm_acregmin > nmp->nm_acregmax)
756                 nmp->nm_acregmin = nmp->nm_acregmax;
757
758         if ((argp->flags & NFSMNT_MAXGRPS) && argp->maxgrouplist >= 0) {
759                 if (argp->maxgrouplist <= NFS_MAXGRPS)
760                         nmp->nm_numgrps = argp->maxgrouplist;
761                 else
762                         nmp->nm_numgrps = NFS_MAXGRPS;
763         }
764         if ((argp->flags & NFSMNT_READAHEAD) && argp->readahead >= 0) {
765                 if (argp->readahead <= NFS_MAXRAHEAD)
766                         nmp->nm_readahead = argp->readahead;
767                 else
768                         nmp->nm_readahead = NFS_MAXRAHEAD;
769         }
770         if ((argp->flags & NFSMNT_DEADTHRESH) && argp->deadthresh >= 1) {
771                 if (argp->deadthresh <= NFS_NEVERDEAD)
772                         nmp->nm_deadthresh = argp->deadthresh;
773                 else
774                         nmp->nm_deadthresh = NFS_NEVERDEAD;
775         }
776
777         adjsock |= ((nmp->nm_sotype != argp->sotype) ||
778                     (nmp->nm_soproto != argp->proto));
779         nmp->nm_sotype = argp->sotype;
780         nmp->nm_soproto = argp->proto;
781
782         if (nmp->nm_so && adjsock) {
783                 nfs_safedisconnect(nmp);
784                 if (nmp->nm_sotype == SOCK_DGRAM)
785                         while (nfs_connect(nmp, (struct nfsreq *)0)) {
786                                 printf("nfs_args: retrying connect\n");
787                                 (void) tsleep((caddr_t)&lbolt, 0, "nfscon", 0);
788                         }
789         }
790 }
791
792 /*
793  * VFS Operations.
794  *
795  * mount system call
796  * It seems a bit dumb to copyinstr() the host and path here and then
797  * bcopy() them in mountnfs(), but I wanted to detect errors before
798  * doing the sockargs() call because sockargs() allocates an mbuf and
799  * an error after that means that I have to release the mbuf.
800  */
801 /* ARGSUSED */
802 static int
803 nfs_mount(struct mount *mp, char *path, caddr_t data, struct thread *td)
804 {
805         int error;
806         struct nfs_args args;
807         struct sockaddr *nam;
808         struct vnode *vp;
809         char pth[MNAMELEN], hst[MNAMELEN];
810         size_t len;
811         u_char nfh[NFSX_V3FHMAX];
812
813         if (path == NULL) {
814                 nfs_mountroot(mp);
815                 return (0);
816         }
817         error = copyin(data, (caddr_t)&args, sizeof (struct nfs_args));
818         if (error)
819                 return (error);
820         if (args.version != NFS_ARGSVERSION) {
821 #ifdef COMPAT_PRELITE2
822                 /*
823                  * If the argument version is unknown, then assume the
824                  * caller is a pre-lite2 4.4BSD client and convert its
825                  * arguments.
826                  */
827                 struct onfs_args oargs;
828                 error = copyin(data, (caddr_t)&oargs, sizeof (struct onfs_args));
829                 if (error)
830                         return (error);
831                 nfs_convert_oargs(&args,&oargs);
832 #else /* !COMPAT_PRELITE2 */
833                 return (EPROGMISMATCH);
834 #endif /* COMPAT_PRELITE2 */
835         }
836         if (mp->mnt_flag & MNT_UPDATE) {
837                 struct nfsmount *nmp = VFSTONFS(mp);
838
839                 if (nmp == NULL)
840                         return (EIO);
841                 /*
842                  * When doing an update, we can't change from or to
843                  * v3, or change cookie translation
844                  */
845                 args.flags = (args.flags &
846                     ~(NFSMNT_NFSV3/*|NFSMNT_XLATECOOKIE*/)) |
847                     (nmp->nm_flag &
848                         (NFSMNT_NFSV3/*|NFSMNT_XLATECOOKIE*/));
849                 nfs_decode_args(nmp, &args);
850                 return (0);
851         }
852
853         /*
854          * Make the nfs_ip_paranoia sysctl serve as the default connection
855          * or no-connection mode for those protocols that support 
856          * no-connection mode (the flag will be cleared later for protocols
857          * that do not support no-connection mode).  This will allow a client
858          * to receive replies from a different IP then the request was
859          * sent to.  Note: default value for nfs_ip_paranoia is 1 (paranoid),
860          * not 0.
861          */
862         if (nfs_ip_paranoia == 0)
863                 args.flags |= NFSMNT_NOCONN;
864         if (args.fhsize < 0 || args.fhsize > NFSX_V3FHMAX)
865                 return (EINVAL);
866         error = copyin((caddr_t)args.fh, (caddr_t)nfh, args.fhsize);
867         if (error)
868                 return (error);
869         error = copyinstr(path, pth, MNAMELEN-1, &len);
870         if (error)
871                 return (error);
872         bzero(&pth[len], MNAMELEN - len);
873         error = copyinstr(args.hostname, hst, MNAMELEN-1, &len);
874         if (error)
875                 return (error);
876         bzero(&hst[len], MNAMELEN - len);
877         /* sockargs() call must be after above copyin() calls */
878         error = getsockaddr(&nam, (caddr_t)args.addr, args.addrlen);
879         if (error)
880                 return (error);
881         args.fh = nfh;
882         error = mountnfs(&args, mp, nam, pth, hst, &vp);
883         return (error);
884 }
885
886 /*
887  * Common code for mount and mountroot
888  */
889 static int
890 mountnfs(struct nfs_args *argp, struct mount *mp, struct sockaddr *nam,
891         char *pth, char *hst, struct vnode **vpp)
892 {
893         struct nfsmount *nmp;
894         struct nfsnode *np;
895         int error;
896
897         if (mp->mnt_flag & MNT_UPDATE) {
898                 nmp = VFSTONFS(mp);
899                 /* update paths, file handles, etc, here        XXX */
900                 FREE(nam, M_SONAME);
901                 return (0);
902         } else {
903                 nmp = zalloc(nfsmount_zone);
904                 bzero((caddr_t)nmp, sizeof (struct nfsmount));
905                 TAILQ_INIT(&nmp->nm_uidlruhead);
906                 TAILQ_INIT(&nmp->nm_bioq);
907                 mp->mnt_data = (qaddr_t)nmp;
908         }
909         vfs_getnewfsid(mp);
910         nmp->nm_mountp = mp;
911
912         /*
913          * V2 can only handle 32 bit filesizes.  A 4GB-1 limit may be too
914          * high, depending on whether we end up with negative offsets in
915          * the client or server somewhere.  2GB-1 may be safer.
916          *
917          * For V3, nfs_fsinfo will adjust this as necessary.  Assume maximum
918          * that we can handle until we find out otherwise.
919          * XXX Our "safe" limit on the client is what we can store in our
920          * buffer cache using signed(!) block numbers.
921          */
922         if ((argp->flags & NFSMNT_NFSV3) == 0)
923                 nmp->nm_maxfilesize = 0xffffffffLL;
924         else
925                 nmp->nm_maxfilesize = (u_int64_t)0x80000000 * DEV_BSIZE - 1;
926
927         nmp->nm_timeo = NFS_TIMEO;
928         nmp->nm_retry = NFS_RETRANS;
929         nmp->nm_wsize = nfs_iosize(argp->flags & NFSMNT_NFSV3, argp->sotype);
930         nmp->nm_rsize = nmp->nm_wsize;
931         nmp->nm_readdirsize = NFS_READDIRSIZE;
932         nmp->nm_numgrps = NFS_MAXGRPS;
933         nmp->nm_readahead = NFS_DEFRAHEAD;
934         nmp->nm_deadthresh = NFS_DEFDEADTHRESH;
935         nmp->nm_fhsize = argp->fhsize;
936         bcopy((caddr_t)argp->fh, (caddr_t)nmp->nm_fh, argp->fhsize);
937         bcopy(hst, mp->mnt_stat.f_mntfromname, MNAMELEN);
938         nmp->nm_nam = nam;
939         /* Set up the sockets and per-host congestion */
940         nmp->nm_sotype = argp->sotype;
941         nmp->nm_soproto = argp->proto;
942         nmp->nm_cred = crhold(proc0.p_ucred);
943
944         nfs_decode_args(nmp, argp);
945
946         /*
947          * For Connection based sockets (TCP,...) defer the connect until
948          * the first request, in case the server is not responding.
949          */
950         if (nmp->nm_sotype == SOCK_DGRAM &&
951                 (error = nfs_connect(nmp, (struct nfsreq *)0)))
952                 goto bad;
953
954         /*
955          * This is silly, but it has to be set so that vinifod() works.
956          * We do not want to do an nfs_statfs() here since we can get
957          * stuck on a dead server and we are holding a lock on the mount
958          * point.
959          */
960         mp->mnt_stat.f_iosize = 
961                 nfs_iosize(nmp->nm_flag & NFSMNT_NFSV3, nmp->nm_sotype);
962
963         /*
964          * Install vop_ops for our vnops
965          */
966         vfs_add_vnodeops(mp, &mp->mnt_vn_norm_ops, 
967                          nfsv2_vnodeop_entries, 0);
968         vfs_add_vnodeops(mp, &mp->mnt_vn_spec_ops,
969                          nfsv2_specop_entries, 0);
970         vfs_add_vnodeops(mp, &mp->mnt_vn_fifo_ops, 
971                          nfsv2_fifoop_entries, 0);
972
973         /*
974          * A reference count is needed on the nfsnode representing the
975          * remote root.  If this object is not persistent, then backward
976          * traversals of the mount point (i.e. "..") will not work if
977          * the nfsnode gets flushed out of the cache. Ufs does not have
978          * this problem, because one can identify root inodes by their
979          * number == ROOTINO (2).
980          */
981         error = nfs_nget(mp, (nfsfh_t *)nmp->nm_fh, nmp->nm_fhsize, &np);
982         if (error)
983                 goto bad;
984         *vpp = NFSTOV(np);
985
986         /*
987          * Retrieval of mountpoint attributes is delayed until nfs_rot
988          * or nfs_statfs are first called.  This will happen either when
989          * we first traverse the mount point or if somebody does a df(1).
990          *
991          * NFSSTA_GOTFSINFO is used to flag if we have successfully
992          * retrieved mountpoint attributes.  In the case of NFSv3 we
993          * also flag static fsinfo.
994          */
995         if (*vpp != NULL)
996                 (*vpp)->v_type = VNON;
997
998         /*
999          * Lose the lock but keep the ref.
1000          */
1001         VOP_UNLOCK(*vpp, 0, curthread);
1002
1003         return (0);
1004 bad:
1005         nfs_disconnect(nmp);
1006         nfs_free_mount(nmp);
1007         FREE(nam, M_SONAME);
1008         return (error);
1009 }
1010
1011 /*
1012  * unmount system call
1013  */
1014 static int
1015 nfs_unmount(struct mount *mp, int mntflags, struct thread *td)
1016 {
1017         struct nfsmount *nmp;
1018         int error, flags = 0;
1019
1020         if (mntflags & MNT_FORCE)
1021                 flags |= FORCECLOSE;
1022         nmp = VFSTONFS(mp);
1023         /*
1024          * Goes something like this..
1025          * - Call vflush() to clear out vnodes for this file system
1026          * - Close the socket
1027          * - Free up the data structures
1028          */
1029         /* In the forced case, cancel any outstanding requests. */
1030         if (flags & FORCECLOSE) {
1031                 error = nfs_nmcancelreqs(nmp);
1032                 if (error)
1033                         return (error);
1034         }
1035         /*
1036          * Must handshake with nfs_clientd() if it is active. XXX
1037          */
1038         nmp->nm_state |= NFSSTA_DISMINPROG;
1039
1040         /* We hold 1 extra ref on the root vnode; see comment in mountnfs(). */
1041         error = vflush(mp, 1, flags);
1042         if (error) {
1043                 nmp->nm_state &= ~NFSSTA_DISMINPROG;
1044                 return (error);
1045         }
1046
1047         /*
1048          * We are now committed to the unmount.
1049          * For NQNFS, let the server daemon free the nfsmount structure.
1050          */
1051         if (nmp->nm_flag & NFSMNT_KERB)
1052                 nmp->nm_state |= NFSSTA_DISMNT;
1053
1054         nfs_disconnect(nmp);
1055         FREE(nmp->nm_nam, M_SONAME);
1056
1057         if ((nmp->nm_flag & NFSMNT_KERB) == 0)
1058                 nfs_free_mount(nmp);
1059         return (0);
1060 }
1061
1062 void
1063 nfs_free_mount(struct nfsmount *nmp)
1064 {
1065         if (nmp->nm_cred)  {
1066                 crfree(nmp->nm_cred);
1067                 nmp->nm_cred = NULL;
1068         }
1069         zfree(nfsmount_zone, nmp);
1070 }
1071
1072 /*
1073  * Return root of a filesystem
1074  */
1075 static int
1076 nfs_root(mp, vpp)
1077         struct mount *mp;
1078         struct vnode **vpp;
1079 {
1080         struct vnode *vp;
1081         struct nfsmount *nmp;
1082         struct vattr attrs;
1083         struct nfsnode *np;
1084         int error;
1085
1086         nmp = VFSTONFS(mp);
1087         error = nfs_nget(mp, (nfsfh_t *)nmp->nm_fh, nmp->nm_fhsize, &np);
1088         if (error)
1089                 return (error);
1090         vp = NFSTOV(np);
1091
1092         /*
1093          * Get transfer parameters and root vnode attributes
1094          */
1095         if ((nmp->nm_state & NFSSTA_GOTFSINFO) == 0) {
1096             if (nmp->nm_flag & NFSMNT_NFSV3) {
1097                 nfs_fsinfo(nmp, vp, curthread);
1098                 mp->mnt_stat.f_iosize = nfs_iosize(1, nmp->nm_sotype);
1099             } else {
1100                 if ((error = VOP_GETATTR(vp, &attrs, curthread)) == 0)
1101                         nmp->nm_state |= NFSSTA_GOTFSINFO;
1102                 
1103             }
1104         }
1105         if (vp->v_type == VNON)
1106             vp->v_type = VDIR;
1107         vp->v_flag = VROOT;
1108         *vpp = vp;
1109         return (0);
1110 }
1111
1112 extern int syncprt;
1113
1114 struct scaninfo {
1115         int rescan;
1116         thread_t td;
1117         int waitfor;
1118         int allerror;
1119 };
1120
1121 static int nfs_sync_scan1(struct mount *mp, struct vnode *vp, void *data);
1122 static int nfs_sync_scan2(struct mount *mp, struct vnode *vp, void *data);
1123
1124 /*
1125  * Flush out the buffer cache
1126  */
1127 /* ARGSUSED */
1128 static int
1129 nfs_sync(struct mount *mp, int waitfor, struct thread *td)
1130 {
1131         struct scaninfo scaninfo;
1132         int error;
1133
1134         scaninfo.rescan = 0;
1135         scaninfo.td = td;
1136         scaninfo.waitfor = waitfor;
1137         scaninfo.allerror = 0;
1138
1139         /*
1140          * Force stale buffer cache information to be flushed.
1141          */
1142         error = 0;
1143         while (error == 0 && scaninfo.rescan) {
1144                 scaninfo.rescan = 0;
1145                 error = vmntvnodescan(mp, VMSC_GETVP, nfs_sync_scan1,
1146                                         nfs_sync_scan2, &scaninfo);
1147         }
1148         return(error);
1149 }
1150
1151 static
1152 int
1153 nfs_sync_scan1(struct mount *mp, struct vnode *vp, void *data)
1154 {
1155     struct scaninfo *info = data;
1156
1157     if (VOP_ISLOCKED(vp, NULL) || RB_EMPTY(&vp->v_rbdirty_tree))
1158         return(-1);
1159     if (info->waitfor == MNT_LAZY)
1160         return(-1);
1161     return(0);
1162 }
1163
1164 static
1165 int
1166 nfs_sync_scan2(struct mount *mp, struct vnode *vp, void *data)
1167 {
1168     struct scaninfo *info = data;
1169     int error;
1170
1171     error = VOP_FSYNC(vp, info->waitfor, info->td);
1172     if (error)
1173         info->allerror = error;
1174     return(0);
1175 }
1176