2018-05-07 22:26:55 +03:00
// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
2007-12-13 01:13:23 +03:00
/*
2018-05-07 22:27:21 +03:00
* Copyright ( c ) 2016 - 2018 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
2018-05-07 22:27:21 +03:00
* transferred to an svc_rdma_recv_ctxt for the duration of the
2017-06-24 00:18:33 +03:00
* 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
2018-05-07 22:27:21 +03:00
* svc_rdma_recv_ctxt .
2017-06-24 00:18:33 +03:00
*
* The second call to svc_rdma_recvfrom performs final assembly
* of the RPC Call message , using the RDMA Read sink pages kept in
2018-05-07 22:27:21 +03:00
* the svc_rdma_recv_ctxt . The xdr_buf is copied from the
* svc_rdma_recv_ctxt to the second svc_rqst . The second call returns
2017-06-24 00:18:33 +03:00
* the length of the completed RPC Call message .
*
* Page Management
*
* Pages under I / O must be transferred from the first svc_rqst to an
2018-05-07 22:27:21 +03:00
* svc_rdma_recv_ctxt before the first svc_rdma_recvfrom call returns .
2017-06-24 00:18:33 +03:00
*
* 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
2018-05-07 22:27:21 +03:00
* are transferred from the svc_rdma_recv_ctxt to the second svc_rqst
2017-06-24 00:18:33 +03:00
* ( see rdma_read_complete ( ) below ) .
*/
2020-06-22 17:15:41 +03:00
# include <linux/slab.h>
2018-05-07 22:27:11 +03:00
# include <linux/spinlock.h>
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/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>
2018-05-07 22:27:11 +03:00
# include "xprt_rdma.h"
# include <trace/events/rpcrdma.h>
2018-05-07 22:27:21 +03:00
static void svc_rdma_wc_receive ( struct ib_cq * cq , struct ib_wc * wc ) ;
static inline struct svc_rdma_recv_ctxt *
svc_rdma_next_recv_ctxt ( struct list_head * list )
{
return list_first_entry_or_null ( list , struct svc_rdma_recv_ctxt ,
rc_list ) ;
}
2020-04-29 23:22:26 +03:00
static void svc_rdma_recv_cid_init ( struct svcxprt_rdma * rdma ,
struct rpc_rdma_cid * cid )
{
cid - > ci_queue_id = rdma - > sc_rq_cq - > res . id ;
cid - > ci_completion_id = atomic_inc_return ( & rdma - > sc_completion_ids ) ;
}
2018-05-07 22:27:43 +03:00
static struct svc_rdma_recv_ctxt *
svc_rdma_recv_ctxt_alloc ( struct svcxprt_rdma * rdma )
{
struct svc_rdma_recv_ctxt * ctxt ;
dma_addr_t addr ;
void * buffer ;
ctxt = kmalloc ( sizeof ( * ctxt ) , GFP_KERNEL ) ;
if ( ! ctxt )
goto fail0 ;
buffer = kmalloc ( rdma - > sc_max_req_size , GFP_KERNEL ) ;
if ( ! buffer )
goto fail1 ;
addr = ib_dma_map_single ( rdma - > sc_pd - > device , buffer ,
rdma - > sc_max_req_size , DMA_FROM_DEVICE ) ;
if ( ib_dma_mapping_error ( rdma - > sc_pd - > device , addr ) )
goto fail2 ;
2020-04-29 23:22:26 +03:00
svc_rdma_recv_cid_init ( rdma , & ctxt - > rc_cid ) ;
2020-06-22 17:15:41 +03:00
pcl_init ( & ctxt - > rc_call_pcl ) ;
pcl_init ( & ctxt - > rc_read_pcl ) ;
pcl_init ( & ctxt - > rc_write_pcl ) ;
pcl_init ( & ctxt - > rc_reply_pcl ) ;
2020-04-29 23:22:26 +03:00
2018-05-07 22:27:43 +03:00
ctxt - > rc_recv_wr . next = NULL ;
ctxt - > rc_recv_wr . wr_cqe = & ctxt - > rc_cqe ;
ctxt - > rc_recv_wr . sg_list = & ctxt - > rc_recv_sge ;
ctxt - > rc_recv_wr . num_sge = 1 ;
ctxt - > rc_cqe . done = svc_rdma_wc_receive ;
ctxt - > rc_recv_sge . addr = addr ;
ctxt - > rc_recv_sge . length = rdma - > sc_max_req_size ;
ctxt - > rc_recv_sge . lkey = rdma - > sc_pd - > local_dma_lkey ;
ctxt - > rc_recv_buf = buffer ;
2018-05-07 22:27:48 +03:00
ctxt - > rc_temp = false ;
2018-05-07 22:27:43 +03:00
return ctxt ;
fail2 :
kfree ( buffer ) ;
fail1 :
kfree ( ctxt ) ;
fail0 :
return NULL ;
}
2018-05-07 22:27:48 +03:00
static void svc_rdma_recv_ctxt_destroy ( struct svcxprt_rdma * rdma ,
struct svc_rdma_recv_ctxt * ctxt )
{
ib_dma_unmap_single ( rdma - > sc_pd - > device , ctxt - > rc_recv_sge . addr ,
ctxt - > rc_recv_sge . length , DMA_FROM_DEVICE ) ;
kfree ( ctxt - > rc_recv_buf ) ;
kfree ( ctxt ) ;
}
2018-05-07 22:27:21 +03:00
/**
* svc_rdma_recv_ctxts_destroy - Release all recv_ctxt ' s for an xprt
* @ rdma : svcxprt_rdma being torn down
*
*/
void svc_rdma_recv_ctxts_destroy ( struct svcxprt_rdma * rdma )
{
struct svc_rdma_recv_ctxt * ctxt ;
2019-08-17 00:49:38 +03:00
struct llist_node * node ;
2018-05-07 22:27:21 +03:00
2019-08-17 00:49:38 +03:00
while ( ( node = llist_del_first ( & rdma - > sc_recv_ctxts ) ) ) {
ctxt = llist_entry ( node , struct svc_rdma_recv_ctxt , rc_node ) ;
2018-05-07 22:27:48 +03:00
svc_rdma_recv_ctxt_destroy ( rdma , ctxt ) ;
2018-05-07 22:27:21 +03:00
}
}
2020-03-13 17:42:11 +03:00
/**
* svc_rdma_recv_ctxt_get - Allocate a recv_ctxt
* @ rdma : controlling svcxprt_rdma
*
* Returns a recv_ctxt or ( rarely ) NULL if none are available .
*/
struct svc_rdma_recv_ctxt * svc_rdma_recv_ctxt_get ( struct svcxprt_rdma * rdma )
2018-05-07 22:27:21 +03:00
{
struct svc_rdma_recv_ctxt * ctxt ;
2019-08-17 00:49:38 +03:00
struct llist_node * node ;
2018-05-07 22:27:21 +03:00
2019-08-17 00:49:38 +03:00
node = llist_del_first ( & rdma - > sc_recv_ctxts ) ;
if ( ! node )
2018-05-07 22:27:21 +03:00
goto out_empty ;
2019-08-17 00:49:38 +03:00
ctxt = llist_entry ( node , struct svc_rdma_recv_ctxt , rc_node ) ;
2018-05-07 22:27:21 +03:00
out :
ctxt - > rc_page_count = 0 ;
return ctxt ;
out_empty :
2018-05-07 22:27:43 +03:00
ctxt = svc_rdma_recv_ctxt_alloc ( rdma ) ;
2018-05-07 22:27:21 +03:00
if ( ! ctxt )
return NULL ;
goto out ;
}
/**
* svc_rdma_recv_ctxt_put - Return recv_ctxt to free list
* @ rdma : controlling svcxprt_rdma
* @ ctxt : object to return to the free list
*
*/
void svc_rdma_recv_ctxt_put ( struct svcxprt_rdma * rdma ,
2018-05-07 22:27:32 +03:00
struct svc_rdma_recv_ctxt * ctxt )
2018-05-07 22:27:21 +03:00
{
unsigned int i ;
2018-05-07 22:27:32 +03:00
for ( i = 0 ; i < ctxt - > rc_page_count ; i + + )
put_page ( ctxt - > rc_pages [ i ] ) ;
2018-05-07 22:27:48 +03:00
2020-06-22 17:15:41 +03:00
pcl_free ( & ctxt - > rc_call_pcl ) ;
pcl_free ( & ctxt - > rc_read_pcl ) ;
pcl_free ( & ctxt - > rc_write_pcl ) ;
pcl_free ( & ctxt - > rc_reply_pcl ) ;
2019-08-17 00:49:38 +03:00
if ( ! ctxt - > rc_temp )
llist_add ( & ctxt - > rc_node , & rdma - > sc_recv_ctxts ) ;
else
2018-05-07 22:27:48 +03:00
svc_rdma_recv_ctxt_destroy ( rdma , ctxt ) ;
2018-05-07 22:27:21 +03:00
}
2020-04-01 00:02:33 +03:00
/**
* svc_rdma_release_rqst - Release transport - specific per - rqst resources
* @ rqstp : svc_rqst being released
*
* Ensure that the recv_ctxt is released whether or not a Reply
* was sent . For example , the client could close the connection ,
* or svc_process could drop an RPC , before the Reply is sent .
*/
void svc_rdma_release_rqst ( struct svc_rqst * rqstp )
{
struct svc_rdma_recv_ctxt * ctxt = rqstp - > rq_xprt_ctxt ;
struct svc_xprt * xprt = rqstp - > rq_xprt ;
struct svcxprt_rdma * rdma =
container_of ( xprt , struct svcxprt_rdma , sc_xprt ) ;
rqstp - > rq_xprt_ctxt = NULL ;
if ( ctxt )
svc_rdma_recv_ctxt_put ( rdma , ctxt ) ;
}
2021-03-11 21:54:34 +03:00
static bool svc_rdma_refresh_recvs ( struct svcxprt_rdma * rdma ,
unsigned int wanted , bool temp )
{
const struct ib_recv_wr * bad_wr = NULL ;
struct svc_rdma_recv_ctxt * ctxt ;
struct ib_recv_wr * recv_chain ;
int ret ;
if ( test_bit ( XPT_CLOSE , & rdma - > sc_xprt . xpt_flags ) )
return false ;
recv_chain = NULL ;
while ( wanted - - ) {
ctxt = svc_rdma_recv_ctxt_get ( rdma ) ;
if ( ! ctxt )
break ;
trace_svcrdma_post_recv ( ctxt ) ;
ctxt - > rc_temp = temp ;
ctxt - > rc_recv_wr . next = recv_chain ;
recv_chain = & ctxt - > rc_recv_wr ;
2021-03-12 02:32:30 +03:00
rdma - > sc_pending_recvs + + ;
2021-03-11 21:54:34 +03:00
}
if ( ! recv_chain )
return false ;
ret = ib_post_recv ( rdma - > sc_qp , recv_chain , & bad_wr ) ;
if ( ret )
goto err_free ;
return true ;
err_free :
trace_svcrdma_rq_post_err ( rdma , ret ) ;
while ( bad_wr ) {
ctxt = container_of ( bad_wr , struct svc_rdma_recv_ctxt ,
rc_recv_wr ) ;
bad_wr = bad_wr - > next ;
svc_rdma_recv_ctxt_put ( rdma , ctxt ) ;
}
2021-03-12 02:32:30 +03:00
/* Since we're destroying the xprt, no need to reset
* sc_pending_recvs . */
2021-03-11 21:54:34 +03:00
return false ;
}
2018-05-07 22:27:21 +03:00
/**
* svc_rdma_post_recvs - Post initial set of Recv WRs
* @ rdma : fresh svcxprt_rdma
*
* Returns true if successful , otherwise false .
*/
bool svc_rdma_post_recvs ( struct svcxprt_rdma * rdma )
{
2021-03-11 21:54:34 +03:00
return svc_rdma_refresh_recvs ( rdma , rdma - > sc_max_requests , true ) ;
2018-05-07 22:27:21 +03:00
}
/**
* svc_rdma_wc_receive - Invoked by RDMA provider for each polled Receive WC
* @ cq : Completion Queue context
* @ wc : Work Completion object
*
*/
static void svc_rdma_wc_receive ( struct ib_cq * cq , struct ib_wc * wc )
{
struct svcxprt_rdma * rdma = cq - > cq_context ;
struct ib_cqe * cqe = wc - > wr_cqe ;
struct svc_rdma_recv_ctxt * ctxt ;
2021-03-12 02:32:30 +03:00
rdma - > sc_pending_recvs - - ;
2018-05-07 22:27:21 +03:00
/* WARNING: Only wc->wr_cqe and wc->status are reliable */
ctxt = container_of ( cqe , struct svc_rdma_recv_ctxt , rc_cqe ) ;
2020-04-29 23:22:26 +03:00
trace_svcrdma_wc_receive ( wc , & ctxt - > rc_cid ) ;
2018-05-07 22:27:21 +03:00
if ( wc - > status ! = IB_WC_SUCCESS )
goto flushed ;
2021-03-12 00:15:22 +03:00
/* If receive posting fails, the connection is about to be
* lost anyway . The server will not be able to send a reply
* for this RPC , and the client will retransmit this RPC
* anyway when it reconnects .
*
* Therefore we drop the Receive , even if status was SUCCESS
* to reduce the likelihood of replayed requests once the
* client reconnects .
*/
2021-03-12 02:32:30 +03:00
if ( rdma - > sc_pending_recvs < rdma - > sc_max_requests )
if ( ! svc_rdma_refresh_recvs ( rdma , rdma - > sc_recv_batch , false ) )
goto flushed ;
2021-03-11 21:25:01 +03:00
2018-05-07 22:27:21 +03:00
/* All wc fields are now known to be valid */
ctxt - > rc_byte_len = wc - > byte_len ;
2018-05-07 22:27:43 +03:00
2018-05-07 22:27:21 +03:00
spin_lock ( & rdma - > sc_rq_dto_lock ) ;
list_add_tail ( & ctxt - > rc_list , & rdma - > sc_rq_dto_q ) ;
svcrpc: fix unlikely races preventing queueing of sockets
In the rpc server, When something happens that might be reason to wake
up a thread to do something, what we do is
- modify xpt_flags, sk_sock->flags, xpt_reserved, or
xpt_nr_rqsts to indicate the new situation
- call svc_xprt_enqueue() to decide whether to wake up a thread.
svc_xprt_enqueue may require multiple conditions to be true before
queueing up a thread to handle the xprt. In the SMP case, one of the
other CPU's may have set another required condition, and in that case,
although both CPUs run svc_xprt_enqueue(), it's possible that neither
call sees the writes done by the other CPU in time, and neither one
recognizes that all the required conditions have been set. A socket
could therefore be ignored indefinitely.
Add memory barries to ensure that any svc_xprt_enqueue() call will
always see the conditions changed by other CPUs before deciding to
ignore a socket.
I've never seen this race reported. In the unlikely event it happens,
another event will usually come along and the problem will fix itself.
So I don't think this is worth backporting to stable.
Chuck tried this patch and said "I don't see any performance
regressions, but my server has only a single last-level CPU cache."
Tested-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
2019-01-11 23:36:40 +03:00
/* Note the unlock pairs with the smp_rmb in svc_xprt_ready: */
2018-05-07 22:27:21 +03:00
set_bit ( XPT_DATA , & rdma - > sc_xprt . xpt_flags ) ;
svcrpc: fix unlikely races preventing queueing of sockets
In the rpc server, When something happens that might be reason to wake
up a thread to do something, what we do is
- modify xpt_flags, sk_sock->flags, xpt_reserved, or
xpt_nr_rqsts to indicate the new situation
- call svc_xprt_enqueue() to decide whether to wake up a thread.
svc_xprt_enqueue may require multiple conditions to be true before
queueing up a thread to handle the xprt. In the SMP case, one of the
other CPU's may have set another required condition, and in that case,
although both CPUs run svc_xprt_enqueue(), it's possible that neither
call sees the writes done by the other CPU in time, and neither one
recognizes that all the required conditions have been set. A socket
could therefore be ignored indefinitely.
Add memory barries to ensure that any svc_xprt_enqueue() call will
always see the conditions changed by other CPUs before deciding to
ignore a socket.
I've never seen this race reported. In the unlikely event it happens,
another event will usually come along and the problem will fix itself.
So I don't think this is worth backporting to stable.
Chuck tried this patch and said "I don't see any performance
regressions, but my server has only a single last-level CPU cache."
Tested-by: Chuck Lever <chuck.lever@oracle.com>
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
2019-01-11 23:36:40 +03:00
spin_unlock ( & rdma - > sc_rq_dto_lock ) ;
2018-05-07 22:27:21 +03:00
if ( ! test_bit ( RDMAXPRT_CONN_PENDING , & rdma - > sc_flags ) )
svc_xprt_enqueue ( & rdma - > sc_xprt ) ;
2020-06-30 20:25:41 +03:00
return ;
2018-05-07 22:27:21 +03:00
flushed :
2021-03-11 21:25:01 +03:00
svc_rdma_recv_ctxt_put ( rdma , ctxt ) ;
2018-05-07 22:27:21 +03:00
set_bit ( XPT_CLOSE , & rdma - > sc_xprt . xpt_flags ) ;
svc_xprt_enqueue ( & rdma - > sc_xprt ) ;
}
/**
* svc_rdma_flush_recv_queues - Drain pending Receive work
* @ rdma : svcxprt_rdma being shut down
*
*/
void svc_rdma_flush_recv_queues ( struct svcxprt_rdma * rdma )
{
struct svc_rdma_recv_ctxt * ctxt ;
while ( ( ctxt = svc_rdma_next_recv_ctxt ( & rdma - > sc_read_complete_q ) ) ) {
list_del ( & ctxt - > rc_list ) ;
2018-05-07 22:27:32 +03:00
svc_rdma_recv_ctxt_put ( rdma , ctxt ) ;
2018-05-07 22:27:21 +03:00
}
while ( ( ctxt = svc_rdma_next_recv_ctxt ( & rdma - > sc_rq_dto_q ) ) ) {
list_del ( & ctxt - > rc_list ) ;
2018-05-07 22:27:32 +03:00
svc_rdma_recv_ctxt_put ( rdma , ctxt ) ;
2018-05-07 22:27:21 +03:00
}
}
2018-03-21 00:05:20 +03:00
static void svc_rdma_build_arg_xdr ( struct svc_rqst * rqstp ,
2018-05-07 22:27:21 +03:00
struct svc_rdma_recv_ctxt * ctxt )
2007-12-13 01:13:23 +03:00
{
2018-05-07 22:27:43 +03:00
struct xdr_buf * arg = & rqstp - > rq_arg ;
arg - > head [ 0 ] . iov_base = ctxt - > rc_recv_buf ;
arg - > head [ 0 ] . iov_len = ctxt - > rc_byte_len ;
arg - > tail [ 0 ] . iov_base = NULL ;
arg - > tail [ 0 ] . iov_len = 0 ;
arg - > page_len = 0 ;
arg - > page_base = 0 ;
arg - > buflen = ctxt - > rc_byte_len ;
arg - > len = ctxt - > rc_byte_len ;
2007-12-13 01:13:23 +03:00
}
2020-06-22 17:15:41 +03:00
/**
* xdr_count_read_segments - Count number of Read segments in Read list
* @ rctxt : Ingress receive context
* @ p : Start of an un - decoded Read list
2017-06-24 00:17:44 +03:00
*
2020-06-22 17:15:41 +03:00
* Before allocating anything , ensure the ingress Read list is safe
* to use .
2017-06-24 00:17:44 +03:00
*
2020-06-22 17:15:41 +03:00
* 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 .
2017-06-24 00:17:44 +03:00
*
2020-03-02 23:01:08 +03:00
* Return values :
2020-06-22 17:15:41 +03:00
* % true : Read list is valid . @ rctxt ' s xdr_stream is updated to point
* to the first byte past the Read list . rc_read_pcl and
* rc_call_pcl cl_count fields are set to the number of
* Read segments in the list .
* % false : Read list is corrupt . @ rctxt ' s xdr_stream is left in an
* unknown state .
2017-06-24 00:17:44 +03:00
*/
2020-06-22 17:15:41 +03:00
static bool xdr_count_read_segments ( struct svc_rdma_recv_ctxt * rctxt , __be32 * p )
2017-06-24 00:17:35 +03:00
{
2020-06-22 17:15:41 +03:00
rctxt - > rc_call_pcl . cl_count = 0 ;
rctxt - > rc_read_pcl . cl_count = 0 ;
2020-03-28 20:43:22 +03:00
while ( xdr_item_is_present ( p ) ) {
2020-06-22 17:15:41 +03:00
u32 position , handle , length ;
u64 offset ;
2020-03-02 23:01:08 +03:00
p = xdr_inline_decode ( & rctxt - > rc_stream ,
rpcrdma_readseg_maxsz * sizeof ( * p ) ) ;
if ( ! p )
return false ;
2020-06-22 17:15:41 +03:00
xdr_decode_read_segment ( p , & position , & handle ,
& length , & offset ) ;
if ( position ) {
if ( position & 3 )
return false ;
+ + rctxt - > rc_read_pcl . cl_count ;
} else {
+ + rctxt - > rc_call_pcl . cl_count ;
2017-06-24 00:17:44 +03:00
}
2020-03-02 23:01:08 +03:00
p = xdr_inline_decode ( & rctxt - > rc_stream , sizeof ( * p ) ) ;
if ( ! p )
return false ;
2017-06-24 00:17:35 +03:00
}
2020-06-22 17:15:41 +03:00
return true ;
2017-06-24 00:17:35 +03:00
}
2020-06-22 17:15:41 +03:00
/* Sanity check the Read list.
*
* Sanity checks :
* - Read list does not overflow Receive buffer .
* - Chunk size limited by largest NFS data payload .
*
* Return values :
* % true : Read list is valid . @ rctxt ' s xdr_stream is updated
* to point to the first byte past the Read list .
* % false : Read list is corrupt . @ rctxt ' s xdr_stream is left
* in an unknown state .
2017-06-24 00:17:52 +03:00
*/
2020-06-22 17:15:41 +03:00
static bool xdr_check_read_list ( struct svc_rdma_recv_ctxt * rctxt )
2017-06-24 00:17:35 +03:00
{
2020-03-02 23:01:08 +03:00
__be32 * p ;
p = xdr_inline_decode ( & rctxt - > rc_stream , sizeof ( * p ) ) ;
if ( ! p )
return false ;
2020-06-22 17:15:41 +03:00
if ( ! xdr_count_read_segments ( rctxt , p ) )
return false ;
if ( ! pcl_alloc_call ( rctxt , p ) )
return false ;
return pcl_alloc_read ( rctxt , p ) ;
}
2017-06-24 00:17:52 +03:00
2020-06-22 17:15:41 +03:00
static bool xdr_check_write_chunk ( struct svc_rdma_recv_ctxt * rctxt )
{
u32 segcount ;
__be32 * p ;
2017-06-24 00:17:52 +03:00
2020-06-22 17:15:41 +03:00
if ( xdr_stream_decode_u32 ( & rctxt - > rc_stream , & segcount ) )
return false ;
2020-03-02 23:01:08 +03:00
2020-06-22 17:15:41 +03:00
/* A bogus segcount causes this buffer overflow check to fail. */
p = xdr_inline_decode ( & rctxt - > rc_stream ,
segcount * rpcrdma_segment_maxsz * sizeof ( * p ) ) ;
return p ! = NULL ;
}
2017-06-24 00:17:52 +03:00
2020-06-22 17:15:41 +03:00
/**
* xdr_count_write_chunks - Count number of Write chunks in Write list
* @ rctxt : Received header and decoding state
* @ p : start of an un - decoded Write list
*
* Before allocating anything , ensure the ingress Write list is
* safe to use .
*
* Return values :
* % true : Write list is valid . @ rctxt ' s xdr_stream is updated
* to point to the first byte past the Write list , and
* the number of Write chunks is in rc_write_pcl . cl_count .
* % false : Write list is corrupt . @ rctxt ' s xdr_stream is left
* in an indeterminate state .
*/
static bool xdr_count_write_chunks ( struct svc_rdma_recv_ctxt * rctxt , __be32 * p )
{
rctxt - > rc_write_pcl . cl_count = 0 ;
while ( xdr_item_is_present ( p ) ) {
if ( ! xdr_check_write_chunk ( rctxt ) )
return false ;
+ + rctxt - > rc_write_pcl . cl_count ;
p = xdr_inline_decode ( & rctxt - > rc_stream , sizeof ( * p ) ) ;
if ( ! p )
return false ;
2020-03-02 23:01:08 +03:00
}
2020-06-22 17:15:41 +03:00
return true ;
2017-06-24 00:17:52 +03:00
}
2017-06-24 00:17:35 +03:00
2017-06-24 00:17:52 +03:00
/* Sanity check the Write list.
*
* Implementation limits :
2020-03-02 23:01:08 +03:00
* - This implementation currently supports only one Write chunk .
2017-06-24 00:17:52 +03:00
*
* Sanity checks :
2020-03-02 23:01:08 +03:00
* - Write list does not overflow Receive buffer .
* - Chunk size limited by largest NFS data payload .
*
* Return values :
* % true : Write list is valid . @ rctxt ' s xdr_stream is updated
* to point to the first byte past the Write list .
* % false : Write list is corrupt . @ rctxt ' s xdr_stream is left
* in an unknown state .
2017-06-24 00:17:52 +03:00
*/
2020-03-02 23:01:08 +03:00
static bool xdr_check_write_list ( struct svc_rdma_recv_ctxt * rctxt )
2017-06-24 00:17:52 +03:00
{
2020-03-02 23:01:08 +03:00
__be32 * p ;
2017-06-24 00:17:52 +03:00
2020-03-02 23:01:08 +03:00
p = xdr_inline_decode ( & rctxt - > rc_stream , sizeof ( * p ) ) ;
if ( ! p )
return false ;
2020-06-22 17:15:41 +03:00
if ( ! xdr_count_write_chunks ( rctxt , p ) )
return false ;
if ( ! pcl_alloc_write ( rctxt , & rctxt - > rc_write_pcl , p ) )
return false ;
rctxt - > rc_cur_result_payload = pcl_first_chunk ( & rctxt - > rc_write_pcl ) ;
2020-06-17 22:19:36 +03:00
return true ;
2017-06-24 00:17:35 +03:00
}
2017-06-24 00:18:00 +03:00
/* Sanity check the Reply chunk.
*
* Sanity checks :
2020-03-02 23:01:08 +03:00
* - Reply chunk does not overflow Receive buffer .
* - Chunk size limited by largest NFS data payload .
*
* Return values :
* % true : Reply chunk is valid . @ rctxt ' s xdr_stream is updated
* to point to the first byte past the Reply chunk .
* % false : Reply chunk is corrupt . @ rctxt ' s xdr_stream is left
* in an unknown state .
2017-06-24 00:18:00 +03:00
*/
2020-03-02 23:01:08 +03:00
static bool xdr_check_reply_chunk ( struct svc_rdma_recv_ctxt * rctxt )
2017-06-24 00:17:35 +03:00
{
2020-03-02 23:01:08 +03:00
__be32 * p ;
p = xdr_inline_decode ( & rctxt - > rc_stream , sizeof ( * p ) ) ;
if ( ! p )
return false ;
2020-06-22 17:15:41 +03:00
if ( ! xdr_item_is_present ( p ) )
return true ;
if ( ! xdr_check_write_chunk ( rctxt ) )
return false ;
rctxt - > rc_reply_pcl . cl_count = 1 ;
return pcl_alloc_write ( rctxt , & rctxt - > rc_reply_pcl , p ) ;
2017-06-24 00:17:35 +03:00
}
2018-11-27 19:11:35 +03:00
/* RPC-over-RDMA Version One private extension: Remote Invalidation.
* Responder ' s choice : requester signals it can handle Send With
* Invalidate , and responder chooses one R_key to invalidate .
*
* If there is exactly one distinct R_key in the received transport
* header , set rc_inv_rkey to that R_key . Otherwise , set it to zero .
*/
static void svc_rdma_get_inv_rkey ( struct svcxprt_rdma * rdma ,
struct svc_rdma_recv_ctxt * ctxt )
{
2020-06-22 16:46:05 +03:00
struct svc_rdma_segment * segment ;
struct svc_rdma_chunk * chunk ;
u32 inv_rkey ;
2018-11-27 19:11:35 +03:00
ctxt - > rc_inv_rkey = 0 ;
if ( ! rdma - > sc_snd_w_inv )
return ;
2020-06-22 16:46:05 +03:00
inv_rkey = 0 ;
pcl_for_each_chunk ( chunk , & ctxt - > rc_call_pcl ) {
pcl_for_each_segment ( segment , chunk ) {
if ( inv_rkey = = 0 )
inv_rkey = segment - > rs_handle ;
else if ( inv_rkey ! = segment - > rs_handle )
return ;
}
2018-11-27 19:11:35 +03:00
}
2020-06-22 16:46:05 +03:00
pcl_for_each_chunk ( chunk , & ctxt - > rc_read_pcl ) {
pcl_for_each_segment ( segment , chunk ) {
if ( inv_rkey = = 0 )
inv_rkey = segment - > rs_handle ;
else if ( inv_rkey ! = segment - > rs_handle )
2018-11-27 19:11:35 +03:00
return ;
}
}
2020-06-22 16:46:05 +03:00
pcl_for_each_chunk ( chunk , & ctxt - > rc_write_pcl ) {
pcl_for_each_segment ( segment , chunk ) {
if ( inv_rkey = = 0 )
inv_rkey = segment - > rs_handle ;
else if ( inv_rkey ! = segment - > rs_handle )
2018-11-27 19:11:35 +03:00
return ;
}
}
2020-06-22 16:46:05 +03:00
pcl_for_each_chunk ( chunk , & ctxt - > rc_reply_pcl ) {
pcl_for_each_segment ( segment , chunk ) {
if ( inv_rkey = = 0 )
inv_rkey = segment - > rs_handle ;
else if ( inv_rkey ! = segment - > rs_handle )
return ;
}
}
ctxt - > rc_inv_rkey = inv_rkey ;
2018-11-27 19:11:35 +03:00
}
2020-03-02 23:01:08 +03:00
/**
* svc_rdma_xdr_decode_req - Decode the transport header
* @ rq_arg : xdr_buf containing ingress RPC / RDMA message
* @ rctxt : state of decoding
*
* On entry , xdr - > head [ 0 ] . iov_base points to first byte of the
* RPC - over - RDMA transport header .
2017-06-24 00:17:35 +03:00
*
* On successful exit , head [ 0 ] points to first byte past the
* RPC - over - RDMA header . For RDMA_MSG , this is the RPC message .
2020-03-02 23:01:08 +03:00
*
2017-06-24 00:17:35 +03:00
* The length of the RPC - over - RDMA header is returned .
*
* Assumptions :
* - The transport header is entirely contained in the head iovec .
*/
2020-03-02 23:01:08 +03:00
static int svc_rdma_xdr_decode_req ( struct xdr_buf * rq_arg ,
struct svc_rdma_recv_ctxt * rctxt )
2017-06-24 00:17:35 +03:00
{
2020-03-02 23:01:08 +03:00
__be32 * p , * rdma_argp ;
2017-06-24 00:17:35 +03:00
unsigned int hdr_len ;
rdma_argp = rq_arg - > head [ 0 ] . iov_base ;
2020-03-02 23:01:08 +03:00
xdr_init_decode ( & rctxt - > rc_stream , rq_arg , rdma_argp , NULL ) ;
2017-06-24 00:17:35 +03:00
2020-03-02 23:01:08 +03:00
p = xdr_inline_decode ( & rctxt - > rc_stream ,
rpcrdma_fixed_maxsz * sizeof ( * p ) ) ;
if ( unlikely ( ! p ) )
goto out_short ;
p + + ;
if ( * p ! = rpcrdma_version )
goto out_version ;
p + = 2 ;
2020-03-22 20:06:55 +03:00
rctxt - > rc_msgtype = * p ;
switch ( rctxt - > rc_msgtype ) {
2017-06-24 00:17:35 +03:00
case rdma_msg :
break ;
case rdma_nomsg :
break ;
case rdma_done :
goto out_drop ;
case rdma_error :
goto out_drop ;
default :
goto out_proc ;
}
2020-03-02 23:01:08 +03:00
if ( ! xdr_check_read_list ( rctxt ) )
2017-06-24 00:17:35 +03:00
goto out_inval ;
2020-03-02 23:01:08 +03:00
if ( ! xdr_check_write_list ( rctxt ) )
2017-06-24 00:17:35 +03:00
goto out_inval ;
2020-03-02 23:01:08 +03:00
if ( ! xdr_check_reply_chunk ( rctxt ) )
2017-06-24 00:17:35 +03:00
goto out_inval ;
2020-03-02 23:01:08 +03:00
rq_arg - > head [ 0 ] . iov_base = rctxt - > rc_stream . p ;
hdr_len = xdr_stream_pos ( & rctxt - > rc_stream ) ;
2017-06-24 00:17:35 +03:00
rq_arg - > head [ 0 ] . iov_len - = hdr_len ;
2017-06-24 00:18:41 +03:00
rq_arg - > len - = hdr_len ;
2020-04-30 00:16:31 +03:00
trace_svcrdma_decode_rqst ( rctxt , rdma_argp , hdr_len ) ;
2017-06-24 00:17:35 +03:00
return hdr_len ;
out_short :
2020-04-30 00:16:31 +03:00
trace_svcrdma_decode_short_err ( rctxt , rq_arg - > len ) ;
2017-06-24 00:17:35 +03:00
return - EINVAL ;
out_version :
2020-04-30 00:16:31 +03:00
trace_svcrdma_decode_badvers_err ( rctxt , rdma_argp ) ;
2017-06-24 00:17:35 +03:00
return - EPROTONOSUPPORT ;
out_drop :
2020-04-30 00:16:31 +03:00
trace_svcrdma_decode_drop_err ( rctxt , rdma_argp ) ;
2017-06-24 00:17:35 +03:00
return 0 ;
out_proc :
2020-04-30 00:16:31 +03:00
trace_svcrdma_decode_badproc_err ( rctxt , rdma_argp ) ;
2017-06-24 00:17:35 +03:00
return - EINVAL ;
out_inval :
2020-04-30 00:16:31 +03:00
trace_svcrdma_decode_parse_err ( rctxt , rdma_argp ) ;
2017-06-24 00:17:35 +03:00
return - EINVAL ;
}
2016-05-04 17:53:39 +03:00
static void rdma_read_complete ( struct svc_rqst * rqstp ,
2018-05-07 22:27:21 +03:00
struct svc_rdma_recv_ctxt * head )
2007-12-13 01:13:23 +03:00
{
int page_no ;
2018-05-07 22:27:32 +03:00
/* Move Read chunk pages to rqstp so that they will be released
* when svc_process is done with them .
*/
2018-05-07 22:27:21 +03:00
for ( page_no = 0 ; page_no < head - > rc_page_count ; page_no + + ) {
2007-12-13 01:13:23 +03:00
put_page ( rqstp - > rq_pages [ page_no ] ) ;
2018-05-07 22:27:21 +03:00
rqstp - > rq_pages [ page_no ] = head - > rc_pages [ page_no ] ;
2007-12-13 01:13:23 +03:00
}
2018-05-07 22:27:32 +03:00
head - > rc_page_count = 0 ;
2015-01-13 19:03:37 +03:00
2007-12-13 01:13:23 +03:00
/* Point rq_arg.pages past header */
2018-05-07 22:27:21 +03:00
rqstp - > rq_arg . pages = & rqstp - > rq_pages [ head - > rc_hdr_count ] ;
rqstp - > rq_arg . page_len = head - > rc_arg . page_len ;
2007-12-13 01:13:23 +03:00
/* 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. */
2018-05-07 22:27:21 +03:00
rqstp - > rq_arg . head [ 0 ] = head - > rc_arg . head [ 0 ] ;
rqstp - > rq_arg . tail [ 0 ] = head - > rc_arg . tail [ 0 ] ;
rqstp - > rq_arg . len = head - > rc_arg . len ;
rqstp - > rq_arg . buflen = head - > rc_arg . buflen ;
2007-12-13 01:13:23 +03:00
}
2020-03-25 00:57:18 +03:00
static void svc_rdma_send_error ( struct svcxprt_rdma * rdma ,
2020-03-25 18:31:37 +03:00
struct svc_rdma_recv_ctxt * rctxt ,
int status )
2017-04-09 20:06:33 +03:00
{
2020-03-25 00:57:18 +03:00
struct svc_rdma_send_ctxt * sctxt ;
2017-04-09 20:06:33 +03:00
2020-03-25 00:57:18 +03:00
sctxt = svc_rdma_send_ctxt_get ( rdma ) ;
if ( ! sctxt )
2017-04-09 20:06:33 +03:00
return ;
2020-03-25 00:57:18 +03:00
svc_rdma_send_error_msg ( rdma , sctxt , rctxt , status ) ;
2017-04-09 20:06:33 +03:00
}
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 .
*/
2020-03-22 20:06:55 +03:00
static bool svc_rdma_is_reverse_direction_reply ( struct svc_xprt * xprt ,
struct svc_rdma_recv_ctxt * rctxt )
2016-01-07 22:50:10 +03:00
{
2020-03-22 20:06:55 +03:00
__be32 * p = rctxt - > rc_recv_buf ;
2016-01-07 22:50:10 +03:00
if ( ! xprt - > xpt_bc_xprt )
return false ;
2020-03-22 20:06:55 +03:00
if ( rctxt - > rc_msgtype ! = rdma_msg )
2016-01-07 22:50:10 +03:00
return false ;
2017-04-09 20:06:49 +03:00
2020-03-22 20:06:55 +03:00
if ( ! pcl_is_empty ( & rctxt - > rc_call_pcl ) )
return false ;
if ( ! pcl_is_empty ( & rctxt - > rc_read_pcl ) )
2016-01-07 22:50:10 +03:00
return false ;
2020-03-22 20:06:55 +03:00
if ( ! pcl_is_empty ( & rctxt - > rc_write_pcl ) )
2016-01-07 22:50:10 +03:00
return false ;
2020-03-22 20:06:55 +03:00
if ( ! pcl_is_empty ( & rctxt - > rc_reply_pcl ) )
2016-01-07 22:50:10 +03:00
return false ;
2020-03-22 20:06:55 +03:00
/* RPC call direction */
if ( * ( p + 8 ) = = 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 ) ;
2018-05-07 22:27:21 +03:00
struct svc_rdma_recv_ctxt * ctxt ;
2017-06-24 00:18:08 +03:00
int ret ;
2007-12-13 01:13:23 +03:00
2020-04-01 00:02:33 +03:00
rqstp - > rq_xprt_ctxt = NULL ;
2017-02-07 19:59:04 +03:00
spin_lock ( & rdma_xprt - > sc_rq_dto_lock ) ;
2018-05-07 22:27:21 +03:00
ctxt = svc_rdma_next_recv_ctxt ( & rdma_xprt - > sc_read_complete_q ) ;
if ( ctxt ) {
list_del ( & ctxt - > rc_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 ;
2018-05-07 22:27:21 +03:00
}
ctxt = svc_rdma_next_recv_ctxt ( & rdma_xprt - > sc_rq_dto_q ) ;
if ( ! ctxt ) {
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
}
2018-05-07 22:27:21 +03:00
list_del ( & ctxt - > rc_list ) ;
2017-02-07 19:59:04 +03:00
spin_unlock ( & rdma_xprt - > sc_rq_dto_lock ) ;
2020-12-29 23:47:44 +03:00
percpu_counter_inc ( & svcrdma_stat_recv ) ;
2007-12-13 01:13:23 +03:00
2020-12-30 22:08:53 +03:00
ib_dma_sync_single_for_cpu ( rdma_xprt - > sc_pd - > device ,
ctxt - > rc_recv_sge . addr , ctxt - > rc_byte_len ,
DMA_FROM_DEVICE ) ;
2018-03-21 00:05:20 +03:00
svc_rdma_build_arg_xdr ( rqstp , ctxt ) ;
2007-12-13 01:13:23 +03:00
2018-07-27 18:18:54 +03:00
/* Prevent svc_xprt_release from releasing pages in rq_pages
* if we return 0 or an error .
*/
rqstp - > rq_respages = rqstp - > rq_pages ;
rqstp - > rq_next_page = rqstp - > rq_respages ;
2020-03-02 23:01:08 +03:00
ret = svc_rdma_xdr_decode_req ( & rqstp - > rq_arg , ctxt ) ;
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
2020-03-22 20:06:55 +03:00
if ( svc_rdma_is_reverse_direction_reply ( xprt , ctxt ) )
2020-03-21 00:32:41 +03:00
goto out_backchannel ;
2018-11-27 19:11:35 +03:00
svc_rdma_get_inv_rkey ( rdma_xprt , ctxt ) ;
2016-01-07 22:50:10 +03:00
2020-09-17 20:04:17 +03:00
if ( ! pcl_is_empty ( & ctxt - > rc_read_pcl ) | |
! pcl_is_empty ( & ctxt - > rc_call_pcl ) )
goto out_readlist ;
2007-12-13 01:13:23 +03:00
2016-05-04 17:53:39 +03:00
complete :
2018-05-07 22:27:37 +03:00
rqstp - > rq_xprt_ctxt = ctxt ;
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
2020-09-17 20:04:17 +03:00
out_readlist :
ret = svc_rdma_process_read_list ( rdma_xprt , rqstp , ctxt ) ;
2017-06-24 00:18:33 +03:00
if ( ret < 0 )
2020-09-17 20:04:17 +03:00
goto out_readfail ;
2017-06-24 00:18:33 +03:00
return 0 ;
2016-03-01 21:06:38 +03:00
out_err :
2020-03-25 18:31:37 +03:00
svc_rdma_send_error ( rdma_xprt , ctxt , ret ) ;
2018-05-07 22:27:32 +03:00
svc_rdma_recv_ctxt_put ( rdma_xprt , ctxt ) ;
2016-03-01 21:06:38 +03:00
return 0 ;
2020-09-17 20:04:17 +03:00
out_readfail :
2017-06-24 00:18:33 +03:00
if ( ret = = - EINVAL )
2020-03-25 18:31:37 +03:00
svc_rdma_send_error ( rdma_xprt , ctxt , ret ) ;
2018-05-07 22:27:32 +03:00
svc_rdma_recv_ctxt_put ( rdma_xprt , ctxt ) ;
2017-06-24 00:18:33 +03:00
return ret ;
2016-01-07 22:50:10 +03:00
2020-03-21 00:32:41 +03:00
out_backchannel :
svc_rdma_handle_bc_reply ( rqstp , ctxt ) ;
2016-03-01 21:06:56 +03:00
out_drop :
2018-05-07 22:27:32 +03:00
svc_rdma_recv_ctxt_put ( rdma_xprt , ctxt ) ;
2018-01-03 23:42:18 +03:00
return 0 ;
2007-12-13 01:13:23 +03:00
}