1 /* 2 * Copyright (c) 1989, 1993 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 * @(#)nfsmount.h 8.1 (Berkeley) 6/10/93 37 * $Id: nfsmount.h,v 1.3 1994/08/21 06:50:10 paul Exp $ 38 */ 39 40 #ifndef _NFS_NFSMOUNT_H_ 41 #define _NFS_NFSMOUNT_H_ 42 43 /* 44 * Mount structure. 45 * One allocated on every NFS mount. 46 * Holds NFS specific information for mount. 47 */ 48 struct nfsmount { 49 int nm_flag; /* Flags for soft/hard... */ 50 struct mount *nm_mountp; /* Vfs structure for this filesystem */ 51 int nm_numgrps; /* Max. size of groupslist */ 52 nfsv2fh_t nm_fh; /* File handle of root dir */ 53 struct socket *nm_so; /* Rpc socket */ 54 int nm_sotype; /* Type of socket */ 55 int nm_soproto; /* and protocol */ 56 int nm_soflags; /* pr_flags for socket protocol */ 57 struct mbuf *nm_nam; /* Addr of server */ 58 int nm_timeo; /* Init timer for NFSMNT_DUMBTIMR */ 59 int nm_retry; /* Max retries */ 60 int nm_srtt[4]; /* Timers for rpcs */ 61 int nm_sdrtt[4]; 62 int nm_sent; /* Request send count */ 63 int nm_cwnd; /* Request send window */ 64 int nm_timeouts; /* Request timeouts */ 65 int nm_deadthresh; /* Threshold of timeouts-->dead server*/ 66 int nm_rsize; /* Max size of read rpc */ 67 int nm_wsize; /* Max size of write rpc */ 68 int nm_readahead; /* Num. of blocks to readahead */ 69 int nm_leaseterm; /* Term (sec) for NQNFS lease */ 70 CIRCLEQ_HEAD(, nfsnode) nm_timerhead; /* Head of lease timer queue */ 71 struct vnode *nm_inprog; /* Vnode in prog by nqnfs_clientd() */ 72 uid_t nm_authuid; /* Uid for authenticator */ 73 int nm_authtype; /* Authenticator type */ 74 int nm_authlen; /* and length */ 75 char *nm_authstr; /* Authenticator string */ 76 }; 77 78 #ifdef KERNEL 79 /* 80 * Convert mount ptr to nfsmount ptr. 81 */ 82 #define VFSTONFS(mp) ((struct nfsmount *)((mp)->mnt_data)) 83 #endif /* KERNEL */ 84 85 /* 86 * Prototypes for NFS mount operations 87 */ 88 int nfs_mount __P(( 89 struct mount *mp, 90 char *path, 91 caddr_t data, 92 struct nameidata *ndp, 93 struct proc *p)); 94 int nfs_start __P(( 95 struct mount *mp, 96 int flags, 97 struct proc *p)); 98 int nfs_unmount __P(( 99 struct mount *mp, 100 int mntflags, 101 struct proc *p)); 102 int nfs_root __P(( 103 struct mount *mp, 104 struct vnode **vpp)); 105 int nfs_quotactl __P(( 106 struct mount *mp, 107 int cmds, 108 uid_t uid, 109 caddr_t arg, 110 struct proc *p)); 111 int nfs_statfs __P(( 112 struct mount *mp, 113 struct statfs *sbp, 114 struct proc *p)); 115 int nfs_sync __P(( 116 struct mount *mp, 117 int waitfor, 118 struct ucred *cred, 119 struct proc *p)); 120 int nfs_fhtovp __P(( 121 struct mount *mp, 122 struct fid *fhp, 123 struct mbuf *nam, 124 struct vnode **vpp, 125 int *exflagsp, 126 struct ucred **credanonp)); 127 int nfs_vptofh __P(( 128 struct vnode *vp, 129 struct fid *fhp)); 130 int nfs_init __P(()); 131 132 #endif 133