cm.c 125.5 KB
Newer Older
1
// SPDX-License-Identifier: GPL-2.0 OR Linux-OpenIB
2
/*
3
 * Copyright (c) 2004-2007 Intel Corporation.  All rights reserved.
4 5 6
 * Copyright (c) 2004 Topspin Corporation.  All rights reserved.
 * Copyright (c) 2004, 2005 Voltaire Corporation.  All rights reserved.
 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
7
 * Copyright (c) 2019, Mellanox Technologies inc.  All rights reserved.
8
 */
S
Sean Hefty 已提交
9 10

#include <linux/completion.h>
11
#include <linux/dma-mapping.h>
12
#include <linux/device.h>
13
#include <linux/module.h>
14 15 16
#include <linux/err.h>
#include <linux/idr.h>
#include <linux/interrupt.h>
S
Sean Hefty 已提交
17
#include <linux/random.h>
18 19
#include <linux/rbtree.h>
#include <linux/spinlock.h>
20
#include <linux/slab.h>
21
#include <linux/sysfs.h>
22
#include <linux/workqueue.h>
23
#include <linux/kdev_t.h>
24
#include <linux/etherdevice.h>
25

26 27
#include <rdma/ib_cache.h>
#include <rdma/ib_cm.h>
28
#include "cm_msgs.h"
29
#include "core_priv.h"
30 31 32 33 34

MODULE_AUTHOR("Sean Hefty");
MODULE_DESCRIPTION("InfiniBand CM");
MODULE_LICENSE("Dual BSD/GPL");

35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82
static const char * const ibcm_rej_reason_strs[] = {
	[IB_CM_REJ_NO_QP]			= "no QP",
	[IB_CM_REJ_NO_EEC]			= "no EEC",
	[IB_CM_REJ_NO_RESOURCES]		= "no resources",
	[IB_CM_REJ_TIMEOUT]			= "timeout",
	[IB_CM_REJ_UNSUPPORTED]			= "unsupported",
	[IB_CM_REJ_INVALID_COMM_ID]		= "invalid comm ID",
	[IB_CM_REJ_INVALID_COMM_INSTANCE]	= "invalid comm instance",
	[IB_CM_REJ_INVALID_SERVICE_ID]		= "invalid service ID",
	[IB_CM_REJ_INVALID_TRANSPORT_TYPE]	= "invalid transport type",
	[IB_CM_REJ_STALE_CONN]			= "stale conn",
	[IB_CM_REJ_RDC_NOT_EXIST]		= "RDC not exist",
	[IB_CM_REJ_INVALID_GID]			= "invalid GID",
	[IB_CM_REJ_INVALID_LID]			= "invalid LID",
	[IB_CM_REJ_INVALID_SL]			= "invalid SL",
	[IB_CM_REJ_INVALID_TRAFFIC_CLASS]	= "invalid traffic class",
	[IB_CM_REJ_INVALID_HOP_LIMIT]		= "invalid hop limit",
	[IB_CM_REJ_INVALID_PACKET_RATE]		= "invalid packet rate",
	[IB_CM_REJ_INVALID_ALT_GID]		= "invalid alt GID",
	[IB_CM_REJ_INVALID_ALT_LID]		= "invalid alt LID",
	[IB_CM_REJ_INVALID_ALT_SL]		= "invalid alt SL",
	[IB_CM_REJ_INVALID_ALT_TRAFFIC_CLASS]	= "invalid alt traffic class",
	[IB_CM_REJ_INVALID_ALT_HOP_LIMIT]	= "invalid alt hop limit",
	[IB_CM_REJ_INVALID_ALT_PACKET_RATE]	= "invalid alt packet rate",
	[IB_CM_REJ_PORT_CM_REDIRECT]		= "port CM redirect",
	[IB_CM_REJ_PORT_REDIRECT]		= "port redirect",
	[IB_CM_REJ_INVALID_MTU]			= "invalid MTU",
	[IB_CM_REJ_INSUFFICIENT_RESP_RESOURCES]	= "insufficient resp resources",
	[IB_CM_REJ_CONSUMER_DEFINED]		= "consumer defined",
	[IB_CM_REJ_INVALID_RNR_RETRY]		= "invalid RNR retry",
	[IB_CM_REJ_DUPLICATE_LOCAL_COMM_ID]	= "duplicate local comm ID",
	[IB_CM_REJ_INVALID_CLASS_VERSION]	= "invalid class version",
	[IB_CM_REJ_INVALID_FLOW_LABEL]		= "invalid flow label",
	[IB_CM_REJ_INVALID_ALT_FLOW_LABEL]	= "invalid alt flow label",
};

const char *__attribute_const__ ibcm_reject_msg(int reason)
{
	size_t index = reason;

	if (index < ARRAY_SIZE(ibcm_rej_reason_strs) &&
	    ibcm_rej_reason_strs[index])
		return ibcm_rej_reason_strs[index];
	else
		return "unrecognized reason";
}
EXPORT_SYMBOL(ibcm_reject_msg);

83
static void cm_add_one(struct ib_device *device);
84
static void cm_remove_one(struct ib_device *device, void *client_data);
85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101

static struct ib_client cm_client = {
	.name   = "cm",
	.add    = cm_add_one,
	.remove = cm_remove_one
};

static struct ib_cm {
	spinlock_t lock;
	struct list_head device_list;
	rwlock_t device_lock;
	struct rb_root listen_service_table;
	u64 listen_service_id;
	/* struct rb_root peer_service_table; todo: fix peer to peer */
	struct rb_root remote_qp_table;
	struct rb_root remote_id_table;
	struct rb_root remote_sidr_table;
102 103
	struct xarray local_id_table;
	u32 local_id_next;
S
Sean Hefty 已提交
104
	__be32 random_id_operand;
105
	struct list_head timewait_list;
106
	struct workqueue_struct *wq;
107 108
	/* Sync on cm change port state */
	spinlock_t state_lock;
109 110
} cm;

111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153
/* Counter indexes ordered by attribute ID */
enum {
	CM_REQ_COUNTER,
	CM_MRA_COUNTER,
	CM_REJ_COUNTER,
	CM_REP_COUNTER,
	CM_RTU_COUNTER,
	CM_DREQ_COUNTER,
	CM_DREP_COUNTER,
	CM_SIDR_REQ_COUNTER,
	CM_SIDR_REP_COUNTER,
	CM_LAP_COUNTER,
	CM_APR_COUNTER,
	CM_ATTR_COUNT,
	CM_ATTR_ID_OFFSET = 0x0010,
};

enum {
	CM_XMIT,
	CM_XMIT_RETRIES,
	CM_RECV,
	CM_RECV_DUPLICATES,
	CM_COUNTER_GROUPS
};

static char const counter_group_names[CM_COUNTER_GROUPS]
				     [sizeof("cm_rx_duplicates")] = {
	"cm_tx_msgs", "cm_tx_retries",
	"cm_rx_msgs", "cm_rx_duplicates"
};

struct cm_counter_group {
	struct kobject obj;
	atomic_long_t counter[CM_ATTR_COUNT];
};

struct cm_counter_attribute {
	struct attribute attr;
	int index;
};

#define CM_COUNTER_ATTR(_name, _index) \
struct cm_counter_attribute cm_##_name##_counter_attr = { \
154
	.attr = { .name = __stringify(_name), .mode = 0444 }, \
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184
	.index = _index \
}

static CM_COUNTER_ATTR(req, CM_REQ_COUNTER);
static CM_COUNTER_ATTR(mra, CM_MRA_COUNTER);
static CM_COUNTER_ATTR(rej, CM_REJ_COUNTER);
static CM_COUNTER_ATTR(rep, CM_REP_COUNTER);
static CM_COUNTER_ATTR(rtu, CM_RTU_COUNTER);
static CM_COUNTER_ATTR(dreq, CM_DREQ_COUNTER);
static CM_COUNTER_ATTR(drep, CM_DREP_COUNTER);
static CM_COUNTER_ATTR(sidr_req, CM_SIDR_REQ_COUNTER);
static CM_COUNTER_ATTR(sidr_rep, CM_SIDR_REP_COUNTER);
static CM_COUNTER_ATTR(lap, CM_LAP_COUNTER);
static CM_COUNTER_ATTR(apr, CM_APR_COUNTER);

static struct attribute *cm_counter_default_attrs[] = {
	&cm_req_counter_attr.attr,
	&cm_mra_counter_attr.attr,
	&cm_rej_counter_attr.attr,
	&cm_rep_counter_attr.attr,
	&cm_rtu_counter_attr.attr,
	&cm_dreq_counter_attr.attr,
	&cm_drep_counter_attr.attr,
	&cm_sidr_req_counter_attr.attr,
	&cm_sidr_rep_counter_attr.attr,
	&cm_lap_counter_attr.attr,
	&cm_apr_counter_attr.attr,
	NULL
};

185 186 187
struct cm_port {
	struct cm_device *cm_dev;
	struct ib_mad_agent *mad_agent;
188
	struct kobject port_obj;
189
	u8 port_num;
190 191
	struct list_head cm_priv_prim_list;
	struct list_head cm_priv_altr_list;
192
	struct cm_counter_group counter_group[CM_COUNTER_GROUPS];
193 194 195 196
};

struct cm_device {
	struct list_head list;
197
	struct ib_device *ib_device;
198
	u8 ack_delay;
199
	int going_down;
200
	struct cm_port *port[0];
201 202 203 204 205
};

struct cm_av {
	struct cm_port *port;
	union ib_gid dgid;
206
	struct rdma_ah_attr ah_attr;
207
	u16 pkey_index;
208
	u8 timeout;
209 210 211
};

struct cm_work {
D
David Howells 已提交
212
	struct delayed_work work;
213 214 215
	struct list_head list;
	struct cm_port *port;
	struct ib_mad_recv_wc *mad_recv_wc;	/* Received MADs */
216 217
	__be32 local_id;			/* Established / timewait */
	__be32 remote_id;
218
	struct ib_cm_event cm_event;
219
	struct sa_path_rec path[0];
220 221 222
};

struct cm_timewait_info {
223
	struct cm_work work;
224
	struct list_head list;
225 226
	struct rb_node remote_qp_node;
	struct rb_node remote_id_node;
227 228
	__be64 remote_ca_guid;
	__be32 remote_qpn;
229 230 231 232 233 234 235 236 237
	u8 inserted_remote_qp;
	u8 inserted_remote_id;
};

struct cm_id_private {
	struct ib_cm_id	id;

	struct rb_node service_node;
	struct rb_node sidr_id_node;
238
	spinlock_t lock;	/* Do not acquire inside cm.lock */
S
Sean Hefty 已提交
239
	struct completion comp;
240
	refcount_t refcount;
H
Haggai Eran 已提交
241 242 243
	/* Number of clients sharing this ib_cm_id. Only valid for listeners.
	 * Protected by the cm.lock spinlock. */
	int listen_sharecount;
244
	struct rcu_head rcu;
245 246 247 248 249 250 251 252

	struct ib_mad_send_buf *msg;
	struct cm_timewait_info *timewait_info;
	/* todo: use alternate port on send failure */
	struct cm_av av;
	struct cm_av alt_av;

	void *private_data;
253 254 255
	__be64 tid;
	__be32 local_qpn;
	__be32 remote_qpn;
256
	enum ib_qp_type qp_type;
257 258
	__be32 sq_psn;
	__be32 rq_psn;
259 260
	int timeout_ms;
	enum ib_mtu path_mtu;
261
	__be16 pkey;
262 263 264 265 266 267 268 269
	u8 private_data_len;
	u8 max_cm_retries;
	u8 peer_to_peer;
	u8 responder_resources;
	u8 initiator_depth;
	u8 retry_count;
	u8 rnr_retry_count;
	u8 service_timeout;
270
	u8 target_ack_delay;
271

272 273 274 275 276 277
	struct list_head prim_list;
	struct list_head altr_list;
	/* Indicates that the send port mad is registered and av is set */
	int prim_send_port_not_ready;
	int altr_send_port_not_ready;

278 279 280 281
	struct list_head work_list;
	atomic_t work_count;
};

D
David Howells 已提交
282
static void cm_work_handler(struct work_struct *work);
283 284 285

static inline void cm_deref_id(struct cm_id_private *cm_id_priv)
{
286
	if (refcount_dec_and_test(&cm_id_priv->refcount))
S
Sean Hefty 已提交
287
		complete(&cm_id_priv->comp);
288 289 290 291 292 293 294 295
}

static int cm_alloc_msg(struct cm_id_private *cm_id_priv,
			struct ib_mad_send_buf **msg)
{
	struct ib_mad_agent *mad_agent;
	struct ib_mad_send_buf *m;
	struct ib_ah *ah;
296 297 298
	struct cm_av *av;
	unsigned long flags, flags2;
	int ret = 0;
299

300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315
	/* don't let the port to be released till the agent is down */
	spin_lock_irqsave(&cm.state_lock, flags2);
	spin_lock_irqsave(&cm.lock, flags);
	if (!cm_id_priv->prim_send_port_not_ready)
		av = &cm_id_priv->av;
	else if (!cm_id_priv->altr_send_port_not_ready &&
		 (cm_id_priv->alt_av.port))
		av = &cm_id_priv->alt_av;
	else {
		pr_info("%s: not valid CM id\n", __func__);
		ret = -ENODEV;
		spin_unlock_irqrestore(&cm.lock, flags);
		goto out;
	}
	spin_unlock_irqrestore(&cm.lock, flags);
	/* Make sure the port haven't released the mad yet */
316
	mad_agent = cm_id_priv->av.port->mad_agent;
317 318 319 320 321
	if (!mad_agent) {
		pr_info("%s: not a valid MAD agent\n", __func__);
		ret = -ENODEV;
		goto out;
	}
322
	ah = rdma_create_ah(mad_agent->qp->pd, &av->ah_attr, 0);
323 324 325 326
	if (IS_ERR(ah)) {
		ret = PTR_ERR(ah);
		goto out;
	}
327

R
Roland Dreier 已提交
328
	m = ib_create_send_mad(mad_agent, cm_id_priv->id.remote_cm_qpn,
329
			       av->pkey_index,
330
			       0, IB_MGMT_MAD_HDR, IB_MGMT_MAD_DATA,
331 332
			       GFP_ATOMIC,
			       IB_MGMT_BASE_VERSION);
333
	if (IS_ERR(m)) {
334
		rdma_destroy_ah(ah, 0);
335 336
		ret = PTR_ERR(m);
		goto out;
337 338 339
	}

	/* Timeout set by caller if response is expected. */
340 341
	m->ah = ah;
	m->retries = cm_id_priv->max_cm_retries;
342

343
	refcount_inc(&cm_id_priv->refcount);
344 345
	m->context[0] = cm_id_priv;
	*msg = m;
346 347 348 349

out:
	spin_unlock_irqrestore(&cm.state_lock, flags2);
	return ret;
350 351
}

352 353 354 355 356 357 358 359 360 361 362 363
static struct ib_mad_send_buf *cm_alloc_response_msg_no_ah(struct cm_port *port,
							   struct ib_mad_recv_wc *mad_recv_wc)
{
	return ib_create_send_mad(port->mad_agent, 1, mad_recv_wc->wc->pkey_index,
				  0, IB_MGMT_MAD_HDR, IB_MGMT_MAD_DATA,
				  GFP_ATOMIC,
				  IB_MGMT_BASE_VERSION);
}

static int cm_create_response_msg_ah(struct cm_port *port,
				     struct ib_mad_recv_wc *mad_recv_wc,
				     struct ib_mad_send_buf *msg)
364 365 366 367 368 369 370 371
{
	struct ib_ah *ah;

	ah = ib_create_ah_from_wc(port->mad_agent->qp->pd, mad_recv_wc->wc,
				  mad_recv_wc->recv_buf.grh, port->port_num);
	if (IS_ERR(ah))
		return PTR_ERR(ah);

372
	msg->ah = ah;
373 374 375 376 377
	return 0;
}

static void cm_free_msg(struct ib_mad_send_buf *msg)
{
378
	if (msg->ah)
379
		rdma_destroy_ah(msg->ah, 0);
380 381 382 383 384
	if (msg->context[0])
		cm_deref_id(msg->context[0]);
	ib_free_send_mad(msg);
}

385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
static int cm_alloc_response_msg(struct cm_port *port,
				 struct ib_mad_recv_wc *mad_recv_wc,
				 struct ib_mad_send_buf **msg)
{
	struct ib_mad_send_buf *m;
	int ret;

	m = cm_alloc_response_msg_no_ah(port, mad_recv_wc);
	if (IS_ERR(m))
		return PTR_ERR(m);

	ret = cm_create_response_msg_ah(port, mad_recv_wc, m);
	if (ret) {
		cm_free_msg(m);
		return ret;
	}

	*msg = m;
	return 0;
}

406 407 408 409 410 411 412 413
static void * cm_copy_private_data(const void *private_data,
				   u8 private_data_len)
{
	void *data;

	if (!private_data || !private_data_len)
		return NULL;

E
Eric Sesterhenn 已提交
414
	data = kmemdup(private_data, private_data_len, GFP_KERNEL);
415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430
	if (!data)
		return ERR_PTR(-ENOMEM);

	return data;
}

static void cm_set_private_data(struct cm_id_private *cm_id_priv,
				 void *private_data, u8 private_data_len)
{
	if (cm_id_priv->private_data && cm_id_priv->private_data_len)
		kfree(cm_id_priv->private_data);

	cm_id_priv->private_data = private_data;
	cm_id_priv->private_data_len = private_data_len;
}

431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452
static int cm_init_av_for_lap(struct cm_port *port, struct ib_wc *wc,
			      struct ib_grh *grh, struct cm_av *av)
{
	struct rdma_ah_attr new_ah_attr;
	int ret;

	av->port = port;
	av->pkey_index = wc->pkey_index;

	/*
	 * av->ah_attr might be initialized based on past wc during incoming
	 * connect request or while sending out connect request. So initialize
	 * a new ah_attr on stack. If initialization fails, old ah_attr is
	 * used for sending any responses. If initialization is successful,
	 * than new ah_attr is used by overwriting old one.
	 */
	ret = ib_init_ah_attr_from_wc(port->cm_dev->ib_device,
				      port->port_num, wc,
				      grh, &new_ah_attr);
	if (ret)
		return ret;

453
	rdma_move_ah_attr(&av->ah_attr, &new_ah_attr);
454 455 456
	return 0;
}

P
Parav Pandit 已提交
457 458
static int cm_init_av_for_response(struct cm_port *port, struct ib_wc *wc,
				   struct ib_grh *grh, struct cm_av *av)
459 460 461
{
	av->port = port;
	av->pkey_index = wc->pkey_index;
462 463 464
	return ib_init_ah_attr_from_wc(port->cm_dev->ib_device,
				       port->port_num, wc,
				       grh, &av->ah_attr);
465 466
}

467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486
static int add_cm_id_to_port_list(struct cm_id_private *cm_id_priv,
				  struct cm_av *av,
				  struct cm_port *port)
{
	unsigned long flags;
	int ret = 0;

	spin_lock_irqsave(&cm.lock, flags);

	if (&cm_id_priv->av == av)
		list_add_tail(&cm_id_priv->prim_list, &port->cm_priv_prim_list);
	else if (&cm_id_priv->alt_av == av)
		list_add_tail(&cm_id_priv->altr_list, &port->cm_priv_altr_list);
	else
		ret = -EINVAL;

	spin_unlock_irqrestore(&cm.lock, flags);
	return ret;
}

487 488
static struct cm_port *
get_cm_port_from_path(struct sa_path_rec *path, const struct ib_gid_attr *attr)
489 490 491 492
{
	struct cm_device *cm_dev;
	struct cm_port *port = NULL;
	unsigned long flags;
493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519

	if (attr) {
		read_lock_irqsave(&cm.device_lock, flags);
		list_for_each_entry(cm_dev, &cm.device_list, list) {
			if (cm_dev->ib_device == attr->device) {
				port = cm_dev->port[attr->port_num - 1];
				break;
			}
		}
		read_unlock_irqrestore(&cm.device_lock, flags);
	} else {
		/* SGID attribute can be NULL in following
		 * conditions.
		 * (a) Alternative path
		 * (b) IB link layer without GRH
		 * (c) LAP send messages
		 */
		read_lock_irqsave(&cm.device_lock, flags);
		list_for_each_entry(cm_dev, &cm.device_list, list) {
			attr = rdma_find_gid(cm_dev->ib_device,
					     &path->sgid,
					     sa_conv_pathrec_to_gid_type(path),
					     NULL);
			if (!IS_ERR(attr)) {
				port = cm_dev->port[attr->port_num - 1];
				break;
			}
520
		}
521 522 523
		read_unlock_irqrestore(&cm.device_lock, flags);
		if (port)
			rdma_put_gid_attr(attr);
524
	}
525 526 527
	return port;
}

528 529 530
static int cm_init_av_by_path(struct sa_path_rec *path,
			      const struct ib_gid_attr *sgid_attr,
			      struct cm_av *av,
531 532
			      struct cm_id_private *cm_id_priv)
{
533
	struct rdma_ah_attr new_ah_attr;
534 535 536
	struct cm_device *cm_dev;
	struct cm_port *port;
	int ret;
537

538
	port = get_cm_port_from_path(path, sgid_attr);
539 540
	if (!port)
		return -EINVAL;
541
	cm_dev = port->cm_dev;
542

543
	ret = ib_find_cached_pkey(cm_dev->ib_device, port->port_num,
544 545 546 547 548
				  be16_to_cpu(path->pkey), &av->pkey_index);
	if (ret)
		return ret;

	av->port = port;
549 550 551

	/*
	 * av->ah_attr might be initialized based on wc or during
552 553
	 * request processing time which might have reference to sgid_attr.
	 * So initialize a new ah_attr on stack.
554 555
	 * If initialization fails, old ah_attr is used for sending any
	 * responses. If initialization is successful, than new ah_attr
556 557
	 * is used by overwriting the old one. So that right ah_attr
	 * can be used to return an error response.
558
	 */
559
	ret = ib_init_ah_attr_from_path(cm_dev->ib_device, port->port_num, path,
560
					&new_ah_attr, sgid_attr);
561 562 563
	if (ret)
		return ret;

564
	av->timeout = path->packet_life_time + 1;
565

566
	ret = add_cm_id_to_port_list(cm_id_priv, av, port);
567 568
	if (ret) {
		rdma_destroy_ah_attr(&new_ah_attr);
569
		return ret;
570
	}
571
	rdma_move_ah_attr(&av->ah_attr, &new_ah_attr);
572
	return 0;
573 574 575 576
}

static int cm_alloc_id(struct cm_id_private *cm_id_priv)
{
577 578
	int err;
	u32 id;
T
Tejun Heo 已提交
579

580 581
	err = xa_alloc_cyclic_irq(&cm.local_id_table, &id, cm_id_priv,
			xa_limit_32b, &cm.local_id_next, GFP_KERNEL);
S
Sean Hefty 已提交
582

583
	cm_id_priv->id.local_id = (__force __be32)id ^ cm.random_id_operand;
584 585 586 587 588 589
	return err;
}

static u32 cm_local_id(__be32 local_id)
{
	return (__force u32) (local_id ^ cm.random_id_operand);
590 591
}

592
static void cm_free_id(__be32 local_id)
593
{
594
	xa_erase_irq(&cm.local_id_table, cm_local_id(local_id));
595 596
}

597
static struct cm_id_private *cm_acquire_id(__be32 local_id, __be32 remote_id)
598 599 600
{
	struct cm_id_private *cm_id_priv;

601
	rcu_read_lock();
602
	cm_id_priv = xa_load(&cm.local_id_table, cm_local_id(local_id));
603 604 605 606
	if (!cm_id_priv || cm_id_priv->id.remote_id != remote_id ||
	    !refcount_inc_not_zero(&cm_id_priv->refcount))
		cm_id_priv = NULL;
	rcu_read_unlock();
607 608 609 610

	return cm_id_priv;
}

R
Roland Dreier 已提交
611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635
/*
 * Trivial helpers to strip endian annotation and compare; the
 * endianness doesn't actually matter since we just need a stable
 * order for the RB tree.
 */
static int be32_lt(__be32 a, __be32 b)
{
	return (__force u32) a < (__force u32) b;
}

static int be32_gt(__be32 a, __be32 b)
{
	return (__force u32) a > (__force u32) b;
}

static int be64_lt(__be64 a, __be64 b)
{
	return (__force u64) a < (__force u64) b;
}

static int be64_gt(__be64 a, __be64 b)
{
	return (__force u64) a > (__force u64) b;
}

636 637 638 639 640
static struct cm_id_private * cm_insert_listen(struct cm_id_private *cm_id_priv)
{
	struct rb_node **link = &cm.listen_service_table.rb_node;
	struct rb_node *parent = NULL;
	struct cm_id_private *cur_cm_id_priv;
641 642
	__be64 service_id = cm_id_priv->id.service_id;
	__be64 service_mask = cm_id_priv->id.service_mask;
643 644 645 646 647 648

