2007-12-13 01:13:23 +03:00
/*
2017-06-24 00:17:35 +03:00
* Copyright ( c ) 2016 , 2017 Oracle . All rights reserved .
2014-05-29 00:12:01 +04:00
* Copyright ( c ) 2014 Open Grid Computing , Inc . All rights reserved .
2007-12-13 01:13:23 +03:00
* Copyright ( c ) 2005 - 2006 Network Appliance , Inc . All rights reserved .
*
* This software is available to you under a choice of one of two
* licenses . You may choose to be licensed under the terms of the GNU
* General Public License ( GPL ) Version 2 , available from the file
* COPYING in the main directory of this source tree , or the BSD - type
* license below :
*
* Redistribution and use in source and binary forms , with or without
* modification , are permitted provided that the following conditions
* are met :
*
* Redistributions of source code must retain the above copyright
* notice , this list of conditions and the following disclaimer .
*
* Redistributions in binary form must reproduce the above
* copyright notice , this list of conditions and the following
* disclaimer in the documentation and / or other materials provided
* with the distribution .
*
* Neither the name of the Network Appliance , Inc . nor the names of
* its contributors may be used to endorse or promote products
* derived from this software without specific prior written
* permission .
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
* " AS IS " AND ANY EXPRESS OR IMPLIED WARRANTIES , INCLUDING , BUT NOT
* LIMITED TO , THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
* A PARTICULAR PURPOSE ARE DISCLAIMED . IN NO EVENT SHALL THE COPYRIGHT
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT , INDIRECT , INCIDENTAL ,
* SPECIAL , EXEMPLARY , OR CONSEQUENTIAL DAMAGES ( INCLUDING , BUT NOT
* LIMITED TO , PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES ; LOSS OF USE ,
* DATA , OR PROFITS ; OR BUSINESS INTERRUPTION ) HOWEVER CAUSED AND ON ANY
* THEORY OF LIABILITY , WHETHER IN CONTRACT , STRICT LIABILITY , OR TORT
* ( INCLUDING NEGLIGENCE OR OTHERWISE ) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE , EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE .
*
* Author : Tom Tucker < tom @ opengridcomputing . com >
*/
2017-06-24 00:18:33 +03:00
/* Operation
*
* The main entry point is svc_rdma_recvfrom . This is called from
* svc_recv when the transport indicates there is incoming data to
* be read . " Data Ready " is signaled when an RDMA Receive completes ,
* or when a set of RDMA Reads complete .
*
* An svc_rqst is passed in . This structure contains an array of
* free pages ( rq_pages ) that will contain the incoming RPC message .
*
* Short messages are moved directly into svc_rqst : : rq_arg , and
* the RPC Call is ready to be processed by the Upper Layer .
* svc_rdma_recvfrom returns the length of the RPC Call message ,
* completing the reception of the RPC Call .
*
* However , when an incoming message has Read chunks ,
* svc_rdma_recvfrom must post RDMA Reads to pull the RPC Call ' s
* data payload from the client . svc_rdma_recvfrom sets up the
* RDMA Reads using pages in svc_rqst : : rq_pages , which are
* transferred to an svc_rdma_op_ctxt for the duration of the
* I / O . svc_rdma_recvfrom then returns zero , since the RPC message
* is still not yet ready .
*
* When the Read chunk payloads have become available on the
* server , " Data Ready " is raised again , and svc_recv calls
* svc_rdma_recvfrom again . This second call may use a different
* svc_rqst than the first one , thus any information that needs
* to be preserved across these two calls is kept in an
* svc_rdma_op_ctxt .
*
* The second call to svc_rdma_recvfrom performs final assembly
* of the RPC Call message , using the RDMA Read sink pages kept in
* the svc_rdma_op_ctxt . The xdr_buf is copied from the
* svc_rdma_op_ctxt to the second svc_rqst . The second call returns
* the length of the completed RPC Call message .
*
* Page Management
*
* Pages under I / O must be transferred from the first svc_rqst to an
* svc_rdma_op_ctxt before the first svc_rdma_recvfrom call returns .
*
* The first svc_rqst supplies pages for RDMA Reads . These are moved
* from rqstp : : rq_pages into ctxt : : pages . The consumed elements of
* the rq_pages array are set to NULL and refilled with the first
* svc_rdma_recvfrom call returns .
*
* During the second svc_rdma_recvfrom call , RDMA Read sink pages
* are transferred from the svc_rdma_op_ctxt to the second svc_rqst
* ( see rdma_read_complete ( ) below ) .
*/
2007-12-13 01:13:23 +03:00
# include <asm/unaligned.h>
# include <rdma/ib_verbs.h>
# include <rdma/rdma_cm.h>
2017-06-24 00:18:33 +03:00
# include <linux/spinlock.h>
# include <linux/sunrpc/xdr.h>
# include <linux/sunrpc/debug.h>
# include <linux/sunrpc/rpc_rdma.h>
2007-12-13 01:13:23 +03:00
# include <linux/sunrpc/svc_rdma.h>
# define RPCDBG_FACILITY RPCDBG_SVCXPRT
/*
* Replace the pages in the rq_argpages array with the pages from the SGE in
* the RDMA_RECV completion . The SGL should contain full pages up until the
* last one .
*/
2018-03-21 00:05:20 +03:00
static void svc_rdma_build_arg_xdr ( struct svc_rqst * rqstp ,
struct svc_rdma_op_ctxt * ctxt )
2007-12-13 01:13:23 +03:00
{
struct page * page ;
int sge_no ;
2018-03-21 00:05:20 +03:00
u32 len ;
2007-12-13 01:13:23 +03:00
2018-03-21 00:05:20 +03:00
/* The reply path assumes the Call's transport header resides
* in rqstp - > rq_pages [ 0 ] .
*/
2007-12-13 01:13:23 +03:00
page = ctxt - > pages [ 0 ] ;
put_page ( rqstp - > rq_pages [ 0 ] ) ;
rqstp - > rq_pages [ 0 ] = page ;
/* Set up the XDR head */
rqstp - > rq_arg . head [ 0 ] . iov_base = page_address ( page ) ;
2014-05-29 00:12:01 +04:00
rqstp - > rq_arg . head [ 0 ] . iov_len =
2018-03-21 00:05:20 +03:00
min_t ( size_t , ctxt - > byte_len , ctxt - > sge [ 0 ] . length ) ;
rqstp - > rq_arg . len = ctxt - > byte_len ;
rqstp - > rq_arg . buflen = ctxt - > byte_len ;
2007-12-13 01:13:23 +03:00
/* Compute bytes past head in the SGL */
2018-03-21 00:05:20 +03:00
len = ctxt - > byte_len - rqstp - > rq_arg . head [ 0 ] . iov_len ;
2007-12-13 01:13:23 +03:00
/* If data remains, store it in the pagelist */
2018-03-21 00:05:20 +03:00
rqstp - > rq_arg . page_len = len ;
2007-12-13 01:13:23 +03:00
rqstp - > rq_arg . page_base = 0 ;
2015-01-13 19:03:37 +03:00
2007-12-13 01:13:23 +03:00
sge_no = 1 ;
2018-03-21 00:05:20 +03:00
while ( len & & sge_no < ctxt - > count ) {
2007-12-13 01:13:23 +03:00
page = ctxt - > pages [ sge_no ] ;
put_page ( rqstp - > rq_pages [ sge_no ] ) ;
rqstp - > rq_pages [ sge_no ] = page ;
2018-03-21 00:05:20 +03:00
len - = min_t ( u32 , len , ctxt - > sge [ sge_no ] . length ) ;
2007-12-13 01:13:23 +03:00
sge_no + + ;
}
rqstp - > rq_respages = & rqstp - > rq_pages [ sge_no ] ;
2014-03-26 00:14:57 +04:00
rqstp - > rq_next_page = rqstp - > rq_respages + 1 ;
2007-12-13 01:13:23 +03:00
/* If not all pages were used from the SGL, free the remaining ones */
2018-03-21 00:05:20 +03:00
len = sge_no ;
2007-12-13 01:13:23 +03:00
while ( sge_no < ctxt - > count ) {
page = ctxt - > pages [ sge_no + + ] ;
put_page ( page ) ;
}
2018-03-21 00:05:20 +03:00
ctxt - > count = len ;
2007-12-13 01:13:23 +03:00
/* Set up tail */
rqstp - > rq_arg . tail [ 0 ] . iov_base = NULL ;
rqstp - > rq_arg . tail [ 0 ] . iov_len = 0 ;
}
2017-06-24 00:17:52 +03:00
/* This accommodates the largest possible Write chunk,
* in one segment .
*/
# define MAX_BYTES_WRITE_SEG ((u32)(RPCSVC_MAXPAGES << PAGE_SHIFT))
2017-06-24 00:17:44 +03:00
/* This accommodates the largest possible Position-Zero
* Read chunk or Reply chunk , in one segment .
*/
# define MAX_BYTES_SPECIAL_SEG ((u32)((RPCSVC_MAXPAGES + 2) << PAGE_SHIFT))
/* Sanity check the Read list.
*
* Implementation limits :
* - This implementation supports only one Read chunk .
*
* Sanity checks :
* - Read list does not overflow buffer .
* - Segment size limited by largest NFS data payload .
*
* The segment count is limited to how many segments can
* fit in the transport header without overflowing the
* buffer . That ' s about 40 Read segments for a 1 KB inline
* threshold .
*
* Returns pointer to the following Write list .
*/
static __be32 * xdr_check_read_list ( __be32 * p , const __be32 * end )
2017-06-24 00:17:35 +03:00
{
2017-06-24 00:17:44 +03:00
u32 position ;
bool first ;
2017-06-24 00:17:35 +03:00
2017-06-24 00:17:44 +03:00
first = true ;
2017-06-24 00:17:35 +03:00
while ( * p + + ! = xdr_zero ) {
2017-06-24 00:17:44 +03:00
if ( first ) {
position = be32_to_cpup ( p + + ) ;
first = false ;
} else if ( be32_to_cpup ( p + + ) ! = position ) {
return NULL ;
}
p + + ; /* handle */
if ( be32_to_cpup ( p + + ) > MAX_BYTES_SPECIAL_SEG )
return NULL ;
p + = 2 ; /* offset */
if ( p > end )
2017-06-24 00:17:35 +03:00
return NULL ;
}
return p ;
}
2017-06-24 00:17:52 +03:00
/* The segment count is limited to how many segments can
* fit in the transport header without overflowing the
* buffer . That ' s about 60 Write segments for a 1 KB inline
* threshold .
*/
static __be32 * xdr_check_write_chunk ( __be32 * p , const __be32 * end ,
u32 maxlen )
2017-06-24 00:17:35 +03:00
{
2017-06-24 00:17:52 +03:00
u32 i , segcount ;
segcount = be32_to_cpup ( p + + ) ;
for ( i = 0 ; i < segcount ; i + + ) {
p + + ; /* handle */
if ( be32_to_cpup ( p + + ) > maxlen )
return NULL ;
p + = 2 ; /* offset */
if ( p > end )
return NULL ;
}
return p ;
}
2017-06-24 00:17:35 +03:00
2017-06-24 00:17:52 +03:00
/* Sanity check the Write list.
*
* Implementation limits :
* - This implementation supports only one Write chunk .
*
* Sanity checks :
* - Write list does not overflow buffer .
* - Segment size limited by largest NFS data payload .
*
* Returns pointer to the following Reply chunk .
*/
static __be32 * xdr_check_write_list ( __be32 * p , const __be32 * end )
{
u32 chcount ;
chcount = 0 ;
2017-06-24 00:17:35 +03:00
while ( * p + + ! = xdr_zero ) {
2017-06-24 00:17:52 +03:00
p = xdr_check_write_chunk ( p , end , MAX_BYTES_WRITE_SEG ) ;
if ( ! p )
return NULL ;
if ( chcount + + > 1 )
2017-06-24 00:17:35 +03:00
return NULL ;
}
return p ;
}
2017-06-24 00:18:00 +03:00
/* Sanity check the Reply chunk.
*
* Sanity checks :
* - Reply chunk does not overflow buffer .
* - Segment size limited by largest NFS data payload .
*
* Returns pointer to the following RPC header .
*/
static __be32 * xdr_check_reply_chunk ( __be32 * p , const __be32 * end )
2017-06-24 00:17:35 +03:00
{
if ( * p + + ! = xdr_zero ) {
2017-06-24 00:18:00 +03:00
p = xdr_check_write_chunk ( p , end , MAX_BYTES_SPECIAL_SEG ) ;
if ( ! p )
2017-06-24 00:17:35 +03:00
return NULL ;
}
return p ;
}
/* On entry, xdr->head[0].iov_base points to first byte in the
* RPC - over - RDMA header .
*
* On successful exit , head [ 0 ] points to first byte past the
* RPC - over - RDMA header . For RDMA_MSG , this is the RPC message .
* The length of the RPC - over - RDMA header is returned .
*
* Assumptions :
* - The transport header is entirely contained in the head iovec .
*/
static int svc_rdma_xdr_decode_req ( struct xdr_buf * rq_arg )
{
__be32 * p , * end , * rdma_argp ;
unsigned int hdr_len ;
char * proc ;
/* Verify that there's enough bytes for header + something */
if ( rq_arg - > len < = RPCRDMA_HDRLEN_ERR )
goto out_short ;
rdma_argp = rq_arg - > head [ 0 ] . iov_base ;
if ( * ( rdma_argp + 1 ) ! = rpcrdma_version )
goto out_version ;
switch ( * ( rdma_argp + 3 ) ) {
case rdma_msg :
proc = " RDMA_MSG " ;
break ;
case rdma_nomsg :
proc = " RDMA_NOMSG " ;
break ;
case rdma_done :
goto out_drop ;
case rdma_error :
goto out_drop ;
default :
goto out_proc ;
}
end = ( __be32 * ) ( ( unsigned long ) rdma_argp + rq_arg - > len ) ;
p = xdr_check_read_list ( rdma_argp + 4 , end ) ;
if ( ! p )
goto out_inval ;
p = xdr_check_write_list ( p , end ) ;
if ( ! p )
goto out_inval ;
p = xdr_check_reply_chunk ( p , end ) ;
if ( ! p )
goto out_inval ;
if ( p > end )
goto out_inval ;
rq_arg - > head [ 0 ] . iov_base = p ;
hdr_len = ( unsigned long ) p - ( unsigned long ) rdma_argp ;
rq_arg - > head [ 0 ] . iov_len - = hdr_len ;
2017-06-24 00:18:41 +03:00
rq_arg - > len - = hdr_len ;
2017-06-24 00:17:35 +03:00
dprintk ( " svcrdma: received %s request for XID 0x%08x, hdr_len=%u \n " ,
proc , be32_to_cpup ( rdma_argp ) , hdr_len ) ;
return hdr_len ;
out_short :
dprintk ( " svcrdma: header too short = %d \n " , rq_arg - > len ) ;
return - EINVAL ;
out_version :
dprintk ( " svcrdma: bad xprt version: %u \n " ,
be32_to_cpup ( rdma_argp + 1 ) ) ;
return - EPROTONOSUPPORT ;
out_drop :
dprintk ( " svcrdma: dropping RDMA_DONE/ERROR message \n " ) ;
return 0 ;
out_proc :
dprintk ( " svcrdma: bad rdma procedure (%u) \n " ,
be32_to_cpup ( rdma_argp + 3 ) ) ;
return - EINVAL ;
out_inval :
dprintk ( " svcrdma: failed to parse transport header \n " ) ;
return - EINVAL ;
}
2016-05-04 17:53:39 +03:00
static void rdma_read_complete ( struct svc_rqst * rqstp ,
struct svc_rdma_op_ctxt * head )
2007-12-13 01:13:23 +03:00
{
int page_no ;
/* Copy RPC pages */
for ( page_no = 0 ; page_no < head - > count ; page_no + + ) {
put_page ( rqstp - > rq_pages [ page_no ] ) ;
rqstp - > rq_pages [ page_no ] = head - > pages [ page_no ] ;
}
2015-01-13 19:03:37 +03:00
2007-12-13 01:13:23 +03:00
/* Point rq_arg.pages past header */
2008-05-28 02:03:14 +04:00
rqstp - > rq_arg . pages = & rqstp - > rq_pages [ head - > hdr_count ] ;
2007-12-13 01:13:23 +03:00
rqstp - > rq_arg . page_len = head - > arg . page_len ;
/* rq_respages starts after the last arg page */
2015-10-12 17:53:39 +03:00
rqstp - > rq_respages = & rqstp - > rq_pages [ page_no ] ;
2014-03-26 00:14:57 +04:00
rqstp - > rq_next_page = rqstp - > rq_respages + 1 ;
2007-12-13 01:13:23 +03:00
/* Rebuild rq_arg head and tail. */
rqstp - > rq_arg . head [ 0 ] = head - > arg . head [ 0 ] ;
rqstp - > rq_arg . tail [ 0 ] = head - > arg . tail [ 0 ] ;
rqstp - > rq_arg . len = head - > arg . len ;
rqstp - > rq_arg . buflen = head - > arg . buflen ;
}
2017-04-09 20:06:33 +03:00
static void svc_rdma_send_error ( struct svcxprt_rdma * xprt ,
__be32 * rdma_argp , int status )
{
struct svc_rdma_op_ctxt * ctxt ;
__be32 * p , * err_msgp ;
unsigned int length ;
struct page * page ;
int ret ;
page = alloc_page ( GFP_KERNEL ) ;
if ( ! page )
return ;
err_msgp = page_address ( page ) ;
p = err_msgp ;
* p + + = * rdma_argp ;
* p + + = * ( rdma_argp + 1 ) ;
* p + + = xprt - > sc_fc_credits ;
* p + + = rdma_error ;
if ( status = = - EPROTONOSUPPORT ) {
* p + + = err_vers ;
* p + + = rpcrdma_version ;
* p + + = rpcrdma_version ;
} else {
* p + + = err_chunk ;
}
length = ( unsigned long ) p - ( unsigned long ) err_msgp ;
/* Map transport header; no RPC message payload */
ctxt = svc_rdma_get_context ( xprt ) ;
ret = svc_rdma_map_reply_hdr ( xprt , ctxt , err_msgp , length ) ;
if ( ret ) {
dprintk ( " svcrdma: Error %d mapping send for protocol error \n " ,
ret ) ;
return ;
}
ret = svc_rdma_post_send_wr ( xprt , ctxt , 1 , 0 ) ;
if ( ret ) {
dprintk ( " svcrdma: Error %d posting send for protocol error \n " ,
ret ) ;
svc_rdma_unmap_dma ( ctxt ) ;
svc_rdma_put_context ( ctxt , 1 ) ;
}
}
2016-01-07 22:50:10 +03:00
/* By convention, backchannel calls arrive via rdma_msg type
* messages , and never populate the chunk lists . This makes
* the RPC / RDMA header small and fixed in size , so it is
* straightforward to check the RPC header ' s direction field .
*/
2017-04-09 20:06:49 +03:00
static bool svc_rdma_is_backchannel_reply ( struct svc_xprt * xprt ,
__be32 * rdma_resp )
2016-01-07 22:50:10 +03:00
{
2017-04-09 20:06:49 +03:00
__be32 * p ;
2016-01-07 22:50:10 +03:00
if ( ! xprt - > xpt_bc_xprt )
return false ;
2017-04-09 20:06:49 +03:00
p = rdma_resp + 3 ;
if ( * p + + ! = rdma_msg )
2016-01-07 22:50:10 +03:00
return false ;
2017-04-09 20:06:49 +03:00
if ( * p + + ! = xdr_zero )
2016-01-07 22:50:10 +03:00
return false ;
2017-04-09 20:06:49 +03:00
if ( * p + + ! = xdr_zero )
2016-01-07 22:50:10 +03:00
return false ;
2017-04-09 20:06:49 +03:00
if ( * p + + ! = xdr_zero )
2016-01-07 22:50:10 +03:00
return false ;
2017-04-09 20:06:49 +03:00
/* XID sanity */
if ( * p + + ! = * rdma_resp )
2016-01-07 22:50:10 +03:00
return false ;
/* call direction */
2017-04-09 20:06:49 +03:00
if ( * p = = cpu_to_be32 ( RPC_CALL ) )
2016-01-07 22:50:10 +03:00
return false ;
return true ;
}
2017-06-24 00:18:33 +03:00
/**
* svc_rdma_recvfrom - Receive an RPC call
* @ rqstp : request structure into which to receive an RPC Call
*
* Returns :
* The positive number of bytes in the RPC Call message ,
* % 0 if there were no Calls ready to return ,
* % - EINVAL if the Read chunk data is too large ,
* % - ENOMEM if rdma_rw context pool was exhausted ,
* % - ENOTCONN if posting failed ( connection is lost ) ,
* % - EIO if rdma_rw initialization failed ( DMA mapping , etc ) .
*
* Called in a loop when XPT_DATA is set . XPT_DATA is cleared only
* when there are no remaining ctxt ' s to process .
*
* The next ctxt is removed from the " receive " lists .
*
* - If the ctxt completes a Read , then finish assembling the Call
* message and return the number of bytes in the message .
*
* - If the ctxt completes a Receive , then construct the Call
* message from the contents of the Receive buffer .
*
* - If there are no Read chunks in this message , then finish
* assembling the Call message and return the number of bytes
* in the message .
*
* - If there are Read chunks in this message , post Read WRs to
* pull that payload and return 0.
2007-12-13 01:13:23 +03:00
*/
int svc_rdma_recvfrom ( struct svc_rqst * rqstp )
{
struct svc_xprt * xprt = rqstp - > rq_xprt ;
struct svcxprt_rdma * rdma_xprt =
container_of ( xprt , struct svcxprt_rdma , sc_xprt ) ;
2017-06-24 00:18:08 +03:00
struct svc_rdma_op_ctxt * ctxt ;
2017-06-24 00:18:33 +03:00
__be32 * p ;
2017-06-24 00:18:08 +03:00
int ret ;
2007-12-13 01:13:23 +03:00
2017-02-07 19:59:04 +03:00
spin_lock ( & rdma_xprt - > sc_rq_dto_lock ) ;
2007-12-13 01:13:23 +03:00
if ( ! list_empty ( & rdma_xprt - > sc_read_complete_q ) ) {
2017-02-07 19:58:56 +03:00
ctxt = list_first_entry ( & rdma_xprt - > sc_read_complete_q ,
struct svc_rdma_op_ctxt , list ) ;
list_del ( & ctxt - > list ) ;
2017-02-07 19:59:04 +03:00
spin_unlock ( & rdma_xprt - > sc_rq_dto_lock ) ;
2016-05-04 17:53:39 +03:00
rdma_read_complete ( rqstp , ctxt ) ;
goto complete ;
2014-05-29 00:12:01 +04:00
} else if ( ! list_empty ( & rdma_xprt - > sc_rq_dto_q ) ) {
2017-02-07 19:58:56 +03:00
ctxt = list_first_entry ( & rdma_xprt - > sc_rq_dto_q ,
struct svc_rdma_op_ctxt , list ) ;
list_del ( & ctxt - > list ) ;
2007-12-13 01:13:23 +03:00
} else {
2017-06-24 00:18:08 +03:00
/* No new incoming requests, terminate the loop */
2007-12-13 01:13:23 +03:00
clear_bit ( XPT_DATA , & xprt - > xpt_flags ) ;
2017-06-24 00:18:08 +03:00
spin_unlock ( & rdma_xprt - > sc_rq_dto_lock ) ;
return 0 ;
2007-12-13 01:13:23 +03:00
}
2017-02-07 19:59:04 +03:00
spin_unlock ( & rdma_xprt - > sc_rq_dto_lock ) ;
2017-06-24 00:18:08 +03:00
2017-06-24 00:18:33 +03:00
dprintk ( " svcrdma: recvfrom: ctxt=%p on xprt=%p, rqstp=%p \n " ,
2016-11-29 19:05:07 +03:00
ctxt , rdma_xprt , rqstp ) ;
2007-12-13 01:13:23 +03:00
atomic_inc ( & rdma_stat_recv ) ;
2018-03-21 00:05:20 +03:00
svc_rdma_build_arg_xdr ( rqstp , ctxt ) ;
2007-12-13 01:13:23 +03:00
2017-06-24 00:18:33 +03:00
p = ( __be32 * ) rqstp - > rq_arg . head [ 0 ] . iov_base ;
2016-05-04 17:53:47 +03:00
ret = svc_rdma_xdr_decode_req ( & rqstp - > rq_arg ) ;
2016-03-01 21:06:38 +03:00
if ( ret < 0 )
goto out_err ;
2016-03-01 21:06:56 +03:00
if ( ret = = 0 )
goto out_drop ;
2016-03-01 21:06:38 +03:00
rqstp - > rq_xprt_hlen = ret ;
2007-12-13 01:13:23 +03:00
2017-06-24 00:18:33 +03:00
if ( svc_rdma_is_backchannel_reply ( xprt , p ) ) {
ret = svc_rdma_handle_bc_reply ( xprt - > xpt_bc_xprt , p ,
2016-01-07 22:50:10 +03:00
& rqstp - > rq_arg ) ;
svc_rdma_put_context ( ctxt , 0 ) ;
return ret ;
}
2017-06-24 00:18:33 +03:00
p + = rpcrdma_fixed_maxsz ;
if ( * p ! = xdr_zero )
goto out_readchunk ;
2007-12-13 01:13:23 +03:00
2016-05-04 17:53:39 +03:00
complete :
2007-12-13 01:13:23 +03:00
svc_rdma_put_context ( ctxt , 0 ) ;
2017-06-24 00:18:41 +03:00
dprintk ( " svcrdma: recvfrom: xprt=%p, rqstp=%p, rq_arg.len=%u \n " ,
rdma_xprt , rqstp , rqstp - > rq_arg . len ) ;
2007-12-13 01:13:23 +03:00
rqstp - > rq_prot = IPPROTO_MAX ;
svc_xprt_copy_addrs ( rqstp , xprt ) ;
2017-06-24 00:18:41 +03:00
return rqstp - > rq_arg . len ;
2007-12-13 01:13:23 +03:00
2017-06-24 00:18:33 +03:00
out_readchunk :
ret = svc_rdma_recv_read_chunk ( rdma_xprt , rqstp , ctxt , p ) ;
if ( ret < 0 )
goto out_postfail ;
return 0 ;
2016-03-01 21:06:38 +03:00
out_err :
2017-06-24 00:18:33 +03:00
svc_rdma_send_error ( rdma_xprt , p , ret ) ;
2016-03-01 21:06:38 +03:00
svc_rdma_put_context ( ctxt , 0 ) ;
return 0 ;
2017-06-24 00:18:33 +03:00
out_postfail :
if ( ret = = - EINVAL )
svc_rdma_send_error ( rdma_xprt , p , ret ) ;
svc_rdma_put_context ( ctxt , 1 ) ;
return ret ;
2016-01-07 22:50:10 +03:00
2016-03-01 21:06:56 +03:00
out_drop :
svc_rdma_put_context ( ctxt , 1 ) ;
2018-01-03 23:42:18 +03:00
return 0 ;
2007-12-13 01:13:23 +03:00
}