2 * Copyright (c) 2004-2007 Intel Corporation. All rights reserved.
3 * Copyright (c) 2004 Topspin Corporation. All rights reserved.
4 * Copyright (c) 2004, 2005 Voltaire Corporation. All rights reserved.
5 * Copyright (c) 2005 Sun Microsystems, Inc. All rights reserved.
7 * This software is available to you under a choice of one of two
8 * licenses. You may choose to be licensed under the terms of the GNU
9 * General Public License (GPL) Version 2, available from the file
10 * COPYING in the main directory of this source tree, or the
11 * OpenIB.org BSD license below:
13 * Redistribution and use in source and binary forms, with or
14 * without modification, are permitted provided that the following
17 * - Redistributions of source code must retain the above
18 * copyright notice, this list of conditions and the following
21 * - Redistributions in binary form must reproduce the above
22 * copyright notice, this list of conditions and the following
23 * disclaimer in the documentation and/or other materials
24 * provided with the distribution.
26 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
27 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
28 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
29 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
30 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
31 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
32 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
36 #include <linux/completion.h>
37 #include <linux/dma-mapping.h>
38 #include <linux/device.h>
39 #include <linux/err.h>
40 #include <linux/idr.h>
41 #include <linux/interrupt.h>
42 #include <linux/random.h>
43 #include <linux/rbtree.h>
44 #include <linux/spinlock.h>
45 #include <linux/sysfs.h>
46 #include <linux/workqueue.h>
48 #include <rdma/ib_cache.h>
49 #include <rdma/ib_cm.h>
52 MODULE_AUTHOR("Sean Hefty");
53 MODULE_DESCRIPTION("InfiniBand CM");
54 MODULE_LICENSE("Dual BSD/GPL");
56 static void cm_add_one(struct ib_device *device);
57 static void cm_remove_one(struct ib_device *device);
59 static struct ib_client cm_client = {
62 .remove = cm_remove_one
67 struct list_head device_list;
69 struct rb_root listen_service_table;
70 u64 listen_service_id;
71 /* struct rb_root peer_service_table; todo: fix peer to peer */
72 struct rb_root remote_qp_table;
73 struct rb_root remote_id_table;
74 struct rb_root remote_sidr_table;
75 struct idr local_id_table;
76 __be32 random_id_operand;
77 struct list_head timewait_list;
78 struct workqueue_struct *wq;
81 /* Counter indexes ordered by attribute ID */
95 CM_ATTR_ID_OFFSET = 0x0010,
106 static char const counter_group_names[CM_COUNTER_GROUPS]
107 [sizeof("cm_rx_duplicates")] = {
108 "cm_tx_msgs", "cm_tx_retries",
109 "cm_rx_msgs", "cm_rx_duplicates"
112 struct cm_counter_group {
114 atomic_long_t counter[CM_ATTR_COUNT];
117 struct cm_counter_attribute {
118 struct attribute attr;
122 #define CM_COUNTER_ATTR(_name, _index) \
123 struct cm_counter_attribute cm_##_name##_counter_attr = { \
124 .attr = { .name = __stringify(_name), .mode = 0444, .owner = THIS_MODULE }, \
128 static CM_COUNTER_ATTR(req, CM_REQ_COUNTER);
129 static CM_COUNTER_ATTR(mra, CM_MRA_COUNTER);
130 static CM_COUNTER_ATTR(rej, CM_REJ_COUNTER);
131 static CM_COUNTER_ATTR(rep, CM_REP_COUNTER);
132 static CM_COUNTER_ATTR(rtu, CM_RTU_COUNTER);
133 static CM_COUNTER_ATTR(dreq, CM_DREQ_COUNTER);
134 static CM_COUNTER_ATTR(drep, CM_DREP_COUNTER);
135 static CM_COUNTER_ATTR(sidr_req, CM_SIDR_REQ_COUNTER);
136 static CM_COUNTER_ATTR(sidr_rep, CM_SIDR_REP_COUNTER);
137 static CM_COUNTER_ATTR(lap, CM_LAP_COUNTER);
138 static CM_COUNTER_ATTR(apr, CM_APR_COUNTER);
140 static struct attribute *cm_counter_default_attrs[] = {
141 &cm_req_counter_attr.attr,
142 &cm_mra_counter_attr.attr,
143 &cm_rej_counter_attr.attr,
144 &cm_rep_counter_attr.attr,
145 &cm_rtu_counter_attr.attr,
146 &cm_dreq_counter_attr.attr,
147 &cm_drep_counter_attr.attr,
148 &cm_sidr_req_counter_attr.attr,
149 &cm_sidr_rep_counter_attr.attr,
150 &cm_lap_counter_attr.attr,
151 &cm_apr_counter_attr.attr,
156 struct cm_device *cm_dev;
157 struct ib_mad_agent *mad_agent;
158 struct kobject port_obj;
160 struct cm_counter_group counter_group[CM_COUNTER_GROUPS];
164 struct list_head list;
165 struct ib_device *device;
166 struct kobject dev_obj;
168 struct cm_port *port[0];
172 struct cm_port *port;
174 struct ib_ah_attr ah_attr;
180 struct delayed_work work;
181 struct list_head list;
182 struct cm_port *port;
183 struct ib_mad_recv_wc *mad_recv_wc; /* Received MADs */
184 __be32 local_id; /* Established / timewait */
186 struct ib_cm_event cm_event;
187 struct ib_sa_path_rec path[0];
190 struct cm_timewait_info {
191 struct cm_work work; /* Must be first. */
192 struct list_head list;
193 struct rb_node remote_qp_node;
194 struct rb_node remote_id_node;
195 __be64 remote_ca_guid;
197 u8 inserted_remote_qp;
198 u8 inserted_remote_id;
201 struct cm_id_private {
204 struct rb_node service_node;
205 struct rb_node sidr_id_node;
206 spinlock_t lock; /* Do not acquire inside cm.lock */
207 struct completion comp;
210 struct ib_mad_send_buf *msg;
211 struct cm_timewait_info *timewait_info;
212 /* todo: use alternate port on send failure */
215 struct ib_cm_compare_data *compare_data;
221 enum ib_qp_type qp_type;
225 enum ib_mtu path_mtu;
230 u8 responder_resources;
237 struct list_head work_list;
241 static void cm_work_handler(struct work_struct *work);
243 static inline void cm_deref_id(struct cm_id_private *cm_id_priv)
245 if (atomic_dec_and_test(&cm_id_priv->refcount))
246 complete(&cm_id_priv->comp);
249 static int cm_alloc_msg(struct cm_id_private *cm_id_priv,
250 struct ib_mad_send_buf **msg)
252 struct ib_mad_agent *mad_agent;
253 struct ib_mad_send_buf *m;
256 mad_agent = cm_id_priv->av.port->mad_agent;
257 ah = ib_create_ah(mad_agent->qp->pd, &cm_id_priv->av.ah_attr);
261 m = ib_create_send_mad(mad_agent, cm_id_priv->id.remote_cm_qpn,
262 cm_id_priv->av.pkey_index,
263 0, IB_MGMT_MAD_HDR, IB_MGMT_MAD_DATA,
270 /* Timeout set by caller if response is expected. */
272 m->retries = cm_id_priv->max_cm_retries;
274 atomic_inc(&cm_id_priv->refcount);
275 m->context[0] = cm_id_priv;
280 static int cm_alloc_response_msg(struct cm_port *port,
281 struct ib_mad_recv_wc *mad_recv_wc,
282 struct ib_mad_send_buf **msg)
284 struct ib_mad_send_buf *m;
287 ah = ib_create_ah_from_wc(port->mad_agent->qp->pd, mad_recv_wc->wc,
288 mad_recv_wc->recv_buf.grh, port->port_num);
292 m = ib_create_send_mad(port->mad_agent, 1, mad_recv_wc->wc->pkey_index,
293 0, IB_MGMT_MAD_HDR, IB_MGMT_MAD_DATA,
304 static void cm_free_msg(struct ib_mad_send_buf *msg)
306 ib_destroy_ah(msg->ah);
308 cm_deref_id(msg->context[0]);
309 ib_free_send_mad(msg);
312 static void * cm_copy_private_data(const void *private_data,
317 if (!private_data || !private_data_len)
320 data = kmemdup(private_data, private_data_len, GFP_KERNEL);
322 return ERR_PTR(-ENOMEM);
327 static void cm_set_private_data(struct cm_id_private *cm_id_priv,
328 void *private_data, u8 private_data_len)
330 if (cm_id_priv->private_data && cm_id_priv->private_data_len)
331 kfree(cm_id_priv->private_data);
333 cm_id_priv->private_data = private_data;
334 cm_id_priv->private_data_len = private_data_len;
337 static void cm_init_av_for_response(struct cm_port *port, struct ib_wc *wc,
338 struct ib_grh *grh, struct cm_av *av)
341 av->pkey_index = wc->pkey_index;
342 ib_init_ah_from_wc(port->cm_dev->device, port->port_num, wc,
346 static int cm_init_av_by_path(struct ib_sa_path_rec *path, struct cm_av *av)
348 struct cm_device *cm_dev;
349 struct cm_port *port = NULL;
354 read_lock_irqsave(&cm.device_lock, flags);
355 list_for_each_entry(cm_dev, &cm.device_list, list) {
356 if (!ib_find_cached_gid(cm_dev->device, &path->sgid,
358 port = cm_dev->port[p-1];
362 read_unlock_irqrestore(&cm.device_lock, flags);
367 ret = ib_find_cached_pkey(cm_dev->device, port->port_num,
368 be16_to_cpu(path->pkey), &av->pkey_index);
373 ib_init_ah_from_path(cm_dev->device, port->port_num, path,
375 av->timeout = path->packet_life_time + 1;
379 static int cm_alloc_id(struct cm_id_private *cm_id_priv)
386 spin_lock_irqsave(&cm.lock, flags);
387 ret = idr_get_new_above(&cm.local_id_table, cm_id_priv,
390 next_id = ((unsigned) id + 1) & MAX_ID_MASK;
391 spin_unlock_irqrestore(&cm.lock, flags);
392 } while( (ret == -EAGAIN) && idr_pre_get(&cm.local_id_table, GFP_KERNEL) );
394 cm_id_priv->id.local_id = (__force __be32)id ^ cm.random_id_operand;
398 static void cm_free_id(__be32 local_id)
400 spin_lock_irq(&cm.lock);
401 idr_remove(&cm.local_id_table,
402 (__force int) (local_id ^ cm.random_id_operand));
403 spin_unlock_irq(&cm.lock);
406 static struct cm_id_private * cm_get_id(__be32 local_id, __be32 remote_id)
408 struct cm_id_private *cm_id_priv;
410 cm_id_priv = idr_find(&cm.local_id_table,
411 (__force int) (local_id ^ cm.random_id_operand));
413 if (cm_id_priv->id.remote_id == remote_id)
414 atomic_inc(&cm_id_priv->refcount);
422 static struct cm_id_private * cm_acquire_id(__be32 local_id, __be32 remote_id)
424 struct cm_id_private *cm_id_priv;
426 spin_lock_irq(&cm.lock);
427 cm_id_priv = cm_get_id(local_id, remote_id);
428 spin_unlock_irq(&cm.lock);
433 static void cm_mask_copy(u8 *dst, u8 *src, u8 *mask)
437 for (i = 0; i < IB_CM_COMPARE_SIZE / sizeof(unsigned long); i++)
438 ((unsigned long *) dst)[i] = ((unsigned long *) src)[i] &
439 ((unsigned long *) mask)[i];
442 static int cm_compare_data(struct ib_cm_compare_data *src_data,
443 struct ib_cm_compare_data *dst_data)
445 u8 src[IB_CM_COMPARE_SIZE];
446 u8 dst[IB_CM_COMPARE_SIZE];
448 if (!src_data || !dst_data)
451 cm_mask_copy(src, src_data->data, dst_data->mask);
452 cm_mask_copy(dst, dst_data->data, src_data->mask);
453 return memcmp(src, dst, IB_CM_COMPARE_SIZE);
456 static int cm_compare_private_data(u8 *private_data,
457 struct ib_cm_compare_data *dst_data)
459 u8 src[IB_CM_COMPARE_SIZE];
464 cm_mask_copy(src, private_data, dst_data->mask);
465 return memcmp(src, dst_data->data, IB_CM_COMPARE_SIZE);
469 * Trivial helpers to strip endian annotation and compare; the
470 * endianness doesn't actually matter since we just need a stable
471 * order for the RB tree.
473 static int be32_lt(__be32 a, __be32 b)
475 return (__force u32) a < (__force u32) b;
478 static int be32_gt(__be32 a, __be32 b)
480 return (__force u32) a > (__force u32) b;
483 static int be64_lt(__be64 a, __be64 b)
485 return (__force u64) a < (__force u64) b;
488 static int be64_gt(__be64 a, __be64 b)
490 return (__force u64) a > (__force u64) b;
493 static struct cm_id_private * cm_insert_listen(struct cm_id_private *cm_id_priv)
495 struct rb_node **link = &cm.listen_service_table.rb_node;
496 struct rb_node *parent = NULL;
497 struct cm_id_private *cur_cm_id_priv;
498 __be64 service_id = cm_id_priv->id.service_id;
499 __be64 service_mask = cm_id_priv->id.service_mask;
504 cur_cm_id_priv = rb_entry(parent, struct cm_id_private,
506 data_cmp = cm_compare_data(cm_id_priv->compare_data,
507 cur_cm_id_priv->compare_data);
508 if ((cur_cm_id_priv->id.service_mask & service_id) ==
509 (service_mask & cur_cm_id_priv->id.service_id) &&
510 (cm_id_priv->id.device == cur_cm_id_priv->id.device) &&
512 return cur_cm_id_priv;
514 if (cm_id_priv->id.device < cur_cm_id_priv->id.device)
515 link = &(*link)->rb_left;
516 else if (cm_id_priv->id.device > cur_cm_id_priv->id.device)
517 link = &(*link)->rb_right;
518 else if (be64_lt(service_id, cur_cm_id_priv->id.service_id))
519 link = &(*link)->rb_left;
520 else if (be64_gt(service_id, cur_cm_id_priv->id.service_id))
521 link = &(*link)->rb_right;
522 else if (data_cmp < 0)
523 link = &(*link)->rb_left;
525 link = &(*link)->rb_right;
527 rb_link_node(&cm_id_priv->service_node, parent, link);
528 rb_insert_color(&cm_id_priv->service_node, &cm.listen_service_table);
532 static struct cm_id_private * cm_find_listen(struct ib_device *device,
536 struct rb_node *node = cm.listen_service_table.rb_node;
537 struct cm_id_private *cm_id_priv;
541 cm_id_priv = rb_entry(node, struct cm_id_private, service_node);
542 data_cmp = cm_compare_private_data(private_data,
543 cm_id_priv->compare_data);
544 if ((cm_id_priv->id.service_mask & service_id) ==
545 cm_id_priv->id.service_id &&
546 (cm_id_priv->id.device == device) && !data_cmp)
549 if (device < cm_id_priv->id.device)
550 node = node->rb_left;
551 else if (device > cm_id_priv->id.device)
552 node = node->rb_right;
553 else if (be64_lt(service_id, cm_id_priv->id.service_id))
554 node = node->rb_left;
555 else if (be64_gt(service_id, cm_id_priv->id.service_id))
556 node = node->rb_right;
557 else if (data_cmp < 0)
558 node = node->rb_left;
560 node = node->rb_right;
565 static struct cm_timewait_info * cm_insert_remote_id(struct cm_timewait_info
568 struct rb_node **link = &cm.remote_id_table.rb_node;
569 struct rb_node *parent = NULL;
570 struct cm_timewait_info *cur_timewait_info;
571 __be64 remote_ca_guid = timewait_info->remote_ca_guid;
572 __be32 remote_id = timewait_info->work.remote_id;
576 cur_timewait_info = rb_entry(parent, struct cm_timewait_info,
578 if (be32_lt(remote_id, cur_timewait_info->work.remote_id))
579 link = &(*link)->rb_left;
580 else if (be32_gt(remote_id, cur_timewait_info->work.remote_id))
581 link = &(*link)->rb_right;
582 else if (be64_lt(remote_ca_guid, cur_timewait_info->remote_ca_guid))
583 link = &(*link)->rb_left;
584 else if (be64_gt(remote_ca_guid, cur_timewait_info->remote_ca_guid))
585 link = &(*link)->rb_right;
587 return cur_timewait_info;
589 timewait_info->inserted_remote_id = 1;
590 rb_link_node(&timewait_info->remote_id_node, parent, link);
591 rb_insert_color(&timewait_info->remote_id_node, &cm.remote_id_table);
595 static struct cm_timewait_info * cm_find_remote_id(__be64 remote_ca_guid,
598 struct rb_node *node = cm.remote_id_table.rb_node;
599 struct cm_timewait_info *timewait_info;
602 timewait_info = rb_entry(node, struct cm_timewait_info,
604 if (be32_lt(remote_id, timewait_info->work.remote_id))
605 node = node->rb_left;
606 else if (be32_gt(remote_id, timewait_info->work.remote_id))
607 node = node->rb_right;
608 else if (be64_lt(remote_ca_guid, timewait_info->remote_ca_guid))
609 node = node->rb_left;
610 else if (be64_gt(remote_ca_guid, timewait_info->remote_ca_guid))
611 node = node->rb_right;
613 return timewait_info;
618 static struct cm_timewait_info * cm_insert_remote_qpn(struct cm_timewait_info
621 struct rb_node **link = &cm.remote_qp_table.rb_node;
622 struct rb_node *parent = NULL;
623 struct cm_timewait_info *cur_timewait_info;
624 __be64 remote_ca_guid = timewait_info->remote_ca_guid;
625 __be32 remote_qpn = timewait_info->remote_qpn;
629 cur_timewait_info = rb_entry(parent, struct cm_timewait_info,
631 if (be32_lt(remote_qpn, cur_timewait_info->remote_qpn))
632 link = &(*link)->rb_left;
633 else if (be32_gt(remote_qpn, cur_timewait_info->remote_qpn))
634 link = &(*link)->rb_right;
635 else if (be64_lt(remote_ca_guid, cur_timewait_info->remote_ca_guid))
636 link = &(*link)->rb_left;
637 else if (be64_gt(remote_ca_guid, cur_timewait_info->remote_ca_guid))
638 link = &(*link)->rb_right;
640 return cur_timewait_info;
642 timewait_info->inserted_remote_qp = 1;
643 rb_link_node(&timewait_info->remote_qp_node, parent, link);
644 rb_insert_color(&timewait_info->remote_qp_node, &cm.remote_qp_table);
648 static struct cm_id_private * cm_insert_remote_sidr(struct cm_id_private
651 struct rb_node **link = &cm.remote_sidr_table.rb_node;
652 struct rb_node *parent = NULL;
653 struct cm_id_private *cur_cm_id_priv;
654 union ib_gid *port_gid = &cm_id_priv->av.dgid;
655 __be32 remote_id = cm_id_priv->id.remote_id;
659 cur_cm_id_priv = rb_entry(parent, struct cm_id_private,
661 if (be32_lt(remote_id, cur_cm_id_priv->id.remote_id))
662 link = &(*link)->rb_left;
663 else if (be32_gt(remote_id, cur_cm_id_priv->id.remote_id))
664 link = &(*link)->rb_right;
667 cmp = memcmp(port_gid, &cur_cm_id_priv->av.dgid,
670 link = &(*link)->rb_left;
672 link = &(*link)->rb_right;
674 return cur_cm_id_priv;
677 rb_link_node(&cm_id_priv->sidr_id_node, parent, link);
678 rb_insert_color(&cm_id_priv->sidr_id_node, &cm.remote_sidr_table);
682 static void cm_reject_sidr_req(struct cm_id_private *cm_id_priv,
683 enum ib_cm_sidr_status status)
685 struct ib_cm_sidr_rep_param param;
687 memset(¶m, 0, sizeof param);
688 param.status = status;
689 ib_send_cm_sidr_rep(&cm_id_priv->id, ¶m);
692 struct ib_cm_id *ib_create_cm_id(struct ib_device *device,
693 ib_cm_handler cm_handler,
696 struct cm_id_private *cm_id_priv;
699 cm_id_priv = kzalloc(sizeof *cm_id_priv, GFP_KERNEL);
701 return ERR_PTR(-ENOMEM);
703 cm_id_priv->id.state = IB_CM_IDLE;
704 cm_id_priv->id.device = device;
705 cm_id_priv->id.cm_handler = cm_handler;
706 cm_id_priv->id.context = context;
707 cm_id_priv->id.remote_cm_qpn = 1;
708 ret = cm_alloc_id(cm_id_priv);
712 spin_lock_init(&cm_id_priv->lock);
713 init_completion(&cm_id_priv->comp);
714 INIT_LIST_HEAD(&cm_id_priv->work_list);
715 atomic_set(&cm_id_priv->work_count, -1);
716 atomic_set(&cm_id_priv->refcount, 1);
717 return &cm_id_priv->id;
721 return ERR_PTR(-ENOMEM);
723 EXPORT_SYMBOL(ib_create_cm_id);
725 static struct cm_work * cm_dequeue_work(struct cm_id_private *cm_id_priv)
727 struct cm_work *work;
729 if (list_empty(&cm_id_priv->work_list))
732 work = list_entry(cm_id_priv->work_list.next, struct cm_work, list);
733 list_del(&work->list);
737 static void cm_free_work(struct cm_work *work)
739 if (work->mad_recv_wc)
740 ib_free_recv_mad(work->mad_recv_wc);
744 static inline int cm_convert_to_ms(int iba_time)
746 /* approximate conversion to ms from 4.096us x 2^iba_time */
747 return 1 << max(iba_time - 8, 0);
751 * calculate: 4.096x2^ack_timeout = 4.096x2^ack_delay + 2x4.096x2^life_time
752 * Because of how ack_timeout is stored, adding one doubles the timeout.
753 * To avoid large timeouts, select the max(ack_delay, life_time + 1), and
754 * increment it (round up) only if the other is within 50%.
756 static u8 cm_ack_timeout(u8 ca_ack_delay, u8 packet_life_time)
758 int ack_timeout = packet_life_time + 1;
760 if (ack_timeout >= ca_ack_delay)
761 ack_timeout += (ca_ack_delay >= (ack_timeout - 1));
763 ack_timeout = ca_ack_delay +
764 (ack_timeout >= (ca_ack_delay - 1));
766 return min(31, ack_timeout);
769 static void cm_cleanup_timewait(struct cm_timewait_info *timewait_info)
771 if (timewait_info->inserted_remote_id) {
772 rb_erase(&timewait_info->remote_id_node, &cm.remote_id_table);
773 timewait_info->inserted_remote_id = 0;
776 if (timewait_info->inserted_remote_qp) {
777 rb_erase(&timewait_info->remote_qp_node, &cm.remote_qp_table);
778 timewait_info->inserted_remote_qp = 0;
782 static struct cm_timewait_info * cm_create_timewait_info(__be32 local_id)
784 struct cm_timewait_info *timewait_info;
786 timewait_info = kzalloc(sizeof *timewait_info, GFP_KERNEL);
788 return ERR_PTR(-ENOMEM);
790 timewait_info->work.local_id = local_id;
791 INIT_DELAYED_WORK(&timewait_info->work.work, cm_work_handler);
792 timewait_info->work.cm_event.event = IB_CM_TIMEWAIT_EXIT;
793 return timewait_info;
796 static void cm_enter_timewait(struct cm_id_private *cm_id_priv)
801 spin_lock_irqsave(&cm.lock, flags);
802 cm_cleanup_timewait(cm_id_priv->timewait_info);
803 list_add_tail(&cm_id_priv->timewait_info->list, &cm.timewait_list);
804 spin_unlock_irqrestore(&cm.lock, flags);
807 * The cm_id could be destroyed by the user before we exit timewait.
808 * To protect against this, we search for the cm_id after exiting
809 * timewait before notifying the user that we've exited timewait.
811 cm_id_priv->id.state = IB_CM_TIMEWAIT;
812 wait_time = cm_convert_to_ms(cm_id_priv->av.timeout);
813 queue_delayed_work(cm.wq, &cm_id_priv->timewait_info->work.work,
814 msecs_to_jiffies(wait_time));
815 cm_id_priv->timewait_info = NULL;
818 static void cm_reset_to_idle(struct cm_id_private *cm_id_priv)
822 cm_id_priv->id.state = IB_CM_IDLE;
823 if (cm_id_priv->timewait_info) {
824 spin_lock_irqsave(&cm.lock, flags);
825 cm_cleanup_timewait(cm_id_priv->timewait_info);
826 spin_unlock_irqrestore(&cm.lock, flags);
827 kfree(cm_id_priv->timewait_info);
828 cm_id_priv->timewait_info = NULL;
832 static void cm_destroy_id(struct ib_cm_id *cm_id, int err)
834 struct cm_id_private *cm_id_priv;
835 struct cm_work *work;
837 cm_id_priv = container_of(cm_id, struct cm_id_private, id);
839 spin_lock_irq(&cm_id_priv->lock);
840 switch (cm_id->state) {
842 cm_id->state = IB_CM_IDLE;
843 spin_unlock_irq(&cm_id_priv->lock);
844 spin_lock_irq(&cm.lock);
845 rb_erase(&cm_id_priv->service_node, &cm.listen_service_table);
846 spin_unlock_irq(&cm.lock);
848 case IB_CM_SIDR_REQ_SENT:
849 cm_id->state = IB_CM_IDLE;
850 ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
851 spin_unlock_irq(&cm_id_priv->lock);
853 case IB_CM_SIDR_REQ_RCVD:
854 spin_unlock_irq(&cm_id_priv->lock);
855 cm_reject_sidr_req(cm_id_priv, IB_SIDR_REJECT);
858 ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
859 spin_unlock_irq(&cm_id_priv->lock);
860 ib_send_cm_rej(cm_id, IB_CM_REJ_TIMEOUT,
861 &cm_id_priv->id.device->node_guid,
862 sizeof cm_id_priv->id.device->node_guid,
866 if (err == -ENOMEM) {
867 /* Do not reject to allow future retries. */
868 cm_reset_to_idle(cm_id_priv);
869 spin_unlock_irq(&cm_id_priv->lock);
871 spin_unlock_irq(&cm_id_priv->lock);
872 ib_send_cm_rej(cm_id, IB_CM_REJ_CONSUMER_DEFINED,
876 case IB_CM_MRA_REQ_RCVD:
878 case IB_CM_MRA_REP_RCVD:
879 ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
881 case IB_CM_MRA_REQ_SENT:
883 case IB_CM_MRA_REP_SENT:
884 spin_unlock_irq(&cm_id_priv->lock);
885 ib_send_cm_rej(cm_id, IB_CM_REJ_CONSUMER_DEFINED,
888 case IB_CM_ESTABLISHED:
889 spin_unlock_irq(&cm_id_priv->lock);
890 ib_send_cm_dreq(cm_id, NULL, 0);
892 case IB_CM_DREQ_SENT:
893 ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
894 cm_enter_timewait(cm_id_priv);
895 spin_unlock_irq(&cm_id_priv->lock);
897 case IB_CM_DREQ_RCVD:
898 spin_unlock_irq(&cm_id_priv->lock);
899 ib_send_cm_drep(cm_id, NULL, 0);
902 spin_unlock_irq(&cm_id_priv->lock);
906 cm_free_id(cm_id->local_id);
907 cm_deref_id(cm_id_priv);
908 wait_for_completion(&cm_id_priv->comp);
909 while ((work = cm_dequeue_work(cm_id_priv)) != NULL)
911 kfree(cm_id_priv->compare_data);
912 kfree(cm_id_priv->private_data);
916 void ib_destroy_cm_id(struct ib_cm_id *cm_id)
918 cm_destroy_id(cm_id, 0);
920 EXPORT_SYMBOL(ib_destroy_cm_id);
922 int ib_cm_listen(struct ib_cm_id *cm_id, __be64 service_id, __be64 service_mask,
923 struct ib_cm_compare_data *compare_data)
925 struct cm_id_private *cm_id_priv, *cur_cm_id_priv;
929 service_mask = service_mask ? service_mask :
930 __constant_cpu_to_be64(~0ULL);
931 service_id &= service_mask;
932 if ((service_id & IB_SERVICE_ID_AGN_MASK) == IB_CM_ASSIGN_SERVICE_ID &&
933 (service_id != IB_CM_ASSIGN_SERVICE_ID))
936 cm_id_priv = container_of(cm_id, struct cm_id_private, id);
937 if (cm_id->state != IB_CM_IDLE)
941 cm_id_priv->compare_data = kzalloc(sizeof *compare_data,
943 if (!cm_id_priv->compare_data)
945 cm_mask_copy(cm_id_priv->compare_data->data,
946 compare_data->data, compare_data->mask);
947 memcpy(cm_id_priv->compare_data->mask, compare_data->mask,
951 cm_id->state = IB_CM_LISTEN;
953 spin_lock_irqsave(&cm.lock, flags);
954 if (service_id == IB_CM_ASSIGN_SERVICE_ID) {
955 cm_id->service_id = cpu_to_be64(cm.listen_service_id++);
956 cm_id->service_mask = __constant_cpu_to_be64(~0ULL);
958 cm_id->service_id = service_id;
959 cm_id->service_mask = service_mask;
961 cur_cm_id_priv = cm_insert_listen(cm_id_priv);
962 spin_unlock_irqrestore(&cm.lock, flags);
964 if (cur_cm_id_priv) {
965 cm_id->state = IB_CM_IDLE;
966 kfree(cm_id_priv->compare_data);
967 cm_id_priv->compare_data = NULL;
972 EXPORT_SYMBOL(ib_cm_listen);
974 static __be64 cm_form_tid(struct cm_id_private *cm_id_priv,
975 enum cm_msg_sequence msg_seq)
979 hi_tid = ((u64) cm_id_priv->av.port->mad_agent->hi_tid) << 32;
980 low_tid = (u64) ((__force u32)cm_id_priv->id.local_id |
982 return cpu_to_be64(hi_tid | low_tid);
985 static void cm_format_mad_hdr(struct ib_mad_hdr *hdr,
986 __be16 attr_id, __be64 tid)
988 hdr->base_version = IB_MGMT_BASE_VERSION;
989 hdr->mgmt_class = IB_MGMT_CLASS_CM;
990 hdr->class_version = IB_CM_CLASS_VERSION;
991 hdr->method = IB_MGMT_METHOD_SEND;
992 hdr->attr_id = attr_id;
996 static void cm_format_req(struct cm_req_msg *req_msg,
997 struct cm_id_private *cm_id_priv,
998 struct ib_cm_req_param *param)
1000 struct ib_sa_path_rec *pri_path = param->primary_path;
1001 struct ib_sa_path_rec *alt_path = param->alternate_path;
1003 cm_format_mad_hdr(&req_msg->hdr, CM_REQ_ATTR_ID,
1004 cm_form_tid(cm_id_priv, CM_MSG_SEQUENCE_REQ));
1006 req_msg->local_comm_id = cm_id_priv->id.local_id;
1007 req_msg->service_id = param->service_id;
1008 req_msg->local_ca_guid = cm_id_priv->id.device->node_guid;
1009 cm_req_set_local_qpn(req_msg, cpu_to_be32(param->qp_num));
1010 cm_req_set_resp_res(req_msg, param->responder_resources);
1011 cm_req_set_init_depth(req_msg, param->initiator_depth);
1012 cm_req_set_remote_resp_timeout(req_msg,
1013 param->remote_cm_response_timeout);
1014 cm_req_set_qp_type(req_msg, param->qp_type);
1015 cm_req_set_flow_ctrl(req_msg, param->flow_control);
1016 cm_req_set_starting_psn(req_msg, cpu_to_be32(param->starting_psn));
1017 cm_req_set_local_resp_timeout(req_msg,
1018 param->local_cm_response_timeout);
1019 cm_req_set_retry_count(req_msg, param->retry_count);
1020 req_msg->pkey = param->primary_path->pkey;
1021 cm_req_set_path_mtu(req_msg, param->primary_path->mtu);
1022 cm_req_set_rnr_retry_count(req_msg, param->rnr_retry_count);
1023 cm_req_set_max_cm_retries(req_msg, param->max_cm_retries);
1024 cm_req_set_srq(req_msg, param->srq);
1026 if (pri_path->hop_limit <= 1) {
1027 req_msg->primary_local_lid = pri_path->slid;
1028 req_msg->primary_remote_lid = pri_path->dlid;
1030 /* Work-around until there's a way to obtain remote LID info */
1031 req_msg->primary_local_lid = IB_LID_PERMISSIVE;
1032 req_msg->primary_remote_lid = IB_LID_PERMISSIVE;
1034 req_msg->primary_local_gid = pri_path->sgid;
1035 req_msg->primary_remote_gid = pri_path->dgid;
1036 cm_req_set_primary_flow_label(req_msg, pri_path->flow_label);
1037 cm_req_set_primary_packet_rate(req_msg, pri_path->rate);
1038 req_msg->primary_traffic_class = pri_path->traffic_class;
1039 req_msg->primary_hop_limit = pri_path->hop_limit;
1040 cm_req_set_primary_sl(req_msg, pri_path->sl);
1041 cm_req_set_primary_subnet_local(req_msg, (pri_path->hop_limit <= 1));
1042 cm_req_set_primary_local_ack_timeout(req_msg,
1043 cm_ack_timeout(cm_id_priv->av.port->cm_dev->ack_delay,
1044 pri_path->packet_life_time));
1047 if (alt_path->hop_limit <= 1) {
1048 req_msg->alt_local_lid = alt_path->slid;
1049 req_msg->alt_remote_lid = alt_path->dlid;
1051 req_msg->alt_local_lid = IB_LID_PERMISSIVE;
1052 req_msg->alt_remote_lid = IB_LID_PERMISSIVE;
1054 req_msg->alt_local_gid = alt_path->sgid;
1055 req_msg->alt_remote_gid = alt_path->dgid;
1056 cm_req_set_alt_flow_label(req_msg,
1057 alt_path->flow_label);
1058 cm_req_set_alt_packet_rate(req_msg, alt_path->rate);
1059 req_msg->alt_traffic_class = alt_path->traffic_class;
1060 req_msg->alt_hop_limit = alt_path->hop_limit;
1061 cm_req_set_alt_sl(req_msg, alt_path->sl);
1062 cm_req_set_alt_subnet_local(req_msg, (alt_path->hop_limit <= 1));
1063 cm_req_set_alt_local_ack_timeout(req_msg,
1064 cm_ack_timeout(cm_id_priv->av.port->cm_dev->ack_delay,
1065 alt_path->packet_life_time));
1068 if (param->private_data && param->private_data_len)
1069 memcpy(req_msg->private_data, param->private_data,
1070 param->private_data_len);
1073 static int cm_validate_req_param(struct ib_cm_req_param *param)
1075 /* peer-to-peer not supported */
1076 if (param->peer_to_peer)
1079 if (!param->primary_path)
1082 if (param->qp_type != IB_QPT_RC && param->qp_type != IB_QPT_UC)
1085 if (param->private_data &&
1086 param->private_data_len > IB_CM_REQ_PRIVATE_DATA_SIZE)
1089 if (param->alternate_path &&
1090 (param->alternate_path->pkey != param->primary_path->pkey ||
1091 param->alternate_path->mtu != param->primary_path->mtu))
1097 int ib_send_cm_req(struct ib_cm_id *cm_id,
1098 struct ib_cm_req_param *param)
1100 struct cm_id_private *cm_id_priv;
1101 struct cm_req_msg *req_msg;
1102 unsigned long flags;
1105 ret = cm_validate_req_param(param);
1109 /* Verify that we're not in timewait. */
1110 cm_id_priv = container_of(cm_id, struct cm_id_private, id);
1111 spin_lock_irqsave(&cm_id_priv->lock, flags);
1112 if (cm_id->state != IB_CM_IDLE) {
1113 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
1117 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
1119 cm_id_priv->timewait_info = cm_create_timewait_info(cm_id_priv->
1121 if (IS_ERR(cm_id_priv->timewait_info)) {
1122 ret = PTR_ERR(cm_id_priv->timewait_info);
1126 ret = cm_init_av_by_path(param->primary_path, &cm_id_priv->av);
1129 if (param->alternate_path) {
1130 ret = cm_init_av_by_path(param->alternate_path,
1131 &cm_id_priv->alt_av);
1135 cm_id->service_id = param->service_id;
1136 cm_id->service_mask = __constant_cpu_to_be64(~0ULL);
1137 cm_id_priv->timeout_ms = cm_convert_to_ms(
1138 param->primary_path->packet_life_time) * 2 +
1140 param->remote_cm_response_timeout);
1141 cm_id_priv->max_cm_retries = param->max_cm_retries;
1142 cm_id_priv->initiator_depth = param->initiator_depth;
1143 cm_id_priv->responder_resources = param->responder_resources;
1144 cm_id_priv->retry_count = param->retry_count;
1145 cm_id_priv->path_mtu = param->primary_path->mtu;
1146 cm_id_priv->pkey = param->primary_path->pkey;
1147 cm_id_priv->qp_type = param->qp_type;
1149 ret = cm_alloc_msg(cm_id_priv, &cm_id_priv->msg);
1153 req_msg = (struct cm_req_msg *) cm_id_priv->msg->mad;
1154 cm_format_req(req_msg, cm_id_priv, param);
1155 cm_id_priv->tid = req_msg->hdr.tid;
1156 cm_id_priv->msg->timeout_ms = cm_id_priv->timeout_ms;
1157 cm_id_priv->msg->context[1] = (void *) (unsigned long) IB_CM_REQ_SENT;
1159 cm_id_priv->local_qpn = cm_req_get_local_qpn(req_msg);
1160 cm_id_priv->rq_psn = cm_req_get_starting_psn(req_msg);
1162 spin_lock_irqsave(&cm_id_priv->lock, flags);
1163 ret = ib_post_send_mad(cm_id_priv->msg, NULL);
1165 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
1168 BUG_ON(cm_id->state != IB_CM_IDLE);
1169 cm_id->state = IB_CM_REQ_SENT;
1170 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
1173 error2: cm_free_msg(cm_id_priv->msg);
1174 error1: kfree(cm_id_priv->timewait_info);
1177 EXPORT_SYMBOL(ib_send_cm_req);
1179 static int cm_issue_rej(struct cm_port *port,
1180 struct ib_mad_recv_wc *mad_recv_wc,
1181 enum ib_cm_rej_reason reason,
1182 enum cm_msg_response msg_rejected,
1183 void *ari, u8 ari_length)
1185 struct ib_mad_send_buf *msg = NULL;
1186 struct cm_rej_msg *rej_msg, *rcv_msg;
1189 ret = cm_alloc_response_msg(port, mad_recv_wc, &msg);
1193 /* We just need common CM header information. Cast to any message. */
1194 rcv_msg = (struct cm_rej_msg *) mad_recv_wc->recv_buf.mad;
1195 rej_msg = (struct cm_rej_msg *) msg->mad;
1197 cm_format_mad_hdr(&rej_msg->hdr, CM_REJ_ATTR_ID, rcv_msg->hdr.tid);
1198 rej_msg->remote_comm_id = rcv_msg->local_comm_id;
1199 rej_msg->local_comm_id = rcv_msg->remote_comm_id;
1200 cm_rej_set_msg_rejected(rej_msg, msg_rejected);
1201 rej_msg->reason = cpu_to_be16(reason);
1203 if (ari && ari_length) {
1204 cm_rej_set_reject_info_len(rej_msg, ari_length);
1205 memcpy(rej_msg->ari, ari, ari_length);
1208 ret = ib_post_send_mad(msg, NULL);
1215 static inline int cm_is_active_peer(__be64 local_ca_guid, __be64 remote_ca_guid,
1216 __be32 local_qpn, __be32 remote_qpn)
1218 return (be64_to_cpu(local_ca_guid) > be64_to_cpu(remote_ca_guid) ||
1219 ((local_ca_guid == remote_ca_guid) &&
1220 (be32_to_cpu(local_qpn) > be32_to_cpu(remote_qpn))));
1223 static void cm_format_paths_from_req(struct cm_req_msg *req_msg,
1224 struct ib_sa_path_rec *primary_path,
1225 struct ib_sa_path_rec *alt_path)
1227 memset(primary_path, 0, sizeof *primary_path);
1228 primary_path->dgid = req_msg->primary_local_gid;
1229 primary_path->sgid = req_msg->primary_remote_gid;
1230 primary_path->dlid = req_msg->primary_local_lid;
1231 primary_path->slid = req_msg->primary_remote_lid;
1232 primary_path->flow_label = cm_req_get_primary_flow_label(req_msg);
1233 primary_path->hop_limit = req_msg->primary_hop_limit;
1234 primary_path->traffic_class = req_msg->primary_traffic_class;
1235 primary_path->reversible = 1;
1236 primary_path->pkey = req_msg->pkey;
1237 primary_path->sl = cm_req_get_primary_sl(req_msg);
1238 primary_path->mtu_selector = IB_SA_EQ;
1239 primary_path->mtu = cm_req_get_path_mtu(req_msg);
1240 primary_path->rate_selector = IB_SA_EQ;
1241 primary_path->rate = cm_req_get_primary_packet_rate(req_msg);
1242 primary_path->packet_life_time_selector = IB_SA_EQ;
1243 primary_path->packet_life_time =
1244 cm_req_get_primary_local_ack_timeout(req_msg);
1245 primary_path->packet_life_time -= (primary_path->packet_life_time > 0);
1247 if (req_msg->alt_local_lid) {
1248 memset(alt_path, 0, sizeof *alt_path);
1249 alt_path->dgid = req_msg->alt_local_gid;
1250 alt_path->sgid = req_msg->alt_remote_gid;
1251 alt_path->dlid = req_msg->alt_local_lid;
1252 alt_path->slid = req_msg->alt_remote_lid;
1253 alt_path->flow_label = cm_req_get_alt_flow_label(req_msg);
1254 alt_path->hop_limit = req_msg->alt_hop_limit;
1255 alt_path->traffic_class = req_msg->alt_traffic_class;
1256 alt_path->reversible = 1;
1257 alt_path->pkey = req_msg->pkey;
1258 alt_path->sl = cm_req_get_alt_sl(req_msg);
1259 alt_path->mtu_selector = IB_SA_EQ;
1260 alt_path->mtu = cm_req_get_path_mtu(req_msg);
1261 alt_path->rate_selector = IB_SA_EQ;
1262 alt_path->rate = cm_req_get_alt_packet_rate(req_msg);
1263 alt_path->packet_life_time_selector = IB_SA_EQ;
1264 alt_path->packet_life_time =
1265 cm_req_get_alt_local_ack_timeout(req_msg);
1266 alt_path->packet_life_time -= (alt_path->packet_life_time > 0);
1270 static void cm_format_req_event(struct cm_work *work,
1271 struct cm_id_private *cm_id_priv,
1272 struct ib_cm_id *listen_id)
1274 struct cm_req_msg *req_msg;
1275 struct ib_cm_req_event_param *param;
1277 req_msg = (struct cm_req_msg *)work->mad_recv_wc->recv_buf.mad;
1278 param = &work->cm_event.param.req_rcvd;
1279 param->listen_id = listen_id;
1280 param->port = cm_id_priv->av.port->port_num;
1281 param->primary_path = &work->path[0];
1282 if (req_msg->alt_local_lid)
1283 param->alternate_path = &work->path[1];
1285 param->alternate_path = NULL;
1286 param->remote_ca_guid = req_msg->local_ca_guid;
1287 param->remote_qkey = be32_to_cpu(req_msg->local_qkey);
1288 param->remote_qpn = be32_to_cpu(cm_req_get_local_qpn(req_msg));
1289 param->qp_type = cm_req_get_qp_type(req_msg);
1290 param->starting_psn = be32_to_cpu(cm_req_get_starting_psn(req_msg));
1291 param->responder_resources = cm_req_get_init_depth(req_msg);
1292 param->initiator_depth = cm_req_get_resp_res(req_msg);
1293 param->local_cm_response_timeout =
1294 cm_req_get_remote_resp_timeout(req_msg);
1295 param->flow_control = cm_req_get_flow_ctrl(req_msg);
1296 param->remote_cm_response_timeout =
1297 cm_req_get_local_resp_timeout(req_msg);
1298 param->retry_count = cm_req_get_retry_count(req_msg);
1299 param->rnr_retry_count = cm_req_get_rnr_retry_count(req_msg);
1300 param->srq = cm_req_get_srq(req_msg);
1301 work->cm_event.private_data = &req_msg->private_data;
1304 static void cm_process_work(struct cm_id_private *cm_id_priv,
1305 struct cm_work *work)
1309 /* We will typically only have the current event to report. */
1310 ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &work->cm_event);
1313 while (!ret && !atomic_add_negative(-1, &cm_id_priv->work_count)) {
1314 spin_lock_irq(&cm_id_priv->lock);
1315 work = cm_dequeue_work(cm_id_priv);
1316 spin_unlock_irq(&cm_id_priv->lock);
1318 ret = cm_id_priv->id.cm_handler(&cm_id_priv->id,
1322 cm_deref_id(cm_id_priv);
1324 cm_destroy_id(&cm_id_priv->id, ret);
1327 static void cm_format_mra(struct cm_mra_msg *mra_msg,
1328 struct cm_id_private *cm_id_priv,
1329 enum cm_msg_response msg_mraed, u8 service_timeout,
1330 const void *private_data, u8 private_data_len)
1332 cm_format_mad_hdr(&mra_msg->hdr, CM_MRA_ATTR_ID, cm_id_priv->tid);
1333 cm_mra_set_msg_mraed(mra_msg, msg_mraed);
1334 mra_msg->local_comm_id = cm_id_priv->id.local_id;
1335 mra_msg->remote_comm_id = cm_id_priv->id.remote_id;
1336 cm_mra_set_service_timeout(mra_msg, service_timeout);
1338 if (private_data && private_data_len)
1339 memcpy(mra_msg->private_data, private_data, private_data_len);
1342 static void cm_format_rej(struct cm_rej_msg *rej_msg,
1343 struct cm_id_private *cm_id_priv,
1344 enum ib_cm_rej_reason reason,
1347 const void *private_data,
1348 u8 private_data_len)
1350 cm_format_mad_hdr(&rej_msg->hdr, CM_REJ_ATTR_ID, cm_id_priv->tid);
1351 rej_msg->remote_comm_id = cm_id_priv->id.remote_id;
1353 switch(cm_id_priv->id.state) {
1354 case IB_CM_REQ_RCVD:
1355 rej_msg->local_comm_id = 0;
1356 cm_rej_set_msg_rejected(rej_msg, CM_MSG_RESPONSE_REQ);
1358 case IB_CM_MRA_REQ_SENT:
1359 rej_msg->local_comm_id = cm_id_priv->id.local_id;
1360 cm_rej_set_msg_rejected(rej_msg, CM_MSG_RESPONSE_REQ);
1362 case IB_CM_REP_RCVD:
1363 case IB_CM_MRA_REP_SENT:
1364 rej_msg->local_comm_id = cm_id_priv->id.local_id;
1365 cm_rej_set_msg_rejected(rej_msg, CM_MSG_RESPONSE_REP);
1368 rej_msg->local_comm_id = cm_id_priv->id.local_id;
1369 cm_rej_set_msg_rejected(rej_msg, CM_MSG_RESPONSE_OTHER);
1373 rej_msg->reason = cpu_to_be16(reason);
1374 if (ari && ari_length) {
1375 cm_rej_set_reject_info_len(rej_msg, ari_length);
1376 memcpy(rej_msg->ari, ari, ari_length);
1379 if (private_data && private_data_len)
1380 memcpy(rej_msg->private_data, private_data, private_data_len);
1383 static void cm_dup_req_handler(struct cm_work *work,
1384 struct cm_id_private *cm_id_priv)
1386 struct ib_mad_send_buf *msg = NULL;
1389 atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
1390 counter[CM_REQ_COUNTER]);
1392 /* Quick state check to discard duplicate REQs. */
1393 if (cm_id_priv->id.state == IB_CM_REQ_RCVD)
1396 ret = cm_alloc_response_msg(work->port, work->mad_recv_wc, &msg);
1400 spin_lock_irq(&cm_id_priv->lock);
1401 switch (cm_id_priv->id.state) {
1402 case IB_CM_MRA_REQ_SENT:
1403 cm_format_mra((struct cm_mra_msg *) msg->mad, cm_id_priv,
1404 CM_MSG_RESPONSE_REQ, cm_id_priv->service_timeout,
1405 cm_id_priv->private_data,
1406 cm_id_priv->private_data_len);
1408 case IB_CM_TIMEWAIT:
1409 cm_format_rej((struct cm_rej_msg *) msg->mad, cm_id_priv,
1410 IB_CM_REJ_STALE_CONN, NULL, 0, NULL, 0);
1415 spin_unlock_irq(&cm_id_priv->lock);
1417 ret = ib_post_send_mad(msg, NULL);
1422 unlock: spin_unlock_irq(&cm_id_priv->lock);
1423 free: cm_free_msg(msg);
1426 static struct cm_id_private * cm_match_req(struct cm_work *work,
1427 struct cm_id_private *cm_id_priv)
1429 struct cm_id_private *listen_cm_id_priv, *cur_cm_id_priv;
1430 struct cm_timewait_info *timewait_info;
1431 struct cm_req_msg *req_msg;
1433 req_msg = (struct cm_req_msg *)work->mad_recv_wc->recv_buf.mad;
1435 /* Check for possible duplicate REQ. */
1436 spin_lock_irq(&cm.lock);
1437 timewait_info = cm_insert_remote_id(cm_id_priv->timewait_info);
1438 if (timewait_info) {
1439 cur_cm_id_priv = cm_get_id(timewait_info->work.local_id,
1440 timewait_info->work.remote_id);
1441 spin_unlock_irq(&cm.lock);
1442 if (cur_cm_id_priv) {
1443 cm_dup_req_handler(work, cur_cm_id_priv);
1444 cm_deref_id(cur_cm_id_priv);
1449 /* Check for stale connections. */
1450 timewait_info = cm_insert_remote_qpn(cm_id_priv->timewait_info);
1451 if (timewait_info) {
1452 cm_cleanup_timewait(cm_id_priv->timewait_info);
1453 spin_unlock_irq(&cm.lock);
1454 cm_issue_rej(work->port, work->mad_recv_wc,
1455 IB_CM_REJ_STALE_CONN, CM_MSG_RESPONSE_REQ,
1460 /* Find matching listen request. */
1461 listen_cm_id_priv = cm_find_listen(cm_id_priv->id.device,
1462 req_msg->service_id,
1463 req_msg->private_data);
1464 if (!listen_cm_id_priv) {
1465 cm_cleanup_timewait(cm_id_priv->timewait_info);
1466 spin_unlock_irq(&cm.lock);
1467 cm_issue_rej(work->port, work->mad_recv_wc,
1468 IB_CM_REJ_INVALID_SERVICE_ID, CM_MSG_RESPONSE_REQ,
1472 atomic_inc(&listen_cm_id_priv->refcount);
1473 atomic_inc(&cm_id_priv->refcount);
1474 cm_id_priv->id.state = IB_CM_REQ_RCVD;
1475 atomic_inc(&cm_id_priv->work_count);
1476 spin_unlock_irq(&cm.lock);
1478 return listen_cm_id_priv;
1482 * Work-around for inter-subnet connections. If the LIDs are permissive,
1483 * we need to override the LID/SL data in the REQ with the LID information
1484 * in the work completion.
1486 static void cm_process_routed_req(struct cm_req_msg *req_msg, struct ib_wc *wc)
1488 if (!cm_req_get_primary_subnet_local(req_msg)) {
1489 if (req_msg->primary_local_lid == IB_LID_PERMISSIVE) {
1490 req_msg->primary_local_lid = cpu_to_be16(wc->slid);
1491 cm_req_set_primary_sl(req_msg, wc->sl);
1494 if (req_msg->primary_remote_lid == IB_LID_PERMISSIVE)
1495 req_msg->primary_remote_lid = cpu_to_be16(wc->dlid_path_bits);
1498 if (!cm_req_get_alt_subnet_local(req_msg)) {
1499 if (req_msg->alt_local_lid == IB_LID_PERMISSIVE) {
1500 req_msg->alt_local_lid = cpu_to_be16(wc->slid);
1501 cm_req_set_alt_sl(req_msg, wc->sl);
1504 if (req_msg->alt_remote_lid == IB_LID_PERMISSIVE)
1505 req_msg->alt_remote_lid = cpu_to_be16(wc->dlid_path_bits);
1509 static int cm_req_handler(struct cm_work *work)
1511 struct ib_cm_id *cm_id;
1512 struct cm_id_private *cm_id_priv, *listen_cm_id_priv;
1513 struct cm_req_msg *req_msg;
1516 req_msg = (struct cm_req_msg *)work->mad_recv_wc->recv_buf.mad;
1518 cm_id = ib_create_cm_id(work->port->cm_dev->device, NULL, NULL);
1520 return PTR_ERR(cm_id);
1522 cm_id_priv = container_of(cm_id, struct cm_id_private, id);
1523 cm_id_priv->id.remote_id = req_msg->local_comm_id;
1524 cm_init_av_for_response(work->port, work->mad_recv_wc->wc,
1525 work->mad_recv_wc->recv_buf.grh,
1527 cm_id_priv->timewait_info = cm_create_timewait_info(cm_id_priv->
1529 if (IS_ERR(cm_id_priv->timewait_info)) {
1530 ret = PTR_ERR(cm_id_priv->timewait_info);
1533 cm_id_priv->timewait_info->work.remote_id = req_msg->local_comm_id;
1534 cm_id_priv->timewait_info->remote_ca_guid = req_msg->local_ca_guid;
1535 cm_id_priv->timewait_info->remote_qpn = cm_req_get_local_qpn(req_msg);
1537 listen_cm_id_priv = cm_match_req(work, cm_id_priv);
1538 if (!listen_cm_id_priv) {
1540 kfree(cm_id_priv->timewait_info);
1544 cm_id_priv->id.cm_handler = listen_cm_id_priv->id.cm_handler;
1545 cm_id_priv->id.context = listen_cm_id_priv->id.context;
1546 cm_id_priv->id.service_id = req_msg->service_id;
1547 cm_id_priv->id.service_mask = __constant_cpu_to_be64(~0ULL);
1549 cm_process_routed_req(req_msg, work->mad_recv_wc->wc);
1550 cm_format_paths_from_req(req_msg, &work->path[0], &work->path[1]);
1551 ret = cm_init_av_by_path(&work->path[0], &cm_id_priv->av);
1553 ib_get_cached_gid(work->port->cm_dev->device,
1554 work->port->port_num, 0, &work->path[0].sgid);
1555 ib_send_cm_rej(cm_id, IB_CM_REJ_INVALID_GID,
1556 &work->path[0].sgid, sizeof work->path[0].sgid,
1560 if (req_msg->alt_local_lid) {
1561 ret = cm_init_av_by_path(&work->path[1], &cm_id_priv->alt_av);
1563 ib_send_cm_rej(cm_id, IB_CM_REJ_INVALID_ALT_GID,
1564 &work->path[0].sgid,
1565 sizeof work->path[0].sgid, NULL, 0);
1569 cm_id_priv->tid = req_msg->hdr.tid;
1570 cm_id_priv->timeout_ms = cm_convert_to_ms(
1571 cm_req_get_local_resp_timeout(req_msg));
1572 cm_id_priv->max_cm_retries = cm_req_get_max_cm_retries(req_msg);
1573 cm_id_priv->remote_qpn = cm_req_get_local_qpn(req_msg);
1574 cm_id_priv->initiator_depth = cm_req_get_resp_res(req_msg);
1575 cm_id_priv->responder_resources = cm_req_get_init_depth(req_msg);
1576 cm_id_priv->path_mtu = cm_req_get_path_mtu(req_msg);
1577 cm_id_priv->pkey = req_msg->pkey;
1578 cm_id_priv->sq_psn = cm_req_get_starting_psn(req_msg);
1579 cm_id_priv->retry_count = cm_req_get_retry_count(req_msg);
1580 cm_id_priv->rnr_retry_count = cm_req_get_rnr_retry_count(req_msg);
1581 cm_id_priv->qp_type = cm_req_get_qp_type(req_msg);
1583 cm_format_req_event(work, cm_id_priv, &listen_cm_id_priv->id);
1584 cm_process_work(cm_id_priv, work);
1585 cm_deref_id(listen_cm_id_priv);
1589 atomic_dec(&cm_id_priv->refcount);
1590 cm_deref_id(listen_cm_id_priv);
1592 ib_destroy_cm_id(cm_id);
1596 static void cm_format_rep(struct cm_rep_msg *rep_msg,
1597 struct cm_id_private *cm_id_priv,
1598 struct ib_cm_rep_param *param)
1600 cm_format_mad_hdr(&rep_msg->hdr, CM_REP_ATTR_ID, cm_id_priv->tid);
1601 rep_msg->local_comm_id = cm_id_priv->id.local_id;
1602 rep_msg->remote_comm_id = cm_id_priv->id.remote_id;
1603 cm_rep_set_local_qpn(rep_msg, cpu_to_be32(param->qp_num));
1604 cm_rep_set_starting_psn(rep_msg, cpu_to_be32(param->starting_psn));
1605 rep_msg->resp_resources = param->responder_resources;
1606 rep_msg->initiator_depth = param->initiator_depth;
1607 cm_rep_set_target_ack_delay(rep_msg,
1608 cm_id_priv->av.port->cm_dev->ack_delay);
1609 cm_rep_set_failover(rep_msg, param->failover_accepted);
1610 cm_rep_set_flow_ctrl(rep_msg, param->flow_control);
1611 cm_rep_set_rnr_retry_count(rep_msg, param->rnr_retry_count);
1612 cm_rep_set_srq(rep_msg, param->srq);
1613 rep_msg->local_ca_guid = cm_id_priv->id.device->node_guid;
1615 if (param->private_data && param->private_data_len)
1616 memcpy(rep_msg->private_data, param->private_data,
1617 param->private_data_len);
1620 int ib_send_cm_rep(struct ib_cm_id *cm_id,
1621 struct ib_cm_rep_param *param)
1623 struct cm_id_private *cm_id_priv;
1624 struct ib_mad_send_buf *msg;
1625 struct cm_rep_msg *rep_msg;
1626 unsigned long flags;
1629 if (param->private_data &&
1630 param->private_data_len > IB_CM_REP_PRIVATE_DATA_SIZE)
1633 cm_id_priv = container_of(cm_id, struct cm_id_private, id);
1634 spin_lock_irqsave(&cm_id_priv->lock, flags);
1635 if (cm_id->state != IB_CM_REQ_RCVD &&
1636 cm_id->state != IB_CM_MRA_REQ_SENT) {
1641 ret = cm_alloc_msg(cm_id_priv, &msg);
1645 rep_msg = (struct cm_rep_msg *) msg->mad;
1646 cm_format_rep(rep_msg, cm_id_priv, param);
1647 msg->timeout_ms = cm_id_priv->timeout_ms;
1648 msg->context[1] = (void *) (unsigned long) IB_CM_REP_SENT;
1650 ret = ib_post_send_mad(msg, NULL);
1652 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
1657 cm_id->state = IB_CM_REP_SENT;
1658 cm_id_priv->msg = msg;
1659 cm_id_priv->initiator_depth = param->initiator_depth;
1660 cm_id_priv->responder_resources = param->responder_resources;
1661 cm_id_priv->rq_psn = cm_rep_get_starting_psn(rep_msg);
1662 cm_id_priv->local_qpn = cm_rep_get_local_qpn(rep_msg);
1664 out: spin_unlock_irqrestore(&cm_id_priv->lock, flags);
1667 EXPORT_SYMBOL(ib_send_cm_rep);
1669 static void cm_format_rtu(struct cm_rtu_msg *rtu_msg,
1670 struct cm_id_private *cm_id_priv,
1671 const void *private_data,
1672 u8 private_data_len)
1674 cm_format_mad_hdr(&rtu_msg->hdr, CM_RTU_ATTR_ID, cm_id_priv->tid);
1675 rtu_msg->local_comm_id = cm_id_priv->id.local_id;
1676 rtu_msg->remote_comm_id = cm_id_priv->id.remote_id;
1678 if (private_data && private_data_len)
1679 memcpy(rtu_msg->private_data, private_data, private_data_len);
1682 int ib_send_cm_rtu(struct ib_cm_id *cm_id,
1683 const void *private_data,
1684 u8 private_data_len)
1686 struct cm_id_private *cm_id_priv;
1687 struct ib_mad_send_buf *msg;
1688 unsigned long flags;
1692 if (private_data && private_data_len > IB_CM_RTU_PRIVATE_DATA_SIZE)
1695 data = cm_copy_private_data(private_data, private_data_len);
1697 return PTR_ERR(data);
1699 cm_id_priv = container_of(cm_id, struct cm_id_private, id);
1700 spin_lock_irqsave(&cm_id_priv->lock, flags);
1701 if (cm_id->state != IB_CM_REP_RCVD &&
1702 cm_id->state != IB_CM_MRA_REP_SENT) {
1707 ret = cm_alloc_msg(cm_id_priv, &msg);
1711 cm_format_rtu((struct cm_rtu_msg *) msg->mad, cm_id_priv,
1712 private_data, private_data_len);
1714 ret = ib_post_send_mad(msg, NULL);
1716 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
1722 cm_id->state = IB_CM_ESTABLISHED;
1723 cm_set_private_data(cm_id_priv, data, private_data_len);
1724 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
1727 error: spin_unlock_irqrestore(&cm_id_priv->lock, flags);
1731 EXPORT_SYMBOL(ib_send_cm_rtu);
1733 static void cm_format_rep_event(struct cm_work *work)
1735 struct cm_rep_msg *rep_msg;
1736 struct ib_cm_rep_event_param *param;
1738 rep_msg = (struct cm_rep_msg *)work->mad_recv_wc->recv_buf.mad;
1739 param = &work->cm_event.param.rep_rcvd;
1740 param->remote_ca_guid = rep_msg->local_ca_guid;
1741 param->remote_qkey = be32_to_cpu(rep_msg->local_qkey);
1742 param->remote_qpn = be32_to_cpu(cm_rep_get_local_qpn(rep_msg));
1743 param->starting_psn = be32_to_cpu(cm_rep_get_starting_psn(rep_msg));
1744 param->responder_resources = rep_msg->initiator_depth;
1745 param->initiator_depth = rep_msg->resp_resources;
1746 param->target_ack_delay = cm_rep_get_target_ack_delay(rep_msg);
1747 param->failover_accepted = cm_rep_get_failover(rep_msg);
1748 param->flow_control = cm_rep_get_flow_ctrl(rep_msg);
1749 param->rnr_retry_count = cm_rep_get_rnr_retry_count(rep_msg);
1750 param->srq = cm_rep_get_srq(rep_msg);
1751 work->cm_event.private_data = &rep_msg->private_data;
1754 static void cm_dup_rep_handler(struct cm_work *work)
1756 struct cm_id_private *cm_id_priv;
1757 struct cm_rep_msg *rep_msg;
1758 struct ib_mad_send_buf *msg = NULL;
1761 rep_msg = (struct cm_rep_msg *) work->mad_recv_wc->recv_buf.mad;
1762 cm_id_priv = cm_acquire_id(rep_msg->remote_comm_id,
1763 rep_msg->local_comm_id);
1767 atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
1768 counter[CM_REP_COUNTER]);
1769 ret = cm_alloc_response_msg(work->port, work->mad_recv_wc, &msg);
1773 spin_lock_irq(&cm_id_priv->lock);
1774 if (cm_id_priv->id.state == IB_CM_ESTABLISHED)
1775 cm_format_rtu((struct cm_rtu_msg *) msg->mad, cm_id_priv,
1776 cm_id_priv->private_data,
1777 cm_id_priv->private_data_len);
1778 else if (cm_id_priv->id.state == IB_CM_MRA_REP_SENT)
1779 cm_format_mra((struct cm_mra_msg *) msg->mad, cm_id_priv,
1780 CM_MSG_RESPONSE_REP, cm_id_priv->service_timeout,
1781 cm_id_priv->private_data,
1782 cm_id_priv->private_data_len);
1785 spin_unlock_irq(&cm_id_priv->lock);
1787 ret = ib_post_send_mad(msg, NULL);
1792 unlock: spin_unlock_irq(&cm_id_priv->lock);
1793 free: cm_free_msg(msg);
1794 deref: cm_deref_id(cm_id_priv);
1797 static int cm_rep_handler(struct cm_work *work)
1799 struct cm_id_private *cm_id_priv;
1800 struct cm_rep_msg *rep_msg;
1803 rep_msg = (struct cm_rep_msg *)work->mad_recv_wc->recv_buf.mad;
1804 cm_id_priv = cm_acquire_id(rep_msg->remote_comm_id, 0);
1806 cm_dup_rep_handler(work);
1810 cm_format_rep_event(work);
1812 spin_lock_irq(&cm_id_priv->lock);
1813 switch (cm_id_priv->id.state) {
1814 case IB_CM_REQ_SENT:
1815 case IB_CM_MRA_REQ_RCVD:
1818 spin_unlock_irq(&cm_id_priv->lock);
1823 cm_id_priv->timewait_info->work.remote_id = rep_msg->local_comm_id;
1824 cm_id_priv->timewait_info->remote_ca_guid = rep_msg->local_ca_guid;
1825 cm_id_priv->timewait_info->remote_qpn = cm_rep_get_local_qpn(rep_msg);
1827 spin_lock(&cm.lock);
1828 /* Check for duplicate REP. */
1829 if (cm_insert_remote_id(cm_id_priv->timewait_info)) {
1830 spin_unlock(&cm.lock);
1831 spin_unlock_irq(&cm_id_priv->lock);
1835 /* Check for a stale connection. */
1836 if (cm_insert_remote_qpn(cm_id_priv->timewait_info)) {
1837 rb_erase(&cm_id_priv->timewait_info->remote_id_node,
1838 &cm.remote_id_table);
1839 cm_id_priv->timewait_info->inserted_remote_id = 0;
1840 spin_unlock(&cm.lock);
1841 spin_unlock_irq(&cm_id_priv->lock);
1842 cm_issue_rej(work->port, work->mad_recv_wc,
1843 IB_CM_REJ_STALE_CONN, CM_MSG_RESPONSE_REP,
1848 spin_unlock(&cm.lock);
1850 cm_id_priv->id.state = IB_CM_REP_RCVD;
1851 cm_id_priv->id.remote_id = rep_msg->local_comm_id;
1852 cm_id_priv->remote_qpn = cm_rep_get_local_qpn(rep_msg);
1853 cm_id_priv->initiator_depth = rep_msg->resp_resources;
1854 cm_id_priv->responder_resources = rep_msg->initiator_depth;
1855 cm_id_priv->sq_psn = cm_rep_get_starting_psn(rep_msg);
1856 cm_id_priv->rnr_retry_count = cm_rep_get_rnr_retry_count(rep_msg);
1857 cm_id_priv->target_ack_delay = cm_rep_get_target_ack_delay(rep_msg);
1858 cm_id_priv->av.timeout =
1859 cm_ack_timeout(cm_id_priv->target_ack_delay,
1860 cm_id_priv->av.timeout - 1);
1861 cm_id_priv->alt_av.timeout =
1862 cm_ack_timeout(cm_id_priv->target_ack_delay,
1863 cm_id_priv->alt_av.timeout - 1);
1865 /* todo: handle peer_to_peer */
1867 ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
1868 ret = atomic_inc_and_test(&cm_id_priv->work_count);
1870 list_add_tail(&work->list, &cm_id_priv->work_list);
1871 spin_unlock_irq(&cm_id_priv->lock);
1874 cm_process_work(cm_id_priv, work);
1876 cm_deref_id(cm_id_priv);
1880 cm_deref_id(cm_id_priv);
1884 static int cm_establish_handler(struct cm_work *work)
1886 struct cm_id_private *cm_id_priv;
1889 /* See comment in cm_establish about lookup. */
1890 cm_id_priv = cm_acquire_id(work->local_id, work->remote_id);
1894 spin_lock_irq(&cm_id_priv->lock);
1895 if (cm_id_priv->id.state != IB_CM_ESTABLISHED) {
1896 spin_unlock_irq(&cm_id_priv->lock);
1900 ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
1901 ret = atomic_inc_and_test(&cm_id_priv->work_count);
1903 list_add_tail(&work->list, &cm_id_priv->work_list);
1904 spin_unlock_irq(&cm_id_priv->lock);
1907 cm_process_work(cm_id_priv, work);
1909 cm_deref_id(cm_id_priv);
1912 cm_deref_id(cm_id_priv);
1916 static int cm_rtu_handler(struct cm_work *work)
1918 struct cm_id_private *cm_id_priv;
1919 struct cm_rtu_msg *rtu_msg;
1922 rtu_msg = (struct cm_rtu_msg *)work->mad_recv_wc->recv_buf.mad;
1923 cm_id_priv = cm_acquire_id(rtu_msg->remote_comm_id,
1924 rtu_msg->local_comm_id);
1928 work->cm_event.private_data = &rtu_msg->private_data;
1930 spin_lock_irq(&cm_id_priv->lock);
1931 if (cm_id_priv->id.state != IB_CM_REP_SENT &&
1932 cm_id_priv->id.state != IB_CM_MRA_REP_RCVD) {
1933 spin_unlock_irq(&cm_id_priv->lock);
1934 atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
1935 counter[CM_RTU_COUNTER]);
1938 cm_id_priv->id.state = IB_CM_ESTABLISHED;
1940 ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
1941 ret = atomic_inc_and_test(&cm_id_priv->work_count);
1943 list_add_tail(&work->list, &cm_id_priv->work_list);
1944 spin_unlock_irq(&cm_id_priv->lock);
1947 cm_process_work(cm_id_priv, work);
1949 cm_deref_id(cm_id_priv);
1952 cm_deref_id(cm_id_priv);
1956 static void cm_format_dreq(struct cm_dreq_msg *dreq_msg,
1957 struct cm_id_private *cm_id_priv,
1958 const void *private_data,
1959 u8 private_data_len)
1961 cm_format_mad_hdr(&dreq_msg->hdr, CM_DREQ_ATTR_ID,
1962 cm_form_tid(cm_id_priv, CM_MSG_SEQUENCE_DREQ));
1963 dreq_msg->local_comm_id = cm_id_priv->id.local_id;
1964 dreq_msg->remote_comm_id = cm_id_priv->id.remote_id;
1965 cm_dreq_set_remote_qpn(dreq_msg, cm_id_priv->remote_qpn);
1967 if (private_data && private_data_len)
1968 memcpy(dreq_msg->private_data, private_data, private_data_len);
1971 int ib_send_cm_dreq(struct ib_cm_id *cm_id,
1972 const void *private_data,
1973 u8 private_data_len)
1975 struct cm_id_private *cm_id_priv;
1976 struct ib_mad_send_buf *msg;
1977 unsigned long flags;
1980 if (private_data && private_data_len > IB_CM_DREQ_PRIVATE_DATA_SIZE)
1983 cm_id_priv = container_of(cm_id, struct cm_id_private, id);
1984 spin_lock_irqsave(&cm_id_priv->lock, flags);
1985 if (cm_id->state != IB_CM_ESTABLISHED) {
1990 ret = cm_alloc_msg(cm_id_priv, &msg);
1992 cm_enter_timewait(cm_id_priv);
1996 cm_format_dreq((struct cm_dreq_msg *) msg->mad, cm_id_priv,
1997 private_data, private_data_len);
1998 msg->timeout_ms = cm_id_priv->timeout_ms;
1999 msg->context[1] = (void *) (unsigned long) IB_CM_DREQ_SENT;
2001 ret = ib_post_send_mad(msg, NULL);
2003 cm_enter_timewait(cm_id_priv);
2004 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
2009 cm_id->state = IB_CM_DREQ_SENT;
2010 cm_id_priv->msg = msg;
2011 out: spin_unlock_irqrestore(&cm_id_priv->lock, flags);
2014 EXPORT_SYMBOL(ib_send_cm_dreq);
2016 static void cm_format_drep(struct cm_drep_msg *drep_msg,
2017 struct cm_id_private *cm_id_priv,
2018 const void *private_data,
2019 u8 private_data_len)
2021 cm_format_mad_hdr(&drep_msg->hdr, CM_DREP_ATTR_ID, cm_id_priv->tid);
2022 drep_msg->local_comm_id = cm_id_priv->id.local_id;
2023 drep_msg->remote_comm_id = cm_id_priv->id.remote_id;
2025 if (private_data && private_data_len)
2026 memcpy(drep_msg->private_data, private_data, private_data_len);
2029 int ib_send_cm_drep(struct ib_cm_id *cm_id,
2030 const void *private_data,
2031 u8 private_data_len)
2033 struct cm_id_private *cm_id_priv;
2034 struct ib_mad_send_buf *msg;
2035 unsigned long flags;
2039 if (private_data && private_data_len > IB_CM_DREP_PRIVATE_DATA_SIZE)
2042 data = cm_copy_private_data(private_data, private_data_len);
2044 return PTR_ERR(data);
2046 cm_id_priv = container_of(cm_id, struct cm_id_private, id);
2047 spin_lock_irqsave(&cm_id_priv->lock, flags);
2048 if (cm_id->state != IB_CM_DREQ_RCVD) {
2049 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
2054 cm_set_private_data(cm_id_priv, data, private_data_len);
2055 cm_enter_timewait(cm_id_priv);
2057 ret = cm_alloc_msg(cm_id_priv, &msg);
2061 cm_format_drep((struct cm_drep_msg *) msg->mad, cm_id_priv,
2062 private_data, private_data_len);
2064 ret = ib_post_send_mad(msg, NULL);
2066 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
2071 out: spin_unlock_irqrestore(&cm_id_priv->lock, flags);
2074 EXPORT_SYMBOL(ib_send_cm_drep);
2076 static int cm_issue_drep(struct cm_port *port,
2077 struct ib_mad_recv_wc *mad_recv_wc)
2079 struct ib_mad_send_buf *msg = NULL;
2080 struct cm_dreq_msg *dreq_msg;
2081 struct cm_drep_msg *drep_msg;
2084 ret = cm_alloc_response_msg(port, mad_recv_wc, &msg);
2088 dreq_msg = (struct cm_dreq_msg *) mad_recv_wc->recv_buf.mad;
2089 drep_msg = (struct cm_drep_msg *) msg->mad;
2091 cm_format_mad_hdr(&drep_msg->hdr, CM_DREP_ATTR_ID, dreq_msg->hdr.tid);
2092 drep_msg->remote_comm_id = dreq_msg->local_comm_id;
2093 drep_msg->local_comm_id = dreq_msg->remote_comm_id;
2095 ret = ib_post_send_mad(msg, NULL);
2102 static int cm_dreq_handler(struct cm_work *work)
2104 struct cm_id_private *cm_id_priv;
2105 struct cm_dreq_msg *dreq_msg;
2106 struct ib_mad_send_buf *msg = NULL;
2109 dreq_msg = (struct cm_dreq_msg *)work->mad_recv_wc->recv_buf.mad;
2110 cm_id_priv = cm_acquire_id(dreq_msg->remote_comm_id,
2111 dreq_msg->local_comm_id);
2113 atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
2114 counter[CM_DREQ_COUNTER]);
2115 cm_issue_drep(work->port, work->mad_recv_wc);
2119 work->cm_event.private_data = &dreq_msg->private_data;
2121 spin_lock_irq(&cm_id_priv->lock);
2122 if (cm_id_priv->local_qpn != cm_dreq_get_remote_qpn(dreq_msg))
2125 switch (cm_id_priv->id.state) {
2126 case IB_CM_REP_SENT:
2127 case IB_CM_DREQ_SENT:
2128 ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
2130 case IB_CM_ESTABLISHED:
2131 case IB_CM_MRA_REP_RCVD:
2133 case IB_CM_TIMEWAIT:
2134 atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
2135 counter[CM_DREQ_COUNTER]);
2136 if (cm_alloc_response_msg(work->port, work->mad_recv_wc, &msg))
2139 cm_format_drep((struct cm_drep_msg *) msg->mad, cm_id_priv,
2140 cm_id_priv->private_data,
2141 cm_id_priv->private_data_len);
2142 spin_unlock_irq(&cm_id_priv->lock);
2144 if (ib_post_send_mad(msg, NULL))
2147 case IB_CM_DREQ_RCVD:
2148 atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
2149 counter[CM_DREQ_COUNTER]);
2154 cm_id_priv->id.state = IB_CM_DREQ_RCVD;
2155 cm_id_priv->tid = dreq_msg->hdr.tid;
2156 ret = atomic_inc_and_test(&cm_id_priv->work_count);
2158 list_add_tail(&work->list, &cm_id_priv->work_list);
2159 spin_unlock_irq(&cm_id_priv->lock);
2162 cm_process_work(cm_id_priv, work);
2164 cm_deref_id(cm_id_priv);
2167 unlock: spin_unlock_irq(&cm_id_priv->lock);
2168 deref: cm_deref_id(cm_id_priv);
2172 static int cm_drep_handler(struct cm_work *work)
2174 struct cm_id_private *cm_id_priv;
2175 struct cm_drep_msg *drep_msg;
2178 drep_msg = (struct cm_drep_msg *)work->mad_recv_wc->recv_buf.mad;
2179 cm_id_priv = cm_acquire_id(drep_msg->remote_comm_id,
2180 drep_msg->local_comm_id);
2184 work->cm_event.private_data = &drep_msg->private_data;
2186 spin_lock_irq(&cm_id_priv->lock);
2187 if (cm_id_priv->id.state != IB_CM_DREQ_SENT &&
2188 cm_id_priv->id.state != IB_CM_DREQ_RCVD) {
2189 spin_unlock_irq(&cm_id_priv->lock);
2192 cm_enter_timewait(cm_id_priv);
2194 ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
2195 ret = atomic_inc_and_test(&cm_id_priv->work_count);
2197 list_add_tail(&work->list, &cm_id_priv->work_list);
2198 spin_unlock_irq(&cm_id_priv->lock);
2201 cm_process_work(cm_id_priv, work);
2203 cm_deref_id(cm_id_priv);
2206 cm_deref_id(cm_id_priv);
2210 int ib_send_cm_rej(struct ib_cm_id *cm_id,
2211 enum ib_cm_rej_reason reason,
2214 const void *private_data,
2215 u8 private_data_len)
2217 struct cm_id_private *cm_id_priv;
2218 struct ib_mad_send_buf *msg;
2219 unsigned long flags;
2222 if ((private_data && private_data_len > IB_CM_REJ_PRIVATE_DATA_SIZE) ||
2223 (ari && ari_length > IB_CM_REJ_ARI_LENGTH))
2226 cm_id_priv = container_of(cm_id, struct cm_id_private, id);
2228 spin_lock_irqsave(&cm_id_priv->lock, flags);
2229 switch (cm_id->state) {
2230 case IB_CM_REQ_SENT:
2231 case IB_CM_MRA_REQ_RCVD:
2232 case IB_CM_REQ_RCVD:
2233 case IB_CM_MRA_REQ_SENT:
2234 case IB_CM_REP_RCVD:
2235 case IB_CM_MRA_REP_SENT:
2236 ret = cm_alloc_msg(cm_id_priv, &msg);
2238 cm_format_rej((struct cm_rej_msg *) msg->mad,
2239 cm_id_priv, reason, ari, ari_length,
2240 private_data, private_data_len);
2242 cm_reset_to_idle(cm_id_priv);
2244 case IB_CM_REP_SENT:
2245 case IB_CM_MRA_REP_RCVD:
2246 ret = cm_alloc_msg(cm_id_priv, &msg);
2248 cm_format_rej((struct cm_rej_msg *) msg->mad,
2249 cm_id_priv, reason, ari, ari_length,
2250 private_data, private_data_len);
2252 cm_enter_timewait(cm_id_priv);
2262 ret = ib_post_send_mad(msg, NULL);
2266 out: spin_unlock_irqrestore(&cm_id_priv->lock, flags);
2269 EXPORT_SYMBOL(ib_send_cm_rej);
2271 static void cm_format_rej_event(struct cm_work *work)
2273 struct cm_rej_msg *rej_msg;
2274 struct ib_cm_rej_event_param *param;
2276 rej_msg = (struct cm_rej_msg *)work->mad_recv_wc->recv_buf.mad;
2277 param = &work->cm_event.param.rej_rcvd;
2278 param->ari = rej_msg->ari;
2279 param->ari_length = cm_rej_get_reject_info_len(rej_msg);
2280 param->reason = __be16_to_cpu(rej_msg->reason);
2281 work->cm_event.private_data = &rej_msg->private_data;
2284 static struct cm_id_private * cm_acquire_rejected_id(struct cm_rej_msg *rej_msg)
2286 struct cm_timewait_info *timewait_info;
2287 struct cm_id_private *cm_id_priv;
2290 remote_id = rej_msg->local_comm_id;
2292 if (__be16_to_cpu(rej_msg->reason) == IB_CM_REJ_TIMEOUT) {
2293 spin_lock_irq(&cm.lock);
2294 timewait_info = cm_find_remote_id( *((__be64 *) rej_msg->ari),
2296 if (!timewait_info) {
2297 spin_unlock_irq(&cm.lock);
2300 cm_id_priv = idr_find(&cm.local_id_table, (__force int)
2301 (timewait_info->work.local_id ^
2302 cm.random_id_operand));
2304 if (cm_id_priv->id.remote_id == remote_id)
2305 atomic_inc(&cm_id_priv->refcount);
2309 spin_unlock_irq(&cm.lock);
2310 } else if (cm_rej_get_msg_rejected(rej_msg) == CM_MSG_RESPONSE_REQ)
2311 cm_id_priv = cm_acquire_id(rej_msg->remote_comm_id, 0);
2313 cm_id_priv = cm_acquire_id(rej_msg->remote_comm_id, remote_id);
2318 static int cm_rej_handler(struct cm_work *work)
2320 struct cm_id_private *cm_id_priv;
2321 struct cm_rej_msg *rej_msg;
2324 rej_msg = (struct cm_rej_msg *)work->mad_recv_wc->recv_buf.mad;
2325 cm_id_priv = cm_acquire_rejected_id(rej_msg);
2329 cm_format_rej_event(work);
2331 spin_lock_irq(&cm_id_priv->lock);
2332 switch (cm_id_priv->id.state) {
2333 case IB_CM_REQ_SENT:
2334 case IB_CM_MRA_REQ_RCVD:
2335 case IB_CM_REP_SENT:
2336 case IB_CM_MRA_REP_RCVD:
2337 ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
2339 case IB_CM_REQ_RCVD:
2340 case IB_CM_MRA_REQ_SENT:
2341 if (__be16_to_cpu(rej_msg->reason) == IB_CM_REJ_STALE_CONN)
2342 cm_enter_timewait(cm_id_priv);
2344 cm_reset_to_idle(cm_id_priv);
2346 case IB_CM_DREQ_SENT:
2347 ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
2349 case IB_CM_REP_RCVD:
2350 case IB_CM_MRA_REP_SENT:
2351 case IB_CM_ESTABLISHED:
2352 cm_enter_timewait(cm_id_priv);
2355 spin_unlock_irq(&cm_id_priv->lock);
2360 ret = atomic_inc_and_test(&cm_id_priv->work_count);
2362 list_add_tail(&work->list, &cm_id_priv->work_list);
2363 spin_unlock_irq(&cm_id_priv->lock);
2366 cm_process_work(cm_id_priv, work);
2368 cm_deref_id(cm_id_priv);
2371 cm_deref_id(cm_id_priv);
2375 int ib_send_cm_mra(struct ib_cm_id *cm_id,
2377 const void *private_data,
2378 u8 private_data_len)
2380 struct cm_id_private *cm_id_priv;
2381 struct ib_mad_send_buf *msg;
2382 enum ib_cm_state cm_state;
2383 enum ib_cm_lap_state lap_state;
2384 enum cm_msg_response msg_response;
2386 unsigned long flags;
2389 if (private_data && private_data_len > IB_CM_MRA_PRIVATE_DATA_SIZE)
2392 data = cm_copy_private_data(private_data, private_data_len);
2394 return PTR_ERR(data);
2396 cm_id_priv = container_of(cm_id, struct cm_id_private, id);
2398 spin_lock_irqsave(&cm_id_priv->lock, flags);
2399 switch(cm_id_priv->id.state) {
2400 case IB_CM_REQ_RCVD:
2401 cm_state = IB_CM_MRA_REQ_SENT;
2402 lap_state = cm_id->lap_state;
2403 msg_response = CM_MSG_RESPONSE_REQ;
2405 case IB_CM_REP_RCVD:
2406 cm_state = IB_CM_MRA_REP_SENT;
2407 lap_state = cm_id->lap_state;
2408 msg_response = CM_MSG_RESPONSE_REP;
2410 case IB_CM_ESTABLISHED:
2411 cm_state = cm_id->state;
2412 lap_state = IB_CM_MRA_LAP_SENT;
2413 msg_response = CM_MSG_RESPONSE_OTHER;
2420 if (!(service_timeout & IB_CM_MRA_FLAG_DELAY)) {
2421 ret = cm_alloc_msg(cm_id_priv, &msg);
2425 cm_format_mra((struct cm_mra_msg *) msg->mad, cm_id_priv,
2426 msg_response, service_timeout,
2427 private_data, private_data_len);
2428 ret = ib_post_send_mad(msg, NULL);
2433 cm_id->state = cm_state;
2434 cm_id->lap_state = lap_state;
2435 cm_id_priv->service_timeout = service_timeout;
2436 cm_set_private_data(cm_id_priv, data, private_data_len);
2437 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
2440 error1: spin_unlock_irqrestore(&cm_id_priv->lock, flags);
2444 error2: spin_unlock_irqrestore(&cm_id_priv->lock, flags);
2449 EXPORT_SYMBOL(ib_send_cm_mra);
2451 static struct cm_id_private * cm_acquire_mraed_id(struct cm_mra_msg *mra_msg)
2453 switch (cm_mra_get_msg_mraed(mra_msg)) {
2454 case CM_MSG_RESPONSE_REQ:
2455 return cm_acquire_id(mra_msg->remote_comm_id, 0);
2456 case CM_MSG_RESPONSE_REP:
2457 case CM_MSG_RESPONSE_OTHER:
2458 return cm_acquire_id(mra_msg->remote_comm_id,
2459 mra_msg->local_comm_id);
2465 static int cm_mra_handler(struct cm_work *work)
2467 struct cm_id_private *cm_id_priv;
2468 struct cm_mra_msg *mra_msg;
2471 mra_msg = (struct cm_mra_msg *)work->mad_recv_wc->recv_buf.mad;
2472 cm_id_priv = cm_acquire_mraed_id(mra_msg);
2476 work->cm_event.private_data = &mra_msg->private_data;
2477 work->cm_event.param.mra_rcvd.service_timeout =
2478 cm_mra_get_service_timeout(mra_msg);
2479 timeout = cm_convert_to_ms(cm_mra_get_service_timeout(mra_msg)) +
2480 cm_convert_to_ms(cm_id_priv->av.timeout);
2482 spin_lock_irq(&cm_id_priv->lock);
2483 switch (cm_id_priv->id.state) {
2484 case IB_CM_REQ_SENT:
2485 if (cm_mra_get_msg_mraed(mra_msg) != CM_MSG_RESPONSE_REQ ||
2486 ib_modify_mad(cm_id_priv->av.port->mad_agent,
2487 cm_id_priv->msg, timeout))
2489 cm_id_priv->id.state = IB_CM_MRA_REQ_RCVD;
2491 case IB_CM_REP_SENT:
2492 if (cm_mra_get_msg_mraed(mra_msg) != CM_MSG_RESPONSE_REP ||
2493 ib_modify_mad(cm_id_priv->av.port->mad_agent,
2494 cm_id_priv->msg, timeout))
2496 cm_id_priv->id.state = IB_CM_MRA_REP_RCVD;
2498 case IB_CM_ESTABLISHED:
2499 if (cm_mra_get_msg_mraed(mra_msg) != CM_MSG_RESPONSE_OTHER ||
2500 cm_id_priv->id.lap_state != IB_CM_LAP_SENT ||
2501 ib_modify_mad(cm_id_priv->av.port->mad_agent,
2502 cm_id_priv->msg, timeout)) {
2503 if (cm_id_priv->id.lap_state == IB_CM_MRA_LAP_RCVD)
2504 atomic_long_inc(&work->port->
2505 counter_group[CM_RECV_DUPLICATES].
2506 counter[CM_MRA_COUNTER]);
2509 cm_id_priv->id.lap_state = IB_CM_MRA_LAP_RCVD;
2511 case IB_CM_MRA_REQ_RCVD:
2512 case IB_CM_MRA_REP_RCVD:
2513 atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
2514 counter[CM_MRA_COUNTER]);
2520 cm_id_priv->msg->context[1] = (void *) (unsigned long)
2521 cm_id_priv->id.state;
2522 ret = atomic_inc_and_test(&cm_id_priv->work_count);
2524 list_add_tail(&work->list, &cm_id_priv->work_list);
2525 spin_unlock_irq(&cm_id_priv->lock);
2528 cm_process_work(cm_id_priv, work);
2530 cm_deref_id(cm_id_priv);
2533 spin_unlock_irq(&cm_id_priv->lock);
2534 cm_deref_id(cm_id_priv);
2538 static void cm_format_lap(struct cm_lap_msg *lap_msg,
2539 struct cm_id_private *cm_id_priv,
2540 struct ib_sa_path_rec *alternate_path,
2541 const void *private_data,
2542 u8 private_data_len)
2544 cm_format_mad_hdr(&lap_msg->hdr, CM_LAP_ATTR_ID,
2545 cm_form_tid(cm_id_priv, CM_MSG_SEQUENCE_LAP));
2546 lap_msg->local_comm_id = cm_id_priv->id.local_id;
2547 lap_msg->remote_comm_id = cm_id_priv->id.remote_id;
2548 cm_lap_set_remote_qpn(lap_msg, cm_id_priv->remote_qpn);
2549 /* todo: need remote CM response timeout */
2550 cm_lap_set_remote_resp_timeout(lap_msg, 0x1F);
2551 lap_msg->alt_local_lid = alternate_path->slid;
2552 lap_msg->alt_remote_lid = alternate_path->dlid;
2553 lap_msg->alt_local_gid = alternate_path->sgid;
2554 lap_msg->alt_remote_gid = alternate_path->dgid;
2555 cm_lap_set_flow_label(lap_msg, alternate_path->flow_label);
2556 cm_lap_set_traffic_class(lap_msg, alternate_path->traffic_class);
2557 lap_msg->alt_hop_limit = alternate_path->hop_limit;
2558 cm_lap_set_packet_rate(lap_msg, alternate_path->rate);
2559 cm_lap_set_sl(lap_msg, alternate_path->sl);
2560 cm_lap_set_subnet_local(lap_msg, 1); /* local only... */
2561 cm_lap_set_local_ack_timeout(lap_msg,
2562 cm_ack_timeout(cm_id_priv->av.port->cm_dev->ack_delay,
2563 alternate_path->packet_life_time));
2565 if (private_data && private_data_len)
2566 memcpy(lap_msg->private_data, private_data, private_data_len);
2569 int ib_send_cm_lap(struct ib_cm_id *cm_id,
2570 struct ib_sa_path_rec *alternate_path,
2571 const void *private_data,
2572 u8 private_data_len)
2574 struct cm_id_private *cm_id_priv;
2575 struct ib_mad_send_buf *msg;
2576 unsigned long flags;
2579 if (private_data && private_data_len > IB_CM_LAP_PRIVATE_DATA_SIZE)
2582 cm_id_priv = container_of(cm_id, struct cm_id_private, id);
2583 spin_lock_irqsave(&cm_id_priv->lock, flags);
2584 if (cm_id->state != IB_CM_ESTABLISHED ||
2585 (cm_id->lap_state != IB_CM_LAP_UNINIT &&
2586 cm_id->lap_state != IB_CM_LAP_IDLE)) {
2591 ret = cm_init_av_by_path(alternate_path, &cm_id_priv->alt_av);
2594 cm_id_priv->alt_av.timeout =
2595 cm_ack_timeout(cm_id_priv->target_ack_delay,
2596 cm_id_priv->alt_av.timeout - 1);
2598 ret = cm_alloc_msg(cm_id_priv, &msg);
2602 cm_format_lap((struct cm_lap_msg *) msg->mad, cm_id_priv,
2603 alternate_path, private_data, private_data_len);
2604 msg->timeout_ms = cm_id_priv->timeout_ms;
2605 msg->context[1] = (void *) (unsigned long) IB_CM_ESTABLISHED;
2607 ret = ib_post_send_mad(msg, NULL);
2609 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
2614 cm_id->lap_state = IB_CM_LAP_SENT;
2615 cm_id_priv->msg = msg;
2617 out: spin_unlock_irqrestore(&cm_id_priv->lock, flags);
2620 EXPORT_SYMBOL(ib_send_cm_lap);
2622 static void cm_format_path_from_lap(struct cm_id_private *cm_id_priv,
2623 struct ib_sa_path_rec *path,
2624 struct cm_lap_msg *lap_msg)
2626 memset(path, 0, sizeof *path);
2627 path->dgid = lap_msg->alt_local_gid;
2628 path->sgid = lap_msg->alt_remote_gid;
2629 path->dlid = lap_msg->alt_local_lid;
2630 path->slid = lap_msg->alt_remote_lid;
2631 path->flow_label = cm_lap_get_flow_label(lap_msg);
2632 path->hop_limit = lap_msg->alt_hop_limit;
2633 path->traffic_class = cm_lap_get_traffic_class(lap_msg);
2634 path->reversible = 1;
2635 path->pkey = cm_id_priv->pkey;
2636 path->sl = cm_lap_get_sl(lap_msg);
2637 path->mtu_selector = IB_SA_EQ;
2638 path->mtu = cm_id_priv->path_mtu;
2639 path->rate_selector = IB_SA_EQ;
2640 path->rate = cm_lap_get_packet_rate(lap_msg);
2641 path->packet_life_time_selector = IB_SA_EQ;
2642 path->packet_life_time = cm_lap_get_local_ack_timeout(lap_msg);
2643 path->packet_life_time -= (path->packet_life_time > 0);
2646 static int cm_lap_handler(struct cm_work *work)
2648 struct cm_id_private *cm_id_priv;
2649 struct cm_lap_msg *lap_msg;
2650 struct ib_cm_lap_event_param *param;
2651 struct ib_mad_send_buf *msg = NULL;
2654 /* todo: verify LAP request and send reject APR if invalid. */
2655 lap_msg = (struct cm_lap_msg *)work->mad_recv_wc->recv_buf.mad;
2656 cm_id_priv = cm_acquire_id(lap_msg->remote_comm_id,
2657 lap_msg->local_comm_id);
2661 param = &work->cm_event.param.lap_rcvd;
2662 param->alternate_path = &work->path[0];
2663 cm_format_path_from_lap(cm_id_priv, param->alternate_path, lap_msg);
2664 work->cm_event.private_data = &lap_msg->private_data;
2666 spin_lock_irq(&cm_id_priv->lock);
2667 if (cm_id_priv->id.state != IB_CM_ESTABLISHED)
2670 switch (cm_id_priv->id.lap_state) {
2671 case IB_CM_LAP_UNINIT:
2672 case IB_CM_LAP_IDLE:
2674 case IB_CM_MRA_LAP_SENT:
2675 atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
2676 counter[CM_LAP_COUNTER]);
2677 if (cm_alloc_response_msg(work->port, work->mad_recv_wc, &msg))
2680 cm_format_mra((struct cm_mra_msg *) msg->mad, cm_id_priv,
2681 CM_MSG_RESPONSE_OTHER,
2682 cm_id_priv->service_timeout,
2683 cm_id_priv->private_data,
2684 cm_id_priv->private_data_len);
2685 spin_unlock_irq(&cm_id_priv->lock);
2687 if (ib_post_send_mad(msg, NULL))
2690 case IB_CM_LAP_RCVD:
2691 atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
2692 counter[CM_LAP_COUNTER]);
2698 cm_id_priv->id.lap_state = IB_CM_LAP_RCVD;
2699 cm_id_priv->tid = lap_msg->hdr.tid;
2700 cm_init_av_for_response(work->port, work->mad_recv_wc->wc,
2701 work->mad_recv_wc->recv_buf.grh,
2703 cm_init_av_by_path(param->alternate_path, &cm_id_priv->alt_av);
2704 ret = atomic_inc_and_test(&cm_id_priv->work_count);
2706 list_add_tail(&work->list, &cm_id_priv->work_list);
2707 spin_unlock_irq(&cm_id_priv->lock);
2710 cm_process_work(cm_id_priv, work);
2712 cm_deref_id(cm_id_priv);
2715 unlock: spin_unlock_irq(&cm_id_priv->lock);
2716 deref: cm_deref_id(cm_id_priv);
2720 static void cm_format_apr(struct cm_apr_msg *apr_msg,
2721 struct cm_id_private *cm_id_priv,
2722 enum ib_cm_apr_status status,
2725 const void *private_data,
2726 u8 private_data_len)
2728 cm_format_mad_hdr(&apr_msg->hdr, CM_APR_ATTR_ID, cm_id_priv->tid);
2729 apr_msg->local_comm_id = cm_id_priv->id.local_id;
2730 apr_msg->remote_comm_id = cm_id_priv->id.remote_id;
2731 apr_msg->ap_status = (u8) status;
2733 if (info && info_length) {
2734 apr_msg->info_length = info_length;
2735 memcpy(apr_msg->info, info, info_length);
2738 if (private_data && private_data_len)
2739 memcpy(apr_msg->private_data, private_data, private_data_len);
2742 int ib_send_cm_apr(struct ib_cm_id *cm_id,
2743 enum ib_cm_apr_status status,
2746 const void *private_data,
2747 u8 private_data_len)
2749 struct cm_id_private *cm_id_priv;
2750 struct ib_mad_send_buf *msg;
2751 unsigned long flags;
2754 if ((private_data && private_data_len > IB_CM_APR_PRIVATE_DATA_SIZE) ||
2755 (info && info_length > IB_CM_APR_INFO_LENGTH))
2758 cm_id_priv = container_of(cm_id, struct cm_id_private, id);
2759 spin_lock_irqsave(&cm_id_priv->lock, flags);
2760 if (cm_id->state != IB_CM_ESTABLISHED ||
2761 (cm_id->lap_state != IB_CM_LAP_RCVD &&
2762 cm_id->lap_state != IB_CM_MRA_LAP_SENT)) {
2767 ret = cm_alloc_msg(cm_id_priv, &msg);
2771 cm_format_apr((struct cm_apr_msg *) msg->mad, cm_id_priv, status,
2772 info, info_length, private_data, private_data_len);
2773 ret = ib_post_send_mad(msg, NULL);
2775 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
2780 cm_id->lap_state = IB_CM_LAP_IDLE;
2781 out: spin_unlock_irqrestore(&cm_id_priv->lock, flags);
2784 EXPORT_SYMBOL(ib_send_cm_apr);
2786 static int cm_apr_handler(struct cm_work *work)
2788 struct cm_id_private *cm_id_priv;
2789 struct cm_apr_msg *apr_msg;
2792 apr_msg = (struct cm_apr_msg *)work->mad_recv_wc->recv_buf.mad;
2793 cm_id_priv = cm_acquire_id(apr_msg->remote_comm_id,
2794 apr_msg->local_comm_id);
2796 return -EINVAL; /* Unmatched reply. */
2798 work->cm_event.param.apr_rcvd.ap_status = apr_msg->ap_status;
2799 work->cm_event.param.apr_rcvd.apr_info = &apr_msg->info;
2800 work->cm_event.param.apr_rcvd.info_len = apr_msg->info_length;
2801 work->cm_event.private_data = &apr_msg->private_data;
2803 spin_lock_irq(&cm_id_priv->lock);
2804 if (cm_id_priv->id.state != IB_CM_ESTABLISHED ||
2805 (cm_id_priv->id.lap_state != IB_CM_LAP_SENT &&
2806 cm_id_priv->id.lap_state != IB_CM_MRA_LAP_RCVD)) {
2807 spin_unlock_irq(&cm_id_priv->lock);
2810 cm_id_priv->id.lap_state = IB_CM_LAP_IDLE;
2811 ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
2812 cm_id_priv->msg = NULL;
2814 ret = atomic_inc_and_test(&cm_id_priv->work_count);
2816 list_add_tail(&work->list, &cm_id_priv->work_list);
2817 spin_unlock_irq(&cm_id_priv->lock);
2820 cm_process_work(cm_id_priv, work);
2822 cm_deref_id(cm_id_priv);
2825 cm_deref_id(cm_id_priv);
2829 static int cm_timewait_handler(struct cm_work *work)
2831 struct cm_timewait_info *timewait_info;
2832 struct cm_id_private *cm_id_priv;
2835 timewait_info = (struct cm_timewait_info *)work;
2836 spin_lock_irq(&cm.lock);
2837 list_del(&timewait_info->list);
2838 spin_unlock_irq(&cm.lock);
2840 cm_id_priv = cm_acquire_id(timewait_info->work.local_id,
2841 timewait_info->work.remote_id);
2845 spin_lock_irq(&cm_id_priv->lock);
2846 if (cm_id_priv->id.state != IB_CM_TIMEWAIT ||
2847 cm_id_priv->remote_qpn != timewait_info->remote_qpn) {
2848 spin_unlock_irq(&cm_id_priv->lock);
2851 cm_id_priv->id.state = IB_CM_IDLE;
2852 ret = atomic_inc_and_test(&cm_id_priv->work_count);
2854 list_add_tail(&work->list, &cm_id_priv->work_list);
2855 spin_unlock_irq(&cm_id_priv->lock);
2858 cm_process_work(cm_id_priv, work);
2860 cm_deref_id(cm_id_priv);
2863 cm_deref_id(cm_id_priv);
2867 static void cm_format_sidr_req(struct cm_sidr_req_msg *sidr_req_msg,
2868 struct cm_id_private *cm_id_priv,
2869 struct ib_cm_sidr_req_param *param)
2871 cm_format_mad_hdr(&sidr_req_msg->hdr, CM_SIDR_REQ_ATTR_ID,
2872 cm_form_tid(cm_id_priv, CM_MSG_SEQUENCE_SIDR));
2873 sidr_req_msg->request_id = cm_id_priv->id.local_id;
2874 sidr_req_msg->pkey = param->path->pkey;
2875 sidr_req_msg->service_id = param->service_id;
2877 if (param->private_data && param->private_data_len)
2878 memcpy(sidr_req_msg->private_data, param->private_data,
2879 param->private_data_len);
2882 int ib_send_cm_sidr_req(struct ib_cm_id *cm_id,
2883 struct ib_cm_sidr_req_param *param)
2885 struct cm_id_private *cm_id_priv;
2886 struct ib_mad_send_buf *msg;
2887 unsigned long flags;
2890 if (!param->path || (param->private_data &&
2891 param->private_data_len > IB_CM_SIDR_REQ_PRIVATE_DATA_SIZE))
2894 cm_id_priv = container_of(cm_id, struct cm_id_private, id);
2895 ret = cm_init_av_by_path(param->path, &cm_id_priv->av);
2899 cm_id->service_id = param->service_id;
2900 cm_id->service_mask = __constant_cpu_to_be64(~0ULL);
2901 cm_id_priv->timeout_ms = param->timeout_ms;
2902 cm_id_priv->max_cm_retries = param->max_cm_retries;
2903 ret = cm_alloc_msg(cm_id_priv, &msg);
2907 cm_format_sidr_req((struct cm_sidr_req_msg *) msg->mad, cm_id_priv,
2909 msg->timeout_ms = cm_id_priv->timeout_ms;
2910 msg->context[1] = (void *) (unsigned long) IB_CM_SIDR_REQ_SENT;
2912 spin_lock_irqsave(&cm_id_priv->lock, flags);
2913 if (cm_id->state == IB_CM_IDLE)
2914 ret = ib_post_send_mad(msg, NULL);
2919 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
2923 cm_id->state = IB_CM_SIDR_REQ_SENT;
2924 cm_id_priv->msg = msg;
2925 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
2929 EXPORT_SYMBOL(ib_send_cm_sidr_req);
2931 static void cm_format_sidr_req_event(struct cm_work *work,
2932 struct ib_cm_id *listen_id)
2934 struct cm_sidr_req_msg *sidr_req_msg;
2935 struct ib_cm_sidr_req_event_param *param;
2937 sidr_req_msg = (struct cm_sidr_req_msg *)
2938 work->mad_recv_wc->recv_buf.mad;
2939 param = &work->cm_event.param.sidr_req_rcvd;
2940 param->pkey = __be16_to_cpu(sidr_req_msg->pkey);
2941 param->listen_id = listen_id;
2942 param->port = work->port->port_num;
2943 work->cm_event.private_data = &sidr_req_msg->private_data;
2946 static int cm_sidr_req_handler(struct cm_work *work)
2948 struct ib_cm_id *cm_id;
2949 struct cm_id_private *cm_id_priv, *cur_cm_id_priv;
2950 struct cm_sidr_req_msg *sidr_req_msg;
2953 cm_id = ib_create_cm_id(work->port->cm_dev->device, NULL, NULL);
2955 return PTR_ERR(cm_id);
2956 cm_id_priv = container_of(cm_id, struct cm_id_private, id);
2958 /* Record SGID/SLID and request ID for lookup. */
2959 sidr_req_msg = (struct cm_sidr_req_msg *)
2960 work->mad_recv_wc->recv_buf.mad;
2961 wc = work->mad_recv_wc->wc;
2962 cm_id_priv->av.dgid.global.subnet_prefix = cpu_to_be64(wc->slid);
2963 cm_id_priv->av.dgid.global.interface_id = 0;
2964 cm_init_av_for_response(work->port, work->mad_recv_wc->wc,
2965 work->mad_recv_wc->recv_buf.grh,
2967 cm_id_priv->id.remote_id = sidr_req_msg->request_id;
2968 cm_id_priv->tid = sidr_req_msg->hdr.tid;
2969 atomic_inc(&cm_id_priv->work_count);
2971 spin_lock_irq(&cm.lock);
2972 cur_cm_id_priv = cm_insert_remote_sidr(cm_id_priv);
2973 if (cur_cm_id_priv) {
2974 spin_unlock_irq(&cm.lock);
2975 atomic_long_inc(&work->port->counter_group[CM_RECV_DUPLICATES].
2976 counter[CM_SIDR_REQ_COUNTER]);
2977 goto out; /* Duplicate message. */
2979 cm_id_priv->id.state = IB_CM_SIDR_REQ_RCVD;
2980 cur_cm_id_priv = cm_find_listen(cm_id->device,
2981 sidr_req_msg->service_id,
2982 sidr_req_msg->private_data);
2983 if (!cur_cm_id_priv) {
2984 spin_unlock_irq(&cm.lock);
2985 cm_reject_sidr_req(cm_id_priv, IB_SIDR_UNSUPPORTED);
2986 goto out; /* No match. */
2988 atomic_inc(&cur_cm_id_priv->refcount);
2989 spin_unlock_irq(&cm.lock);
2991 cm_id_priv->id.cm_handler = cur_cm_id_priv->id.cm_handler;
2992 cm_id_priv->id.context = cur_cm_id_priv->id.context;
2993 cm_id_priv->id.service_id = sidr_req_msg->service_id;
2994 cm_id_priv->id.service_mask = __constant_cpu_to_be64(~0ULL);
2996 cm_format_sidr_req_event(work, &cur_cm_id_priv->id);
2997 cm_process_work(cm_id_priv, work);
2998 cm_deref_id(cur_cm_id_priv);
3001 ib_destroy_cm_id(&cm_id_priv->id);
3005 static void cm_format_sidr_rep(struct cm_sidr_rep_msg *sidr_rep_msg,
3006 struct cm_id_private *cm_id_priv,
3007 struct ib_cm_sidr_rep_param *param)
3009 cm_format_mad_hdr(&sidr_rep_msg->hdr, CM_SIDR_REP_ATTR_ID,
3011 sidr_rep_msg->request_id = cm_id_priv->id.remote_id;
3012 sidr_rep_msg->status = param->status;
3013 cm_sidr_rep_set_qpn(sidr_rep_msg, cpu_to_be32(param->qp_num));
3014 sidr_rep_msg->service_id = cm_id_priv->id.service_id;
3015 sidr_rep_msg->qkey = cpu_to_be32(param->qkey);
3017 if (param->info && param->info_length)
3018 memcpy(sidr_rep_msg->info, param->info, param->info_length);
3020 if (param->private_data && param->private_data_len)
3021 memcpy(sidr_rep_msg->private_data, param->private_data,
3022 param->private_data_len);
3025 int ib_send_cm_sidr_rep(struct ib_cm_id *cm_id,
3026 struct ib_cm_sidr_rep_param *param)
3028 struct cm_id_private *cm_id_priv;
3029 struct ib_mad_send_buf *msg;
3030 unsigned long flags;
3033 if ((param->info && param->info_length > IB_CM_SIDR_REP_INFO_LENGTH) ||
3034 (param->private_data &&
3035 param->private_data_len > IB_CM_SIDR_REP_PRIVATE_DATA_SIZE))
3038 cm_id_priv = container_of(cm_id, struct cm_id_private, id);
3039 spin_lock_irqsave(&cm_id_priv->lock, flags);
3040 if (cm_id->state != IB_CM_SIDR_REQ_RCVD) {
3045 ret = cm_alloc_msg(cm_id_priv, &msg);
3049 cm_format_sidr_rep((struct cm_sidr_rep_msg *) msg->mad, cm_id_priv,
3051 ret = ib_post_send_mad(msg, NULL);
3053 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
3057 cm_id->state = IB_CM_IDLE;
3058 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
3060 spin_lock_irqsave(&cm.lock, flags);
3061 rb_erase(&cm_id_priv->sidr_id_node, &cm.remote_sidr_table);
3062 spin_unlock_irqrestore(&cm.lock, flags);
3065 error: spin_unlock_irqrestore(&cm_id_priv->lock, flags);
3068 EXPORT_SYMBOL(ib_send_cm_sidr_rep);
3070 static void cm_format_sidr_rep_event(struct cm_work *work)
3072 struct cm_sidr_rep_msg *sidr_rep_msg;
3073 struct ib_cm_sidr_rep_event_param *param;
3075 sidr_rep_msg = (struct cm_sidr_rep_msg *)
3076 work->mad_recv_wc->recv_buf.mad;
3077 param = &work->cm_event.param.sidr_rep_rcvd;
3078 param->status = sidr_rep_msg->status;
3079 param->qkey = be32_to_cpu(sidr_rep_msg->qkey);
3080 param->qpn = be32_to_cpu(cm_sidr_rep_get_qpn(sidr_rep_msg));
3081 param->info = &sidr_rep_msg->info;
3082 param->info_len = sidr_rep_msg->info_length;
3083 work->cm_event.private_data = &sidr_rep_msg->private_data;
3086 static int cm_sidr_rep_handler(struct cm_work *work)
3088 struct cm_sidr_rep_msg *sidr_rep_msg;
3089 struct cm_id_private *cm_id_priv;
3091 sidr_rep_msg = (struct cm_sidr_rep_msg *)
3092 work->mad_recv_wc->recv_buf.mad;
3093 cm_id_priv = cm_acquire_id(sidr_rep_msg->request_id, 0);
3095 return -EINVAL; /* Unmatched reply. */
3097 spin_lock_irq(&cm_id_priv->lock);
3098 if (cm_id_priv->id.state != IB_CM_SIDR_REQ_SENT) {
3099 spin_unlock_irq(&cm_id_priv->lock);
3102 cm_id_priv->id.state = IB_CM_IDLE;
3103 ib_cancel_mad(cm_id_priv->av.port->mad_agent, cm_id_priv->msg);
3104 spin_unlock_irq(&cm_id_priv->lock);
3106 cm_format_sidr_rep_event(work);
3107 cm_process_work(cm_id_priv, work);
3110 cm_deref_id(cm_id_priv);
3114 static void cm_process_send_error(struct ib_mad_send_buf *msg,
3115 enum ib_wc_status wc_status)
3117 struct cm_id_private *cm_id_priv;
3118 struct ib_cm_event cm_event;
3119 enum ib_cm_state state;
3122 memset(&cm_event, 0, sizeof cm_event);
3123 cm_id_priv = msg->context[0];
3125 /* Discard old sends or ones without a response. */
3126 spin_lock_irq(&cm_id_priv->lock);
3127 state = (enum ib_cm_state) (unsigned long) msg->context[1];
3128 if (msg != cm_id_priv->msg || state != cm_id_priv->id.state)
3132 case IB_CM_REQ_SENT:
3133 case IB_CM_MRA_REQ_RCVD:
3134 cm_reset_to_idle(cm_id_priv);
3135 cm_event.event = IB_CM_REQ_ERROR;
3137 case IB_CM_REP_SENT:
3138 case IB_CM_MRA_REP_RCVD:
3139 cm_reset_to_idle(cm_id_priv);
3140 cm_event.event = IB_CM_REP_ERROR;
3142 case IB_CM_DREQ_SENT:
3143 cm_enter_timewait(cm_id_priv);
3144 cm_event.event = IB_CM_DREQ_ERROR;
3146 case IB_CM_SIDR_REQ_SENT:
3147 cm_id_priv->id.state = IB_CM_IDLE;
3148 cm_event.event = IB_CM_SIDR_REQ_ERROR;
3153 spin_unlock_irq(&cm_id_priv->lock);
3154 cm_event.param.send_status = wc_status;
3156 /* No other events can occur on the cm_id at this point. */
3157 ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, &cm_event);
3160 ib_destroy_cm_id(&cm_id_priv->id);
3163 spin_unlock_irq(&cm_id_priv->lock);
3167 static void cm_send_handler(struct ib_mad_agent *mad_agent,
3168 struct ib_mad_send_wc *mad_send_wc)
3170 struct ib_mad_send_buf *msg = mad_send_wc->send_buf;
3171 struct cm_port *port;
3174 port = mad_agent->context;
3175 attr_index = be16_to_cpu(((struct ib_mad_hdr *)
3176 msg->mad)->attr_id) - CM_ATTR_ID_OFFSET;
3179 * If the send was in response to a received message (context[0] is not
3180 * set to a cm_id), and is not a REJ, then it is a send that was
3183 if (!msg->context[0] && (attr_index != CM_REJ_COUNTER))
3186 atomic_long_add(1 + msg->retries,
3187 &port->counter_group[CM_XMIT].counter[attr_index]);
3189 atomic_long_add(msg->retries,
3190 &port->counter_group[CM_XMIT_RETRIES].
3191 counter[attr_index]);
3193 switch (mad_send_wc->status) {
3195 case IB_WC_WR_FLUSH_ERR:
3199 if (msg->context[0] && msg->context[1])
3200 cm_process_send_error(msg, mad_send_wc->status);
3207 static void cm_work_handler(struct work_struct *_work)
3209 struct cm_work *work = container_of(_work, struct cm_work, work.work);
3212 switch (work->cm_event.event) {
3213 case IB_CM_REQ_RECEIVED:
3214 ret = cm_req_handler(work);
3216 case IB_CM_MRA_RECEIVED:
3217 ret = cm_mra_handler(work);
3219 case IB_CM_REJ_RECEIVED:
3220 ret = cm_rej_handler(work);
3222 case IB_CM_REP_RECEIVED:
3223 ret = cm_rep_handler(work);
3225 case IB_CM_RTU_RECEIVED:
3226 ret = cm_rtu_handler(work);
3228 case IB_CM_USER_ESTABLISHED:
3229 ret = cm_establish_handler(work);
3231 case IB_CM_DREQ_RECEIVED:
3232 ret = cm_dreq_handler(work);
3234 case IB_CM_DREP_RECEIVED:
3235 ret = cm_drep_handler(work);
3237 case IB_CM_SIDR_REQ_RECEIVED:
3238 ret = cm_sidr_req_handler(work);
3240 case IB_CM_SIDR_REP_RECEIVED:
3241 ret = cm_sidr_rep_handler(work);
3243 case IB_CM_LAP_RECEIVED:
3244 ret = cm_lap_handler(work);
3246 case IB_CM_APR_RECEIVED:
3247 ret = cm_apr_handler(work);
3249 case IB_CM_TIMEWAIT_EXIT:
3250 ret = cm_timewait_handler(work);
3260 static int cm_establish(struct ib_cm_id *cm_id)
3262 struct cm_id_private *cm_id_priv;
3263 struct cm_work *work;
3264 unsigned long flags;
3267 work = kmalloc(sizeof *work, GFP_ATOMIC);
3271 cm_id_priv = container_of(cm_id, struct cm_id_private, id);
3272 spin_lock_irqsave(&cm_id_priv->lock, flags);
3273 switch (cm_id->state)
3275 case IB_CM_REP_SENT:
3276 case IB_CM_MRA_REP_RCVD:
3277 cm_id->state = IB_CM_ESTABLISHED;
3279 case IB_CM_ESTABLISHED:
3286 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
3294 * The CM worker thread may try to destroy the cm_id before it
3295 * can execute this work item. To prevent potential deadlock,
3296 * we need to find the cm_id once we're in the context of the
3297 * worker thread, rather than holding a reference on it.
3299 INIT_DELAYED_WORK(&work->work, cm_work_handler);
3300 work->local_id = cm_id->local_id;
3301 work->remote_id = cm_id->remote_id;
3302 work->mad_recv_wc = NULL;
3303 work->cm_event.event = IB_CM_USER_ESTABLISHED;
3304 queue_delayed_work(cm.wq, &work->work, 0);
3309 static int cm_migrate(struct ib_cm_id *cm_id)
3311 struct cm_id_private *cm_id_priv;
3312 unsigned long flags;
3315 cm_id_priv = container_of(cm_id, struct cm_id_private, id);
3316 spin_lock_irqsave(&cm_id_priv->lock, flags);
3317 if (cm_id->state == IB_CM_ESTABLISHED &&
3318 (cm_id->lap_state == IB_CM_LAP_UNINIT ||
3319 cm_id->lap_state == IB_CM_LAP_IDLE)) {
3320 cm_id->lap_state = IB_CM_LAP_IDLE;
3321 cm_id_priv->av = cm_id_priv->alt_av;
3324 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
3329 int ib_cm_notify(struct ib_cm_id *cm_id, enum ib_event_type event)
3334 case IB_EVENT_COMM_EST:
3335 ret = cm_establish(cm_id);
3337 case IB_EVENT_PATH_MIG:
3338 ret = cm_migrate(cm_id);
3345 EXPORT_SYMBOL(ib_cm_notify);
3347 static void cm_recv_handler(struct ib_mad_agent *mad_agent,
3348 struct ib_mad_recv_wc *mad_recv_wc)
3350 struct cm_port *port = mad_agent->context;
3351 struct cm_work *work;
3352 enum ib_cm_event_type event;
3356 switch (mad_recv_wc->recv_buf.mad->mad_hdr.attr_id) {
3357 case CM_REQ_ATTR_ID:
3358 paths = 1 + (((struct cm_req_msg *) mad_recv_wc->recv_buf.mad)->
3359 alt_local_lid != 0);
3360 event = IB_CM_REQ_RECEIVED;
3362 case CM_MRA_ATTR_ID:
3363 event = IB_CM_MRA_RECEIVED;
3365 case CM_REJ_ATTR_ID:
3366 event = IB_CM_REJ_RECEIVED;
3368 case CM_REP_ATTR_ID:
3369 event = IB_CM_REP_RECEIVED;
3371 case CM_RTU_ATTR_ID:
3372 event = IB_CM_RTU_RECEIVED;
3374 case CM_DREQ_ATTR_ID:
3375 event = IB_CM_DREQ_RECEIVED;
3377 case CM_DREP_ATTR_ID:
3378 event = IB_CM_DREP_RECEIVED;
3380 case CM_SIDR_REQ_ATTR_ID:
3381 event = IB_CM_SIDR_REQ_RECEIVED;
3383 case CM_SIDR_REP_ATTR_ID:
3384 event = IB_CM_SIDR_REP_RECEIVED;
3386 case CM_LAP_ATTR_ID:
3388 event = IB_CM_LAP_RECEIVED;
3390 case CM_APR_ATTR_ID:
3391 event = IB_CM_APR_RECEIVED;
3394 ib_free_recv_mad(mad_recv_wc);
3398 attr_id = be16_to_cpu(mad_recv_wc->recv_buf.mad->mad_hdr.attr_id);
3399 atomic_long_inc(&port->counter_group[CM_RECV].
3400 counter[attr_id - CM_ATTR_ID_OFFSET]);
3402 work = kmalloc(sizeof *work + sizeof(struct ib_sa_path_rec) * paths,
3405 ib_free_recv_mad(mad_recv_wc);
3409 INIT_DELAYED_WORK(&work->work, cm_work_handler);
3410 work->cm_event.event = event;
3411 work->mad_recv_wc = mad_recv_wc;
3413 queue_delayed_work(cm.wq, &work->work, 0);
3416 static int cm_init_qp_init_attr(struct cm_id_private *cm_id_priv,
3417 struct ib_qp_attr *qp_attr,
3420 unsigned long flags;
3423 spin_lock_irqsave(&cm_id_priv->lock, flags);
3424 switch (cm_id_priv->id.state) {
3425 case IB_CM_REQ_SENT:
3426 case IB_CM_MRA_REQ_RCVD:
3427 case IB_CM_REQ_RCVD:
3428 case IB_CM_MRA_REQ_SENT:
3429 case IB_CM_REP_RCVD:
3430 case IB_CM_MRA_REP_SENT:
3431 case IB_CM_REP_SENT:
3432 case IB_CM_MRA_REP_RCVD:
3433 case IB_CM_ESTABLISHED:
3434 *qp_attr_mask = IB_QP_STATE | IB_QP_ACCESS_FLAGS |
3435 IB_QP_PKEY_INDEX | IB_QP_PORT;
3436 qp_attr->qp_access_flags = IB_ACCESS_REMOTE_WRITE;
3437 if (cm_id_priv->responder_resources)
3438 qp_attr->qp_access_flags |= IB_ACCESS_REMOTE_READ |
3439 IB_ACCESS_REMOTE_ATOMIC;
3440 qp_attr->pkey_index = cm_id_priv->av.pkey_index;
3441 qp_attr->port_num = cm_id_priv->av.port->port_num;
3448 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
3452 static int cm_init_qp_rtr_attr(struct cm_id_private *cm_id_priv,
3453 struct ib_qp_attr *qp_attr,
3456 unsigned long flags;
3459 spin_lock_irqsave(&cm_id_priv->lock, flags);
3460 switch (cm_id_priv->id.state) {
3461 case IB_CM_REQ_RCVD:
3462 case IB_CM_MRA_REQ_SENT:
3463 case IB_CM_REP_RCVD:
3464 case IB_CM_MRA_REP_SENT:
3465 case IB_CM_REP_SENT:
3466 case IB_CM_MRA_REP_RCVD:
3467 case IB_CM_ESTABLISHED:
3468 *qp_attr_mask = IB_QP_STATE | IB_QP_AV | IB_QP_PATH_MTU |
3469 IB_QP_DEST_QPN | IB_QP_RQ_PSN;
3470 qp_attr->ah_attr = cm_id_priv->av.ah_attr;
3471 qp_attr->path_mtu = cm_id_priv->path_mtu;
3472 qp_attr->dest_qp_num = be32_to_cpu(cm_id_priv->remote_qpn);
3473 qp_attr->rq_psn = be32_to_cpu(cm_id_priv->rq_psn);
3474 if (cm_id_priv->qp_type == IB_QPT_RC) {
3475 *qp_attr_mask |= IB_QP_MAX_DEST_RD_ATOMIC |
3476 IB_QP_MIN_RNR_TIMER;
3477 qp_attr->max_dest_rd_atomic =
3478 cm_id_priv->responder_resources;
3479 qp_attr->min_rnr_timer = 0;
3481 if (cm_id_priv->alt_av.ah_attr.dlid) {
3482 *qp_attr_mask |= IB_QP_ALT_PATH;
3483 qp_attr->alt_port_num = cm_id_priv->alt_av.port->port_num;
3484 qp_attr->alt_pkey_index = cm_id_priv->alt_av.pkey_index;
3485 qp_attr->alt_timeout = cm_id_priv->alt_av.timeout;
3486 qp_attr->alt_ah_attr = cm_id_priv->alt_av.ah_attr;
3494 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
3498 static int cm_init_qp_rts_attr(struct cm_id_private *cm_id_priv,
3499 struct ib_qp_attr *qp_attr,
3502 unsigned long flags;
3505 spin_lock_irqsave(&cm_id_priv->lock, flags);
3506 switch (cm_id_priv->id.state) {
3507 /* Allow transition to RTS before sending REP */
3508 case IB_CM_REQ_RCVD:
3509 case IB_CM_MRA_REQ_SENT:
3511 case IB_CM_REP_RCVD:
3512 case IB_CM_MRA_REP_SENT:
3513 case IB_CM_REP_SENT:
3514 case IB_CM_MRA_REP_RCVD:
3515 case IB_CM_ESTABLISHED:
3516 if (cm_id_priv->id.lap_state == IB_CM_LAP_UNINIT) {
3517 *qp_attr_mask = IB_QP_STATE | IB_QP_SQ_PSN;
3518 qp_attr->sq_psn = be32_to_cpu(cm_id_priv->sq_psn);
3519 if (cm_id_priv->qp_type == IB_QPT_RC) {
3520 *qp_attr_mask |= IB_QP_TIMEOUT | IB_QP_RETRY_CNT |
3522 IB_QP_MAX_QP_RD_ATOMIC;
3523 qp_attr->timeout = cm_id_priv->av.timeout;
3524 qp_attr->retry_cnt = cm_id_priv->retry_count;
3525 qp_attr->rnr_retry = cm_id_priv->rnr_retry_count;
3526 qp_attr->max_rd_atomic =
3527 cm_id_priv->initiator_depth;
3529 if (cm_id_priv->alt_av.ah_attr.dlid) {
3530 *qp_attr_mask |= IB_QP_PATH_MIG_STATE;
3531 qp_attr->path_mig_state = IB_MIG_REARM;
3534 *qp_attr_mask = IB_QP_ALT_PATH | IB_QP_PATH_MIG_STATE;
3535 qp_attr->alt_port_num = cm_id_priv->alt_av.port->port_num;
3536 qp_attr->alt_pkey_index = cm_id_priv->alt_av.pkey_index;
3537 qp_attr->alt_timeout = cm_id_priv->alt_av.timeout;
3538 qp_attr->alt_ah_attr = cm_id_priv->alt_av.ah_attr;
3539 qp_attr->path_mig_state = IB_MIG_REARM;
3547 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
3551 int ib_cm_init_qp_attr(struct ib_cm_id *cm_id,
3552 struct ib_qp_attr *qp_attr,
3555 struct cm_id_private *cm_id_priv;
3558 cm_id_priv = container_of(cm_id, struct cm_id_private, id);
3559 switch (qp_attr->qp_state) {
3561 ret = cm_init_qp_init_attr(cm_id_priv, qp_attr, qp_attr_mask);
3564 ret = cm_init_qp_rtr_attr(cm_id_priv, qp_attr, qp_attr_mask);
3567 ret = cm_init_qp_rts_attr(cm_id_priv, qp_attr, qp_attr_mask);
3575 EXPORT_SYMBOL(ib_cm_init_qp_attr);
3577 static void cm_get_ack_delay(struct cm_device *cm_dev)
3579 struct ib_device_attr attr;
3581 if (ib_query_device(cm_dev->device, &attr))
3582 cm_dev->ack_delay = 0; /* acks will rely on packet life time */
3584 cm_dev->ack_delay = attr.local_ca_ack_delay;
3587 static ssize_t cm_show_counter(struct kobject *obj, struct attribute *attr,
3590 struct cm_counter_group *group;
3591 struct cm_counter_attribute *cm_attr;
3593 group = container_of(obj, struct cm_counter_group, obj);
3594 cm_attr = container_of(attr, struct cm_counter_attribute, attr);
3596 return sprintf(buf, "%ld\n",
3597 atomic_long_read(&group->counter[cm_attr->index]));
3600 static struct sysfs_ops cm_counter_ops = {
3601 .show = cm_show_counter
3604 static struct kobj_type cm_counter_obj_type = {
3605 .sysfs_ops = &cm_counter_ops,
3606 .default_attrs = cm_counter_default_attrs
3609 static void cm_release_port_obj(struct kobject *obj)
3611 struct cm_port *cm_port;
3613 cm_port = container_of(obj, struct cm_port, port_obj);
3617 static struct kobj_type cm_port_obj_type = {
3618 .release = cm_release_port_obj
3621 static void cm_release_dev_obj(struct kobject *obj)
3623 struct cm_device *cm_dev;
3625 cm_dev = container_of(obj, struct cm_device, dev_obj);
3629 static struct kobj_type cm_dev_obj_type = {
3630 .release = cm_release_dev_obj
3633 struct class cm_class = {
3634 .name = "infiniband_cm",
3636 EXPORT_SYMBOL(cm_class);
3638 static int cm_create_port_fs(struct cm_port *port)
3642 ret = kobject_init_and_add(&port->port_obj, &cm_port_obj_type,
3643 &port->cm_dev->dev_obj,
3644 "%d", port->port_num);
3650 for (i = 0; i < CM_COUNTER_GROUPS; i++) {
3651 ret = kobject_init_and_add(&port->counter_group[i].obj,
3652 &cm_counter_obj_type,
3654 "%s", counter_group_names[i]);
3663 kobject_put(&port->counter_group[i].obj);
3664 kobject_put(&port->port_obj);
3669 static void cm_remove_port_fs(struct cm_port *port)
3673 for (i = 0; i < CM_COUNTER_GROUPS; i++)
3674 kobject_put(&port->counter_group[i].obj);
3676 kobject_put(&port->port_obj);
3679 static void cm_add_one(struct ib_device *device)
3681 struct cm_device *cm_dev;
3682 struct cm_port *port;
3683 struct ib_mad_reg_req reg_req = {
3684 .mgmt_class = IB_MGMT_CLASS_CM,
3685 .mgmt_class_version = IB_CM_CLASS_VERSION
3687 struct ib_port_modify port_modify = {
3688 .set_port_cap_mask = IB_PORT_CM_SUP
3690 unsigned long flags;
3694 if (rdma_node_get_transport(device->node_type) != RDMA_TRANSPORT_IB)
3697 cm_dev = kzalloc(sizeof(*cm_dev) + sizeof(*port) *
3698 device->phys_port_cnt, GFP_KERNEL);
3702 cm_dev->device = device;
3703 cm_get_ack_delay(cm_dev);
3705 ret = kobject_init_and_add(&cm_dev->dev_obj, &cm_dev_obj_type,
3706 &cm_class.subsys.kobj, "%s", device->name);
3712 set_bit(IB_MGMT_METHOD_SEND, reg_req.method_mask);
3713 for (i = 1; i <= device->phys_port_cnt; i++) {
3714 port = kzalloc(sizeof *port, GFP_KERNEL);
3718 cm_dev->port[i-1] = port;
3719 port->cm_dev = cm_dev;
3722 ret = cm_create_port_fs(port);
3726 port->mad_agent = ib_register_mad_agent(device, i,
3733 if (IS_ERR(port->mad_agent))
3736 ret = ib_modify_port(device, i, 0, &port_modify);
3740 ib_set_client_data(device, &cm_client, cm_dev);
3742 write_lock_irqsave(&cm.device_lock, flags);
3743 list_add_tail(&cm_dev->list, &cm.device_list);
3744 write_unlock_irqrestore(&cm.device_lock, flags);
3748 ib_unregister_mad_agent(port->mad_agent);
3750 cm_remove_port_fs(port);
3752 port_modify.set_port_cap_mask = 0;
3753 port_modify.clr_port_cap_mask = IB_PORT_CM_SUP;
3755 port = cm_dev->port[i-1];
3756 ib_modify_port(device, port->port_num, 0, &port_modify);
3757 ib_unregister_mad_agent(port->mad_agent);
3758 cm_remove_port_fs(port);
3760 kobject_put(&cm_dev->dev_obj);
3763 static void cm_remove_one(struct ib_device *device)
3765 struct cm_device *cm_dev;
3766 struct cm_port *port;
3767 struct ib_port_modify port_modify = {
3768 .clr_port_cap_mask = IB_PORT_CM_SUP
3770 unsigned long flags;
3773 cm_dev = ib_get_client_data(device, &cm_client);
3777 write_lock_irqsave(&cm.device_lock, flags);
3778 list_del(&cm_dev->list);
3779 write_unlock_irqrestore(&cm.device_lock, flags);
3781 for (i = 1; i <= device->phys_port_cnt; i++) {
3782 port = cm_dev->port[i-1];
3783 ib_modify_port(device, port->port_num, 0, &port_modify);
3784 ib_unregister_mad_agent(port->mad_agent);
3785 flush_workqueue(cm.wq);
3786 cm_remove_port_fs(port);
3788 kobject_put(&cm_dev->dev_obj);
3791 static int __init ib_cm_init(void)
3795 memset(&cm, 0, sizeof cm);
3796 INIT_LIST_HEAD(&cm.device_list);
3797 rwlock_init(&cm.device_lock);
3798 spin_lock_init(&cm.lock);
3799 cm.listen_service_table = RB_ROOT;
3800 cm.listen_service_id = __constant_be64_to_cpu(IB_CM_ASSIGN_SERVICE_ID);
3801 cm.remote_id_table = RB_ROOT;
3802 cm.remote_qp_table = RB_ROOT;
3803 cm.remote_sidr_table = RB_ROOT;
3804 idr_init(&cm.local_id_table);
3805 get_random_bytes(&cm.random_id_operand, sizeof cm.random_id_operand);
3806 idr_pre_get(&cm.local_id_table, GFP_KERNEL);
3807 INIT_LIST_HEAD(&cm.timewait_list);
3809 ret = class_register(&cm_class);
3813 cm.wq = create_workqueue("ib_cm");
3819 ret = ib_register_client(&cm_client);
3825 destroy_workqueue(cm.wq);
3827 class_unregister(&cm_class);
3831 static void __exit ib_cm_cleanup(void)
3833 struct cm_timewait_info *timewait_info, *tmp;
3835 spin_lock_irq(&cm.lock);
3836 list_for_each_entry(timewait_info, &cm.timewait_list, list)
3837 cancel_delayed_work(&timewait_info->work.work);
3838 spin_unlock_irq(&cm.lock);
3840 ib_unregister_client(&cm_client);
3841 destroy_workqueue(cm.wq);
3843 list_for_each_entry_safe(timewait_info, tmp, &cm.timewait_list, list) {
3844 list_del(&timewait_info->list);
3845 kfree(timewait_info);
3848 class_unregister(&cm_class);
3849 idr_destroy(&cm.local_id_table);
3852 module_init(ib_cm_init);
3853 module_exit(ib_cm_cleanup);