xref: /netbsd-src/sys/fs/nfs/common/nfs_common.h (revision 6ca35587140cd9a0531fe714770d4b88eeec3317)
1*6ca35587Sdholland /*	$NetBSD: nfs_common.h,v 1.1.1.1 2013/09/30 07:19:32 dholland Exp $	*/
2*6ca35587Sdholland /*-
3*6ca35587Sdholland  * Copyright (c) 1989, 1993
4*6ca35587Sdholland  *	The Regents of the University of California.  All rights reserved.
5*6ca35587Sdholland  *
6*6ca35587Sdholland  * This code is derived from software contributed to Berkeley by
7*6ca35587Sdholland  * Rick Macklem at The University of Guelph.
8*6ca35587Sdholland  *
9*6ca35587Sdholland  * Redistribution and use in source and binary forms, with or without
10*6ca35587Sdholland  * modification, are permitted provided that the following conditions
11*6ca35587Sdholland  * are met:
12*6ca35587Sdholland  * 1. Redistributions of source code must retain the above copyright
13*6ca35587Sdholland  *    notice, this list of conditions and the following disclaimer.
14*6ca35587Sdholland  * 2. Redistributions in binary form must reproduce the above copyright
15*6ca35587Sdholland  *    notice, this list of conditions and the following disclaimer in the
16*6ca35587Sdholland  *    documentation and/or other materials provided with the distribution.
17*6ca35587Sdholland  * 4. Neither the name of the University nor the names of its contributors
18*6ca35587Sdholland  *    may be used to endorse or promote products derived from this software
19*6ca35587Sdholland  *    without specific prior written permission.
20*6ca35587Sdholland  *
21*6ca35587Sdholland  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22*6ca35587Sdholland  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23*6ca35587Sdholland  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24*6ca35587Sdholland  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25*6ca35587Sdholland  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26*6ca35587Sdholland  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27*6ca35587Sdholland  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28*6ca35587Sdholland  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29*6ca35587Sdholland  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30*6ca35587Sdholland  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31*6ca35587Sdholland  * SUCH DAMAGE.
32*6ca35587Sdholland  *
33*6ca35587Sdholland  *	@(#)nfsm_subs.h	8.2 (Berkeley) 3/30/95
34*6ca35587Sdholland  * FreeBSD: head/sys/nfs/nfs_common.h 245568 2013-01-17 19:03:24Z jhb
35*6ca35587Sdholland  * $NetBSD: nfs_common.h,v 1.1.1.1 2013/09/30 07:19:32 dholland Exp $
36*6ca35587Sdholland  */
37*6ca35587Sdholland 
38*6ca35587Sdholland #ifndef _NFS_NFS_COMMON_H_
39*6ca35587Sdholland #define _NFS_NFS_COMMON_H_
40*6ca35587Sdholland 
41*6ca35587Sdholland extern enum vtype nv3tov_type[];
42*6ca35587Sdholland extern nfstype nfsv3_type[];
43*6ca35587Sdholland 
44*6ca35587Sdholland #define	vtonfsv2_mode(t, m) \
45*6ca35587Sdholland     txdr_unsigned(((t) == VFIFO) ? MAKEIMODE(VCHR, (m)) : MAKEIMODE((t), (m)))
46*6ca35587Sdholland 
47*6ca35587Sdholland #define	nfsv3tov_type(a)	nv3tov_type[fxdr_unsigned(u_int32_t,(a))&0x7]
48*6ca35587Sdholland #define	vtonfsv3_type(a)	txdr_unsigned(nfsv3_type[((int32_t)(a))])
49*6ca35587Sdholland 
50*6ca35587Sdholland int	nfs_adv(struct mbuf **, caddr_t *, int, int);
51*6ca35587Sdholland void	*nfsm_disct(struct mbuf **, caddr_t *, int, int, int);
52*6ca35587Sdholland int	nfs_realign(struct mbuf **, int);
53*6ca35587Sdholland 
54*6ca35587Sdholland /* ****************************** */
55*6ca35587Sdholland /* Build request/reply phase macros */
56*6ca35587Sdholland 
57*6ca35587Sdholland void	*nfsm_build_xx(int s, struct mbuf **mb, caddr_t *bpos);
58*6ca35587Sdholland 
59*6ca35587Sdholland #define	nfsm_build(c, s) \
60*6ca35587Sdholland 	(c)nfsm_build_xx((s), &mb, &bpos)
61*6ca35587Sdholland 
62*6ca35587Sdholland /* ****************************** */
63*6ca35587Sdholland /* Interpretation phase macros */
64*6ca35587Sdholland 
65*6ca35587Sdholland void	*nfsm_dissect_xx(int s, struct mbuf **md, caddr_t *dpos);
66*6ca35587Sdholland void	*nfsm_dissect_xx_nonblock(int s, struct mbuf **md, caddr_t *dpos);
67*6ca35587Sdholland int	nfsm_strsiz_xx(int *s, int m, struct mbuf **md, caddr_t *dpos);
68*6ca35587Sdholland int	nfsm_adv_xx(int s, struct mbuf **md, caddr_t *dpos);
69*6ca35587Sdholland 
70*6ca35587Sdholland /* Error check helpers */
71*6ca35587Sdholland #define nfsm_dcheck(t1, mrep) \
72*6ca35587Sdholland do { \
73*6ca35587Sdholland 	if (t1 != 0) { \
74*6ca35587Sdholland 		error = t1; \
75*6ca35587Sdholland 		m_freem((mrep)); \
76*6ca35587Sdholland 		(mrep) = NULL; \
77*6ca35587Sdholland 		goto nfsmout; \
78*6ca35587Sdholland 	} \
79*6ca35587Sdholland } while (0)
80*6ca35587Sdholland 
81*6ca35587Sdholland #define nfsm_dcheckp(retp, mrep) \
82*6ca35587Sdholland do { \
83*6ca35587Sdholland 	if (retp == NULL) { \
84*6ca35587Sdholland 		error = EBADRPC; \
85*6ca35587Sdholland 		m_freem((mrep)); \
86*6ca35587Sdholland 		(mrep) = NULL; \
87*6ca35587Sdholland 		goto nfsmout; \
88*6ca35587Sdholland 	} \
89*6ca35587Sdholland } while (0)
90*6ca35587Sdholland 
91*6ca35587Sdholland #define	nfsm_dissect(c, s) \
92*6ca35587Sdholland ({ \
93*6ca35587Sdholland 	void *ret; \
94*6ca35587Sdholland 	ret = nfsm_dissect_xx((s), &md, &dpos); \
95*6ca35587Sdholland 	nfsm_dcheckp(ret, mrep); \
96*6ca35587Sdholland 	(c)ret; \
97*6ca35587Sdholland })
98*6ca35587Sdholland 
99*6ca35587Sdholland #define	nfsm_dissect_nonblock(c, s) \
100*6ca35587Sdholland ({ \
101*6ca35587Sdholland 	void *ret; \
102*6ca35587Sdholland 	ret = nfsm_dissect_xx_nonblock((s), &md, &dpos); \
103*6ca35587Sdholland 	nfsm_dcheckp(ret, mrep); \
104*6ca35587Sdholland 	(c)ret; \
105*6ca35587Sdholland })
106*6ca35587Sdholland 
107*6ca35587Sdholland #define	nfsm_strsiz(s,m) \
108*6ca35587Sdholland do { \
109*6ca35587Sdholland 	int t1; \
110*6ca35587Sdholland 	t1 = nfsm_strsiz_xx(&(s), (m), &md, &dpos); \
111*6ca35587Sdholland 	nfsm_dcheck(t1, mrep); \
112*6ca35587Sdholland } while(0)
113*6ca35587Sdholland 
114*6ca35587Sdholland #define nfsm_mtouio(p,s) \
115*6ca35587Sdholland do {\
116*6ca35587Sdholland 	int32_t t1 = 0; \
117*6ca35587Sdholland 	if ((s) > 0) \
118*6ca35587Sdholland 		t1 = nfsm_mbuftouio(&md, (p), (s), &dpos); \
119*6ca35587Sdholland 	nfsm_dcheck(t1, mrep); \
120*6ca35587Sdholland } while (0)
121*6ca35587Sdholland 
122*6ca35587Sdholland #define nfsm_rndup(a)	(((a)+3)&(~0x3))
123*6ca35587Sdholland 
124*6ca35587Sdholland #define	nfsm_adv(s) \
125*6ca35587Sdholland do { \
126*6ca35587Sdholland 	int t1; \
127*6ca35587Sdholland 	t1 = nfsm_adv_xx((s), &md, &dpos); \
128*6ca35587Sdholland 	nfsm_dcheck(t1, mrep); \
129*6ca35587Sdholland } while (0)
130*6ca35587Sdholland 
131*6ca35587Sdholland #ifdef __NO_STRICT_ALIGNMENT
132*6ca35587Sdholland #define nfsm_aligned(p, t)	1
133*6ca35587Sdholland #else
134*6ca35587Sdholland #define nfsm_aligned(p, t)	((((u_long)(p)) & (sizeof(t) - 1)) == 0)
135*6ca35587Sdholland #endif
136*6ca35587Sdholland 
137*6ca35587Sdholland #endif
138