1 /* SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB */
3 * Copyright (c) 2004, 2005 Intel Corporation. All rights reserved.
4 * Copyright (c) 2004 Topspin Corporation. All rights reserved.
5 * Copyright (c) 2004 Voltaire Corporation. All rights reserved.
6 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
7 * Copyright (c) 2019, Mellanox Technologies inc. All rights reserved.
13 #include <rdma/ib_mad.h>
14 #include <rdma/ib_sa.h>
15 #include <rdma/rdma_cm.h>
36 enum ib_cm_lap_state
{
45 enum ib_cm_event_type
{
51 IB_CM_USER_ESTABLISHED
,
62 IB_CM_SIDR_REQ_RECEIVED
,
63 IB_CM_SIDR_REP_RECEIVED
66 enum ib_cm_data_size
{
67 IB_CM_REQ_PRIVATE_DATA_SIZE
= 92,
68 IB_CM_MRA_PRIVATE_DATA_SIZE
= 222,
69 IB_CM_REJ_PRIVATE_DATA_SIZE
= 148,
70 IB_CM_REP_PRIVATE_DATA_SIZE
= 196,
71 IB_CM_RTU_PRIVATE_DATA_SIZE
= 224,
72 IB_CM_DREQ_PRIVATE_DATA_SIZE
= 220,
73 IB_CM_DREP_PRIVATE_DATA_SIZE
= 224,
74 IB_CM_REJ_ARI_LENGTH
= 72,
75 IB_CM_LAP_PRIVATE_DATA_SIZE
= 168,
76 IB_CM_APR_PRIVATE_DATA_SIZE
= 148,
77 IB_CM_APR_INFO_LENGTH
= 72,
78 IB_CM_SIDR_REQ_PRIVATE_DATA_SIZE
= 216,
79 IB_CM_SIDR_REP_PRIVATE_DATA_SIZE
= 136,
80 IB_CM_SIDR_REP_INFO_LENGTH
= 72,
85 struct ib_cm_req_event_param
{
86 struct ib_cm_id
*listen_id
;
88 /* P_Key that was used by the GMP's BTH header */
93 struct sa_path_rec
*primary_path
;
94 struct sa_path_rec
*alternate_path
;
97 * SGID attribute of the primary path. Currently only
98 * useful for RoCE. Alternate path GID attributes
99 * are not yet supported.
101 const struct ib_gid_attr
*ppath_sgid_attr
;
103 __be64 remote_ca_guid
;
106 enum ib_qp_type qp_type
;
109 u8 responder_resources
;
111 unsigned int local_cm_response_timeout
:5;
112 unsigned int flow_control
:1;
113 unsigned int remote_cm_response_timeout
:5;
114 unsigned int retry_count
:3;
115 unsigned int rnr_retry_count
:3;
117 struct rdma_ucm_ece ece
;
120 struct ib_cm_rep_event_param
{
121 __be64 remote_ca_guid
;
125 u8 responder_resources
;
127 unsigned int target_ack_delay
:5;
128 unsigned int failover_accepted
:2;
129 unsigned int flow_control
:1;
130 unsigned int rnr_retry_count
:3;
132 struct rdma_ucm_ece ece
;
135 enum ib_cm_rej_reason
{
137 IB_CM_REJ_NO_EEC
= 2,
138 IB_CM_REJ_NO_RESOURCES
= 3,
139 IB_CM_REJ_TIMEOUT
= 4,
140 IB_CM_REJ_UNSUPPORTED
= 5,
141 IB_CM_REJ_INVALID_COMM_ID
= 6,
142 IB_CM_REJ_INVALID_COMM_INSTANCE
= 7,
143 IB_CM_REJ_INVALID_SERVICE_ID
= 8,
144 IB_CM_REJ_INVALID_TRANSPORT_TYPE
= 9,
145 IB_CM_REJ_STALE_CONN
= 10,
146 IB_CM_REJ_RDC_NOT_EXIST
= 11,
147 IB_CM_REJ_INVALID_GID
= 12,
148 IB_CM_REJ_INVALID_LID
= 13,
149 IB_CM_REJ_INVALID_SL
= 14,
150 IB_CM_REJ_INVALID_TRAFFIC_CLASS
= 15,
151 IB_CM_REJ_INVALID_HOP_LIMIT
= 16,
152 IB_CM_REJ_INVALID_PACKET_RATE
= 17,
153 IB_CM_REJ_INVALID_ALT_GID
= 18,
154 IB_CM_REJ_INVALID_ALT_LID
= 19,
155 IB_CM_REJ_INVALID_ALT_SL
= 20,
156 IB_CM_REJ_INVALID_ALT_TRAFFIC_CLASS
= 21,
157 IB_CM_REJ_INVALID_ALT_HOP_LIMIT
= 22,
158 IB_CM_REJ_INVALID_ALT_PACKET_RATE
= 23,
159 IB_CM_REJ_PORT_CM_REDIRECT
= 24,
160 IB_CM_REJ_PORT_REDIRECT
= 25,
161 IB_CM_REJ_INVALID_MTU
= 26,
162 IB_CM_REJ_INSUFFICIENT_RESP_RESOURCES
= 27,
163 IB_CM_REJ_CONSUMER_DEFINED
= 28,
164 IB_CM_REJ_INVALID_RNR_RETRY
= 29,
165 IB_CM_REJ_DUPLICATE_LOCAL_COMM_ID
= 30,
166 IB_CM_REJ_INVALID_CLASS_VERSION
= 31,
167 IB_CM_REJ_INVALID_FLOW_LABEL
= 32,
168 IB_CM_REJ_INVALID_ALT_FLOW_LABEL
= 33,
169 IB_CM_REJ_VENDOR_OPTION_NOT_SUPPORTED
= 35,
172 struct ib_cm_rej_event_param
{
173 enum ib_cm_rej_reason reason
;
178 struct ib_cm_mra_event_param
{
182 struct ib_cm_lap_event_param
{
183 struct sa_path_rec
*alternate_path
;
186 enum ib_cm_apr_status
{
188 IB_CM_APR_INVALID_COMM_ID
,
189 IB_CM_APR_UNSUPPORTED
,
192 IB_CM_APR_IS_CURRENT
,
193 IB_CM_APR_INVALID_QPN_EECN
,
194 IB_CM_APR_INVALID_LID
,
195 IB_CM_APR_INVALID_GID
,
196 IB_CM_APR_INVALID_FLOW_LABEL
,
197 IB_CM_APR_INVALID_TCLASS
,
198 IB_CM_APR_INVALID_HOP_LIMIT
,
199 IB_CM_APR_INVALID_PACKET_RATE
,
203 struct ib_cm_apr_event_param
{
204 enum ib_cm_apr_status ap_status
;
209 struct ib_cm_sidr_req_event_param
{
210 struct ib_cm_id
*listen_id
;
214 * SGID attribute of the request. Currently only
217 const struct ib_gid_attr
*sgid_attr
;
218 /* P_Key that was used by the GMP's BTH header */
224 enum ib_cm_sidr_status
{
230 IB_SIDR_UNSUPPORTED_VERSION
233 struct ib_cm_sidr_rep_event_param
{
234 enum ib_cm_sidr_status status
;
238 const struct ib_gid_attr
*sgid_attr
;
243 enum ib_cm_event_type event
;
245 struct ib_cm_req_event_param req_rcvd
;
246 struct ib_cm_rep_event_param rep_rcvd
;
247 /* No data for RTU received events. */
248 struct ib_cm_rej_event_param rej_rcvd
;
249 struct ib_cm_mra_event_param mra_rcvd
;
250 struct ib_cm_lap_event_param lap_rcvd
;
251 struct ib_cm_apr_event_param apr_rcvd
;
252 /* No data for DREQ/DREP received events. */
253 struct ib_cm_sidr_req_event_param sidr_req_rcvd
;
254 struct ib_cm_sidr_rep_event_param sidr_rep_rcvd
;
255 enum ib_wc_status send_status
;
261 #define CM_REQ_ATTR_ID cpu_to_be16(0x0010)
262 #define CM_MRA_ATTR_ID cpu_to_be16(0x0011)
263 #define CM_REJ_ATTR_ID cpu_to_be16(0x0012)
264 #define CM_REP_ATTR_ID cpu_to_be16(0x0013)
265 #define CM_RTU_ATTR_ID cpu_to_be16(0x0014)
266 #define CM_DREQ_ATTR_ID cpu_to_be16(0x0015)
267 #define CM_DREP_ATTR_ID cpu_to_be16(0x0016)
268 #define CM_SIDR_REQ_ATTR_ID cpu_to_be16(0x0017)
269 #define CM_SIDR_REP_ATTR_ID cpu_to_be16(0x0018)
270 #define CM_LAP_ATTR_ID cpu_to_be16(0x0019)
271 #define CM_APR_ATTR_ID cpu_to_be16(0x001A)
274 * ib_cm_handler - User-defined callback to process communication events.
275 * @cm_id: Communication identifier associated with the reported event.
276 * @event: Information about the communication event.
278 * IB_CM_REQ_RECEIVED and IB_CM_SIDR_REQ_RECEIVED communication events
279 * generated as a result of listen requests result in the allocation of a
280 * new @cm_id. The new @cm_id is returned to the user through this callback.
281 * Clients are responsible for destroying the new @cm_id. For peer-to-peer
282 * IB_CM_REQ_RECEIVED and all other events, the returned @cm_id corresponds
283 * to a user's existing communication identifier.
285 * Users may not call ib_destroy_cm_id while in the context of this callback;
286 * however, returning a non-zero value instructs the communication manager to
287 * destroy the @cm_id after the callback completes.
289 typedef int (*ib_cm_handler
)(struct ib_cm_id
*cm_id
,
290 const struct ib_cm_event
*event
);
293 ib_cm_handler cm_handler
;
295 struct ib_device
*device
;
297 enum ib_cm_state state
; /* internal CM/debug use */
298 enum ib_cm_lap_state lap_state
; /* internal CM/debug use */
301 u32 remote_cm_qpn
; /* 1 unless redirected */
305 * ib_create_cm_id - Allocate a communication identifier.
306 * @device: Device associated with the cm_id. All related communication will
307 * be associated with the specified device.
308 * @cm_handler: Callback invoked to notify the user of CM events.
309 * @context: User specified context associated with the communication
312 * Communication identifiers are used to track connection states, service
313 * ID resolution requests, and listen requests.
315 struct ib_cm_id
*ib_create_cm_id(struct ib_device
*device
,
316 ib_cm_handler cm_handler
,
320 * ib_destroy_cm_id - Destroy a connection identifier.
321 * @cm_id: Connection identifier to destroy.
323 * This call blocks until the connection identifier is destroyed.
325 void ib_destroy_cm_id(struct ib_cm_id
*cm_id
);
327 #define IB_SERVICE_ID_AGN_MASK cpu_to_be64(0xFF00000000000000ULL)
328 #define IB_CM_ASSIGN_SERVICE_ID cpu_to_be64(0x0200000000000000ULL)
329 #define IB_CMA_SERVICE_ID cpu_to_be64(0x0000000001000000ULL)
330 #define IB_CMA_SERVICE_ID_MASK cpu_to_be64(0xFFFFFFFFFF000000ULL)
331 #define IB_SDP_SERVICE_ID cpu_to_be64(0x0000000000010000ULL)
332 #define IB_SDP_SERVICE_ID_MASK cpu_to_be64(0xFFFFFFFFFFFF0000ULL)
335 * ib_cm_listen - Initiates listening on the specified service ID for
336 * connection and service ID resolution requests.
337 * @cm_id: Connection identifier associated with the listen request.
338 * @service_id: Service identifier matched against incoming connection
339 * and service ID resolution requests. The service ID should be specified
340 * network-byte order. If set to IB_CM_ASSIGN_SERVICE_ID, the CM will
341 * assign a service ID to the caller.
343 int ib_cm_listen(struct ib_cm_id
*cm_id
, __be64 service_id
);
345 struct ib_cm_id
*ib_cm_insert_listen(struct ib_device
*device
,
346 ib_cm_handler cm_handler
,
349 struct ib_cm_req_param
{
350 struct sa_path_rec
*primary_path
;
351 struct sa_path_rec
*primary_path_inbound
;
352 struct sa_path_rec
*primary_path_outbound
;
353 struct sa_path_rec
*alternate_path
;
354 const struct ib_gid_attr
*ppath_sgid_attr
;
357 enum ib_qp_type qp_type
;
359 const void *private_data
;
361 u8 responder_resources
;
363 u8 remote_cm_response_timeout
;
365 u8 local_cm_response_timeout
;
370 struct rdma_ucm_ece ece
;
374 * ib_send_cm_req - Sends a connection request to the remote node.
375 * @cm_id: Connection identifier that will be associated with the
376 * connection request.
377 * @param: Connection request information needed to establish the
380 int ib_send_cm_req(struct ib_cm_id
*cm_id
,
381 struct ib_cm_req_param
*param
);
383 struct ib_cm_rep_param
{
386 const void *private_data
;
388 u8 responder_resources
;
390 u8 failover_accepted
;
394 struct rdma_ucm_ece ece
;
398 * ib_send_cm_rep - Sends a connection reply in response to a connection
400 * @cm_id: Connection identifier that will be associated with the
401 * connection request.
402 * @param: Connection reply information needed to establish the
405 int ib_send_cm_rep(struct ib_cm_id
*cm_id
,
406 struct ib_cm_rep_param
*param
);
409 * ib_send_cm_rtu - Sends a connection ready to use message in response
410 * to a connection reply message.
411 * @cm_id: Connection identifier associated with the connection request.
412 * @private_data: Optional user-defined private data sent with the
413 * ready to use message.
414 * @private_data_len: Size of the private data buffer, in bytes.
416 int ib_send_cm_rtu(struct ib_cm_id
*cm_id
,
417 const void *private_data
,
418 u8 private_data_len
);
421 * ib_send_cm_dreq - Sends a disconnection request for an existing
423 * @cm_id: Connection identifier associated with the connection being
425 * @private_data: Optional user-defined private data sent with the
426 * disconnection request message.
427 * @private_data_len: Size of the private data buffer, in bytes.
429 int ib_send_cm_dreq(struct ib_cm_id
*cm_id
,
430 const void *private_data
,
431 u8 private_data_len
);
434 * ib_send_cm_drep - Sends a disconnection reply to a disconnection request.
435 * @cm_id: Connection identifier associated with the connection being
437 * @private_data: Optional user-defined private data sent with the
438 * disconnection reply message.
439 * @private_data_len: Size of the private data buffer, in bytes.
441 * If the cm_id is in the correct state, the CM will transition the connection
442 * to the timewait state, even if an error occurs sending the DREP message.
444 int ib_send_cm_drep(struct ib_cm_id
*cm_id
,
445 const void *private_data
,
446 u8 private_data_len
);
449 * ib_cm_notify - Notifies the CM of an event reported to the consumer.
450 * @cm_id: Connection identifier to transition to established.
451 * @event: Type of event.
453 * This routine should be invoked by users to notify the CM of relevant
454 * communication events. Events that should be reported to the CM and
455 * when to report them are:
457 * IB_EVENT_COMM_EST - Used when a message is received on a connected
458 * QP before an RTU has been received.
459 * IB_EVENT_PATH_MIG - Notifies the CM that the connection has failed over
460 * to the alternate path.
462 int ib_cm_notify(struct ib_cm_id
*cm_id
, enum ib_event_type event
);
465 * ib_send_cm_rej - Sends a connection rejection message to the
467 * @cm_id: Connection identifier associated with the connection being
469 * @reason: Reason for the connection request rejection.
470 * @ari: Optional additional rejection information.
471 * @ari_length: Size of the additional rejection information, in bytes.
472 * @private_data: Optional user-defined private data sent with the
474 * @private_data_len: Size of the private data buffer, in bytes.
476 int ib_send_cm_rej(struct ib_cm_id
*cm_id
,
477 enum ib_cm_rej_reason reason
,
480 const void *private_data
,
481 u8 private_data_len
);
483 #define IB_CM_MRA_FLAG_DELAY 0x80 /* Send MRA only after a duplicate msg */
486 * ib_send_cm_mra - Sends a message receipt acknowledgement to a connection
488 * @cm_id: Connection identifier associated with the connection message.
489 * @service_timeout: The lower 5-bits specify the maximum time required for
490 * the sender to reply to the connection message. The upper 3-bits
491 * specify additional control flags.
492 * @private_data: Optional user-defined private data sent with the
493 * message receipt acknowledgement.
494 * @private_data_len: Size of the private data buffer, in bytes.
496 int ib_send_cm_mra(struct ib_cm_id
*cm_id
,
498 const void *private_data
,
499 u8 private_data_len
);
502 * ib_cm_init_qp_attr - Initializes the QP attributes for use in transitioning
503 * to a specified QP state.
504 * @cm_id: Communication identifier associated with the QP attributes to
506 * @qp_attr: On input, specifies the desired QP state. On output, the
507 * mandatory and desired optional attributes will be set in order to
508 * modify the QP to the specified state.
509 * @qp_attr_mask: The QP attribute mask that may be used to transition the
510 * QP to the specified state.
512 * Users must set the @qp_attr->qp_state to the desired QP state. This call
513 * will set all required attributes for the given transition, along with
514 * known optional attributes. Users may override the attributes returned from
515 * this call before calling ib_modify_qp.
517 int ib_cm_init_qp_attr(struct ib_cm_id
*cm_id
,
518 struct ib_qp_attr
*qp_attr
,
521 struct ib_cm_sidr_req_param
{
522 struct sa_path_rec
*path
;
523 const struct ib_gid_attr
*sgid_attr
;
525 unsigned long timeout_ms
;
526 const void *private_data
;
532 * ib_send_cm_sidr_req - Sends a service ID resolution request to the
534 * @cm_id: Communication identifier that will be associated with the
535 * service ID resolution request.
536 * @param: Service ID resolution request information.
538 int ib_send_cm_sidr_req(struct ib_cm_id
*cm_id
,
539 struct ib_cm_sidr_req_param
*param
);
541 struct ib_cm_sidr_rep_param
{
544 enum ib_cm_sidr_status status
;
547 const void *private_data
;
549 struct rdma_ucm_ece ece
;
553 * ib_send_cm_sidr_rep - Sends a service ID resolution reply to the
555 * @cm_id: Communication identifier associated with the received service ID
556 * resolution request.
557 * @param: Service ID resolution reply information.
559 int ib_send_cm_sidr_rep(struct ib_cm_id
*cm_id
,
560 struct ib_cm_sidr_rep_param
*param
);
563 * ibcm_reject_msg - return a pointer to a reject message string.
564 * @reason: Value returned in the REJECT event status field.
566 const char *__attribute_const__
ibcm_reject_msg(int reason
);