	while (*link) {
		parent = *link;
		cur_cm_id_priv = rb_entry(parent, struct cm_id_private,
					  service_node);
		if ((cur_cm_id_priv->id.service_mask & service_id) ==
649
		    (service_mask & cur_cm_id_priv->id.service_id) &&
H
Haggai Eran 已提交
650
		    (cm_id_priv->id.device == cur_cm_id_priv->id.device))
651 652 653 654 655 656
			return cur_cm_id_priv;

		if (cm_id_priv->id.device < cur_cm_id_priv->id.device)
			link = &(*link)->rb_left;
		else if (cm_id_priv->id.device > cur_cm_id_priv->id.device)
			link = &(*link)->rb_right;
R
Roland Dreier 已提交
657
		else if (be64_lt(service_id, cur_cm_id_priv->id.service_id))
658
			link = &(*link)->rb_left;
R
Roland Dreier 已提交
659
		else if (be64_gt(service_id, cur_cm_id_priv->id.service_id))
660
			link = &(*link)->rb_right;
661 662 663 664 665 666 667 668
		else
			link = &(*link)->rb_right;
	}
	rb_link_node(&cm_id_priv->service_node, parent, link);
	rb_insert_color(&cm_id_priv->service_node, &cm.listen_service_table);
	return NULL;
}

669
static struct cm_id_private * cm_find_listen(struct ib_device *device,
H
Haggai Eran 已提交
670
					     __be64 service_id)
671 672 673 674 675 676 677
{
	struct rb_node *node = cm.listen_service_table.rb_node;
	struct cm_id_private *cm_id_priv;

	while (node) {
		cm_id_priv = rb_entry(node, struct cm_id_private, service_node);
		if ((cm_id_priv->id.service_mask & service_id) ==
678
		     cm_id_priv->id.service_id &&
H
Haggai Eran 已提交
679
		    (cm_id_priv->id.device == device))
680
			return cm_id_priv;
681 682 683 684 685

		if (device < cm_id_priv->id.device)
			node = node->rb_left;
		else if (device > cm_id_priv->id.device)
			node = node->rb_right;
R
Roland Dreier 已提交
686
		else if (be64_lt(service_id, cm_id_priv->id.service_id))
687
			node = node->rb_left;
R
Roland Dreier 已提交
688
		else if (be64_gt(service_id, cm_id_priv->id.service_id))
689
			node = node->rb_right;
690 691 692 693 694 695 696 697 698 699 700 701
		else
			node = node->rb_right;
	}
	return NULL;
}

static struct cm_timewait_info * cm_insert_remote_id(struct cm_timewait_info
						     *timewait_info)
{
	struct rb_node **link = &cm.remote_id_table.rb_node;
	struct rb_node *parent = NULL;
	struct cm_timewait_info *cur_timewait_info;
702 703
	__be64 remote_ca_guid = timewait_info->remote_ca_guid;
	__be32 remote_id = timewait_info->work.remote_id;
704 705 706 707 708

	while (*link) {
		parent = *link;
		cur_timewait_info = rb_entry(parent, struct cm_timewait_info,
					     remote_id_node);
R
Roland Dreier 已提交
709
		if (be32_lt(remote_id, cur_timewait_info->work.remote_id))
710
			link = &(*link)->rb_left;
R
Roland Dreier 已提交
711
		else if (be32_gt(remote_id, cur_timewait_info->work.remote_id))
712
			link = &(*link)->rb_right;
R
Roland Dreier 已提交
713
		else if (be64_lt(remote_ca_guid, cur_timewait_info->remote_ca_guid))
714
			link = &(*link)->rb_left;
R
Roland Dreier 已提交
715
		else if (be64_gt(remote_ca_guid, cur_timewait_info->remote_ca_guid))
716 717 718 719 720 721 722 723 724 725
			link = &(*link)->rb_right;
		else
			return cur_timewait_info;
	}
	timewait_info->inserted_remote_id = 1;
	rb_link_node(&timewait_info->remote_id_node, parent, link);
	rb_insert_color(&timewait_info->remote_id_node, &cm.remote_id_table);
	return NULL;
}

726 727
static struct cm_timewait_info * cm_find_remote_id(__be64 remote_ca_guid,
						   __be32 remote_id)
728 729 730 731 732 733 734
{
	struct rb_node *node = cm.remote_id_table.rb_node;
	struct cm_timewait_info *timewait_info;

	while (node) {
		timewait_info = rb_entry(node, struct cm_timewait_info,
					 remote_id_node);
R
Roland Dreier 已提交
735
		if (be32_lt(remote_id, timewait_info->work.remote_id))
736
			node = node->rb_left;
R
Roland Dreier 已提交
737
		else if (be32_gt(remote_id, timewait_info->work.remote_id))
738
			node = node->rb_right;
R
Roland Dreier 已提交
739
		else if (be64_lt(remote_ca_guid, timewait_info->remote_ca_guid))
740
			node = node->rb_left;
R
Roland Dreier 已提交
741
		else if (be64_gt(remote_ca_guid, timewait_info->remote_ca_guid))
742 743 744 745 746 747 748 749 750 751 752 753 754
			node = node->rb_right;
		else
			return timewait_info;
	}
	return NULL;
}

static struct cm_timewait_info * cm_insert_remote_qpn(struct cm_timewait_info
						      *timewait_info)
{
	struct rb_node **link = &cm.remote_qp_table.rb_node;
	struct rb_node *parent = NULL;
	struct cm_timewait_info *cur_timewait_info;
755 756
	__be64 remote_ca_guid = timewait_info->remote_ca_guid;
	__be32 remote_qpn = timewait_info->remote_qpn;
757 758 759 760 761

	while (*link) {
		parent = *link;
		cur_timewait_info = rb_entry(parent, struct cm_timewait_info,
					     remote_qp_node);
R
Roland Dreier 已提交
762
		if (be32_lt(remote_qpn, cur_timewait_info->remote_qpn))
763
			link = &(*link)->rb_left;
R
Roland Dreier 已提交
764
		else if (be32_gt(remote_qpn, cur_timewait_info->remote_qpn))
765
			link = &(*link)->rb_right;
R
Roland Dreier 已提交
766
		else if (be64_lt(remote_ca_guid, cur_timewait_info->remote_ca_guid))
767
			link = &(*link)->rb_left;
R
Roland Dreier 已提交
768
		else if (be64_gt(remote_ca_guid, cur_timewait_info->remote_ca_guid))
769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785
			link = &(*link)->rb_right;
		else
			return cur_timewait_info;
	}
	timewait_info->inserted_remote_qp = 1;
	rb_link_node(&timewait_info->remote_qp_node, parent, link);
	rb_insert_color(&timewait_info->remote_qp_node, &cm.remote_qp_table);
	return NULL;
}

static struct cm_id_private * cm_insert_remote_sidr(struct cm_id_private
						    *cm_id_priv)
{
	struct rb_node **link = &cm.remote_sidr_table.rb_node;
	struct rb_node *parent = NULL;
	struct cm_id_private *cur_cm_id_priv;
	union ib_gid *port_gid = &cm_id_priv->av.dgid;
786
	__be32 remote_id = cm_id_priv->id.remote_id;
787 788 789 790 791

	while (*link) {
		parent = *link;
		cur_cm_id_priv = rb_entry(parent, struct cm_id_private,
					  sidr_id_node);
R
Roland Dreier 已提交
792
		if (be32_lt(remote_id, cur_cm_id_priv->id.remote_id))
793
			link = &(*link)->rb_left;
R
Roland Dreier 已提交
794
		else if (be32_gt(remote_id, cur_cm_id_priv->id.remote_id))
795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822
			link = &(*link)->rb_right;
		else {
			int cmp;
			cmp = memcmp(port_gid, &cur_cm_id_priv->av.dgid,
				     sizeof *port_gid);
			if (cmp < 0)
				link = &(*link)->rb_left;
			else if (cmp > 0)
				link = &(*link)->rb_right;
			else
				return cur_cm_id_priv;
		}
	}
	rb_link_node(&cm_id_priv->sidr_id_node, parent, link);
	rb_insert_color(&cm_id_priv->sidr_id_node, &cm.remote_sidr_table);
	return NULL;
}

static void cm_reject_sidr_req(struct cm_id_private *cm_id_priv,
			       enum ib_cm_sidr_status status)
{
	struct ib_cm_sidr_rep_param param;

	memset(&param, 0, sizeof param);
	param.status = status;
	ib_send_cm_sidr_rep(&cm_id_priv->id, &param);
}

823 824
struct ib_cm_id *ib_create_cm_id(struct ib_device *device,
				 ib_cm_handler cm_handler,
825 826 827 828 829
				 void *context)
{
	struct cm_id_private *cm_id_priv;
	int ret;

R
Roland Dreier 已提交
830
	cm_id_priv = kzalloc(sizeof *cm_id_priv, GFP_KERNEL);
831 832 833 834
	if (!cm_id_priv)
		return ERR_PTR(-ENOMEM);

	cm_id_priv->id.state = IB_CM_IDLE;
835
	cm_id_priv->id.device = device;
836 837
	cm_id_priv->id.cm_handler = cm_handler;
	cm_id_priv->id.context = context;
J
John Kingman 已提交
838
	cm_id_priv->id.remote_cm_qpn = 1;
839 840 841 842 843
	ret = cm_alloc_id(cm_id_priv);
	if (ret)
		goto error;

	spin_lock_init(&cm_id_priv->lock);
S
Sean Hefty 已提交
844
	init_completion(&cm_id_priv->comp);
845
	INIT_LIST_HEAD(&cm_id_priv->work_list);
846 847
	INIT_LIST_HEAD(&cm_id_priv->prim_list);
	INIT_LIST_HEAD(&cm_id_priv->altr_list);
848
	atomic_set(&cm_id_priv->work_count, -1);
849
	refcount_set(&cm_id_priv->refcount, 1);
850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882
	return &cm_id_priv->id;

error:
	kfree(cm_id_priv);
	return ERR_PTR(-ENOMEM);
}
EXPORT_SYMBOL(ib_create_cm_id);

static struct cm_work * cm_dequeue_work(struct cm_id_private *cm_id_priv)
{
	struct cm_work *work;

	if (list_empty(&cm_id_priv->work_list))
		return NULL;

	work = list_entry(cm_id_priv->work_list.next, struct cm_work, list);
	list_del(&work->list);
	return work;
}

static void cm_free_work(struct cm_work *work)
{
	if (work->mad_recv_wc)
		ib_free_recv_mad(work->mad_recv_wc);
	kfree(work);
}

static inline int cm_convert_to_ms(int iba_time)
{
	/* approximate conversion to ms from 4.096us x 2^iba_time */
	return 1 << max(iba_time - 8, 0);
}

883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901
/*
 * calculate: 4.096x2^ack_timeout = 4.096x2^ack_delay + 2x4.096x2^life_time
 * Because of how ack_timeout is stored, adding one doubles the timeout.
 * To avoid large timeouts, select the max(ack_delay, life_time + 1), and
 * increment it (round up) only if the other is within 50%.
 */
static u8 cm_ack_timeout(u8 ca_ack_delay, u8 packet_life_time)
{
	int ack_timeout = packet_life_time + 1;

	if (ack_timeout >= ca_ack_delay)
		ack_timeout += (ca_ack_delay >= (ack_timeout - 1));
	else
		ack_timeout = ca_ack_delay +
			      (ack_timeout >= (ca_ack_delay - 1));

	return min(31, ack_timeout);
}

902 903 904 905 906 907 908 909 910 911 912 913 914
static void cm_cleanup_timewait(struct cm_timewait_info *timewait_info)
{
	if (timewait_info->inserted_remote_id) {
		rb_erase(&timewait_info->remote_id_node, &cm.remote_id_table);
		timewait_info->inserted_remote_id = 0;
	}

	if (timewait_info->inserted_remote_qp) {
		rb_erase(&timewait_info->remote_qp_node, &cm.remote_qp_table);
		timewait_info->inserted_remote_qp = 0;
	}
}

915
static struct cm_timewait_info * cm_create_timewait_info(__be32 local_id)
916 917 918
{
	struct cm_timewait_info *timewait_info;

R
Roland Dreier 已提交
919
	timewait_info = kzalloc(sizeof *timewait_info, GFP_KERNEL);
920 921 922 923
	if (!timewait_info)
		return ERR_PTR(-ENOMEM);

	timewait_info->work.local_id = local_id;
D
David Howells 已提交
924
	INIT_DELAYED_WORK(&timewait_info->work.work, cm_work_handler);
925 926 927 928 929 930 931
	timewait_info->work.cm_event.event = IB_CM_TIMEWAIT_EXIT;
	return timewait_info;
}

static void cm_enter_timewait(struct cm_id_private *cm_id_priv)
{
	int wait_time;
932
	unsigned long flags;
933 934 935 936 937
	struct cm_device *cm_dev;

	cm_dev = ib_get_client_data(cm_id_priv->id.device, &cm_client);
	if (!cm_dev)
		return;
938

939
	spin_lock_irqsave(&cm.lock, flags);
940
	cm_cleanup_timewait(cm_id_priv->timewait_info);
941 942
	list_add_tail(&cm_id_priv->timewait_info->list, &cm.timewait_list);
	spin_unlock_irqrestore(&cm.lock, flags);
943

944 945 946 947 948 949
	/*
	 * The cm_id could be destroyed by the user before we exit timewait.
	 * To protect against this, we search for the cm_id after exiting
	 * timewait before notifying the user that we've exited timewait.
	 */
	cm_id_priv->id.state = IB_CM_TIMEWAIT;
950
	wait_time = cm_convert_to_ms(cm_id_priv->av.timeout);
951 952

	/* Check if the device started its remove_one */
953
	spin_lock_irqsave(&cm.lock, flags);
954 955 956
	if (!cm_dev->going_down)
		queue_delayed_work(cm.wq, &cm_id_priv->timewait_info->work.work,
				   msecs_to_jiffies(wait_time));
957
	spin_unlock_irqrestore(&cm.lock, flags);
958

959 960 961 962 963
	cm_id_priv->timewait_info = NULL;
}

static void cm_reset_to_idle(struct cm_id_private *cm_id_priv)
{
964 965
	unsigned long flags;

966 967
	cm_id_priv->id.state = IB_CM_IDLE;
	if (cm_id_priv->timewait_info) {
968
		spin_lock_irqsave(&cm.lock, flags);
969
		cm_cleanup_timewait(cm_id_priv->timewait_info);
970
		spin_unlock_irqrestore(&cm.lock, flags);
971 972 973 974 975
		kfree(cm_id_priv->timewait_info);
		cm_id_priv->timewait_info = NULL;
	}
}

976
static void cm_destroy_id(struct ib_cm_id *cm_id, int err)
977 978 979 980 981 982
{
	struct cm_id_private *cm_id_priv;
	struct cm_work *work;

	cm_id_priv = container_of(cm_id, struct cm_id_private, id);
retest:
983
	spin_lock_irq(&cm_id_priv->lock);
984 985
	switch (cm_id->state) {
	case IB_CM_LISTEN:
986
		spin_unlock_irq(&cm_id_priv->lock);
H
Haggai Eran 已提交
987

988
		spin_lock_irq(&cm.lock);
H
Haggai Eran 已提交
989 990 991 992 993 994
		if (--cm_id_priv->listen_sharecount > 0) {
			/* The id is still shared. */
			cm_deref_id(cm_id_priv);
			spin_unlock_irq(&cm.lock);
			return;
		}
995
		rb_erase(&cm_id_priv->service_node, &cm.listen_service_table);
996
		spin_unlock_irq(&cm.lock);
997 998 999
		break;
	case IB_CM_SIDR_REQ_SENT:
		cm_id->state = IB_CM_IDLE;
1000
		ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
1001
		spin_unlock_irq(&cm_id_priv->lock);
1002 1003
		break;
	case IB_CM_SIDR_REQ_RCVD:
1004
		spin_unlock_irq(&cm_id_priv->lock);
1005
		cm_reject_sidr_req(cm_id_priv, IB_SIDR_REJECT);
1006 1007 1008 1009 1010
		spin_lock_irq(&cm.lock);
		if (!RB_EMPTY_NODE(&cm_id_priv->sidr_id_node))
			rb_erase(&cm_id_priv->sidr_id_node,
				 &cm.remote_sidr_table);
		spin_unlock_irq(&cm.lock);
1011 1012
		break;
	case IB_CM_REQ_SENT:
1013
	case IB_CM_MRA_REQ_RCVD:
S
Sean Hefty 已提交
1014
		ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
1015
		spin_unlock_irq(&cm_id_priv->lock);
S
Sean Hefty 已提交
1016
		ib_send_cm_rej(cm_id, IB_CM_REJ_TIMEOUT,
1017 1018
			       &cm_id_priv->id.device->node_guid,
			       sizeof cm_id_priv->id.device->node_guid,
S
Sean Hefty 已提交
1019 1020
			       NULL, 0);
		break;
1021 1022 1023 1024
	case IB_CM_REQ_RCVD:
		if (err == -ENOMEM) {
			/* Do not reject to allow future retries. */
			cm_reset_to_idle(cm_id_priv);
1025
			spin_unlock_irq(&cm_id_priv->lock);
1026
		} else {
1027
			spin_unlock_irq(&cm_id_priv->lock);
1028 1029 1030 1031
			ib_send_cm_rej(cm_id, IB_CM_REJ_CONSUMER_DEFINED,
				       NULL, 0, NULL, 0);
		}
		break;
1032 1033
	case IB_CM_REP_SENT:
	case IB_CM_MRA_REP_RCVD:
1034
		ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
1035 1036 1037 1038
		/* Fall through */
	case IB_CM_MRA_REQ_SENT:
	case IB_CM_REP_RCVD:
	case IB_CM_MRA_REP_SENT:
1039
		spin_unlock_irq(&cm_id_priv->lock);
S
Sean Hefty 已提交
1040 1041
		ib_send_cm_rej(cm_id, IB_CM_REJ_CONSUMER_DEFINED,
			       NULL, 0, NULL, 0);
1042 1043
		break;
	case IB_CM_ESTABLISHED:
1044
		spin_unlock_irq(&cm_id_priv->lock);
1045 1046
		if (cm_id_priv->qp_type == IB_QPT_XRC_TGT)
			break;
1047 1048 1049
		ib_send_cm_dreq(cm_id, NULL, 0);
		goto retest;
	case IB_CM_DREQ_SENT:
1050
		ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
1051
		cm_enter_timewait(cm_id_priv);
1052
		spin_unlock_irq(&cm_id_priv->lock);
1053 1054
		break;
	case IB_CM_DREQ_RCVD:
1055
		spin_unlock_irq(&cm_id_priv->lock);
1056 1057 1058
		ib_send_cm_drep(cm_id, NULL, 0);
		break;
	default:
1059
		spin_unlock_irq(&cm_id_priv->lock);
1060 1061 1062
		break;
	}

1063 1064 1065 1066 1067 1068 1069 1070 1071
	spin_lock_irq(&cm.lock);
	if (!list_empty(&cm_id_priv->altr_list) &&
	    (!cm_id_priv->altr_send_port_not_ready))
		list_del(&cm_id_priv->altr_list);
	if (!list_empty(&cm_id_priv->prim_list) &&
	    (!cm_id_priv->prim_send_port_not_ready))
		list_del(&cm_id_priv->prim_list);
	spin_unlock_irq(&cm.lock);

1072
	cm_free_id(cm_id->local_id);
S
Sean Hefty 已提交
1073 1074
	cm_deref_id(cm_id_priv);
	wait_for_completion(&cm_id_priv->comp);
1075 1076
	while ((work = cm_dequeue_work(cm_id_priv)) != NULL)
		cm_free_work(work);
1077 1078 1079

	rdma_destroy_ah_attr(&cm_id_priv->av.ah_attr);
	rdma_destroy_ah_attr(&cm_id_priv->alt_av.ah_attr);
1080
	kfree(cm_id_priv->private_data);
1081
	kfree_rcu(cm_id_priv, rcu);
1082
}
1083 1084 1085 1086 1087

void ib_destroy_cm_id(struct ib_cm_id *cm_id)
{
	cm_destroy_id(cm_id, 0);
}
1088 1089
EXPORT_SYMBOL(ib_destroy_cm_id);

H
Haggai Eran 已提交
1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103
/**
 * __ib_cm_listen - Initiates listening on the specified service ID for
 *   connection and service ID resolution requests.
 * @cm_id: Connection identifier associated with the listen request.
 * @service_id: Service identifier matched against incoming connection
 *   and service ID resolution requests.  The service ID should be specified
 *   network-byte order.  If set to IB_CM_ASSIGN_SERVICE_ID, the CM will
 *   assign a service ID to the caller.
 * @service_mask: Mask applied to service ID used to listen across a
 *   range of service IDs.  If set to 0, the service ID is matched
 *   exactly.  This parameter is ignored if %service_id is set to
 *   IB_CM_ASSIGN_SERVICE_ID.
 */
static int __ib_cm_listen(struct ib_cm_id *cm_id, __be64 service_id,
H
Haggai Eran 已提交
1104
			  __be64 service_mask)
1105 1106 1107 1108
{
	struct cm_id_private *cm_id_priv, *cur_cm_id_priv;
	int ret = 0;

1109
	service_mask = service_mask ? service_mask : ~cpu_to_be64(0);
1110 1111 1112 1113 1114 1115
	service_id &= service_mask;
	if ((service_id & IB_SERVICE_ID_AGN_MASK) == IB_CM_ASSIGN_SERVICE_ID &&
	    (service_id != IB_CM_ASSIGN_SERVICE_ID))
		return -EINVAL;

	cm_id_priv = container_of(cm_id, struct cm_id_private, id);
1116 1117 1118
	if (cm_id->state != IB_CM_IDLE)
		return -EINVAL;

1119
	cm_id->state = IB_CM_LISTEN;
H
Haggai Eran 已提交
1120
	++cm_id_priv->listen_sharecount;
H
Haggai Eran 已提交
1121

1122
	if (service_id == IB_CM_ASSIGN_SERVICE_ID) {
1123
		cm_id->service_id = cpu_to_be64(cm.listen_service_id++);
1124
		cm_id->service_mask = ~cpu_to_be64(0);
1125 1126 1127 1128 1129 1130 1131 1132
	} else {
		cm_id->service_id = service_id;
		cm_id->service_mask = service_mask;
	}
	cur_cm_id_priv = cm_insert_listen(cm_id_priv);

	if (cur_cm_id_priv) {
		cm_id->state = IB_CM_IDLE;
H
Haggai Eran 已提交
1133
		--cm_id_priv->listen_sharecount;
1134 1135 1136 1137
		ret = -EBUSY;
	}
	return ret;
}
H
Haggai Eran 已提交
1138

H
Haggai Eran 已提交
1139
int ib_cm_listen(struct ib_cm_id *cm_id, __be64 service_id, __be64 service_mask)
H
Haggai Eran 已提交
1140
{
H
Haggai Eran 已提交
1141 1142 1143 1144 1145 1146 1147 1148
	unsigned long flags;
	int ret;

	spin_lock_irqsave(&cm.lock, flags);
	ret = __ib_cm_listen(cm_id, service_id, service_mask);
	spin_unlock_irqrestore(&cm.lock, flags);

	return ret;
H
Haggai Eran 已提交
1149
}
1150 1151
EXPORT_SYMBOL(ib_cm_listen);

H
Haggai Eran 已提交
1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187
/**
 * Create a new listening ib_cm_id and listen on the given service ID.
 *
 * If there's an existing ID listening on that same device and service ID,
 * return it.
 *
 * @device: Device associated with the cm_id.  All related communication will
 * be associated with the specified device.
 * @cm_handler: Callback invoked to notify the user of CM events.
 * @service_id: Service identifier matched against incoming connection
 *   and service ID resolution requests.  The service ID should be specified
 *   network-byte order.  If set to IB_CM_ASSIGN_SERVICE_ID, the CM will
 *   assign a service ID to the caller.
 *
 * Callers should call ib_destroy_cm_id when done with the listener ID.
 */
struct ib_cm_id *ib_cm_insert_listen(struct ib_device *device,
				     ib_cm_handler cm_handler,
				     __be64 service_id)
{
	struct cm_id_private *cm_id_priv;
	struct ib_cm_id *cm_id;
	unsigned long flags;
	int err = 0;

	/* Create an ID in advance, since the creation may sleep */
	cm_id = ib_create_cm_id(device, cm_handler, NULL);
	if (IS_ERR(cm_id))
		return cm_id;

	spin_lock_irqsave(&cm.lock, flags);

	if (service_id == IB_CM_ASSIGN_SERVICE_ID)
		goto new_id;

	/* Find an existing ID */
H
Haggai Eran 已提交
1188
	cm_id_priv = cm_find_listen(device, service_id);
H
Haggai Eran 已提交
1189 1190 1191 1192 1193 1194 1195
	if (cm_id_priv) {
		if (cm_id->cm_handler != cm_handler || cm_id->context) {
			/* Sharing an ib_cm_id with different handlers is not
			 * supported */
			spin_unlock_irqrestore(&cm.lock, flags);
			return ERR_PTR(-EINVAL);
		}
1196
		refcount_inc(&cm_id_priv->refcount);
H
Haggai Eran 已提交
1197 1198 1199 1200 1201 1202 1203 1204 1205 1206
		++cm_id_priv->listen_sharecount;
		spin_unlock_irqrestore(&cm.lock, flags);

		ib_destroy_cm_id(cm_id);
		cm_id = &cm_id_priv->id;
		return cm_id;
	}

new_id:
	/* Use newly created ID */
H
Haggai Eran 已提交
1207
	err = __ib_cm_listen(cm_id, service_id, 0);
H
Haggai Eran 已提交
1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218

	spin_unlock_irqrestore(&cm.lock, flags);

	if (err) {
		ib_destroy_cm_id(cm_id);
		return ERR_PTR(err);
	}
	return cm_id;
}
EXPORT_SYMBOL(ib_cm_insert_listen);

