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/rbtree.h>
43 #include <linux/sched.h>
44 #include <linux/spinlock.h>
45 #include <linux/workqueue.h>
46 #include <linux/completion.h>
47 #include <linux/slab.h>
48 #include <linux/module.h>
49 #include <linux/sysctl.h>
51 #include <rdma/iw_cm.h>
52 #include <rdma/ib_addr.h>
56 MODULE_AUTHOR("Tom Tucker");
57 MODULE_DESCRIPTION("iWARP CM");
58 MODULE_LICENSE("Dual BSD/GPL");
60 static struct workqueue_struct
*iwcm_wq
;
62 struct work_struct work
;
63 struct iwcm_id_private
*cm_id
;
64 struct list_head list
;
65 struct iw_cm_event event
;
66 struct list_head free_list
;
69 static unsigned int default_backlog
= 256;
71 static struct ctl_table_header
*iwcm_ctl_table_hdr
;
72 static struct ctl_table iwcm_ctl_table
[] = {
74 .procname
= "default_backlog",
75 .data
= &default_backlog
,
76 .maxlen
= sizeof(default_backlog
),
78 .proc_handler
= proc_dointvec
,
84 * The following services provide a mechanism for pre-allocating iwcm_work
85 * elements. The design pre-allocates them based on the cm_id type:
86 * LISTENING IDS: Get enough elements preallocated to handle the
88 * ACTIVE IDS: 4: CONNECT_REPLY, ESTABLISHED, DISCONNECT, CLOSE
89 * PASSIVE IDS: 3: ESTABLISHED, DISCONNECT, CLOSE
91 * Allocating them in connect and listen avoids having to deal
92 * with allocation failures on the event upcall from the provider (which
93 * is called in the interrupt context).
95 * One exception is when creating the cm_id for incoming connection requests.
96 * There are two cases:
97 * 1) in the event upcall, cm_event_handler(), for a listening cm_id. If
98 * the backlog is exceeded, then no more connection request events will
99 * be processed. cm_event_handler() returns -ENOMEM in this case. Its up
100 * to the provider to reject the connection request.
101 * 2) in the connection request workqueue handler, cm_conn_req_handler().
102 * If work elements cannot be allocated for the new connect request cm_id,
103 * then IWCM will call the provider reject method. This is ok since
104 * cm_conn_req_handler() runs in the workqueue thread context.
107 static struct iwcm_work
*get_work(struct iwcm_id_private
*cm_id_priv
)
109 struct iwcm_work
*work
;
111 if (list_empty(&cm_id_priv
->work_free_list
))
113 work
= list_entry(cm_id_priv
->work_free_list
.next
, struct iwcm_work
,
115 list_del_init(&work
->free_list
);
119 static void put_work(struct iwcm_work
*work
)
121 list_add(&work
->free_list
, &work
->cm_id
->work_free_list
);
124 static void dealloc_work_entries(struct iwcm_id_private
*cm_id_priv
)
126 struct list_head
*e
, *tmp
;
128 list_for_each_safe(e
, tmp
, &cm_id_priv
->work_free_list
)
129 kfree(list_entry(e
, struct iwcm_work
, free_list
));
132 static int alloc_work_entries(struct iwcm_id_private
*cm_id_priv
, int count
)
134 struct iwcm_work
*work
;
136 BUG_ON(!list_empty(&cm_id_priv
->work_free_list
));
138 work
= kmalloc(sizeof(struct iwcm_work
), GFP_KERNEL
);
140 dealloc_work_entries(cm_id_priv
);
143 work
->cm_id
= cm_id_priv
;
144 INIT_LIST_HEAD(&work
->list
);
151 * Save private data from incoming connection requests to
152 * iw_cm_event, so the low level driver doesn't have to. Adjust
153 * the event ptr to point to the local copy.
155 static int copy_private_data(struct iw_cm_event
*event
)
159 p
= kmemdup(event
->private_data
, event
->private_data_len
, GFP_ATOMIC
);
162 event
->private_data
= p
;
166 static void free_cm_id(struct iwcm_id_private
*cm_id_priv
)
168 dealloc_work_entries(cm_id_priv
);
173 * Release a reference on cm_id. If the last reference is being
174 * released, enable the waiting thread (in iw_destroy_cm_id) to
175 * get woken up, and return 1 if a thread is already waiting.
177 static int iwcm_deref_id(struct iwcm_id_private
*cm_id_priv
)
179 BUG_ON(atomic_read(&cm_id_priv
->refcount
)==0);
180 if (atomic_dec_and_test(&cm_id_priv
->refcount
)) {
181 BUG_ON(!list_empty(&cm_id_priv
->work_list
));
182 complete(&cm_id_priv
->destroy_comp
);
189 static void add_ref(struct iw_cm_id
*cm_id
)
191 struct iwcm_id_private
*cm_id_priv
;
192 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
193 atomic_inc(&cm_id_priv
->refcount
);
196 static void rem_ref(struct iw_cm_id
*cm_id
)
198 struct iwcm_id_private
*cm_id_priv
;
199 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
200 if (iwcm_deref_id(cm_id_priv
) &&
201 test_bit(IWCM_F_CALLBACK_DESTROY
, &cm_id_priv
->flags
)) {
202 BUG_ON(!list_empty(&cm_id_priv
->work_list
));
203 free_cm_id(cm_id_priv
);
207 static int cm_event_handler(struct iw_cm_id
*cm_id
, struct iw_cm_event
*event
);
209 struct iw_cm_id
*iw_create_cm_id(struct ib_device
*device
,
210 iw_cm_handler cm_handler
,
213 struct iwcm_id_private
*cm_id_priv
;
215 cm_id_priv
= kzalloc(sizeof(*cm_id_priv
), GFP_KERNEL
);
217 return ERR_PTR(-ENOMEM
);
219 cm_id_priv
->state
= IW_CM_STATE_IDLE
;
220 cm_id_priv
->id
.device
= device
;
221 cm_id_priv
->id
.cm_handler
= cm_handler
;
222 cm_id_priv
->id
.context
= context
;
223 cm_id_priv
->id
.event_handler
= cm_event_handler
;
224 cm_id_priv
->id
.add_ref
= add_ref
;
225 cm_id_priv
->id
.rem_ref
= rem_ref
;
226 spin_lock_init(&cm_id_priv
->lock
);
227 atomic_set(&cm_id_priv
->refcount
, 1);
228 init_waitqueue_head(&cm_id_priv
->connect_wait
);
229 init_completion(&cm_id_priv
->destroy_comp
);
230 INIT_LIST_HEAD(&cm_id_priv
->work_list
);
231 INIT_LIST_HEAD(&cm_id_priv
->work_free_list
);
233 return &cm_id_priv
->id
;
235 EXPORT_SYMBOL(iw_create_cm_id
);
238 static int iwcm_modify_qp_err(struct ib_qp
*qp
)
240 struct ib_qp_attr qp_attr
;
245 qp_attr
.qp_state
= IB_QPS_ERR
;
246 return ib_modify_qp(qp
, &qp_attr
, IB_QP_STATE
);
250 * This is really the RDMAC CLOSING state. It is most similar to the
253 static int iwcm_modify_qp_sqd(struct ib_qp
*qp
)
255 struct ib_qp_attr qp_attr
;
258 qp_attr
.qp_state
= IB_QPS_SQD
;
259 return ib_modify_qp(qp
, &qp_attr
, IB_QP_STATE
);
265 * Block if a passive or active connection is currently being processed. Then
266 * process the event as follows:
267 * - If we are ESTABLISHED, move to CLOSING and modify the QP state
268 * based on the abrupt flag
269 * - If the connection is already in the CLOSING or IDLE state, the peer is
270 * disconnecting concurrently with us and we've already seen the
271 * DISCONNECT event -- ignore the request and return 0
272 * - Disconnect on a listening endpoint returns -EINVAL
274 int iw_cm_disconnect(struct iw_cm_id
*cm_id
, int abrupt
)
276 struct iwcm_id_private
*cm_id_priv
;
279 struct ib_qp
*qp
= NULL
;
281 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
282 /* Wait if we're currently in a connect or accept downcall */
283 wait_event(cm_id_priv
->connect_wait
,
284 !test_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
));
286 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
287 switch (cm_id_priv
->state
) {
288 case IW_CM_STATE_ESTABLISHED
:
289 cm_id_priv
->state
= IW_CM_STATE_CLOSING
;
291 /* QP could be <nul> for user-mode client */
297 case IW_CM_STATE_LISTEN
:
300 case IW_CM_STATE_CLOSING
:
301 /* remote peer closed first */
302 case IW_CM_STATE_IDLE
:
303 /* accept or connect returned !0 */
305 case IW_CM_STATE_CONN_RECV
:
307 * App called disconnect before/without calling accept after
308 * connect_request event delivered.
311 case IW_CM_STATE_CONN_SENT
:
312 /* Can only get here if wait above fails */
316 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
320 ret
= iwcm_modify_qp_err(qp
);
322 ret
= iwcm_modify_qp_sqd(qp
);
325 * If both sides are disconnecting the QP could
326 * already be in ERR or SQD states
333 EXPORT_SYMBOL(iw_cm_disconnect
);
336 * CM_ID <-- DESTROYING
338 * Clean up all resources associated with the connection and release
339 * the initial reference taken by iw_create_cm_id.
341 static void destroy_cm_id(struct iw_cm_id
*cm_id
)
343 struct iwcm_id_private
*cm_id_priv
;
347 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
349 * Wait if we're currently in a connect or accept downcall. A
350 * listening endpoint should never block here.
352 wait_event(cm_id_priv
->connect_wait
,
353 !test_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
));
355 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
356 switch (cm_id_priv
->state
) {
357 case IW_CM_STATE_LISTEN
:
358 cm_id_priv
->state
= IW_CM_STATE_DESTROYING
;
359 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
360 /* destroy the listening endpoint */
361 ret
= cm_id
->device
->iwcm
->destroy_listen(cm_id
);
362 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
364 case IW_CM_STATE_ESTABLISHED
:
365 cm_id_priv
->state
= IW_CM_STATE_DESTROYING
;
366 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
367 /* Abrupt close of the connection */
368 (void)iwcm_modify_qp_err(cm_id_priv
->qp
);
369 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
371 case IW_CM_STATE_IDLE
:
372 case IW_CM_STATE_CLOSING
:
373 cm_id_priv
->state
= IW_CM_STATE_DESTROYING
;
375 case IW_CM_STATE_CONN_RECV
:
377 * App called destroy before/without calling accept after
378 * receiving connection request event notification or
379 * returned non zero from the event callback function.
380 * In either case, must tell the provider to reject.
382 cm_id_priv
->state
= IW_CM_STATE_DESTROYING
;
383 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
384 cm_id
->device
->iwcm
->reject(cm_id
, NULL
, 0);
385 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
387 case IW_CM_STATE_CONN_SENT
:
388 case IW_CM_STATE_DESTROYING
:
393 if (cm_id_priv
->qp
) {
394 cm_id_priv
->id
.device
->iwcm
->rem_ref(cm_id_priv
->qp
);
395 cm_id_priv
->qp
= NULL
;
397 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
399 (void)iwcm_deref_id(cm_id_priv
);
403 * This function is only called by the application thread and cannot
404 * be called by the event thread. The function will wait for all
405 * references to be released on the cm_id and then kfree the cm_id
408 void iw_destroy_cm_id(struct iw_cm_id
*cm_id
)
410 struct iwcm_id_private
*cm_id_priv
;
412 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
413 BUG_ON(test_bit(IWCM_F_CALLBACK_DESTROY
, &cm_id_priv
->flags
));
415 destroy_cm_id(cm_id
);
417 wait_for_completion(&cm_id_priv
->destroy_comp
);
419 free_cm_id(cm_id_priv
);
421 EXPORT_SYMBOL(iw_destroy_cm_id
);
426 * Start listening for connect requests. Generates one CONNECT_REQUEST
427 * event for each inbound connect request.
429 int iw_cm_listen(struct iw_cm_id
*cm_id
, int backlog
)
431 struct iwcm_id_private
*cm_id_priv
;
435 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
438 backlog
= default_backlog
;
440 ret
= alloc_work_entries(cm_id_priv
, backlog
);
444 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
445 switch (cm_id_priv
->state
) {
446 case IW_CM_STATE_IDLE
:
447 cm_id_priv
->state
= IW_CM_STATE_LISTEN
;
448 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
449 ret
= cm_id
->device
->iwcm
->create_listen(cm_id
, backlog
);
451 cm_id_priv
->state
= IW_CM_STATE_IDLE
;
452 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
457 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
461 EXPORT_SYMBOL(iw_cm_listen
);
466 * Rejects an inbound connection request. No events are generated.
468 int iw_cm_reject(struct iw_cm_id
*cm_id
,
469 const void *private_data
,
472 struct iwcm_id_private
*cm_id_priv
;
476 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
477 set_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
479 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
480 if (cm_id_priv
->state
!= IW_CM_STATE_CONN_RECV
) {
481 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
482 clear_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
483 wake_up_all(&cm_id_priv
->connect_wait
);
486 cm_id_priv
->state
= IW_CM_STATE_IDLE
;
487 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
489 ret
= cm_id
->device
->iwcm
->reject(cm_id
, private_data
,
492 clear_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
493 wake_up_all(&cm_id_priv
->connect_wait
);
497 EXPORT_SYMBOL(iw_cm_reject
);
500 * CM_ID <-- ESTABLISHED
502 * Accepts an inbound connection request and generates an ESTABLISHED
503 * event. Callers of iw_cm_disconnect and iw_destroy_cm_id will block
504 * until the ESTABLISHED event is received from the provider.
506 int iw_cm_accept(struct iw_cm_id
*cm_id
,
507 struct iw_cm_conn_param
*iw_param
)
509 struct iwcm_id_private
*cm_id_priv
;
514 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
515 set_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
517 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
518 if (cm_id_priv
->state
!= IW_CM_STATE_CONN_RECV
) {
519 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
520 clear_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
521 wake_up_all(&cm_id_priv
->connect_wait
);
524 /* Get the ib_qp given the QPN */
525 qp
= cm_id
->device
->iwcm
->get_qp(cm_id
->device
, iw_param
->qpn
);
527 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
528 clear_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
529 wake_up_all(&cm_id_priv
->connect_wait
);
532 cm_id
->device
->iwcm
->add_ref(qp
);
534 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
536 ret
= cm_id
->device
->iwcm
->accept(cm_id
, iw_param
);
538 /* An error on accept precludes provider events */
539 BUG_ON(cm_id_priv
->state
!= IW_CM_STATE_CONN_RECV
);
540 cm_id_priv
->state
= IW_CM_STATE_IDLE
;
541 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
542 if (cm_id_priv
->qp
) {
543 cm_id
->device
->iwcm
->rem_ref(qp
);
544 cm_id_priv
->qp
= NULL
;
546 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
547 clear_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
548 wake_up_all(&cm_id_priv
->connect_wait
);
553 EXPORT_SYMBOL(iw_cm_accept
);
556 * Active Side: CM_ID <-- CONN_SENT
558 * If successful, results in the generation of a CONNECT_REPLY
559 * event. iw_cm_disconnect and iw_cm_destroy will block until the
560 * CONNECT_REPLY event is received from the provider.
562 int iw_cm_connect(struct iw_cm_id
*cm_id
, struct iw_cm_conn_param
*iw_param
)
564 struct iwcm_id_private
*cm_id_priv
;
569 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
571 ret
= alloc_work_entries(cm_id_priv
, 4);
575 set_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
576 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
578 if (cm_id_priv
->state
!= IW_CM_STATE_IDLE
) {
579 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
580 clear_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
581 wake_up_all(&cm_id_priv
->connect_wait
);
585 /* Get the ib_qp given the QPN */
586 qp
= cm_id
->device
->iwcm
->get_qp(cm_id
->device
, iw_param
->qpn
);
588 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
589 clear_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
590 wake_up_all(&cm_id_priv
->connect_wait
);
593 cm_id
->device
->iwcm
->add_ref(qp
);
595 cm_id_priv
->state
= IW_CM_STATE_CONN_SENT
;
596 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
598 ret
= cm_id
->device
->iwcm
->connect(cm_id
, iw_param
);
600 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
601 if (cm_id_priv
->qp
) {
602 cm_id
->device
->iwcm
->rem_ref(qp
);
603 cm_id_priv
->qp
= NULL
;
605 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
606 BUG_ON(cm_id_priv
->state
!= IW_CM_STATE_CONN_SENT
);
607 cm_id_priv
->state
= IW_CM_STATE_IDLE
;
608 clear_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
609 wake_up_all(&cm_id_priv
->connect_wait
);
614 EXPORT_SYMBOL(iw_cm_connect
);
617 * Passive Side: new CM_ID <-- CONN_RECV
619 * Handles an inbound connect request. The function creates a new
620 * iw_cm_id to represent the new connection and inherits the client
621 * callback function and other attributes from the listening parent.
623 * The work item contains a pointer to the listen_cm_id and the event. The
624 * listen_cm_id contains the client cm_handler, context and
625 * device. These are copied when the device is cloned. The event
626 * contains the new four tuple.
628 * An error on the child should not affect the parent, so this
629 * function does not return a value.
631 static void cm_conn_req_handler(struct iwcm_id_private
*listen_id_priv
,
632 struct iw_cm_event
*iw_event
)
635 struct iw_cm_id
*cm_id
;
636 struct iwcm_id_private
*cm_id_priv
;
640 * The provider should never generate a connection request
641 * event with a bad status.
643 BUG_ON(iw_event
->status
);
645 cm_id
= iw_create_cm_id(listen_id_priv
->id
.device
,
646 listen_id_priv
->id
.cm_handler
,
647 listen_id_priv
->id
.context
);
648 /* If the cm_id could not be created, ignore the request */
652 cm_id
->provider_data
= iw_event
->provider_data
;
653 cm_id
->local_addr
= iw_event
->local_addr
;
654 cm_id
->remote_addr
= iw_event
->remote_addr
;
656 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
657 cm_id_priv
->state
= IW_CM_STATE_CONN_RECV
;
660 * We could be destroying the listening id. If so, ignore this
663 spin_lock_irqsave(&listen_id_priv
->lock
, flags
);
664 if (listen_id_priv
->state
!= IW_CM_STATE_LISTEN
) {
665 spin_unlock_irqrestore(&listen_id_priv
->lock
, flags
);
666 iw_cm_reject(cm_id
, NULL
, 0);
667 iw_destroy_cm_id(cm_id
);
670 spin_unlock_irqrestore(&listen_id_priv
->lock
, flags
);
672 ret
= alloc_work_entries(cm_id_priv
, 3);
674 iw_cm_reject(cm_id
, NULL
, 0);
675 iw_destroy_cm_id(cm_id
);
679 /* Call the client CM handler */
680 ret
= cm_id
->cm_handler(cm_id
, iw_event
);
682 iw_cm_reject(cm_id
, NULL
, 0);
683 set_bit(IWCM_F_CALLBACK_DESTROY
, &cm_id_priv
->flags
);
684 destroy_cm_id(cm_id
);
685 if (atomic_read(&cm_id_priv
->refcount
)==0)
686 free_cm_id(cm_id_priv
);
690 if (iw_event
->private_data_len
)
691 kfree(iw_event
->private_data
);
695 * Passive Side: CM_ID <-- ESTABLISHED
697 * The provider generated an ESTABLISHED event which means that
698 * the MPA negotion has completed successfully and we are now in MPA
701 * This event can only be received in the CONN_RECV state. If the
702 * remote peer closed, the ESTABLISHED event would be received followed
703 * by the CLOSE event. If the app closes, it will block until we wake
704 * it up after processing this event.
706 static int cm_conn_est_handler(struct iwcm_id_private
*cm_id_priv
,
707 struct iw_cm_event
*iw_event
)
712 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
715 * We clear the CONNECT_WAIT bit here to allow the callback
716 * function to call iw_cm_disconnect. Calling iw_destroy_cm_id
717 * from a callback handler is not allowed.
719 clear_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
720 BUG_ON(cm_id_priv
->state
!= IW_CM_STATE_CONN_RECV
);
721 cm_id_priv
->state
= IW_CM_STATE_ESTABLISHED
;
722 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
723 ret
= cm_id_priv
->id
.cm_handler(&cm_id_priv
->id
, iw_event
);
724 wake_up_all(&cm_id_priv
->connect_wait
);
730 * Active Side: CM_ID <-- ESTABLISHED
732 * The app has called connect and is waiting for the established event to
733 * post it's requests to the server. This event will wake up anyone
734 * blocked in iw_cm_disconnect or iw_destroy_id.
736 static int cm_conn_rep_handler(struct iwcm_id_private
*cm_id_priv
,
737 struct iw_cm_event
*iw_event
)
742 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
744 * Clear the connect wait bit so a callback function calling
745 * iw_cm_disconnect will not wait and deadlock this thread
747 clear_bit(IWCM_F_CONNECT_WAIT
, &cm_id_priv
->flags
);
748 BUG_ON(cm_id_priv
->state
!= IW_CM_STATE_CONN_SENT
);
749 if (iw_event
->status
== 0) {
750 cm_id_priv
->id
.local_addr
= iw_event
->local_addr
;
751 cm_id_priv
->id
.remote_addr
= iw_event
->remote_addr
;
752 cm_id_priv
->state
= IW_CM_STATE_ESTABLISHED
;
754 /* REJECTED or RESET */
755 cm_id_priv
->id
.device
->iwcm
->rem_ref(cm_id_priv
->qp
);
756 cm_id_priv
->qp
= NULL
;
757 cm_id_priv
->state
= IW_CM_STATE_IDLE
;
759 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
760 ret
= cm_id_priv
->id
.cm_handler(&cm_id_priv
->id
, iw_event
);
762 if (iw_event
->private_data_len
)
763 kfree(iw_event
->private_data
);
765 /* Wake up waiters on connect complete */
766 wake_up_all(&cm_id_priv
->connect_wait
);
774 * If in the ESTABLISHED state, move to CLOSING.
776 static void cm_disconnect_handler(struct iwcm_id_private
*cm_id_priv
,
777 struct iw_cm_event
*iw_event
)
781 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
782 if (cm_id_priv
->state
== IW_CM_STATE_ESTABLISHED
)
783 cm_id_priv
->state
= IW_CM_STATE_CLOSING
;
784 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
790 * If in the ESTBLISHED or CLOSING states, the QP will have have been
791 * moved by the provider to the ERR state. Disassociate the CM_ID from
792 * the QP, move to IDLE, and remove the 'connected' reference.
794 * If in some other state, the cm_id was destroyed asynchronously.
795 * This is the last reference that will result in waking up
796 * the app thread blocked in iw_destroy_cm_id.
798 static int cm_close_handler(struct iwcm_id_private
*cm_id_priv
,
799 struct iw_cm_event
*iw_event
)
803 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
805 if (cm_id_priv
->qp
) {
806 cm_id_priv
->id
.device
->iwcm
->rem_ref(cm_id_priv
->qp
);
807 cm_id_priv
->qp
= NULL
;
809 switch (cm_id_priv
->state
) {
810 case IW_CM_STATE_ESTABLISHED
:
811 case IW_CM_STATE_CLOSING
:
812 cm_id_priv
->state
= IW_CM_STATE_IDLE
;
813 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
814 ret
= cm_id_priv
->id
.cm_handler(&cm_id_priv
->id
, iw_event
);
815 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
817 case IW_CM_STATE_DESTROYING
:
822 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
827 static int process_event(struct iwcm_id_private
*cm_id_priv
,
828 struct iw_cm_event
*iw_event
)
832 switch (iw_event
->event
) {
833 case IW_CM_EVENT_CONNECT_REQUEST
:
834 cm_conn_req_handler(cm_id_priv
, iw_event
);
836 case IW_CM_EVENT_CONNECT_REPLY
:
837 ret
= cm_conn_rep_handler(cm_id_priv
, iw_event
);
839 case IW_CM_EVENT_ESTABLISHED
:
840 ret
= cm_conn_est_handler(cm_id_priv
, iw_event
);
842 case IW_CM_EVENT_DISCONNECT
:
843 cm_disconnect_handler(cm_id_priv
, iw_event
);
845 case IW_CM_EVENT_CLOSE
:
846 ret
= cm_close_handler(cm_id_priv
, iw_event
);
856 * Process events on the work_list for the cm_id. If the callback
857 * function requests that the cm_id be deleted, a flag is set in the
858 * cm_id flags to indicate that when the last reference is
859 * removed, the cm_id is to be destroyed. This is necessary to
860 * distinguish between an object that will be destroyed by the app
861 * thread asleep on the destroy_comp list vs. an object destroyed
862 * here synchronously when the last reference is removed.
864 static void cm_work_handler(struct work_struct
*_work
)
866 struct iwcm_work
*work
= container_of(_work
, struct iwcm_work
, work
);
867 struct iw_cm_event levent
;
868 struct iwcm_id_private
*cm_id_priv
= work
->cm_id
;
874 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
875 empty
= list_empty(&cm_id_priv
->work_list
);
877 work
= list_entry(cm_id_priv
->work_list
.next
,
878 struct iwcm_work
, list
);
879 list_del_init(&work
->list
);
880 empty
= list_empty(&cm_id_priv
->work_list
);
881 levent
= work
->event
;
883 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
885 ret
= process_event(cm_id_priv
, &levent
);
887 set_bit(IWCM_F_CALLBACK_DESTROY
, &cm_id_priv
->flags
);
888 destroy_cm_id(&cm_id_priv
->id
);
890 BUG_ON(atomic_read(&cm_id_priv
->refcount
)==0);
891 destroy_id
= test_bit(IWCM_F_CALLBACK_DESTROY
, &cm_id_priv
->flags
);
892 if (iwcm_deref_id(cm_id_priv
)) {
894 BUG_ON(!list_empty(&cm_id_priv
->work_list
));
895 free_cm_id(cm_id_priv
);
901 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
903 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
907 * This function is called on interrupt context. Schedule events on
908 * the iwcm_wq thread to allow callback functions to downcall into
909 * the CM and/or block. Events are queued to a per-CM_ID
910 * work_list. If this is the first event on the work_list, the work
911 * element is also queued on the iwcm_wq thread.
913 * Each event holds a reference on the cm_id. Until the last posted
914 * event has been delivered and processed, the cm_id cannot be
918 * 0 - the event was handled.
919 * -ENOMEM - the event was not handled due to lack of resources.
921 static int cm_event_handler(struct iw_cm_id
*cm_id
,
922 struct iw_cm_event
*iw_event
)
924 struct iwcm_work
*work
;
925 struct iwcm_id_private
*cm_id_priv
;
929 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
931 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
932 work
= get_work(cm_id_priv
);
938 INIT_WORK(&work
->work
, cm_work_handler
);
939 work
->cm_id
= cm_id_priv
;
940 work
->event
= *iw_event
;
942 if ((work
->event
.event
== IW_CM_EVENT_CONNECT_REQUEST
||
943 work
->event
.event
== IW_CM_EVENT_CONNECT_REPLY
) &&
944 work
->event
.private_data_len
) {
945 ret
= copy_private_data(&work
->event
);
952 atomic_inc(&cm_id_priv
->refcount
);
953 if (list_empty(&cm_id_priv
->work_list
)) {
954 list_add_tail(&work
->list
, &cm_id_priv
->work_list
);
955 queue_work(iwcm_wq
, &work
->work
);
957 list_add_tail(&work
->list
, &cm_id_priv
->work_list
);
959 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
963 static int iwcm_init_qp_init_attr(struct iwcm_id_private
*cm_id_priv
,
964 struct ib_qp_attr
*qp_attr
,
970 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
971 switch (cm_id_priv
->state
) {
972 case IW_CM_STATE_IDLE
:
973 case IW_CM_STATE_CONN_SENT
:
974 case IW_CM_STATE_CONN_RECV
:
975 case IW_CM_STATE_ESTABLISHED
:
976 *qp_attr_mask
= IB_QP_STATE
| IB_QP_ACCESS_FLAGS
;
977 qp_attr
->qp_access_flags
= IB_ACCESS_REMOTE_WRITE
|
978 IB_ACCESS_REMOTE_READ
;
985 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
989 static int iwcm_init_qp_rts_attr(struct iwcm_id_private
*cm_id_priv
,
990 struct ib_qp_attr
*qp_attr
,
996 spin_lock_irqsave(&cm_id_priv
->lock
, flags
);
997 switch (cm_id_priv
->state
) {
998 case IW_CM_STATE_IDLE
:
999 case IW_CM_STATE_CONN_SENT
:
1000 case IW_CM_STATE_CONN_RECV
:
1001 case IW_CM_STATE_ESTABLISHED
:
1009 spin_unlock_irqrestore(&cm_id_priv
->lock
, flags
);
1013 int iw_cm_init_qp_attr(struct iw_cm_id
*cm_id
,
1014 struct ib_qp_attr
*qp_attr
,
1017 struct iwcm_id_private
*cm_id_priv
;
1020 cm_id_priv
= container_of(cm_id
, struct iwcm_id_private
, id
);
1021 switch (qp_attr
->qp_state
) {
1024 ret
= iwcm_init_qp_init_attr(cm_id_priv
,
1025 qp_attr
, qp_attr_mask
);
1028 ret
= iwcm_init_qp_rts_attr(cm_id_priv
,
1029 qp_attr
, qp_attr_mask
);
1037 EXPORT_SYMBOL(iw_cm_init_qp_attr
);
1039 static int __init
iw_cm_init(void)
1041 iwcm_wq
= create_singlethread_workqueue("iw_cm_wq");
1045 iwcm_ctl_table_hdr
= register_net_sysctl(&init_net
, "net/iw_cm",
1047 if (!iwcm_ctl_table_hdr
) {
1048 pr_err("iw_cm: couldn't register sysctl paths\n");
1049 destroy_workqueue(iwcm_wq
);
1056 static void __exit
iw_cm_cleanup(void)
1058 unregister_net_sysctl_table(iwcm_ctl_table_hdr
);
1059 destroy_workqueue(iwcm_wq
);
1062 module_init(iw_cm_init
);
1063 module_exit(iw_cm_cleanup
);