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