1219
static __be64 cm_form_tid(struct cm_id_private *cm_id_priv)
1220 1221 1222 1223
{
	u64 hi_tid, low_tid;

	hi_tid   = ((u64) cm_id_priv->av.port->mad_agent->hi_tid) << 32;
1224
	low_tid  = (u64)cm_id_priv->id.local_id;
1225 1226 1227 1228
	return cpu_to_be64(hi_tid | low_tid);
}

static void cm_format_mad_hdr(struct ib_mad_hdr *hdr,
1229
			      __be16 attr_id, __be64 tid)
1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242
{
	hdr->base_version  = IB_MGMT_BASE_VERSION;
	hdr->mgmt_class	   = IB_MGMT_CLASS_CM;
	hdr->class_version = IB_CM_CLASS_VERSION;
	hdr->method	   = IB_MGMT_METHOD_SEND;
	hdr->attr_id	   = attr_id;
	hdr->tid	   = tid;
}

static void cm_format_req(struct cm_req_msg *req_msg,
			  struct cm_id_private *cm_id_priv,
			  struct ib_cm_req_param *param)
{
1243 1244
	struct sa_path_rec *pri_path = param->primary_path;
	struct sa_path_rec *alt_path = param->alternate_path;
1245 1246 1247 1248 1249
	bool pri_ext = false;

	if (pri_path->rec_type == SA_PATH_REC_TYPE_OPA)
		pri_ext = opa_is_extended_lid(pri_path->opa.dlid,
					      pri_path->opa.slid);
1250

1251
	cm_format_mad_hdr(&req_msg->hdr, CM_REQ_ATTR_ID,
1252
			  cm_form_tid(cm_id_priv));
1253 1254 1255

	req_msg->local_comm_id = cm_id_priv->id.local_id;
	req_msg->service_id = param->service_id;
1256
	req_msg->local_ca_guid = cm_id_priv->id.device->node_guid;
1257
	IBA_SET(CM_REQ_LOCAL_QPN, req_msg, param->qp_num);
1258 1259 1260
	IBA_SET(CM_REQ_INITIATOR_DEPTH, req_msg, param->initiator_depth);
	IBA_SET(CM_REQ_REMOTE_CM_RESPONSE_TIMEOUT, req_msg,
		param->remote_cm_response_timeout);
1261
	cm_req_set_qp_type(req_msg, param->qp_type);
1262
	IBA_SET(CM_REQ_END_TO_END_FLOW_CONTROL, req_msg, param->flow_control);
1263
	IBA_SET(CM_REQ_STARTING_PSN, req_msg, param->starting_psn);
1264 1265
	IBA_SET(CM_REQ_LOCAL_CM_RESPONSE_TIMEOUT, req_msg,
		param->local_cm_response_timeout);
1266
	req_msg->pkey = param->primary_path->pkey;
1267 1268 1269
	IBA_SET(CM_REQ_PATH_PACKET_PAYLOAD_MTU, req_msg,
		param->primary_path->mtu);
	IBA_SET(CM_REQ_MAX_CM_RETRIES, req_msg, param->max_cm_retries);
S
Sean Hefty 已提交
1270 1271

	if (param->qp_type != IB_QPT_XRC_INI) {
1272 1273 1274 1275 1276 1277
		IBA_SET(CM_REQ_RESPONDER_RESOURCES, req_msg,
			param->responder_resources);
		IBA_SET(CM_REQ_RETRY_COUNT, req_msg, param->retry_count);
		IBA_SET(CM_REQ_RNR_RETRY_COUNT, req_msg,
			param->rnr_retry_count);
		IBA_SET(CM_REQ_SRQ, req_msg, param->srq);
S
Sean Hefty 已提交
1278
	}
1279

1280 1281 1282 1283 1284 1285 1286 1287
	req_msg->primary_local_gid = pri_path->sgid;
	req_msg->primary_remote_gid = pri_path->dgid;
	if (pri_ext) {
		req_msg->primary_local_gid.global.interface_id
			= OPA_MAKE_ID(be32_to_cpu(pri_path->opa.slid));
		req_msg->primary_remote_gid.global.interface_id
			= OPA_MAKE_ID(be32_to_cpu(pri_path->opa.dlid));
	}
1288
	if (pri_path->hop_limit <= 1) {
1289
		req_msg->primary_local_lid = pri_ext ? 0 :
1290
			htons(ntohl(sa_path_get_slid(pri_path)));
1291
		req_msg->primary_remote_lid = pri_ext ? 0 :
1292
			htons(ntohl(sa_path_get_dlid(pri_path)));
1293 1294 1295 1296 1297
	} else {
		/* Work-around until there's a way to obtain remote LID info */
		req_msg->primary_local_lid = IB_LID_PERMISSIVE;
		req_msg->primary_remote_lid = IB_LID_PERMISSIVE;
	}
1298 1299
	IBA_SET(CM_REQ_PRIMARY_FLOW_LABEL, req_msg,
		be32_to_cpu(pri_path->flow_label));
1300
	IBA_SET(CM_REQ_PRIMARY_PACKET_RATE, req_msg, pri_path->rate);
1301 1302
	req_msg->primary_traffic_class = pri_path->traffic_class;
	req_msg->primary_hop_limit = pri_path->hop_limit;
1303 1304 1305 1306
	IBA_SET(CM_REQ_PRIMARY_SL, req_msg, pri_path->sl);
	IBA_SET(CM_REQ_PRIMARY_SUBNET_LOCAL, req_msg,
		(pri_path->hop_limit <= 1));
	IBA_SET(CM_REQ_PRIMARY_LOCAL_ACK_TIMEOUT, req_msg,
1307
		cm_ack_timeout(cm_id_priv->av.port->cm_dev->ack_delay,
1308
			       pri_path->packet_life_time));
1309

1310
	if (alt_path) {
1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324
		bool alt_ext = false;

		if (alt_path->rec_type == SA_PATH_REC_TYPE_OPA)
			alt_ext = opa_is_extended_lid(alt_path->opa.dlid,
						      alt_path->opa.slid);

		req_msg->alt_local_gid = alt_path->sgid;
		req_msg->alt_remote_gid = alt_path->dgid;
		if (alt_ext) {
			req_msg->alt_local_gid.global.interface_id
				= OPA_MAKE_ID(be32_to_cpu(alt_path->opa.slid));
			req_msg->alt_remote_gid.global.interface_id
				= OPA_MAKE_ID(be32_to_cpu(alt_path->opa.dlid));
		}
1325
		if (alt_path->hop_limit <= 1) {
1326
			req_msg->alt_local_lid = alt_ext ? 0 :
1327
				htons(ntohl(sa_path_get_slid(alt_path)));
1328
			req_msg->alt_remote_lid = alt_ext ? 0 :
1329
				htons(ntohl(sa_path_get_dlid(alt_path)));
1330 1331 1332 1333
		} else {
			req_msg->alt_local_lid = IB_LID_PERMISSIVE;
			req_msg->alt_remote_lid = IB_LID_PERMISSIVE;
		}
1334 1335
		IBA_SET(CM_REQ_ALTERNATE_FLOW_LABEL, req_msg,
			be32_to_cpu(alt_path->flow_label));
1336
		IBA_SET(CM_REQ_ALTERNATE_PACKET_RATE, req_msg, alt_path->rate);
1337 1338
		req_msg->alt_traffic_class = alt_path->traffic_class;
		req_msg->alt_hop_limit = alt_path->hop_limit;
1339 1340 1341 1342
		IBA_SET(CM_REQ_ALTERNATE_SL, req_msg, alt_path->sl);
		IBA_SET(CM_REQ_ALTERNATE_SUBNET_LOCAL, req_msg,
			(alt_path->hop_limit <= 1));
		IBA_SET(CM_REQ_ALTERNATE_LOCAL_ACK_TIMEOUT, req_msg,
1343
			cm_ack_timeout(cm_id_priv->av.port->cm_dev->ack_delay,
1344
				       alt_path->packet_life_time));
1345 1346 1347 1348 1349 1350 1351
	}

	if (param->private_data && param->private_data_len)
		memcpy(req_msg->private_data, param->private_data,
		       param->private_data_len);
}

1352
static int cm_validate_req_param(struct ib_cm_req_param *param)
1353 1354 1355 1356 1357 1358 1359 1360
{
	/* peer-to-peer not supported */
	if (param->peer_to_peer)
		return -EINVAL;

	if (!param->primary_path)
		return -EINVAL;

S
Sean Hefty 已提交
1361 1362
	if (param->qp_type != IB_QPT_RC && param->qp_type != IB_QPT_UC &&
	    param->qp_type != IB_QPT_XRC_INI)
1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400
		return -EINVAL;

	if (param->private_data &&
	    param->private_data_len > IB_CM_REQ_PRIVATE_DATA_SIZE)
		return -EINVAL;

	if (param->alternate_path &&
	    (param->alternate_path->pkey != param->primary_path->pkey ||
	     param->alternate_path->mtu != param->primary_path->mtu))
		return -EINVAL;

	return 0;
}

int ib_send_cm_req(struct ib_cm_id *cm_id,
		   struct ib_cm_req_param *param)
{
	struct cm_id_private *cm_id_priv;
	struct cm_req_msg *req_msg;
	unsigned long flags;
	int ret;

	ret = cm_validate_req_param(param);
	if (ret)
		return ret;

	/* Verify that we're not in timewait. */
	cm_id_priv = container_of(cm_id, struct cm_id_private, id);
	spin_lock_irqsave(&cm_id_priv->lock, flags);
	if (cm_id->state != IB_CM_IDLE) {
		spin_unlock_irqrestore(&cm_id_priv->lock, flags);
		ret = -EINVAL;
		goto out;
	}
	spin_unlock_irqrestore(&cm_id_priv->lock, flags);

	cm_id_priv->timewait_info = cm_create_timewait_info(cm_id_priv->
							    id.local_id);
1401 1402
	if (IS_ERR(cm_id_priv->timewait_info)) {
		ret = PTR_ERR(cm_id_priv->timewait_info);
1403
		goto out;
1404
	}
1405

1406 1407
	ret = cm_init_av_by_path(param->primary_path,
				 param->ppath_sgid_attr, &cm_id_priv->av,
1408
				 cm_id_priv);
1409 1410 1411
	if (ret)
		goto error1;
	if (param->alternate_path) {
1412
		ret = cm_init_av_by_path(param->alternate_path, NULL,
1413
					 &cm_id_priv->alt_av, cm_id_priv);
1414 1415 1416 1417
		if (ret)
			goto error1;
	}
	cm_id->service_id = param->service_id;
1418
	cm_id->service_mask = ~cpu_to_be64(0);
1419 1420 1421 1422 1423 1424 1425 1426 1427
	cm_id_priv->timeout_ms = cm_convert_to_ms(
				    param->primary_path->packet_life_time) * 2 +
				 cm_convert_to_ms(
				    param->remote_cm_response_timeout);
	cm_id_priv->max_cm_retries = param->max_cm_retries;
	cm_id_priv->initiator_depth = param->initiator_depth;
	cm_id_priv->responder_resources = param->responder_resources;
	cm_id_priv->retry_count = param->retry_count;
	cm_id_priv->path_mtu = param->primary_path->mtu;
1428
	cm_id_priv->pkey = param->primary_path->pkey;
1429
	cm_id_priv->qp_type = param->qp_type;
1430 1431 1432 1433 1434 1435 1436 1437

	ret = cm_alloc_msg(cm_id_priv, &cm_id_priv->msg);
	if (ret)
		goto error1;

	req_msg = (struct cm_req_msg *) cm_id_priv->msg->mad;
	cm_format_req(req_msg, cm_id_priv, param);
	cm_id_priv->tid = req_msg->hdr.tid;
1438
	cm_id_priv->msg->timeout_ms = cm_id_priv->timeout_ms;
1439 1440
	cm_id_priv->msg->context[1] = (void *) (unsigned long) IB_CM_REQ_SENT;

1441 1442
	cm_id_priv->local_qpn = cpu_to_be32(IBA_GET(CM_REQ_LOCAL_QPN, req_msg));
	cm_id_priv->rq_psn = cpu_to_be32(IBA_GET(CM_REQ_STARTING_PSN, req_msg));
1443 1444

	spin_lock_irqsave(&cm_id_priv->lock, flags);
1445
	ret = ib_post_send_mad(cm_id_priv->msg, NULL);
1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481
	if (ret) {
		spin_unlock_irqrestore(&cm_id_priv->lock, flags);
		goto error2;
	}
	BUG_ON(cm_id->state != IB_CM_IDLE);
	cm_id->state = IB_CM_REQ_SENT;
	spin_unlock_irqrestore(&cm_id_priv->lock, flags);
	return 0;

error2:	cm_free_msg(cm_id_priv->msg);
error1:	kfree(cm_id_priv->timewait_info);
out:	return ret;
}
EXPORT_SYMBOL(ib_send_cm_req);

static int cm_issue_rej(struct cm_port *port,
			struct ib_mad_recv_wc *mad_recv_wc,
			enum ib_cm_rej_reason reason,
			enum cm_msg_response msg_rejected,
			void *ari, u8 ari_length)
{
	struct ib_mad_send_buf *msg = NULL;
	struct cm_rej_msg *rej_msg, *rcv_msg;
	int ret;

	ret = cm_alloc_response_msg(port, mad_recv_wc, &msg);
	if (ret)
		return ret;

	/* We just need common CM header information.  Cast to any message. */
	rcv_msg = (struct cm_rej_msg *) mad_recv_wc->recv_buf.mad;
	rej_msg = (struct cm_rej_msg *) msg->mad;

	cm_format_mad_hdr(&rej_msg->hdr, CM_REJ_ATTR_ID, rcv_msg->hdr.tid);
	rej_msg->remote_comm_id = rcv_msg->local_comm_id;
	rej_msg->local_comm_id = rcv_msg->remote_comm_id;
1482
	IBA_SET(CM_REJ_MESSAGE_REJECTED, rej_msg, msg_rejected);
1483
	rej_msg->reason = cpu_to_be16(reason);
1484 1485

	if (ari && ari_length) {
1486
		IBA_SET(CM_REJ_REJECTED_INFO_LENGTH, rej_msg, ari_length);
1487 1488 1489
		memcpy(rej_msg->ari, ari, ari_length);
	}

1490
	ret = ib_post_send_mad(msg, NULL);
1491 1492 1493 1494 1495 1496
	if (ret)
		cm_free_msg(msg);

	return ret;
}

1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511
static bool cm_req_has_alt_path(struct cm_req_msg *req_msg)
{
	return ((req_msg->alt_local_lid) ||
		(ib_is_opa_gid(&req_msg->alt_local_gid)));
}

static void cm_path_set_rec_type(struct ib_device *ib_device, u8 port_num,
				 struct sa_path_rec *path, union ib_gid *gid)
{
	if (ib_is_opa_gid(gid) && rdma_cap_opa_ah(ib_device, port_num))
		path->rec_type = SA_PATH_REC_TYPE_OPA;
	else
		path->rec_type = SA_PATH_REC_TYPE_IB;
}

1512 1513 1514 1515 1516 1517 1518 1519
static void cm_format_path_lid_from_req(struct cm_req_msg *req_msg,
					struct sa_path_rec *primary_path,
					struct sa_path_rec *alt_path)
{
	u32 lid;

	if (primary_path->rec_type != SA_PATH_REC_TYPE_OPA) {
		sa_path_set_dlid(primary_path,
1520
				 ntohs(req_msg->primary_local_lid));
1521
		sa_path_set_slid(primary_path,
1522
				 ntohs(req_msg->primary_remote_lid));
1523 1524
	} else {
		lid = opa_get_lid_from_gid(&req_msg->primary_local_gid);
1525
		sa_path_set_dlid(primary_path, lid);
1526 1527

		lid = opa_get_lid_from_gid(&req_msg->primary_remote_gid);
1528
		sa_path_set_slid(primary_path, lid);
1529 1530 1531 1532 1533 1534
	}

	if (!cm_req_has_alt_path(req_msg))
		return;

	if (alt_path->rec_type != SA_PATH_REC_TYPE_OPA) {
1535 1536
		sa_path_set_dlid(alt_path, ntohs(req_msg->alt_local_lid));
		sa_path_set_slid(alt_path, ntohs(req_msg->alt_remote_lid));
1537 1538
	} else {
		lid = opa_get_lid_from_gid(&req_msg->alt_local_gid);
1539
		sa_path_set_dlid(alt_path, lid);
1540 1541

		lid = opa_get_lid_from_gid(&req_msg->alt_remote_gid);
1542
		sa_path_set_slid(alt_path, lid);
1543 1544 1545
	}
}

1546
static void cm_format_paths_from_req(struct cm_req_msg *req_msg,
1547 1548
				     struct sa_path_rec *primary_path,
				     struct sa_path_rec *alt_path)
1549 1550 1551
{
	primary_path->dgid = req_msg->primary_local_gid;
	primary_path->sgid = req_msg->primary_remote_gid;
1552 1553
	primary_path->flow_label =
		cpu_to_be32(IBA_GET(CM_REQ_PRIMARY_FLOW_LABEL, req_msg));
1554 1555 1556 1557
	primary_path->hop_limit = req_msg->primary_hop_limit;
	primary_path->traffic_class = req_msg->primary_traffic_class;
	primary_path->reversible = 1;
	primary_path->pkey = req_msg->pkey;
1558
	primary_path->sl = IBA_GET(CM_REQ_PRIMARY_SL, req_msg);
1559
	primary_path->mtu_selector = IB_SA_EQ;
1560
	primary_path->mtu = IBA_GET(CM_REQ_PATH_PACKET_PAYLOAD_MTU, req_msg);
1561
	primary_path->rate_selector = IB_SA_EQ;
1562
	primary_path->rate = IBA_GET(CM_REQ_PRIMARY_PACKET_RATE, req_msg);
1563 1564
	primary_path->packet_life_time_selector = IB_SA_EQ;
	primary_path->packet_life_time =
1565
		IBA_GET(CM_REQ_PRIMARY_LOCAL_ACK_TIMEOUT, req_msg);
1566
	primary_path->packet_life_time -= (primary_path->packet_life_time > 0);
1567
	primary_path->service_id = req_msg->service_id;
1568 1569
	if (sa_path_is_roce(primary_path))
		primary_path->roce.route_resolved = false;
1570

1571
	if (cm_req_has_alt_path(req_msg)) {
1572 1573
		alt_path->dgid = req_msg->alt_local_gid;
		alt_path->sgid = req_msg->alt_remote_gid;
1574 1575
		alt_path->flow_label = cpu_to_be32(
			IBA_GET(CM_REQ_ALTERNATE_FLOW_LABEL, req_msg));
1576 1577 1578 1579
		alt_path->hop_limit = req_msg->alt_hop_limit;
		alt_path->traffic_class = req_msg->alt_traffic_class;
		alt_path->reversible = 1;
		alt_path->pkey = req_msg->pkey;
1580
		alt_path->sl = IBA_GET(CM_REQ_ALTERNATE_SL, req_msg);
1581
		alt_path->mtu_selector = IB_SA_EQ;
1582 1583
		alt_path->mtu =
			IBA_GET(CM_REQ_PATH_PACKET_PAYLOAD_MTU, req_msg);
1584
		alt_path->rate_selector = IB_SA_EQ;
1585
		alt_path->rate = IBA_GET(CM_REQ_ALTERNATE_PACKET_RATE, req_msg);
1586 1587
		alt_path->packet_life_time_selector = IB_SA_EQ;
		alt_path->packet_life_time =
1588
			IBA_GET(CM_REQ_ALTERNATE_LOCAL_ACK_TIMEOUT, req_msg);
1589
		alt_path->packet_life_time -= (alt_path->packet_life_time > 0);
1590
		alt_path->service_id = req_msg->service_id;
1591 1592 1593

		if (sa_path_is_roce(alt_path))
			alt_path->roce.route_resolved = false;
1594
	}
1595
	cm_format_path_lid_from_req(req_msg, primary_path, alt_path);
1596 1597
}

1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615
static u16 cm_get_bth_pkey(struct cm_work *work)
{
	struct ib_device *ib_dev = work->port->cm_dev->ib_device;
	u8 port_num = work->port->port_num;
	u16 pkey_index = work->mad_recv_wc->wc->pkey_index;
	u16 pkey;
	int ret;

	ret = ib_get_cached_pkey(ib_dev, port_num, pkey_index, &pkey);
	if (ret) {
		dev_warn_ratelimited(&ib_dev->dev, "ib_cm: Couldn't retrieve pkey for incoming request (port %d, pkey index %d). %d\n",
				     port_num, pkey_index, ret);
		return 0;
	}

	return pkey;
}

1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634
/**
 * Convert OPA SGID to IB SGID
 * ULPs (such as IPoIB) do not understand OPA GIDs and will
 * reject them as the local_gid will not match the sgid. Therefore,
 * change the pathrec's SGID to an IB SGID.
 *
 * @work: Work completion
 * @path: Path record
 */
static void cm_opa_to_ib_sgid(struct cm_work *work,
			      struct sa_path_rec *path)
{
	struct ib_device *dev = work->port->cm_dev->ib_device;
	u8 port_num = work->port->port_num;

	if (rdma_cap_opa_ah(dev, port_num) &&
	    (ib_is_opa_gid(&path->sgid))) {
		union ib_gid sgid;

1635
		if (rdma_query_gid(dev, port_num, 0, &sgid)) {
1636 1637 1638 1639 1640 1641 1642 1643 1644
			dev_warn(&dev->dev,
				 "Error updating sgid in CM request\n");
			return;
		}

		path->sgid = sgid;
	}
}

1645 1646 1647 1648 1649 1650 1651 1652 1653 1654
static void cm_format_req_event(struct cm_work *work,
				struct cm_id_private *cm_id_priv,
				struct ib_cm_id *listen_id)
{
	struct cm_req_msg *req_msg;
	struct ib_cm_req_event_param *param;

	req_msg = (struct cm_req_msg *)work->mad_recv_wc->recv_buf.mad;
	param = &work->cm_event.param.req_rcvd;
	param->listen_id = listen_id;
1655
	param->bth_pkey = cm_get_bth_pkey(work);
1656 1657
	param->port = cm_id_priv->av.port->port_num;
	param->primary_path = &work->path[0];
1658 1659
	cm_opa_to_ib_sgid(work, param->primary_path);
	if (cm_req_has_alt_path(req_msg)) {
1660
		param->alternate_path = &work->path[1];
1661 1662
		cm_opa_to_ib_sgid(work, param->alternate_path);
	} else {
1663
		param->alternate_path = NULL;
1664
	}
1665 1666
	param->remote_ca_guid = req_msg->local_ca_guid;
	param->remote_qkey = be32_to_cpu(req_msg->local_qkey);
1667
	param->remote_qpn = IBA_GET(CM_REQ_LOCAL_QPN, req_msg);
1668
	param->qp_type = cm_req_get_qp_type(req_msg);
1669
	param->starting_psn = IBA_GET(CM_REQ_STARTING_PSN, req_msg);
1670 1671
	param->responder_resources = IBA_GET(CM_REQ_INITIATOR_DEPTH, req_msg);
	param->initiator_depth = IBA_GET(CM_REQ_RESPONDER_RESOURCES, req_msg);
1672
	param->local_cm_response_timeout =
1673 1674
		IBA_GET(CM_REQ_REMOTE_CM_RESPONSE_TIMEOUT, req_msg);
	param->flow_control = IBA_GET(CM_REQ_END_TO_END_FLOW_CONTROL, req_msg);
1675
	param->remote_cm_response_timeout =
1676 1677 1678 1679
		IBA_GET(CM_REQ_LOCAL_CM_RESPONSE_TIMEOUT, req_msg);
	param->retry_count = IBA_GET(CM_REQ_RETRY_COUNT, req_msg);
	param->rnr_retry_count = IBA_GET(CM_REQ_RNR_RETRY_COUNT, req_msg);
	param->srq = IBA_GET(CM_REQ_SRQ, req_msg);
1680
	param->ppath_sgid_attr = cm_id_priv->av.ah_attr.grh.sgid_attr;
1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693
	work->cm_event.private_data = &req_msg->private_data;
}

