blob: f4a9fff829e0e5193697ad334065dd423ab4fe0f [file] [log] [blame]
Andy Groverfcd8b7c2009-02-24 15:30:36 +00001/*
2 * Copyright (c) 2006 Oracle. All rights reserved.
3 *
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
8 * OpenIB.org BSD license below:
9 *
10 * Redistribution and use in source and binary forms, with or
11 * without modification, are permitted provided that the following
12 * conditions are met:
13 *
14 * - Redistributions of source code must retain the above
15 * copyright notice, this list of conditions and the following
16 * 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
21 * provided with the distribution.
22 *
23 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30 * SOFTWARE.
31 *
32 */
33#include <linux/kernel.h>
34#include <linux/in.h>
35#include <linux/if.h>
36#include <linux/netdevice.h>
37#include <linux/inetdevice.h>
38#include <linux/if_arp.h>
39#include <linux/delay.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090040#include <linux/slab.h>
Paul Gortmaker3a9a2312011-05-27 09:12:25 -040041#include <linux/module.h>
Andy Groverfcd8b7c2009-02-24 15:30:36 +000042
43#include "rds.h"
44#include "iw.h"
45
46unsigned int fastreg_pool_size = RDS_FASTREG_POOL_SIZE;
47unsigned int fastreg_message_size = RDS_FASTREG_SIZE + 1; /* +1 allows for unaligned MRs */
48
49module_param(fastreg_pool_size, int, 0444);
50MODULE_PARM_DESC(fastreg_pool_size, " Max number of fastreg MRs per device");
51module_param(fastreg_message_size, int, 0444);
52MODULE_PARM_DESC(fastreg_message_size, " Max size of a RDMA transfer (fastreg MRs)");
53
54struct list_head rds_iw_devices;
55
Andy Grover745cbcc2009-04-01 08:20:19 +000056/* NOTE: if also grabbing iwdev lock, grab this first */
Andy Groverfcd8b7c2009-02-24 15:30:36 +000057DEFINE_SPINLOCK(iw_nodev_conns_lock);
58LIST_HEAD(iw_nodev_conns);
59
stephen hemmingerff51bf82010-10-19 08:08:33 +000060static void rds_iw_add_one(struct ib_device *device)
Andy Groverfcd8b7c2009-02-24 15:30:36 +000061{
62 struct rds_iw_device *rds_iwdev;
Andy Groverfcd8b7c2009-02-24 15:30:36 +000063
64 /* Only handle iwarp devices */
65 if (device->node_type != RDMA_NODE_RNIC)
66 return;
67
Andy Groverfcd8b7c2009-02-24 15:30:36 +000068 rds_iwdev = kmalloc(sizeof *rds_iwdev, GFP_KERNEL);
69 if (!rds_iwdev)
Or Gerlitz03532612015-12-18 10:59:47 +020070 return;
Andy Groverfcd8b7c2009-02-24 15:30:36 +000071
72 spin_lock_init(&rds_iwdev->spinlock);
73
Or Gerlitz03532612015-12-18 10:59:47 +020074 rds_iwdev->dma_local_lkey = !!(device->attrs.device_cap_flags & IB_DEVICE_LOCAL_DMA_LKEY);
75 rds_iwdev->max_wrs = device->attrs.max_qp_wr;
76 rds_iwdev->max_sge = min(device->attrs.max_sge, RDS_IW_MAX_SGE);
Andy Groverfcd8b7c2009-02-24 15:30:36 +000077
Andy Groverfcd8b7c2009-02-24 15:30:36 +000078 rds_iwdev->dev = device;
79 rds_iwdev->pd = ib_alloc_pd(device);
80 if (IS_ERR(rds_iwdev->pd))
81 goto free_dev;
82
83 if (!rds_iwdev->dma_local_lkey) {
Andy Grovered9e3522009-07-17 13:13:35 +000084 rds_iwdev->mr = ib_get_dma_mr(rds_iwdev->pd,
85 IB_ACCESS_REMOTE_READ |
86 IB_ACCESS_REMOTE_WRITE |
87 IB_ACCESS_LOCAL_WRITE);
Andy Groverfcd8b7c2009-02-24 15:30:36 +000088 if (IS_ERR(rds_iwdev->mr))
89 goto err_pd;
90 } else
91 rds_iwdev->mr = NULL;
92
93 rds_iwdev->mr_pool = rds_iw_create_mr_pool(rds_iwdev);
94 if (IS_ERR(rds_iwdev->mr_pool)) {
95 rds_iwdev->mr_pool = NULL;
96 goto err_mr;
97 }
98
99 INIT_LIST_HEAD(&rds_iwdev->cm_id_list);
100 INIT_LIST_HEAD(&rds_iwdev->conn_list);
101 list_add_tail(&rds_iwdev->list, &rds_iw_devices);
102
103 ib_set_client_data(device, &rds_iw_client, rds_iwdev);
Or Gerlitz03532612015-12-18 10:59:47 +0200104 return;
Andy Groverfcd8b7c2009-02-24 15:30:36 +0000105
106err_mr:
107 if (rds_iwdev->mr)
108 ib_dereg_mr(rds_iwdev->mr);
109err_pd:
110 ib_dealloc_pd(rds_iwdev->pd);
111free_dev:
112 kfree(rds_iwdev);
Andy Groverfcd8b7c2009-02-24 15:30:36 +0000113}
114
Haggai Eran7c1eb452015-07-30 17:50:14 +0300115static void rds_iw_remove_one(struct ib_device *device, void *client_data)
Andy Groverfcd8b7c2009-02-24 15:30:36 +0000116{
Haggai Eran7c1eb452015-07-30 17:50:14 +0300117 struct rds_iw_device *rds_iwdev = client_data;
Andy Groverfcd8b7c2009-02-24 15:30:36 +0000118 struct rds_iw_cm_id *i_cm_id, *next;
119
Andy Groverfcd8b7c2009-02-24 15:30:36 +0000120 if (!rds_iwdev)
121 return;
122
123 spin_lock_irq(&rds_iwdev->spinlock);
124 list_for_each_entry_safe(i_cm_id, next, &rds_iwdev->cm_id_list, list) {
125 list_del(&i_cm_id->list);
126 kfree(i_cm_id);
127 }
128 spin_unlock_irq(&rds_iwdev->spinlock);
129
Andy Grover745cbcc2009-04-01 08:20:19 +0000130 rds_iw_destroy_conns(rds_iwdev);
Andy Groverfcd8b7c2009-02-24 15:30:36 +0000131
132 if (rds_iwdev->mr_pool)
133 rds_iw_destroy_mr_pool(rds_iwdev->mr_pool);
134
135 if (rds_iwdev->mr)
136 ib_dereg_mr(rds_iwdev->mr);
137
Jason Gunthorpe7dd78642015-08-05 14:34:31 -0600138 ib_dealloc_pd(rds_iwdev->pd);
Andy Groverfcd8b7c2009-02-24 15:30:36 +0000139
140 list_del(&rds_iwdev->list);
141 kfree(rds_iwdev);
142}
143
144struct ib_client rds_iw_client = {
145 .name = "rds_iw",
146 .add = rds_iw_add_one,
147 .remove = rds_iw_remove_one
148};
149
150static int rds_iw_conn_info_visitor(struct rds_connection *conn,
151 void *buffer)
152{
153 struct rds_info_rdma_connection *iinfo = buffer;
154 struct rds_iw_connection *ic;
155
156 /* We will only ever look at IB transports */
157 if (conn->c_trans != &rds_iw_transport)
158 return 0;
159
160 iinfo->src_addr = conn->c_laddr;
161 iinfo->dst_addr = conn->c_faddr;
162
163 memset(&iinfo->src_gid, 0, sizeof(iinfo->src_gid));
164 memset(&iinfo->dst_gid, 0, sizeof(iinfo->dst_gid));
165 if (rds_conn_state(conn) == RDS_CONN_UP) {
166 struct rds_iw_device *rds_iwdev;
167 struct rdma_dev_addr *dev_addr;
168
169 ic = conn->c_transport_data;
170 dev_addr = &ic->i_cm_id->route.addr.dev_addr;
171
Sean Hefty6f8372b2009-11-19 13:26:06 -0800172 rdma_addr_get_sgid(dev_addr, (union ib_gid *) &iinfo->src_gid);
173 rdma_addr_get_dgid(dev_addr, (union ib_gid *) &iinfo->dst_gid);
Andy Groverfcd8b7c2009-02-24 15:30:36 +0000174
175 rds_iwdev = ib_get_client_data(ic->i_cm_id->device, &rds_iw_client);
176 iinfo->max_send_wr = ic->i_send_ring.w_nr;
177 iinfo->max_recv_wr = ic->i_recv_ring.w_nr;
178 iinfo->max_send_sge = rds_iwdev->max_sge;
179 rds_iw_get_mr_info(rds_iwdev, iinfo);
180 }
181 return 1;
182}
183
184static void rds_iw_ic_info(struct socket *sock, unsigned int len,
185 struct rds_info_iterator *iter,
186 struct rds_info_lengths *lens)
187{
188 rds_for_each_conn_info(sock, len, iter, lens,
189 rds_iw_conn_info_visitor,
190 sizeof(struct rds_info_rdma_connection));
191}
192
193
194/*
195 * Early RDS/IB was built to only bind to an address if there is an IPoIB
196 * device with that address set.
197 *
198 * If it were me, I'd advocate for something more flexible. Sending and
199 * receiving should be device-agnostic. Transports would try and maintain
200 * connections between peers who have messages queued. Userspace would be
201 * allowed to influence which paths have priority. We could call userspace
202 * asserting this policy "routing".
203 */
Sowmini Varadhand5a8ac22015-08-05 01:43:25 -0400204static int rds_iw_laddr_check(struct net *net, __be32 addr)
Andy Groverfcd8b7c2009-02-24 15:30:36 +0000205{
206 int ret;
207 struct rdma_cm_id *cm_id;
208 struct sockaddr_in sin;
209
210 /* Create a CMA ID and try to bind it. This catches both
211 * IB and iWARP capable NICs.
212 */
Guy Shapirofa201052015-10-22 15:20:10 +0300213 cm_id = rdma_create_id(&init_net, NULL, NULL, RDMA_PS_TCP, IB_QPT_RC);
Dan Carpenter5d57eeb2009-04-09 14:09:45 +0000214 if (IS_ERR(cm_id))
215 return PTR_ERR(cm_id);
Andy Groverfcd8b7c2009-02-24 15:30:36 +0000216
217 memset(&sin, 0, sizeof(sin));
218 sin.sin_family = AF_INET;
219 sin.sin_addr.s_addr = addr;
220
221 /* rdma_bind_addr will only succeed for IB & iWARP devices */
222 ret = rdma_bind_addr(cm_id, (struct sockaddr *)&sin);
223 /* due to this, we will claim to support IB devices unless we
224 check node_type. */
Sasha Levinbf39b422014-03-29 20:39:35 -0400225 if (ret || !cm_id->device ||
226 cm_id->device->node_type != RDMA_NODE_RNIC)
Andy Groverfcd8b7c2009-02-24 15:30:36 +0000227 ret = -EADDRNOTAVAIL;
228
229 rdsdebug("addr %pI4 ret %d node type %d\n",
230 &addr, ret,
231 cm_id->device ? cm_id->device->node_type : -1);
232
233 rdma_destroy_id(cm_id);
234
235 return ret;
236}
237
238void rds_iw_exit(void)
239{
240 rds_info_deregister_func(RDS_INFO_IWARP_CONNECTIONS, rds_iw_ic_info);
Andy Grover745cbcc2009-04-01 08:20:19 +0000241 rds_iw_destroy_nodev_conns();
Andy Groverfcd8b7c2009-02-24 15:30:36 +0000242 ib_unregister_client(&rds_iw_client);
243 rds_iw_sysctl_exit();
244 rds_iw_recv_exit();
245 rds_trans_unregister(&rds_iw_transport);
246}
247
248struct rds_transport rds_iw_transport = {
249 .laddr_check = rds_iw_laddr_check,
250 .xmit_complete = rds_iw_xmit_complete,
251 .xmit = rds_iw_xmit,
Andy Groverfcd8b7c2009-02-24 15:30:36 +0000252 .xmit_rdma = rds_iw_xmit_rdma,
253 .recv = rds_iw_recv,
254 .conn_alloc = rds_iw_conn_alloc,
255 .conn_free = rds_iw_conn_free,
256 .conn_connect = rds_iw_conn_connect,
257 .conn_shutdown = rds_iw_conn_shutdown,
258 .inc_copy_to_user = rds_iw_inc_copy_to_user,
Andy Groverfcd8b7c2009-02-24 15:30:36 +0000259 .inc_free = rds_iw_inc_free,
260 .cm_initiate_connect = rds_iw_cm_initiate_connect,
261 .cm_handle_connect = rds_iw_cm_handle_connect,
262 .cm_connect_complete = rds_iw_cm_connect_complete,
263 .stats_info_copy = rds_iw_stats_info_copy,
264 .exit = rds_iw_exit,
265 .get_mr = rds_iw_get_mr,
266 .sync_mr = rds_iw_sync_mr,
267 .free_mr = rds_iw_free_mr,
268 .flush_mrs = rds_iw_flush_mrs,
269 .t_owner = THIS_MODULE,
270 .t_name = "iwarp",
Andy Grover335776b2009-08-21 12:28:34 +0000271 .t_type = RDS_TRANS_IWARP,
Andy Groverfcd8b7c2009-02-24 15:30:36 +0000272 .t_prefer_loopback = 1,
273};
274
Zach Brownef87b7e2010-07-09 12:26:20 -0700275int rds_iw_init(void)
Andy Groverfcd8b7c2009-02-24 15:30:36 +0000276{
277 int ret;
278
279 INIT_LIST_HEAD(&rds_iw_devices);
280
281 ret = ib_register_client(&rds_iw_client);
282 if (ret)
283 goto out;
284
285 ret = rds_iw_sysctl_init();
286 if (ret)
287 goto out_ibreg;
288
289 ret = rds_iw_recv_init();
290 if (ret)
291 goto out_sysctl;
292
293 ret = rds_trans_register(&rds_iw_transport);
294 if (ret)
295 goto out_recv;
296
297 rds_info_register_func(RDS_INFO_IWARP_CONNECTIONS, rds_iw_ic_info);
298
299 goto out;
300
301out_recv:
302 rds_iw_recv_exit();
303out_sysctl:
304 rds_iw_sysctl_exit();
305out_ibreg:
306 ib_unregister_client(&rds_iw_client);
307out:
308 return ret;
309}
310
311MODULE_LICENSE("GPL");
312