1 /* 2 * Copyright (c) 2005 Network Appliance, Inc. All rights reserved. 3 * Copyright (c) 2005 Open Grid Computing, 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 9 * OpenIB.org BSD license below: 10 * 11 * Redistribution and use in source and binary forms, with or 12 * without modification, are permitted provided that the following 13 * conditions are met: 14 * 15 * - Redistributions of source code must retain the above 16 * copyright notice, this list of conditions and the following 17 * disclaimer. 18 * 19 * - Redistributions in binary form must reproduce the above 20 * copyright notice, this list of conditions and the following 21 * disclaimer in the documentation and/or other materials 22 * provided with the distribution. 23 * 24 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 25 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 26 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND 27 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS 28 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN 29 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN 30 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 31 * SOFTWARE. 32 */ 33 #ifndef IW_CM_H 34 #define IW_CM_H 35 36 #include <linux/in.h> 37 #include <rdma/ib_cm.h> 38 39 struct iw_cm_id; 40 41 enum iw_cm_event_type { 42 IW_CM_EVENT_CONNECT_REQUEST = 1, /* connect request received */ 43 IW_CM_EVENT_CONNECT_REPLY, /* reply from active connect request */ 44 IW_CM_EVENT_ESTABLISHED, /* passive side accept successful */ 45 IW_CM_EVENT_DISCONNECT, /* orderly shutdown */ 46 IW_CM_EVENT_CLOSE /* close complete */ 47 }; 48 49 struct iw_cm_event { 50 enum iw_cm_event_type event; 51 int status; 52 struct sockaddr_storage local_addr; 53 struct sockaddr_storage remote_addr; 54 void *private_data; 55 void *provider_data; 56 u8 private_data_len; 57 u8 ord; 58 u8 ird; 59 }; 60 61 /** 62 * iw_cm_handler - Function to be called by the IW CM when delivering events 63 * to the client. 64 * 65 * @cm_id: The IW CM identifier associated with the event. 66 * @event: Pointer to the event structure. 67 */ 68 typedef int (*iw_cm_handler)(struct iw_cm_id *cm_id, 69 struct iw_cm_event *event); 70 71 /** 72 * iw_event_handler - Function called by the provider when delivering provider 73 * events to the IW CM. Returns either 0 indicating the event was processed 74 * or -errno if the event could not be processed. 75 * 76 * @cm_id: The IW CM identifier associated with the event. 77 * @event: Pointer to the event structure. 78 */ 79 typedef int (*iw_event_handler)(struct iw_cm_id *cm_id, 80 struct iw_cm_event *event); 81 82 struct iw_cm_id { 83 iw_cm_handler cm_handler; /* client callback function */ 84 void *context; /* client cb context */ 85 struct ib_device *device; 86 struct sockaddr_storage local_addr; /* local addr */ 87 struct sockaddr_storage remote_addr; 88 struct sockaddr_storage m_local_addr; /* nmapped local addr */ 89 struct sockaddr_storage m_remote_addr; /* nmapped rem addr */ 90 void *provider_data; /* provider private data */ 91 iw_event_handler event_handler; /* cb for provider 92 events */ 93 /* Used by provider to add and remove refs on IW cm_id */ 94 void (*add_ref)(struct iw_cm_id *); 95 void (*rem_ref)(struct iw_cm_id *); 96 u8 tos; 97 bool tos_set:1; 98 bool mapped:1; 99 }; 100 101 struct iw_cm_conn_param { 102 const void *private_data; 103 u16 private_data_len; 104 u32 ord; 105 u32 ird; 106 u32 qpn; 107 }; 108 109 enum iw_flags { 110 111 /* 112 * This flag allows the iwcm and iwpmd to still advertise 113 * mappings but the real and mapped port numbers are the 114 * same. Further, iwpmd will not bind any user socket to 115 * reserve the port. This is required for soft iwarp 116 * to play in the port mapped iwarp space. 117 */ 118 IW_F_NO_PORT_MAP = (1 << 0), 119 }; 120 121 struct iw_cm_verbs { 122 void (*add_ref)(struct ib_qp *qp); 123 124 void (*rem_ref)(struct ib_qp *qp); 125 126 struct ib_qp * (*get_qp)(struct ib_device *device, 127 int qpn); 128 129 int (*connect)(struct iw_cm_id *cm_id, 130 struct iw_cm_conn_param *conn_param); 131 132 int (*accept)(struct iw_cm_id *cm_id, 133 struct iw_cm_conn_param *conn_param); 134 135 int (*reject)(struct iw_cm_id *cm_id, 136 const void *pdata, u8 pdata_len); 137 138 int (*create_listen)(struct iw_cm_id *cm_id, 139 int backlog); 140 141 int (*destroy_listen)(struct iw_cm_id *cm_id); 142 char ifname[IFNAMSIZ]; 143 enum iw_flags driver_flags; 144 }; 145 146 /** 147 * iw_create_cm_id - Create an IW CM identifier. 148 * 149 * @device: The IB device on which to create the IW CM identier. 150 * @event_handler: User callback invoked to report events associated with the 151 * returned IW CM identifier. 152 * @context: User specified context associated with the id. 153 */ 154 struct iw_cm_id *iw_create_cm_id(struct ib_device *device, 155 iw_cm_handler cm_handler, void *context); 156 157 /** 158 * iw_destroy_cm_id - Destroy an IW CM identifier. 159 * 160 * @cm_id: The previously created IW CM identifier to destroy. 161 * 162 * The client can assume that no events will be delivered for the CM ID after 163 * this function returns. 164 */ 165 void iw_destroy_cm_id(struct iw_cm_id *cm_id); 166 167 /** 168 * iw_cm_bind_qp - Unbind the specified IW CM identifier and QP 169 * 170 * @cm_id: The IW CM idenfier to unbind from the QP. 171 * @qp: The QP 172 * 173 * This is called by the provider when destroying the QP to ensure 174 * that any references held by the IWCM are released. It may also 175 * be called by the IWCM when destroying a CM_ID to that any 176 * references held by the provider are released. 177 */ 178 void iw_cm_unbind_qp(struct iw_cm_id *cm_id, struct ib_qp *qp); 179 180 /** 181 * iw_cm_get_qp - Return the ib_qp associated with a QPN 182 * 183 * @ib_device: The IB device 184 * @qpn: The queue pair number 185 */ 186 struct ib_qp *iw_cm_get_qp(struct ib_device *device, int qpn); 187 188 /** 189 * iw_cm_listen - Listen for incoming connection requests on the 190 * specified IW CM id. 191 * 192 * @cm_id: The IW CM identifier. 193 * @backlog: The maximum number of outstanding un-accepted inbound listen 194 * requests to queue. 195 * 196 * The source address and port number are specified in the IW CM identifier 197 * structure. 198 */ 199 int iw_cm_listen(struct iw_cm_id *cm_id, int backlog); 200 201 /** 202 * iw_cm_accept - Called to accept an incoming connect request. 203 * 204 * @cm_id: The IW CM identifier associated with the connection request. 205 * @iw_param: Pointer to a structure containing connection establishment 206 * parameters. 207 * 208 * The specified cm_id will have been provided in the event data for a 209 * CONNECT_REQUEST event. Subsequent events related to this connection will be 210 * delivered to the specified IW CM identifier prior and may occur prior to 211 * the return of this function. If this function returns a non-zero value, the 212 * client can assume that no events will be delivered to the specified IW CM 213 * identifier. 214 */ 215 int iw_cm_accept(struct iw_cm_id *cm_id, struct iw_cm_conn_param *iw_param); 216 217 /** 218 * iw_cm_reject - Reject an incoming connection request. 219 * 220 * @cm_id: Connection identifier associated with the request. 221 * @private_daa: Pointer to data to deliver to the remote peer as part of the 222 * reject message. 223 * @private_data_len: The number of bytes in the private_data parameter. 224 * 225 * The client can assume that no events will be delivered to the specified IW 226 * CM identifier following the return of this function. The private_data 227 * buffer is available for reuse when this function returns. 228 */ 229 int iw_cm_reject(struct iw_cm_id *cm_id, const void *private_data, 230 u8 private_data_len); 231 232 /** 233 * iw_cm_connect - Called to request a connection to a remote peer. 234 * 235 * @cm_id: The IW CM identifier for the connection. 236 * @iw_param: Pointer to a structure containing connection establishment 237 * parameters. 238 * 239 * Events may be delivered to the specified IW CM identifier prior to the 240 * return of this function. If this function returns a non-zero value, the 241 * client can assume that no events will be delivered to the specified IW CM 242 * identifier. 243 */ 244 int iw_cm_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *iw_param); 245 246 /** 247 * iw_cm_disconnect - Close the specified connection. 248 * 249 * @cm_id: The IW CM identifier to close. 250 * @abrupt: If 0, the connection will be closed gracefully, otherwise, the 251 * connection will be reset. 252 * 253 * The IW CM identifier is still active until the IW_CM_EVENT_CLOSE event is 254 * delivered. 255 */ 256 int iw_cm_disconnect(struct iw_cm_id *cm_id, int abrupt); 257 258 /** 259 * iw_cm_init_qp_attr - Called to initialize the attributes of the QP 260 * associated with a IW CM identifier. 261 * 262 * @cm_id: The IW CM identifier associated with the QP 263 * @qp_attr: Pointer to the QP attributes structure. 264 * @qp_attr_mask: Pointer to a bit vector specifying which QP attributes are 265 * valid. 266 */ 267 int iw_cm_init_qp_attr(struct iw_cm_id *cm_id, struct ib_qp_attr *qp_attr, 268 int *qp_attr_mask); 269 270 /** 271 * iwcm_reject_msg - return a pointer to a reject message string. 272 * @reason: Value returned in the REJECT event status field. 273 */ 274 const char *__attribute_const__ iwcm_reject_msg(int reason); 275 276 #endif /* IW_CM_H */ 277