static void cm_process_work(struct cm_id_private *cm_id_priv,
			    struct cm_work *work)
{
	int ret;

	/* We will typically only have the current event to report. */
	ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &work->cm_event);
	cm_free_work(work);

	while (!ret && !atomic_add_negative(-1, &cm_id_priv->work_count)) {
1694
		spin_lock_irq(&cm_id_priv->lock);
1695
		work = cm_dequeue_work(cm_id_priv);
1696
		spin_unlock_irq(&cm_id_priv->lock);
1697 1698 1699
		if (!work)
			return;

1700 1701 1702 1703 1704 1705
		ret = cm_id_priv->id.cm_handler(&cm_id_priv->id,
						&work->cm_event);
		cm_free_work(work);
	}
	cm_deref_id(cm_id_priv);
	if (ret)
1706
		cm_destroy_id(&cm_id_priv->id, ret);
1707 1708 1709 1710 1711 1712 1713 1714
}

static void cm_format_mra(struct cm_mra_msg *mra_msg,
			  struct cm_id_private *cm_id_priv,
			  enum cm_msg_response msg_mraed, u8 service_timeout,
			  const void *private_data, u8 private_data_len)
{
	cm_format_mad_hdr(&mra_msg->hdr, CM_MRA_ATTR_ID, cm_id_priv->tid);
1715
	IBA_SET(CM_MRA_MESSAGE_MRAED, mra_msg, msg_mraed);
1716 1717
	mra_msg->local_comm_id = cm_id_priv->id.local_id;
	mra_msg->remote_comm_id = cm_id_priv->id.remote_id;
1718
	IBA_SET(CM_MRA_SERVICE_TIMEOUT, mra_msg, service_timeout);
1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737

	if (private_data && private_data_len)
		memcpy(mra_msg->private_data, private_data, private_data_len);
}

static void cm_format_rej(struct cm_rej_msg *rej_msg,
			  struct cm_id_private *cm_id_priv,
			  enum ib_cm_rej_reason reason,
			  void *ari,
			  u8 ari_length,
			  const void *private_data,
			  u8 private_data_len)
{
	cm_format_mad_hdr(&rej_msg->hdr, CM_REJ_ATTR_ID, cm_id_priv->tid);
	rej_msg->remote_comm_id = cm_id_priv->id.remote_id;

	switch(cm_id_priv->id.state) {
	case IB_CM_REQ_RCVD:
		rej_msg->local_comm_id = 0;
1738
		IBA_SET(CM_REJ_MESSAGE_REJECTED, rej_msg, CM_MSG_RESPONSE_REQ);
1739 1740 1741
		break;
	case IB_CM_MRA_REQ_SENT:
		rej_msg->local_comm_id = cm_id_priv->id.local_id;
1742
		IBA_SET(CM_REJ_MESSAGE_REJECTED, rej_msg, CM_MSG_RESPONSE_REQ);
1743 1744 1745 1746
		break;
	case IB_CM_REP_RCVD:
	case IB_CM_MRA_REP_SENT:
		rej_msg->local_comm_id = cm_id_priv->id.local_id;
1747
		IBA_SET(CM_REJ_MESSAGE_REJECTED, rej_msg, CM_MSG_RESPONSE_REP);
1748 1749 1750
		break;
	default:
		rej_msg->local_comm_id = cm_id_priv->id.local_id;
1751 1752
		IBA_SET(CM_REJ_MESSAGE_REJECTED, rej_msg,
			CM_MSG_RESPONSE_OTHER);
1753 1754 1755
		break;
	}

1756
	rej_msg->reason = cpu_to_be16(reason);
1757
	if (ari && ari_length) {
1758
		IBA_SET(CM_REJ_REJECTED_INFO_LENGTH, rej_msg, ari_length);
1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771
		memcpy(rej_msg->ari, ari, ari_length);
	}

	if (private_data && private_data_len)
		memcpy(rej_msg->private_data, private_data, private_data_len);
}

static void cm_dup_req_handler(struct cm_work *work,
			       struct cm_id_private *cm_id_priv)
{
	struct ib_mad_send_buf *msg = NULL;
	int ret;

1772 1773 1774
	atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
			counter[CM_REQ_COUNTER]);

1775 1776 1777 1778 1779 1780 1781 1782
	/* Quick state check to discard duplicate REQs. */
	if (cm_id_priv->id.state == IB_CM_REQ_RCVD)
		return;

	ret = cm_alloc_response_msg(work->port, work->mad_recv_wc, &msg);
	if (ret)
		return;

1783
	spin_lock_irq(&cm_id_priv->lock);
1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797
	switch (cm_id_priv->id.state) {
	case IB_CM_MRA_REQ_SENT:
		cm_format_mra((struct cm_mra_msg *) msg->mad, cm_id_priv,
			      CM_MSG_RESPONSE_REQ, cm_id_priv->service_timeout,
			      cm_id_priv->private_data,
			      cm_id_priv->private_data_len);
		break;
	case IB_CM_TIMEWAIT:
		cm_format_rej((struct cm_rej_msg *) msg->mad, cm_id_priv,
			      IB_CM_REJ_STALE_CONN, NULL, 0, NULL, 0);
		break;
	default:
		goto unlock;
	}
1798
	spin_unlock_irq(&cm_id_priv->lock);
1799

1800
	ret = ib_post_send_mad(msg, NULL);
1801 1802 1803 1804
	if (ret)
		goto free;
	return;

1805
unlock:	spin_unlock_irq(&cm_id_priv->lock);
1806 1807 1808 1809 1810 1811 1812 1813 1814
free:	cm_free_msg(msg);
}

static struct cm_id_private * cm_match_req(struct cm_work *work,
					   struct cm_id_private *cm_id_priv)
{
	struct cm_id_private *listen_cm_id_priv, *cur_cm_id_priv;
	struct cm_timewait_info *timewait_info;
	struct cm_req_msg *req_msg;
1815
	struct ib_cm_id *cm_id;
1816 1817 1818

	req_msg = (struct cm_req_msg *)work->mad_recv_wc->recv_buf.mad;

1819
	/* Check for possible duplicate REQ. */
1820
	spin_lock_irq(&cm.lock);
1821 1822
	timewait_info = cm_insert_remote_id(cm_id_priv->timewait_info);
	if (timewait_info) {
1823
		cur_cm_id_priv = cm_acquire_id(timewait_info->work.local_id,
1824
					   timewait_info->work.remote_id);
1825
		spin_unlock_irq(&cm.lock);
1826 1827 1828
		if (cur_cm_id_priv) {
			cm_dup_req_handler(work, cur_cm_id_priv);
			cm_deref_id(cur_cm_id_priv);
1829 1830 1831 1832 1833 1834 1835 1836
		}
		return NULL;
	}

	/* Check for stale connections. */
	timewait_info = cm_insert_remote_qpn(cm_id_priv->timewait_info);
	if (timewait_info) {
		cm_cleanup_timewait(cm_id_priv->timewait_info);
1837
		cur_cm_id_priv = cm_acquire_id(timewait_info->work.local_id,
1838 1839
					   timewait_info->work.remote_id);

1840
		spin_unlock_irq(&cm.lock);
1841 1842 1843
		cm_issue_rej(work->port, work->mad_recv_wc,
			     IB_CM_REJ_STALE_CONN, CM_MSG_RESPONSE_REQ,
			     NULL, 0);
1844 1845 1846 1847 1848
		if (cur_cm_id_priv) {
			cm_id = &cur_cm_id_priv->id;
			ib_send_cm_dreq(cm_id, NULL, 0);
			cm_deref_id(cur_cm_id_priv);
		}
1849
		return NULL;
1850 1851 1852
	}

	/* Find matching listen request. */
1853
	listen_cm_id_priv = cm_find_listen(cm_id_priv->id.device,
H
Haggai Eran 已提交
1854
					   req_msg->service_id);
1855
	if (!listen_cm_id_priv) {
1856
		cm_cleanup_timewait(cm_id_priv->timewait_info);
1857
		spin_unlock_irq(&cm.lock);
1858 1859 1860
		cm_issue_rej(work->port, work->mad_recv_wc,
			     IB_CM_REJ_INVALID_SERVICE_ID, CM_MSG_RESPONSE_REQ,
			     NULL, 0);
1861
		goto out;
1862
	}
1863 1864
	refcount_inc(&listen_cm_id_priv->refcount);
	refcount_inc(&cm_id_priv->refcount);
1865 1866
	cm_id_priv->id.state = IB_CM_REQ_RCVD;
	atomic_inc(&cm_id_priv->work_count);
1867
	spin_unlock_irq(&cm.lock);
1868
out:
1869 1870 1871
	return listen_cm_id_priv;
}

1872 1873 1874 1875 1876 1877 1878
/*
 * Work-around for inter-subnet connections.  If the LIDs are permissive,
 * we need to override the LID/SL data in the REQ with the LID information
 * in the work completion.
 */
static void cm_process_routed_req(struct cm_req_msg *req_msg, struct ib_wc *wc)
{
1879
	if (!IBA_GET(CM_REQ_PRIMARY_SUBNET_LOCAL, req_msg)) {
1880
		if (req_msg->primary_local_lid == IB_LID_PERMISSIVE) {
H
Hiatt, Don 已提交
1881
			req_msg->primary_local_lid = ib_lid_be16(wc->slid);
1882
			IBA_SET(CM_REQ_PRIMARY_SL, req_msg, wc->sl);
1883 1884 1885 1886 1887 1888
		}

		if (req_msg->primary_remote_lid == IB_LID_PERMISSIVE)
			req_msg->primary_remote_lid = cpu_to_be16(wc->dlid_path_bits);
	}

1889
	if (!IBA_GET(CM_REQ_ALTERNATE_SUBNET_LOCAL, req_msg)) {
1890
		if (req_msg->alt_local_lid == IB_LID_PERMISSIVE) {
H
Hiatt, Don 已提交
1891
			req_msg->alt_local_lid = ib_lid_be16(wc->slid);
1892
			IBA_SET(CM_REQ_ALTERNATE_SL, req_msg, wc->sl);
1893 1894 1895 1896 1897 1898 1899
		}

		if (req_msg->alt_remote_lid == IB_LID_PERMISSIVE)
			req_msg->alt_remote_lid = cpu_to_be16(wc->dlid_path_bits);
	}
}

1900 1901 1902 1903 1904
static int cm_req_handler(struct cm_work *work)
{
	struct ib_cm_id *cm_id;
	struct cm_id_private *cm_id_priv, *listen_cm_id_priv;
	struct cm_req_msg *req_msg;
1905
	const struct ib_global_route *grh;
P
Parav Pandit 已提交
1906
	const struct ib_gid_attr *gid_attr;
1907 1908 1909 1910
	int ret;

	req_msg = (struct cm_req_msg *)work->mad_recv_wc->recv_buf.mad;

1911
	cm_id = ib_create_cm_id(work->port->cm_dev->ib_device, NULL, NULL);
1912 1913 1914 1915 1916
	if (IS_ERR(cm_id))
		return PTR_ERR(cm_id);

	cm_id_priv = container_of(cm_id, struct cm_id_private, id);
	cm_id_priv->id.remote_id = req_msg->local_comm_id;
P
Parav Pandit 已提交
1917 1918 1919 1920 1921
	ret = cm_init_av_for_response(work->port, work->mad_recv_wc->wc,
				      work->mad_recv_wc->recv_buf.grh,
				      &cm_id_priv->av);
	if (ret)
		goto destroy;
1922 1923 1924 1925
	cm_id_priv->timewait_info = cm_create_timewait_info(cm_id_priv->
							    id.local_id);
	if (IS_ERR(cm_id_priv->timewait_info)) {
		ret = PTR_ERR(cm_id_priv->timewait_info);
1926
		goto destroy;
1927 1928 1929
	}
	cm_id_priv->timewait_info->work.remote_id = req_msg->local_comm_id;
	cm_id_priv->timewait_info->remote_ca_guid = req_msg->local_ca_guid;
1930 1931
	cm_id_priv->timewait_info->remote_qpn =
		cpu_to_be32(IBA_GET(CM_REQ_LOCAL_QPN, req_msg));
1932 1933 1934

	listen_cm_id_priv = cm_match_req(work, cm_id_priv);
	if (!listen_cm_id_priv) {
D
Daniel Jurgens 已提交
1935 1936
		pr_debug("%s: local_id %d, no listen_cm_id_priv\n", __func__,
			 be32_to_cpu(cm_id->local_id));
1937
		ret = -EINVAL;
1938
		goto free_timeinfo;
1939 1940 1941 1942 1943
	}

	cm_id_priv->id.cm_handler = listen_cm_id_priv->id.cm_handler;
	cm_id_priv->id.context = listen_cm_id_priv->id.context;
	cm_id_priv->id.service_id = req_msg->service_id;
1944
	cm_id_priv->id.service_mask = ~cpu_to_be64(0);
1945

1946
	cm_process_routed_req(req_msg, work->mad_recv_wc->wc);
1947

1948
	memset(&work->path[0], 0, sizeof(work->path[0]));
1949 1950
	if (cm_req_has_alt_path(req_msg))
		memset(&work->path[1], 0, sizeof(work->path[1]));
1951
	grh = rdma_ah_read_grh(&cm_id_priv->av.ah_attr);
P
Parav Pandit 已提交
1952
	gid_attr = grh->sgid_attr;
1953

1954 1955 1956
	if (gid_attr &&
	    rdma_protocol_roce(work->port->cm_dev->ib_device,
			       work->port->port_num)) {
1957
		work->path[0].rec_type =
P
Parav Pandit 已提交
1958
			sa_conv_gid_to_pathrec_type(gid_attr->gid_type);
1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972
	} else {
		cm_path_set_rec_type(work->port->cm_dev->ib_device,
				     work->port->port_num,
				     &work->path[0],
				     &req_msg->primary_local_gid);
	}
	if (cm_req_has_alt_path(req_msg))
		work->path[1].rec_type = work->path[0].rec_type;
	cm_format_paths_from_req(req_msg, &work->path[0],
				 &work->path[1]);
	if (cm_id_priv->av.ah_attr.type == RDMA_AH_ATTR_TYPE_ROCE)
		sa_path_set_dmac(&work->path[0],
				 cm_id_priv->av.ah_attr.roce.dmac);
	work->path[0].hop_limit = grh->hop_limit;
P
Parav Pandit 已提交
1973
	ret = cm_init_av_by_path(&work->path[0], gid_attr, &cm_id_priv->av,
1974
				 cm_id_priv);
1975
	if (ret) {
1976 1977
		int err;

1978 1979 1980
		err = rdma_query_gid(work->port->cm_dev->ib_device,
				     work->port->port_num, 0,
				     &work->path[0].sgid);
1981 1982 1983 1984 1985 1986 1987 1988
		if (err)
			ib_send_cm_rej(cm_id, IB_CM_REJ_INVALID_GID,
				       NULL, 0, NULL, 0);
		else
			ib_send_cm_rej(cm_id, IB_CM_REJ_INVALID_GID,
				       &work->path[0].sgid,
				       sizeof(work->path[0].sgid),
				       NULL, 0);
1989 1990
		goto rejected;
	}
1991
	if (cm_req_has_alt_path(req_msg)) {
1992 1993
		ret = cm_init_av_by_path(&work->path[1], NULL,
					 &cm_id_priv->alt_av, cm_id_priv);
1994 1995 1996
		if (ret) {
			ib_send_cm_rej(cm_id, IB_CM_REJ_INVALID_ALT_GID,
				       &work->path[0].sgid,
1997
				       sizeof(work->path[0].sgid), NULL, 0);
1998 1999
			goto rejected;
		}
2000 2001 2002
	}
	cm_id_priv->tid = req_msg->hdr.tid;
	cm_id_priv->timeout_ms = cm_convert_to_ms(
2003 2004
		IBA_GET(CM_REQ_LOCAL_CM_RESPONSE_TIMEOUT, req_msg));
	cm_id_priv->max_cm_retries = IBA_GET(CM_REQ_MAX_CM_RETRIES, req_msg);
2005 2006
	cm_id_priv->remote_qpn =
		cpu_to_be32(IBA_GET(CM_REQ_LOCAL_QPN, req_msg));
2007 2008 2009 2010 2011
	cm_id_priv->initiator_depth =
		IBA_GET(CM_REQ_RESPONDER_RESOURCES, req_msg);
	cm_id_priv->responder_resources =
		IBA_GET(CM_REQ_INITIATOR_DEPTH, req_msg);
	cm_id_priv->path_mtu = IBA_GET(CM_REQ_PATH_PACKET_PAYLOAD_MTU, req_msg);
2012
	cm_id_priv->pkey = req_msg->pkey;
2013
	cm_id_priv->sq_psn = cpu_to_be32(IBA_GET(CM_REQ_STARTING_PSN, req_msg));
2014 2015
	cm_id_priv->retry_count = IBA_GET(CM_REQ_RETRY_COUNT, req_msg);
	cm_id_priv->rnr_retry_count = IBA_GET(CM_REQ_RNR_RETRY_COUNT, req_msg);
2016
	cm_id_priv->qp_type = cm_req_get_qp_type(req_msg);
2017 2018 2019 2020 2021 2022

	cm_format_req_event(work, cm_id_priv, &listen_cm_id_priv->id);
	cm_process_work(cm_id_priv, work);
	cm_deref_id(listen_cm_id_priv);
	return 0;

2023
rejected:
2024
	refcount_dec(&cm_id_priv->refcount);
2025
	cm_deref_id(listen_cm_id_priv);
2026 2027
free_timeinfo:
	kfree(cm_id_priv->timewait_info);
2028 2029
destroy:
	ib_destroy_cm_id(cm_id);
2030 2031 2032 2033 2034 2035 2036 2037 2038 2039
	return ret;
}

static void cm_format_rep(struct cm_rep_msg *rep_msg,
			  struct cm_id_private *cm_id_priv,
			  struct ib_cm_rep_param *param)
{
	cm_format_mad_hdr(&rep_msg->hdr, CM_REP_ATTR_ID, cm_id_priv->tid);
	rep_msg->local_comm_id = cm_id_priv->id.local_id;
	rep_msg->remote_comm_id = cm_id_priv->id.remote_id;
2040
	IBA_SET(CM_REP_STARTING_PSN, rep_msg, param->starting_psn);
2041
	rep_msg->resp_resources = param->responder_resources;
2042 2043 2044 2045
	IBA_SET(CM_REP_TARGET_ACK_DELAY, rep_msg,
		cm_id_priv->av.port->cm_dev->ack_delay);
	IBA_SET(CM_REP_FAILOVER_ACCEPTED, rep_msg, param->failover_accepted);
	IBA_SET(CM_REP_RNR_RETRY_COUNT, rep_msg, param->rnr_retry_count);
2046
	rep_msg->local_ca_guid = cm_id_priv->id.device->node_guid;
2047

S
Sean Hefty 已提交
2048 2049
	if (cm_id_priv->qp_type != IB_QPT_XRC_TGT) {
		rep_msg->initiator_depth = param->initiator_depth;
2050 2051 2052
		IBA_SET(CM_REP_END_TO_END_FLOW_CONTROL, rep_msg,
			param->flow_control);
		IBA_SET(CM_REP_SRQ, rep_msg, param->srq);
2053
		IBA_SET(CM_REP_LOCAL_QPN, rep_msg, param->qp_num);
S
Sean Hefty 已提交
2054
	} else {
2055
		IBA_SET(CM_REP_SRQ, rep_msg, 1);
2056
		IBA_SET(CM_REP_LOCAL_EE_CONTEXT_NUMBER, rep_msg, param->qp_num);
S
Sean Hefty 已提交
2057 2058
	}

2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080
	if (param->private_data && param->private_data_len)
		memcpy(rep_msg->private_data, param->private_data,
		       param->private_data_len);
}

int ib_send_cm_rep(struct ib_cm_id *cm_id,
		   struct ib_cm_rep_param *param)
{
	struct cm_id_private *cm_id_priv;
	struct ib_mad_send_buf *msg;
	struct cm_rep_msg *rep_msg;
	unsigned long flags;
	int ret;

	if (param->private_data &&
	    param->private_data_len > IB_CM_REP_PRIVATE_DATA_SIZE)
		return -EINVAL;

	cm_id_priv = container_of(cm_id, struct cm_id_private, id);
	spin_lock_irqsave(&cm_id_priv->lock, flags);
	if (cm_id->state != IB_CM_REQ_RCVD &&
	    cm_id->state != IB_CM_MRA_REQ_SENT) {
D
Daniel Jurgens 已提交
2081 2082
		pr_debug("%s: local_comm_id %d, cm_id->state: %d\n", __func__,
			 be32_to_cpu(cm_id_priv->id.local_id), cm_id->state);
2083 2084 2085 2086 2087 2088 2089 2090 2091 2092
		ret = -EINVAL;
		goto out;
	}

	ret = cm_alloc_msg(cm_id_priv, &msg);
	if (ret)
		goto out;

	rep_msg = (struct cm_rep_msg *) msg->mad;
	cm_format_rep(rep_msg, cm_id_priv, param);
2093
	msg->timeout_ms = cm_id_priv->timeout_ms;
2094 2095
	msg->context[1] = (void *) (unsigned long) IB_CM_REP_SENT;

2096
	ret = ib_post_send_mad(msg, NULL);
2097 2098 2099 2100 2101 2102 2103 2104 2105 2106
	if (ret) {
		spin_unlock_irqrestore(&cm_id_priv->lock, flags);
		cm_free_msg(msg);
		return ret;
	}

	cm_id->state = IB_CM_REP_SENT;
	cm_id_priv->msg = msg;
	cm_id_priv->initiator_depth = param->initiator_depth;
	cm_id_priv->responder_resources = param->responder_resources;
2107
	cm_id_priv->rq_psn = cpu_to_be32(IBA_GET(CM_REP_STARTING_PSN, rep_msg));
2108
	cm_id_priv->local_qpn = cpu_to_be32(param->qp_num & 0xFFFFFF);
2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148

out:	spin_unlock_irqrestore(&cm_id_priv->lock, flags);
	return ret;
}
EXPORT_SYMBOL(ib_send_cm_rep);

static void cm_format_rtu(struct cm_rtu_msg *rtu_msg,
			  struct cm_id_private *cm_id_priv,
			  const void *private_data,
			  u8 private_data_len)
{
	cm_format_mad_hdr(&rtu_msg->hdr, CM_RTU_ATTR_ID, cm_id_priv->tid);
	rtu_msg->local_comm_id = cm_id_priv->id.local_id;
	rtu_msg->remote_comm_id = cm_id_priv->id.remote_id;

	if (private_data && private_data_len)
		memcpy(rtu_msg->private_data, private_data, private_data_len);
}

int ib_send_cm_rtu(struct ib_cm_id *cm_id,
		   const void *private_data,
		   u8 private_data_len)
{
	struct cm_id_private *cm_id_priv;
	struct ib_mad_send_buf *msg;
	unsigned long flags;
	void *data;
	int ret;

	if (private_data && private_data_len > IB_CM_RTU_PRIVATE_DATA_SIZE)
		return -EINVAL;

	data = cm_copy_private_data(private_data, private_data_len);
	if (IS_ERR(data))
		return PTR_ERR(data);

	cm_id_priv = container_of(cm_id, struct cm_id_private, id);
	spin_lock_irqsave(&cm_id_priv->lock, flags);
	if (cm_id->state != IB_CM_REP_RCVD &&
	    cm_id->state != IB_CM_MRA_REP_SENT) {
D
Daniel Jurgens 已提交
2149 2150
		pr_debug("%s: local_id %d, cm_id->state %d\n", __func__,
			 be32_to_cpu(cm_id->local_id), cm_id->state);
2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161
		ret = -EINVAL;
		goto error;
	}

	ret = cm_alloc_msg(cm_id_priv, &msg);
	if (ret)
		goto error;

	cm_format_rtu((struct cm_rtu_msg *) msg->mad, cm_id_priv,
		      private_data, private_data_len);

2162
	ret = ib_post_send_mad(msg, NULL);
2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180
	if (ret) {
		spin_unlock_irqrestore(&cm_id_priv->lock, flags);
		cm_free_msg(msg);
		kfree(data);
		return ret;
	}

	cm_id->state = IB_CM_ESTABLISHED;
	cm_set_private_data(cm_id_priv, data, private_data_len);
	spin_unlock_irqrestore(&cm_id_priv->lock, flags);
	return 0;

error:	spin_unlock_irqrestore(&cm_id_priv->lock, flags);
	kfree(data);
	return ret;
}
EXPORT_SYMBOL(ib_send_cm_rtu);

