Home | History | Annotate | Line # | Download | only in nfs
nfsmount.h revision 1.6
      1 /*	$NetBSD: nfsmount.h,v 1.6 1994/08/18 22:48:03 mycroft Exp $	*/
      2 
      3 /*
      4  * Copyright (c) 1989, 1993
      5  *	The Regents of the University of California.  All rights reserved.
      6  *
      7  * This code is derived from software contributed to Berkeley by
      8  * Rick Macklem at The University of Guelph.
      9  *
     10  * Redistribution and use in source and binary forms, with or without
     11  * modification, are permitted provided that the following conditions
     12  * are met:
     13  * 1. Redistributions of source code must retain the above copyright
     14  *    notice, this list of conditions and the following disclaimer.
     15  * 2. Redistributions in binary form must reproduce the above copyright
     16  *    notice, this list of conditions and the following disclaimer in the
     17  *    documentation and/or other materials provided with the distribution.
     18  * 3. All advertising materials mentioning features or use of this software
     19  *    must display the following acknowledgement:
     20  *	This product includes software developed by the University of
     21  *	California, Berkeley and its contributors.
     22  * 4. Neither the name of the University nor the names of its contributors
     23  *    may be used to endorse or promote products derived from this software
     24  *    without specific prior written permission.
     25  *
     26  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     27  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     28  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     29  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     30  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     31  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     32  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     33  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     34  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     35  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     36  * SUCH DAMAGE.
     37  *
     38  *	@(#)nfsmount.h	8.1 (Berkeley) 6/10/93
     39  */
     40 
     41 /*
     42  * Mount structure.
     43  * One allocated on every NFS mount.
     44  * Holds NFS specific information for mount.
     45  */
     46 struct	nfsmount {
     47 	int	nm_flag;		/* Flags for soft/hard... */
     48 	struct	mount *nm_mountp;	/* Vfs structure for this filesystem */
     49 	int	nm_numgrps;		/* Max. size of groupslist */
     50 	nfsv2fh_t nm_fh;		/* File handle of root dir */
     51 	struct	socket *nm_so;		/* Rpc socket */
     52 	int	nm_sotype;		/* Type of socket */
     53 	int	nm_soproto;		/* and protocol */
     54 	int	nm_soflags;		/* pr_flags for socket protocol */
     55 	struct	mbuf *nm_nam;		/* Addr of server */
     56 	int	nm_timeo;		/* Init timer for NFSMNT_DUMBTIMR */
     57 	int	nm_retry;		/* Max retries */
     58 	int	nm_srtt[4];		/* Timers for rpcs */
     59 	int	nm_sdrtt[4];
     60 	int	nm_sent;		/* Request send count */
     61 	int	nm_cwnd;		/* Request send window */
     62 	int	nm_timeouts;		/* Request timeouts */
     63 	int	nm_deadthresh;		/* Threshold of timeouts-->dead server*/
     64 	int	nm_rsize;		/* Max size of read rpc */
     65 	int	nm_wsize;		/* Max size of write rpc */
     66 	int	nm_readahead;		/* Num. of blocks to readahead */
     67 	int	nm_leaseterm;		/* Term (sec) for NQNFS lease */
     68 	CIRCLEQ_HEAD(, nfsnode) nm_timerhead; /* Head of lease timer queue */
     69 	struct vnode *nm_inprog;	/* Vnode in prog by nqnfs_clientd() */
     70 	uid_t	nm_authuid;		/* Uid for authenticator */
     71 	int	nm_authtype;		/* Authenticator type */
     72 	int	nm_authlen;		/* and length */
     73 	char	*nm_authstr;		/* Authenticator string */
     74 };
     75 
     76 #ifdef KERNEL
     77 /*
     78  * Convert mount ptr to nfsmount ptr.
     79  */
     80 #define VFSTONFS(mp)	((struct nfsmount *)((mp)->mnt_data))
     81 #endif /* KERNEL */
     82 
     83 /*
     84  * Prototypes for NFS mount operations
     85  */
     86 int	nfs_mount __P((
     87 		struct mount *mp,
     88 		char *path,
     89 		caddr_t data,
     90 		struct nameidata *ndp,
     91 		struct proc *p));
     92 int	nfs_start __P((
     93 		struct mount *mp,
     94 		int flags,
     95 		struct proc *p));
     96 int	nfs_unmount __P((
     97 		struct mount *mp,
     98 		int mntflags,
     99 		struct proc *p));
    100 int	nfs_root __P((
    101 		struct mount *mp,
    102 		struct vnode **vpp));
    103 int	nfs_quotactl __P((
    104 		struct mount *mp,
    105 		int cmds,
    106 		uid_t uid,
    107 		caddr_t arg,
    108 		struct proc *p));
    109 int	nfs_statfs __P((
    110 		struct mount *mp,
    111 		struct statfs *sbp,
    112 		struct proc *p));
    113 int	nfs_sync __P((
    114 		struct mount *mp,
    115 		int waitfor,
    116 		struct ucred *cred,
    117 		struct proc *p));
    118 int	nfs_fhtovp __P((
    119 		struct mount *mp,
    120 		struct fid *fhp,
    121 		struct mbuf *nam,
    122 		struct vnode **vpp,
    123 		int *exflagsp,
    124 		struct ucred **credanonp));
    125 int	nfs_vptofh __P((
    126 		struct vnode *vp,
    127 		struct fid *fhp));
    128 int	nfs_init __P(());
    129