Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 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 | */ |
Paul Gortmaker | 3a9a231 | 2011-05-27 09:12:25 -0400 | [diff] [blame] | 33 | #include <linux/module.h> |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 34 | #include <rdma/rdma_cm.h> |
| 35 | |
Sowmini Varadhan | 0cb4396 | 2016-06-13 09:44:26 -0700 | [diff] [blame] | 36 | #include "rds_single_path.h" |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 37 | #include "rdma_transport.h" |
santosh.shilimkar@oracle.com | ae05368 | 2015-08-22 15:45:35 -0700 | [diff] [blame] | 38 | #include "ib.h" |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 39 | |
Andy Grover | 11bc942 | 2009-04-09 14:09:37 +0000 | [diff] [blame] | 40 | static struct rdma_cm_id *rds_rdma_listen_id; |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 41 | |
| 42 | int rds_rdma_cm_event_handler(struct rdma_cm_id *cm_id, |
| 43 | struct rdma_cm_event *event) |
| 44 | { |
| 45 | /* this can be null in the listening path */ |
| 46 | struct rds_connection *conn = cm_id->context; |
| 47 | struct rds_transport *trans; |
| 48 | int ret = 0; |
| 49 | |
Zach Brown | 59f740a | 2010-08-03 13:52:47 -0700 | [diff] [blame] | 50 | rdsdebug("conn %p id %p handling event %u (%s)\n", conn, cm_id, |
Sagi Grimberg | 3c88f3d | 2015-05-18 13:40:33 +0300 | [diff] [blame] | 51 | event->event, rdma_event_msg(event->event)); |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 52 | |
santosh.shilimkar@oracle.com | dcdede0 | 2016-03-01 15:20:42 -0800 | [diff] [blame] | 53 | if (cm_id->device->node_type == RDMA_NODE_IB_CA) |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 54 | trans = &rds_ib_transport; |
| 55 | |
| 56 | /* Prevent shutdown from tearing down the connection |
| 57 | * while we're executing. */ |
| 58 | if (conn) { |
| 59 | mutex_lock(&conn->c_cm_lock); |
| 60 | |
| 61 | /* If the connection is being shut down, bail out |
| 62 | * right away. We return 0 so cm_id doesn't get |
| 63 | * destroyed prematurely */ |
| 64 | if (rds_conn_state(conn) == RDS_CONN_DISCONNECTING) { |
| 65 | /* Reject incoming connections while we're tearing |
| 66 | * down an existing one. */ |
| 67 | if (event->event == RDMA_CM_EVENT_CONNECT_REQUEST) |
| 68 | ret = 1; |
| 69 | goto out; |
| 70 | } |
| 71 | } |
| 72 | |
| 73 | switch (event->event) { |
| 74 | case RDMA_CM_EVENT_CONNECT_REQUEST: |
| 75 | ret = trans->cm_handle_connect(cm_id, event); |
| 76 | break; |
| 77 | |
| 78 | case RDMA_CM_EVENT_ADDR_RESOLVED: |
| 79 | /* XXX do we need to clean up if this fails? */ |
| 80 | ret = rdma_resolve_route(cm_id, |
| 81 | RDS_RDMA_RESOLVE_TIMEOUT_MS); |
| 82 | break; |
| 83 | |
| 84 | case RDMA_CM_EVENT_ROUTE_RESOLVED: |
santosh.shilimkar@oracle.com | ae05368 | 2015-08-22 15:45:35 -0700 | [diff] [blame] | 85 | /* Connection could have been dropped so make sure the |
| 86 | * cm_id is valid before proceeding |
| 87 | */ |
| 88 | if (conn) { |
| 89 | struct rds_ib_connection *ibic; |
| 90 | |
| 91 | ibic = conn->c_transport_data; |
| 92 | if (ibic && ibic->i_cm_id == cm_id) |
| 93 | ret = trans->cm_initiate_connect(cm_id); |
| 94 | else |
| 95 | rds_conn_drop(conn); |
| 96 | } |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 97 | break; |
| 98 | |
| 99 | case RDMA_CM_EVENT_ESTABLISHED: |
| 100 | trans->cm_connect_complete(conn, event); |
| 101 | break; |
| 102 | |
| 103 | case RDMA_CM_EVENT_ADDR_ERROR: |
| 104 | case RDMA_CM_EVENT_ROUTE_ERROR: |
| 105 | case RDMA_CM_EVENT_CONNECT_ERROR: |
| 106 | case RDMA_CM_EVENT_UNREACHABLE: |
| 107 | case RDMA_CM_EVENT_REJECTED: |
| 108 | case RDMA_CM_EVENT_DEVICE_REMOVAL: |
| 109 | case RDMA_CM_EVENT_ADDR_CHANGE: |
| 110 | if (conn) |
| 111 | rds_conn_drop(conn); |
| 112 | break; |
| 113 | |
| 114 | case RDMA_CM_EVENT_DISCONNECTED: |
Andy Grover | 9706978 | 2010-03-11 13:50:02 +0000 | [diff] [blame] | 115 | rdsdebug("DISCONNECT event - dropping connection " |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 116 | "%pI4->%pI4\n", &conn->c_laddr, |
| 117 | &conn->c_faddr); |
| 118 | rds_conn_drop(conn); |
| 119 | break; |
| 120 | |
santosh.shilimkar@oracle.com | 37ea401 | 2016-03-01 15:20:50 -0800 | [diff] [blame] | 121 | case RDMA_CM_EVENT_TIMEWAIT_EXIT: |
| 122 | if (conn) { |
| 123 | pr_info("RDS: RDMA_CM_EVENT_TIMEWAIT_EXIT event: dropping connection %pI4->%pI4\n", |
| 124 | &conn->c_laddr, &conn->c_faddr); |
| 125 | rds_conn_drop(conn); |
| 126 | } |
| 127 | break; |
| 128 | |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 129 | default: |
| 130 | /* things like device disconnect? */ |
Zach Brown | 59f740a | 2010-08-03 13:52:47 -0700 | [diff] [blame] | 131 | printk(KERN_ERR "RDS: unknown event %u (%s)!\n", |
Sagi Grimberg | 3c88f3d | 2015-05-18 13:40:33 +0300 | [diff] [blame] | 132 | event->event, rdma_event_msg(event->event)); |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 133 | break; |
| 134 | } |
| 135 | |
| 136 | out: |
| 137 | if (conn) |
| 138 | mutex_unlock(&conn->c_cm_lock); |
| 139 | |
Zach Brown | 59f740a | 2010-08-03 13:52:47 -0700 | [diff] [blame] | 140 | rdsdebug("id %p event %u (%s) handling ret %d\n", cm_id, event->event, |
Sagi Grimberg | 3c88f3d | 2015-05-18 13:40:33 +0300 | [diff] [blame] | 141 | rdma_event_msg(event->event), ret); |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 142 | |
| 143 | return ret; |
| 144 | } |
| 145 | |
Zach Brown | ef87b7e | 2010-07-09 12:26:20 -0700 | [diff] [blame] | 146 | static int rds_rdma_listen_init(void) |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 147 | { |
| 148 | struct sockaddr_in sin; |
| 149 | struct rdma_cm_id *cm_id; |
| 150 | int ret; |
| 151 | |
Guy Shapiro | fa20105 | 2015-10-22 15:20:10 +0300 | [diff] [blame] | 152 | cm_id = rdma_create_id(&init_net, rds_rdma_cm_event_handler, NULL, |
| 153 | RDMA_PS_TCP, IB_QPT_RC); |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 154 | if (IS_ERR(cm_id)) { |
| 155 | ret = PTR_ERR(cm_id); |
Andy Grover | 92c330b | 2009-07-17 13:13:26 +0000 | [diff] [blame] | 156 | printk(KERN_ERR "RDS/RDMA: failed to setup listener, " |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 157 | "rdma_create_id() returned %d\n", ret); |
Dan Carpenter | 24acc68 | 2010-04-21 23:55:27 +0000 | [diff] [blame] | 158 | return ret; |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 159 | } |
| 160 | |
Himangi Saraogi | cc2afe9 | 2014-05-30 21:16:05 +0530 | [diff] [blame] | 161 | sin.sin_family = AF_INET; |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 162 | sin.sin_addr.s_addr = (__force u32)htonl(INADDR_ANY); |
| 163 | sin.sin_port = (__force u16)htons(RDS_PORT); |
| 164 | |
| 165 | /* |
| 166 | * XXX I bet this binds the cm_id to a device. If we want to support |
| 167 | * fail-over we'll have to take this into consideration. |
| 168 | */ |
| 169 | ret = rdma_bind_addr(cm_id, (struct sockaddr *)&sin); |
| 170 | if (ret) { |
Andy Grover | 92c330b | 2009-07-17 13:13:26 +0000 | [diff] [blame] | 171 | printk(KERN_ERR "RDS/RDMA: failed to setup listener, " |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 172 | "rdma_bind_addr() returned %d\n", ret); |
| 173 | goto out; |
| 174 | } |
| 175 | |
| 176 | ret = rdma_listen(cm_id, 128); |
| 177 | if (ret) { |
Andy Grover | 92c330b | 2009-07-17 13:13:26 +0000 | [diff] [blame] | 178 | printk(KERN_ERR "RDS/RDMA: failed to setup listener, " |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 179 | "rdma_listen() returned %d\n", ret); |
| 180 | goto out; |
| 181 | } |
| 182 | |
| 183 | rdsdebug("cm %p listening on port %u\n", cm_id, RDS_PORT); |
| 184 | |
Andy Grover | 11bc942 | 2009-04-09 14:09:37 +0000 | [diff] [blame] | 185 | rds_rdma_listen_id = cm_id; |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 186 | cm_id = NULL; |
| 187 | out: |
| 188 | if (cm_id) |
| 189 | rdma_destroy_id(cm_id); |
| 190 | return ret; |
| 191 | } |
| 192 | |
| 193 | static void rds_rdma_listen_stop(void) |
| 194 | { |
Andy Grover | 11bc942 | 2009-04-09 14:09:37 +0000 | [diff] [blame] | 195 | if (rds_rdma_listen_id) { |
| 196 | rdsdebug("cm %p\n", rds_rdma_listen_id); |
| 197 | rdma_destroy_id(rds_rdma_listen_id); |
| 198 | rds_rdma_listen_id = NULL; |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 199 | } |
| 200 | } |
| 201 | |
stephen hemminger | ff51bf8 | 2010-10-19 08:08:33 +0000 | [diff] [blame] | 202 | static int rds_rdma_init(void) |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 203 | { |
| 204 | int ret; |
| 205 | |
| 206 | ret = rds_rdma_listen_init(); |
| 207 | if (ret) |
| 208 | goto out; |
| 209 | |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 210 | ret = rds_ib_init(); |
| 211 | if (ret) |
| 212 | goto err_ib_init; |
| 213 | |
| 214 | goto out; |
| 215 | |
| 216 | err_ib_init: |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 217 | rds_rdma_listen_stop(); |
| 218 | out: |
| 219 | return ret; |
| 220 | } |
Andy Grover | 40d8660 | 2009-08-21 12:28:33 +0000 | [diff] [blame] | 221 | module_init(rds_rdma_init); |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 222 | |
stephen hemminger | ff51bf8 | 2010-10-19 08:08:33 +0000 | [diff] [blame] | 223 | static void rds_rdma_exit(void) |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 224 | { |
| 225 | /* stop listening first to ensure no new connections are attempted */ |
| 226 | rds_rdma_listen_stop(); |
| 227 | rds_ib_exit(); |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 228 | } |
Andy Grover | 40d8660 | 2009-08-21 12:28:33 +0000 | [diff] [blame] | 229 | module_exit(rds_rdma_exit); |
| 230 | |
| 231 | MODULE_AUTHOR("Oracle Corporation <rds-devel@oss.oracle.com>"); |
santosh.shilimkar@oracle.com | dcdede0 | 2016-03-01 15:20:42 -0800 | [diff] [blame] | 232 | MODULE_DESCRIPTION("RDS: IB transport"); |
Andy Grover | 40d8660 | 2009-08-21 12:28:33 +0000 | [diff] [blame] | 233 | MODULE_LICENSE("Dual BSD/GPL"); |
Andy Grover | 55b7ed0 | 2009-02-24 15:30:37 +0000 | [diff] [blame] | 234 | |