2181
static void cm_format_rep_event(struct cm_work *work, enum ib_qp_type qp_type)
2182 2183 2184 2185 2186 2187 2188 2189
{
	struct cm_rep_msg *rep_msg;
	struct ib_cm_rep_event_param *param;

	rep_msg = (struct cm_rep_msg *)work->mad_recv_wc->recv_buf.mad;
	param = &work->cm_event.param.rep_rcvd;
	param->remote_ca_guid = rep_msg->local_ca_guid;
	param->remote_qkey = be32_to_cpu(rep_msg->local_qkey);
2190
	param->remote_qpn = be32_to_cpu(cm_rep_get_qpn(rep_msg, qp_type));
2191
	param->starting_psn = IBA_GET(CM_REP_STARTING_PSN, rep_msg);
2192 2193
	param->responder_resources = rep_msg->initiator_depth;
	param->initiator_depth = rep_msg->resp_resources;
2194 2195 2196 2197 2198
	param->target_ack_delay = IBA_GET(CM_REP_TARGET_ACK_DELAY, rep_msg);
	param->failover_accepted = IBA_GET(CM_REP_FAILOVER_ACCEPTED, rep_msg);
	param->flow_control = IBA_GET(CM_REP_END_TO_END_FLOW_CONTROL, rep_msg);
	param->rnr_retry_count = IBA_GET(CM_REP_RNR_RETRY_COUNT, rep_msg);
	param->srq = IBA_GET(CM_REP_SRQ, rep_msg);
2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214
	work->cm_event.private_data = &rep_msg->private_data;
}

static void cm_dup_rep_handler(struct cm_work *work)
{
	struct cm_id_private *cm_id_priv;
	struct cm_rep_msg *rep_msg;
	struct ib_mad_send_buf *msg = NULL;
	int ret;

	rep_msg = (struct cm_rep_msg *) work->mad_recv_wc->recv_buf.mad;
	cm_id_priv = cm_acquire_id(rep_msg->remote_comm_id,
				   rep_msg->local_comm_id);
	if (!cm_id_priv)
		return;

2215 2216
	atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
			counter[CM_REP_COUNTER]);
2217 2218 2219 2220
	ret = cm_alloc_response_msg(work->port, work->mad_recv_wc, &msg);
	if (ret)
		goto deref;

2221
	spin_lock_irq(&cm_id_priv->lock);
2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232
	if (cm_id_priv->id.state == IB_CM_ESTABLISHED)
		cm_format_rtu((struct cm_rtu_msg *) msg->mad, cm_id_priv,
			      cm_id_priv->private_data,
			      cm_id_priv->private_data_len);
	else if (cm_id_priv->id.state == IB_CM_MRA_REP_SENT)
		cm_format_mra((struct cm_mra_msg *) msg->mad, cm_id_priv,
			      CM_MSG_RESPONSE_REP, cm_id_priv->service_timeout,
			      cm_id_priv->private_data,
			      cm_id_priv->private_data_len);
	else
		goto unlock;
2233
	spin_unlock_irq(&cm_id_priv->lock);
2234

2235
	ret = ib_post_send_mad(msg, NULL);
2236 2237 2238 2239
	if (ret)
		goto free;
	goto deref;

2240
unlock:	spin_unlock_irq(&cm_id_priv->lock);
2241 2242 2243 2244 2245 2246 2247 2248 2249
free:	cm_free_msg(msg);
deref:	cm_deref_id(cm_id_priv);
}

static int cm_rep_handler(struct cm_work *work)
{
	struct cm_id_private *cm_id_priv;
	struct cm_rep_msg *rep_msg;
	int ret;
2250 2251 2252
	struct cm_id_private *cur_cm_id_priv;
	struct ib_cm_id *cm_id;
	struct cm_timewait_info *timewait_info;
2253 2254 2255 2256 2257

	rep_msg = (struct cm_rep_msg *)work->mad_recv_wc->recv_buf.mad;
	cm_id_priv = cm_acquire_id(rep_msg->remote_comm_id, 0);
	if (!cm_id_priv) {
		cm_dup_rep_handler(work);
D
Daniel Jurgens 已提交
2258 2259
		pr_debug("%s: remote_comm_id %d, no cm_id_priv\n", __func__,
			 be32_to_cpu(rep_msg->remote_comm_id));
2260 2261 2262
		return -EINVAL;
	}

2263
	cm_format_rep_event(work, cm_id_priv->qp_type);
2264

2265
	spin_lock_irq(&cm_id_priv->lock);
2266 2267 2268 2269 2270
	switch (cm_id_priv->id.state) {
	case IB_CM_REQ_SENT:
	case IB_CM_MRA_REQ_RCVD:
		break;
	default:
2271
		spin_unlock_irq(&cm_id_priv->lock);
2272
		ret = -EINVAL;
D
Daniel Jurgens 已提交
2273 2274 2275 2276
		pr_debug("%s: cm_id_priv->id.state: %d, local_comm_id %d, remote_comm_id %d\n",
			 __func__, cm_id_priv->id.state,
			 be32_to_cpu(rep_msg->local_comm_id),
			 be32_to_cpu(rep_msg->remote_comm_id));
2277 2278 2279
		goto error;
	}

2280 2281
	cm_id_priv->timewait_info->work.remote_id = rep_msg->local_comm_id;
	cm_id_priv->timewait_info->remote_ca_guid = rep_msg->local_ca_guid;
2282
	cm_id_priv->timewait_info->remote_qpn = cm_rep_get_qpn(rep_msg, cm_id_priv->qp_type);
2283

2284
	spin_lock(&cm.lock);
2285 2286
	/* Check for duplicate REP. */
	if (cm_insert_remote_id(cm_id_priv->timewait_info)) {
2287
		spin_unlock(&cm.lock);
2288
		spin_unlock_irq(&cm_id_priv->lock);
2289
		ret = -EINVAL;
D
Daniel Jurgens 已提交
2290 2291
		pr_debug("%s: Failed to insert remote id %d\n", __func__,
			 be32_to_cpu(rep_msg->remote_comm_id));
2292 2293 2294
		goto error;
	}
	/* Check for a stale connection. */
2295 2296
	timewait_info = cm_insert_remote_qpn(cm_id_priv->timewait_info);
	if (timewait_info) {
2297 2298 2299
		rb_erase(&cm_id_priv->timewait_info->remote_id_node,
			 &cm.remote_id_table);
		cm_id_priv->timewait_info->inserted_remote_id = 0;
2300
		cur_cm_id_priv = cm_acquire_id(timewait_info->work.local_id,
2301 2302
					   timewait_info->work.remote_id);

2303
		spin_unlock(&cm.lock);
2304
		spin_unlock_irq(&cm_id_priv->lock);
2305 2306 2307 2308
		cm_issue_rej(work->port, work->mad_recv_wc,
			     IB_CM_REJ_STALE_CONN, CM_MSG_RESPONSE_REP,
			     NULL, 0);
		ret = -EINVAL;
D
Daniel Jurgens 已提交
2309 2310 2311 2312
		pr_debug("%s: Stale connection. local_comm_id %d, remote_comm_id %d\n",
			 __func__, be32_to_cpu(rep_msg->local_comm_id),
			 be32_to_cpu(rep_msg->remote_comm_id));

2313 2314 2315 2316 2317 2318
		if (cur_cm_id_priv) {
			cm_id = &cur_cm_id_priv->id;
			ib_send_cm_dreq(cm_id, NULL, 0);
			cm_deref_id(cur_cm_id_priv);
		}

2319 2320
		goto error;
	}
2321
	spin_unlock(&cm.lock);
2322 2323 2324

	cm_id_priv->id.state = IB_CM_REP_RCVD;
	cm_id_priv->id.remote_id = rep_msg->local_comm_id;
2325
	cm_id_priv->remote_qpn = cm_rep_get_qpn(rep_msg, cm_id_priv->qp_type);
2326 2327
	cm_id_priv->initiator_depth = rep_msg->resp_resources;
	cm_id_priv->responder_resources = rep_msg->initiator_depth;
2328
	cm_id_priv->sq_psn = cpu_to_be32(IBA_GET(CM_REP_STARTING_PSN, rep_msg));
2329 2330 2331
	cm_id_priv->rnr_retry_count = IBA_GET(CM_REP_RNR_RETRY_COUNT, rep_msg);
	cm_id_priv->target_ack_delay =
		IBA_GET(CM_REP_TARGET_ACK_DELAY, rep_msg);
2332 2333 2334 2335 2336 2337
	cm_id_priv->av.timeout =
			cm_ack_timeout(cm_id_priv->target_ack_delay,
				       cm_id_priv->av.timeout - 1);
	cm_id_priv->alt_av.timeout =
			cm_ack_timeout(cm_id_priv->target_ack_delay,
				       cm_id_priv->alt_av.timeout - 1);
2338 2339 2340

	/* todo: handle peer_to_peer */

2341
	ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
2342 2343 2344
	ret = atomic_inc_and_test(&cm_id_priv->work_count);
	if (!ret)
		list_add_tail(&work->list, &cm_id_priv->work_list);
2345
	spin_unlock_irq(&cm_id_priv->lock);
2346 2347 2348 2349 2350 2351 2352

	if (ret)
		cm_process_work(cm_id_priv, work);
	else
		cm_deref_id(cm_id_priv);
	return 0;

2353
error:
2354 2355 2356 2357 2358 2359 2360 2361 2362
	cm_deref_id(cm_id_priv);
	return ret;
}

static int cm_establish_handler(struct cm_work *work)
{
	struct cm_id_private *cm_id_priv;
	int ret;

2363
	/* See comment in cm_establish about lookup. */
2364 2365 2366 2367
	cm_id_priv = cm_acquire_id(work->local_id, work->remote_id);
	if (!cm_id_priv)
		return -EINVAL;

2368
	spin_lock_irq(&cm_id_priv->lock);
2369
	if (cm_id_priv->id.state != IB_CM_ESTABLISHED) {
2370
		spin_unlock_irq(&cm_id_priv->lock);
2371 2372 2373
		goto out;
	}

2374
	ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
2375 2376 2377
	ret = atomic_inc_and_test(&cm_id_priv->work_count);
	if (!ret)
		list_add_tail(&work->list, &cm_id_priv->work_list);
2378
	spin_unlock_irq(&cm_id_priv->lock);
2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403

	if (ret)
		cm_process_work(cm_id_priv, work);
	else
		cm_deref_id(cm_id_priv);
	return 0;
out:
	cm_deref_id(cm_id_priv);
	return -EINVAL;
}

static int cm_rtu_handler(struct cm_work *work)
{
	struct cm_id_private *cm_id_priv;
	struct cm_rtu_msg *rtu_msg;
	int ret;

	rtu_msg = (struct cm_rtu_msg *)work->mad_recv_wc->recv_buf.mad;
	cm_id_priv = cm_acquire_id(rtu_msg->remote_comm_id,
				   rtu_msg->local_comm_id);
	if (!cm_id_priv)
		return -EINVAL;

	work->cm_event.private_data = &rtu_msg->private_data;

2404
	spin_lock_irq(&cm_id_priv->lock);
2405 2406
	if (cm_id_priv->id.state != IB_CM_REP_SENT &&
	    cm_id_priv->id.state != IB_CM_MRA_REP_RCVD) {
2407
		spin_unlock_irq(&cm_id_priv->lock);
2408 2409
		atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
				counter[CM_RTU_COUNTER]);
2410 2411 2412 2413
		goto out;
	}
	cm_id_priv->id.state = IB_CM_ESTABLISHED;

2414
	ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
2415 2416 2417
	ret = atomic_inc_and_test(&cm_id_priv->work_count);
	if (!ret)
		list_add_tail(&work->list, &cm_id_priv->work_list);
2418
	spin_unlock_irq(&cm_id_priv->lock);
2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435

	if (ret)
		cm_process_work(cm_id_priv, work);
	else
		cm_deref_id(cm_id_priv);
	return 0;
out:
	cm_deref_id(cm_id_priv);
	return -EINVAL;
}

static void cm_format_dreq(struct cm_dreq_msg *dreq_msg,
			  struct cm_id_private *cm_id_priv,
			  const void *private_data,
			  u8 private_data_len)
{
	cm_format_mad_hdr(&dreq_msg->hdr, CM_DREQ_ATTR_ID,
2436
			  cm_form_tid(cm_id_priv));
2437 2438
	dreq_msg->local_comm_id = cm_id_priv->id.local_id;
	dreq_msg->remote_comm_id = cm_id_priv->id.remote_id;
2439 2440
	IBA_SET(CM_DREQ_REMOTE_QPN_EECN, dreq_msg,
		be32_to_cpu(cm_id_priv->remote_qpn));
2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460

	if (private_data && private_data_len)
		memcpy(dreq_msg->private_data, private_data, private_data_len);
}

int ib_send_cm_dreq(struct ib_cm_id *cm_id,
		    const void *private_data,
		    u8 private_data_len)
{
	struct cm_id_private *cm_id_priv;
	struct ib_mad_send_buf *msg;
	unsigned long flags;
	int ret;

	if (private_data && private_data_len > IB_CM_DREQ_PRIVATE_DATA_SIZE)
		return -EINVAL;

	cm_id_priv = container_of(cm_id, struct cm_id_private, id);
	spin_lock_irqsave(&cm_id_priv->lock, flags);
	if (cm_id->state != IB_CM_ESTABLISHED) {
D
Daniel Jurgens 已提交
2461 2462
		pr_debug("%s: local_id %d, cm_id->state: %d\n", __func__,
			 be32_to_cpu(cm_id->local_id), cm_id->state);
2463 2464 2465 2466
		ret = -EINVAL;
		goto out;
	}

2467 2468 2469 2470
	if (cm_id->lap_state == IB_CM_LAP_SENT ||
	    cm_id->lap_state == IB_CM_MRA_LAP_RCVD)
		ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);

2471 2472 2473 2474 2475 2476 2477 2478
	ret = cm_alloc_msg(cm_id_priv, &msg);
	if (ret) {
		cm_enter_timewait(cm_id_priv);
		goto out;
	}

	cm_format_dreq((struct cm_dreq_msg *) msg->mad, cm_id_priv,
		       private_data, private_data_len);
2479
	msg->timeout_ms = cm_id_priv->timeout_ms;
2480 2481
	msg->context[1] = (void *) (unsigned long) IB_CM_DREQ_SENT;

2482
	ret = ib_post_send_mad(msg, NULL);
2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531
	if (ret) {
		cm_enter_timewait(cm_id_priv);
		spin_unlock_irqrestore(&cm_id_priv->lock, flags);
		cm_free_msg(msg);
		return ret;
	}

	cm_id->state = IB_CM_DREQ_SENT;
	cm_id_priv->msg = msg;
out:	spin_unlock_irqrestore(&cm_id_priv->lock, flags);
	return ret;
}
EXPORT_SYMBOL(ib_send_cm_dreq);

static void cm_format_drep(struct cm_drep_msg *drep_msg,
			  struct cm_id_private *cm_id_priv,
			  const void *private_data,
			  u8 private_data_len)
{
	cm_format_mad_hdr(&drep_msg->hdr, CM_DREP_ATTR_ID, cm_id_priv->tid);
	drep_msg->local_comm_id = cm_id_priv->id.local_id;
	drep_msg->remote_comm_id = cm_id_priv->id.remote_id;

	if (private_data && private_data_len)
		memcpy(drep_msg->private_data, private_data, private_data_len);
}

int ib_send_cm_drep(struct ib_cm_id *cm_id,
		    const void *private_data,
		    u8 private_data_len)
{
	struct cm_id_private *cm_id_priv;
	struct ib_mad_send_buf *msg;
	unsigned long flags;
	void *data;
	int ret;

	if (private_data && private_data_len > IB_CM_DREP_PRIVATE_DATA_SIZE)
		return -EINVAL;

	data = cm_copy_private_data(private_data, private_data_len);
	if (IS_ERR(data))
		return PTR_ERR(data);

	cm_id_priv = container_of(cm_id, struct cm_id_private, id);
	spin_lock_irqsave(&cm_id_priv->lock, flags);
	if (cm_id->state != IB_CM_DREQ_RCVD) {
		spin_unlock_irqrestore(&cm_id_priv->lock, flags);
		kfree(data);
D
Daniel Jurgens 已提交
2532 2533
		pr_debug("%s: local_id %d, cm_idcm_id->state(%d) != IB_CM_DREQ_RCVD\n",
			 __func__, be32_to_cpu(cm_id->local_id), cm_id->state);
2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546
		return -EINVAL;
	}

	cm_set_private_data(cm_id_priv, data, private_data_len);
	cm_enter_timewait(cm_id_priv);

	ret = cm_alloc_msg(cm_id_priv, &msg);
	if (ret)
		goto out;

	cm_format_drep((struct cm_drep_msg *) msg->mad, cm_id_priv,
		       private_data, private_data_len);

2547
	ret = ib_post_send_mad(msg, NULL);
2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558
	if (ret) {
		spin_unlock_irqrestore(&cm_id_priv->lock, flags);
		cm_free_msg(msg);
		return ret;
	}

out:	spin_unlock_irqrestore(&cm_id_priv->lock, flags);
	return ret;
}
EXPORT_SYMBOL(ib_send_cm_drep);

2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584
static int cm_issue_drep(struct cm_port *port,
			 struct ib_mad_recv_wc *mad_recv_wc)
{
	struct ib_mad_send_buf *msg = NULL;
	struct cm_dreq_msg *dreq_msg;
	struct cm_drep_msg *drep_msg;
	int ret;

	ret = cm_alloc_response_msg(port, mad_recv_wc, &msg);
	if (ret)
		return ret;

	dreq_msg = (struct cm_dreq_msg *) mad_recv_wc->recv_buf.mad;
	drep_msg = (struct cm_drep_msg *) msg->mad;

	cm_format_mad_hdr(&drep_msg->hdr, CM_DREP_ATTR_ID, dreq_msg->hdr.tid);
	drep_msg->remote_comm_id = dreq_msg->local_comm_id;
	drep_msg->local_comm_id = dreq_msg->remote_comm_id;

	ret = ib_post_send_mad(msg, NULL);
	if (ret)
		cm_free_msg(msg);

	return ret;
}

2585 2586 2587 2588 2589 2590 2591 2592 2593 2594
static int cm_dreq_handler(struct cm_work *work)
{
	struct cm_id_private *cm_id_priv;
	struct cm_dreq_msg *dreq_msg;
	struct ib_mad_send_buf *msg = NULL;
	int ret;

	dreq_msg = (struct cm_dreq_msg *)work->mad_recv_wc->recv_buf.mad;
	cm_id_priv = cm_acquire_id(dreq_msg->remote_comm_id,
				   dreq_msg->local_comm_id);
2595
	if (!cm_id_priv) {
2596 2597
		atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
				counter[CM_DREQ_COUNTER]);
2598
		cm_issue_drep(work->port, work->mad_recv_wc);
D
Daniel Jurgens 已提交
2599 2600 2601
		pr_debug("%s: no cm_id_priv, local_comm_id %d, remote_comm_id %d\n",
			 __func__, be32_to_cpu(dreq_msg->local_comm_id),
			 be32_to_cpu(dreq_msg->remote_comm_id));
2602
		return -EINVAL;
2603
	}
2604 2605 2606

	work->cm_event.private_data = &dreq_msg->private_data;

2607
	spin_lock_irq(&cm_id_priv->lock);
2608 2609
	if (cm_id_priv->local_qpn !=
	    cpu_to_be32(IBA_GET(CM_DREQ_REMOTE_QPN_EECN, dreq_msg)))
2610 2611 2612 2613 2614
		goto unlock;

	switch (cm_id_priv->id.state) {
	case IB_CM_REP_SENT:
	case IB_CM_DREQ_SENT:
2615
		ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
2616 2617
		break;
	case IB_CM_ESTABLISHED:
2618 2619 2620 2621
		if (cm_id_priv->id.lap_state == IB_CM_LAP_SENT ||
		    cm_id_priv->id.lap_state == IB_CM_MRA_LAP_RCVD)
			ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
		break;
2622 2623 2624
	case IB_CM_MRA_REP_RCVD:
		break;
	case IB_CM_TIMEWAIT:
2625 2626
		atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
				counter[CM_DREQ_COUNTER]);
2627 2628
		msg = cm_alloc_response_msg_no_ah(work->port, work->mad_recv_wc);
		if (IS_ERR(msg))
2629 2630 2631 2632 2633
			goto unlock;

		cm_format_drep((struct cm_drep_msg *) msg->mad, cm_id_priv,
			       cm_id_priv->private_data,
			       cm_id_priv->private_data_len);
2634
		spin_unlock_irq(&cm_id_priv->lock);
2635

2636 2637
		if (cm_create_response_msg_ah(work->port, work->mad_recv_wc, msg) ||
		    ib_post_send_mad(msg, NULL))
2638 2639
			cm_free_msg(msg);
		goto deref;
2640 2641 2642 2643
	case IB_CM_DREQ_RCVD:
		atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
				counter[CM_DREQ_COUNTER]);
		goto unlock;
2644
	default:
D
Daniel Jurgens 已提交
2645 2646 2647
		pr_debug("%s: local_id %d, cm_id_priv->id.state: %d\n",
			 __func__, be32_to_cpu(cm_id_priv->id.local_id),
			 cm_id_priv->id.state);
2648 2649 2650 2651 2652 2653 2654
		goto unlock;
	}
	cm_id_priv->id.state = IB_CM_DREQ_RCVD;
	cm_id_priv->tid = dreq_msg->hdr.tid;
	ret = atomic_inc_and_test(&cm_id_priv->work_count);
	if (!ret)
		list_add_tail(&work->list, &cm_id_priv->work_list);
2655
	spin_unlock_irq(&cm_id_priv->lock);
2656 2657 2658 2659 2660 2661 2662

	if (ret)
		cm_process_work(cm_id_priv, work);
	else
		cm_deref_id(cm_id_priv);
	return 0;

2663
unlock:	spin_unlock_irq(&cm_id_priv->lock);
2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681
deref:	cm_deref_id(cm_id_priv);
	return -EINVAL;
}

static int cm_drep_handler(struct cm_work *work)
{
	struct cm_id_private *cm_id_priv;
	struct cm_drep_msg *drep_msg;
	int ret;

	drep_msg = (struct cm_drep_msg *)work->mad_recv_wc->recv_buf.mad;
	cm_id_priv = cm_acquire_id(drep_msg->remote_comm_id,
				   drep_msg->local_comm_id);
	if (!cm_id_priv)
		return -EINVAL;

	work->cm_event.private_data = &drep_msg->private_data;

2682
	spin_lock_irq(&cm_id_priv->lock);
2683 2684
	if (cm_id_priv->id.state != IB_CM_DREQ_SENT &&
	    cm_id_priv->id.state != IB_CM_DREQ_RCVD) {
2685
		spin_unlock_irq(&cm_id_priv->lock);
2686 2687 2688 2689
		goto out;
	}
	cm_enter_timewait(cm_id_priv);

2690
	ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
2691 2692 2693
	ret = atomic_inc_and_test(&cm_id_priv->work_count);
	if (!ret)
		list_add_tail(&work->list, &cm_id_priv->work_list);
2694
	spin_unlock_irq(&cm_id_priv->lock);
2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750

	if (ret)
		cm_process_work(cm_id_priv, work);
	else
		cm_deref_id(cm_id_priv);
	return 0;
out:
	cm_deref_id(cm_id_priv);
	return -EINVAL;
}

int ib_send_cm_rej(struct ib_cm_id *cm_id,
		   enum ib_cm_rej_reason reason,
		   void *ari,
		   u8 ari_length,
		   const void *private_data,
		   u8 private_data_len)
{
	struct cm_id_private *cm_id_priv;
	struct ib_mad_send_buf *msg;
	unsigned long flags;
	int ret;

	if ((private_data && private_data_len > IB_CM_REJ_PRIVATE_DATA_SIZE) ||
	    (ari && ari_length > IB_CM_REJ_ARI_LENGTH))
		return -EINVAL;

	cm_id_priv = container_of(cm_id, struct cm_id_private, id);

	spin_lock_irqsave(&cm_id_priv->lock, flags);
	switch (cm_id->state) {
	case IB_CM_REQ_SENT:
	case IB_CM_MRA_REQ_RCVD:
	case IB_CM_REQ_RCVD:
	case IB_CM_MRA_REQ_SENT:
	case IB_CM_REP_RCVD:
	case IB_CM_MRA_REP_SENT:
		ret = cm_alloc_msg(cm_id_priv, &msg);
		if (!ret)
			cm_format_rej((struct cm_rej_msg *) msg->mad,
				      cm_id_priv, reason, ari, ari_length,
				      private_data, private_data_len);

		cm_reset_to_idle(cm_id_priv);
		break;
	case IB_CM_REP_SENT:
	case IB_CM_MRA_REP_RCVD:
		ret = cm_alloc_msg(cm_id_priv, &msg);
		if (!ret)
			cm_format_rej((struct cm_rej_msg *) msg->mad,
				      cm_id_priv, reason, ari, ari_length,
				      private_data, private_data_len);

		cm_enter_timewait(cm_id_priv);
		break;
	default:
D
Daniel Jurgens 已提交
2751 2752
		pr_debug("%s: local_id %d, cm_id->state: %d\n", __func__,
			 be32_to_cpu(cm_id_priv->id.local_id), cm_id->state);
2753 2754 2755 2756 2757 2758 2759
		ret = -EINVAL;
		goto out;
	}

	if (ret)
		goto out;

2760
	ret = ib_post_send_mad(msg, NULL);
2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776
	if (ret)
		cm_free_msg(msg);

out:	spin_unlock_irqrestore(&cm_id_priv->lock, flags);
	return ret;
}
EXPORT_SYMBOL(ib_send_cm_rej);

