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/module.h>
40 #include <linux/err.h>
41 #include <linux/idr.h>
42 #include <linux/interrupt.h>
43 #include <linux/random.h>
44 #include <linux/rbtree.h>
45 #include <linux/spinlock.h>
46 #include <linux/slab.h>
47 #include <linux/sysfs.h>
48 #include <linux/workqueue.h>
49 #include <linux/kdev_t.h>
51 #include <rdma/ib_cache.h>
52 #include <rdma/ib_cm.h>
55 MODULE_AUTHOR("Sean Hefty");
56 MODULE_DESCRIPTION("InfiniBand CM");
57 MODULE_LICENSE("Dual BSD/GPL");
59 static void cm_add_one(struct ib_device
*device
);
60 static void cm_remove_one(struct ib_device
*device
);
62 static struct ib_client cm_client
= {
65 .remove
= cm_remove_one
70 struct list_head device_list
;
72 struct rb_root listen_service_table
;
73 u64 listen_service_id
;
74 /* struct rb_root peer_service_table; todo: fix peer to peer */
75 struct rb_root remote_qp_table
;
76 struct rb_root remote_id_table
;
77 struct rb_root remote_sidr_table
;
78 struct idr local_id_table
;
79 __be32 random_id_operand
;
80 struct list_head timewait_list
;
81 struct workqueue_struct
*wq
;
84 /* Counter indexes ordered by attribute ID */
98 CM_ATTR_ID_OFFSET
= 0x0010,
109 static char const counter_group_names
[CM_COUNTER_GROUPS
]
110 [sizeof("cm_rx_duplicates")] = {
111 "cm_tx_msgs", "cm_tx_retries",
112 "cm_rx_msgs", "cm_rx_duplicates"
115 struct cm_counter_group
{
117 atomic_long_t counter
[CM_ATTR_COUNT
];
120 struct cm_counter_attribute
{
121 struct attribute attr
;
125 #define CM_COUNTER_ATTR(_name, _index) \
126 struct cm_counter_attribute cm_##_name##_counter_attr = { \
127 .attr = { .name = __stringify(_name), .mode = 0444 }, \
131 static CM_COUNTER_ATTR(req
, CM_REQ_COUNTER
);
132 static CM_COUNTER_ATTR(mra
, CM_MRA_COUNTER
);
133 static CM_COUNTER_ATTR(rej
, CM_REJ_COUNTER
);
134 static CM_COUNTER_ATTR(rep
, CM_REP_COUNTER
);
135 static CM_COUNTER_ATTR(rtu
, CM_RTU_COUNTER
);
136 static CM_COUNTER_ATTR(dreq
, CM_DREQ_COUNTER
);
137 static CM_COUNTER_ATTR(drep
, CM_DREP_COUNTER
);
138 static CM_COUNTER_ATTR(sidr_req
, CM_SIDR_REQ_COUNTER
);
139 static CM_COUNTER_ATTR(sidr_rep
, CM_SIDR_REP_COUNTER
);
140 static CM_COUNTER_ATTR(lap
, CM_LAP_COUNTER
);
141 static CM_COUNTER_ATTR(apr
, CM_APR_COUNTER
);
143 static struct attribute
*cm_counter_default_attrs
[] = {
144 &cm_req_counter_attr
.attr
,
145 &cm_mra_counter_attr
.attr
,
146 &cm_rej_counter_attr
.attr
,
147 &cm_rep_counter_attr
.attr
,
148 &cm_rtu_counter_attr
.attr
,
149 &cm_dreq_counter_attr
.attr
,
150 &cm_drep_counter_attr
.attr
,
151 &cm_sidr_req_counter_attr
.attr
,
152 &cm_sidr_rep_counter_attr
.attr
,
153 &cm_lap_counter_attr
.attr
,
154 &cm_apr_counter_attr
.attr
,
159 struct cm_device
*cm_dev
;
160 struct ib_mad_agent
*mad_agent
;
161 struct kobject port_obj
;
163 struct cm_counter_group counter_group
[CM_COUNTER_GROUPS
];
167 struct list_head list
;
168 struct ib_device
*ib_device
;
169 struct device
*device
;
171 struct cm_port
*port
[0];
175 struct cm_port
*port
;
177 struct ib_ah_attr ah_attr
;
183 struct delayed_work work
;
184 struct list_head list
;
185 struct cm_port
*port
;
186 struct ib_mad_recv_wc
*mad_recv_wc
; /* Received MADs */
187 __be32 local_id
; /* Established / timewait */
189 struct ib_cm_event cm_event
;
190 struct ib_sa_path_rec path
[0];
193 struct cm_timewait_info
{
194 struct cm_work work
; /* Must be first. */
195 struct list_head list
;
196 struct rb_node remote_qp_node
;
197 struct rb_node remote_id_node
;
198 __be64 remote_ca_guid
;
200 u8 inserted_remote_qp
;
201 u8 inserted_remote_id
;
204 struct cm_id_private
{
207 struct rb_node service_node
;
208 struct rb_node sidr_id_node
;
209 spinlock_t lock
; /* Do not acquire inside cm.lock */
210 struct completion comp
;
213 struct ib_mad_send_buf
*msg
;
214 struct cm_timewait_info
*timewait_info
;
215 /* todo: use alternate port on send failure */
218 struct ib_cm_compare_data
*compare_data
;
224 enum ib_qp_type qp_type
;
228 enum ib_mtu path_mtu
;
233 u8 responder_resources
;
240 struct list_head work_list
;
244 static void cm_work_handler(struct work_struct
*work
);
246 static inline void cm_deref_id(struct cm_id_private
*cm_id_priv
)
248 if (atomic_dec_and_test(&cm_id_priv
->refcount
))
249 complete(&cm_id_priv
->comp
);
252 static int cm_alloc_msg(struct cm_id_private
*cm_id_priv
,
253 struct ib_mad_send_buf
**msg
)
255 struct ib_mad_agent
*mad_agent
;
256 struct ib_mad_send_buf
*m
;
259 mad_agent
= cm_id_priv
->av
.port
->mad_agent
;
260 ah
= ib_create_ah(mad_agent
->qp
->pd
, &cm_id_priv
->av
.ah_attr
);
264 m
= ib_create_send_mad(mad_agent
, cm_id_priv
->id
.remote_cm_qpn
,
265 cm_id_priv
->av
.pkey_index
,
266 0, IB_MGMT_MAD_HDR
, IB_MGMT_MAD_DATA
,
273 /* Timeout set by caller if response is expected. */
275 m
->retries
= cm_id_priv
->max_cm_retries
;
277 atomic_inc(&cm_id_priv
->refcount
);
278 m
->context
[0] = cm_id_priv
;
283 static int cm_alloc_response_msg(struct cm_port
*port
,
284 struct ib_mad_recv_wc
*mad_recv_wc
,
285 struct ib_mad_send_buf
**msg
)
287 struct ib_mad_send_buf
*m
;
290 ah
= ib_create_ah_from_wc(port
->mad_agent
->qp
->pd
, mad_recv_wc
->wc
,
291 mad_recv_wc
->recv_buf
.grh
, port
->port_num
);
295 m
= ib_create_send_mad(port
->mad_agent
, 1, mad_recv_wc
->wc
->pkey_index
,
296 0, IB_MGMT_MAD_HDR
, IB_MGMT_MAD_DATA
,
307 static void cm_free_msg(struct ib_mad_send_buf
*msg
)
309 ib_destroy_ah(msg
->ah
);
311 cm_deref_id(msg
->context
[0]);
312 ib_free_send_mad(msg
);
315 static void * cm_copy_private_data(const void *private_data
,
320 if (!private_data
|| !private_data_len
)
323 data
= kmemdup(private_data
, private_data_len
, GFP_KERNEL
);
325 return ERR_PTR(-ENOMEM
);
330 static void cm_set_private_data(struct cm_id_private
*cm_id_priv
,
331 void *private_data
, u8 private_data_len
)
333 if (cm_id_priv
->private_data
&& cm_id_priv
->private_data_len
)
334 kfree(cm_id_priv
->private_data
);
336 cm_id_priv
->private_data
= private_data
;
337 cm_id_priv
->private_data_len
= private_data_len
;
340 static void cm_init_av_for_response(struct cm_port
*port
, struct ib_wc
*wc
,
341 struct ib_grh
*grh
, struct cm_av
*av
)
344 av
->pkey_index
= wc
->pkey_index
;
345 ib_init_ah_from_wc(port
->cm_dev
->ib_device
, port
->port_num
, wc
,
349 static int cm_init_av_by_path(struct ib_sa_path_rec
*path
, struct cm_av
*av
)
351 struct cm_device
*cm_dev
;
352 struct cm_port
*port
= NULL
;
357 read_lock_irqsave(&cm
.device_lock
, flags
);
358 list_for_each_entry(cm_dev
, &cm
.device_list
, list
) {
359 if (!ib_find_cached_gid(cm_dev
->ib_device
, &path
->sgid
,
361 port
= cm_dev
->port
[p
-1];
365 read_unlock_irqrestore(&cm
.device_lock
, flags
);
370 ret
= ib_find_cached_pkey(cm_dev
->ib_device
, port
->port_num
,
371 be16_to_cpu(path
->pkey
), &av
->pkey_index
);
376 ib_init_ah_from_path(cm_dev
->ib_device
, port
->port_num
, path
,
378 av
->timeout
= path
->packet_life_time
+ 1;
382 static int cm_alloc_id(struct cm_id_private
*cm_id_priv
)
388 idr_preload(GFP_KERNEL
);
389 spin_lock_irqsave(&cm
.lock
, flags
);
391 id
= idr_alloc(&cm
.local_id_table
, cm_id_priv
, next_id
, 0, GFP_NOWAIT
);
393 next_id
= max(id
+ 1, 0);
395 spin_unlock_irqrestore(&cm
.lock
, flags
);
398 cm_id_priv
->id
.local_id
= (__force __be32
)id
^ cm
.random_id_operand
;
399 return id
< 0 ? id
: 0;
402 static void cm_free_id(__be32 local_id
)
404 spin_lock_irq(&cm
.lock
);
405 idr_remove(&cm
.local_id_table
,
406 (__force
int) (local_id
^ cm
.random_id_operand
));
407 spin_unlock_irq(&cm
.lock
);
410 static struct cm_id_private
* cm_get_id(__be32 local_id
, __be32 remote_id
)
412 struct cm_id_private
*cm_id_priv
;
414 cm_id_priv
= idr_find(&cm
.local_id_table
,
415 (__force
int) (local_id
^ cm
.random_id_operand
));
417 if (cm_id_priv
->id
.remote_id
== remote_id
)
418 atomic_inc(&cm_id_priv
->refcount
);
426 static struct cm_id_private
* cm_acquire_id(__be32 local_id
, __be32 remote_id
)
428 struct cm_id_private
*cm_id_priv
;
430 spin_lock_irq(&cm
.lock
);
431 cm_id_priv
= cm_get_id(local_id
, remote_id
);
432 spin_unlock_irq(&cm
.lock
);
437 static void cm_mask_copy(u8
*dst
, u8
*src
, u8
*mask
)
441 for (i
= 0; i
< IB_CM_COMPARE_SIZE
/ sizeof(unsigned long); i
++)
442 ((unsigned long *) dst
)[i
] = ((unsigned long *) src
)[i
] &
443 ((unsigned long *) mask
)[i
];
446 static int cm_compare_data(struct ib_cm_compare_data
*src_data
,
447 struct ib_cm_compare_data
*dst_data
)
449 u8 src
[IB_CM_COMPARE_SIZE
];
450 u8 dst
[IB_CM_COMPARE_SIZE
];
452 if (!src_data
|| !dst_data
)
455 cm_mask_copy(src
, src_data
->data
, dst_data
->mask
);
456 cm_mask_copy(dst
, dst_data
->data
, src_data
->mask
);
457 return memcmp(src
, dst
, IB_CM_COMPARE_SIZE
);
460 static int cm_compare_private_data(u8
*private_data
,
461 struct ib_cm_compare_data
*dst_data
)
463 u8 src
[IB_CM_COMPARE_SIZE
];
468 cm_mask_copy(src
, private_data
, dst_data
->mask
);
469 return memcmp(src
, dst_data
->data
, IB_CM_COMPARE_SIZE
);
473 * Trivial helpers to strip endian annotation and compare; the
474 * endianness doesn't actually matter since we just need a stable
475 * order for the RB tree.
477 static int be32_lt(__be32 a
, __be32 b
)
479 return (__force u32
) a
< (__force u32
) b
;
482 static int be32_gt(__be32 a
, __be32 b
)
484 return (__force u32
) a
> (__force u32
) b
;
487 static int be64_lt(__be64 a
, __be64 b
)
489 return (__force u64
) a
< (__force u64
) b
;
492 static int be64_gt(__be64 a
, __be64 b
)
494 return (__force u64
) a
> (__force u64
) b
;
497 static struct cm_id_private
* cm_insert_listen(struct cm_id_private
*cm_id_priv
)
499 struct rb_node
**link
= &cm
.listen_service_table
.rb_node
;
500 struct rb_node
*parent
= NULL
;
501 struct cm_id_private
*cur_cm_id_priv
;
502 __be64 service_id
= cm_id_priv
->id
.service_id
;
503 __be64 service_mask
= cm_id_priv
->id
.service_mask
;
508 cur_cm_id_priv
= rb_entry(parent
, struct cm_id_private
,
510 data_cmp
= cm_compare_data(cm_id_priv
->compare_data
,
511 cur_cm_id_priv
->compare_data
);
512 if ((cur_cm_id_priv
->id
.service_mask
& service_id
) ==
513 (service_mask
& cur_cm_id_priv
->id
.service_id
) &&
514 (cm_id_priv
->id
.device
== cur_cm_id_priv
->id
.device
) &&
516 return cur_cm_id_priv
;
518 if (cm_id_priv
->id
.device
< cur_cm_id_priv
->id
.device
)
519 link
= &(*link
)->rb_left
;
520 else if (cm_id_priv
->id
.device
> cur_cm_id_priv
->id
.device
)
521 link
= &(*link
)->rb_right
;
522 else if (be64_lt(service_id
, cur_cm_id_priv
->id
.service_id
))
523 link
= &(*link
)->rb_left
;
524 else if (be64_gt(service_id
, cur_cm_id_priv
->id
.service_id
))
525 link
= &(*link
)->rb_right
;
526 else if (data_cmp
< 0)
527 link
= &(*link
)->rb_left
;
529 link
= &(*link
)->rb_right
;
531 rb_link_node(&cm_id_priv
->service_node
, parent
, link
);
532 rb_insert_color(&cm_id_priv
->service_node
, &cm
.listen_service_table
);
536 static struct cm_id_private
* cm_find_listen(struct ib_device
*device
,
540 struct rb_node
*node
= cm
.listen_service_table
.rb_node
;
541 struct cm_id_private
*cm_id_priv
;
545 cm_id_priv
= rb_entry(node
, struct cm_id_private
, service_node
);
546 data_cmp
= cm_compare_private_data(private_data
,
547 cm_id_priv
->compare_data
);
548 if ((cm_id_priv
->id
.service_mask
& service_id
) ==
549 cm_id_priv
->id
.service_id
&&
550 (cm_id_priv
->id
.device
== device
) && !data_cmp
)
553 if (device
< cm_id_priv
->id
.device
)
554 node
= node
->rb_left
;
555 else if (device
> cm_id_priv
->id
.device
)
556 node
= node
->rb_right
;
557 else if (be64_lt(service_id
, cm_id_priv
->id
.service_id
))
558 node
= node
->rb_left
;
559 else if (be64_gt(service_id
, cm_id_priv
->id
.service_id
))
560 node
= node
->rb_right
;
561 else if (data_cmp
< 0)
562 node
= node
->rb_left
;
564 node
= node
->rb_right
;
569 static struct cm_timewait_info
* cm_insert_remote_id(struct cm_timewait_info
572 struct rb_node
**link
= &cm
.remote_id_table
.rb_node
;
573 struct rb_node
*parent
= NULL
;
574 struct cm_timewait_info
*cur_timewait_info
;
575 __be64 remote_ca_guid
= timewait_info
->remote_ca_guid
;
576 __be32 remote_id
= timewait_info
->work
.remote_id
;
580 cur_timewait_info
= rb_entry(parent
, struct cm_timewait_info
,
582 if (be32_lt(remote_id
, cur_timewait_info
->work
.remote_id
))
583 link
= &(*link
)->rb_left
;
584 else if (be32_gt(remote_id
, cur_timewait_info
->work
.remote_id
))
585 link
= &(*link
)->rb_right
;
586 else if (be64_lt(remote_ca_guid
, cur_timewait_info
->remote_ca_guid
))
587 link
= &(*link
)->rb_left
;
588 else if (be64_gt(remote_ca_guid
, cur_timewait_info
->remote_ca_guid
))
589 link
= &(*link
)->rb_right
;
591 return cur_timewait_info
;
593 timewait_info
->inserted_remote_id
= 1;
594 rb_link_node(&timewait_info
->remote_id_node
, parent
, link
);
595 rb_insert_color(&timewait_info
->remote_id_node
, &cm
.remote_id_table
);
599 static struct cm_timewait_info
* cm_find_remote_id(__be64 remote_ca_guid
,
602 struct rb_node
*node
= cm
.remote_id_table
.rb_node
;
603 struct cm_timewait_info
*timewait_info
;
606 timewait_info
= rb_entry(node
, struct cm_timewait_info
,
608 if (be32_lt(remote_id
, timewait_info
->work
.remote_id
))
609 node
= node
->rb_left
;
610 else if (be32_gt(remote_id
, timewait_info
->work
.remote_id
))
611 node
= node
->rb_right
;
612 else if (be64_lt(remote_ca_guid
, timewait_info
->remote_ca_guid
))
613 node
= node
->rb_left
;
614 else if (be64_gt(remote_ca_guid
, timewait_info
->remote_ca_guid
))
615 node
= node
->rb_right
;
617 return timewait_info
;
622 static struct cm_timewait_info
* cm_insert_remote_qpn(struct cm_timewait_info
625 struct rb_node
**link
= &cm
.remote_qp_table
.rb_node
;
626 struct rb_node
*parent
= NULL
;
627 struct cm_timewait_info
*cur_timewait_info
;
628 __be64 remote_ca_guid
= timewait_info
->remote_ca_guid
;
629 __be32 remote_qpn
= timewait_info
->remote_qpn
;
633 cur_timewait_info
= rb_entry(parent
, struct cm_timewait_info
,
635 if (be32_lt(remote_qpn
, cur_timewait_info
->remote_qpn
))
636 link
= &(*link
)->rb_left
;
637 else if (be32_gt(remote_qpn
, cur_timewait_info
->remote_qpn
))
638 link
= &(*link
)->rb_right
;
639 else if (be64_lt(remote_ca_guid
, cur_timewait_info
->remote_ca_guid
))
640 link
= &(*link
)->rb_left
;
641 else if (be64_gt(remote_ca_guid
, cur_timewait_info
->remote_ca_guid
))
642 link
= &(*link
)->rb_right
;
644 return cur_timewait_info
;
646 timewait_info
->inserted_remote_qp
= 1;
647 rb_link_node(&timewait_info
->remote_qp_node
, parent
, link
);
648 rb_insert_color(&timewait_info
->remote_qp_node
, &cm
.remote_qp_table
);
652 static struct cm_id_private
* cm_insert_remote_sidr(struct cm_id_private
655 struct rb_node
**link
= &cm
.remote_sidr_table
.rb_node
;
656 struct rb_node
*parent
= NULL
;
657 struct cm_id_private
*cur_cm_id_priv
;
658 union ib_gid
*port_gid
= &cm_id_priv
->av
.dgid
;
659 __be32 remote_id
= cm_id_priv
->id
.remote_id
;
663 cur_cm_id_priv
= rb_entry(parent
, struct cm_id_private
,
665 if (be32_lt(remote_id
, cur_cm_id_priv
->id
.remote_id
))
666 link
= &(*link
)->rb_left
;
667 else if (be32_gt(remote_id
, cur_cm_id_priv
->id
.remote_id
))
668 link
= &(*link
)->rb_right
;
671 cmp
= memcmp(port_gid
, &cur_cm_id_priv
->av
.dgid
,
674 link
= &(*link
)->rb_left
;
676 link
= &(*link
)->rb_right
;
678 return cur_cm_id_priv
;
681 rb_link_node(&cm_id_priv
->sidr_id_node
, parent
, link
);
682 rb_insert_color(&cm_id_priv
->sidr_id_node
, &cm
.remote_sidr_table
);
686 static void cm_reject_sidr_req(struct cm_id_private
*cm_id_priv
,
687 enum ib_cm_sidr_status status
)
689 struct ib_cm_sidr_rep_param param
;
691 memset(¶m
, 0, sizeof param
);
692 param
.status
= status
;
693 ib_send_cm_sidr_rep(&cm_id_priv
->id
, ¶m
);
696 struct ib_cm_id
*ib_create_cm_id(struct ib_device
*device
,
697 ib_cm_handler cm_handler
,
700 struct cm_id_private
*cm_id_priv
;
703 cm_id_priv
= kzalloc(sizeof *cm_id_priv
, GFP_KERNEL
);
705 return ERR_PTR(-ENOMEM
);
707 cm_id_priv
->id
.state
= IB_CM_IDLE
;
708 cm_id_priv
->id
.device
= device
;
709 cm_id_priv
->id
.cm_handler
= cm_handler
;
710 cm_id_priv
->id
.context
= context
;
711 cm_id_priv
->id
.remote_cm_qpn
= 1;
712 ret
= cm_alloc_id(cm_id_priv
);
716 spin_lock_init(&cm_id_priv
->lock
);
717 init_completion(&cm_id_priv
->comp
);
718 INIT_LIST_HEAD(&cm_id_priv
->work_list
);
719 atomic_set(&cm_id_priv
->work_count
, -1);
720 atomic_set(&cm_id_priv
->refcount
, 1);
721 return &cm_id_priv
->id
;
725 return ERR_PTR(-ENOMEM
);
727 EXPORT_SYMBOL(ib_create_cm_id
);
729 static struct cm_work
* cm_dequeue_work(struct cm_id_private
*cm_id_priv
)
731 struct cm_work
*work
;
733 if (list_empty(&cm_id_priv
->work_list
))
736 work
= list_entry(cm_id_priv
->work_list
.next
, struct cm_work
, list
);
737 list_del(&work
->list
);
741 static void cm_free_work(struct cm_work
*work
)
743 if (work
->mad_recv_wc
)
744 ib_free_recv_mad(work
->mad_recv_wc
);
748 static inline int cm_convert_to_ms(int iba_time
)
750 /* approximate conversion to ms from 4.096us x 2^iba_time */
751 return 1 << max(iba_time
- 8, 0);
755 * calculate: 4.096x2^ack_timeout = 4.096x2^ack_delay + 2x4.096x2^life_time
756 * Because of how ack_timeout is stored, adding one doubles the timeout.
757 * To avoid large timeouts, select the max(ack_delay, life_time + 1), and
758 * increment it (round up) only if the other is within 50%.
760 static u8
cm_ack_timeout(u8 ca_ack_delay
, u8 packet_life_time
)
762 int ack_timeout
= packet_life_time
+ 1;
764 if (ack_timeout
>= ca_ack_delay
)
765 ack_timeout
+= (ca_ack_delay
>= (ack_timeout
- 1));
767 ack_timeout
= ca_ack_delay
+
768 (ack_timeout
>= (ca_ack_delay
- 1));
770 return min(31, ack_timeout
);
773 static void cm_cleanup_timewait(struct cm_timewait_info
*timewait_info
)
775 if (timewait_info
->inserted_remote_id
) {
776 rb_erase(&timewait_info
->remote_id_node
, &cm
.remote_id_table
);
777 timewait_info
->inserted_remote_id
= 0;
780 if (timewait_info
->inserted_remote_qp
) {
781 rb_erase(&timewait_info
->remote_qp_node
, &cm
.remote_qp_table
);
782 timewait_info
->inserted_remote_qp
= 0;
786 static struct cm_timewait_info
* cm_create_timewait_info(__be32 local_id
)
788 struct cm_timewait_info
*timewait_info
;
790 timewait_info
= kzalloc(sizeof *timewait_info
, GFP_KERNEL
);
792 return ERR_PTR(-ENOMEM
);
794 timewait_info
->work
.local_id
= local_id
;
795 INIT_DELAYED_WORK(&timewait_info
->work
.work
, cm_work_handler
);
796 timewait_info
->work
.cm_event
.event
= IB_CM_TIMEWAIT_EXIT
;
797 return timewait_info
;
800 static void cm_enter_timewait(struct cm_id_private
*cm_id_priv
)
805 spin_lock_irqsave(&cm
.lock
, flags
);
806 cm_cleanup_timewait(cm_id_priv
->timewait_info
);
807 list_add_tail(&cm_id_priv
->timewait_info
->list
, &cm
.timewait_list
);
808 spin_unlock_irqrestore(&cm
.lock
, flags
);
811 * The cm_id could be destroyed by the user before we exit timewait.
812 * To protect against this, we search for the cm_id after exiting
813 * timewait before notifying the user that we've exited timewait.
815 cm_id_priv
->id
.state
= IB_CM_TIMEWAIT
;
816 wait_time
= cm_convert_to_ms(cm_id_priv
->av
.timeout
);
817 queue_delayed_work(cm
.wq
, &cm_id_priv
->timewait_info
->work
.work
,
818 msecs_to_jiffies(wait_time
));
819 cm_id_priv
->timewait_info
= NULL
;
822 static void cm_reset_to_idle(struct cm_id_private
*cm_id_priv
)
826 cm_id_priv
->id
.state
= IB_CM_IDLE
;
827 if (cm_id_priv
->timewait_info
) {
828 spin_lock_irqsave(&cm
.lock
, flags
);
829 cm_cleanup_timewait(cm_id_priv
->timewait_info
);
830 spin_unlock_irqrestore(&cm
.lock
, flags
);
831 kfree(cm_id_priv
->timewait_info
);
832 cm_id_priv
->timewait_info
= NULL
;
836 static void cm_destroy_id(struct ib_cm_id
*cm_id
, int err
)
838 struct cm_id_private
*cm_id_priv
;
839 struct cm_work
*work
;
841 cm_id_priv
= container_of(cm_id
, struct cm_id_private
, id
);
843 spin_lock_irq(&cm_id_priv
->lock
);
844 switch (cm_id
->state
) {
846 cm_id
->state
= IB_CM_IDLE
;
847 spin_unlock_irq(&cm_id_priv
->lock
);
848 spin_lock_irq(&cm
.lock
);
849 rb_erase(&cm_id_priv
->service_node
, &cm
.listen_service_table
);
850 spin_unlock_irq(&cm
.lock
);
852 case IB_CM_SIDR_REQ_SENT
:
853 cm_id
->state
= IB_CM_IDLE
;
854 ib_cancel_mad(cm_id_priv
->av
.port
->mad_agent
, cm_id_priv
->msg
);
855 spin_unlock_irq(&cm_id_priv
->lock
);
857 case IB_CM_SIDR_REQ_RCVD
:
858 spin_unlock_irq(&cm_id_priv
->lock
);
859 cm_reject_sidr_req(cm_id_priv
, IB_SIDR_REJECT
);
862 ib_cancel_mad(cm_id_priv
->av
.port
->mad_agent
, cm_id_priv
->msg
);
863 spin_unlock_irq(&cm_id_priv
->lock
);
864 ib_send_cm_rej(cm_id
, IB_CM_REJ_TIMEOUT
,
865 &cm_id_priv
->id
.device
->node_guid
,
866 sizeof cm_id_priv
->id
.device
->node_guid
,
870 if (err
== -ENOMEM
) {
871 /* Do not reject to allow future retries. */
872 cm_reset_to_idle(cm_id_priv
);
873 spin_unlock_irq(&cm_id_priv
->lock
);
875 spin_unlock_irq(&cm_id_priv
->lock
);
876 ib_send_cm_rej(cm_id
, IB_CM_REJ_CONSUMER_DEFINED
,
880 case IB_CM_MRA_REQ_RCVD
:
882 case IB_CM_MRA_REP_RCVD
:
883 ib_cancel_mad(cm_id_priv
->av
.port
->mad_agent
, cm_id_priv
->msg
);
885 case IB_CM_MRA_REQ_SENT
:
887 case IB_CM_MRA_REP_SENT
:
888 spin_unlock_irq(&cm_id_priv
->lock
);
889 ib_send_cm_rej(cm_id
, IB_CM_REJ_CONSUMER_DEFINED
,
892 case IB_CM_ESTABLISHED
:
893 spin_unlock_irq(&cm_id_priv
->lock
);
894 if (cm_id_priv
->qp_type
== IB_QPT_XRC_TGT
)
896 ib_send_cm_dreq(cm_id
, NULL
, 0);
898 case IB_CM_DREQ_SENT
:
899 ib_cancel_mad(cm_id_priv
->av
.port
->mad_agent
, cm_id_priv
->msg
);
900 cm_enter_timewait(cm_id_priv
);
901 spin_unlock_irq(&cm_id_priv
->lock
);
903 case IB_CM_DREQ_RCVD
:
904 spin_unlock_irq(&cm_id_priv
->lock
);
905 ib_send_cm_drep(cm_id
, NULL
, 0);
908 spin_unlock_irq(&cm_id_priv
->lock
);
912 cm_free_id(cm_id
->local_id
);
913 cm_deref_id(cm_id_priv
);
914 wait_for_completion(&cm_id_priv
->comp
);
915 while ((work
= cm_dequeue_work(cm_id_priv
)) != NULL
)
917 kfree(cm_id_priv
->compare_data
);
918 kfree(cm_id_priv
->private_data
);
922 void ib_destroy_cm_id(struct ib_cm_id
*cm_id
)
924 cm_destroy_id(cm_id
, 0);
926 EXPORT_SYMBOL(ib_destroy_cm_id
);
928 int ib_cm_listen(struct ib_cm_id
*cm_id
, __be64 service_id
, __be64 service_mask
,
929 struct ib_cm_compare_data
*compare_data
)
931 struct cm_id_private
*cm_id_priv
, *cur_cm_id_priv
;
935 service_mask
= service_mask
? service_mask
: ~cpu_to_be64(0);
936 service_id
&= service_mask
;
937 if ((service_id
& IB_SERVICE_ID_AGN_MASK
) == IB_CM_ASSIGN_SERVICE_ID
&&
938 (service_id
!= IB_CM_ASSIGN_SERVICE_ID
))
941 cm_id_priv
= container_of(cm_id
, struct cm_id_private
, id
);
942 if (cm_id
->state
!= IB_CM_IDLE
)
946 cm_id_priv
->compare_data
= kzalloc(sizeof *compare_data
,
948 if (!cm_id_priv
->compare_data
)
950 cm_mask_copy(cm_id_priv
->compare_data
->data
,
951 compare_data
->data
, compare_data
->mask
);
952 memcpy(cm_id_priv
->compare_data
->mask
, compare_data
->mask
,
956 cm_id
->state
= IB_CM_LISTEN
;
958 spin_lock_irqsave(&cm
.lock
, flags
);
959 if (service_id
== IB_CM_ASSIGN_SERVICE_ID
) {
960 cm_id
->service_id
= cpu_to_be64(cm
.listen_service_id
++);
961 cm_id
->service_mask
= ~cpu_to_be64(0);
963 cm_id
->service_id
= service_id
;
964 cm_id
->service_mask
= service_mask
;
966 cur_cm_id_priv
= cm_insert_listen(cm_id_priv
);
967 spin_unlock_irqrestore(&cm
.lock
, flags
);
969 if (cur_cm_id_priv
) {
970 cm_id
->state
= IB_CM_IDLE
;
971 kfree(cm_id_priv
->compare_data
);
972 cm_id_priv
->compare_data
= NULL
;
977 EXPORT_SYMBOL(ib_cm_listen
);
979 static __be64
cm_form_tid(struct cm_id_private
*cm_id_priv
,
980 enum cm_msg_sequence msg_seq
)
984 hi_tid
= ((u64
) cm_id_priv
->av
.port
->mad_agent
->hi_tid
) << 32;
985 low_tid
= (u64
) ((__force u32
)cm_id_priv
->id
.local_id
|
987 return cpu_to_be64(hi_tid
| low_tid
);
990 static void cm_format_mad_hdr(struct ib_mad_hdr
*hdr
,
991 __be16 attr_id
, __be64 tid
)
993 hdr
->base_version
= IB_MGMT_BASE_VERSION
;
994 hdr
->mgmt_class
= IB_MGMT_CLASS_CM
;
995 hdr
->class_version
= IB_CM_CLASS_VERSION
;
996 hdr
->method
= IB_MGMT_METHOD_SEND
;
997 hdr
->attr_id
= attr_id
;
1001 static void cm_format_req(struct cm_req_msg
*req_msg
,
1002 struct cm_id_private
*cm_id_priv
,
1003 struct ib_cm_req_param
*param
)
1005 struct ib_sa_path_rec
*pri_path
= param
->primary_path
;
1006 struct ib_sa_path_rec
*alt_path
= param
->alternate_path
;
1008 cm_format_mad_hdr(&req_msg
->hdr
, CM_REQ_ATTR_ID
,
1009 cm_form_tid(cm_id_priv
, CM_MSG_SEQUENCE_REQ
));
1011 req_msg
->local_comm_id
= cm_id_priv
->id
.local_id
;
1012 req_msg
->service_id
= param
->service_id
;
1013 req_msg
->local_ca_guid
= cm_id_priv
->id
.device
->node_guid
;
1014 cm_req_set_local_qpn(req_msg
, cpu_to_be32(param
->qp_num
));
1015 cm_req_set_init_depth(req_msg
, param
->initiator_depth
);
1016 cm_req_set_remote_resp_timeout(req_msg
,
1017 param
->remote_cm_response_timeout
);
1018 cm_req_set_qp_type(req_msg
, param
->qp_type
);
1019 cm_req_set_flow_ctrl(req_msg
, param
->flow_control
);
1020 cm_req_set_starting_psn(req_msg
, cpu_to_be32(param
->starting_psn
));
1021 cm_req_set_local_resp_timeout(req_msg
,
1022 param
->local_cm_response_timeout
);
1023 req_msg
->pkey
= param
->primary_path
->pkey
;
1024 cm_req_set_path_mtu(req_msg
, param
->primary_path
->mtu
);
1025 cm_req_set_max_cm_retries(req_msg
, param
->max_cm_retries
);
1027 if (param
->qp_type
!= IB_QPT_XRC_INI
) {
1028 cm_req_set_resp_res(req_msg
, param
->responder_resources
);
1029 cm_req_set_retry_count(req_msg
, param
->retry_count
);
1030 cm_req_set_rnr_retry_count(req_msg
, param
->rnr_retry_count
);
1031 cm_req_set_srq(req_msg
, param
->srq
);
1034 if (pri_path
->hop_limit
<= 1) {
1035 req_msg
->primary_local_lid
= pri_path
->slid
;
1036 req_msg
->primary_remote_lid
= pri_path
->dlid
;
1038 /* Work-around until there's a way to obtain remote LID info */
1039 req_msg
->primary_local_lid
= IB_LID_PERMISSIVE
;
1040 req_msg
->primary_remote_lid
= IB_LID_PERMISSIVE
;
1042 req_msg
->primary_local_gid
= pri_path
->sgid
;
1043 req_msg
->primary_remote_gid
= pri_path
->dgid
;
1044 cm_req_set_primary_flow_label(req_msg
, pri_path
->flow_label
);
1045 cm_req_set_primary_packet_rate(req_msg
, pri_path
->rate
);
1046 req_msg
->primary_traffic_class
= pri_path
->traffic_class
;
1047 req_msg
->primary_hop_limit
= pri_path
->hop_limit
;
1048 cm_req_set_primary_sl(req_msg
, pri_path
->sl
);
1049 cm_req_set_primary_subnet_local(req_msg
, (pri_path
->hop_limit
<= 1));
1050 cm_req_set_primary_local_ack_timeout(req_msg
,
1051 cm_ack_timeout(cm_id_priv
->av
.port
->cm_dev
->ack_delay
,
1052 pri_path
->packet_life_time
));
1055 if (alt_path
->hop_limit
<= 1) {
1056 req_msg
->alt_local_lid
= alt_path
->slid
;
1057 req_msg
->alt_remote_lid
= alt_path
->dlid
;
1059 req_msg
->alt_local_lid
= IB_LID_PERMISSIVE
;
1060 req_msg
->alt_remote_lid
= IB_LID_PERMISSIVE
;
1062 req_msg
->alt_local_gid
= alt_path
->sgid
;
1063 req_msg
->alt_remote_gid
= alt_path
->dgid
;
1064 cm_req_set_alt_flow_label(req_msg
,
1065 alt_path
->flow_label
);
1066 cm_req_set_alt_packet_rate(req_msg
, alt_path
->rate
);
1067 req_msg
->alt_traffic_class
= alt_path
->traffic_class
;
1068 req_msg
->alt_hop_limit
= alt_path
->hop_limit
;
1069 cm_req_set_alt_sl(req_msg
, alt_path
->sl
);
1070 cm_req_set_alt_subnet_local(req_msg
, (alt_path
->hop_limit
<= 1));
1071 cm_req_set_alt_local_ack_timeout(req_msg
,
1072 cm_ack_timeout(cm_id_priv
->av
.port
->cm_dev
->ack_delay
,
1073 alt_path
->packet_life_time
));
1076 if (param
->private_data
&& param
->private_data_len
)
1077 memcpy(req_msg
->private_data
, param
->private_data
,
1078 param
->private_data_len
);
1081 static int cm_validate_req_param(struct ib_cm_req_param
*param
)
1083 /* peer-to-peer not supported */
1084 if (param
->peer_to_peer
)
1087 if (!param
->primary_path
)
1090 if (param
->qp_type
!= IB_QPT_RC
&& param
->qp_type
!= IB_QPT_UC
&&
1091 param
->qp_type
!= IB_QPT_XRC_INI
)
1094 if (param
->private_data
&&
1095 param
->private_data_len
> IB_CM_REQ_PRIVATE_DATA_SIZE
)
1098 if (param
->alternate_path
&&
1099 (param
->alternate_path
->pkey
!= param
->primary_path
->pkey
||
1100 param
->alternate_path
->mtu
!= param
->primary_path
->mtu
))
1106 int ib_send_cm_req(struct ib_cm_id
*cm_id
,
1107 struct ib_cm_req_param
*param
)
1109 struct cm_id_private
*cm_id_priv
;
1110 struct cm_req_msg
*req_msg
;
1111 unsigned long flags
;
1114 ret
= cm_validate_req_param(param
);
1118 /* Verify that we're not in timewait. */
1119 cm_id_priv
= container_of(cm_id
, struct cm_id_private
, id
);
1120 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
1121 if (cm_id
->state
!= IB_CM_IDLE
) {
1122 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
1126 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
1128 cm_id_priv
->timewait_info
= cm_create_timewait_info(cm_id_priv
->
1130 if (IS_ERR(cm_id_priv
->timewait_info
)) {
1131 ret
= PTR_ERR(cm_id_priv
->timewait_info
);
1135 ret
= cm_init_av_by_path(param
->primary_path
, &cm_id_priv
->av
);
1138 if (param
->alternate_path
) {
1139 ret
= cm_init_av_by_path(param
->alternate_path
,
1140 &cm_id_priv
->alt_av
);
1144 cm_id
->service_id
= param
->service_id
;
1145 cm_id
->service_mask
= ~cpu_to_be64(0);
1146 cm_id_priv
->timeout_ms
= cm_convert_to_ms(
1147 param
->primary_path
->packet_life_time
) * 2 +
1149 param
->remote_cm_response_timeout
);
1150 cm_id_priv
->max_cm_retries
= param
->max_cm_retries
;
1151 cm_id_priv
->initiator_depth
= param
->initiator_depth
;
1152 cm_id_priv
->responder_resources
= param
->responder_resources
;
1153 cm_id_priv
->retry_count
= param
->retry_count
;
1154 cm_id_priv
->path_mtu
= param
->primary_path
->mtu
;
1155 cm_id_priv
->pkey
= param
->primary_path
->pkey
;
1156 cm_id_priv
->qp_type
= param
->qp_type
;
1158 ret
= cm_alloc_msg(cm_id_priv
, &cm_id_priv
->msg
);
1162 req_msg
= (struct cm_req_msg
*) cm_id_priv
->msg
->mad
;
1163 cm_format_req(req_msg
, cm_id_priv
, param
);
1164 cm_id_priv
->tid
= req_msg
->hdr
.tid
;
1165 cm_id_priv
->msg
->timeout_ms
= cm_id_priv
->timeout_ms
;
1166 cm_id_priv
->msg
->context
[1] = (void *) (unsigned long) IB_CM_REQ_SENT
;
1168 cm_id_priv
->local_qpn
= cm_req_get_local_qpn(req_msg
);
1169 cm_id_priv
->rq_psn
= cm_req_get_starting_psn(req_msg
);
1171 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
1172 ret
= ib_post_send_mad(cm_id_priv
->msg
, NULL
);
1174 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
1177 BUG_ON(cm_id
->state
!= IB_CM_IDLE
);
1178 cm_id
->state
= IB_CM_REQ_SENT
;
1179 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
1182 error2
: cm_free_msg(cm_id_priv
->msg
);
1183 error1
: kfree(cm_id_priv
->timewait_info
);
1186 EXPORT_SYMBOL(ib_send_cm_req
);
1188 static int cm_issue_rej(struct cm_port
*port
,
1189 struct ib_mad_recv_wc
*mad_recv_wc
,
1190 enum ib_cm_rej_reason reason
,
1191 enum cm_msg_response msg_rejected
,
1192 void *ari
, u8 ari_length
)
1194 struct ib_mad_send_buf
*msg
= NULL
;
1195 struct cm_rej_msg
*rej_msg
, *rcv_msg
;
1198 ret
= cm_alloc_response_msg(port
, mad_recv_wc
, &msg
);
1202 /* We just need common CM header information. Cast to any message. */
1203 rcv_msg
= (struct cm_rej_msg
*) mad_recv_wc
->recv_buf
.mad
;
1204 rej_msg
= (struct cm_rej_msg
*) msg
->mad
;
1206 cm_format_mad_hdr(&rej_msg
->hdr
, CM_REJ_ATTR_ID
, rcv_msg
->hdr
.tid
);
1207 rej_msg
->remote_comm_id
= rcv_msg
->local_comm_id
;
1208 rej_msg
->local_comm_id
= rcv_msg
->remote_comm_id
;
1209 cm_rej_set_msg_rejected(rej_msg
, msg_rejected
);
1210 rej_msg
->reason
= cpu_to_be16(reason
);
1212 if (ari
&& ari_length
) {
1213 cm_rej_set_reject_info_len(rej_msg
, ari_length
);
1214 memcpy(rej_msg
->ari
, ari
, ari_length
);
1217 ret
= ib_post_send_mad(msg
, NULL
);
1224 static inline int cm_is_active_peer(__be64 local_ca_guid
, __be64 remote_ca_guid
,
1225 __be32 local_qpn
, __be32 remote_qpn
)
1227 return (be64_to_cpu(local_ca_guid
) > be64_to_cpu(remote_ca_guid
) ||
1228 ((local_ca_guid
== remote_ca_guid
) &&
1229 (be32_to_cpu(local_qpn
) > be32_to_cpu(remote_qpn
))));
1232 static void cm_format_paths_from_req(struct cm_req_msg
*req_msg
,
1233 struct ib_sa_path_rec
*primary_path
,
1234 struct ib_sa_path_rec
*alt_path
)
1236 memset(primary_path
, 0, sizeof *primary_path
);
1237 primary_path
->dgid
= req_msg
->primary_local_gid
;
1238 primary_path
->sgid
= req_msg
->primary_remote_gid
;
1239 primary_path
->dlid
= req_msg
->primary_local_lid
;
1240 primary_path
->slid
= req_msg
->primary_remote_lid
;
1241 primary_path
->flow_label
= cm_req_get_primary_flow_label(req_msg
);
1242 primary_path
->hop_limit
= req_msg
->primary_hop_limit
;
1243 primary_path
->traffic_class
= req_msg
->primary_traffic_class
;
1244 primary_path
->reversible
= 1;
1245 primary_path
->pkey
= req_msg
->pkey
;
1246 primary_path
->sl
= cm_req_get_primary_sl(req_msg
);
1247 primary_path
->mtu_selector
= IB_SA_EQ
;
1248 primary_path
->mtu
= cm_req_get_path_mtu(req_msg
);
1249 primary_path
->rate_selector
= IB_SA_EQ
;
1250 primary_path
->rate
= cm_req_get_primary_packet_rate(req_msg
);
1251 primary_path
->packet_life_time_selector
= IB_SA_EQ
;
1252 primary_path
->packet_life_time
=
1253 cm_req_get_primary_local_ack_timeout(req_msg
);
1254 primary_path
->packet_life_time
-= (primary_path
->packet_life_time
> 0);
1256 if (req_msg
->alt_local_lid
) {
1257 memset(alt_path
, 0, sizeof *alt_path
);
1258 alt_path
->dgid
= req_msg
->alt_local_gid
;
1259 alt_path
->sgid
= req_msg
->alt_remote_gid
;
1260 alt_path
->dlid
= req_msg
->alt_local_lid
;
1261 alt_path
->slid
= req_msg
->alt_remote_lid
;
1262 alt_path
->flow_label
= cm_req_get_alt_flow_label(req_msg
);
1263 alt_path
->hop_limit
= req_msg
->alt_hop_limit
;
1264 alt_path
->traffic_class
= req_msg
->alt_traffic_class
;
1265 alt_path
->reversible
= 1;
1266 alt_path
->pkey
= req_msg
->pkey
;
1267 alt_path
->sl
= cm_req_get_alt_sl(req_msg
);
1268 alt_path
->mtu_selector
= IB_SA_EQ
;
1269 alt_path
->mtu
= cm_req_get_path_mtu(req_msg
);
1270 alt_path
->rate_selector
= IB_SA_EQ
;
1271 alt_path
->rate
= cm_req_get_alt_packet_rate(req_msg
);
1272 alt_path
->packet_life_time_selector
= IB_SA_EQ
;
1273 alt_path
->packet_life_time
=
1274 cm_req_get_alt_local_ack_timeout(req_msg
);
1275 alt_path
->packet_life_time
-= (alt_path
->packet_life_time
> 0);
1279 static void cm_format_req_event(struct cm_work
*work
,
1280 struct cm_id_private
*cm_id_priv
,
1281 struct ib_cm_id
*listen_id
)
1283 struct cm_req_msg
*req_msg
;
1284 struct ib_cm_req_event_param
*param
;
1286 req_msg
= (struct cm_req_msg
*)work
->mad_recv_wc
->recv_buf
.mad
;
1287 param
= &work
->cm_event
.param
.req_rcvd
;
1288 param
->listen_id
= listen_id
;
1289 param
->port
= cm_id_priv
->av
.port
->port_num
;
1290 param
->primary_path
= &work
->path
[0];
1291 if (req_msg
->alt_local_lid
)
1292 param
->alternate_path
= &work
->path
[1];
1294 param
->alternate_path
= NULL
;
1295 param
->remote_ca_guid
= req_msg
->local_ca_guid
;
1296 param
->remote_qkey
= be32_to_cpu(req_msg
->local_qkey
);
1297 param
->remote_qpn
= be32_to_cpu(cm_req_get_local_qpn(req_msg
));
1298 param
->qp_type
= cm_req_get_qp_type(req_msg
);
1299 param
->starting_psn
= be32_to_cpu(cm_req_get_starting_psn(req_msg
));
1300 param
->responder_resources
= cm_req_get_init_depth(req_msg
);
1301 param
->initiator_depth
= cm_req_get_resp_res(req_msg
);
1302 param
->local_cm_response_timeout
=
1303 cm_req_get_remote_resp_timeout(req_msg
);
1304 param
->flow_control
= cm_req_get_flow_ctrl(req_msg
);
1305 param
->remote_cm_response_timeout
=
1306 cm_req_get_local_resp_timeout(req_msg
);
1307 param
->retry_count
= cm_req_get_retry_count(req_msg
);
1308 param
->rnr_retry_count
= cm_req_get_rnr_retry_count(req_msg
);
1309 param
->srq
= cm_req_get_srq(req_msg
);
1310 work
->cm_event
.private_data
= &req_msg
->private_data
;
1313 static void cm_process_work(struct cm_id_private
*cm_id_priv
,
1314 struct cm_work
*work
)
1318 /* We will typically only have the current event to report. */
1319 ret
= cm_id_priv
->id
.cm_handler(&cm_id_priv
->id
, &work
->cm_event
);
1322 while (!ret
&& !atomic_add_negative(-1, &cm_id_priv
->work_count
)) {
1323 spin_lock_irq(&cm_id_priv
->lock
);
1324 work
= cm_dequeue_work(cm_id_priv
);
1325 spin_unlock_irq(&cm_id_priv
->lock
);
1327 ret
= cm_id_priv
->id
.cm_handler(&cm_id_priv
->id
,
1331 cm_deref_id(cm_id_priv
);
1333 cm_destroy_id(&cm_id_priv
->id
, ret
);
1336 static void cm_format_mra(struct cm_mra_msg
*mra_msg
,
1337 struct cm_id_private
*cm_id_priv
,
1338 enum cm_msg_response msg_mraed
, u8 service_timeout
,
1339 const void *private_data
, u8 private_data_len
)
1341 cm_format_mad_hdr(&mra_msg
->hdr
, CM_MRA_ATTR_ID
, cm_id_priv
->tid
);
1342 cm_mra_set_msg_mraed(mra_msg
, msg_mraed
);
1343 mra_msg
->local_comm_id
= cm_id_priv
->id
.local_id
;
1344 mra_msg
->remote_comm_id
= cm_id_priv
->id
.remote_id
;
1345 cm_mra_set_service_timeout(mra_msg
, service_timeout
);
1347 if (private_data
&& private_data_len
)
1348 memcpy(mra_msg
->private_data
, private_data
, private_data_len
);
1351 static void cm_format_rej(struct cm_rej_msg
*rej_msg
,
1352 struct cm_id_private
*cm_id_priv
,
1353 enum ib_cm_rej_reason reason
,
1356 const void *private_data
,
1357 u8 private_data_len
)
1359 cm_format_mad_hdr(&rej_msg
->hdr
, CM_REJ_ATTR_ID
, cm_id_priv
->tid
);
1360 rej_msg
->remote_comm_id
= cm_id_priv
->id
.remote_id
;
1362 switch(cm_id_priv
->id
.state
) {
1363 case IB_CM_REQ_RCVD
:
1364 rej_msg
->local_comm_id
= 0;
1365 cm_rej_set_msg_rejected(rej_msg
, CM_MSG_RESPONSE_REQ
);
1367 case IB_CM_MRA_REQ_SENT
:
1368 rej_msg
->local_comm_id
= cm_id_priv
->id
.local_id
;
1369 cm_rej_set_msg_rejected(rej_msg
, CM_MSG_RESPONSE_REQ
);
1371 case IB_CM_REP_RCVD
:
1372 case IB_CM_MRA_REP_SENT
:
1373 rej_msg
->local_comm_id
= cm_id_priv
->id
.local_id
;
1374 cm_rej_set_msg_rejected(rej_msg
, CM_MSG_RESPONSE_REP
);
1377 rej_msg
->local_comm_id
= cm_id_priv
->id
.local_id
;
1378 cm_rej_set_msg_rejected(rej_msg
, CM_MSG_RESPONSE_OTHER
);
1382 rej_msg
->reason
= cpu_to_be16(reason
);
1383 if (ari
&& ari_length
) {
1384 cm_rej_set_reject_info_len(rej_msg
, ari_length
);
1385 memcpy(rej_msg
->ari
, ari
, ari_length
);
1388 if (private_data
&& private_data_len
)
1389 memcpy(rej_msg
->private_data
, private_data
, private_data_len
);
1392 static void cm_dup_req_handler(struct cm_work
*work
,
1393 struct cm_id_private
*cm_id_priv
)
1395 struct ib_mad_send_buf
*msg
= NULL
;
1398 atomic_long_inc(&work
->port
->counter_group
[CM_RECV_DUPLICATES
].
1399 counter
[CM_REQ_COUNTER
]);
1401 /* Quick state check to discard duplicate REQs. */
1402 if (cm_id_priv
->id
.state
== IB_CM_REQ_RCVD
)
1405 ret
= cm_alloc_response_msg(work
->port
, work
->mad_recv_wc
, &msg
);
1409 spin_lock_irq(&cm_id_priv
->lock
);
1410 switch (cm_id_priv
->id
.state
) {
1411 case IB_CM_MRA_REQ_SENT
:
1412 cm_format_mra((struct cm_mra_msg
*) msg
->mad
, cm_id_priv
,
1413 CM_MSG_RESPONSE_REQ
, cm_id_priv
->service_timeout
,
1414 cm_id_priv
->private_data
,
1415 cm_id_priv
->private_data_len
);
1417 case IB_CM_TIMEWAIT
:
1418 cm_format_rej((struct cm_rej_msg
*) msg
->mad
, cm_id_priv
,
1419 IB_CM_REJ_STALE_CONN
, NULL
, 0, NULL
, 0);
1424 spin_unlock_irq(&cm_id_priv
->lock
);
1426 ret
= ib_post_send_mad(msg
, NULL
);
1431 unlock
: spin_unlock_irq(&cm_id_priv
->lock
);
1432 free
: cm_free_msg(msg
);
1435 static struct cm_id_private
* cm_match_req(struct cm_work
*work
,
1436 struct cm_id_private
*cm_id_priv
)
1438 struct cm_id_private
*listen_cm_id_priv
, *cur_cm_id_priv
;
1439 struct cm_timewait_info
*timewait_info
;
1440 struct cm_req_msg
*req_msg
;
1442 req_msg
= (struct cm_req_msg
*)work
->mad_recv_wc
->recv_buf
.mad
;
1444 /* Check for possible duplicate REQ. */
1445 spin_lock_irq(&cm
.lock
);
1446 timewait_info
= cm_insert_remote_id(cm_id_priv
->timewait_info
);
1447 if (timewait_info
) {
1448 cur_cm_id_priv
= cm_get_id(timewait_info
->work
.local_id
,
1449 timewait_info
->work
.remote_id
);
1450 spin_unlock_irq(&cm
.lock
);
1451 if (cur_cm_id_priv
) {
1452 cm_dup_req_handler(work
, cur_cm_id_priv
);
1453 cm_deref_id(cur_cm_id_priv
);
1458 /* Check for stale connections. */
1459 timewait_info
= cm_insert_remote_qpn(cm_id_priv
->timewait_info
);
1460 if (timewait_info
) {
1461 cm_cleanup_timewait(cm_id_priv
->timewait_info
);
1462 spin_unlock_irq(&cm
.lock
);
1463 cm_issue_rej(work
->port
, work
->mad_recv_wc
,
1464 IB_CM_REJ_STALE_CONN
, CM_MSG_RESPONSE_REQ
,
1469 /* Find matching listen request. */
1470 listen_cm_id_priv
= cm_find_listen(cm_id_priv
->id
.device
,
1471 req_msg
->service_id
,
1472 req_msg
->private_data
);
1473 if (!listen_cm_id_priv
) {
1474 cm_cleanup_timewait(cm_id_priv
->timewait_info
);
1475 spin_unlock_irq(&cm
.lock
);
1476 cm_issue_rej(work
->port
, work
->mad_recv_wc
,
1477 IB_CM_REJ_INVALID_SERVICE_ID
, CM_MSG_RESPONSE_REQ
,
1481 atomic_inc(&listen_cm_id_priv
->refcount
);
1482 atomic_inc(&cm_id_priv
->refcount
);
1483 cm_id_priv
->id
.state
= IB_CM_REQ_RCVD
;
1484 atomic_inc(&cm_id_priv
->work_count
);
1485 spin_unlock_irq(&cm
.lock
);
1487 return listen_cm_id_priv
;
1491 * Work-around for inter-subnet connections. If the LIDs are permissive,
1492 * we need to override the LID/SL data in the REQ with the LID information
1493 * in the work completion.
1495 static void cm_process_routed_req(struct cm_req_msg
*req_msg
, struct ib_wc
*wc
)
1497 if (!cm_req_get_primary_subnet_local(req_msg
)) {
1498 if (req_msg
->primary_local_lid
== IB_LID_PERMISSIVE
) {
1499 req_msg
->primary_local_lid
= cpu_to_be16(wc
->slid
);
1500 cm_req_set_primary_sl(req_msg
, wc
->sl
);
1503 if (req_msg
->primary_remote_lid
== IB_LID_PERMISSIVE
)
1504 req_msg
->primary_remote_lid
= cpu_to_be16(wc
->dlid_path_bits
);
1507 if (!cm_req_get_alt_subnet_local(req_msg
)) {
1508 if (req_msg
->alt_local_lid
== IB_LID_PERMISSIVE
) {
1509 req_msg
->alt_local_lid
= cpu_to_be16(wc
->slid
);
1510 cm_req_set_alt_sl(req_msg
, wc
->sl
);
1513 if (req_msg
->alt_remote_lid
== IB_LID_PERMISSIVE
)
1514 req_msg
->alt_remote_lid
= cpu_to_be16(wc
->dlid_path_bits
);
1518 static int cm_req_handler(struct cm_work
*work
)
1520 struct ib_cm_id
*cm_id
;
1521 struct cm_id_private
*cm_id_priv
, *listen_cm_id_priv
;
1522 struct cm_req_msg
*req_msg
;
1525 req_msg
= (struct cm_req_msg
*)work
->mad_recv_wc
->recv_buf
.mad
;
1527 cm_id
= ib_create_cm_id(work
->port
->cm_dev
->ib_device
, NULL
, NULL
);
1529 return PTR_ERR(cm_id
);
1531 cm_id_priv
= container_of(cm_id
, struct cm_id_private
, id
);
1532 cm_id_priv
->id
.remote_id
= req_msg
->local_comm_id
;
1533 cm_init_av_for_response(work
->port
, work
->mad_recv_wc
->wc
,
1534 work
->mad_recv_wc
->recv_buf
.grh
,
1536 cm_id_priv
->timewait_info
= cm_create_timewait_info(cm_id_priv
->
1538 if (IS_ERR(cm_id_priv
->timewait_info
)) {
1539 ret
= PTR_ERR(cm_id_priv
->timewait_info
);
1542 cm_id_priv
->timewait_info
->work
.remote_id
= req_msg
->local_comm_id
;
1543 cm_id_priv
->timewait_info
->remote_ca_guid
= req_msg
->local_ca_guid
;
1544 cm_id_priv
->timewait_info
->remote_qpn
= cm_req_get_local_qpn(req_msg
);
1546 listen_cm_id_priv
= cm_match_req(work
, cm_id_priv
);
1547 if (!listen_cm_id_priv
) {
1549 kfree(cm_id_priv
->timewait_info
);
1553 cm_id_priv
->id
.cm_handler
= listen_cm_id_priv
->id
.cm_handler
;
1554 cm_id_priv
->id
.context
= listen_cm_id_priv
->id
.context
;
1555 cm_id_priv
->id
.service_id
= req_msg
->service_id
;
1556 cm_id_priv
->id
.service_mask
= ~cpu_to_be64(0);
1558 cm_process_routed_req(req_msg
, work
->mad_recv_wc
->wc
);
1559 cm_format_paths_from_req(req_msg
, &work
->path
[0], &work
->path
[1]);
1560 ret
= cm_init_av_by_path(&work
->path
[0], &cm_id_priv
->av
);
1562 ib_get_cached_gid(work
->port
->cm_dev
->ib_device
,
1563 work
->port
->port_num
, 0, &work
->path
[0].sgid
);
1564 ib_send_cm_rej(cm_id
, IB_CM_REJ_INVALID_GID
,
1565 &work
->path
[0].sgid
, sizeof work
->path
[0].sgid
,
1569 if (req_msg
->alt_local_lid
) {
1570 ret
= cm_init_av_by_path(&work
->path
[1], &cm_id_priv
->alt_av
);
1572 ib_send_cm_rej(cm_id
, IB_CM_REJ_INVALID_ALT_GID
,
1573 &work
->path
[0].sgid
,
1574 sizeof work
->path
[0].sgid
, NULL
, 0);
1578 cm_id_priv
->tid
= req_msg
->hdr
.tid
;
1579 cm_id_priv
->timeout_ms
= cm_convert_to_ms(
1580 cm_req_get_local_resp_timeout(req_msg
));
1581 cm_id_priv
->max_cm_retries
= cm_req_get_max_cm_retries(req_msg
);
1582 cm_id_priv
->remote_qpn
= cm_req_get_local_qpn(req_msg
);
1583 cm_id_priv
->initiator_depth
= cm_req_get_resp_res(req_msg
);
1584 cm_id_priv
->responder_resources
= cm_req_get_init_depth(req_msg
);
1585 cm_id_priv
->path_mtu
= cm_req_get_path_mtu(req_msg
);
1586 cm_id_priv
->pkey
= req_msg
->pkey
;
1587 cm_id_priv
->sq_psn
= cm_req_get_starting_psn(req_msg
);
1588 cm_id_priv
->retry_count
= cm_req_get_retry_count(req_msg
);
1589 cm_id_priv
->rnr_retry_count
= cm_req_get_rnr_retry_count(req_msg
);
1590 cm_id_priv
->qp_type
= cm_req_get_qp_type(req_msg
);
1592 cm_format_req_event(work
, cm_id_priv
, &listen_cm_id_priv
->id
);
1593 cm_process_work(cm_id_priv
, work
);
1594 cm_deref_id(listen_cm_id_priv
);
1598 atomic_dec(&cm_id_priv
->refcount
);
1599 cm_deref_id(listen_cm_id_priv
);
1601 ib_destroy_cm_id(cm_id
);
1605 static void cm_format_rep(struct cm_rep_msg
*rep_msg
,
1606 struct cm_id_private
*cm_id_priv
,
1607 struct ib_cm_rep_param
*param
)
1609 cm_format_mad_hdr(&rep_msg
->hdr
, CM_REP_ATTR_ID
, cm_id_priv
->tid
);
1610 rep_msg
->local_comm_id
= cm_id_priv
->id
.local_id
;
1611 rep_msg
->remote_comm_id
= cm_id_priv
->id
.remote_id
;
1612 cm_rep_set_starting_psn(rep_msg
, cpu_to_be32(param
->starting_psn
));
1613 rep_msg
->resp_resources
= param
->responder_resources
;
1614 cm_rep_set_target_ack_delay(rep_msg
,
1615 cm_id_priv
->av
.port
->cm_dev
->ack_delay
);
1616 cm_rep_set_failover(rep_msg
, param
->failover_accepted
);
1617 cm_rep_set_rnr_retry_count(rep_msg
, param
->rnr_retry_count
);
1618 rep_msg
->local_ca_guid
= cm_id_priv
->id
.device
->node_guid
;
1620 if (cm_id_priv
->qp_type
!= IB_QPT_XRC_TGT
) {
1621 rep_msg
->initiator_depth
= param
->initiator_depth
;
1622 cm_rep_set_flow_ctrl(rep_msg
, param
->flow_control
);
1623 cm_rep_set_srq(rep_msg
, param
->srq
);
1624 cm_rep_set_local_qpn(rep_msg
, cpu_to_be32(param
->qp_num
));
1626 cm_rep_set_srq(rep_msg
, 1);
1627 cm_rep_set_local_eecn(rep_msg
, cpu_to_be32(param
->qp_num
));
1630 if (param
->private_data
&& param
->private_data_len
)
1631 memcpy(rep_msg
->private_data
, param
->private_data
,
1632 param
->private_data_len
);
1635 int ib_send_cm_rep(struct ib_cm_id
*cm_id
,
1636 struct ib_cm_rep_param
*param
)
1638 struct cm_id_private
*cm_id_priv
;
1639 struct ib_mad_send_buf
*msg
;
1640 struct cm_rep_msg
*rep_msg
;
1641 unsigned long flags
;
1644 if (param
->private_data
&&
1645 param
->private_data_len
> IB_CM_REP_PRIVATE_DATA_SIZE
)
1648 cm_id_priv
= container_of(cm_id
, struct cm_id_private
, id
);
1649 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
1650 if (cm_id
->state
!= IB_CM_REQ_RCVD
&&
1651 cm_id
->state
!= IB_CM_MRA_REQ_SENT
) {
1656 ret
= cm_alloc_msg(cm_id_priv
, &msg
);
1660 rep_msg
= (struct cm_rep_msg
*) msg
->mad
;
1661 cm_format_rep(rep_msg
, cm_id_priv
, param
);
1662 msg
->timeout_ms
= cm_id_priv
->timeout_ms
;
1663 msg
->context
[1] = (void *) (unsigned long) IB_CM_REP_SENT
;
1665 ret
= ib_post_send_mad(msg
, NULL
);
1667 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
1672 cm_id
->state
= IB_CM_REP_SENT
;
1673 cm_id_priv
->msg
= msg
;
1674 cm_id_priv
->initiator_depth
= param
->initiator_depth
;
1675 cm_id_priv
->responder_resources
= param
->responder_resources
;
1676 cm_id_priv
->rq_psn
= cm_rep_get_starting_psn(rep_msg
);
1677 cm_id_priv
->local_qpn
= cpu_to_be32(param
->qp_num
& 0xFFFFFF);
1679 out
: spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
1682 EXPORT_SYMBOL(ib_send_cm_rep
);
1684 static void cm_format_rtu(struct cm_rtu_msg
*rtu_msg
,
1685 struct cm_id_private
*cm_id_priv
,
1686 const void *private_data
,
1687 u8 private_data_len
)
1689 cm_format_mad_hdr(&rtu_msg
->hdr
, CM_RTU_ATTR_ID
, cm_id_priv
->tid
);
1690 rtu_msg
->local_comm_id
= cm_id_priv
->id
.local_id
;
1691 rtu_msg
->remote_comm_id
= cm_id_priv
->id
.remote_id
;
1693 if (private_data
&& private_data_len
)
1694 memcpy(rtu_msg
->private_data
, private_data
, private_data_len
);
1697 int ib_send_cm_rtu(struct ib_cm_id
*cm_id
,
1698 const void *private_data
,
1699 u8 private_data_len
)
1701 struct cm_id_private
*cm_id_priv
;
1702 struct ib_mad_send_buf
*msg
;
1703 unsigned long flags
;
1707 if (private_data
&& private_data_len
> IB_CM_RTU_PRIVATE_DATA_SIZE
)
1710 data
= cm_copy_private_data(private_data
, private_data_len
);
1712 return PTR_ERR(data
);
1714 cm_id_priv
= container_of(cm_id
, struct cm_id_private
, id
);
1715 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
1716 if (cm_id
->state
!= IB_CM_REP_RCVD
&&
1717 cm_id
->state
!= IB_CM_MRA_REP_SENT
) {
1722 ret
= cm_alloc_msg(cm_id_priv
, &msg
);
1726 cm_format_rtu((struct cm_rtu_msg
*) msg
->mad
, cm_id_priv
,
1727 private_data
, private_data_len
);
1729 ret
= ib_post_send_mad(msg
, NULL
);
1731 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
1737 cm_id
->state
= IB_CM_ESTABLISHED
;
1738 cm_set_private_data(cm_id_priv
, data
, private_data_len
);
1739 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
1742 error
: spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
1746 EXPORT_SYMBOL(ib_send_cm_rtu
);
1748 static void cm_format_rep_event(struct cm_work
*work
, enum ib_qp_type qp_type
)
1750 struct cm_rep_msg
*rep_msg
;
1751 struct ib_cm_rep_event_param
*param
;
1753 rep_msg
= (struct cm_rep_msg
*)work
->mad_recv_wc
->recv_buf
.mad
;
1754 param
= &work
->cm_event
.param
.rep_rcvd
;
1755 param
->remote_ca_guid
= rep_msg
->local_ca_guid
;
1756 param
->remote_qkey
= be32_to_cpu(rep_msg
->local_qkey
);
1757 param
->remote_qpn
= be32_to_cpu(cm_rep_get_qpn(rep_msg
, qp_type
));
1758 param
->starting_psn
= be32_to_cpu(cm_rep_get_starting_psn(rep_msg
));
1759 param
->responder_resources
= rep_msg
->initiator_depth
;
1760 param
->initiator_depth
= rep_msg
->resp_resources
;
1761 param
->target_ack_delay
= cm_rep_get_target_ack_delay(rep_msg
);
1762 param
->failover_accepted
= cm_rep_get_failover(rep_msg
);
1763 param
->flow_control
= cm_rep_get_flow_ctrl(rep_msg
);
1764 param
->rnr_retry_count
= cm_rep_get_rnr_retry_count(rep_msg
);
1765 param
->srq
= cm_rep_get_srq(rep_msg
);
1766 work
->cm_event
.private_data
= &rep_msg
->private_data
;
1769 static void cm_dup_rep_handler(struct cm_work
*work
)
1771 struct cm_id_private
*cm_id_priv
;
1772 struct cm_rep_msg
*rep_msg
;
1773 struct ib_mad_send_buf
*msg
= NULL
;
1776 rep_msg
= (struct cm_rep_msg
*) work
->mad_recv_wc
->recv_buf
.mad
;
1777 cm_id_priv
= cm_acquire_id(rep_msg
->remote_comm_id
,
1778 rep_msg
->local_comm_id
);
1782 atomic_long_inc(&work
->port
->counter_group
[CM_RECV_DUPLICATES
].
1783 counter
[CM_REP_COUNTER
]);
1784 ret
= cm_alloc_response_msg(work
->port
, work
->mad_recv_wc
, &msg
);
1788 spin_lock_irq(&cm_id_priv
->lock
);
1789 if (cm_id_priv
->id
.state
== IB_CM_ESTABLISHED
)
1790 cm_format_rtu((struct cm_rtu_msg
*) msg
->mad
, cm_id_priv
,
1791 cm_id_priv
->private_data
,
1792 cm_id_priv
->private_data_len
);
1793 else if (cm_id_priv
->id
.state
== IB_CM_MRA_REP_SENT
)
1794 cm_format_mra((struct cm_mra_msg
*) msg
->mad
, cm_id_priv
,
1795 CM_MSG_RESPONSE_REP
, cm_id_priv
->service_timeout
,
1796 cm_id_priv
->private_data
,
1797 cm_id_priv
->private_data_len
);
1800 spin_unlock_irq(&cm_id_priv
->lock
);
1802 ret
= ib_post_send_mad(msg
, NULL
);
1807 unlock
: spin_unlock_irq(&cm_id_priv
->lock
);
1808 free
: cm_free_msg(msg
);
1809 deref
: cm_deref_id(cm_id_priv
);
1812 static int cm_rep_handler(struct cm_work
*work
)
1814 struct cm_id_private
*cm_id_priv
;
1815 struct cm_rep_msg
*rep_msg
;
1818 rep_msg
= (struct cm_rep_msg
*)work
->mad_recv_wc
->recv_buf
.mad
;
1819 cm_id_priv
= cm_acquire_id(rep_msg
->remote_comm_id
, 0);
1821 cm_dup_rep_handler(work
);
1825 cm_format_rep_event(work
, cm_id_priv
->qp_type
);
1827 spin_lock_irq(&cm_id_priv
->lock
);
1828 switch (cm_id_priv
->id
.state
) {
1829 case IB_CM_REQ_SENT
:
1830 case IB_CM_MRA_REQ_RCVD
:
1833 spin_unlock_irq(&cm_id_priv
->lock
);
1838 cm_id_priv
->timewait_info
->work
.remote_id
= rep_msg
->local_comm_id
;
1839 cm_id_priv
->timewait_info
->remote_ca_guid
= rep_msg
->local_ca_guid
;
1840 cm_id_priv
->timewait_info
->remote_qpn
= cm_rep_get_qpn(rep_msg
, cm_id_priv
->qp_type
);
1842 spin_lock(&cm
.lock
);
1843 /* Check for duplicate REP. */
1844 if (cm_insert_remote_id(cm_id_priv
->timewait_info
)) {
1845 spin_unlock(&cm
.lock
);
1846 spin_unlock_irq(&cm_id_priv
->lock
);
1850 /* Check for a stale connection. */
1851 if (cm_insert_remote_qpn(cm_id_priv
->timewait_info
)) {
1852 rb_erase(&cm_id_priv
->timewait_info
->remote_id_node
,
1853 &cm
.remote_id_table
);
1854 cm_id_priv
->timewait_info
->inserted_remote_id
= 0;
1855 spin_unlock(&cm
.lock
);
1856 spin_unlock_irq(&cm_id_priv
->lock
);
1857 cm_issue_rej(work
->port
, work
->mad_recv_wc
,
1858 IB_CM_REJ_STALE_CONN
, CM_MSG_RESPONSE_REP
,
1863 spin_unlock(&cm
.lock
);
1865 cm_id_priv
->id
.state
= IB_CM_REP_RCVD
;
1866 cm_id_priv
->id
.remote_id
= rep_msg
->local_comm_id
;
1867 cm_id_priv
->remote_qpn
= cm_rep_get_qpn(rep_msg
, cm_id_priv
->qp_type
);
1868 cm_id_priv
->initiator_depth
= rep_msg
->resp_resources
;
1869 cm_id_priv
->responder_resources
= rep_msg
->initiator_depth
;
1870 cm_id_priv
->sq_psn
= cm_rep_get_starting_psn(rep_msg
);
1871 cm_id_priv
->rnr_retry_count
= cm_rep_get_rnr_retry_count(rep_msg
);
1872 cm_id_priv
->target_ack_delay
= cm_rep_get_target_ack_delay(rep_msg
);
1873 cm_id_priv
->av
.timeout
=
1874 cm_ack_timeout(cm_id_priv
->target_ack_delay
,
1875 cm_id_priv
->av
.timeout
- 1);
1876 cm_id_priv
->alt_av
.timeout
=
1877 cm_ack_timeout(cm_id_priv
->target_ack_delay
,
1878 cm_id_priv
->alt_av
.timeout
- 1);
1880 /* todo: handle peer_to_peer */
1882 ib_cancel_mad(cm_id_priv
->av
.port
->mad_agent
, cm_id_priv
->msg
);
1883 ret
= atomic_inc_and_test(&cm_id_priv
->work_count
);
1885 list_add_tail(&work
->list
, &cm_id_priv
->work_list
);
1886 spin_unlock_irq(&cm_id_priv
->lock
);
1889 cm_process_work(cm_id_priv
, work
);
1891 cm_deref_id(cm_id_priv
);
1895 cm_deref_id(cm_id_priv
);
1899 static int cm_establish_handler(struct cm_work
*work
)
1901 struct cm_id_private
*cm_id_priv
;
1904 /* See comment in cm_establish about lookup. */
1905 cm_id_priv
= cm_acquire_id(work
->local_id
, work
->remote_id
);
1909 spin_lock_irq(&cm_id_priv
->lock
);
1910 if (cm_id_priv
->id
.state
!= IB_CM_ESTABLISHED
) {
1911 spin_unlock_irq(&cm_id_priv
->lock
);
1915 ib_cancel_mad(cm_id_priv
->av
.port
->mad_agent
, cm_id_priv
->msg
);
1916 ret
= atomic_inc_and_test(&cm_id_priv
->work_count
);
1918 list_add_tail(&work
->list
, &cm_id_priv
->work_list
);
1919 spin_unlock_irq(&cm_id_priv
->lock
);
1922 cm_process_work(cm_id_priv
, work
);
1924 cm_deref_id(cm_id_priv
);
1927 cm_deref_id(cm_id_priv
);
1931 static int cm_rtu_handler(struct cm_work
*work
)
1933 struct cm_id_private
*cm_id_priv
;
1934 struct cm_rtu_msg
*rtu_msg
;
1937 rtu_msg
= (struct cm_rtu_msg
*)work
->mad_recv_wc
->recv_buf
.mad
;
1938 cm_id_priv
= cm_acquire_id(rtu_msg
->remote_comm_id
,
1939 rtu_msg
->local_comm_id
);
1943 work
->cm_event
.private_data
= &rtu_msg
->private_data
;
1945 spin_lock_irq(&cm_id_priv
->lock
);
1946 if (cm_id_priv
->id
.state
!= IB_CM_REP_SENT
&&
1947 cm_id_priv
->id
.state
!= IB_CM_MRA_REP_RCVD
) {
1948 spin_unlock_irq(&cm_id_priv
->lock
);
1949 atomic_long_inc(&work
->port
->counter_group
[CM_RECV_DUPLICATES
].
1950 counter
[CM_RTU_COUNTER
]);
1953 cm_id_priv
->id
.state
= IB_CM_ESTABLISHED
;
1955 ib_cancel_mad(cm_id_priv
->av
.port
->mad_agent
, cm_id_priv
->msg
);
1956 ret
= atomic_inc_and_test(&cm_id_priv
->work_count
);
1958 list_add_tail(&work
->list
, &cm_id_priv
->work_list
);
1959 spin_unlock_irq(&cm_id_priv
->lock
);
1962 cm_process_work(cm_id_priv
, work
);
1964 cm_deref_id(cm_id_priv
);
1967 cm_deref_id(cm_id_priv
);
1971 static void cm_format_dreq(struct cm_dreq_msg
*dreq_msg
,
1972 struct cm_id_private
*cm_id_priv
,
1973 const void *private_data
,
1974 u8 private_data_len
)
1976 cm_format_mad_hdr(&dreq_msg
->hdr
, CM_DREQ_ATTR_ID
,
1977 cm_form_tid(cm_id_priv
, CM_MSG_SEQUENCE_DREQ
));
1978 dreq_msg
->local_comm_id
= cm_id_priv
->id
.local_id
;
1979 dreq_msg
->remote_comm_id
= cm_id_priv
->id
.remote_id
;
1980 cm_dreq_set_remote_qpn(dreq_msg
, cm_id_priv
->remote_qpn
);
1982 if (private_data
&& private_data_len
)
1983 memcpy(dreq_msg
->private_data
, private_data
, private_data_len
);
1986 int ib_send_cm_dreq(struct ib_cm_id
*cm_id
,
1987 const void *private_data
,
1988 u8 private_data_len
)
1990 struct cm_id_private
*cm_id_priv
;
1991 struct ib_mad_send_buf
*msg
;
1992 unsigned long flags
;
1995 if (private_data
&& private_data_len
> IB_CM_DREQ_PRIVATE_DATA_SIZE
)
1998 cm_id_priv
= container_of(cm_id
, struct cm_id_private
, id
);
1999 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
2000 if (cm_id
->state
!= IB_CM_ESTABLISHED
) {
2005 if (cm_id
->lap_state
== IB_CM_LAP_SENT
||
2006 cm_id
->lap_state
== IB_CM_MRA_LAP_RCVD
)
2007 ib_cancel_mad(cm_id_priv
->av
.port
->mad_agent
, cm_id_priv
->msg
);
2009 ret
= cm_alloc_msg(cm_id_priv
, &msg
);
2011 cm_enter_timewait(cm_id_priv
);
2015 cm_format_dreq((struct cm_dreq_msg
*) msg
->mad
, cm_id_priv
,
2016 private_data
, private_data_len
);
2017 msg
->timeout_ms
= cm_id_priv
->timeout_ms
;
2018 msg
->context
[1] = (void *) (unsigned long) IB_CM_DREQ_SENT
;
2020 ret
= ib_post_send_mad(msg
, NULL
);
2022 cm_enter_timewait(cm_id_priv
);
2023 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
2028 cm_id
->state
= IB_CM_DREQ_SENT
;
2029 cm_id_priv
->msg
= msg
;
2030 out
: spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
2033 EXPORT_SYMBOL(ib_send_cm_dreq
);
2035 static void cm_format_drep(struct cm_drep_msg
*drep_msg
,
2036 struct cm_id_private
*cm_id_priv
,
2037 const void *private_data
,
2038 u8 private_data_len
)
2040 cm_format_mad_hdr(&drep_msg
->hdr
, CM_DREP_ATTR_ID
, cm_id_priv
->tid
);
2041 drep_msg
->local_comm_id
= cm_id_priv
->id
.local_id
;
2042 drep_msg
->remote_comm_id
= cm_id_priv
->id
.remote_id
;
2044 if (private_data
&& private_data_len
)
2045 memcpy(drep_msg
->private_data
, private_data
, private_data_len
);
2048 int ib_send_cm_drep(struct ib_cm_id
*cm_id
,
2049 const void *private_data
,
2050 u8 private_data_len
)
2052 struct cm_id_private
*cm_id_priv
;
2053 struct ib_mad_send_buf
*msg
;
2054 unsigned long flags
;
2058 if (private_data
&& private_data_len
> IB_CM_DREP_PRIVATE_DATA_SIZE
)
2061 data
= cm_copy_private_data(private_data
, private_data_len
);
2063 return PTR_ERR(data
);
2065 cm_id_priv
= container_of(cm_id
, struct cm_id_private
, id
);
2066 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
2067 if (cm_id
->state
!= IB_CM_DREQ_RCVD
) {
2068 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
2073 cm_set_private_data(cm_id_priv
, data
, private_data_len
);
2074 cm_enter_timewait(cm_id_priv
);
2076 ret
= cm_alloc_msg(cm_id_priv
, &msg
);
2080 cm_format_drep((struct cm_drep_msg
*) msg
->mad
, cm_id_priv
,
2081 private_data
, private_data_len
);
2083 ret
= ib_post_send_mad(msg
, NULL
);
2085 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
2090 out
: spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
2093 EXPORT_SYMBOL(ib_send_cm_drep
);
2095 static int cm_issue_drep(struct cm_port
*port
,
2096 struct ib_mad_recv_wc
*mad_recv_wc
)
2098 struct ib_mad_send_buf
*msg
= NULL
;
2099 struct cm_dreq_msg
*dreq_msg
;
2100 struct cm_drep_msg
*drep_msg
;
2103 ret
= cm_alloc_response_msg(port
, mad_recv_wc
, &msg
);
2107 dreq_msg
= (struct cm_dreq_msg
*) mad_recv_wc
->recv_buf
.mad
;
2108 drep_msg
= (struct cm_drep_msg
*) msg
->mad
;
2110 cm_format_mad_hdr(&drep_msg
->hdr
, CM_DREP_ATTR_ID
, dreq_msg
->hdr
.tid
);
2111 drep_msg
->remote_comm_id
= dreq_msg
->local_comm_id
;
2112 drep_msg
->local_comm_id
= dreq_msg
->remote_comm_id
;
2114 ret
= ib_post_send_mad(msg
, NULL
);
2121 static int cm_dreq_handler(struct cm_work
*work
)
2123 struct cm_id_private
*cm_id_priv
;
2124 struct cm_dreq_msg
*dreq_msg
;
2125 struct ib_mad_send_buf
*msg
= NULL
;
2128 dreq_msg
= (struct cm_dreq_msg
*)work
->mad_recv_wc
->recv_buf
.mad
;
2129 cm_id_priv
= cm_acquire_id(dreq_msg
->remote_comm_id
,
2130 dreq_msg
->local_comm_id
);
2132 atomic_long_inc(&work
->port
->counter_group
[CM_RECV_DUPLICATES
].
2133 counter
[CM_DREQ_COUNTER
]);
2134 cm_issue_drep(work
->port
, work
->mad_recv_wc
);
2138 work
->cm_event
.private_data
= &dreq_msg
->private_data
;
2140 spin_lock_irq(&cm_id_priv
->lock
);
2141 if (cm_id_priv
->local_qpn
!= cm_dreq_get_remote_qpn(dreq_msg
))
2144 switch (cm_id_priv
->id
.state
) {
2145 case IB_CM_REP_SENT
:
2146 case IB_CM_DREQ_SENT
:
2147 ib_cancel_mad(cm_id_priv
->av
.port
->mad_agent
, cm_id_priv
->msg
);
2149 case IB_CM_ESTABLISHED
:
2150 if (cm_id_priv
->id
.lap_state
== IB_CM_LAP_SENT
||
2151 cm_id_priv
->id
.lap_state
== IB_CM_MRA_LAP_RCVD
)
2152 ib_cancel_mad(cm_id_priv
->av
.port
->mad_agent
, cm_id_priv
->msg
);
2154 case IB_CM_MRA_REP_RCVD
:
2156 case IB_CM_TIMEWAIT
:
2157 atomic_long_inc(&work
->port
->counter_group
[CM_RECV_DUPLICATES
].
2158 counter
[CM_DREQ_COUNTER
]);
2159 if (cm_alloc_response_msg(work
->port
, work
->mad_recv_wc
, &msg
))
2162 cm_format_drep((struct cm_drep_msg
*) msg
->mad
, cm_id_priv
,
2163 cm_id_priv
->private_data
,
2164 cm_id_priv
->private_data_len
);
2165 spin_unlock_irq(&cm_id_priv
->lock
);
2167 if (ib_post_send_mad(msg
, NULL
))
2170 case IB_CM_DREQ_RCVD
:
2171 atomic_long_inc(&work
->port
->counter_group
[CM_RECV_DUPLICATES
].
2172 counter
[CM_DREQ_COUNTER
]);
2177 cm_id_priv
->id
.state
= IB_CM_DREQ_RCVD
;
2178 cm_id_priv
->tid
= dreq_msg
->hdr
.tid
;
2179 ret
= atomic_inc_and_test(&cm_id_priv
->work_count
);
2181 list_add_tail(&work
->list
, &cm_id_priv
->work_list
);
2182 spin_unlock_irq(&cm_id_priv
->lock
);
2185 cm_process_work(cm_id_priv
, work
);
2187 cm_deref_id(cm_id_priv
);
2190 unlock
: spin_unlock_irq(&cm_id_priv
->lock
);
2191 deref
: cm_deref_id(cm_id_priv
);
2195 static int cm_drep_handler(struct cm_work
*work
)
2197 struct cm_id_private
*cm_id_priv
;
2198 struct cm_drep_msg
*drep_msg
;
2201 drep_msg
= (struct cm_drep_msg
*)work
->mad_recv_wc
->recv_buf
.mad
;
2202 cm_id_priv
= cm_acquire_id(drep_msg
->remote_comm_id
,
2203 drep_msg
->local_comm_id
);
2207 work
->cm_event
.private_data
= &drep_msg
->private_data
;
2209 spin_lock_irq(&cm_id_priv
->lock
);
2210 if (cm_id_priv
->id
.state
!= IB_CM_DREQ_SENT
&&
2211 cm_id_priv
->id
.state
!= IB_CM_DREQ_RCVD
) {
2212 spin_unlock_irq(&cm_id_priv
->lock
);
2215 cm_enter_timewait(cm_id_priv
);
2217 ib_cancel_mad(cm_id_priv
->av
.port
->mad_agent
, cm_id_priv
->msg
);
2218 ret
= atomic_inc_and_test(&cm_id_priv
->work_count
);
2220 list_add_tail(&work
->list
, &cm_id_priv
->work_list
);
2221 spin_unlock_irq(&cm_id_priv
->lock
);
2224 cm_process_work(cm_id_priv
, work
);
2226 cm_deref_id(cm_id_priv
);
2229 cm_deref_id(cm_id_priv
);
2233 int ib_send_cm_rej(struct ib_cm_id
*cm_id
,
2234 enum ib_cm_rej_reason reason
,
2237 const void *private_data
,
2238 u8 private_data_len
)
2240 struct cm_id_private
*cm_id_priv
;
2241 struct ib_mad_send_buf
*msg
;
2242 unsigned long flags
;
2245 if ((private_data
&& private_data_len
> IB_CM_REJ_PRIVATE_DATA_SIZE
) ||
2246 (ari
&& ari_length
> IB_CM_REJ_ARI_LENGTH
))
2249 cm_id_priv
= container_of(cm_id
, struct cm_id_private
, id
);
2251 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
2252 switch (cm_id
->state
) {
2253 case IB_CM_REQ_SENT
:
2254 case IB_CM_MRA_REQ_RCVD
:
2255 case IB_CM_REQ_RCVD
:
2256 case IB_CM_MRA_REQ_SENT
:
2257 case IB_CM_REP_RCVD
:
2258 case IB_CM_MRA_REP_SENT
:
2259 ret
= cm_alloc_msg(cm_id_priv
, &msg
);
2261 cm_format_rej((struct cm_rej_msg
*) msg
->mad
,
2262 cm_id_priv
, reason
, ari
, ari_length
,
2263 private_data
, private_data_len
);
2265 cm_reset_to_idle(cm_id_priv
);
2267 case IB_CM_REP_SENT
:
2268 case IB_CM_MRA_REP_RCVD
:
2269 ret
= cm_alloc_msg(cm_id_priv
, &msg
);
2271 cm_format_rej((struct cm_rej_msg
*) msg
->mad
,
2272 cm_id_priv
, reason
, ari
, ari_length
,
2273 private_data
, private_data_len
);
2275 cm_enter_timewait(cm_id_priv
);
2285 ret
= ib_post_send_mad(msg
, NULL
);
2289 out
: spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
2292 EXPORT_SYMBOL(ib_send_cm_rej
);
2294 static void cm_format_rej_event(struct cm_work
*work
)
2296 struct cm_rej_msg
*rej_msg
;
2297 struct ib_cm_rej_event_param
*param
;
2299 rej_msg
= (struct cm_rej_msg
*)work
->mad_recv_wc
->recv_buf
.mad
;
2300 param
= &work
->cm_event
.param
.rej_rcvd
;
2301 param
->ari
= rej_msg
->ari
;
2302 param
->ari_length
= cm_rej_get_reject_info_len(rej_msg
);
2303 param
->reason
= __be16_to_cpu(rej_msg
->reason
);
2304 work
->cm_event
.private_data
= &rej_msg
->private_data
;
2307 static struct cm_id_private
* cm_acquire_rejected_id(struct cm_rej_msg
*rej_msg
)
2309 struct cm_timewait_info
*timewait_info
;
2310 struct cm_id_private
*cm_id_priv
;
2313 remote_id
= rej_msg
->local_comm_id
;
2315 if (__be16_to_cpu(rej_msg
->reason
) == IB_CM_REJ_TIMEOUT
) {
2316 spin_lock_irq(&cm
.lock
);
2317 timewait_info
= cm_find_remote_id( *((__be64
*) rej_msg
->ari
),
2319 if (!timewait_info
) {
2320 spin_unlock_irq(&cm
.lock
);
2323 cm_id_priv
= idr_find(&cm
.local_id_table
, (__force
int)
2324 (timewait_info
->work
.local_id
^
2325 cm
.random_id_operand
));
2327 if (cm_id_priv
->id
.remote_id
== remote_id
)
2328 atomic_inc(&cm_id_priv
->refcount
);
2332 spin_unlock_irq(&cm
.lock
);
2333 } else if (cm_rej_get_msg_rejected(rej_msg
) == CM_MSG_RESPONSE_REQ
)
2334 cm_id_priv
= cm_acquire_id(rej_msg
->remote_comm_id
, 0);
2336 cm_id_priv
= cm_acquire_id(rej_msg
->remote_comm_id
, remote_id
);
2341 static int cm_rej_handler(struct cm_work
*work
)
2343 struct cm_id_private
*cm_id_priv
;
2344 struct cm_rej_msg
*rej_msg
;
2347 rej_msg
= (struct cm_rej_msg
*)work
->mad_recv_wc
->recv_buf
.mad
;
2348 cm_id_priv
= cm_acquire_rejected_id(rej_msg
);
2352 cm_format_rej_event(work
);
2354 spin_lock_irq(&cm_id_priv
->lock
);
2355 switch (cm_id_priv
->id
.state
) {
2356 case IB_CM_REQ_SENT
:
2357 case IB_CM_MRA_REQ_RCVD
:
2358 case IB_CM_REP_SENT
:
2359 case IB_CM_MRA_REP_RCVD
:
2360 ib_cancel_mad(cm_id_priv
->av
.port
->mad_agent
, cm_id_priv
->msg
);
2362 case IB_CM_REQ_RCVD
:
2363 case IB_CM_MRA_REQ_SENT
:
2364 if (__be16_to_cpu(rej_msg
->reason
) == IB_CM_REJ_STALE_CONN
)
2365 cm_enter_timewait(cm_id_priv
);
2367 cm_reset_to_idle(cm_id_priv
);
2369 case IB_CM_DREQ_SENT
:
2370 ib_cancel_mad(cm_id_priv
->av
.port
->mad_agent
, cm_id_priv
->msg
);
2372 case IB_CM_REP_RCVD
:
2373 case IB_CM_MRA_REP_SENT
:
2374 cm_enter_timewait(cm_id_priv
);
2376 case IB_CM_ESTABLISHED
:
2377 if (cm_id_priv
->id
.lap_state
== IB_CM_LAP_UNINIT
||
2378 cm_id_priv
->id
.lap_state
== IB_CM_LAP_SENT
) {
2379 if (cm_id_priv
->id
.lap_state
== IB_CM_LAP_SENT
)
2380 ib_cancel_mad(cm_id_priv
->av
.port
->mad_agent
,
2382 cm_enter_timewait(cm_id_priv
);
2387 spin_unlock_irq(&cm_id_priv
->lock
);
2392 ret
= atomic_inc_and_test(&cm_id_priv
->work_count
);
2394 list_add_tail(&work
->list
, &cm_id_priv
->work_list
);
2395 spin_unlock_irq(&cm_id_priv
->lock
);
2398 cm_process_work(cm_id_priv
, work
);
2400 cm_deref_id(cm_id_priv
);
2403 cm_deref_id(cm_id_priv
);
2407 int ib_send_cm_mra(struct ib_cm_id
*cm_id
,
2409 const void *private_data
,
2410 u8 private_data_len
)
2412 struct cm_id_private
*cm_id_priv
;
2413 struct ib_mad_send_buf
*msg
;
2414 enum ib_cm_state cm_state
;
2415 enum ib_cm_lap_state lap_state
;
2416 enum cm_msg_response msg_response
;
2418 unsigned long flags
;
2421 if (private_data
&& private_data_len
> IB_CM_MRA_PRIVATE_DATA_SIZE
)
2424 data
= cm_copy_private_data(private_data
, private_data_len
);
2426 return PTR_ERR(data
);
2428 cm_id_priv
= container_of(cm_id
, struct cm_id_private
, id
);
2430 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
2431 switch(cm_id_priv
->id
.state
) {
2432 case IB_CM_REQ_RCVD
:
2433 cm_state
= IB_CM_MRA_REQ_SENT
;
2434 lap_state
= cm_id
->lap_state
;
2435 msg_response
= CM_MSG_RESPONSE_REQ
;
2437 case IB_CM_REP_RCVD
:
2438 cm_state
= IB_CM_MRA_REP_SENT
;
2439 lap_state
= cm_id
->lap_state
;
2440 msg_response
= CM_MSG_RESPONSE_REP
;
2442 case IB_CM_ESTABLISHED
:
2443 if (cm_id
->lap_state
== IB_CM_LAP_RCVD
) {
2444 cm_state
= cm_id
->state
;
2445 lap_state
= IB_CM_MRA_LAP_SENT
;
2446 msg_response
= CM_MSG_RESPONSE_OTHER
;
2454 if (!(service_timeout
& IB_CM_MRA_FLAG_DELAY
)) {
2455 ret
= cm_alloc_msg(cm_id_priv
, &msg
);
2459 cm_format_mra((struct cm_mra_msg
*) msg
->mad
, cm_id_priv
,
2460 msg_response
, service_timeout
,
2461 private_data
, private_data_len
);
2462 ret
= ib_post_send_mad(msg
, NULL
);
2467 cm_id
->state
= cm_state
;
2468 cm_id
->lap_state
= lap_state
;
2469 cm_id_priv
->service_timeout
= service_timeout
;
2470 cm_set_private_data(cm_id_priv
, data
, private_data_len
);
2471 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
2474 error1
: spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
2478 error2
: spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
2483 EXPORT_SYMBOL(ib_send_cm_mra
);
2485 static struct cm_id_private
* cm_acquire_mraed_id(struct cm_mra_msg
*mra_msg
)
2487 switch (cm_mra_get_msg_mraed(mra_msg
)) {
2488 case CM_MSG_RESPONSE_REQ
:
2489 return cm_acquire_id(mra_msg
->remote_comm_id
, 0);
2490 case CM_MSG_RESPONSE_REP
:
2491 case CM_MSG_RESPONSE_OTHER
:
2492 return cm_acquire_id(mra_msg
->remote_comm_id
,
2493 mra_msg
->local_comm_id
);
2499 static int cm_mra_handler(struct cm_work
*work
)
2501 struct cm_id_private
*cm_id_priv
;
2502 struct cm_mra_msg
*mra_msg
;
2505 mra_msg
= (struct cm_mra_msg
*)work
->mad_recv_wc
->recv_buf
.mad
;
2506 cm_id_priv
= cm_acquire_mraed_id(mra_msg
);
2510 work
->cm_event
.private_data
= &mra_msg
->private_data
;
2511 work
->cm_event
.param
.mra_rcvd
.service_timeout
=
2512 cm_mra_get_service_timeout(mra_msg
);
2513 timeout
= cm_convert_to_ms(cm_mra_get_service_timeout(mra_msg
)) +
2514 cm_convert_to_ms(cm_id_priv
->av
.timeout
);
2516 spin_lock_irq(&cm_id_priv
->lock
);
2517 switch (cm_id_priv
->id
.state
) {
2518 case IB_CM_REQ_SENT
:
2519 if (cm_mra_get_msg_mraed(mra_msg
) != CM_MSG_RESPONSE_REQ
||
2520 ib_modify_mad(cm_id_priv
->av
.port
->mad_agent
,
2521 cm_id_priv
->msg
, timeout
))
2523 cm_id_priv
->id
.state
= IB_CM_MRA_REQ_RCVD
;
2525 case IB_CM_REP_SENT
:
2526 if (cm_mra_get_msg_mraed(mra_msg
) != CM_MSG_RESPONSE_REP
||
2527 ib_modify_mad(cm_id_priv
->av
.port
->mad_agent
,
2528 cm_id_priv
->msg
, timeout
))
2530 cm_id_priv
->id
.state
= IB_CM_MRA_REP_RCVD
;
2532 case IB_CM_ESTABLISHED
:
2533 if (cm_mra_get_msg_mraed(mra_msg
) != CM_MSG_RESPONSE_OTHER
||
2534 cm_id_priv
->id
.lap_state
!= IB_CM_LAP_SENT
||
2535 ib_modify_mad(cm_id_priv
->av
.port
->mad_agent
,
2536 cm_id_priv
->msg
, timeout
)) {
2537 if (cm_id_priv
->id
.lap_state
== IB_CM_MRA_LAP_RCVD
)
2538 atomic_long_inc(&work
->port
->
2539 counter_group
[CM_RECV_DUPLICATES
].
2540 counter
[CM_MRA_COUNTER
]);
2543 cm_id_priv
->id
.lap_state
= IB_CM_MRA_LAP_RCVD
;
2545 case IB_CM_MRA_REQ_RCVD
:
2546 case IB_CM_MRA_REP_RCVD
:
2547 atomic_long_inc(&work
->port
->counter_group
[CM_RECV_DUPLICATES
].
2548 counter
[CM_MRA_COUNTER
]);
2554 cm_id_priv
->msg
->context
[1] = (void *) (unsigned long)
2555 cm_id_priv
->id
.state
;
2556 ret
= atomic_inc_and_test(&cm_id_priv
->work_count
);
2558 list_add_tail(&work
->list
, &cm_id_priv
->work_list
);
2559 spin_unlock_irq(&cm_id_priv
->lock
);
2562 cm_process_work(cm_id_priv
, work
);
2564 cm_deref_id(cm_id_priv
);
2567 spin_unlock_irq(&cm_id_priv
->lock
);
2568 cm_deref_id(cm_id_priv
);
2572 static void cm_format_lap(struct cm_lap_msg
*lap_msg
,
2573 struct cm_id_private
*cm_id_priv
,
2574 struct ib_sa_path_rec
*alternate_path
,
2575 const void *private_data
,
2576 u8 private_data_len
)
2578 cm_format_mad_hdr(&lap_msg
->hdr
, CM_LAP_ATTR_ID
,
2579 cm_form_tid(cm_id_priv
, CM_MSG_SEQUENCE_LAP
));
2580 lap_msg
->local_comm_id
= cm_id_priv
->id
.local_id
;
2581 lap_msg
->remote_comm_id
= cm_id_priv
->id
.remote_id
;
2582 cm_lap_set_remote_qpn(lap_msg
, cm_id_priv
->remote_qpn
);
2583 /* todo: need remote CM response timeout */
2584 cm_lap_set_remote_resp_timeout(lap_msg
, 0x1F);
2585 lap_msg
->alt_local_lid
= alternate_path
->slid
;
2586 lap_msg
->alt_remote_lid
= alternate_path
->dlid
;
2587 lap_msg
->alt_local_gid
= alternate_path
->sgid
;
2588 lap_msg
->alt_remote_gid
= alternate_path
->dgid
;
2589 cm_lap_set_flow_label(lap_msg
, alternate_path
->flow_label
);
2590 cm_lap_set_traffic_class(lap_msg
, alternate_path
->traffic_class
);
2591 lap_msg
->alt_hop_limit
= alternate_path
->hop_limit
;
2592 cm_lap_set_packet_rate(lap_msg
, alternate_path
->rate
);
2593 cm_lap_set_sl(lap_msg
, alternate_path
->sl
);
2594 cm_lap_set_subnet_local(lap_msg
, 1); /* local only... */
2595 cm_lap_set_local_ack_timeout(lap_msg
,
2596 cm_ack_timeout(cm_id_priv
->av
.port
->cm_dev
->ack_delay
,
2597 alternate_path
->packet_life_time
));
2599 if (private_data
&& private_data_len
)
2600 memcpy(lap_msg
->private_data
, private_data
, private_data_len
);
2603 int ib_send_cm_lap(struct ib_cm_id
*cm_id
,
2604 struct ib_sa_path_rec
*alternate_path
,
2605 const void *private_data
,
2606 u8 private_data_len
)
2608 struct cm_id_private
*cm_id_priv
;
2609 struct ib_mad_send_buf
*msg
;
2610 unsigned long flags
;
2613 if (private_data
&& private_data_len
> IB_CM_LAP_PRIVATE_DATA_SIZE
)
2616 cm_id_priv
= container_of(cm_id
, struct cm_id_private
, id
);
2617 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
2618 if (cm_id
->state
!= IB_CM_ESTABLISHED
||
2619 (cm_id
->lap_state
!= IB_CM_LAP_UNINIT
&&
2620 cm_id
->lap_state
!= IB_CM_LAP_IDLE
)) {
2625 ret
= cm_init_av_by_path(alternate_path
, &cm_id_priv
->alt_av
);
2628 cm_id_priv
->alt_av
.timeout
=
2629 cm_ack_timeout(cm_id_priv
->target_ack_delay
,
2630 cm_id_priv
->alt_av
.timeout
- 1);
2632 ret
= cm_alloc_msg(cm_id_priv
, &msg
);
2636 cm_format_lap((struct cm_lap_msg
*) msg
->mad
, cm_id_priv
,
2637 alternate_path
, private_data
, private_data_len
);
2638 msg
->timeout_ms
= cm_id_priv
->timeout_ms
;
2639 msg
->context
[1] = (void *) (unsigned long) IB_CM_ESTABLISHED
;
2641 ret
= ib_post_send_mad(msg
, NULL
);
2643 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
2648 cm_id
->lap_state
= IB_CM_LAP_SENT
;
2649 cm_id_priv
->msg
= msg
;
2651 out
: spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
2654 EXPORT_SYMBOL(ib_send_cm_lap
);
2656 static void cm_format_path_from_lap(struct cm_id_private
*cm_id_priv
,
2657 struct ib_sa_path_rec
*path
,
2658 struct cm_lap_msg
*lap_msg
)
2660 memset(path
, 0, sizeof *path
);
2661 path
->dgid
= lap_msg
->alt_local_gid
;
2662 path
->sgid
= lap_msg
->alt_remote_gid
;
2663 path
->dlid
= lap_msg
->alt_local_lid
;
2664 path
->slid
= lap_msg
->alt_remote_lid
;
2665 path
->flow_label
= cm_lap_get_flow_label(lap_msg
);
2666 path
->hop_limit
= lap_msg
->alt_hop_limit
;
2667 path
->traffic_class
= cm_lap_get_traffic_class(lap_msg
);
2668 path
->reversible
= 1;
2669 path
->pkey
= cm_id_priv
->pkey
;
2670 path
->sl
= cm_lap_get_sl(lap_msg
);
2671 path
->mtu_selector
= IB_SA_EQ
;
2672 path
->mtu
= cm_id_priv
->path_mtu
;
2673 path
->rate_selector
= IB_SA_EQ
;
2674 path
->rate
= cm_lap_get_packet_rate(lap_msg
);
2675 path
->packet_life_time_selector
= IB_SA_EQ
;
2676 path
->packet_life_time
= cm_lap_get_local_ack_timeout(lap_msg
);
2677 path
->packet_life_time
-= (path
->packet_life_time
> 0);
2680 static int cm_lap_handler(struct cm_work
*work
)
2682 struct cm_id_private
*cm_id_priv
;
2683 struct cm_lap_msg
*lap_msg
;
2684 struct ib_cm_lap_event_param
*param
;
2685 struct ib_mad_send_buf
*msg
= NULL
;
2688 /* todo: verify LAP request and send reject APR if invalid. */
2689 lap_msg
= (struct cm_lap_msg
*)work
->mad_recv_wc
->recv_buf
.mad
;
2690 cm_id_priv
= cm_acquire_id(lap_msg
->remote_comm_id
,
2691 lap_msg
->local_comm_id
);
2695 param
= &work
->cm_event
.param
.lap_rcvd
;
2696 param
->alternate_path
= &work
->path
[0];
2697 cm_format_path_from_lap(cm_id_priv
, param
->alternate_path
, lap_msg
);
2698 work
->cm_event
.private_data
= &lap_msg
->private_data
;
2700 spin_lock_irq(&cm_id_priv
->lock
);
2701 if (cm_id_priv
->id
.state
!= IB_CM_ESTABLISHED
)
2704 switch (cm_id_priv
->id
.lap_state
) {
2705 case IB_CM_LAP_UNINIT
:
2706 case IB_CM_LAP_IDLE
:
2708 case IB_CM_MRA_LAP_SENT
:
2709 atomic_long_inc(&work
->port
->counter_group
[CM_RECV_DUPLICATES
].
2710 counter
[CM_LAP_COUNTER
]);
2711 if (cm_alloc_response_msg(work
->port
, work
->mad_recv_wc
, &msg
))
2714 cm_format_mra((struct cm_mra_msg
*) msg
->mad
, cm_id_priv
,
2715 CM_MSG_RESPONSE_OTHER
,
2716 cm_id_priv
->service_timeout
,
2717 cm_id_priv
->private_data
,
2718 cm_id_priv
->private_data_len
);
2719 spin_unlock_irq(&cm_id_priv
->lock
);
2721 if (ib_post_send_mad(msg
, NULL
))
2724 case IB_CM_LAP_RCVD
:
2725 atomic_long_inc(&work
->port
->counter_group
[CM_RECV_DUPLICATES
].
2726 counter
[CM_LAP_COUNTER
]);
2732 cm_id_priv
->id
.lap_state
= IB_CM_LAP_RCVD
;
2733 cm_id_priv
->tid
= lap_msg
->hdr
.tid
;
2734 cm_init_av_for_response(work
->port
, work
->mad_recv_wc
->wc
,
2735 work
->mad_recv_wc
->recv_buf
.grh
,
2737 cm_init_av_by_path(param
->alternate_path
, &cm_id_priv
->alt_av
);
2738 ret
= atomic_inc_and_test(&cm_id_priv
->work_count
);
2740 list_add_tail(&work
->list
, &cm_id_priv
->work_list
);
2741 spin_unlock_irq(&cm_id_priv
->lock
);
2744 cm_process_work(cm_id_priv
, work
);
2746 cm_deref_id(cm_id_priv
);
2749 unlock
: spin_unlock_irq(&cm_id_priv
->lock
);
2750 deref
: cm_deref_id(cm_id_priv
);
2754 static void cm_format_apr(struct cm_apr_msg
*apr_msg
,
2755 struct cm_id_private
*cm_id_priv
,
2756 enum ib_cm_apr_status status
,
2759 const void *private_data
,
2760 u8 private_data_len
)
2762 cm_format_mad_hdr(&apr_msg
->hdr
, CM_APR_ATTR_ID
, cm_id_priv
->tid
);
2763 apr_msg
->local_comm_id
= cm_id_priv
->id
.local_id
;
2764 apr_msg
->remote_comm_id
= cm_id_priv
->id
.remote_id
;
2765 apr_msg
->ap_status
= (u8
) status
;
2767 if (info
&& info_length
) {
2768 apr_msg
->info_length
= info_length
;
2769 memcpy(apr_msg
->info
, info
, info_length
);
2772 if (private_data
&& private_data_len
)
2773 memcpy(apr_msg
->private_data
, private_data
, private_data_len
);
2776 int ib_send_cm_apr(struct ib_cm_id
*cm_id
,
2777 enum ib_cm_apr_status status
,
2780 const void *private_data
,
2781 u8 private_data_len
)
2783 struct cm_id_private
*cm_id_priv
;
2784 struct ib_mad_send_buf
*msg
;
2785 unsigned long flags
;
2788 if ((private_data
&& private_data_len
> IB_CM_APR_PRIVATE_DATA_SIZE
) ||
2789 (info
&& info_length
> IB_CM_APR_INFO_LENGTH
))
2792 cm_id_priv
= container_of(cm_id
, struct cm_id_private
, id
);
2793 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
2794 if (cm_id
->state
!= IB_CM_ESTABLISHED
||
2795 (cm_id
->lap_state
!= IB_CM_LAP_RCVD
&&
2796 cm_id
->lap_state
!= IB_CM_MRA_LAP_SENT
)) {
2801 ret
= cm_alloc_msg(cm_id_priv
, &msg
);
2805 cm_format_apr((struct cm_apr_msg
*) msg
->mad
, cm_id_priv
, status
,
2806 info
, info_length
, private_data
, private_data_len
);
2807 ret
= ib_post_send_mad(msg
, NULL
);
2809 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
2814 cm_id
->lap_state
= IB_CM_LAP_IDLE
;
2815 out
: spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
2818 EXPORT_SYMBOL(ib_send_cm_apr
);
2820 static int cm_apr_handler(struct cm_work
*work
)
2822 struct cm_id_private
*cm_id_priv
;
2823 struct cm_apr_msg
*apr_msg
;
2826 apr_msg
= (struct cm_apr_msg
*)work
->mad_recv_wc
->recv_buf
.mad
;
2827 cm_id_priv
= cm_acquire_id(apr_msg
->remote_comm_id
,
2828 apr_msg
->local_comm_id
);
2830 return -EINVAL
; /* Unmatched reply. */
2832 work
->cm_event
.param
.apr_rcvd
.ap_status
= apr_msg
->ap_status
;
2833 work
->cm_event
.param
.apr_rcvd
.apr_info
= &apr_msg
->info
;
2834 work
->cm_event
.param
.apr_rcvd
.info_len
= apr_msg
->info_length
;
2835 work
->cm_event
.private_data
= &apr_msg
->private_data
;
2837 spin_lock_irq(&cm_id_priv
->lock
);
2838 if (cm_id_priv
->id
.state
!= IB_CM_ESTABLISHED
||
2839 (cm_id_priv
->id
.lap_state
!= IB_CM_LAP_SENT
&&
2840 cm_id_priv
->id
.lap_state
!= IB_CM_MRA_LAP_RCVD
)) {
2841 spin_unlock_irq(&cm_id_priv
->lock
);
2844 cm_id_priv
->id
.lap_state
= IB_CM_LAP_IDLE
;
2845 ib_cancel_mad(cm_id_priv
->av
.port
->mad_agent
, cm_id_priv
->msg
);
2846 cm_id_priv
->msg
= NULL
;
2848 ret
= atomic_inc_and_test(&cm_id_priv
->work_count
);
2850 list_add_tail(&work
->list
, &cm_id_priv
->work_list
);
2851 spin_unlock_irq(&cm_id_priv
->lock
);
2854 cm_process_work(cm_id_priv
, work
);
2856 cm_deref_id(cm_id_priv
);
2859 cm_deref_id(cm_id_priv
);
2863 static int cm_timewait_handler(struct cm_work
*work
)
2865 struct cm_timewait_info
*timewait_info
;
2866 struct cm_id_private
*cm_id_priv
;
2869 timewait_info
= (struct cm_timewait_info
*)work
;
2870 spin_lock_irq(&cm
.lock
);
2871 list_del(&timewait_info
->list
);
2872 spin_unlock_irq(&cm
.lock
);
2874 cm_id_priv
= cm_acquire_id(timewait_info
->work
.local_id
,
2875 timewait_info
->work
.remote_id
);
2879 spin_lock_irq(&cm_id_priv
->lock
);
2880 if (cm_id_priv
->id
.state
!= IB_CM_TIMEWAIT
||
2881 cm_id_priv
->remote_qpn
!= timewait_info
->remote_qpn
) {
2882 spin_unlock_irq(&cm_id_priv
->lock
);
2885 cm_id_priv
->id
.state
= IB_CM_IDLE
;
2886 ret
= atomic_inc_and_test(&cm_id_priv
->work_count
);
2888 list_add_tail(&work
->list
, &cm_id_priv
->work_list
);
2889 spin_unlock_irq(&cm_id_priv
->lock
);
2892 cm_process_work(cm_id_priv
, work
);
2894 cm_deref_id(cm_id_priv
);
2897 cm_deref_id(cm_id_priv
);
2901 static void cm_format_sidr_req(struct cm_sidr_req_msg
*sidr_req_msg
,
2902 struct cm_id_private
*cm_id_priv
,
2903 struct ib_cm_sidr_req_param
*param
)
2905 cm_format_mad_hdr(&sidr_req_msg
->hdr
, CM_SIDR_REQ_ATTR_ID
,
2906 cm_form_tid(cm_id_priv
, CM_MSG_SEQUENCE_SIDR
));
2907 sidr_req_msg
->request_id
= cm_id_priv
->id
.local_id
;
2908 sidr_req_msg
->pkey
= param
->path
->pkey
;
2909 sidr_req_msg
->service_id
= param
->service_id
;
2911 if (param
->private_data
&& param
->private_data_len
)
2912 memcpy(sidr_req_msg
->private_data
, param
->private_data
,
2913 param
->private_data_len
);
2916 int ib_send_cm_sidr_req(struct ib_cm_id
*cm_id
,
2917 struct ib_cm_sidr_req_param
*param
)
2919 struct cm_id_private
*cm_id_priv
;
2920 struct ib_mad_send_buf
*msg
;
2921 unsigned long flags
;
2924 if (!param
->path
|| (param
->private_data
&&
2925 param
->private_data_len
> IB_CM_SIDR_REQ_PRIVATE_DATA_SIZE
))
2928 cm_id_priv
= container_of(cm_id
, struct cm_id_private
, id
);
2929 ret
= cm_init_av_by_path(param
->path
, &cm_id_priv
->av
);
2933 cm_id
->service_id
= param
->service_id
;
2934 cm_id
->service_mask
= ~cpu_to_be64(0);
2935 cm_id_priv
->timeout_ms
= param
->timeout_ms
;
2936 cm_id_priv
->max_cm_retries
= param
->max_cm_retries
;
2937 ret
= cm_alloc_msg(cm_id_priv
, &msg
);
2941 cm_format_sidr_req((struct cm_sidr_req_msg
*) msg
->mad
, cm_id_priv
,
2943 msg
->timeout_ms
= cm_id_priv
->timeout_ms
;
2944 msg
->context
[1] = (void *) (unsigned long) IB_CM_SIDR_REQ_SENT
;
2946 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
2947 if (cm_id
->state
== IB_CM_IDLE
)
2948 ret
= ib_post_send_mad(msg
, NULL
);
2953 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
2957 cm_id
->state
= IB_CM_SIDR_REQ_SENT
;
2958 cm_id_priv
->msg
= msg
;
2959 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
2963 EXPORT_SYMBOL(ib_send_cm_sidr_req
);
2965 static void cm_format_sidr_req_event(struct cm_work
*work
,
2966 struct ib_cm_id
*listen_id
)
2968 struct cm_sidr_req_msg
*sidr_req_msg
;
2969 struct ib_cm_sidr_req_event_param
*param
;
2971 sidr_req_msg
= (struct cm_sidr_req_msg
*)
2972 work
->mad_recv_wc
->recv_buf
.mad
;
2973 param
= &work
->cm_event
.param
.sidr_req_rcvd
;
2974 param
->pkey
= __be16_to_cpu(sidr_req_msg
->pkey
);
2975 param
->listen_id
= listen_id
;
2976 param
->port
= work
->port
->port_num
;
2977 work
->cm_event
.private_data
= &sidr_req_msg
->private_data
;
2980 static int cm_sidr_req_handler(struct cm_work
*work
)
2982 struct ib_cm_id
*cm_id
;
2983 struct cm_id_private
*cm_id_priv
, *cur_cm_id_priv
;
2984 struct cm_sidr_req_msg
*sidr_req_msg
;
2987 cm_id
= ib_create_cm_id(work
->port
->cm_dev
->ib_device
, NULL
, NULL
);
2989 return PTR_ERR(cm_id
);
2990 cm_id_priv
= container_of(cm_id
, struct cm_id_private
, id
);
2992 /* Record SGID/SLID and request ID for lookup. */
2993 sidr_req_msg
= (struct cm_sidr_req_msg
*)
2994 work
->mad_recv_wc
->recv_buf
.mad
;
2995 wc
= work
->mad_recv_wc
->wc
;
2996 cm_id_priv
->av
.dgid
.global
.subnet_prefix
= cpu_to_be64(wc
->slid
);
2997 cm_id_priv
->av
.dgid
.global
.interface_id
= 0;
2998 cm_init_av_for_response(work
->port
, work
->mad_recv_wc
->wc
,
2999 work
->mad_recv_wc
->recv_buf
.grh
,
3001 cm_id_priv
->id
.remote_id
= sidr_req_msg
->request_id
;
3002 cm_id_priv
->tid
= sidr_req_msg
->hdr
.tid
;
3003 atomic_inc(&cm_id_priv
->work_count
);
3005 spin_lock_irq(&cm
.lock
);
3006 cur_cm_id_priv
= cm_insert_remote_sidr(cm_id_priv
);
3007 if (cur_cm_id_priv
) {
3008 spin_unlock_irq(&cm
.lock
);
3009 atomic_long_inc(&work
->port
->counter_group
[CM_RECV_DUPLICATES
].
3010 counter
[CM_SIDR_REQ_COUNTER
]);
3011 goto out
; /* Duplicate message. */
3013 cm_id_priv
->id
.state
= IB_CM_SIDR_REQ_RCVD
;
3014 cur_cm_id_priv
= cm_find_listen(cm_id
->device
,
3015 sidr_req_msg
->service_id
,
3016 sidr_req_msg
->private_data
);
3017 if (!cur_cm_id_priv
) {
3018 spin_unlock_irq(&cm
.lock
);
3019 cm_reject_sidr_req(cm_id_priv
, IB_SIDR_UNSUPPORTED
);
3020 goto out
; /* No match. */
3022 atomic_inc(&cur_cm_id_priv
->refcount
);
3023 atomic_inc(&cm_id_priv
->refcount
);
3024 spin_unlock_irq(&cm
.lock
);
3026 cm_id_priv
->id
.cm_handler
= cur_cm_id_priv
->id
.cm_handler
;
3027 cm_id_priv
->id
.context
= cur_cm_id_priv
->id
.context
;
3028 cm_id_priv
->id
.service_id
= sidr_req_msg
->service_id
;
3029 cm_id_priv
->id
.service_mask
= ~cpu_to_be64(0);
3031 cm_format_sidr_req_event(work
, &cur_cm_id_priv
->id
);
3032 cm_process_work(cm_id_priv
, work
);
3033 cm_deref_id(cur_cm_id_priv
);
3036 ib_destroy_cm_id(&cm_id_priv
->id
);
3040 static void cm_format_sidr_rep(struct cm_sidr_rep_msg
*sidr_rep_msg
,
3041 struct cm_id_private
*cm_id_priv
,
3042 struct ib_cm_sidr_rep_param
*param
)
3044 cm_format_mad_hdr(&sidr_rep_msg
->hdr
, CM_SIDR_REP_ATTR_ID
,
3046 sidr_rep_msg
->request_id
= cm_id_priv
->id
.remote_id
;
3047 sidr_rep_msg
->status
= param
->status
;
3048 cm_sidr_rep_set_qpn(sidr_rep_msg
, cpu_to_be32(param
->qp_num
));
3049 sidr_rep_msg
->service_id
= cm_id_priv
->id
.service_id
;
3050 sidr_rep_msg
->qkey
= cpu_to_be32(param
->qkey
);
3052 if (param
->info
&& param
->info_length
)
3053 memcpy(sidr_rep_msg
->info
, param
->info
, param
->info_length
);
3055 if (param
->private_data
&& param
->private_data_len
)
3056 memcpy(sidr_rep_msg
->private_data
, param
->private_data
,
3057 param
->private_data_len
);
3060 int ib_send_cm_sidr_rep(struct ib_cm_id
*cm_id
,
3061 struct ib_cm_sidr_rep_param
*param
)
3063 struct cm_id_private
*cm_id_priv
;
3064 struct ib_mad_send_buf
*msg
;
3065 unsigned long flags
;
3068 if ((param
->info
&& param
->info_length
> IB_CM_SIDR_REP_INFO_LENGTH
) ||
3069 (param
->private_data
&&
3070 param
->private_data_len
> IB_CM_SIDR_REP_PRIVATE_DATA_SIZE
))
3073 cm_id_priv
= container_of(cm_id
, struct cm_id_private
, id
);
3074 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
3075 if (cm_id
->state
!= IB_CM_SIDR_REQ_RCVD
) {
3080 ret
= cm_alloc_msg(cm_id_priv
, &msg
);
3084 cm_format_sidr_rep((struct cm_sidr_rep_msg
*) msg
->mad
, cm_id_priv
,
3086 ret
= ib_post_send_mad(msg
, NULL
);
3088 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
3092 cm_id
->state
= IB_CM_IDLE
;
3093 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
3095 spin_lock_irqsave(&cm
.lock
, flags
);
3096 rb_erase(&cm_id_priv
->sidr_id_node
, &cm
.remote_sidr_table
);
3097 spin_unlock_irqrestore(&cm
.lock
, flags
);
3100 error
: spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
3103 EXPORT_SYMBOL(ib_send_cm_sidr_rep
);
3105 static void cm_format_sidr_rep_event(struct cm_work
*work
)
3107 struct cm_sidr_rep_msg
*sidr_rep_msg
;
3108 struct ib_cm_sidr_rep_event_param
*param
;
3110 sidr_rep_msg
= (struct cm_sidr_rep_msg
*)
3111 work
->mad_recv_wc
->recv_buf
.mad
;
3112 param
= &work
->cm_event
.param
.sidr_rep_rcvd
;
3113 param
->status
= sidr_rep_msg
->status
;
3114 param
->qkey
= be32_to_cpu(sidr_rep_msg
->qkey
);
3115 param
->qpn
= be32_to_cpu(cm_sidr_rep_get_qpn(sidr_rep_msg
));
3116 param
->info
= &sidr_rep_msg
->info
;
3117 param
->info_len
= sidr_rep_msg
->info_length
;
3118 work
->cm_event
.private_data
= &sidr_rep_msg
->private_data
;
3121 static int cm_sidr_rep_handler(struct cm_work
*work
)
3123 struct cm_sidr_rep_msg
*sidr_rep_msg
;
3124 struct cm_id_private
*cm_id_priv
;
3126 sidr_rep_msg
= (struct cm_sidr_rep_msg
*)
3127 work
->mad_recv_wc
->recv_buf
.mad
;
3128 cm_id_priv
= cm_acquire_id(sidr_rep_msg
->request_id
, 0);
3130 return -EINVAL
; /* Unmatched reply. */
3132 spin_lock_irq(&cm_id_priv
->lock
);
3133 if (cm_id_priv
->id
.state
!= IB_CM_SIDR_REQ_SENT
) {
3134 spin_unlock_irq(&cm_id_priv
->lock
);
3137 cm_id_priv
->id
.state
= IB_CM_IDLE
;
3138 ib_cancel_mad(cm_id_priv
->av
.port
->mad_agent
, cm_id_priv
->msg
);
3139 spin_unlock_irq(&cm_id_priv
->lock
);
3141 cm_format_sidr_rep_event(work
);
3142 cm_process_work(cm_id_priv
, work
);
3145 cm_deref_id(cm_id_priv
);
3149 static void cm_process_send_error(struct ib_mad_send_buf
*msg
,
3150 enum ib_wc_status wc_status
)
3152 struct cm_id_private
*cm_id_priv
;
3153 struct ib_cm_event cm_event
;
3154 enum ib_cm_state state
;
3157 memset(&cm_event
, 0, sizeof cm_event
);
3158 cm_id_priv
= msg
->context
[0];
3160 /* Discard old sends or ones without a response. */
3161 spin_lock_irq(&cm_id_priv
->lock
);
3162 state
= (enum ib_cm_state
) (unsigned long) msg
->context
[1];
3163 if (msg
!= cm_id_priv
->msg
|| state
!= cm_id_priv
->id
.state
)
3167 case IB_CM_REQ_SENT
:
3168 case IB_CM_MRA_REQ_RCVD
:
3169 cm_reset_to_idle(cm_id_priv
);
3170 cm_event
.event
= IB_CM_REQ_ERROR
;
3172 case IB_CM_REP_SENT
:
3173 case IB_CM_MRA_REP_RCVD
:
3174 cm_reset_to_idle(cm_id_priv
);
3175 cm_event
.event
= IB_CM_REP_ERROR
;
3177 case IB_CM_DREQ_SENT
:
3178 cm_enter_timewait(cm_id_priv
);
3179 cm_event
.event
= IB_CM_DREQ_ERROR
;
3181 case IB_CM_SIDR_REQ_SENT
:
3182 cm_id_priv
->id
.state
= IB_CM_IDLE
;
3183 cm_event
.event
= IB_CM_SIDR_REQ_ERROR
;
3188 spin_unlock_irq(&cm_id_priv
->lock
);
3189 cm_event
.param
.send_status
= wc_status
;
3191 /* No other events can occur on the cm_id at this point. */
3192 ret
= cm_id_priv
->id
.cm_handler(&cm_id_priv
->id
, &cm_event
);
3195 ib_destroy_cm_id(&cm_id_priv
->id
);
3198 spin_unlock_irq(&cm_id_priv
->lock
);
3202 static void cm_send_handler(struct ib_mad_agent
*mad_agent
,
3203 struct ib_mad_send_wc
*mad_send_wc
)
3205 struct ib_mad_send_buf
*msg
= mad_send_wc
->send_buf
;
3206 struct cm_port
*port
;
3209 port
= mad_agent
->context
;
3210 attr_index
= be16_to_cpu(((struct ib_mad_hdr
*)
3211 msg
->mad
)->attr_id
) - CM_ATTR_ID_OFFSET
;
3214 * If the send was in response to a received message (context[0] is not
3215 * set to a cm_id), and is not a REJ, then it is a send that was
3218 if (!msg
->context
[0] && (attr_index
!= CM_REJ_COUNTER
))
3221 atomic_long_add(1 + msg
->retries
,
3222 &port
->counter_group
[CM_XMIT
].counter
[attr_index
]);
3224 atomic_long_add(msg
->retries
,
3225 &port
->counter_group
[CM_XMIT_RETRIES
].
3226 counter
[attr_index
]);
3228 switch (mad_send_wc
->status
) {
3230 case IB_WC_WR_FLUSH_ERR
:
3234 if (msg
->context
[0] && msg
->context
[1])
3235 cm_process_send_error(msg
, mad_send_wc
->status
);
3242 static void cm_work_handler(struct work_struct
*_work
)
3244 struct cm_work
*work
= container_of(_work
, struct cm_work
, work
.work
);
3247 switch (work
->cm_event
.event
) {
3248 case IB_CM_REQ_RECEIVED
:
3249 ret
= cm_req_handler(work
);
3251 case IB_CM_MRA_RECEIVED
:
3252 ret
= cm_mra_handler(work
);
3254 case IB_CM_REJ_RECEIVED
:
3255 ret
= cm_rej_handler(work
);
3257 case IB_CM_REP_RECEIVED
:
3258 ret
= cm_rep_handler(work
);
3260 case IB_CM_RTU_RECEIVED
:
3261 ret
= cm_rtu_handler(work
);
3263 case IB_CM_USER_ESTABLISHED
:
3264 ret
= cm_establish_handler(work
);
3266 case IB_CM_DREQ_RECEIVED
:
3267 ret
= cm_dreq_handler(work
);
3269 case IB_CM_DREP_RECEIVED
:
3270 ret
= cm_drep_handler(work
);
3272 case IB_CM_SIDR_REQ_RECEIVED
:
3273 ret
= cm_sidr_req_handler(work
);
3275 case IB_CM_SIDR_REP_RECEIVED
:
3276 ret
= cm_sidr_rep_handler(work
);
3278 case IB_CM_LAP_RECEIVED
:
3279 ret
= cm_lap_handler(work
);
3281 case IB_CM_APR_RECEIVED
:
3282 ret
= cm_apr_handler(work
);
3284 case IB_CM_TIMEWAIT_EXIT
:
3285 ret
= cm_timewait_handler(work
);
3295 static int cm_establish(struct ib_cm_id
*cm_id
)
3297 struct cm_id_private
*cm_id_priv
;
3298 struct cm_work
*work
;
3299 unsigned long flags
;
3302 work
= kmalloc(sizeof *work
, GFP_ATOMIC
);
3306 cm_id_priv
= container_of(cm_id
, struct cm_id_private
, id
);
3307 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
3308 switch (cm_id
->state
)
3310 case IB_CM_REP_SENT
:
3311 case IB_CM_MRA_REP_RCVD
:
3312 cm_id
->state
= IB_CM_ESTABLISHED
;
3314 case IB_CM_ESTABLISHED
:
3321 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
3329 * The CM worker thread may try to destroy the cm_id before it
3330 * can execute this work item. To prevent potential deadlock,
3331 * we need to find the cm_id once we're in the context of the
3332 * worker thread, rather than holding a reference on it.
3334 INIT_DELAYED_WORK(&work
->work
, cm_work_handler
);
3335 work
->local_id
= cm_id
->local_id
;
3336 work
->remote_id
= cm_id
->remote_id
;
3337 work
->mad_recv_wc
= NULL
;
3338 work
->cm_event
.event
= IB_CM_USER_ESTABLISHED
;
3339 queue_delayed_work(cm
.wq
, &work
->work
, 0);
3344 static int cm_migrate(struct ib_cm_id
*cm_id
)
3346 struct cm_id_private
*cm_id_priv
;
3347 unsigned long flags
;
3350 cm_id_priv
= container_of(cm_id
, struct cm_id_private
, id
);
3351 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
3352 if (cm_id
->state
== IB_CM_ESTABLISHED
&&
3353 (cm_id
->lap_state
== IB_CM_LAP_UNINIT
||
3354 cm_id
->lap_state
== IB_CM_LAP_IDLE
)) {
3355 cm_id
->lap_state
= IB_CM_LAP_IDLE
;
3356 cm_id_priv
->av
= cm_id_priv
->alt_av
;
3359 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
3364 int ib_cm_notify(struct ib_cm_id
*cm_id
, enum ib_event_type event
)
3369 case IB_EVENT_COMM_EST
:
3370 ret
= cm_establish(cm_id
);
3372 case IB_EVENT_PATH_MIG
:
3373 ret
= cm_migrate(cm_id
);
3380 EXPORT_SYMBOL(ib_cm_notify
);
3382 static void cm_recv_handler(struct ib_mad_agent
*mad_agent
,
3383 struct ib_mad_recv_wc
*mad_recv_wc
)
3385 struct cm_port
*port
= mad_agent
->context
;
3386 struct cm_work
*work
;
3387 enum ib_cm_event_type event
;
3391 switch (mad_recv_wc
->recv_buf
.mad
->mad_hdr
.attr_id
) {
3392 case CM_REQ_ATTR_ID
:
3393 paths
= 1 + (((struct cm_req_msg
*) mad_recv_wc
->recv_buf
.mad
)->
3394 alt_local_lid
!= 0);
3395 event
= IB_CM_REQ_RECEIVED
;
3397 case CM_MRA_ATTR_ID
:
3398 event
= IB_CM_MRA_RECEIVED
;
3400 case CM_REJ_ATTR_ID
:
3401 event
= IB_CM_REJ_RECEIVED
;
3403 case CM_REP_ATTR_ID
:
3404 event
= IB_CM_REP_RECEIVED
;
3406 case CM_RTU_ATTR_ID
:
3407 event
= IB_CM_RTU_RECEIVED
;
3409 case CM_DREQ_ATTR_ID
:
3410 event
= IB_CM_DREQ_RECEIVED
;
3412 case CM_DREP_ATTR_ID
:
3413 event
= IB_CM_DREP_RECEIVED
;
3415 case CM_SIDR_REQ_ATTR_ID
:
3416 event
= IB_CM_SIDR_REQ_RECEIVED
;
3418 case CM_SIDR_REP_ATTR_ID
:
3419 event
= IB_CM_SIDR_REP_RECEIVED
;
3421 case CM_LAP_ATTR_ID
:
3423 event
= IB_CM_LAP_RECEIVED
;
3425 case CM_APR_ATTR_ID
:
3426 event
= IB_CM_APR_RECEIVED
;
3429 ib_free_recv_mad(mad_recv_wc
);
3433 attr_id
= be16_to_cpu(mad_recv_wc
->recv_buf
.mad
->mad_hdr
.attr_id
);
3434 atomic_long_inc(&port
->counter_group
[CM_RECV
].
3435 counter
[attr_id
- CM_ATTR_ID_OFFSET
]);
3437 work
= kmalloc(sizeof *work
+ sizeof(struct ib_sa_path_rec
) * paths
,
3440 ib_free_recv_mad(mad_recv_wc
);
3444 INIT_DELAYED_WORK(&work
->work
, cm_work_handler
);
3445 work
->cm_event
.event
= event
;
3446 work
->mad_recv_wc
= mad_recv_wc
;
3448 queue_delayed_work(cm
.wq
, &work
->work
, 0);
3451 static int cm_init_qp_init_attr(struct cm_id_private
*cm_id_priv
,
3452 struct ib_qp_attr
*qp_attr
,
3455 unsigned long flags
;
3458 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
3459 switch (cm_id_priv
->id
.state
) {
3460 case IB_CM_REQ_SENT
:
3461 case IB_CM_MRA_REQ_RCVD
:
3462 case IB_CM_REQ_RCVD
:
3463 case IB_CM_MRA_REQ_SENT
:
3464 case IB_CM_REP_RCVD
:
3465 case IB_CM_MRA_REP_SENT
:
3466 case IB_CM_REP_SENT
:
3467 case IB_CM_MRA_REP_RCVD
:
3468 case IB_CM_ESTABLISHED
:
3469 *qp_attr_mask
= IB_QP_STATE
| IB_QP_ACCESS_FLAGS
|
3470 IB_QP_PKEY_INDEX
| IB_QP_PORT
;
3471 qp_attr
->qp_access_flags
= IB_ACCESS_REMOTE_WRITE
;
3472 if (cm_id_priv
->responder_resources
)
3473 qp_attr
->qp_access_flags
|= IB_ACCESS_REMOTE_READ
|
3474 IB_ACCESS_REMOTE_ATOMIC
;
3475 qp_attr
->pkey_index
= cm_id_priv
->av
.pkey_index
;
3476 qp_attr
->port_num
= cm_id_priv
->av
.port
->port_num
;
3483 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
3487 static int cm_init_qp_rtr_attr(struct cm_id_private
*cm_id_priv
,
3488 struct ib_qp_attr
*qp_attr
,
3491 unsigned long flags
;
3494 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
3495 switch (cm_id_priv
->id
.state
) {
3496 case IB_CM_REQ_RCVD
:
3497 case IB_CM_MRA_REQ_SENT
:
3498 case IB_CM_REP_RCVD
:
3499 case IB_CM_MRA_REP_SENT
:
3500 case IB_CM_REP_SENT
:
3501 case IB_CM_MRA_REP_RCVD
:
3502 case IB_CM_ESTABLISHED
:
3503 *qp_attr_mask
= IB_QP_STATE
| IB_QP_AV
| IB_QP_PATH_MTU
|
3504 IB_QP_DEST_QPN
| IB_QP_RQ_PSN
;
3505 qp_attr
->ah_attr
= cm_id_priv
->av
.ah_attr
;
3506 qp_attr
->path_mtu
= cm_id_priv
->path_mtu
;
3507 qp_attr
->dest_qp_num
= be32_to_cpu(cm_id_priv
->remote_qpn
);
3508 qp_attr
->rq_psn
= be32_to_cpu(cm_id_priv
->rq_psn
);
3509 if (cm_id_priv
->qp_type
== IB_QPT_RC
||
3510 cm_id_priv
->qp_type
== IB_QPT_XRC_TGT
) {
3511 *qp_attr_mask
|= IB_QP_MAX_DEST_RD_ATOMIC
|
3512 IB_QP_MIN_RNR_TIMER
;
3513 qp_attr
->max_dest_rd_atomic
=
3514 cm_id_priv
->responder_resources
;
3515 qp_attr
->min_rnr_timer
= 0;
3517 if (cm_id_priv
->alt_av
.ah_attr
.dlid
) {
3518 *qp_attr_mask
|= IB_QP_ALT_PATH
;
3519 qp_attr
->alt_port_num
= cm_id_priv
->alt_av
.port
->port_num
;
3520 qp_attr
->alt_pkey_index
= cm_id_priv
->alt_av
.pkey_index
;
3521 qp_attr
->alt_timeout
= cm_id_priv
->alt_av
.timeout
;
3522 qp_attr
->alt_ah_attr
= cm_id_priv
->alt_av
.ah_attr
;
3530 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
3534 static int cm_init_qp_rts_attr(struct cm_id_private
*cm_id_priv
,
3535 struct ib_qp_attr
*qp_attr
,
3538 unsigned long flags
;
3541 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
3542 switch (cm_id_priv
->id
.state
) {
3543 /* Allow transition to RTS before sending REP */
3544 case IB_CM_REQ_RCVD
:
3545 case IB_CM_MRA_REQ_SENT
:
3547 case IB_CM_REP_RCVD
:
3548 case IB_CM_MRA_REP_SENT
:
3549 case IB_CM_REP_SENT
:
3550 case IB_CM_MRA_REP_RCVD
:
3551 case IB_CM_ESTABLISHED
:
3552 if (cm_id_priv
->id
.lap_state
== IB_CM_LAP_UNINIT
) {
3553 *qp_attr_mask
= IB_QP_STATE
| IB_QP_SQ_PSN
;
3554 qp_attr
->sq_psn
= be32_to_cpu(cm_id_priv
->sq_psn
);
3555 switch (cm_id_priv
->qp_type
) {
3557 case IB_QPT_XRC_INI
:
3558 *qp_attr_mask
|= IB_QP_RETRY_CNT
| IB_QP_RNR_RETRY
|
3559 IB_QP_MAX_QP_RD_ATOMIC
;
3560 qp_attr
->retry_cnt
= cm_id_priv
->retry_count
;
3561 qp_attr
->rnr_retry
= cm_id_priv
->rnr_retry_count
;
3562 qp_attr
->max_rd_atomic
= cm_id_priv
->initiator_depth
;
3564 case IB_QPT_XRC_TGT
:
3565 *qp_attr_mask
|= IB_QP_TIMEOUT
;
3566 qp_attr
->timeout
= cm_id_priv
->av
.timeout
;
3571 if (cm_id_priv
->alt_av
.ah_attr
.dlid
) {
3572 *qp_attr_mask
|= IB_QP_PATH_MIG_STATE
;
3573 qp_attr
->path_mig_state
= IB_MIG_REARM
;
3576 *qp_attr_mask
= IB_QP_ALT_PATH
| IB_QP_PATH_MIG_STATE
;
3577 qp_attr
->alt_port_num
= cm_id_priv
->alt_av
.port
->port_num
;
3578 qp_attr
->alt_pkey_index
= cm_id_priv
->alt_av
.pkey_index
;
3579 qp_attr
->alt_timeout
= cm_id_priv
->alt_av
.timeout
;
3580 qp_attr
->alt_ah_attr
= cm_id_priv
->alt_av
.ah_attr
;
3581 qp_attr
->path_mig_state
= IB_MIG_REARM
;
3589 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
3593 int ib_cm_init_qp_attr(struct ib_cm_id
*cm_id
,
3594 struct ib_qp_attr
*qp_attr
,
3597 struct cm_id_private
*cm_id_priv
;
3600 cm_id_priv
= container_of(cm_id
, struct cm_id_private
, id
);
3601 switch (qp_attr
->qp_state
) {
3603 ret
= cm_init_qp_init_attr(cm_id_priv
, qp_attr
, qp_attr_mask
);
3606 ret
= cm_init_qp_rtr_attr(cm_id_priv
, qp_attr
, qp_attr_mask
);
3609 ret
= cm_init_qp_rts_attr(cm_id_priv
, qp_attr
, qp_attr_mask
);
3617 EXPORT_SYMBOL(ib_cm_init_qp_attr
);
3619 static void cm_get_ack_delay(struct cm_device
*cm_dev
)
3621 struct ib_device_attr attr
;
3623 if (ib_query_device(cm_dev
->ib_device
, &attr
))
3624 cm_dev
->ack_delay
= 0; /* acks will rely on packet life time */
3626 cm_dev
->ack_delay
= attr
.local_ca_ack_delay
;
3629 static ssize_t
cm_show_counter(struct kobject
*obj
, struct attribute
*attr
,
3632 struct cm_counter_group
*group
;
3633 struct cm_counter_attribute
*cm_attr
;
3635 group
= container_of(obj
, struct cm_counter_group
, obj
);
3636 cm_attr
= container_of(attr
, struct cm_counter_attribute
, attr
);
3638 return sprintf(buf
, "%ld\n",
3639 atomic_long_read(&group
->counter
[cm_attr
->index
]));
3642 static const struct sysfs_ops cm_counter_ops
= {
3643 .show
= cm_show_counter
3646 static struct kobj_type cm_counter_obj_type
= {
3647 .sysfs_ops
= &cm_counter_ops
,
3648 .default_attrs
= cm_counter_default_attrs
3651 static void cm_release_port_obj(struct kobject
*obj
)
3653 struct cm_port
*cm_port
;
3655 cm_port
= container_of(obj
, struct cm_port
, port_obj
);
3659 static struct kobj_type cm_port_obj_type
= {
3660 .release
= cm_release_port_obj
3663 static char *cm_devnode(struct device
*dev
, umode_t
*mode
)
3667 return kasprintf(GFP_KERNEL
, "infiniband/%s", dev_name(dev
));
3670 struct class cm_class
= {
3671 .owner
= THIS_MODULE
,
3672 .name
= "infiniband_cm",
3673 .devnode
= cm_devnode
,
3675 EXPORT_SYMBOL(cm_class
);
3677 static int cm_create_port_fs(struct cm_port
*port
)
3681 ret
= kobject_init_and_add(&port
->port_obj
, &cm_port_obj_type
,
3682 &port
->cm_dev
->device
->kobj
,
3683 "%d", port
->port_num
);
3689 for (i
= 0; i
< CM_COUNTER_GROUPS
; i
++) {
3690 ret
= kobject_init_and_add(&port
->counter_group
[i
].obj
,
3691 &cm_counter_obj_type
,
3693 "%s", counter_group_names
[i
]);
3702 kobject_put(&port
->counter_group
[i
].obj
);
3703 kobject_put(&port
->port_obj
);
3708 static void cm_remove_port_fs(struct cm_port
*port
)
3712 for (i
= 0; i
< CM_COUNTER_GROUPS
; i
++)
3713 kobject_put(&port
->counter_group
[i
].obj
);
3715 kobject_put(&port
->port_obj
);
3718 static void cm_add_one(struct ib_device
*ib_device
)
3720 struct cm_device
*cm_dev
;
3721 struct cm_port
*port
;
3722 struct ib_mad_reg_req reg_req
= {
3723 .mgmt_class
= IB_MGMT_CLASS_CM
,
3724 .mgmt_class_version
= IB_CM_CLASS_VERSION
3726 struct ib_port_modify port_modify
= {
3727 .set_port_cap_mask
= IB_PORT_CM_SUP
3729 unsigned long flags
;
3733 if (rdma_node_get_transport(ib_device
->node_type
) != RDMA_TRANSPORT_IB
)
3736 cm_dev
= kzalloc(sizeof(*cm_dev
) + sizeof(*port
) *
3737 ib_device
->phys_port_cnt
, GFP_KERNEL
);
3741 cm_dev
->ib_device
= ib_device
;
3742 cm_get_ack_delay(cm_dev
);
3744 cm_dev
->device
= device_create(&cm_class
, &ib_device
->dev
,
3746 "%s", ib_device
->name
);
3747 if (IS_ERR(cm_dev
->device
)) {
3752 set_bit(IB_MGMT_METHOD_SEND
, reg_req
.method_mask
);
3753 for (i
= 1; i
<= ib_device
->phys_port_cnt
; i
++) {
3754 port
= kzalloc(sizeof *port
, GFP_KERNEL
);
3758 cm_dev
->port
[i
-1] = port
;
3759 port
->cm_dev
= cm_dev
;
3762 ret
= cm_create_port_fs(port
);
3766 port
->mad_agent
= ib_register_mad_agent(ib_device
, i
,
3773 if (IS_ERR(port
->mad_agent
))
3776 ret
= ib_modify_port(ib_device
, i
, 0, &port_modify
);
3780 ib_set_client_data(ib_device
, &cm_client
, cm_dev
);
3782 write_lock_irqsave(&cm
.device_lock
, flags
);
3783 list_add_tail(&cm_dev
->list
, &cm
.device_list
);
3784 write_unlock_irqrestore(&cm
.device_lock
, flags
);
3788 ib_unregister_mad_agent(port
->mad_agent
);
3790 cm_remove_port_fs(port
);
3792 port_modify
.set_port_cap_mask
= 0;
3793 port_modify
.clr_port_cap_mask
= IB_PORT_CM_SUP
;
3795 port
= cm_dev
->port
[i
-1];
3796 ib_modify_port(ib_device
, port
->port_num
, 0, &port_modify
);
3797 ib_unregister_mad_agent(port
->mad_agent
);
3798 cm_remove_port_fs(port
);
3800 device_unregister(cm_dev
->device
);
3804 static void cm_remove_one(struct ib_device
*ib_device
)
3806 struct cm_device
*cm_dev
;
3807 struct cm_port
*port
;
3808 struct ib_port_modify port_modify
= {
3809 .clr_port_cap_mask
= IB_PORT_CM_SUP
3811 unsigned long flags
;
3814 cm_dev
= ib_get_client_data(ib_device
, &cm_client
);
3818 write_lock_irqsave(&cm
.device_lock
, flags
);
3819 list_del(&cm_dev
->list
);
3820 write_unlock_irqrestore(&cm
.device_lock
, flags
);
3822 for (i
= 1; i
<= ib_device
->phys_port_cnt
; i
++) {
3823 port
= cm_dev
->port
[i
-1];
3824 ib_modify_port(ib_device
, port
->port_num
, 0, &port_modify
);
3825 ib_unregister_mad_agent(port
->mad_agent
);
3826 flush_workqueue(cm
.wq
);
3827 cm_remove_port_fs(port
);
3829 device_unregister(cm_dev
->device
);
3833 static int __init
ib_cm_init(void)
3837 memset(&cm
, 0, sizeof cm
);
3838 INIT_LIST_HEAD(&cm
.device_list
);
3839 rwlock_init(&cm
.device_lock
);
3840 spin_lock_init(&cm
.lock
);
3841 cm
.listen_service_table
= RB_ROOT
;
3842 cm
.listen_service_id
= be64_to_cpu(IB_CM_ASSIGN_SERVICE_ID
);
3843 cm
.remote_id_table
= RB_ROOT
;
3844 cm
.remote_qp_table
= RB_ROOT
;
3845 cm
.remote_sidr_table
= RB_ROOT
;
3846 idr_init(&cm
.local_id_table
);
3847 get_random_bytes(&cm
.random_id_operand
, sizeof cm
.random_id_operand
);
3848 INIT_LIST_HEAD(&cm
.timewait_list
);
3850 ret
= class_register(&cm_class
);
3856 cm
.wq
= create_workqueue("ib_cm");
3862 ret
= ib_register_client(&cm_client
);
3868 destroy_workqueue(cm
.wq
);
3870 class_unregister(&cm_class
);
3872 idr_destroy(&cm
.local_id_table
);
3876 static void __exit
ib_cm_cleanup(void)
3878 struct cm_timewait_info
*timewait_info
, *tmp
;
3880 spin_lock_irq(&cm
.lock
);
3881 list_for_each_entry(timewait_info
, &cm
.timewait_list
, list
)
3882 cancel_delayed_work(&timewait_info
->work
.work
);
3883 spin_unlock_irq(&cm
.lock
);
3885 ib_unregister_client(&cm_client
);
3886 destroy_workqueue(cm
.wq
);
3888 list_for_each_entry_safe(timewait_info
, tmp
, &cm
.timewait_list
, list
) {
3889 list_del(&timewait_info
->list
);
3890 kfree(timewait_info
);
3893 class_unregister(&cm_class
);
3894 idr_destroy(&cm
.local_id_table
);
3897 module_init(ib_cm_init
);
3898 module_exit(ib_cm_cleanup
);