iw.c 8.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334
  1. /*
  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>
  40. #include "rds.h"
  41. #include "iw.h"
  42. unsigned int fastreg_pool_size = RDS_FASTREG_POOL_SIZE;
  43. unsigned int fastreg_message_size = RDS_FASTREG_SIZE + 1; /* +1 allows for unaligned MRs */
  44. module_param(fastreg_pool_size, int, 0444);
  45. MODULE_PARM_DESC(fastreg_pool_size, " Max number of fastreg MRs per device");
  46. module_param(fastreg_message_size, int, 0444);
  47. MODULE_PARM_DESC(fastreg_message_size, " Max size of a RDMA transfer (fastreg MRs)");
  48. struct list_head rds_iw_devices;
  49. /* NOTE: if also grabbing iwdev lock, grab this first */
  50. DEFINE_SPINLOCK(iw_nodev_conns_lock);
  51. LIST_HEAD(iw_nodev_conns);
  52. void rds_iw_add_one(struct ib_device *device)
  53. {
  54. struct rds_iw_device *rds_iwdev;
  55. struct ib_device_attr *dev_attr;
  56. /* Only handle iwarp devices */
  57. if (device->node_type != RDMA_NODE_RNIC)
  58. return;
  59. dev_attr = kmalloc(sizeof *dev_attr, GFP_KERNEL);
  60. if (!dev_attr)
  61. return;
  62. if (ib_query_device(device, dev_attr)) {
  63. rdsdebug("Query device failed for %s\n", device->name);
  64. goto free_attr;
  65. }
  66. rds_iwdev = kmalloc(sizeof *rds_iwdev, GFP_KERNEL);
  67. if (!rds_iwdev)
  68. goto free_attr;
  69. spin_lock_init(&rds_iwdev->spinlock);
  70. rds_iwdev->dma_local_lkey = !!(dev_attr->device_cap_flags & IB_DEVICE_LOCAL_DMA_LKEY);
  71. rds_iwdev->max_wrs = dev_attr->max_qp_wr;
  72. rds_iwdev->max_sge = min(dev_attr->max_sge, RDS_IW_MAX_SGE);
  73. rds_iwdev->page_shift = max(PAGE_SHIFT, ffs(dev_attr->page_size_cap) - 1);
  74. rds_iwdev->dev = device;
  75. rds_iwdev->pd = ib_alloc_pd(device);
  76. if (IS_ERR(rds_iwdev->pd))
  77. goto free_dev;
  78. if (!rds_iwdev->dma_local_lkey) {
  79. if (device->node_type != RDMA_NODE_RNIC) {
  80. rds_iwdev->mr = ib_get_dma_mr(rds_iwdev->pd,
  81. IB_ACCESS_LOCAL_WRITE);
  82. } else {
  83. rds_iwdev->mr = ib_get_dma_mr(rds_iwdev->pd,
  84. IB_ACCESS_REMOTE_READ |
  85. IB_ACCESS_REMOTE_WRITE |
  86. IB_ACCESS_LOCAL_WRITE);
  87. }
  88. if (IS_ERR(rds_iwdev->mr))
  89. goto err_pd;
  90. } else
  91. rds_iwdev->mr = NULL;
  92. rds_iwdev->mr_pool = rds_iw_create_mr_pool(rds_iwdev);
  93. if (IS_ERR(rds_iwdev->mr_pool)) {
  94. rds_iwdev->mr_pool = NULL;
  95. goto err_mr;
  96. }
  97. INIT_LIST_HEAD(&rds_iwdev->cm_id_list);
  98. INIT_LIST_HEAD(&rds_iwdev->conn_list);
  99. list_add_tail(&rds_iwdev->list, &rds_iw_devices);
  100. ib_set_client_data(device, &rds_iw_client, rds_iwdev);
  101. goto free_attr;
  102. err_mr:
  103. if (rds_iwdev->mr)
  104. ib_dereg_mr(rds_iwdev->mr);
  105. err_pd:
  106. ib_dealloc_pd(rds_iwdev->pd);
  107. free_dev:
  108. kfree(rds_iwdev);
  109. free_attr:
  110. kfree(dev_attr);
  111. }
  112. void rds_iw_remove_one(struct ib_device *device)
  113. {
  114. struct rds_iw_device *rds_iwdev;
  115. struct rds_iw_cm_id *i_cm_id, *next;
  116. rds_iwdev = ib_get_client_data(device, &rds_iw_client);
  117. if (!rds_iwdev)
  118. return;
  119. spin_lock_irq(&rds_iwdev->spinlock);
  120. list_for_each_entry_safe(i_cm_id, next, &rds_iwdev->cm_id_list, list) {
  121. list_del(&i_cm_id->list);
  122. kfree(i_cm_id);
  123. }
  124. spin_unlock_irq(&rds_iwdev->spinlock);
  125. rds_iw_destroy_conns(rds_iwdev);
  126. if (rds_iwdev->mr_pool)
  127. rds_iw_destroy_mr_pool(rds_iwdev->mr_pool);
  128. if (rds_iwdev->mr)
  129. ib_dereg_mr(rds_iwdev->mr);
  130. while (ib_dealloc_pd(rds_iwdev->pd)) {
  131. rdsdebug("Failed to dealloc pd %p\n", rds_iwdev->pd);
  132. msleep(1);
  133. }
  134. list_del(&rds_iwdev->list);
  135. kfree(rds_iwdev);
  136. }
  137. struct ib_client rds_iw_client = {
  138. .name = "rds_iw",
  139. .add = rds_iw_add_one,
  140. .remove = rds_iw_remove_one
  141. };
  142. static int rds_iw_conn_info_visitor(struct rds_connection *conn,
  143. void *buffer)
  144. {
  145. struct rds_info_rdma_connection *iinfo = buffer;
  146. struct rds_iw_connection *ic;
  147. /* We will only ever look at IB transports */
  148. if (conn->c_trans != &rds_iw_transport)
  149. return 0;
  150. iinfo->src_addr = conn->c_laddr;
  151. iinfo->dst_addr = conn->c_faddr;
  152. memset(&iinfo->src_gid, 0, sizeof(iinfo->src_gid));
  153. memset(&iinfo->dst_gid, 0, sizeof(iinfo->dst_gid));
  154. if (rds_conn_state(conn) == RDS_CONN_UP) {
  155. struct rds_iw_device *rds_iwdev;
  156. struct rdma_dev_addr *dev_addr;
  157. ic = conn->c_transport_data;
  158. dev_addr = &ic->i_cm_id->route.addr.dev_addr;
  159. ib_addr_get_sgid(dev_addr, (union ib_gid *) &iinfo->src_gid);
  160. ib_addr_get_dgid(dev_addr, (union ib_gid *) &iinfo->dst_gid);
  161. rds_iwdev = ib_get_client_data(ic->i_cm_id->device, &rds_iw_client);
  162. iinfo->max_send_wr = ic->i_send_ring.w_nr;
  163. iinfo->max_recv_wr = ic->i_recv_ring.w_nr;
  164. iinfo->max_send_sge = rds_iwdev->max_sge;
  165. rds_iw_get_mr_info(rds_iwdev, iinfo);
  166. }
  167. return 1;
  168. }
  169. static void rds_iw_ic_info(struct socket *sock, unsigned int len,
  170. struct rds_info_iterator *iter,
  171. struct rds_info_lengths *lens)
  172. {
  173. rds_for_each_conn_info(sock, len, iter, lens,
  174. rds_iw_conn_info_visitor,
  175. sizeof(struct rds_info_rdma_connection));
  176. }
  177. /*
  178. * Early RDS/IB was built to only bind to an address if there is an IPoIB
  179. * device with that address set.
  180. *
  181. * If it were me, I'd advocate for something more flexible. Sending and
  182. * receiving should be device-agnostic. Transports would try and maintain
  183. * connections between peers who have messages queued. Userspace would be
  184. * allowed to influence which paths have priority. We could call userspace
  185. * asserting this policy "routing".
  186. */
  187. static int rds_iw_laddr_check(__be32 addr)
  188. {
  189. int ret;
  190. struct rdma_cm_id *cm_id;
  191. struct sockaddr_in sin;
  192. /* Create a CMA ID and try to bind it. This catches both
  193. * IB and iWARP capable NICs.
  194. */
  195. cm_id = rdma_create_id(NULL, NULL, RDMA_PS_TCP);
  196. if (!cm_id)
  197. return -EADDRNOTAVAIL;
  198. memset(&sin, 0, sizeof(sin));
  199. sin.sin_family = AF_INET;
  200. sin.sin_addr.s_addr = addr;
  201. /* rdma_bind_addr will only succeed for IB & iWARP devices */
  202. ret = rdma_bind_addr(cm_id, (struct sockaddr *)&sin);
  203. /* due to this, we will claim to support IB devices unless we
  204. check node_type. */
  205. if (ret || cm_id->device->node_type != RDMA_NODE_RNIC)
  206. ret = -EADDRNOTAVAIL;
  207. rdsdebug("addr %pI4 ret %d node type %d\n",
  208. &addr, ret,
  209. cm_id->device ? cm_id->device->node_type : -1);
  210. rdma_destroy_id(cm_id);
  211. return ret;
  212. }
  213. void rds_iw_exit(void)
  214. {
  215. rds_info_deregister_func(RDS_INFO_IWARP_CONNECTIONS, rds_iw_ic_info);
  216. rds_iw_destroy_nodev_conns();
  217. ib_unregister_client(&rds_iw_client);
  218. rds_iw_sysctl_exit();
  219. rds_iw_recv_exit();
  220. rds_trans_unregister(&rds_iw_transport);
  221. }
  222. struct rds_transport rds_iw_transport = {
  223. .laddr_check = rds_iw_laddr_check,
  224. .xmit_complete = rds_iw_xmit_complete,
  225. .xmit = rds_iw_xmit,
  226. .xmit_cong_map = NULL,
  227. .xmit_rdma = rds_iw_xmit_rdma,
  228. .recv = rds_iw_recv,
  229. .conn_alloc = rds_iw_conn_alloc,
  230. .conn_free = rds_iw_conn_free,
  231. .conn_connect = rds_iw_conn_connect,
  232. .conn_shutdown = rds_iw_conn_shutdown,
  233. .inc_copy_to_user = rds_iw_inc_copy_to_user,
  234. .inc_purge = rds_iw_inc_purge,
  235. .inc_free = rds_iw_inc_free,
  236. .cm_initiate_connect = rds_iw_cm_initiate_connect,
  237. .cm_handle_connect = rds_iw_cm_handle_connect,
  238. .cm_connect_complete = rds_iw_cm_connect_complete,
  239. .stats_info_copy = rds_iw_stats_info_copy,
  240. .exit = rds_iw_exit,
  241. .get_mr = rds_iw_get_mr,
  242. .sync_mr = rds_iw_sync_mr,
  243. .free_mr = rds_iw_free_mr,
  244. .flush_mrs = rds_iw_flush_mrs,
  245. .t_owner = THIS_MODULE,
  246. .t_name = "iwarp",
  247. .t_prefer_loopback = 1,
  248. };
  249. int __init rds_iw_init(void)
  250. {
  251. int ret;
  252. INIT_LIST_HEAD(&rds_iw_devices);
  253. ret = ib_register_client(&rds_iw_client);
  254. if (ret)
  255. goto out;
  256. ret = rds_iw_sysctl_init();
  257. if (ret)
  258. goto out_ibreg;
  259. ret = rds_iw_recv_init();
  260. if (ret)
  261. goto out_sysctl;
  262. ret = rds_trans_register(&rds_iw_transport);
  263. if (ret)
  264. goto out_recv;
  265. rds_info_register_func(RDS_INFO_IWARP_CONNECTIONS, rds_iw_ic_info);
  266. goto out;
  267. out_recv:
  268. rds_iw_recv_exit();
  269. out_sysctl:
  270. rds_iw_sysctl_exit();
  271. out_ibreg:
  272. ib_unregister_client(&rds_iw_client);
  273. out:
  274. return ret;
  275. }
  276. MODULE_LICENSE("GPL");