rdma_transport.c 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251
  1. /*
  2. * Copyright (c) 2009 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 <rdma/rdma_cm.h>
  34. #include "rdma_transport.h"
  35. static struct rdma_cm_id *rds_rdma_listen_id;
  36. static char *rds_cm_event_strings[] = {
  37. #define RDS_CM_EVENT_STRING(foo) \
  38. [RDMA_CM_EVENT_##foo] = __stringify(RDMA_CM_EVENT_##foo)
  39. RDS_CM_EVENT_STRING(ADDR_RESOLVED),
  40. RDS_CM_EVENT_STRING(ADDR_ERROR),
  41. RDS_CM_EVENT_STRING(ROUTE_RESOLVED),
  42. RDS_CM_EVENT_STRING(ROUTE_ERROR),
  43. RDS_CM_EVENT_STRING(CONNECT_REQUEST),
  44. RDS_CM_EVENT_STRING(CONNECT_RESPONSE),
  45. RDS_CM_EVENT_STRING(CONNECT_ERROR),
  46. RDS_CM_EVENT_STRING(UNREACHABLE),
  47. RDS_CM_EVENT_STRING(REJECTED),
  48. RDS_CM_EVENT_STRING(ESTABLISHED),
  49. RDS_CM_EVENT_STRING(DISCONNECTED),
  50. RDS_CM_EVENT_STRING(DEVICE_REMOVAL),
  51. RDS_CM_EVENT_STRING(MULTICAST_JOIN),
  52. RDS_CM_EVENT_STRING(MULTICAST_ERROR),
  53. RDS_CM_EVENT_STRING(ADDR_CHANGE),
  54. RDS_CM_EVENT_STRING(TIMEWAIT_EXIT),
  55. #undef RDS_CM_EVENT_STRING
  56. };
  57. static char *rds_cm_event_str(enum rdma_cm_event_type type)
  58. {
  59. return rds_str_array(rds_cm_event_strings,
  60. ARRAY_SIZE(rds_cm_event_strings), type);
  61. };
  62. int rds_rdma_cm_event_handler(struct rdma_cm_id *cm_id,
  63. struct rdma_cm_event *event)
  64. {
  65. /* this can be null in the listening path */
  66. struct rds_connection *conn = cm_id->context;
  67. struct rds_transport *trans;
  68. int ret = 0;
  69. rdsdebug("conn %p id %p handling event %u (%s)\n", conn, cm_id,
  70. event->event, rds_cm_event_str(event->event));
  71. if (cm_id->device->node_type == RDMA_NODE_RNIC)
  72. trans = &rds_iw_transport;
  73. else
  74. trans = &rds_ib_transport;
  75. /* Prevent shutdown from tearing down the connection
  76. * while we're executing. */
  77. if (conn) {
  78. mutex_lock(&conn->c_cm_lock);
  79. /* If the connection is being shut down, bail out
  80. * right away. We return 0 so cm_id doesn't get
  81. * destroyed prematurely */
  82. if (rds_conn_state(conn) == RDS_CONN_DISCONNECTING) {
  83. /* Reject incoming connections while we're tearing
  84. * down an existing one. */
  85. if (event->event == RDMA_CM_EVENT_CONNECT_REQUEST)
  86. ret = 1;
  87. goto out;
  88. }
  89. }
  90. switch (event->event) {
  91. case RDMA_CM_EVENT_CONNECT_REQUEST:
  92. ret = trans->cm_handle_connect(cm_id, event);
  93. break;
  94. case RDMA_CM_EVENT_ADDR_RESOLVED:
  95. /* XXX do we need to clean up if this fails? */
  96. ret = rdma_resolve_route(cm_id,
  97. RDS_RDMA_RESOLVE_TIMEOUT_MS);
  98. break;
  99. case RDMA_CM_EVENT_ROUTE_RESOLVED:
  100. /* XXX worry about racing with listen acceptance */
  101. ret = trans->cm_initiate_connect(cm_id);
  102. break;
  103. case RDMA_CM_EVENT_ESTABLISHED:
  104. trans->cm_connect_complete(conn, event);
  105. break;
  106. case RDMA_CM_EVENT_ADDR_ERROR:
  107. case RDMA_CM_EVENT_ROUTE_ERROR:
  108. case RDMA_CM_EVENT_CONNECT_ERROR:
  109. case RDMA_CM_EVENT_UNREACHABLE:
  110. case RDMA_CM_EVENT_REJECTED:
  111. case RDMA_CM_EVENT_DEVICE_REMOVAL:
  112. case RDMA_CM_EVENT_ADDR_CHANGE:
  113. if (conn)
  114. rds_conn_drop(conn);
  115. break;
  116. case RDMA_CM_EVENT_DISCONNECTED:
  117. rdsdebug("DISCONNECT event - dropping connection "
  118. "%pI4->%pI4\n", &conn->c_laddr,
  119. &conn->c_faddr);
  120. rds_conn_drop(conn);
  121. break;
  122. default:
  123. /* things like device disconnect? */
  124. printk(KERN_ERR "RDS: unknown event %u (%s)!\n",
  125. event->event, rds_cm_event_str(event->event));
  126. break;
  127. }
  128. out:
  129. if (conn)
  130. mutex_unlock(&conn->c_cm_lock);
  131. rdsdebug("id %p event %u (%s) handling ret %d\n", cm_id, event->event,
  132. rds_cm_event_str(event->event), ret);
  133. return ret;
  134. }
  135. static int rds_rdma_listen_init(void)
  136. {
  137. struct sockaddr_in sin;
  138. struct rdma_cm_id *cm_id;
  139. int ret;
  140. cm_id = rdma_create_id(rds_rdma_cm_event_handler, NULL, RDMA_PS_TCP,
  141. IB_QPT_RC);
  142. if (IS_ERR(cm_id)) {
  143. ret = PTR_ERR(cm_id);
  144. printk(KERN_ERR "RDS/RDMA: failed to setup listener, "
  145. "rdma_create_id() returned %d\n", ret);
  146. return ret;
  147. }
  148. sin.sin_family = AF_INET,
  149. sin.sin_addr.s_addr = (__force u32)htonl(INADDR_ANY);
  150. sin.sin_port = (__force u16)htons(RDS_PORT);
  151. /*
  152. * XXX I bet this binds the cm_id to a device. If we want to support
  153. * fail-over we'll have to take this into consideration.
  154. */
  155. ret = rdma_bind_addr(cm_id, (struct sockaddr *)&sin);
  156. if (ret) {
  157. printk(KERN_ERR "RDS/RDMA: failed to setup listener, "
  158. "rdma_bind_addr() returned %d\n", ret);
  159. goto out;
  160. }
  161. ret = rdma_listen(cm_id, 128);
  162. if (ret) {
  163. printk(KERN_ERR "RDS/RDMA: failed to setup listener, "
  164. "rdma_listen() returned %d\n", ret);
  165. goto out;
  166. }
  167. rdsdebug("cm %p listening on port %u\n", cm_id, RDS_PORT);
  168. rds_rdma_listen_id = cm_id;
  169. cm_id = NULL;
  170. out:
  171. if (cm_id)
  172. rdma_destroy_id(cm_id);
  173. return ret;
  174. }
  175. static void rds_rdma_listen_stop(void)
  176. {
  177. if (rds_rdma_listen_id) {
  178. rdsdebug("cm %p\n", rds_rdma_listen_id);
  179. rdma_destroy_id(rds_rdma_listen_id);
  180. rds_rdma_listen_id = NULL;
  181. }
  182. }
  183. static int rds_rdma_init(void)
  184. {
  185. int ret;
  186. ret = rds_rdma_listen_init();
  187. if (ret)
  188. goto out;
  189. ret = rds_iw_init();
  190. if (ret)
  191. goto err_iw_init;
  192. ret = rds_ib_init();
  193. if (ret)
  194. goto err_ib_init;
  195. goto out;
  196. err_ib_init:
  197. rds_iw_exit();
  198. err_iw_init:
  199. rds_rdma_listen_stop();
  200. out:
  201. return ret;
  202. }
  203. module_init(rds_rdma_init);
  204. static void rds_rdma_exit(void)
  205. {
  206. /* stop listening first to ensure no new connections are attempted */
  207. rds_rdma_listen_stop();
  208. rds_ib_exit();
  209. rds_iw_exit();
  210. }
  211. module_exit(rds_rdma_exit);
  212. MODULE_AUTHOR("Oracle Corporation <rds-devel@oss.oracle.com>");
  213. MODULE_DESCRIPTION("RDS: IB/iWARP transport");
  214. MODULE_LICENSE("Dual BSD/GPL");