blob: cbcfbd0521e374254e90fea0562e29c716e62727 [file] [log] [blame]
Chuck Leverbcf3ffd2018-05-07 15:26:55 -04001/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
Tom Tuckerd21b05f2007-12-12 16:13:17 -06002/*
3 * Copyright (c) 2005-2006 Network Appliance, Inc. All rights reserved.
4 *
5 * This software is available to you under a choice of one of two
6 * licenses. You may choose to be licensed under the terms of the GNU
7 * General Public License (GPL) Version 2, available from the file
8 * COPYING in the main directory of this source tree, or the BSD-type
9 * license below:
10 *
11 * Redistribution and use in source and binary forms, with or without
12 * modification, are permitted provided that the following conditions
13 * are met:
14 *
15 * Redistributions of source code must retain the above copyright
16 * notice, this list of conditions and the following disclaimer.
17 *
18 * Redistributions in binary form must reproduce the above
19 * copyright notice, this list of conditions and the following
20 * disclaimer in the documentation and/or other materials provided
21 * with the distribution.
22 *
23 * Neither the name of the Network Appliance, Inc. nor the names of
24 * its contributors may be used to endorse or promote products
25 * derived from this software without specific prior written
26 * permission.
27 *
28 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
29 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
30 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
31 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
32 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
33 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
34 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
35 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
36 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
37 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
38 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 *
40 * Author: Tom Tucker <tom@opengridcomputing.com>
41 */
42
43#ifndef SVC_RDMA_H
44#define SVC_RDMA_H
Chuck Lever48660732019-08-16 17:49:38 -040045#include <linux/llist.h>
Tom Tuckerd21b05f2007-12-12 16:13:17 -060046#include <linux/sunrpc/xdr.h>
47#include <linux/sunrpc/svcsock.h>
48#include <linux/sunrpc/rpc_rdma.h>
49#include <rdma/ib_verbs.h>
50#include <rdma/rdma_cm.h>
51#define SVCRDMA_DEBUG
52
Chuck Leverded8d192017-04-09 13:06:57 -040053/* Default and maximum inline threshold sizes */
54enum {
Chuck Lever0dabe942020-03-03 13:28:14 -050055 RPCRDMA_PULLUP_THRESH = RPCRDMA_V1_DEF_INLINE_SIZE >> 1,
Chuck Leverded8d192017-04-09 13:06:57 -040056 RPCRDMA_DEF_INLINE_THRESH = 4096,
57 RPCRDMA_MAX_INLINE_THRESH = 65536
58};
59
Tom Tuckerd21b05f2007-12-12 16:13:17 -060060/* RPC/RDMA parameters and stats */
61extern unsigned int svcrdma_ord;
62extern unsigned int svcrdma_max_requests;
Chuck Lever03fe9932016-01-07 14:50:02 -050063extern unsigned int svcrdma_max_bc_requests;
Tom Tuckerd21b05f2007-12-12 16:13:17 -060064extern unsigned int svcrdma_max_req_size;
65
66extern atomic_t rdma_stat_recv;
67extern atomic_t rdma_stat_read;
68extern atomic_t rdma_stat_write;
69extern atomic_t rdma_stat_sq_starve;
70extern atomic_t rdma_stat_rq_starve;
71extern atomic_t rdma_stat_rq_poll;
72extern atomic_t rdma_stat_rq_prod;
73extern atomic_t rdma_stat_sq_poll;
74extern atomic_t rdma_stat_sq_prod;
75
Tom Tuckerd21b05f2007-12-12 16:13:17 -060076struct svcxprt_rdma {
77 struct svc_xprt sc_xprt; /* SVC transport structure */
78 struct rdma_cm_id *sc_cm_id; /* RDMA connection id */
79 struct list_head sc_accept_q; /* Conn. waiting accept */
80 int sc_ord; /* RDMA read limit */
Chuck Lever25fd86e2018-05-07 15:28:09 -040081 int sc_max_send_sges;
Chuck Lever25d552962016-09-13 10:53:23 -040082 bool sc_snd_w_inv; /* OK to use Send With Invalidate */
Tom Tuckerd21b05f2007-12-12 16:13:17 -060083
Chuck Levere4eb42c2016-11-29 11:04:50 -050084 atomic_t sc_sq_avail; /* SQEs ready to be consumed */
Chuck Lever03fe9932016-01-07 14:50:02 -050085 unsigned int sc_sq_depth; /* Depth of SQ */
Chuck Lever98fc21d2017-02-07 11:58:23 -050086 __be32 sc_fc_credits; /* Forward credits */
87 u32 sc_max_requests; /* Max requests */
Chuck Lever03fe9932016-01-07 14:50:02 -050088 u32 sc_max_bc_requests;/* Backward credits */
Tom Tuckerd21b05f2007-12-12 16:13:17 -060089 int sc_max_req_size; /* Size of each RQ WR buf */
Chuck Leverf13193f2017-04-09 13:06:16 -040090 u8 sc_port_num;
Tom Tuckerd21b05f2007-12-12 16:13:17 -060091
92 struct ib_pd *sc_pd;
93
Chuck Lever4201c7462018-05-07 15:28:04 -040094 spinlock_t sc_send_lock;
95 struct list_head sc_send_ctxts;
Chuck Leverf13193f2017-04-09 13:06:16 -040096 spinlock_t sc_rw_ctxt_lock;
97 struct list_head sc_rw_ctxts;
Chuck Levercc886c92016-01-07 14:49:12 -050098
Tom Tuckerd21b05f2007-12-12 16:13:17 -060099 struct list_head sc_rq_dto_q;
100 spinlock_t sc_rq_dto_lock;
101 struct ib_qp *sc_qp;
102 struct ib_cq *sc_rq_cq;
103 struct ib_cq *sc_sq_cq;
Tom Tuckerd21b05f2007-12-12 16:13:17 -0600104
105 spinlock_t sc_lock; /* transport lock */
106
107 wait_queue_head_t sc_send_wait; /* SQ exhaustion waitlist */
108 unsigned long sc_flags;
Tom Tuckerd21b05f2007-12-12 16:13:17 -0600109 struct list_head sc_read_complete_q;
Tom Tucker8da91ea2008-04-30 22:00:46 -0500110 struct work_struct sc_work;
Chuck Leverecf85b22018-05-07 15:27:21 -0400111
Chuck Lever48660732019-08-16 17:49:38 -0400112 struct llist_head sc_recv_ctxts;
Tom Tuckerd21b05f2007-12-12 16:13:17 -0600113};
114/* sc_flags */
Tom Tuckerd21b05f2007-12-12 16:13:17 -0600115#define RDMAXPRT_CONN_PENDING 3
116
Chuck Lever3ae2cefb2018-10-01 14:16:11 -0400117/*
118 * Default connection parameters
Chuck Lever03fe9932016-01-07 14:50:02 -0500119 */
Chuck Lever3ae2cefb2018-10-01 14:16:11 -0400120enum {
121 RPCRDMA_LISTEN_BACKLOG = 10,
122 RPCRDMA_MAX_REQUESTS = 64,
123 RPCRDMA_MAX_BC_REQUESTS = 2,
124};
Chuck Lever03fe9932016-01-07 14:50:02 -0500125
Chuck Levercc9a9032015-08-07 16:55:46 -0400126#define RPCSVC_MAXPAYLOAD_RDMA RPCSVC_MAXPAYLOAD
127
Chuck Leverecf85b22018-05-07 15:27:21 -0400128struct svc_rdma_recv_ctxt {
Chuck Lever48660732019-08-16 17:49:38 -0400129 struct llist_node rc_node;
Chuck Leverecf85b22018-05-07 15:27:21 -0400130 struct list_head rc_list;
131 struct ib_recv_wr rc_recv_wr;
132 struct ib_cqe rc_cqe;
Chuck Lever3316f062018-05-07 15:27:43 -0400133 struct ib_sge rc_recv_sge;
134 void *rc_recv_buf;
Chuck Leverecf85b22018-05-07 15:27:21 -0400135 struct xdr_buf rc_arg;
Chuck Levere604aad2020-03-02 15:01:08 -0500136 struct xdr_stream rc_stream;
Chuck Levereb5d7a62018-05-07 15:27:48 -0400137 bool rc_temp;
Chuck Leverecf85b22018-05-07 15:27:21 -0400138 u32 rc_byte_len;
139 unsigned int rc_page_count;
140 unsigned int rc_hdr_count;
Chuck Lever97bce632018-11-27 11:11:35 -0500141 u32 rc_inv_rkey;
Chuck Lever2fe8c442020-03-02 15:01:08 -0500142 __be32 *rc_write_list;
143 __be32 *rc_reply_chunk;
Chuck Lever41205532020-03-02 14:45:53 -0500144 unsigned int rc_read_payload_offset;
145 unsigned int rc_read_payload_length;
Chuck Leverecf85b22018-05-07 15:27:21 -0400146 struct page *rc_pages[RPCSVC_MAXPAGES];
147};
148
Chuck Lever4201c7462018-05-07 15:28:04 -0400149struct svc_rdma_send_ctxt {
150 struct list_head sc_list;
151 struct ib_send_wr sc_send_wr;
152 struct ib_cqe sc_cqe;
Chuck Lever6fd50342020-03-02 15:02:20 -0500153 struct xdr_buf sc_hdrbuf;
154 struct xdr_stream sc_stream;
Chuck Lever99722fe2018-05-07 15:28:25 -0400155 void *sc_xprt_buf;
Chuck Lever4201c7462018-05-07 15:28:04 -0400156 int sc_page_count;
Chuck Lever25fd86e2018-05-07 15:28:09 -0400157 int sc_cur_sge_no;
Chuck Lever4201c7462018-05-07 15:28:04 -0400158 struct page *sc_pages[RPCSVC_MAXPAGES];
Chuck Lever25fd86e2018-05-07 15:28:09 -0400159 struct ib_sge sc_sges[];
Chuck Lever4201c7462018-05-07 15:28:04 -0400160};
161
Chuck Lever5d252f92016-01-07 14:50:10 -0500162/* svc_rdma_backchannel.c */
163extern int svc_rdma_handle_bc_reply(struct rpc_xprt *xprt,
Chuck Leverf5821c72017-04-09 13:06:49 -0400164 __be32 *rdma_resp,
Chuck Lever5d252f92016-01-07 14:50:10 -0500165 struct xdr_buf *rcvbuf);
166
Tom Tuckerd21b05f2007-12-12 16:13:17 -0600167/* svc_rdma_recvfrom.c */
Chuck Leverecf85b22018-05-07 15:27:21 -0400168extern void svc_rdma_recv_ctxts_destroy(struct svcxprt_rdma *rdma);
169extern bool svc_rdma_post_recvs(struct svcxprt_rdma *rdma);
170extern void svc_rdma_recv_ctxt_put(struct svcxprt_rdma *rdma,
Chuck Lever1e5f4162018-05-07 15:27:32 -0400171 struct svc_rdma_recv_ctxt *ctxt);
Chuck Leverecf85b22018-05-07 15:27:21 -0400172extern void svc_rdma_flush_recv_queues(struct svcxprt_rdma *rdma);
Chuck Lever23cf1ee2020-03-31 17:02:33 -0400173extern void svc_rdma_release_rqst(struct svc_rqst *rqstp);
Tom Tuckerd21b05f2007-12-12 16:13:17 -0600174extern int svc_rdma_recvfrom(struct svc_rqst *);
175
Chuck Leverf13193f2017-04-09 13:06:16 -0400176/* svc_rdma_rw.c */
177extern void svc_rdma_destroy_rw_ctxts(struct svcxprt_rdma *rdma);
Chuck Lever026d9582017-06-23 17:18:24 -0400178extern int svc_rdma_recv_read_chunk(struct svcxprt_rdma *rdma,
179 struct svc_rqst *rqstp,
Chuck Leverecf85b22018-05-07 15:27:21 -0400180 struct svc_rdma_recv_ctxt *head, __be32 *p);
Chuck Leverf13193f2017-04-09 13:06:16 -0400181extern int svc_rdma_send_write_chunk(struct svcxprt_rdma *rdma,
Chuck Lever41205532020-03-02 14:45:53 -0500182 __be32 *wr_ch, struct xdr_buf *xdr,
183 unsigned int offset,
184 unsigned long length);
Chuck Leverf13193f2017-04-09 13:06:16 -0400185extern int svc_rdma_send_reply_chunk(struct svcxprt_rdma *rdma,
Chuck Lever6fa57852020-03-02 15:02:19 -0500186 const struct svc_rdma_recv_ctxt *rctxt,
Chuck Leverf13193f2017-04-09 13:06:16 -0400187 struct xdr_buf *xdr);
188
Tom Tuckerd21b05f2007-12-12 16:13:17 -0600189/* svc_rdma_sendto.c */
Chuck Lever4201c7462018-05-07 15:28:04 -0400190extern void svc_rdma_send_ctxts_destroy(struct svcxprt_rdma *rdma);
191extern struct svc_rdma_send_ctxt *
192 svc_rdma_send_ctxt_get(struct svcxprt_rdma *rdma);
193extern void svc_rdma_send_ctxt_put(struct svcxprt_rdma *rdma,
194 struct svc_rdma_send_ctxt *ctxt);
195extern int svc_rdma_send(struct svcxprt_rdma *rdma, struct ib_send_wr *wr);
Chuck Lever99722fe2018-05-07 15:28:25 -0400196extern int svc_rdma_map_reply_msg(struct svcxprt_rdma *rdma,
Chuck Lever45547552020-03-02 15:02:19 -0500197 struct svc_rdma_send_ctxt *sctxt,
198 const struct svc_rdma_recv_ctxt *rctxt,
199 struct xdr_buf *xdr);
Tom Tuckerd21b05f2007-12-12 16:13:17 -0600200extern int svc_rdma_sendto(struct svc_rqst *);
Chuck Lever41205532020-03-02 14:45:53 -0500201extern int svc_rdma_read_payload(struct svc_rqst *rqstp, unsigned int offset,
202 unsigned int length);
Tom Tuckerd21b05f2007-12-12 16:13:17 -0600203
204/* svc_rdma_transport.c */
Tom Tuckerd21b05f2007-12-12 16:13:17 -0600205extern int svc_rdma_create_listen(struct svc_serv *, int, struct sockaddr *);
Tom Tuckerd21b05f2007-12-12 16:13:17 -0600206extern void svc_sq_reap(struct svcxprt_rdma *);
207extern void svc_rq_reap(struct svcxprt_rdma *);
Tom Tuckerd21b05f2007-12-12 16:13:17 -0600208
Chuck Lever94684312015-10-24 17:28:16 -0400209extern struct svc_xprt_class svc_rdma_class;
210#ifdef CONFIG_SUNRPC_BACKCHANNEL
211extern struct svc_xprt_class svc_rdma_bc_class;
212#endif
213
Tom Tuckerd21b05f2007-12-12 16:13:17 -0600214/* svc_rdma.c */
215extern int svc_rdma_init(void);
216extern void svc_rdma_cleanup(void);
217
Tom Tuckerd21b05f2007-12-12 16:13:17 -0600218#endif