static void cm_format_rej_event(struct cm_work *work)
{
	struct cm_rej_msg *rej_msg;
	struct ib_cm_rej_event_param *param;

	rej_msg = (struct cm_rej_msg *)work->mad_recv_wc->recv_buf.mad;
	param = &work->cm_event.param.rej_rcvd;
	param->ari = rej_msg->ari;
2777
	param->ari_length = IBA_GET(CM_REJ_REJECTED_INFO_LENGTH, rej_msg);
2778
	param->reason = __be16_to_cpu(rej_msg->reason);
2779 2780 2781 2782 2783 2784 2785
	work->cm_event.private_data = &rej_msg->private_data;
}

static struct cm_id_private * cm_acquire_rejected_id(struct cm_rej_msg *rej_msg)
{
	struct cm_timewait_info *timewait_info;
	struct cm_id_private *cm_id_priv;
2786
	__be32 remote_id;
2787 2788 2789

	remote_id = rej_msg->local_comm_id;

2790
	if (__be16_to_cpu(rej_msg->reason) == IB_CM_REJ_TIMEOUT) {
2791
		spin_lock_irq(&cm.lock);
2792
		timewait_info = cm_find_remote_id( *((__be64 *) rej_msg->ari),
2793 2794
						  remote_id);
		if (!timewait_info) {
2795
			spin_unlock_irq(&cm.lock);
2796 2797
			return NULL;
		}
2798 2799
		cm_id_priv =
			cm_acquire_id(timewait_info->work.local_id, remote_id);
2800
		spin_unlock_irq(&cm.lock);
2801 2802
	} else if (IBA_GET(CM_REJ_MESSAGE_REJECTED, rej_msg) ==
		   CM_MSG_RESPONSE_REQ)
2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822
		cm_id_priv = cm_acquire_id(rej_msg->remote_comm_id, 0);
	else
		cm_id_priv = cm_acquire_id(rej_msg->remote_comm_id, remote_id);

	return cm_id_priv;
}

static int cm_rej_handler(struct cm_work *work)
{
	struct cm_id_private *cm_id_priv;
	struct cm_rej_msg *rej_msg;
	int ret;

	rej_msg = (struct cm_rej_msg *)work->mad_recv_wc->recv_buf.mad;
	cm_id_priv = cm_acquire_rejected_id(rej_msg);
	if (!cm_id_priv)
		return -EINVAL;

	cm_format_rej_event(work);

2823
	spin_lock_irq(&cm_id_priv->lock);
2824 2825 2826 2827 2828
	switch (cm_id_priv->id.state) {
	case IB_CM_REQ_SENT:
	case IB_CM_MRA_REQ_RCVD:
	case IB_CM_REP_SENT:
	case IB_CM_MRA_REP_RCVD:
2829
		ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
2830 2831 2832
		/* fall through */
	case IB_CM_REQ_RCVD:
	case IB_CM_MRA_REQ_SENT:
2833
		if (__be16_to_cpu(rej_msg->reason) == IB_CM_REJ_STALE_CONN)
2834 2835 2836 2837 2838
			cm_enter_timewait(cm_id_priv);
		else
			cm_reset_to_idle(cm_id_priv);
		break;
	case IB_CM_DREQ_SENT:
2839
		ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
2840 2841 2842 2843 2844
		/* fall through */
	case IB_CM_REP_RCVD:
	case IB_CM_MRA_REP_SENT:
		cm_enter_timewait(cm_id_priv);
		break;
2845 2846 2847 2848 2849 2850 2851 2852 2853 2854
	case IB_CM_ESTABLISHED:
		if (cm_id_priv->id.lap_state == IB_CM_LAP_UNINIT ||
		    cm_id_priv->id.lap_state == IB_CM_LAP_SENT) {
			if (cm_id_priv->id.lap_state == IB_CM_LAP_SENT)
				ib_cancel_mad(cm_id_priv->av.port->mad_agent,
					      cm_id_priv->msg);
			cm_enter_timewait(cm_id_priv);
			break;
		}
		/* fall through */
2855
	default:
2856
		spin_unlock_irq(&cm_id_priv->lock);
D
Daniel Jurgens 已提交
2857 2858 2859
		pr_debug("%s: local_id %d, cm_id_priv->id.state: %d\n",
			 __func__, be32_to_cpu(cm_id_priv->id.local_id),
			 cm_id_priv->id.state);
2860 2861 2862 2863 2864 2865 2866
		ret = -EINVAL;
		goto out;
	}

	ret = atomic_inc_and_test(&cm_id_priv->work_count);
	if (!ret)
		list_add_tail(&work->list, &cm_id_priv->work_list);
2867
	spin_unlock_irq(&cm_id_priv->lock);
2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885

	if (ret)
		cm_process_work(cm_id_priv, work);
	else
		cm_deref_id(cm_id_priv);
	return 0;
out:
	cm_deref_id(cm_id_priv);
	return -EINVAL;
}

int ib_send_cm_mra(struct ib_cm_id *cm_id,
		   u8 service_timeout,
		   const void *private_data,
		   u8 private_data_len)
{
	struct cm_id_private *cm_id_priv;
	struct ib_mad_send_buf *msg;
2886 2887 2888
	enum ib_cm_state cm_state;
	enum ib_cm_lap_state lap_state;
	enum cm_msg_response msg_response;
2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904
	void *data;
	unsigned long flags;
	int ret;

	if (private_data && private_data_len > IB_CM_MRA_PRIVATE_DATA_SIZE)
		return -EINVAL;

	data = cm_copy_private_data(private_data, private_data_len);
	if (IS_ERR(data))
		return PTR_ERR(data);

	cm_id_priv = container_of(cm_id, struct cm_id_private, id);

	spin_lock_irqsave(&cm_id_priv->lock, flags);
	switch(cm_id_priv->id.state) {
	case IB_CM_REQ_RCVD:
2905 2906 2907
		cm_state = IB_CM_MRA_REQ_SENT;
		lap_state = cm_id->lap_state;
		msg_response = CM_MSG_RESPONSE_REQ;
2908 2909
		break;
	case IB_CM_REP_RCVD:
2910 2911 2912
		cm_state = IB_CM_MRA_REP_SENT;
		lap_state = cm_id->lap_state;
		msg_response = CM_MSG_RESPONSE_REP;
2913 2914
		break;
	case IB_CM_ESTABLISHED:
2915 2916 2917 2918 2919 2920
		if (cm_id->lap_state == IB_CM_LAP_RCVD) {
			cm_state = cm_id->state;
			lap_state = IB_CM_MRA_LAP_SENT;
			msg_response = CM_MSG_RESPONSE_OTHER;
			break;
		}
2921
		/* fall through */
2922
	default:
D
Daniel Jurgens 已提交
2923 2924 2925
		pr_debug("%s: local_id %d, cm_id_priv->id.state: %d\n",
			 __func__, be32_to_cpu(cm_id_priv->id.local_id),
			 cm_id_priv->id.state);
2926 2927 2928 2929 2930
		ret = -EINVAL;
		goto error1;
	}

	if (!(service_timeout & IB_CM_MRA_FLAG_DELAY)) {
2931 2932 2933 2934 2935
		ret = cm_alloc_msg(cm_id_priv, &msg);
		if (ret)
			goto error1;

		cm_format_mra((struct cm_mra_msg *) msg->mad, cm_id_priv,
2936
			      msg_response, service_timeout,
2937
			      private_data, private_data_len);
2938
		ret = ib_post_send_mad(msg, NULL);
2939 2940 2941
		if (ret)
			goto error2;
	}
2942 2943 2944

	cm_id->state = cm_state;
	cm_id->lap_state = lap_state;
2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962
	cm_id_priv->service_timeout = service_timeout;
	cm_set_private_data(cm_id_priv, data, private_data_len);
	spin_unlock_irqrestore(&cm_id_priv->lock, flags);
	return 0;

error1:	spin_unlock_irqrestore(&cm_id_priv->lock, flags);
	kfree(data);
	return ret;

error2:	spin_unlock_irqrestore(&cm_id_priv->lock, flags);
	kfree(data);
	cm_free_msg(msg);
	return ret;
}
EXPORT_SYMBOL(ib_send_cm_mra);

static struct cm_id_private * cm_acquire_mraed_id(struct cm_mra_msg *mra_msg)
{
2963
	switch (IBA_GET(CM_MRA_MESSAGE_MRAED, mra_msg)) {
2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987
	case CM_MSG_RESPONSE_REQ:
		return cm_acquire_id(mra_msg->remote_comm_id, 0);
	case CM_MSG_RESPONSE_REP:
	case CM_MSG_RESPONSE_OTHER:
		return cm_acquire_id(mra_msg->remote_comm_id,
				     mra_msg->local_comm_id);
	default:
		return NULL;
	}
}

static int cm_mra_handler(struct cm_work *work)
{
	struct cm_id_private *cm_id_priv;
	struct cm_mra_msg *mra_msg;
	int timeout, ret;

	mra_msg = (struct cm_mra_msg *)work->mad_recv_wc->recv_buf.mad;
	cm_id_priv = cm_acquire_mraed_id(mra_msg);
	if (!cm_id_priv)
		return -EINVAL;

	work->cm_event.private_data = &mra_msg->private_data;
	work->cm_event.param.mra_rcvd.service_timeout =
2988 2989
		IBA_GET(CM_MRA_SERVICE_TIMEOUT, mra_msg);
	timeout = cm_convert_to_ms(IBA_GET(CM_MRA_SERVICE_TIMEOUT, mra_msg)) +
2990
		  cm_convert_to_ms(cm_id_priv->av.timeout);
2991

2992
	spin_lock_irq(&cm_id_priv->lock);
2993 2994
	switch (cm_id_priv->id.state) {
	case IB_CM_REQ_SENT:
2995 2996
		if (IBA_GET(CM_MRA_MESSAGE_MRAED, mra_msg) !=
			    CM_MSG_RESPONSE_REQ ||
2997
		    ib_modify_mad(cm_id_priv->av.port->mad_agent,
2998
				  cm_id_priv->msg, timeout))
2999 3000 3001 3002
			goto out;
		cm_id_priv->id.state = IB_CM_MRA_REQ_RCVD;
		break;
	case IB_CM_REP_SENT:
3003 3004
		if (IBA_GET(CM_MRA_MESSAGE_MRAED, mra_msg) !=
			    CM_MSG_RESPONSE_REP ||
3005
		    ib_modify_mad(cm_id_priv->av.port->mad_agent,
3006
				  cm_id_priv->msg, timeout))
3007 3008 3009 3010
			goto out;
		cm_id_priv->id.state = IB_CM_MRA_REP_RCVD;
		break;
	case IB_CM_ESTABLISHED:
3011 3012
		if (IBA_GET(CM_MRA_MESSAGE_MRAED, mra_msg) !=
			    CM_MSG_RESPONSE_OTHER ||
3013 3014
		    cm_id_priv->id.lap_state != IB_CM_LAP_SENT ||
		    ib_modify_mad(cm_id_priv->av.port->mad_agent,
3015 3016 3017 3018 3019
				  cm_id_priv->msg, timeout)) {
			if (cm_id_priv->id.lap_state == IB_CM_MRA_LAP_RCVD)
				atomic_long_inc(&work->port->
						counter_group[CM_RECV_DUPLICATES].
						counter[CM_MRA_COUNTER]);
3020
			goto out;
3021
		}
3022 3023
		cm_id_priv->id.lap_state = IB_CM_MRA_LAP_RCVD;
		break;
3024 3025 3026 3027 3028
	case IB_CM_MRA_REQ_RCVD:
	case IB_CM_MRA_REP_RCVD:
		atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
				counter[CM_MRA_COUNTER]);
		/* fall through */
3029
	default:
D
Daniel Jurgens 已提交
3030 3031 3032
		pr_debug("%s local_id %d, cm_id_priv->id.state: %d\n",
			 __func__, be32_to_cpu(cm_id_priv->id.local_id),
			 cm_id_priv->id.state);
3033 3034 3035 3036 3037 3038 3039 3040
		goto out;
	}

	cm_id_priv->msg->context[1] = (void *) (unsigned long)
				      cm_id_priv->id.state;
	ret = atomic_inc_and_test(&cm_id_priv->work_count);
	if (!ret)
		list_add_tail(&work->list, &cm_id_priv->work_list);
3041
	spin_unlock_irq(&cm_id_priv->lock);
3042 3043 3044 3045 3046 3047 3048

	if (ret)
		cm_process_work(cm_id_priv, work);
	else
		cm_deref_id(cm_id_priv);
	return 0;
out:
3049
	spin_unlock_irq(&cm_id_priv->lock);
3050 3051 3052 3053
	cm_deref_id(cm_id_priv);
	return -EINVAL;
}

3054 3055 3056 3057 3058 3059
static void cm_format_path_lid_from_lap(struct cm_lap_msg *lap_msg,
					struct sa_path_rec *path)
{
	u32 lid;

	if (path->rec_type != SA_PATH_REC_TYPE_OPA) {
3060 3061
		sa_path_set_dlid(path, ntohs(lap_msg->alt_local_lid));
		sa_path_set_slid(path, ntohs(lap_msg->alt_remote_lid));
3062 3063
	} else {
		lid = opa_get_lid_from_gid(&lap_msg->alt_local_gid);
3064
		sa_path_set_dlid(path, lid);
3065 3066

		lid = opa_get_lid_from_gid(&lap_msg->alt_remote_gid);
3067
		sa_path_set_slid(path, lid);
3068 3069 3070
	}
}

3071
static void cm_format_path_from_lap(struct cm_id_private *cm_id_priv,
3072
				    struct sa_path_rec *path,
3073 3074 3075 3076
				    struct cm_lap_msg *lap_msg)
{
	path->dgid = lap_msg->alt_local_gid;
	path->sgid = lap_msg->alt_remote_gid;
3077 3078
	path->flow_label =
		cpu_to_be32(IBA_GET(CM_LAP_ALTERNATE_FLOW_LABEL, lap_msg));
3079
	path->hop_limit = lap_msg->alt_hop_limit;
3080
	path->traffic_class = IBA_GET(CM_LAP_ALTERNATE_TRAFFIC_CLASS, lap_msg);
3081
	path->reversible = 1;
3082
	path->pkey = cm_id_priv->pkey;
3083
	path->sl = IBA_GET(CM_LAP_ALTERNATE_SL, lap_msg);
3084
	path->mtu_selector = IB_SA_EQ;
3085
	path->mtu = cm_id_priv->path_mtu;
3086
	path->rate_selector = IB_SA_EQ;
3087
	path->rate = IBA_GET(CM_LAP_ALTERNATE_PACKET_RATE, lap_msg);
3088
	path->packet_life_time_selector = IB_SA_EQ;
3089 3090
	path->packet_life_time =
		IBA_GET(CM_LAP_ALTERNATE_LOCAL_ACK_TIMEOUT, lap_msg);
3091
	path->packet_life_time -= (path->packet_life_time > 0);
3092
	cm_format_path_lid_from_lap(lap_msg, path);
3093 3094 3095 3096 3097 3098 3099 3100 3101 3102
}

static int cm_lap_handler(struct cm_work *work)
{
	struct cm_id_private *cm_id_priv;
	struct cm_lap_msg *lap_msg;
	struct ib_cm_lap_event_param *param;
	struct ib_mad_send_buf *msg = NULL;
	int ret;

3103 3104 3105 3106 3107 3108 3109
	/* Currently Alternate path messages are not supported for
	 * RoCE link layer.
	 */
	if (rdma_protocol_roce(work->port->cm_dev->ib_device,
			       work->port->port_num))
		return -EINVAL;

3110 3111 3112 3113 3114 3115 3116 3117
	/* todo: verify LAP request and send reject APR if invalid. */
	lap_msg = (struct cm_lap_msg *)work->mad_recv_wc->recv_buf.mad;
	cm_id_priv = cm_acquire_id(lap_msg->remote_comm_id,
				   lap_msg->local_comm_id);
	if (!cm_id_priv)
		return -EINVAL;

	param = &work->cm_event.param.lap_rcvd;
3118 3119 3120 3121 3122
	memset(&work->path[0], 0, sizeof(work->path[1]));
	cm_path_set_rec_type(work->port->cm_dev->ib_device,
			     work->port->port_num,
			     &work->path[0],
			     &lap_msg->alt_local_gid);
3123
	param->alternate_path = &work->path[0];
3124
	cm_format_path_from_lap(cm_id_priv, param->alternate_path, lap_msg);
3125 3126
	work->cm_event.private_data = &lap_msg->private_data;

3127
	spin_lock_irq(&cm_id_priv->lock);
3128 3129 3130 3131
	if (cm_id_priv->id.state != IB_CM_ESTABLISHED)
		goto unlock;

	switch (cm_id_priv->id.lap_state) {
3132
	case IB_CM_LAP_UNINIT:
3133 3134 3135
	case IB_CM_LAP_IDLE:
		break;
	case IB_CM_MRA_LAP_SENT:
3136 3137
		atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
				counter[CM_LAP_COUNTER]);
3138 3139
		msg = cm_alloc_response_msg_no_ah(work->port, work->mad_recv_wc);
		if (IS_ERR(msg))
3140 3141 3142 3143 3144 3145 3146
			goto unlock;

		cm_format_mra((struct cm_mra_msg *) msg->mad, cm_id_priv,
			      CM_MSG_RESPONSE_OTHER,
			      cm_id_priv->service_timeout,
			      cm_id_priv->private_data,
			      cm_id_priv->private_data_len);
3147
		spin_unlock_irq(&cm_id_priv->lock);
3148

3149 3150
		if (cm_create_response_msg_ah(work->port, work->mad_recv_wc, msg) ||
		    ib_post_send_mad(msg, NULL))
3151 3152
			cm_free_msg(msg);
		goto deref;
3153 3154 3155 3156
	case IB_CM_LAP_RCVD:
		atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
				counter[CM_LAP_COUNTER]);
		goto unlock;
3157 3158 3159 3160
	default:
		goto unlock;
	}

3161 3162 3163
	ret = cm_init_av_for_lap(work->port, work->mad_recv_wc->wc,
				 work->mad_recv_wc->recv_buf.grh,
				 &cm_id_priv->av);
3164 3165 3166
	if (ret)
		goto unlock;

3167 3168 3169 3170 3171
	ret = cm_init_av_by_path(param->alternate_path, NULL,
				 &cm_id_priv->alt_av, cm_id_priv);
	if (ret)
		goto unlock;

3172 3173
	cm_id_priv->id.lap_state = IB_CM_LAP_RCVD;
	cm_id_priv->tid = lap_msg->hdr.tid;
3174 3175 3176
	ret = atomic_inc_and_test(&cm_id_priv->work_count);
	if (!ret)
		list_add_tail(&work->list, &cm_id_priv->work_list);
3177
	spin_unlock_irq(&cm_id_priv->lock);
3178 3179 3180 3181 3182 3183 3184

	if (ret)
		cm_process_work(cm_id_priv, work);
	else
		cm_deref_id(cm_id_priv);
	return 0;

3185
unlock:	spin_unlock_irq(&cm_id_priv->lock);
3186 3187 3188 3189 3190 3191 3192 3193 3194 3195
deref:	cm_deref_id(cm_id_priv);
	return -EINVAL;
}

static int cm_apr_handler(struct cm_work *work)
{
	struct cm_id_private *cm_id_priv;
	struct cm_apr_msg *apr_msg;
	int ret;

3196 3197 3198 3199 3200 3201 3202
	/* Currently Alternate path messages are not supported for
	 * RoCE link layer.
	 */
	if (rdma_protocol_roce(work->port->cm_dev->ib_device,
			       work->port->port_num))
		return -EINVAL;

3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213
	apr_msg = (struct cm_apr_msg *)work->mad_recv_wc->recv_buf.mad;
	cm_id_priv = cm_acquire_id(apr_msg->remote_comm_id,
				   apr_msg->local_comm_id);
	if (!cm_id_priv)
		return -EINVAL; /* Unmatched reply. */

	work->cm_event.param.apr_rcvd.ap_status = apr_msg->ap_status;
	work->cm_event.param.apr_rcvd.apr_info = &apr_msg->info;
	work->cm_event.param.apr_rcvd.info_len = apr_msg->info_length;
	work->cm_event.private_data = &apr_msg->private_data;

3214
	spin_lock_irq(&cm_id_priv->lock);
3215 3216 3217
	if (cm_id_priv->id.state != IB_CM_ESTABLISHED ||
	    (cm_id_priv->id.lap_state != IB_CM_LAP_SENT &&
	     cm_id_priv->id.lap_state != IB_CM_MRA_LAP_RCVD)) {
3218
		spin_unlock_irq(&cm_id_priv->lock);
3219 3220 3221
		goto out;
	}
	cm_id_priv->id.lap_state = IB_CM_LAP_IDLE;
3222
	ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
3223 3224 3225 3226 3227
	cm_id_priv->msg = NULL;

	ret = atomic_inc_and_test(&cm_id_priv->work_count);
	if (!ret)
		list_add_tail(&work->list, &cm_id_priv->work_list);
3228
	spin_unlock_irq(&cm_id_priv->lock);
3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245

	if (ret)
		cm_process_work(cm_id_priv, work);
	else
		cm_deref_id(cm_id_priv);
	return 0;
out:
	cm_deref_id(cm_id_priv);
	return -EINVAL;
}

static int cm_timewait_handler(struct cm_work *work)
{
	struct cm_timewait_info *timewait_info;
	struct cm_id_private *cm_id_priv;
	int ret;

3246
	timewait_info = container_of(work, struct cm_timewait_info, work);
3247 3248 3249
	spin_lock_irq(&cm.lock);
	list_del(&timewait_info->list);
	spin_unlock_irq(&cm.lock);
3250 3251 3252 3253 3254 3255

	cm_id_priv = cm_acquire_id(timewait_info->work.local_id,
				   timewait_info->work.remote_id);
	if (!cm_id_priv)
		return -EINVAL;

3256
	spin_lock_irq(&cm_id_priv->lock);
3257 3258
	if (cm_id_priv->id.state != IB_CM_TIMEWAIT ||
	    cm_id_priv->remote_qpn != timewait_info->remote_qpn) {
3259
		spin_unlock_irq(&cm_id_priv->lock);
3260 3261 3262 3263 3264 3265
		goto out;
	}
	cm_id_priv->id.state = IB_CM_IDLE;
	ret = atomic_inc_and_test(&cm_id_priv->work_count);
	if (!ret)
		list_add_tail(&work->list, &cm_id_priv->work_list);
3266
	spin_unlock_irq(&cm_id_priv->lock);
3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282

	if (ret)
		cm_process_work(cm_id_priv, work);
	else
		cm_deref_id(cm_id_priv);
	return 0;
out:
	cm_deref_id(cm_id_priv);
	return -EINVAL;
}

static void cm_format_sidr_req(struct cm_sidr_req_msg *sidr_req_msg,
			       struct cm_id_private *cm_id_priv,
			       struct ib_cm_sidr_req_param *param)
{
	cm_format_mad_hdr(&sidr_req_msg->hdr, CM_SIDR_REQ_ATTR_ID,
3283
			  cm_form_tid(cm_id_priv));
3284
	sidr_req_msg->request_id = cm_id_priv->id.local_id;
R
Roland Dreier 已提交
3285
	sidr_req_msg->pkey = param->path->pkey;
3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305
	sidr_req_msg->service_id = param->service_id;

	if (param->private_data && param->private_data_len)
		memcpy(sidr_req_msg->private_data, param->private_data,
		       param->private_data_len);
}

int ib_send_cm_sidr_req(struct ib_cm_id *cm_id,
			struct ib_cm_sidr_req_param *param)
{
	struct cm_id_private *cm_id_priv;
	struct ib_mad_send_buf *msg;
	unsigned long flags;
	int ret;

	if (!param->path || (param->private_data &&
	     param->private_data_len > IB_CM_SIDR_REQ_PRIVATE_DATA_SIZE))
		return -EINVAL;

	cm_id_priv = container_of(cm_id, struct cm_id_private, id);
3306 3307 3308
	ret = cm_init_av_by_path(param->path, param->sgid_attr,
				 &cm_id_priv->av,
				 cm_id_priv);
3309 3310 3311 3312
	if (ret)
		goto out;

	cm_id->service_id = param->service_id;
3313
	cm_id->service_mask = ~cpu_to_be64(0);
3314 3315 3316 3317 3318 3319 3320 3321
	cm_id_priv->timeout_ms = param->timeout_ms;
	cm_id_priv->max_cm_retries = param->max_cm_retries;
	ret = cm_alloc_msg(cm_id_priv, &msg);
	if (ret)
		goto out;

