2 * Copyright (c) 2004, 2005 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.
6 * Copyright (c) 2005 Open Grid Computing, Inc. All rights reserved.
7 * Copyright (c) 2005 Network Appliance, Inc. All rights reserved.
9 * This software is available to you under a choice of one of two
10 * licenses. You may choose to be licensed under the terms of the GNU
11 * General Public License (GPL) Version 2, available from the file
12 * COPYING in the main directory of this source tree, or the
13 * OpenIB.org BSD license below:
15 * Redistribution and use in source and binary forms, with or
16 * without modification, are permitted provided that the following
19 * - Redistributions of source code must retain the above
20 * copyright notice, this list of conditions and the following
23 * - Redistributions in binary form must reproduce the above
24 * copyright notice, this list of conditions and the following
25 * disclaimer in the documentation and/or other materials
26 * provided with the distribution.
28 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
29 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
30 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
31 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
32 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
33 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
34 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
38 #include <linux/dma-mapping.h>
39 #include <linux/err.h>
40 #include <linux/idr.h>
41 #include <linux/interrupt.h>
42 #include <linux/pci.h>
43 #include <linux/rbtree.h>
44 #include <linux/spinlock.h>
45 #include <linux/workqueue.h>
46 #include <linux/completion.h>
48 #include <rdma/iw_cm.h>
49 #include <rdma/ib_addr.h>
53 MODULE_AUTHOR("Tom Tucker");
54 MODULE_DESCRIPTION("iWARP CM");
55 MODULE_LICENSE("Dual BSD/GPL");
57 static struct workqueue_struct
*iwcm_wq
;
59 struct work_struct work
;
60 struct iwcm_id_private
*cm_id
;
61 struct list_head list
;
62 struct iw_cm_event event
;
63 struct list_head free_list
;
67 * The following services provide a mechanism for pre-allocating iwcm_work
68 * elements. The design pre-allocates them based on the cm_id type:
69 * LISTENING IDS: Get enough elements preallocated to handle the
71 * ACTIVE IDS: 4: CONNECT_REPLY, ESTABLISHED, DISCONNECT, CLOSE
72 * PASSIVE IDS: 3: ESTABLISHED, DISCONNECT, CLOSE
74 * Allocating them in connect and listen avoids having to deal
75 * with allocation failures on the event upcall from the provider (which
76 * is called in the interrupt context).
78 * One exception is when creating the cm_id for incoming connection requests.
79 * There are two cases:
80 * 1) in the event upcall, cm_event_handler(), for a listening cm_id. If
81 * the backlog is exceeded, then no more connection request events will
82 * be processed. cm_event_handler() returns -ENOMEM in this case. Its up
83 * to the provider to reject the connection request.
84 * 2) in the connection request workqueue handler, cm_conn_req_handler().
85 * If work elements cannot be allocated for the new connect request cm_id,
86 * then IWCM will call the provider reject method. This is ok since
87 * cm_conn_req_handler() runs in the workqueue thread context.
90 static struct iwcm_work
*get_work(struct iwcm_id_private
*cm_id_priv
)
92 struct iwcm_work
*work
;
94 if (list_empty(&cm_id_priv
->work_free_list
))
96 work
= list_entry(cm_id_priv
->work_free_list
.next
, struct iwcm_work
,
98 list_del_init(&work
->free_list
);
102 static void put_work(struct iwcm_work
*work
)
104 list_add(&work
->free_list
, &work
->cm_id
->work_free_list
);
107 static void dealloc_work_entries(struct iwcm_id_private
*cm_id_priv
)
109 struct list_head
*e
, *tmp
;
111 list_for_each_safe(e
, tmp
, &cm_id_priv
->work_free_list
)
112 kfree(list_entry(e
, struct iwcm_work
, free_list
));
115 static int alloc_work_entries(struct iwcm_id_private
*cm_id_priv
, int count
)
117 struct iwcm_work
*work
;
119 BUG_ON(!list_empty(&cm_id_priv
->work_free_list
));
121 work
= kmalloc(sizeof(struct iwcm_work
), GFP_KERNEL
);
123 dealloc_work_entries(cm_id_priv
);
126 work
->cm_id
= cm_id_priv
;
127 INIT_LIST_HEAD(&work
->list
);
134 * Save private data from incoming connection requests to
135 * iw_cm_event, so the low level driver doesn't have to. Adjust
136 * the event ptr to point to the local copy.
138 static int copy_private_data(struct iw_cm_event
*event
)
142 p
= kmemdup(event
->private_data
, event
->private_data_len
, GFP_ATOMIC
);
145 event
->private_data
= p
;
150 * Release a reference on cm_id. If the last reference is being
151 * released, enable the waiting thread (in iw_destroy_cm_id) to
152 * get woken up, and return 1 if a thread is already waiting.
154 static int iwcm_deref_id(struct iwcm_id_private
*cm_id_priv
)
158 BUG_ON(atomic_read(&cm_id_priv
->refcount
)==0);
159 if (atomic_dec_and_test(&cm_id_priv
->refcount
)) {
160 BUG_ON(!list_empty(&cm_id_priv
->work_list
));
161 if (waitqueue_active(&cm_id_priv
->destroy_comp
.wait
)) {
162 BUG_ON(cm_id_priv
->state
!= IW_CM_STATE_DESTROYING
);
163 BUG_ON(test_bit(IWCM_F_CALLBACK_DESTROY
,
164 &cm_id_priv
->flags
));
167 complete(&cm_id_priv
->destroy_comp
);
173 static void add_ref(struct iw_cm_id
*cm_id
)
175 struct iwcm_id_private
*cm_id_priv
;
176 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
177 atomic_inc(&cm_id_priv
->refcount
);
180 static void rem_ref(struct iw_cm_id
*cm_id
)
182 struct iwcm_id_private
*cm_id_priv
;
183 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
184 iwcm_deref_id(cm_id_priv
);
187 static int cm_event_handler(struct iw_cm_id
*cm_id
, struct iw_cm_event
*event
);
189 struct iw_cm_id
*iw_create_cm_id(struct ib_device
*device
,
190 iw_cm_handler cm_handler
,
193 struct iwcm_id_private
*cm_id_priv
;
195 cm_id_priv
= kzalloc(sizeof(*cm_id_priv
), GFP_KERNEL
);
197 return ERR_PTR(-ENOMEM
);
199 cm_id_priv
->state
= IW_CM_STATE_IDLE
;
200 cm_id_priv
->id
.device
= device
;
201 cm_id_priv
->id
.cm_handler
= cm_handler
;
202 cm_id_priv
->id
.context
= context
;
203 cm_id_priv
->id
.event_handler
= cm_event_handler
;
204 cm_id_priv
->id
.add_ref
= add_ref
;
205 cm_id_priv
->id
.rem_ref
= rem_ref
;
206 spin_lock_init(&cm_id_priv
->lock
);
207 atomic_set(&cm_id_priv
->refcount
, 1);
208 init_waitqueue_head(&cm_id_priv
->connect_wait
);
209 init_completion(&cm_id_priv
->destroy_comp
);
210 INIT_LIST_HEAD(&cm_id_priv
->work_list
);
211 INIT_LIST_HEAD(&cm_id_priv
->work_free_list
);
213 return &cm_id_priv
->id
;
215 EXPORT_SYMBOL(iw_create_cm_id
);
218 static int iwcm_modify_qp_err(struct ib_qp
*qp
)
220 struct ib_qp_attr qp_attr
;
225 qp_attr
.qp_state
= IB_QPS_ERR
;
226 return ib_modify_qp(qp
, &qp_attr
, IB_QP_STATE
);
230 * This is really the RDMAC CLOSING state. It is most similar to the
233 static int iwcm_modify_qp_sqd(struct ib_qp
*qp
)
235 struct ib_qp_attr qp_attr
;
238 qp_attr
.qp_state
= IB_QPS_SQD
;
239 return ib_modify_qp(qp
, &qp_attr
, IB_QP_STATE
);
245 * Block if a passive or active connection is currently being processed. Then
246 * process the event as follows:
247 * - If we are ESTABLISHED, move to CLOSING and modify the QP state
248 * based on the abrupt flag
249 * - If the connection is already in the CLOSING or IDLE state, the peer is
250 * disconnecting concurrently with us and we've already seen the
251 * DISCONNECT event -- ignore the request and return 0
252 * - Disconnect on a listening endpoint returns -EINVAL
254 int iw_cm_disconnect(struct iw_cm_id
*cm_id
, int abrupt
)
256 struct iwcm_id_private
*cm_id_priv
;
259 struct ib_qp
*qp
= NULL
;
261 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
262 /* Wait if we're currently in a connect or accept downcall */
263 wait_event(cm_id_priv
->connect_wait
,
264 !test_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
));
266 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
267 switch (cm_id_priv
->state
) {
268 case IW_CM_STATE_ESTABLISHED
:
269 cm_id_priv
->state
= IW_CM_STATE_CLOSING
;
271 /* QP could be <nul> for user-mode client */
277 case IW_CM_STATE_LISTEN
:
280 case IW_CM_STATE_CLOSING
:
281 /* remote peer closed first */
282 case IW_CM_STATE_IDLE
:
283 /* accept or connect returned !0 */
285 case IW_CM_STATE_CONN_RECV
:
287 * App called disconnect before/without calling accept after
288 * connect_request event delivered.
291 case IW_CM_STATE_CONN_SENT
:
292 /* Can only get here if wait above fails */
296 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
300 ret
= iwcm_modify_qp_err(qp
);
302 ret
= iwcm_modify_qp_sqd(qp
);
305 * If both sides are disconnecting the QP could
306 * already be in ERR or SQD states
313 EXPORT_SYMBOL(iw_cm_disconnect
);
316 * CM_ID <-- DESTROYING
318 * Clean up all resources associated with the connection and release
319 * the initial reference taken by iw_create_cm_id.
321 static void destroy_cm_id(struct iw_cm_id
*cm_id
)
323 struct iwcm_id_private
*cm_id_priv
;
327 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
329 * Wait if we're currently in a connect or accept downcall. A
330 * listening endpoint should never block here.
332 wait_event(cm_id_priv
->connect_wait
,
333 !test_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
));
335 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
336 switch (cm_id_priv
->state
) {
337 case IW_CM_STATE_LISTEN
:
338 cm_id_priv
->state
= IW_CM_STATE_DESTROYING
;
339 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
340 /* destroy the listening endpoint */
341 ret
= cm_id
->device
->iwcm
->destroy_listen(cm_id
);
342 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
344 case IW_CM_STATE_ESTABLISHED
:
345 cm_id_priv
->state
= IW_CM_STATE_DESTROYING
;
346 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
347 /* Abrupt close of the connection */
348 (void)iwcm_modify_qp_err(cm_id_priv
->qp
);
349 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
351 case IW_CM_STATE_IDLE
:
352 case IW_CM_STATE_CLOSING
:
353 cm_id_priv
->state
= IW_CM_STATE_DESTROYING
;
355 case IW_CM_STATE_CONN_RECV
:
357 * App called destroy before/without calling accept after
358 * receiving connection request event notification.
360 cm_id_priv
->state
= IW_CM_STATE_DESTROYING
;
362 case IW_CM_STATE_CONN_SENT
:
363 case IW_CM_STATE_DESTROYING
:
368 if (cm_id_priv
->qp
) {
369 cm_id_priv
->id
.device
->iwcm
->rem_ref(cm_id_priv
->qp
);
370 cm_id_priv
->qp
= NULL
;
372 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
374 (void)iwcm_deref_id(cm_id_priv
);
378 * This function is only called by the application thread and cannot
379 * be called by the event thread. The function will wait for all
380 * references to be released on the cm_id and then kfree the cm_id
383 void iw_destroy_cm_id(struct iw_cm_id
*cm_id
)
385 struct iwcm_id_private
*cm_id_priv
;
387 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
388 BUG_ON(test_bit(IWCM_F_CALLBACK_DESTROY
, &cm_id_priv
->flags
));
390 destroy_cm_id(cm_id
);
392 wait_for_completion(&cm_id_priv
->destroy_comp
);
394 dealloc_work_entries(cm_id_priv
);
398 EXPORT_SYMBOL(iw_destroy_cm_id
);
403 * Start listening for connect requests. Generates one CONNECT_REQUEST
404 * event for each inbound connect request.
406 int iw_cm_listen(struct iw_cm_id
*cm_id
, int backlog
)
408 struct iwcm_id_private
*cm_id_priv
;
412 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
414 ret
= alloc_work_entries(cm_id_priv
, backlog
);
418 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
419 switch (cm_id_priv
->state
) {
420 case IW_CM_STATE_IDLE
:
421 cm_id_priv
->state
= IW_CM_STATE_LISTEN
;
422 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
423 ret
= cm_id
->device
->iwcm
->create_listen(cm_id
, backlog
);
425 cm_id_priv
->state
= IW_CM_STATE_IDLE
;
426 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
431 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
435 EXPORT_SYMBOL(iw_cm_listen
);
440 * Rejects an inbound connection request. No events are generated.
442 int iw_cm_reject(struct iw_cm_id
*cm_id
,
443 const void *private_data
,
446 struct iwcm_id_private
*cm_id_priv
;
450 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
451 set_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
453 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
454 if (cm_id_priv
->state
!= IW_CM_STATE_CONN_RECV
) {
455 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
456 clear_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
457 wake_up_all(&cm_id_priv
->connect_wait
);
460 cm_id_priv
->state
= IW_CM_STATE_IDLE
;
461 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
463 ret
= cm_id
->device
->iwcm
->reject(cm_id
, private_data
,
466 clear_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
467 wake_up_all(&cm_id_priv
->connect_wait
);
471 EXPORT_SYMBOL(iw_cm_reject
);
474 * CM_ID <-- ESTABLISHED
476 * Accepts an inbound connection request and generates an ESTABLISHED
477 * event. Callers of iw_cm_disconnect and iw_destroy_cm_id will block
478 * until the ESTABLISHED event is received from the provider.
480 int iw_cm_accept(struct iw_cm_id
*cm_id
,
481 struct iw_cm_conn_param
*iw_param
)
483 struct iwcm_id_private
*cm_id_priv
;
488 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
489 set_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
491 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
492 if (cm_id_priv
->state
!= IW_CM_STATE_CONN_RECV
) {
493 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
494 clear_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
495 wake_up_all(&cm_id_priv
->connect_wait
);
498 /* Get the ib_qp given the QPN */
499 qp
= cm_id
->device
->iwcm
->get_qp(cm_id
->device
, iw_param
->qpn
);
501 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
504 cm_id
->device
->iwcm
->add_ref(qp
);
506 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
508 ret
= cm_id
->device
->iwcm
->accept(cm_id
, iw_param
);
510 /* An error on accept precludes provider events */
511 BUG_ON(cm_id_priv
->state
!= IW_CM_STATE_CONN_RECV
);
512 cm_id_priv
->state
= IW_CM_STATE_IDLE
;
513 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
514 if (cm_id_priv
->qp
) {
515 cm_id
->device
->iwcm
->rem_ref(qp
);
516 cm_id_priv
->qp
= NULL
;
518 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
519 clear_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
520 wake_up_all(&cm_id_priv
->connect_wait
);
525 EXPORT_SYMBOL(iw_cm_accept
);
528 * Active Side: CM_ID <-- CONN_SENT
530 * If successful, results in the generation of a CONNECT_REPLY
531 * event. iw_cm_disconnect and iw_cm_destroy will block until the
532 * CONNECT_REPLY event is received from the provider.
534 int iw_cm_connect(struct iw_cm_id
*cm_id
, struct iw_cm_conn_param
*iw_param
)
536 struct iwcm_id_private
*cm_id_priv
;
541 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
543 ret
= alloc_work_entries(cm_id_priv
, 4);
547 set_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
548 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
550 if (cm_id_priv
->state
!= IW_CM_STATE_IDLE
) {
551 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
552 clear_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
553 wake_up_all(&cm_id_priv
->connect_wait
);
557 /* Get the ib_qp given the QPN */
558 qp
= cm_id
->device
->iwcm
->get_qp(cm_id
->device
, iw_param
->qpn
);
560 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
563 cm_id
->device
->iwcm
->add_ref(qp
);
565 cm_id_priv
->state
= IW_CM_STATE_CONN_SENT
;
566 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
568 ret
= cm_id
->device
->iwcm
->connect(cm_id
, iw_param
);
570 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
571 if (cm_id_priv
->qp
) {
572 cm_id
->device
->iwcm
->rem_ref(qp
);
573 cm_id_priv
->qp
= NULL
;
575 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
576 BUG_ON(cm_id_priv
->state
!= IW_CM_STATE_CONN_SENT
);
577 cm_id_priv
->state
= IW_CM_STATE_IDLE
;
578 clear_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
579 wake_up_all(&cm_id_priv
->connect_wait
);
584 EXPORT_SYMBOL(iw_cm_connect
);
587 * Passive Side: new CM_ID <-- CONN_RECV
589 * Handles an inbound connect request. The function creates a new
590 * iw_cm_id to represent the new connection and inherits the client
591 * callback function and other attributes from the listening parent.
593 * The work item contains a pointer to the listen_cm_id and the event. The
594 * listen_cm_id contains the client cm_handler, context and
595 * device. These are copied when the device is cloned. The event
596 * contains the new four tuple.
598 * An error on the child should not affect the parent, so this
599 * function does not return a value.
601 static void cm_conn_req_handler(struct iwcm_id_private
*listen_id_priv
,
602 struct iw_cm_event
*iw_event
)
605 struct iw_cm_id
*cm_id
;
606 struct iwcm_id_private
*cm_id_priv
;
610 * The provider should never generate a connection request
611 * event with a bad status.
613 BUG_ON(iw_event
->status
);
616 * We could be destroying the listening id. If so, ignore this
619 spin_lock_irqsave(&listen_id_priv
->lock
, flags
);
620 if (listen_id_priv
->state
!= IW_CM_STATE_LISTEN
) {
621 spin_unlock_irqrestore(&listen_id_priv
->lock
, flags
);
624 spin_unlock_irqrestore(&listen_id_priv
->lock
, flags
);
626 cm_id
= iw_create_cm_id(listen_id_priv
->id
.device
,
627 listen_id_priv
->id
.cm_handler
,
628 listen_id_priv
->id
.context
);
629 /* If the cm_id could not be created, ignore the request */
633 cm_id
->provider_data
= iw_event
->provider_data
;
634 cm_id
->local_addr
= iw_event
->local_addr
;
635 cm_id
->remote_addr
= iw_event
->remote_addr
;
637 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
638 cm_id_priv
->state
= IW_CM_STATE_CONN_RECV
;
640 ret
= alloc_work_entries(cm_id_priv
, 3);
642 iw_cm_reject(cm_id
, NULL
, 0);
643 iw_destroy_cm_id(cm_id
);
647 /* Call the client CM handler */
648 ret
= cm_id
->cm_handler(cm_id
, iw_event
);
650 set_bit(IWCM_F_CALLBACK_DESTROY
, &cm_id_priv
->flags
);
651 destroy_cm_id(cm_id
);
652 if (atomic_read(&cm_id_priv
->refcount
)==0)
657 if (iw_event
->private_data_len
)
658 kfree(iw_event
->private_data
);
662 * Passive Side: CM_ID <-- ESTABLISHED
664 * The provider generated an ESTABLISHED event which means that
665 * the MPA negotion has completed successfully and we are now in MPA
668 * This event can only be received in the CONN_RECV state. If the
669 * remote peer closed, the ESTABLISHED event would be received followed
670 * by the CLOSE event. If the app closes, it will block until we wake
671 * it up after processing this event.
673 static int cm_conn_est_handler(struct iwcm_id_private
*cm_id_priv
,
674 struct iw_cm_event
*iw_event
)
679 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
682 * We clear the CONNECT_WAIT bit here to allow the callback
683 * function to call iw_cm_disconnect. Calling iw_destroy_cm_id
684 * from a callback handler is not allowed.
686 clear_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
687 BUG_ON(cm_id_priv
->state
!= IW_CM_STATE_CONN_RECV
);
688 cm_id_priv
->state
= IW_CM_STATE_ESTABLISHED
;
689 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
690 ret
= cm_id_priv
->id
.cm_handler(&cm_id_priv
->id
, iw_event
);
691 wake_up_all(&cm_id_priv
->connect_wait
);
697 * Active Side: CM_ID <-- ESTABLISHED
699 * The app has called connect and is waiting for the established event to
700 * post it's requests to the server. This event will wake up anyone
701 * blocked in iw_cm_disconnect or iw_destroy_id.
703 static int cm_conn_rep_handler(struct iwcm_id_private
*cm_id_priv
,
704 struct iw_cm_event
*iw_event
)
709 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
711 * Clear the connect wait bit so a callback function calling
712 * iw_cm_disconnect will not wait and deadlock this thread
714 clear_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
715 BUG_ON(cm_id_priv
->state
!= IW_CM_STATE_CONN_SENT
);
716 if (iw_event
->status
== IW_CM_EVENT_STATUS_ACCEPTED
) {
717 cm_id_priv
->id
.local_addr
= iw_event
->local_addr
;
718 cm_id_priv
->id
.remote_addr
= iw_event
->remote_addr
;
719 cm_id_priv
->state
= IW_CM_STATE_ESTABLISHED
;
721 /* REJECTED or RESET */
722 cm_id_priv
->id
.device
->iwcm
->rem_ref(cm_id_priv
->qp
);
723 cm_id_priv
->qp
= NULL
;
724 cm_id_priv
->state
= IW_CM_STATE_IDLE
;
726 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
727 ret
= cm_id_priv
->id
.cm_handler(&cm_id_priv
->id
, iw_event
);
729 if (iw_event
->private_data_len
)
730 kfree(iw_event
->private_data
);
732 /* Wake up waiters on connect complete */
733 wake_up_all(&cm_id_priv
->connect_wait
);
741 * If in the ESTABLISHED state, move to CLOSING.
743 static void cm_disconnect_handler(struct iwcm_id_private
*cm_id_priv
,
744 struct iw_cm_event
*iw_event
)
748 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
749 if (cm_id_priv
->state
== IW_CM_STATE_ESTABLISHED
)
750 cm_id_priv
->state
= IW_CM_STATE_CLOSING
;
751 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
757 * If in the ESTBLISHED or CLOSING states, the QP will have have been
758 * moved by the provider to the ERR state. Disassociate the CM_ID from
759 * the QP, move to IDLE, and remove the 'connected' reference.
761 * If in some other state, the cm_id was destroyed asynchronously.
762 * This is the last reference that will result in waking up
763 * the app thread blocked in iw_destroy_cm_id.
765 static int cm_close_handler(struct iwcm_id_private
*cm_id_priv
,
766 struct iw_cm_event
*iw_event
)
770 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
772 if (cm_id_priv
->qp
) {
773 cm_id_priv
->id
.device
->iwcm
->rem_ref(cm_id_priv
->qp
);
774 cm_id_priv
->qp
= NULL
;
776 switch (cm_id_priv
->state
) {
777 case IW_CM_STATE_ESTABLISHED
:
778 case IW_CM_STATE_CLOSING
:
779 cm_id_priv
->state
= IW_CM_STATE_IDLE
;
780 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
781 ret
= cm_id_priv
->id
.cm_handler(&cm_id_priv
->id
, iw_event
);
782 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
784 case IW_CM_STATE_DESTROYING
:
789 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
794 static int process_event(struct iwcm_id_private
*cm_id_priv
,
795 struct iw_cm_event
*iw_event
)
799 switch (iw_event
->event
) {
800 case IW_CM_EVENT_CONNECT_REQUEST
:
801 cm_conn_req_handler(cm_id_priv
, iw_event
);
803 case IW_CM_EVENT_CONNECT_REPLY
:
804 ret
= cm_conn_rep_handler(cm_id_priv
, iw_event
);
806 case IW_CM_EVENT_ESTABLISHED
:
807 ret
= cm_conn_est_handler(cm_id_priv
, iw_event
);
809 case IW_CM_EVENT_DISCONNECT
:
810 cm_disconnect_handler(cm_id_priv
, iw_event
);
812 case IW_CM_EVENT_CLOSE
:
813 ret
= cm_close_handler(cm_id_priv
, iw_event
);
823 * Process events on the work_list for the cm_id. If the callback
824 * function requests that the cm_id be deleted, a flag is set in the
825 * cm_id flags to indicate that when the last reference is
826 * removed, the cm_id is to be destroyed. This is necessary to
827 * distinguish between an object that will be destroyed by the app
828 * thread asleep on the destroy_comp list vs. an object destroyed
829 * here synchronously when the last reference is removed.
831 static void cm_work_handler(struct work_struct
*_work
)
833 struct iwcm_work
*work
= container_of(_work
, struct iwcm_work
, work
);
834 struct iw_cm_event levent
;
835 struct iwcm_id_private
*cm_id_priv
= work
->cm_id
;
840 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
841 empty
= list_empty(&cm_id_priv
->work_list
);
843 work
= list_entry(cm_id_priv
->work_list
.next
,
844 struct iwcm_work
, list
);
845 list_del_init(&work
->list
);
846 empty
= list_empty(&cm_id_priv
->work_list
);
847 levent
= work
->event
;
849 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
851 ret
= process_event(cm_id_priv
, &levent
);
853 set_bit(IWCM_F_CALLBACK_DESTROY
, &cm_id_priv
->flags
);
854 destroy_cm_id(&cm_id_priv
->id
);
856 BUG_ON(atomic_read(&cm_id_priv
->refcount
)==0);
857 if (iwcm_deref_id(cm_id_priv
))
860 if (atomic_read(&cm_id_priv
->refcount
)==0 &&
861 test_bit(IWCM_F_CALLBACK_DESTROY
, &cm_id_priv
->flags
)) {
862 dealloc_work_entries(cm_id_priv
);
866 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
868 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
872 * This function is called on interrupt context. Schedule events on
873 * the iwcm_wq thread to allow callback functions to downcall into
874 * the CM and/or block. Events are queued to a per-CM_ID
875 * work_list. If this is the first event on the work_list, the work
876 * element is also queued on the iwcm_wq thread.
878 * Each event holds a reference on the cm_id. Until the last posted
879 * event has been delivered and processed, the cm_id cannot be
883 * 0 - the event was handled.
884 * -ENOMEM - the event was not handled due to lack of resources.
886 static int cm_event_handler(struct iw_cm_id
*cm_id
,
887 struct iw_cm_event
*iw_event
)
889 struct iwcm_work
*work
;
890 struct iwcm_id_private
*cm_id_priv
;
894 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
896 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
897 work
= get_work(cm_id_priv
);
903 INIT_WORK(&work
->work
, cm_work_handler
);
904 work
->cm_id
= cm_id_priv
;
905 work
->event
= *iw_event
;
907 if ((work
->event
.event
== IW_CM_EVENT_CONNECT_REQUEST
||
908 work
->event
.event
== IW_CM_EVENT_CONNECT_REPLY
) &&
909 work
->event
.private_data_len
) {
910 ret
= copy_private_data(&work
->event
);
917 atomic_inc(&cm_id_priv
->refcount
);
918 if (list_empty(&cm_id_priv
->work_list
)) {
919 list_add_tail(&work
->list
, &cm_id_priv
->work_list
);
920 queue_work(iwcm_wq
, &work
->work
);
922 list_add_tail(&work
->list
, &cm_id_priv
->work_list
);
924 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
928 static int iwcm_init_qp_init_attr(struct iwcm_id_private
*cm_id_priv
,
929 struct ib_qp_attr
*qp_attr
,
935 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
936 switch (cm_id_priv
->state
) {
937 case IW_CM_STATE_IDLE
:
938 case IW_CM_STATE_CONN_SENT
:
939 case IW_CM_STATE_CONN_RECV
:
940 case IW_CM_STATE_ESTABLISHED
:
941 *qp_attr_mask
= IB_QP_STATE
| IB_QP_ACCESS_FLAGS
;
942 qp_attr
->qp_access_flags
= IB_ACCESS_LOCAL_WRITE
|
943 IB_ACCESS_REMOTE_WRITE
|
944 IB_ACCESS_REMOTE_READ
;
951 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
955 static int iwcm_init_qp_rts_attr(struct iwcm_id_private
*cm_id_priv
,
956 struct ib_qp_attr
*qp_attr
,
962 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
963 switch (cm_id_priv
->state
) {
964 case IW_CM_STATE_IDLE
:
965 case IW_CM_STATE_CONN_SENT
:
966 case IW_CM_STATE_CONN_RECV
:
967 case IW_CM_STATE_ESTABLISHED
:
975 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
979 int iw_cm_init_qp_attr(struct iw_cm_id
*cm_id
,
980 struct ib_qp_attr
*qp_attr
,
983 struct iwcm_id_private
*cm_id_priv
;
986 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
987 switch (qp_attr
->qp_state
) {
990 ret
= iwcm_init_qp_init_attr(cm_id_priv
,
991 qp_attr
, qp_attr_mask
);
994 ret
= iwcm_init_qp_rts_attr(cm_id_priv
,
995 qp_attr
, qp_attr_mask
);
1003 EXPORT_SYMBOL(iw_cm_init_qp_attr
);
1005 static int __init
iw_cm_init(void)
1007 iwcm_wq
= create_singlethread_workqueue("iw_cm_wq");
1014 static void __exit
iw_cm_cleanup(void)
1016 destroy_workqueue(iwcm_wq
);
1019 module_init(iw_cm_init
);
1020 module_exit(iw_cm_cleanup
);