2 * Copyright (c) 2005-2006 Network Appliance, Inc. All rights reserved.
4 * This software is available to you under a choice of one of two
5 * licenses. You may choose to be licensed under the terms of the GNU
6 * General Public License (GPL) Version 2, available from the file
7 * COPYING in the main directory of this source tree, or the BSD-type
10 * Redistribution and use in source and binary forms, with or without
11 * modification, are permitted provided that the following conditions
14 * Redistributions of source code must retain the above copyright
15 * notice, this list of conditions and the following disclaimer.
17 * Redistributions in binary form must reproduce the above
18 * copyright notice, this list of conditions and the following
19 * disclaimer in the documentation and/or other materials provided
20 * with the distribution.
22 * Neither the name of the Network Appliance, Inc. nor the names of
23 * its contributors may be used to endorse or promote products
24 * derived from this software without specific prior written
27 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
28 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
29 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
30 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
31 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
32 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
33 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
34 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
35 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
36 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
37 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 * Author: Tom Tucker <tom@opengridcomputing.com>
42 #include <linux/sunrpc/xdr.h>
43 #include <linux/sunrpc/debug.h>
44 #include <asm/unaligned.h>
45 #include <linux/sunrpc/rpc_rdma.h>
46 #include <linux/sunrpc/svc_rdma.h>
48 #define RPCDBG_FACILITY RPCDBG_SVCXPRT
51 * Decodes a read chunk list. The expected format is as follows:
53 * position : u32 offset into XDR stream
56 * end-of-list: xdr_zero
58 static u32
*decode_read_list(u32
*va
, u32
*vaend
)
60 struct rpcrdma_read_chunk
*ch
= (struct rpcrdma_read_chunk
*)va
;
62 while (ch
->rc_discrim
!= xdr_zero
) {
63 if (((unsigned long)ch
+ sizeof(struct rpcrdma_read_chunk
)) >
64 (unsigned long)vaend
) {
65 dprintk("svcrdma: vaend=%p, ch=%p\n", vaend
, ch
);
70 return (u32
*)&ch
->rc_position
;
74 * Decodes a write chunk list. The expected format is as follows:
77 * handle : u32 RKEY ---+
78 * length : u32 <len of segment> |
79 * offset : remove va + <count>
83 static u32
*decode_write_list(u32
*va
, u32
*vaend
)
85 unsigned long start
, end
;
88 struct rpcrdma_write_array
*ary
=
89 (struct rpcrdma_write_array
*)va
;
91 /* Check for not write-array */
92 if (ary
->wc_discrim
== xdr_zero
)
93 return (u32
*)&ary
->wc_nchunks
;
95 if ((unsigned long)ary
+ sizeof(struct rpcrdma_write_array
) >
96 (unsigned long)vaend
) {
97 dprintk("svcrdma: ary=%p, vaend=%p\n", ary
, vaend
);
100 nchunks
= ntohl(ary
->wc_nchunks
);
102 start
= (unsigned long)&ary
->wc_array
[0];
103 end
= (unsigned long)vaend
;
105 nchunks
> (SIZE_MAX
- start
) / sizeof(struct rpcrdma_write_chunk
) ||
106 (start
+ (sizeof(struct rpcrdma_write_chunk
) * nchunks
)) > end
) {
107 dprintk("svcrdma: ary=%p, wc_nchunks=%d, vaend=%p\n",
108 ary
, nchunks
, vaend
);
112 * rs_length is the 2nd 4B field in wc_target and taking its
113 * address skips the list terminator
115 return (u32
*)&ary
->wc_array
[nchunks
].wc_target
.rs_length
;
118 static u32
*decode_reply_array(u32
*va
, u32
*vaend
)
120 unsigned long start
, end
;
122 struct rpcrdma_write_array
*ary
=
123 (struct rpcrdma_write_array
*)va
;
125 /* Check for no reply-array */
126 if (ary
->wc_discrim
== xdr_zero
)
127 return (u32
*)&ary
->wc_nchunks
;
129 if ((unsigned long)ary
+ sizeof(struct rpcrdma_write_array
) >
130 (unsigned long)vaend
) {
131 dprintk("svcrdma: ary=%p, vaend=%p\n", ary
, vaend
);
134 nchunks
= ntohl(ary
->wc_nchunks
);
136 start
= (unsigned long)&ary
->wc_array
[0];
137 end
= (unsigned long)vaend
;
139 nchunks
> (SIZE_MAX
- start
) / sizeof(struct rpcrdma_write_chunk
) ||
140 (start
+ (sizeof(struct rpcrdma_write_chunk
) * nchunks
)) > end
) {
141 dprintk("svcrdma: ary=%p, wc_nchunks=%d, vaend=%p\n",
142 ary
, nchunks
, vaend
);
145 return (u32
*)&ary
->wc_array
[nchunks
];
148 int svc_rdma_xdr_decode_req(struct rpcrdma_msg
**rdma_req
,
149 struct svc_rqst
*rqstp
)
151 struct rpcrdma_msg
*rmsgp
= NULL
;
156 rmsgp
= (struct rpcrdma_msg
*)rqstp
->rq_arg
.head
[0].iov_base
;
158 /* Verify that there's enough bytes for header + something */
159 if (rqstp
->rq_arg
.len
<= RPCRDMA_HDRLEN_MIN
) {
160 dprintk("svcrdma: header too short = %d\n",
165 /* Decode the header */
166 rmsgp
->rm_xid
= ntohl(rmsgp
->rm_xid
);
167 rmsgp
->rm_vers
= ntohl(rmsgp
->rm_vers
);
168 rmsgp
->rm_credit
= ntohl(rmsgp
->rm_credit
);
169 rmsgp
->rm_type
= ntohl(rmsgp
->rm_type
);
171 if (rmsgp
->rm_vers
!= RPCRDMA_VERSION
)
174 /* Pull in the extra for the padded case and bump our pointer */
175 if (rmsgp
->rm_type
== RDMA_MSGP
) {
177 rmsgp
->rm_body
.rm_padded
.rm_align
=
178 ntohl(rmsgp
->rm_body
.rm_padded
.rm_align
);
179 rmsgp
->rm_body
.rm_padded
.rm_thresh
=
180 ntohl(rmsgp
->rm_body
.rm_padded
.rm_thresh
);
182 va
= &rmsgp
->rm_body
.rm_padded
.rm_pempty
[4];
183 rqstp
->rq_arg
.head
[0].iov_base
= va
;
184 hdrlen
= (u32
)((unsigned long)va
- (unsigned long)rmsgp
);
185 rqstp
->rq_arg
.head
[0].iov_len
-= hdrlen
;
186 if (hdrlen
> rqstp
->rq_arg
.len
)
191 /* The chunk list may contain either a read chunk list or a write
192 * chunk list and a reply chunk list.
194 va
= &rmsgp
->rm_body
.rm_chunks
[0];
195 vaend
= (u32
*)((unsigned long)rmsgp
+ rqstp
->rq_arg
.len
);
196 va
= decode_read_list(va
, vaend
);
199 va
= decode_write_list(va
, vaend
);
202 va
= decode_reply_array(va
, vaend
);
206 rqstp
->rq_arg
.head
[0].iov_base
= va
;
207 hdr_len
= (unsigned long)va
- (unsigned long)rmsgp
;
208 rqstp
->rq_arg
.head
[0].iov_len
-= hdr_len
;
214 int svc_rdma_xdr_decode_deferred_req(struct svc_rqst
*rqstp
)
216 struct rpcrdma_msg
*rmsgp
= NULL
;
217 struct rpcrdma_read_chunk
*ch
;
218 struct rpcrdma_write_array
*ary
;
222 dprintk("svcrdma: processing deferred RDMA header on rqstp=%p\n",
224 rmsgp
= (struct rpcrdma_msg
*)rqstp
->rq_arg
.head
[0].iov_base
;
226 /* Pull in the extra for the padded case and bump our pointer */
227 if (rmsgp
->rm_type
== RDMA_MSGP
) {
228 va
= &rmsgp
->rm_body
.rm_padded
.rm_pempty
[4];
229 rqstp
->rq_arg
.head
[0].iov_base
= va
;
230 hdrlen
= (u32
)((unsigned long)va
- (unsigned long)rmsgp
);
231 rqstp
->rq_arg
.head
[0].iov_len
-= hdrlen
;
236 * Skip all chunks to find RPC msg. These were previously processed
238 va
= &rmsgp
->rm_body
.rm_chunks
[0];
241 for (ch
= (struct rpcrdma_read_chunk
*)va
;
242 ch
->rc_discrim
!= xdr_zero
; ch
++);
243 va
= (u32
*)&ch
->rc_position
;
245 /* Skip write-list */
246 ary
= (struct rpcrdma_write_array
*)va
;
247 if (ary
->wc_discrim
== xdr_zero
)
248 va
= (u32
*)&ary
->wc_nchunks
;
251 * rs_length is the 2nd 4B field in wc_target and taking its
252 * address skips the list terminator
254 va
= (u32
*)&ary
->wc_array
[ary
->wc_nchunks
].wc_target
.rs_length
;
256 /* Skip reply-array */
257 ary
= (struct rpcrdma_write_array
*)va
;
258 if (ary
->wc_discrim
== xdr_zero
)
259 va
= (u32
*)&ary
->wc_nchunks
;
261 va
= (u32
*)&ary
->wc_array
[ary
->wc_nchunks
];
263 rqstp
->rq_arg
.head
[0].iov_base
= va
;
264 hdrlen
= (unsigned long)va
- (unsigned long)rmsgp
;
265 rqstp
->rq_arg
.head
[0].iov_len
-= hdrlen
;
270 int svc_rdma_xdr_encode_error(struct svcxprt_rdma
*xprt
,
271 struct rpcrdma_msg
*rmsgp
,
272 enum rpcrdma_errcode err
, u32
*va
)
276 *va
++ = htonl(rmsgp
->rm_xid
);
277 *va
++ = htonl(rmsgp
->rm_vers
);
278 *va
++ = htonl(xprt
->sc_max_requests
);
279 *va
++ = htonl(RDMA_ERROR
);
281 if (err
== ERR_VERS
) {
282 *va
++ = htonl(RPCRDMA_VERSION
);
283 *va
++ = htonl(RPCRDMA_VERSION
);
286 return (int)((unsigned long)va
- (unsigned long)startp
);
289 int svc_rdma_xdr_get_reply_hdr_len(struct rpcrdma_msg
*rmsgp
)
291 struct rpcrdma_write_array
*wr_ary
;
293 /* There is no read-list in a reply */
295 /* skip write list */
296 wr_ary
= (struct rpcrdma_write_array
*)
297 &rmsgp
->rm_body
.rm_chunks
[1];
298 if (wr_ary
->wc_discrim
)
299 wr_ary
= (struct rpcrdma_write_array
*)
300 &wr_ary
->wc_array
[ntohl(wr_ary
->wc_nchunks
)].
303 wr_ary
= (struct rpcrdma_write_array
*)
306 /* skip reply array */
307 if (wr_ary
->wc_discrim
)
308 wr_ary
= (struct rpcrdma_write_array
*)
309 &wr_ary
->wc_array
[ntohl(wr_ary
->wc_nchunks
)];
311 wr_ary
= (struct rpcrdma_write_array
*)
314 return (unsigned long) wr_ary
- (unsigned long) rmsgp
;
317 void svc_rdma_xdr_encode_write_list(struct rpcrdma_msg
*rmsgp
, int chunks
)
319 struct rpcrdma_write_array
*ary
;
322 rmsgp
->rm_body
.rm_chunks
[0] = xdr_zero
;
324 /* write-array discrim */
325 ary
= (struct rpcrdma_write_array
*)
326 &rmsgp
->rm_body
.rm_chunks
[1];
327 ary
->wc_discrim
= xdr_one
;
328 ary
->wc_nchunks
= htonl(chunks
);
330 /* write-list terminator */
331 ary
->wc_array
[chunks
].wc_target
.rs_handle
= xdr_zero
;
333 /* reply-array discriminator */
334 ary
->wc_array
[chunks
].wc_target
.rs_length
= xdr_zero
;
337 void svc_rdma_xdr_encode_reply_array(struct rpcrdma_write_array
*ary
,
340 ary
->wc_discrim
= xdr_one
;
341 ary
->wc_nchunks
= htonl(chunks
);
344 void svc_rdma_xdr_encode_array_chunk(struct rpcrdma_write_array
*ary
,
350 struct rpcrdma_segment
*seg
= &ary
->wc_array
[chunk_no
].wc_target
;
351 seg
->rs_handle
= rs_handle
;
352 seg
->rs_offset
= rs_offset
;
353 seg
->rs_length
= htonl(write_len
);
356 void svc_rdma_xdr_encode_reply_header(struct svcxprt_rdma
*xprt
,
357 struct rpcrdma_msg
*rdma_argp
,
358 struct rpcrdma_msg
*rdma_resp
,
359 enum rpcrdma_proc rdma_type
)
361 rdma_resp
->rm_xid
= htonl(rdma_argp
->rm_xid
);
362 rdma_resp
->rm_vers
= htonl(rdma_argp
->rm_vers
);
363 rdma_resp
->rm_credit
= htonl(xprt
->sc_max_requests
);
364 rdma_resp
->rm_type
= htonl(rdma_type
);
366 /* Encode <nul> chunks lists */
367 rdma_resp
->rm_body
.rm_chunks
[0] = xdr_zero
;
368 rdma_resp
->rm_body
.rm_chunks
[1] = xdr_zero
;
369 rdma_resp
->rm_body
.rm_chunks
[2] = xdr_zero
;