	cm_format_sidr_req((struct cm_sidr_req_msg *) msg->mad, cm_id_priv,
			   param);
3322
	msg->timeout_ms = cm_id_priv->timeout_ms;
3323 3324 3325 3326
	msg->context[1] = (void *) (unsigned long) IB_CM_SIDR_REQ_SENT;

	spin_lock_irqsave(&cm_id_priv->lock, flags);
	if (cm_id->state == IB_CM_IDLE)
3327
		ret = ib_post_send_mad(msg, NULL);
3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344
	else
		ret = -EINVAL;

	if (ret) {
		spin_unlock_irqrestore(&cm_id_priv->lock, flags);
		cm_free_msg(msg);
		goto out;
	}
	cm_id->state = IB_CM_SIDR_REQ_SENT;
	cm_id_priv->msg = msg;
	spin_unlock_irqrestore(&cm_id_priv->lock, flags);
out:
	return ret;
}
EXPORT_SYMBOL(ib_send_cm_sidr_req);

static void cm_format_sidr_req_event(struct cm_work *work,
3345
				     const struct cm_id_private *rx_cm_id,
3346 3347 3348 3349 3350 3351 3352 3353
				     struct ib_cm_id *listen_id)
{
	struct cm_sidr_req_msg *sidr_req_msg;
	struct ib_cm_sidr_req_event_param *param;

	sidr_req_msg = (struct cm_sidr_req_msg *)
				work->mad_recv_wc->recv_buf.mad;
	param = &work->cm_event.param.sidr_req_rcvd;
3354
	param->pkey = __be16_to_cpu(sidr_req_msg->pkey);
3355
	param->listen_id = listen_id;
3356
	param->service_id = sidr_req_msg->service_id;
3357
	param->bth_pkey = cm_get_bth_pkey(work);
3358
	param->port = work->port->port_num;
3359
	param->sgid_attr = rx_cm_id->av.ah_attr.grh.sgid_attr;
3360 3361 3362 3363 3364 3365 3366 3367 3368
	work->cm_event.private_data = &sidr_req_msg->private_data;
}

static int cm_sidr_req_handler(struct cm_work *work)
{
	struct ib_cm_id *cm_id;
	struct cm_id_private *cm_id_priv, *cur_cm_id_priv;
	struct cm_sidr_req_msg *sidr_req_msg;
	struct ib_wc *wc;
P
Parav Pandit 已提交
3369
	int ret;
3370

3371
	cm_id = ib_create_cm_id(work->port->cm_dev->ib_device, NULL, NULL);
3372 3373 3374 3375 3376 3377 3378 3379
	if (IS_ERR(cm_id))
		return PTR_ERR(cm_id);
	cm_id_priv = container_of(cm_id, struct cm_id_private, id);

	/* Record SGID/SLID and request ID for lookup. */
	sidr_req_msg = (struct cm_sidr_req_msg *)
				work->mad_recv_wc->recv_buf.mad;
	wc = work->mad_recv_wc->wc;
3380
	cm_id_priv->av.dgid.global.subnet_prefix = cpu_to_be64(wc->slid);
3381
	cm_id_priv->av.dgid.global.interface_id = 0;
P
Parav Pandit 已提交
3382 3383 3384 3385 3386 3387
	ret = cm_init_av_for_response(work->port, work->mad_recv_wc->wc,
				      work->mad_recv_wc->recv_buf.grh,
				      &cm_id_priv->av);
	if (ret)
		goto out;

3388 3389 3390 3391
	cm_id_priv->id.remote_id = sidr_req_msg->request_id;
	cm_id_priv->tid = sidr_req_msg->hdr.tid;
	atomic_inc(&cm_id_priv->work_count);

3392
	spin_lock_irq(&cm.lock);
3393 3394
	cur_cm_id_priv = cm_insert_remote_sidr(cm_id_priv);
	if (cur_cm_id_priv) {
3395
		spin_unlock_irq(&cm.lock);
3396 3397
		atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
				counter[CM_SIDR_REQ_COUNTER]);
3398 3399
		goto out; /* Duplicate message. */
	}
3400
	cm_id_priv->id.state = IB_CM_SIDR_REQ_RCVD;
3401
	cur_cm_id_priv = cm_find_listen(cm_id->device,
H
Haggai Eran 已提交
3402
					sidr_req_msg->service_id);
3403
	if (!cur_cm_id_priv) {
3404
		spin_unlock_irq(&cm.lock);
3405
		cm_reject_sidr_req(cm_id_priv, IB_SIDR_UNSUPPORTED);
3406 3407
		goto out; /* No match. */
	}
3408 3409
	refcount_inc(&cur_cm_id_priv->refcount);
	refcount_inc(&cm_id_priv->refcount);
3410
	spin_unlock_irq(&cm.lock);
3411 3412 3413 3414

	cm_id_priv->id.cm_handler = cur_cm_id_priv->id.cm_handler;
	cm_id_priv->id.context = cur_cm_id_priv->id.context;
	cm_id_priv->id.service_id = sidr_req_msg->service_id;
3415
	cm_id_priv->id.service_mask = ~cpu_to_be64(0);
3416

3417
	cm_format_sidr_req_event(work, cm_id_priv, &cur_cm_id_priv->id);
3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433
	cm_process_work(cm_id_priv, work);
	cm_deref_id(cur_cm_id_priv);
	return 0;
out:
	ib_destroy_cm_id(&cm_id_priv->id);
	return -EINVAL;
}

static void cm_format_sidr_rep(struct cm_sidr_rep_msg *sidr_rep_msg,
			       struct cm_id_private *cm_id_priv,
			       struct ib_cm_sidr_rep_param *param)
{
	cm_format_mad_hdr(&sidr_rep_msg->hdr, CM_SIDR_REP_ATTR_ID,
			  cm_id_priv->tid);
	sidr_rep_msg->request_id = cm_id_priv->id.remote_id;
	sidr_rep_msg->status = param->status;
3434
	IBA_SET(CM_SIDR_REP_QPN, sidr_rep_msg, param->qp_num);
3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471
	sidr_rep_msg->service_id = cm_id_priv->id.service_id;
	sidr_rep_msg->qkey = cpu_to_be32(param->qkey);

	if (param->info && param->info_length)
		memcpy(sidr_rep_msg->info, param->info, param->info_length);

	if (param->private_data && param->private_data_len)
		memcpy(sidr_rep_msg->private_data, param->private_data,
		       param->private_data_len);
}

int ib_send_cm_sidr_rep(struct ib_cm_id *cm_id,
			struct ib_cm_sidr_rep_param *param)
{
	struct cm_id_private *cm_id_priv;
	struct ib_mad_send_buf *msg;
	unsigned long flags;
	int ret;

	if ((param->info && param->info_length > IB_CM_SIDR_REP_INFO_LENGTH) ||
	    (param->private_data &&
	     param->private_data_len > IB_CM_SIDR_REP_PRIVATE_DATA_SIZE))
		return -EINVAL;

	cm_id_priv = container_of(cm_id, struct cm_id_private, id);
	spin_lock_irqsave(&cm_id_priv->lock, flags);
	if (cm_id->state != IB_CM_SIDR_REQ_RCVD) {
		ret = -EINVAL;
		goto error;
	}

	ret = cm_alloc_msg(cm_id_priv, &msg);
	if (ret)
		goto error;

	cm_format_sidr_rep((struct cm_sidr_rep_msg *) msg->mad, cm_id_priv,
			   param);
3472
	ret = ib_post_send_mad(msg, NULL);
3473 3474 3475 3476 3477 3478 3479 3480 3481
	if (ret) {
		spin_unlock_irqrestore(&cm_id_priv->lock, flags);
		cm_free_msg(msg);
		return ret;
	}
	cm_id->state = IB_CM_IDLE;
	spin_unlock_irqrestore(&cm_id_priv->lock, flags);

	spin_lock_irqsave(&cm.lock, flags);
3482 3483 3484 3485
	if (!RB_EMPTY_NODE(&cm_id_priv->sidr_id_node)) {
		rb_erase(&cm_id_priv->sidr_id_node, &cm.remote_sidr_table);
		RB_CLEAR_NODE(&cm_id_priv->sidr_id_node);
	}
3486 3487 3488 3489 3490 3491 3492 3493
	spin_unlock_irqrestore(&cm.lock, flags);
	return 0;

error:	spin_unlock_irqrestore(&cm_id_priv->lock, flags);
	return ret;
}
EXPORT_SYMBOL(ib_send_cm_sidr_rep);

3494 3495
static void cm_format_sidr_rep_event(struct cm_work *work,
				     const struct cm_id_private *cm_id_priv)
3496 3497 3498 3499 3500 3501 3502 3503 3504
{
	struct cm_sidr_rep_msg *sidr_rep_msg;
	struct ib_cm_sidr_rep_event_param *param;

	sidr_rep_msg = (struct cm_sidr_rep_msg *)
				work->mad_recv_wc->recv_buf.mad;
	param = &work->cm_event.param.sidr_rep_rcvd;
	param->status = sidr_rep_msg->status;
	param->qkey = be32_to_cpu(sidr_rep_msg->qkey);
3505
	param->qpn = IBA_GET(CM_SIDR_REP_QPN, sidr_rep_msg);
3506 3507
	param->info = &sidr_rep_msg->info;
	param->info_len = sidr_rep_msg->info_length;
3508
	param->sgid_attr = cm_id_priv->av.ah_attr.grh.sgid_attr;
3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522
	work->cm_event.private_data = &sidr_rep_msg->private_data;
}

static int cm_sidr_rep_handler(struct cm_work *work)
{
	struct cm_sidr_rep_msg *sidr_rep_msg;
	struct cm_id_private *cm_id_priv;

	sidr_rep_msg = (struct cm_sidr_rep_msg *)
				work->mad_recv_wc->recv_buf.mad;
	cm_id_priv = cm_acquire_id(sidr_rep_msg->request_id, 0);
	if (!cm_id_priv)
		return -EINVAL; /* Unmatched reply. */

3523
	spin_lock_irq(&cm_id_priv->lock);
3524
	if (cm_id_priv->id.state != IB_CM_SIDR_REQ_SENT) {
3525
		spin_unlock_irq(&cm_id_priv->lock);
3526 3527 3528
		goto out;
	}
	cm_id_priv->id.state = IB_CM_IDLE;
3529
	ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
3530
	spin_unlock_irq(&cm_id_priv->lock);
3531

3532
	cm_format_sidr_rep_event(work, cm_id_priv);
3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551
	cm_process_work(cm_id_priv, work);
	return 0;
out:
	cm_deref_id(cm_id_priv);
	return -EINVAL;
}

static void cm_process_send_error(struct ib_mad_send_buf *msg,
				  enum ib_wc_status wc_status)
{
	struct cm_id_private *cm_id_priv;
	struct ib_cm_event cm_event;
	enum ib_cm_state state;
	int ret;

	memset(&cm_event, 0, sizeof cm_event);
	cm_id_priv = msg->context[0];

	/* Discard old sends or ones without a response. */
3552
	spin_lock_irq(&cm_id_priv->lock);
3553 3554 3555 3556
	state = (enum ib_cm_state) (unsigned long) msg->context[1];
	if (msg != cm_id_priv->msg || state != cm_id_priv->id.state)
		goto discard;

3557 3558
	pr_debug_ratelimited("CM: failed sending MAD in state %d. (%s)\n",
			     state, ib_wc_status_msg(wc_status));
3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580
	switch (state) {
	case IB_CM_REQ_SENT:
	case IB_CM_MRA_REQ_RCVD:
		cm_reset_to_idle(cm_id_priv);
		cm_event.event = IB_CM_REQ_ERROR;
		break;
	case IB_CM_REP_SENT:
	case IB_CM_MRA_REP_RCVD:
		cm_reset_to_idle(cm_id_priv);
		cm_event.event = IB_CM_REP_ERROR;
		break;
	case IB_CM_DREQ_SENT:
		cm_enter_timewait(cm_id_priv);
		cm_event.event = IB_CM_DREQ_ERROR;
		break;
	case IB_CM_SIDR_REQ_SENT:
		cm_id_priv->id.state = IB_CM_IDLE;
		cm_event.event = IB_CM_SIDR_REQ_ERROR;
		break;
	default:
		goto discard;
	}
3581
	spin_unlock_irq(&cm_id_priv->lock);
3582 3583 3584 3585 3586 3587 3588 3589 3590
	cm_event.param.send_status = wc_status;

	/* No other events can occur on the cm_id at this point. */
	ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &cm_event);
	cm_free_msg(msg);
	if (ret)
		ib_destroy_cm_id(&cm_id_priv->id);
	return;
discard:
3591
	spin_unlock_irq(&cm_id_priv->lock);
3592 3593 3594 3595 3596 3597
	cm_free_msg(msg);
}

static void cm_send_handler(struct ib_mad_agent *mad_agent,
			    struct ib_mad_send_wc *mad_send_wc)
{
3598
	struct ib_mad_send_buf *msg = mad_send_wc->send_buf;
3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619
	struct cm_port *port;
	u16 attr_index;

	port = mad_agent->context;
	attr_index = be16_to_cpu(((struct ib_mad_hdr *)
				  msg->mad)->attr_id) - CM_ATTR_ID_OFFSET;

	/*
	 * If the send was in response to a received message (context[0] is not
	 * set to a cm_id), and is not a REJ, then it is a send that was
	 * manually retried.
	 */
	if (!msg->context[0] && (attr_index != CM_REJ_COUNTER))
		msg->retries = 1;

	atomic_long_add(1 + msg->retries,
			&port->counter_group[CM_XMIT].counter[attr_index]);
	if (msg->retries)
		atomic_long_add(msg->retries,
				&port->counter_group[CM_XMIT_RETRIES].
				counter[attr_index]);
3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634

	switch (mad_send_wc->status) {
	case IB_WC_SUCCESS:
	case IB_WC_WR_FLUSH_ERR:
		cm_free_msg(msg);
		break;
	default:
		if (msg->context[0] && msg->context[1])
			cm_process_send_error(msg, mad_send_wc->status);
		else
			cm_free_msg(msg);
		break;
	}
}

D
David Howells 已提交
3635
static void cm_work_handler(struct work_struct *_work)
3636
{
D
David Howells 已提交
3637
	struct cm_work *work = container_of(_work, struct cm_work, work.work);
3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680
	int ret;

	switch (work->cm_event.event) {
	case IB_CM_REQ_RECEIVED:
		ret = cm_req_handler(work);
		break;
	case IB_CM_MRA_RECEIVED:
		ret = cm_mra_handler(work);
		break;
	case IB_CM_REJ_RECEIVED:
		ret = cm_rej_handler(work);
		break;
	case IB_CM_REP_RECEIVED:
		ret = cm_rep_handler(work);
		break;
	case IB_CM_RTU_RECEIVED:
		ret = cm_rtu_handler(work);
		break;
	case IB_CM_USER_ESTABLISHED:
		ret = cm_establish_handler(work);
		break;
	case IB_CM_DREQ_RECEIVED:
		ret = cm_dreq_handler(work);
		break;
	case IB_CM_DREP_RECEIVED:
		ret = cm_drep_handler(work);
		break;
	case IB_CM_SIDR_REQ_RECEIVED:
		ret = cm_sidr_req_handler(work);
		break;
	case IB_CM_SIDR_REP_RECEIVED:
		ret = cm_sidr_rep_handler(work);
		break;
	case IB_CM_LAP_RECEIVED:
		ret = cm_lap_handler(work);
		break;
	case IB_CM_APR_RECEIVED:
		ret = cm_apr_handler(work);
		break;
	case IB_CM_TIMEWAIT_EXIT:
		ret = cm_timewait_handler(work);
		break;
	default:
D
Daniel Jurgens 已提交
3681
		pr_debug("cm_event.event: 0x%x\n", work->cm_event.event);
3682 3683 3684 3685 3686 3687 3688
		ret = -EINVAL;
		break;
	}
	if (ret)
		cm_free_work(work);
}

3689
static int cm_establish(struct ib_cm_id *cm_id)
3690 3691 3692 3693 3694
{
	struct cm_id_private *cm_id_priv;
	struct cm_work *work;
	unsigned long flags;
	int ret = 0;
3695 3696 3697 3698 3699
	struct cm_device *cm_dev;

	cm_dev = ib_get_client_data(cm_id->device, &cm_client);
	if (!cm_dev)
		return -ENODEV;
3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716

	work = kmalloc(sizeof *work, GFP_ATOMIC);
	if (!work)
		return -ENOMEM;

	cm_id_priv = container_of(cm_id, struct cm_id_private, id);
	spin_lock_irqsave(&cm_id_priv->lock, flags);
	switch (cm_id->state)
	{
	case IB_CM_REP_SENT:
	case IB_CM_MRA_REP_RCVD:
		cm_id->state = IB_CM_ESTABLISHED;
		break;
	case IB_CM_ESTABLISHED:
		ret = -EISCONN;
		break;
	default:
D
Daniel Jurgens 已提交
3717 3718
		pr_debug("%s: local_id %d, cm_id->state: %d\n", __func__,
			 be32_to_cpu(cm_id->local_id), cm_id->state);
3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734
		ret = -EINVAL;
		break;
	}
	spin_unlock_irqrestore(&cm_id_priv->lock, flags);

	if (ret) {
		kfree(work);
		goto out;
	}

	/*
	 * The CM worker thread may try to destroy the cm_id before it
	 * can execute this work item.  To prevent potential deadlock,
	 * we need to find the cm_id once we're in the context of the
	 * worker thread, rather than holding a reference on it.
	 */
D
David Howells 已提交
3735
	INIT_DELAYED_WORK(&work->work, cm_work_handler);
3736 3737 3738 3739
	work->local_id = cm_id->local_id;
	work->remote_id = cm_id->remote_id;
	work->mad_recv_wc = NULL;
	work->cm_event.event = IB_CM_USER_ESTABLISHED;
3740 3741

	/* Check if the device started its remove_one */
3742
	spin_lock_irqsave(&cm.lock, flags);
3743 3744 3745 3746 3747 3748
	if (!cm_dev->going_down) {
		queue_delayed_work(cm.wq, &work->work, 0);
	} else {
		kfree(work);
		ret = -ENODEV;
	}
3749
	spin_unlock_irqrestore(&cm.lock, flags);
3750

3751 3752 3753
out:
	return ret;
}
3754 3755 3756 3757

static int cm_migrate(struct ib_cm_id *cm_id)
{
	struct cm_id_private *cm_id_priv;
3758
	struct cm_av tmp_av;
3759
	unsigned long flags;
3760
	int tmp_send_port_not_ready;
3761 3762 3763 3764 3765 3766 3767 3768
	int ret = 0;

	cm_id_priv = container_of(cm_id, struct cm_id_private, id);
	spin_lock_irqsave(&cm_id_priv->lock, flags);
	if (cm_id->state == IB_CM_ESTABLISHED &&
	    (cm_id->lap_state == IB_CM_LAP_UNINIT ||
	     cm_id->lap_state == IB_CM_LAP_IDLE)) {
		cm_id->lap_state = IB_CM_LAP_IDLE;
3769 3770
		/* Swap address vector */
		tmp_av = cm_id_priv->av;
3771
		cm_id_priv->av = cm_id_priv->alt_av;
3772 3773 3774 3775 3776
		cm_id_priv->alt_av = tmp_av;
		/* Swap port send ready state */
		tmp_send_port_not_ready = cm_id_priv->prim_send_port_not_ready;
		cm_id_priv->prim_send_port_not_ready = cm_id_priv->altr_send_port_not_ready;
		cm_id_priv->altr_send_port_not_ready = tmp_send_port_not_ready;
3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800
	} else
		ret = -EINVAL;
	spin_unlock_irqrestore(&cm_id_priv->lock, flags);

	return ret;
}

int ib_cm_notify(struct ib_cm_id *cm_id, enum ib_event_type event)
{
	int ret;

	switch (event) {
	case IB_EVENT_COMM_EST:
		ret = cm_establish(cm_id);
		break;
	case IB_EVENT_PATH_MIG:
		ret = cm_migrate(cm_id);
		break;
	default:
		ret = -EINVAL;
	}
	return ret;
}
EXPORT_SYMBOL(ib_cm_notify);
3801 3802

static void cm_recv_handler(struct ib_mad_agent *mad_agent,
3803
			    struct ib_mad_send_buf *send_buf,
3804 3805
			    struct ib_mad_recv_wc *mad_recv_wc)
{
3806
	struct cm_port *port = mad_agent->context;
3807 3808
	struct cm_work *work;
	enum ib_cm_event_type event;
3809
	bool alt_path = false;
3810
	u16 attr_id;
3811
	int paths = 0;
3812
	int going_down = 0;
3813 3814 3815

	switch (mad_recv_wc->recv_buf.mad->mad_hdr.attr_id) {
	case CM_REQ_ATTR_ID:
3816 3817 3818
		alt_path = cm_req_has_alt_path((struct cm_req_msg *)
						mad_recv_wc->recv_buf.mad);
		paths = 1 + (alt_path != 0);
3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856
		event = IB_CM_REQ_RECEIVED;
		break;
	case CM_MRA_ATTR_ID:
		event = IB_CM_MRA_RECEIVED;
		break;
	case CM_REJ_ATTR_ID:
		event = IB_CM_REJ_RECEIVED;
		break;
	case CM_REP_ATTR_ID:
		event = IB_CM_REP_RECEIVED;
		break;
	case CM_RTU_ATTR_ID:
		event = IB_CM_RTU_RECEIVED;
		break;
	case CM_DREQ_ATTR_ID:
		event = IB_CM_DREQ_RECEIVED;
		break;
	case CM_DREP_ATTR_ID:
		event = IB_CM_DREP_RECEIVED;
		break;
	case CM_SIDR_REQ_ATTR_ID:
		event = IB_CM_SIDR_REQ_RECEIVED;
		break;
	case CM_SIDR_REP_ATTR_ID:
		event = IB_CM_SIDR_REP_RECEIVED;
		break;
	case CM_LAP_ATTR_ID:
		paths = 1;
		event = IB_CM_LAP_RECEIVED;
		break;
	case CM_APR_ATTR_ID:
		event = IB_CM_APR_RECEIVED;
		break;
	default:
		ib_free_recv_mad(mad_recv_wc);
		return;
	}

3857 3858 3859 3860
	attr_id = be16_to_cpu(mad_recv_wc->recv_buf.mad->mad_hdr.attr_id);
	atomic_long_inc(&port->counter_group[CM_RECV].
			counter[attr_id - CM_ATTR_ID_OFFSET]);

3861
	work = kmalloc(struct_size(work, path, paths), GFP_KERNEL);
3862 3863 3864 3865 3866
	if (!work) {
		ib_free_recv_mad(mad_recv_wc);
		return;
	}

D
David Howells 已提交
3867
	INIT_DELAYED_WORK(&work->work, cm_work_handler);
3868 3869
	work->cm_event.event = event;
	work->mad_recv_wc = mad_recv_wc;
3870
	work->port = port;
3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883

	/* Check if the device started its remove_one */
	spin_lock_irq(&cm.lock);
	if (!port->cm_dev->going_down)
		queue_delayed_work(cm.wq, &work->work, 0);
	else
		going_down = 1;
	spin_unlock_irq(&cm.lock);

	if (going_down) {
		kfree(work);
		ib_free_recv_mad(mad_recv_wc);
	}
3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905
}

static int cm_init_qp_init_attr(struct cm_id_private *cm_id_priv,
				struct ib_qp_attr *qp_attr,
				int *qp_attr_mask)
{
	unsigned long flags;
	int ret;

	spin_lock_irqsave(&cm_id_priv->lock, flags);
	switch (cm_id_priv->id.state) {
	case IB_CM_REQ_SENT:
	case IB_CM_MRA_REQ_RCVD:
	case IB_CM_REQ_RCVD:
	case IB_CM_MRA_REQ_SENT:
	case IB_CM_REP_RCVD:
	case IB_CM_MRA_REP_SENT:
	case IB_CM_REP_SENT:
	case IB_CM_MRA_REP_RCVD:
	case IB_CM_ESTABLISHED:
		*qp_attr_mask = IB_QP_STATE | IB_QP_ACCESS_FLAGS |
				IB_QP_PKEY_INDEX | IB_QP_PORT;
3906
		qp_attr->qp_access_flags = IB_ACCESS_REMOTE_WRITE;
3907
		if (cm_id_priv->responder_resources)
3908 3909
			qp_attr->qp_access_flags |= IB_ACCESS_REMOTE_READ |
						    IB_ACCESS_REMOTE_ATOMIC;
3910 3911 3912 3913 3914
		qp_attr->pkey_index = cm_id_priv->av.pkey_index;
		qp_attr->port_num = cm_id_priv->av.port->port_num;
		ret = 0;
		break;
	default:
D
Daniel Jurgens 已提交
3915 3916 3917
		pr_debug("%s: local_id %d, cm_id_priv->id.state: %d\n",
			 __func__, be32_to_cpu(cm_id_priv->id.local_id),
			 cm_id_priv->id.state);
3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941
		ret = -EINVAL;
		break;
	}
	spin_unlock_irqrestore(&cm_id_priv->lock, flags);
	return ret;
}

