nfs.h revision 1.9 1 1.9 cgd /* $NetBSD: nfs.h,v 1.9 1995/12/19 23:07:21 cgd Exp $ */
2 1.4 cgd
3 1.1 mycroft /*
4 1.3 mycroft * Copyright (c) 1989, 1993
5 1.3 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 mycroft *
7 1.1 mycroft * This code is derived from software contributed to Berkeley by
8 1.1 mycroft * Rick Macklem at The University of Guelph.
9 1.1 mycroft *
10 1.1 mycroft * Redistribution and use in source and binary forms, with or without
11 1.1 mycroft * modification, are permitted provided that the following conditions
12 1.1 mycroft * are met:
13 1.1 mycroft * 1. Redistributions of source code must retain the above copyright
14 1.1 mycroft * notice, this list of conditions and the following disclaimer.
15 1.1 mycroft * 2. Redistributions in binary form must reproduce the above copyright
16 1.1 mycroft * notice, this list of conditions and the following disclaimer in the
17 1.1 mycroft * documentation and/or other materials provided with the distribution.
18 1.1 mycroft * 3. All advertising materials mentioning features or use of this software
19 1.1 mycroft * must display the following acknowledgement:
20 1.1 mycroft * This product includes software developed by the University of
21 1.1 mycroft * California, Berkeley and its contributors.
22 1.1 mycroft * 4. Neither the name of the University nor the names of its contributors
23 1.1 mycroft * may be used to endorse or promote products derived from this software
24 1.1 mycroft * without specific prior written permission.
25 1.1 mycroft *
26 1.1 mycroft * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
27 1.1 mycroft * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
28 1.1 mycroft * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
29 1.1 mycroft * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
30 1.1 mycroft * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
31 1.1 mycroft * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
32 1.1 mycroft * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
33 1.1 mycroft * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
34 1.1 mycroft * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
35 1.1 mycroft * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
36 1.1 mycroft * SUCH DAMAGE.
37 1.1 mycroft *
38 1.4 cgd * @(#)nfs.h 8.1 (Berkeley) 6/10/93
39 1.1 mycroft */
40 1.1 mycroft
41 1.1 mycroft /*
42 1.1 mycroft * Tunable constants for nfs
43 1.1 mycroft */
44 1.1 mycroft
45 1.1 mycroft #define NFS_MAXIOVEC 34
46 1.3 mycroft #define NFS_HZ 25 /* Ticks per second for NFS timeouts */
47 1.1 mycroft #define NFS_TIMEO (1*NFS_HZ) /* Default timeout = 1 second */
48 1.3 mycroft #define NFS_MINTIMEO (1*NFS_HZ) /* Min timeout to use */
49 1.1 mycroft #define NFS_MAXTIMEO (60*NFS_HZ) /* Max timeout to backoff to */
50 1.3 mycroft #define NFS_MINIDEMTIMEO (5*NFS_HZ) /* Min timeout for non-idempotent ops*/
51 1.1 mycroft #define NFS_MAXREXMIT 100 /* Stop counting after this many */
52 1.1 mycroft #define NFS_MAXWINDOW 1024 /* Max number of outstanding requests */
53 1.1 mycroft #define NFS_RETRANS 10 /* Num of retrans for soft mounts */
54 1.3 mycroft #define NFS_MAXGRPS 16 /* Max. size of groups list */
55 1.3 mycroft #define NFS_MINATTRTIMO 5 /* Attribute cache timeout in sec */
56 1.3 mycroft #define NFS_MAXATTRTIMO 60
57 1.1 mycroft #define NFS_WSIZE 8192 /* Def. write data size <= 8192 */
58 1.1 mycroft #define NFS_RSIZE 8192 /* Def. read data size <= 8192 */
59 1.3 mycroft #define NFS_DEFRAHEAD 1 /* Def. read ahead # blocks */
60 1.3 mycroft #define NFS_MAXRAHEAD 4 /* Max. read ahead # blocks */
61 1.1 mycroft #define NFS_MAXREADDIR NFS_MAXDATA /* Max. size of directory read */
62 1.3 mycroft #define NFS_MAXUIDHASH 64 /* Max. # of hashed uid entries/mp */
63 1.3 mycroft #define NFS_MAXASYNCDAEMON 20 /* Max. number async_daemons runable */
64 1.1 mycroft #define NFS_DIRBLKSIZ 1024 /* Size of an NFS directory block */
65 1.1 mycroft #define NMOD(a) ((a) % nfs_asyncdaemons)
66 1.1 mycroft
67 1.1 mycroft /*
68 1.3 mycroft * Set the attribute timeout based on how recently the file has been modified.
69 1.3 mycroft */
70 1.3 mycroft #define NFS_ATTRTIMEO(np) \
71 1.3 mycroft ((((np)->n_flag & NMODIFIED) || \
72 1.3 mycroft (time.tv_sec - (np)->n_mtime) / 10 < NFS_MINATTRTIMO) ? NFS_MINATTRTIMO : \
73 1.3 mycroft ((time.tv_sec - (np)->n_mtime) / 10 > NFS_MAXATTRTIMO ? NFS_MAXATTRTIMO : \
74 1.3 mycroft (time.tv_sec - (np)->n_mtime) / 10))
75 1.3 mycroft
76 1.3 mycroft /*
77 1.3 mycroft * Structures for the nfssvc(2) syscall. Not that anyone but nfsd and mount_nfs
78 1.3 mycroft * should ever try and use it.
79 1.3 mycroft */
80 1.3 mycroft struct nfsd_args {
81 1.3 mycroft int sock; /* Socket to serve */
82 1.3 mycroft caddr_t name; /* Client address for connection based sockets */
83 1.3 mycroft int namelen; /* Length of name */
84 1.3 mycroft };
85 1.3 mycroft
86 1.3 mycroft struct nfsd_srvargs {
87 1.3 mycroft struct nfsd *nsd_nfsd; /* Pointer to in kernel nfsd struct */
88 1.3 mycroft uid_t nsd_uid; /* Effective uid mapped to cred */
89 1.9 cgd u_int32_t nsd_haddr; /* Ip address of client */
90 1.3 mycroft struct ucred nsd_cr; /* Cred. uid maps to */
91 1.3 mycroft int nsd_authlen; /* Length of auth string (ret) */
92 1.3 mycroft char *nsd_authstr; /* Auth string (ret) */
93 1.3 mycroft };
94 1.3 mycroft
95 1.3 mycroft struct nfsd_cargs {
96 1.3 mycroft char *ncd_dirp; /* Mount dir path */
97 1.3 mycroft uid_t ncd_authuid; /* Effective uid */
98 1.3 mycroft int ncd_authtype; /* Type of authenticator */
99 1.3 mycroft int ncd_authlen; /* Length of authenticator string */
100 1.3 mycroft char *ncd_authstr; /* Authenticator string */
101 1.3 mycroft };
102 1.3 mycroft
103 1.3 mycroft /*
104 1.3 mycroft * Stats structure
105 1.3 mycroft */
106 1.3 mycroft struct nfsstats {
107 1.3 mycroft int attrcache_hits;
108 1.3 mycroft int attrcache_misses;
109 1.3 mycroft int lookupcache_hits;
110 1.3 mycroft int lookupcache_misses;
111 1.3 mycroft int direofcache_hits;
112 1.3 mycroft int direofcache_misses;
113 1.3 mycroft int biocache_reads;
114 1.3 mycroft int read_bios;
115 1.3 mycroft int read_physios;
116 1.3 mycroft int biocache_writes;
117 1.3 mycroft int write_bios;
118 1.3 mycroft int write_physios;
119 1.3 mycroft int biocache_readlinks;
120 1.3 mycroft int readlink_bios;
121 1.3 mycroft int biocache_readdirs;
122 1.3 mycroft int readdir_bios;
123 1.3 mycroft int rpccnt[NFS_NPROCS];
124 1.3 mycroft int rpcretries;
125 1.3 mycroft int srvrpccnt[NFS_NPROCS];
126 1.3 mycroft int srvrpc_errs;
127 1.3 mycroft int srv_errs;
128 1.3 mycroft int rpcrequests;
129 1.3 mycroft int rpctimeouts;
130 1.3 mycroft int rpcunexpected;
131 1.3 mycroft int rpcinvalid;
132 1.3 mycroft int srvcache_inproghits;
133 1.3 mycroft int srvcache_idemdonehits;
134 1.3 mycroft int srvcache_nonidemdonehits;
135 1.3 mycroft int srvcache_misses;
136 1.3 mycroft int srvnqnfs_leases;
137 1.3 mycroft int srvnqnfs_maxleases;
138 1.3 mycroft int srvnqnfs_getleases;
139 1.3 mycroft };
140 1.3 mycroft
141 1.3 mycroft /*
142 1.3 mycroft * Flags for nfssvc() system call.
143 1.3 mycroft */
144 1.3 mycroft #define NFSSVC_BIOD 0x002
145 1.3 mycroft #define NFSSVC_NFSD 0x004
146 1.3 mycroft #define NFSSVC_ADDSOCK 0x008
147 1.3 mycroft #define NFSSVC_AUTHIN 0x010
148 1.3 mycroft #define NFSSVC_GOTAUTH 0x040
149 1.3 mycroft #define NFSSVC_AUTHINFAIL 0x080
150 1.3 mycroft #define NFSSVC_MNTD 0x100
151 1.3 mycroft
152 1.3 mycroft /*
153 1.1 mycroft * The set of signals the interrupt an I/O in progress for NFSMNT_INT mounts.
154 1.1 mycroft * What should be in this set is open to debate, but I believe that since
155 1.1 mycroft * I/O system calls on ufs are never interrupted by signals the set should
156 1.1 mycroft * be minimal. My reasoning is that many current programs that use signals
157 1.1 mycroft * such as SIGALRM will not expect file I/O system calls to be interrupted
158 1.1 mycroft * by them and break.
159 1.1 mycroft */
160 1.8 jtc #ifdef _KERNEL
161 1.1 mycroft #define NFSINT_SIGMASK (sigmask(SIGINT)|sigmask(SIGTERM)|sigmask(SIGKILL)| \
162 1.1 mycroft sigmask(SIGHUP)|sigmask(SIGQUIT))
163 1.1 mycroft
164 1.1 mycroft /*
165 1.1 mycroft * Socket errors ignored for connectionless sockets??
166 1.1 mycroft * For now, ignore them all
167 1.1 mycroft */
168 1.1 mycroft #define NFSIGNORE_SOERROR(s, e) \
169 1.1 mycroft ((e) != EINTR && (e) != ERESTART && (e) != EWOULDBLOCK && \
170 1.1 mycroft ((s) & PR_CONNREQUIRED) == 0)
171 1.1 mycroft
172 1.1 mycroft /*
173 1.1 mycroft * Nfs outstanding request list element
174 1.1 mycroft */
175 1.1 mycroft struct nfsreq {
176 1.5 mycroft TAILQ_ENTRY(nfsreq) r_chain;
177 1.1 mycroft struct mbuf *r_mreq;
178 1.1 mycroft struct mbuf *r_mrep;
179 1.3 mycroft struct mbuf *r_md;
180 1.3 mycroft caddr_t r_dpos;
181 1.1 mycroft struct nfsmount *r_nmp;
182 1.1 mycroft struct vnode *r_vp;
183 1.9 cgd u_int32_t r_xid;
184 1.3 mycroft int r_flags; /* flags on request, see below */
185 1.3 mycroft int r_retry; /* max retransmission count */
186 1.3 mycroft int r_rexmit; /* current retrans count */
187 1.3 mycroft int r_timer; /* tick counter on reply */
188 1.3 mycroft int r_procnum; /* NFS procedure number */
189 1.3 mycroft int r_rtt; /* RTT for rpc */
190 1.1 mycroft struct proc *r_procp; /* Proc that did I/O system call */
191 1.1 mycroft };
192 1.5 mycroft
193 1.5 mycroft /*
194 1.5 mycroft * Queue head for nfsreq's
195 1.5 mycroft */
196 1.7 mycroft TAILQ_HEAD(, nfsreq) nfs_reqq;
197 1.1 mycroft
198 1.1 mycroft /* Flag values for r_flags */
199 1.1 mycroft #define R_TIMING 0x01 /* timing request (in mntp) */
200 1.1 mycroft #define R_SENT 0x02 /* request has been sent */
201 1.1 mycroft #define R_SOFTTERM 0x04 /* soft mnt, too many retries */
202 1.1 mycroft #define R_INTR 0x08 /* intr mnt, signal pending */
203 1.1 mycroft #define R_SOCKERR 0x10 /* Fatal error on socket */
204 1.1 mycroft #define R_TPRINTFMSG 0x20 /* Did a tprintf msg. */
205 1.1 mycroft #define R_MUSTRESEND 0x40 /* Must resend request */
206 1.3 mycroft #define R_GETONEREP 0x80 /* Probe for one reply only */
207 1.3 mycroft
208 1.3 mycroft struct nfsstats nfsstats;
209 1.1 mycroft
210 1.1 mycroft /*
211 1.3 mycroft * A list of nfssvc_sock structures is maintained with all the sockets
212 1.3 mycroft * that require service by the nfsd.
213 1.3 mycroft * The nfsuid structs hang off of the nfssvc_sock structs in both lru
214 1.3 mycroft * and uid hash lists.
215 1.1 mycroft */
216 1.3 mycroft #define NUIDHASHSIZ 32
217 1.6 mycroft #define NUIDHASH(sock, uid) \
218 1.6 mycroft (&(sock)->ns_uidhashtbl[(uid) & (sock)->ns_uidhash])
219 1.1 mycroft
220 1.1 mycroft /*
221 1.3 mycroft * Network address hash list element
222 1.1 mycroft */
223 1.3 mycroft union nethostaddr {
224 1.9 cgd u_int32_t had_inetaddr;
225 1.3 mycroft struct mbuf *had_nam;
226 1.3 mycroft };
227 1.3 mycroft
228 1.3 mycroft struct nfsuid {
229 1.6 mycroft TAILQ_ENTRY(nfsuid) nu_lru; /* LRU chain */
230 1.6 mycroft LIST_ENTRY(nfsuid) nu_hash; /* Hash list */
231 1.3 mycroft int nu_flag; /* Flags */
232 1.3 mycroft uid_t nu_uid; /* Uid mapped by this entry */
233 1.3 mycroft union nethostaddr nu_haddr; /* Host addr. for dgram sockets */
234 1.3 mycroft struct ucred nu_cr; /* Cred uid mapped to */
235 1.3 mycroft };
236 1.3 mycroft
237 1.3 mycroft #define nu_inetaddr nu_haddr.had_inetaddr
238 1.3 mycroft #define nu_nam nu_haddr.had_nam
239 1.3 mycroft /* Bits for nu_flag */
240 1.3 mycroft #define NU_INETADDR 0x1
241 1.3 mycroft
242 1.3 mycroft struct nfssvc_sock {
243 1.6 mycroft TAILQ_ENTRY(nfssvc_sock) ns_chain; /* List of all nfssvc_sock's */
244 1.7 mycroft TAILQ_HEAD(, nfsuid) ns_uidlruhead;
245 1.7 mycroft LIST_HEAD(, nfsuid) *ns_uidhashtbl;
246 1.6 mycroft u_long ns_uidhash;
247 1.6 mycroft
248 1.3 mycroft int ns_flag;
249 1.9 cgd u_int32_t ns_sref;
250 1.3 mycroft struct file *ns_fp;
251 1.3 mycroft struct socket *ns_so;
252 1.3 mycroft int ns_solock;
253 1.3 mycroft struct mbuf *ns_nam;
254 1.3 mycroft int ns_cc;
255 1.3 mycroft struct mbuf *ns_raw;
256 1.3 mycroft struct mbuf *ns_rawend;
257 1.3 mycroft int ns_reclen;
258 1.3 mycroft struct mbuf *ns_rec;
259 1.3 mycroft struct mbuf *ns_recend;
260 1.3 mycroft int ns_numuids;
261 1.1 mycroft };
262 1.1 mycroft
263 1.3 mycroft /* Bits for "ns_flag" */
264 1.3 mycroft #define SLP_VALID 0x01
265 1.3 mycroft #define SLP_DOREC 0x02
266 1.3 mycroft #define SLP_NEEDQ 0x04
267 1.3 mycroft #define SLP_DISCONN 0x08
268 1.3 mycroft #define SLP_GETSTREAM 0x10
269 1.6 mycroft #define SLP_ALLFLAGS 0xff
270 1.3 mycroft
271 1.7 mycroft TAILQ_HEAD(, nfssvc_sock) nfssvc_sockhead;
272 1.6 mycroft int nfssvc_sockhead_flag;
273 1.6 mycroft #define SLP_INIT 0x01
274 1.6 mycroft #define SLP_WANTINIT 0x02
275 1.3 mycroft
276 1.3 mycroft /*
277 1.3 mycroft * One of these structures is allocated for each nfsd.
278 1.3 mycroft */
279 1.3 mycroft struct nfsd {
280 1.6 mycroft TAILQ_ENTRY(nfsd) nd_chain; /* List of all nfsd's */
281 1.3 mycroft int nd_flag; /* NFSD_ flags */
282 1.3 mycroft struct nfssvc_sock *nd_slp; /* Current socket */
283 1.3 mycroft struct mbuf *nd_nam; /* Client addr for datagram req. */
284 1.3 mycroft struct mbuf *nd_mrep; /* Req. mbuf list */
285 1.3 mycroft struct mbuf *nd_md;
286 1.3 mycroft caddr_t nd_dpos; /* Position in list */
287 1.3 mycroft int nd_procnum; /* RPC procedure number */
288 1.9 cgd u_int32_t nd_retxid; /* RPC xid */
289 1.3 mycroft int nd_repstat; /* Reply status value */
290 1.3 mycroft struct ucred nd_cr; /* Credentials for req. */
291 1.3 mycroft int nd_nqlflag; /* Leasing flag */
292 1.3 mycroft int nd_duration; /* Lease duration */
293 1.3 mycroft int nd_authlen; /* Authenticator len */
294 1.3 mycroft u_char nd_authstr[RPCAUTH_MAXSIZ]; /* Authenticator data */
295 1.3 mycroft struct proc *nd_procp; /* Proc ptr */
296 1.3 mycroft };
297 1.1 mycroft
298 1.6 mycroft /* Bits for "nd_flag" */
299 1.3 mycroft #define NFSD_WAITING 0x01
300 1.6 mycroft #define NFSD_REQINPROG 0x02
301 1.6 mycroft #define NFSD_NEEDAUTH 0x04
302 1.6 mycroft #define NFSD_AUTHFAIL 0x08
303 1.6 mycroft
304 1.7 mycroft TAILQ_HEAD(, nfsd) nfsd_head;
305 1.6 mycroft int nfsd_head_flag;
306 1.6 mycroft #define NFSD_CHECKSLP 0x01
307 1.6 mycroft
308 1.8 jtc #endif /* _KERNEL */
309