static int cm_init_qp_rtr_attr(struct cm_id_private *cm_id_priv,
			       struct ib_qp_attr *qp_attr,
			       int *qp_attr_mask)
{
	unsigned long flags;
	int ret;

	spin_lock_irqsave(&cm_id_priv->lock, flags);
	switch (cm_id_priv->id.state) {
	case IB_CM_REQ_RCVD:
	case IB_CM_MRA_REQ_SENT:
	case IB_CM_REP_RCVD:
	case IB_CM_MRA_REP_SENT:
	case IB_CM_REP_SENT:
	case IB_CM_MRA_REP_RCVD:
	case IB_CM_ESTABLISHED:
		*qp_attr_mask = IB_QP_STATE | IB_QP_AV | IB_QP_PATH_MTU |
3942
				IB_QP_DEST_QPN | IB_QP_RQ_PSN;
3943 3944 3945 3946
		qp_attr->ah_attr = cm_id_priv->av.ah_attr;
		qp_attr->path_mtu = cm_id_priv->path_mtu;
		qp_attr->dest_qp_num = be32_to_cpu(cm_id_priv->remote_qpn);
		qp_attr->rq_psn = be32_to_cpu(cm_id_priv->rq_psn);
S
Sean Hefty 已提交
3947 3948
		if (cm_id_priv->qp_type == IB_QPT_RC ||
		    cm_id_priv->qp_type == IB_QPT_XRC_TGT) {
3949 3950 3951 3952 3953 3954
			*qp_attr_mask |= IB_QP_MAX_DEST_RD_ATOMIC |
					 IB_QP_MIN_RNR_TIMER;
			qp_attr->max_dest_rd_atomic =
					cm_id_priv->responder_resources;
			qp_attr->min_rnr_timer = 0;
		}
3955
		if (rdma_ah_get_dlid(&cm_id_priv->alt_av.ah_attr)) {
3956
			*qp_attr_mask |= IB_QP_ALT_PATH;
3957
			qp_attr->alt_port_num = cm_id_priv->alt_av.port->port_num;
3958
			qp_attr->alt_pkey_index = cm_id_priv->alt_av.pkey_index;
3959
			qp_attr->alt_timeout = cm_id_priv->alt_av.timeout;
3960 3961 3962 3963 3964
			qp_attr->alt_ah_attr = cm_id_priv->alt_av.ah_attr;
		}
		ret = 0;
		break;
	default:
D
Daniel Jurgens 已提交
3965 3966 3967
		pr_debug("%s: local_id %d, cm_id_priv->id.state: %d\n",
			 __func__, be32_to_cpu(cm_id_priv->id.local_id),
			 cm_id_priv->id.state);
3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983
		ret = -EINVAL;
		break;
	}
	spin_unlock_irqrestore(&cm_id_priv->lock, flags);
	return ret;
}

static int cm_init_qp_rts_attr(struct cm_id_private *cm_id_priv,
			       struct ib_qp_attr *qp_attr,
			       int *qp_attr_mask)
{
	unsigned long flags;
	int ret;

	spin_lock_irqsave(&cm_id_priv->lock, flags);
	switch (cm_id_priv->id.state) {
3984 3985 3986 3987
	/* Allow transition to RTS before sending REP */
	case IB_CM_REQ_RCVD:
	case IB_CM_MRA_REQ_SENT:

3988 3989 3990 3991 3992
	case IB_CM_REP_RCVD:
	case IB_CM_MRA_REP_SENT:
	case IB_CM_REP_SENT:
	case IB_CM_MRA_REP_RCVD:
	case IB_CM_ESTABLISHED:
3993 3994 3995
		if (cm_id_priv->id.lap_state == IB_CM_LAP_UNINIT) {
			*qp_attr_mask = IB_QP_STATE | IB_QP_SQ_PSN;
			qp_attr->sq_psn = be32_to_cpu(cm_id_priv->sq_psn);
S
Sean Hefty 已提交
3996 3997 3998 3999
			switch (cm_id_priv->qp_type) {
			case IB_QPT_RC:
			case IB_QPT_XRC_INI:
				*qp_attr_mask |= IB_QP_RETRY_CNT | IB_QP_RNR_RETRY |
4000 4001 4002
						 IB_QP_MAX_QP_RD_ATOMIC;
				qp_attr->retry_cnt = cm_id_priv->retry_count;
				qp_attr->rnr_retry = cm_id_priv->rnr_retry_count;
S
Sean Hefty 已提交
4003 4004 4005 4006 4007 4008 4009 4010
				qp_attr->max_rd_atomic = cm_id_priv->initiator_depth;
				/* fall through */
			case IB_QPT_XRC_TGT:
				*qp_attr_mask |= IB_QP_TIMEOUT;
				qp_attr->timeout = cm_id_priv->av.timeout;
				break;
			default:
				break;
4011
			}
4012
			if (rdma_ah_get_dlid(&cm_id_priv->alt_av.ah_attr)) {
4013 4014 4015 4016 4017 4018 4019
				*qp_attr_mask |= IB_QP_PATH_MIG_STATE;
				qp_attr->path_mig_state = IB_MIG_REARM;
			}
		} else {
			*qp_attr_mask = IB_QP_ALT_PATH | IB_QP_PATH_MIG_STATE;
			qp_attr->alt_port_num = cm_id_priv->alt_av.port->port_num;
			qp_attr->alt_pkey_index = cm_id_priv->alt_av.pkey_index;
4020
			qp_attr->alt_timeout = cm_id_priv->alt_av.timeout;
4021
			qp_attr->alt_ah_attr = cm_id_priv->alt_av.ah_attr;
4022 4023 4024 4025 4026
			qp_attr->path_mig_state = IB_MIG_REARM;
		}
		ret = 0;
		break;
	default:
D
Daniel Jurgens 已提交
4027 4028 4029
		pr_debug("%s: local_id %d, cm_id_priv->id.state: %d\n",
			 __func__, be32_to_cpu(cm_id_priv->id.local_id),
			 cm_id_priv->id.state);
4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062
		ret = -EINVAL;
		break;
	}
	spin_unlock_irqrestore(&cm_id_priv->lock, flags);
	return ret;
}

int ib_cm_init_qp_attr(struct ib_cm_id *cm_id,
		       struct ib_qp_attr *qp_attr,
		       int *qp_attr_mask)
{
	struct cm_id_private *cm_id_priv;
	int ret;

	cm_id_priv = container_of(cm_id, struct cm_id_private, id);
	switch (qp_attr->qp_state) {
	case IB_QPS_INIT:
		ret = cm_init_qp_init_attr(cm_id_priv, qp_attr, qp_attr_mask);
		break;
	case IB_QPS_RTR:
		ret = cm_init_qp_rtr_attr(cm_id_priv, qp_attr, qp_attr_mask);
		break;
	case IB_QPS_RTS:
		ret = cm_init_qp_rts_attr(cm_id_priv, qp_attr, qp_attr_mask);
		break;
	default:
		ret = -EINVAL;
		break;
	}
	return ret;
}
EXPORT_SYMBOL(ib_cm_init_qp_attr);

4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075
static ssize_t cm_show_counter(struct kobject *obj, struct attribute *attr,
			       char *buf)
{
	struct cm_counter_group *group;
	struct cm_counter_attribute *cm_attr;

	group = container_of(obj, struct cm_counter_group, obj);
	cm_attr = container_of(attr, struct cm_counter_attribute, attr);

	return sprintf(buf, "%ld\n",
		       atomic_long_read(&group->counter[cm_attr->index]));
}

4076
static const struct sysfs_ops cm_counter_ops = {
4077 4078 4079 4080 4081 4082 4083 4084
	.show = cm_show_counter
};

static struct kobj_type cm_counter_obj_type = {
	.sysfs_ops = &cm_counter_ops,
	.default_attrs = cm_counter_default_attrs
};

4085
static char *cm_devnode(struct device *dev, umode_t *mode)
4086
{
4087 4088
	if (mode)
		*mode = 0666;
4089 4090 4091
	return kasprintf(GFP_KERNEL, "infiniband/%s", dev_name(dev));
}

4092
struct class cm_class = {
4093
	.owner   = THIS_MODULE,
4094
	.name    = "infiniband_cm",
4095
	.devnode = cm_devnode,
4096 4097 4098 4099 4100 4101 4102 4103
};
EXPORT_SYMBOL(cm_class);

static int cm_create_port_fs(struct cm_port *port)
{
	int i, ret;

	for (i = 0; i < CM_COUNTER_GROUPS; i++) {
4104 4105 4106 4107 4108
		ret = ib_port_register_module_stat(port->cm_dev->ib_device,
						   port->port_num,
						   &port->counter_group[i].obj,
						   &cm_counter_obj_type,
						   counter_group_names[i]);
4109 4110 4111 4112 4113 4114 4115 4116
		if (ret)
			goto error;
	}

	return 0;

error:
	while (i--)
4117
		ib_port_unregister_module_stat(&port->counter_group[i].obj);
4118 4119 4120 4121 4122 4123 4124 4125 4126
	return ret;

}

static void cm_remove_port_fs(struct cm_port *port)
{
	int i;

	for (i = 0; i < CM_COUNTER_GROUPS; i++)
4127
		ib_port_unregister_module_stat(&port->counter_group[i].obj);
4128 4129 4130

}

4131
static void cm_add_one(struct ib_device *ib_device)
4132 4133 4134 4135 4136
{
	struct cm_device *cm_dev;
	struct cm_port *port;
	struct ib_mad_reg_req reg_req = {
		.mgmt_class = IB_MGMT_CLASS_CM,
4137
		.mgmt_class_version = IB_CM_CLASS_VERSION,
4138 4139 4140 4141 4142 4143
	};
	struct ib_port_modify port_modify = {
		.set_port_cap_mask = IB_PORT_CM_SUP
	};
	unsigned long flags;
	int ret;
M
Michael Wang 已提交
4144
	int count = 0;
4145 4146
	u8 i;

4147 4148
	cm_dev = kzalloc(struct_size(cm_dev, port, ib_device->phys_port_cnt),
			 GFP_KERNEL);
4149 4150 4151
	if (!cm_dev)
		return;

4152
	cm_dev->ib_device = ib_device;
4153
	cm_dev->ack_delay = ib_device->attrs.local_ca_ack_delay;
4154
	cm_dev->going_down = 0;
4155

4156
	set_bit(IB_MGMT_METHOD_SEND, reg_req.method_mask);
4157
	for (i = 1; i <= ib_device->phys_port_cnt; i++) {
4158
		if (!rdma_cap_ib_cm(ib_device, i))
M
Michael Wang 已提交
4159 4160
			continue;

4161 4162 4163 4164 4165
		port = kzalloc(sizeof *port, GFP_KERNEL);
		if (!port)
			goto error1;

		cm_dev->port[i-1] = port;
4166 4167
		port->cm_dev = cm_dev;
		port->port_num = i;
4168

4169 4170 4171
		INIT_LIST_HEAD(&port->cm_priv_prim_list);
		INIT_LIST_HEAD(&port->cm_priv_altr_list);

4172 4173 4174 4175
		ret = cm_create_port_fs(port);
		if (ret)
			goto error1;

4176
		port->mad_agent = ib_register_mad_agent(ib_device, i,
4177 4178 4179 4180 4181
							IB_QPT_GSI,
							&reg_req,
							0,
							cm_send_handler,
							cm_recv_handler,
4182 4183
							port,
							0);
4184
		if (IS_ERR(port->mad_agent))
4185
			goto error2;
4186

4187
		ret = ib_modify_port(ib_device, i, 0, &port_modify);
4188
		if (ret)
4189
			goto error3;
M
Michael Wang 已提交
4190 4191

		count++;
4192
	}
M
Michael Wang 已提交
4193 4194 4195 4196

	if (!count)
		goto free;

4197
	ib_set_client_data(ib_device, &cm_client, cm_dev);
4198 4199 4200 4201 4202 4203

	write_lock_irqsave(&cm.device_lock, flags);
	list_add_tail(&cm_dev->list, &cm.device_list);
	write_unlock_irqrestore(&cm.device_lock, flags);
	return;

4204
error3:
4205
	ib_unregister_mad_agent(port->mad_agent);
4206 4207
error2:
	cm_remove_port_fs(port);
4208
error1:
4209 4210
	port_modify.set_port_cap_mask = 0;
	port_modify.clr_port_cap_mask = IB_PORT_CM_SUP;
4211
	kfree(port);
4212
	while (--i) {
4213
		if (!rdma_cap_ib_cm(ib_device, i))
M
Michael Wang 已提交
4214 4215
			continue;

4216
		port = cm_dev->port[i-1];
4217
		ib_modify_port(ib_device, port->port_num, 0, &port_modify);
4218
		ib_unregister_mad_agent(port->mad_agent);
4219
		cm_remove_port_fs(port);
4220
		kfree(port);
4221
	}
M
Michael Wang 已提交
4222
free:
4223
	kfree(cm_dev);
4224 4225
}

4226
static void cm_remove_one(struct ib_device *ib_device, void *client_data)
4227
{
4228
	struct cm_device *cm_dev = client_data;
4229
	struct cm_port *port;
4230 4231
	struct cm_id_private *cm_id_priv;
	struct ib_mad_agent *cur_mad_agent;
4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244
	struct ib_port_modify port_modify = {
		.clr_port_cap_mask = IB_PORT_CM_SUP
	};
	unsigned long flags;
	int i;

	if (!cm_dev)
		return;

	write_lock_irqsave(&cm.device_lock, flags);
	list_del(&cm_dev->list);
	write_unlock_irqrestore(&cm.device_lock, flags);

4245 4246 4247 4248
	spin_lock_irq(&cm.lock);
	cm_dev->going_down = 1;
	spin_unlock_irq(&cm.lock);

4249
	for (i = 1; i <= ib_device->phys_port_cnt; i++) {
4250
		if (!rdma_cap_ib_cm(ib_device, i))
M
Michael Wang 已提交
4251 4252
			continue;

4253
		port = cm_dev->port[i-1];
4254
		ib_modify_port(ib_device, port->port_num, 0, &port_modify);
4255 4256 4257 4258 4259 4260 4261
		/* Mark all the cm_id's as not valid */
		spin_lock_irq(&cm.lock);
		list_for_each_entry(cm_id_priv, &port->cm_priv_altr_list, altr_list)
			cm_id_priv->altr_send_port_not_ready = 1;
		list_for_each_entry(cm_id_priv, &port->cm_priv_prim_list, prim_list)
			cm_id_priv->prim_send_port_not_ready = 1;
		spin_unlock_irq(&cm.lock);
4262 4263 4264 4265 4266
		/*
		 * We flush the queue here after the going_down set, this
		 * verify that no new works will be queued in the recv handler,
		 * after that we can call the unregister_mad_agent
		 */
4267
		flush_workqueue(cm.wq);
4268 4269 4270 4271 4272
		spin_lock_irq(&cm.state_lock);
		cur_mad_agent = port->mad_agent;
		port->mad_agent = NULL;
		spin_unlock_irq(&cm.state_lock);
		ib_unregister_mad_agent(cur_mad_agent);
4273
		cm_remove_port_fs(port);
4274
		kfree(port);
4275
	}
4276

4277
	kfree(cm_dev);
4278 4279
}

4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356
/*
 * Check at compile time that the byte offset and length of field old_name in
 * the struct matches the byte offset and length in the new macro.
 */
#define _IBA_CHECK_OFF(old_name, field_struct, field_offset, mask, bits) \
	static_assert(offsetof(field_struct, old_name) == (field_offset));     \
	static_assert(bits == sizeof(((field_struct *)0)->old_name) * 8)
#define IBA_CHECK_OFF(field, old_name) _IBA_CHECK_OFF(old_name, field)

IBA_CHECK_OFF(CM_REQ_LOCAL_COMM_ID, local_comm_id);
IBA_CHECK_OFF(CM_REQ_SERVICE_ID, service_id);
IBA_CHECK_OFF(CM_REQ_LOCAL_CA_GUID, local_ca_guid);
IBA_CHECK_OFF(CM_REQ_LOCAL_Q_KEY, local_qkey);
IBA_CHECK_OFF(CM_REQ_PARTITION_KEY, pkey);
IBA_CHECK_OFF(CM_REQ_PRIMARY_LOCAL_PORT_LID, primary_local_lid);
IBA_CHECK_OFF(CM_REQ_PRIMARY_REMOTE_PORT_LID, primary_remote_lid);
IBA_CHECK_OFF(CM_REQ_PRIMARY_LOCAL_PORT_GID, primary_local_gid);
IBA_CHECK_OFF(CM_REQ_PRIMARY_REMOTE_PORT_GID, primary_remote_gid);
IBA_CHECK_OFF(CM_REQ_PRIMARY_TRAFFIC_CLASS, primary_traffic_class);
IBA_CHECK_OFF(CM_REQ_PRIMARY_HOP_LIMIT, primary_hop_limit);
IBA_CHECK_OFF(CM_REQ_ALTERNATE_LOCAL_PORT_LID, alt_local_lid);
IBA_CHECK_OFF(CM_REQ_ALTERNATE_REMOTE_PORT_LID, alt_remote_lid);
IBA_CHECK_OFF(CM_REQ_ALTERNATE_LOCAL_PORT_GID, alt_local_gid);
IBA_CHECK_OFF(CM_REQ_ALTERNATE_REMOTE_PORT_GID, alt_remote_gid);
IBA_CHECK_OFF(CM_REQ_ALTERNATE_TRAFFIC_CLASS, alt_traffic_class);
IBA_CHECK_OFF(CM_REQ_ALTERNATE_HOP_LIMIT, alt_hop_limit);
IBA_CHECK_OFF(CM_REQ_PRIVATE_DATA, private_data);
IBA_CHECK_OFF(CM_MRA_LOCAL_COMM_ID, local_comm_id);
IBA_CHECK_OFF(CM_MRA_REMOTE_COMM_ID, remote_comm_id);
IBA_CHECK_OFF(CM_MRA_PRIVATE_DATA, private_data);
IBA_CHECK_OFF(CM_REJ_LOCAL_COMM_ID, local_comm_id);
IBA_CHECK_OFF(CM_REJ_REMOTE_COMM_ID, remote_comm_id);
IBA_CHECK_OFF(CM_REJ_REASON, reason);
IBA_CHECK_OFF(CM_REJ_ARI, ari);
IBA_CHECK_OFF(CM_REJ_PRIVATE_DATA, private_data);
IBA_CHECK_OFF(CM_REP_LOCAL_COMM_ID, local_comm_id);
IBA_CHECK_OFF(CM_REP_REMOTE_COMM_ID, remote_comm_id);
IBA_CHECK_OFF(CM_REP_LOCAL_Q_KEY, local_qkey);
IBA_CHECK_OFF(CM_REP_RESPONDER_RESOURCES, resp_resources);
IBA_CHECK_OFF(CM_REP_INITIATOR_DEPTH, initiator_depth);
IBA_CHECK_OFF(CM_REP_LOCAL_CA_GUID, local_ca_guid);
IBA_CHECK_OFF(CM_REP_PRIVATE_DATA, private_data);
IBA_CHECK_OFF(CM_RTU_LOCAL_COMM_ID, local_comm_id);
IBA_CHECK_OFF(CM_RTU_REMOTE_COMM_ID, remote_comm_id);
IBA_CHECK_OFF(CM_RTU_PRIVATE_DATA, private_data);
IBA_CHECK_OFF(CM_DREQ_LOCAL_COMM_ID, local_comm_id);
IBA_CHECK_OFF(CM_DREQ_REMOTE_COMM_ID, remote_comm_id);
IBA_CHECK_OFF(CM_DREQ_PRIVATE_DATA, private_data);
IBA_CHECK_OFF(CM_DREP_LOCAL_COMM_ID, local_comm_id);
IBA_CHECK_OFF(CM_DREP_REMOTE_COMM_ID, remote_comm_id);
IBA_CHECK_OFF(CM_DREP_PRIVATE_DATA, private_data);
IBA_CHECK_OFF(CM_LAP_LOCAL_COMM_ID, local_comm_id);
IBA_CHECK_OFF(CM_LAP_REMOTE_COMM_ID, remote_comm_id);
IBA_CHECK_OFF(CM_LAP_ALTERNATE_LOCAL_PORT_LID, alt_local_lid);
IBA_CHECK_OFF(CM_LAP_ALTERNATE_REMOTE_PORT_LID, alt_remote_lid);
IBA_CHECK_OFF(CM_LAP_ALTERNATE_LOCAL_PORT_GID, alt_local_gid);
IBA_CHECK_OFF(CM_LAP_ALTERNATE_REMOTE_PORT_GID, alt_remote_gid);
IBA_CHECK_OFF(CM_LAP_ALTERNATE_HOP_LIMIT, alt_hop_limit);
IBA_CHECK_OFF(CM_LAP_PRIVATE_DATA, private_data);
IBA_CHECK_OFF(CM_APR_LOCAL_COMM_ID, local_comm_id);
IBA_CHECK_OFF(CM_APR_REMOTE_COMM_ID, remote_comm_id);
IBA_CHECK_OFF(CM_APR_ADDITIONAL_INFORMATION_LENGTH, info_length);
IBA_CHECK_OFF(CM_APR_AR_STATUS, ap_status);
IBA_CHECK_OFF(CM_APR_ADDITIONAL_INFORMATION, info);
IBA_CHECK_OFF(CM_APR_PRIVATE_DATA, private_data);
IBA_CHECK_OFF(CM_SIDR_REQ_REQUESTID, request_id);
IBA_CHECK_OFF(CM_SIDR_REQ_PARTITION_KEY, pkey);
IBA_CHECK_OFF(CM_SIDR_REQ_SERVICEID, service_id);
IBA_CHECK_OFF(CM_SIDR_REQ_PRIVATE_DATA, private_data);
IBA_CHECK_OFF(CM_SIDR_REP_REQUESTID, request_id);
IBA_CHECK_OFF(CM_SIDR_REP_STATUS, status);
IBA_CHECK_OFF(CM_SIDR_REP_ADDITIONAL_INFORMATION_LENGTH, info_length);
IBA_CHECK_OFF(CM_SIDR_REP_SERVICEID, service_id);
IBA_CHECK_OFF(CM_SIDR_REP_Q_KEY, qkey);
IBA_CHECK_OFF(CM_SIDR_REP_ADDITIONAL_INFORMATION, info);
IBA_CHECK_OFF(CM_SIDR_REP_PRIVATE_DATA, private_data);

4357 4358 4359 4360 4361 4362 4363
static int __init ib_cm_init(void)
{
	int ret;

	INIT_LIST_HEAD(&cm.device_list);
	rwlock_init(&cm.device_lock);
	spin_lock_init(&cm.lock);
4364
	spin_lock_init(&cm.state_lock);
4365
	cm.listen_service_table = RB_ROOT;
4366
	cm.listen_service_id = be64_to_cpu(IB_CM_ASSIGN_SERVICE_ID);
4367 4368 4369
	cm.remote_id_table = RB_ROOT;
	cm.remote_qp_table = RB_ROOT;
	cm.remote_sidr_table = RB_ROOT;
4370
	xa_init_flags(&cm.local_id_table, XA_FLAGS_ALLOC | XA_FLAGS_LOCK_IRQ);
S
Sean Hefty 已提交
4371
	get_random_bytes(&cm.random_id_operand, sizeof cm.random_id_operand);
4372
	INIT_LIST_HEAD(&cm.timewait_list);
4373

4374
	ret = class_register(&cm_class);
4375 4376 4377 4378
	if (ret) {
		ret = -ENOMEM;
		goto error1;
	}
4379

4380
	cm.wq = alloc_workqueue("ib_cm", 0, 1);
4381 4382
	if (!cm.wq) {
		ret = -ENOMEM;
4383
		goto error2;
4384 4385
	}

4386 4387
	ret = ib_register_client(&cm_client);
	if (ret)
4388
		goto error3;
4389 4390

	return 0;
4391
error3:
4392
	destroy_workqueue(cm.wq);
4393
error2:
4394
	class_unregister(&cm_class);
4395
error1:
4396 4397 4398 4399 4400
	return ret;
}

static void __exit ib_cm_cleanup(void)
{
4401 4402 4403 4404 4405 4406 4407
	struct cm_timewait_info *timewait_info, *tmp;

	spin_lock_irq(&cm.lock);
	list_for_each_entry(timewait_info, &cm.timewait_list, list)
		cancel_delayed_work(&timewait_info->work.work);
	spin_unlock_irq(&cm.lock);

4408
	ib_unregister_client(&cm_client);
4409
	destroy_workqueue(cm.wq);
4410 4411 4412 4413 4414 4415

	list_for_each_entry_safe(timewait_info, tmp, &cm.timewait_list, list) {
		list_del(&timewait_info->list);
		kfree(timewait_info);
	}

4416
	class_unregister(&cm_class);
4417
	WARN_ON(!xa_empty(&cm.local_id_table));
4418 4419 4420 4421
}

module_init(ib_cm_init);
module_exit(ib_cm_cleanup);