RDMA/iwcm: Don't call provider reject func with irqs disabled
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / infiniband / core / iwcm.c
blob625fec5a741c0c50cf6c39b1cb83c002e61bf79d
1 /*
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
17 * conditions are met:
19 * - Redistributions of source code must retain the above
20 * copyright notice, this list of conditions and the following
21 * disclaimer.
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
35 * SOFTWARE.
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/spinlock.h>
44 #include <linux/workqueue.h>
45 #include <linux/completion.h>
47 #include <rdma/iw_cm.h>
48 #include <rdma/ib_addr.h>
50 #include "iwcm.h"
52 MODULE_AUTHOR("Tom Tucker");
53 MODULE_DESCRIPTION("iWARP CM");
54 MODULE_LICENSE("Dual BSD/GPL");
56 static struct workqueue_struct *iwcm_wq;
57 struct iwcm_work {
58 struct work_struct work;
59 struct iwcm_id_private *cm_id;
60 struct list_head list;
61 struct iw_cm_event event;
62 struct list_head free_list;
66 * The following services provide a mechanism for pre-allocating iwcm_work
67 * elements. The design pre-allocates them based on the cm_id type:
68 * LISTENING IDS: Get enough elements preallocated to handle the
69 * listen backlog.
70 * ACTIVE IDS: 4: CONNECT_REPLY, ESTABLISHED, DISCONNECT, CLOSE
71 * PASSIVE IDS: 3: ESTABLISHED, DISCONNECT, CLOSE
73 * Allocating them in connect and listen avoids having to deal
74 * with allocation failures on the event upcall from the provider (which
75 * is called in the interrupt context).
77 * One exception is when creating the cm_id for incoming connection requests.
78 * There are two cases:
79 * 1) in the event upcall, cm_event_handler(), for a listening cm_id. If
80 * the backlog is exceeded, then no more connection request events will
81 * be processed. cm_event_handler() returns -ENOMEM in this case. Its up
82 * to the provider to reject the connection request.
83 * 2) in the connection request workqueue handler, cm_conn_req_handler().
84 * If work elements cannot be allocated for the new connect request cm_id,
85 * then IWCM will call the provider reject method. This is ok since
86 * cm_conn_req_handler() runs in the workqueue thread context.
89 static struct iwcm_work *get_work(struct iwcm_id_private *cm_id_priv)
91 struct iwcm_work *work;
93 if (list_empty(&cm_id_priv->work_free_list))
94 return NULL;
95 work = list_entry(cm_id_priv->work_free_list.next, struct iwcm_work,
96 free_list);
97 list_del_init(&work->free_list);
98 return work;
101 static void put_work(struct iwcm_work *work)
103 list_add(&work->free_list, &work->cm_id->work_free_list);
106 static void dealloc_work_entries(struct iwcm_id_private *cm_id_priv)
108 struct list_head *e, *tmp;
110 list_for_each_safe(e, tmp, &cm_id_priv->work_free_list)
111 kfree(list_entry(e, struct iwcm_work, free_list));
114 static int alloc_work_entries(struct iwcm_id_private *cm_id_priv, int count)
116 struct iwcm_work *work;
118 BUG_ON(!list_empty(&cm_id_priv->work_free_list));
119 while (count--) {
120 work = kmalloc(sizeof(struct iwcm_work), GFP_KERNEL);
121 if (!work) {
122 dealloc_work_entries(cm_id_priv);
123 return -ENOMEM;
125 work->cm_id = cm_id_priv;
126 INIT_LIST_HEAD(&work->list);
127 put_work(work);
129 return 0;
133 * Save private data from incoming connection requests to
134 * iw_cm_event, so the low level driver doesn't have to. Adjust
135 * the event ptr to point to the local copy.
137 static int copy_private_data(struct iw_cm_event *event)
139 void *p;
141 p = kmemdup(event->private_data, event->private_data_len, GFP_ATOMIC);
142 if (!p)
143 return -ENOMEM;
144 event->private_data = p;
145 return 0;
148 static void free_cm_id(struct iwcm_id_private *cm_id_priv)
150 dealloc_work_entries(cm_id_priv);
151 kfree(cm_id_priv);
155 * Release a reference on cm_id. If the last reference is being
156 * released, enable the waiting thread (in iw_destroy_cm_id) to
157 * get woken up, and return 1 if a thread is already waiting.
159 static int iwcm_deref_id(struct iwcm_id_private *cm_id_priv)
161 BUG_ON(atomic_read(&cm_id_priv->refcount)==0);
162 if (atomic_dec_and_test(&cm_id_priv->refcount)) {
163 BUG_ON(!list_empty(&cm_id_priv->work_list));
164 complete(&cm_id_priv->destroy_comp);
165 return 1;
168 return 0;
171 static void add_ref(struct iw_cm_id *cm_id)
173 struct iwcm_id_private *cm_id_priv;
174 cm_id_priv = container_of(cm_id, struct iwcm_id_private, id);
175 atomic_inc(&cm_id_priv->refcount);
178 static void rem_ref(struct iw_cm_id *cm_id)
180 struct iwcm_id_private *cm_id_priv;
181 cm_id_priv = container_of(cm_id, struct iwcm_id_private, id);
182 if (iwcm_deref_id(cm_id_priv) &&
183 test_bit(IWCM_F_CALLBACK_DESTROY, &cm_id_priv->flags)) {
184 BUG_ON(!list_empty(&cm_id_priv->work_list));
185 free_cm_id(cm_id_priv);
189 static int cm_event_handler(struct iw_cm_id *cm_id, struct iw_cm_event *event);
191 struct iw_cm_id *iw_create_cm_id(struct ib_device *device,
192 iw_cm_handler cm_handler,
193 void *context)
195 struct iwcm_id_private *cm_id_priv;
197 cm_id_priv = kzalloc(sizeof(*cm_id_priv), GFP_KERNEL);
198 if (!cm_id_priv)
199 return ERR_PTR(-ENOMEM);
201 cm_id_priv->state = IW_CM_STATE_IDLE;
202 cm_id_priv->id.device = device;
203 cm_id_priv->id.cm_handler = cm_handler;
204 cm_id_priv->id.context = context;
205 cm_id_priv->id.event_handler = cm_event_handler;
206 cm_id_priv->id.add_ref = add_ref;
207 cm_id_priv->id.rem_ref = rem_ref;
208 spin_lock_init(&cm_id_priv->lock);
209 atomic_set(&cm_id_priv->refcount, 1);
210 init_waitqueue_head(&cm_id_priv->connect_wait);
211 init_completion(&cm_id_priv->destroy_comp);
212 INIT_LIST_HEAD(&cm_id_priv->work_list);
213 INIT_LIST_HEAD(&cm_id_priv->work_free_list);
215 return &cm_id_priv->id;
217 EXPORT_SYMBOL(iw_create_cm_id);
220 static int iwcm_modify_qp_err(struct ib_qp *qp)
222 struct ib_qp_attr qp_attr;
224 if (!qp)
225 return -EINVAL;
227 qp_attr.qp_state = IB_QPS_ERR;
228 return ib_modify_qp(qp, &qp_attr, IB_QP_STATE);
232 * This is really the RDMAC CLOSING state. It is most similar to the
233 * IB SQD QP state.
235 static int iwcm_modify_qp_sqd(struct ib_qp *qp)
237 struct ib_qp_attr qp_attr;
239 BUG_ON(qp == NULL);
240 qp_attr.qp_state = IB_QPS_SQD;
241 return ib_modify_qp(qp, &qp_attr, IB_QP_STATE);
245 * CM_ID <-- CLOSING
247 * Block if a passive or active connection is currently being processed. Then
248 * process the event as follows:
249 * - If we are ESTABLISHED, move to CLOSING and modify the QP state
250 * based on the abrupt flag
251 * - If the connection is already in the CLOSING or IDLE state, the peer is
252 * disconnecting concurrently with us and we've already seen the
253 * DISCONNECT event -- ignore the request and return 0
254 * - Disconnect on a listening endpoint returns -EINVAL
256 int iw_cm_disconnect(struct iw_cm_id *cm_id, int abrupt)
258 struct iwcm_id_private *cm_id_priv;
259 unsigned long flags;
260 int ret = 0;
261 struct ib_qp *qp = NULL;
263 cm_id_priv = container_of(cm_id, struct iwcm_id_private, id);
264 /* Wait if we're currently in a connect or accept downcall */
265 wait_event(cm_id_priv->connect_wait,
266 !test_bit(IWCM_F_CONNECT_WAIT, &cm_id_priv->flags));
268 spin_lock_irqsave(&cm_id_priv->lock, flags);
269 switch (cm_id_priv->state) {
270 case IW_CM_STATE_ESTABLISHED:
271 cm_id_priv->state = IW_CM_STATE_CLOSING;
273 /* QP could be <nul> for user-mode client */
274 if (cm_id_priv->qp)
275 qp = cm_id_priv->qp;
276 else
277 ret = -EINVAL;
278 break;
279 case IW_CM_STATE_LISTEN:
280 ret = -EINVAL;
281 break;
282 case IW_CM_STATE_CLOSING:
283 /* remote peer closed first */
284 case IW_CM_STATE_IDLE:
285 /* accept or connect returned !0 */
286 break;
287 case IW_CM_STATE_CONN_RECV:
289 * App called disconnect before/without calling accept after
290 * connect_request event delivered.
292 break;
293 case IW_CM_STATE_CONN_SENT:
294 /* Can only get here if wait above fails */
295 default:
296 BUG();
298 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
300 if (qp) {
301 if (abrupt)
302 ret = iwcm_modify_qp_err(qp);
303 else
304 ret = iwcm_modify_qp_sqd(qp);
307 * If both sides are disconnecting the QP could
308 * already be in ERR or SQD states
310 ret = 0;
313 return ret;
315 EXPORT_SYMBOL(iw_cm_disconnect);
318 * CM_ID <-- DESTROYING
320 * Clean up all resources associated with the connection and release
321 * the initial reference taken by iw_create_cm_id.
323 static void destroy_cm_id(struct iw_cm_id *cm_id)
325 struct iwcm_id_private *cm_id_priv;
326 unsigned long flags;
327 int ret;
329 cm_id_priv = container_of(cm_id, struct iwcm_id_private, id);
331 * Wait if we're currently in a connect or accept downcall. A
332 * listening endpoint should never block here.
334 wait_event(cm_id_priv->connect_wait,
335 !test_bit(IWCM_F_CONNECT_WAIT, &cm_id_priv->flags));
337 spin_lock_irqsave(&cm_id_priv->lock, flags);
338 switch (cm_id_priv->state) {
339 case IW_CM_STATE_LISTEN:
340 cm_id_priv->state = IW_CM_STATE_DESTROYING;
341 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
342 /* destroy the listening endpoint */
343 ret = cm_id->device->iwcm->destroy_listen(cm_id);
344 spin_lock_irqsave(&cm_id_priv->lock, flags);
345 break;
346 case IW_CM_STATE_ESTABLISHED:
347 cm_id_priv->state = IW_CM_STATE_DESTROYING;
348 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
349 /* Abrupt close of the connection */
350 (void)iwcm_modify_qp_err(cm_id_priv->qp);
351 spin_lock_irqsave(&cm_id_priv->lock, flags);
352 break;
353 case IW_CM_STATE_IDLE:
354 case IW_CM_STATE_CLOSING:
355 cm_id_priv->state = IW_CM_STATE_DESTROYING;
356 break;
357 case IW_CM_STATE_CONN_RECV:
359 * App called destroy before/without calling accept after
360 * receiving connection request event notification or
361 * returned non zero from the event callback function.
362 * In either case, must tell the provider to reject.
364 cm_id_priv->state = IW_CM_STATE_DESTROYING;
365 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
366 cm_id->device->iwcm->reject(cm_id, NULL, 0);
367 spin_lock_irqsave(&cm_id_priv->lock, flags);
368 break;
369 case IW_CM_STATE_CONN_SENT:
370 case IW_CM_STATE_DESTROYING:
371 default:
372 BUG();
373 break;
375 if (cm_id_priv->qp) {
376 cm_id_priv->id.device->iwcm->rem_ref(cm_id_priv->qp);
377 cm_id_priv->qp = NULL;
379 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
381 (void)iwcm_deref_id(cm_id_priv);
385 * This function is only called by the application thread and cannot
386 * be called by the event thread. The function will wait for all
387 * references to be released on the cm_id and then kfree the cm_id
388 * object.
390 void iw_destroy_cm_id(struct iw_cm_id *cm_id)
392 struct iwcm_id_private *cm_id_priv;
394 cm_id_priv = container_of(cm_id, struct iwcm_id_private, id);
395 BUG_ON(test_bit(IWCM_F_CALLBACK_DESTROY, &cm_id_priv->flags));
397 destroy_cm_id(cm_id);
399 wait_for_completion(&cm_id_priv->destroy_comp);
401 free_cm_id(cm_id_priv);
403 EXPORT_SYMBOL(iw_destroy_cm_id);
406 * CM_ID <-- LISTEN
408 * Start listening for connect requests. Generates one CONNECT_REQUEST
409 * event for each inbound connect request.
411 int iw_cm_listen(struct iw_cm_id *cm_id, int backlog)
413 struct iwcm_id_private *cm_id_priv;
414 unsigned long flags;
415 int ret;
417 cm_id_priv = container_of(cm_id, struct iwcm_id_private, id);
419 ret = alloc_work_entries(cm_id_priv, backlog);
420 if (ret)
421 return ret;
423 spin_lock_irqsave(&cm_id_priv->lock, flags);
424 switch (cm_id_priv->state) {
425 case IW_CM_STATE_IDLE:
426 cm_id_priv->state = IW_CM_STATE_LISTEN;
427 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
428 ret = cm_id->device->iwcm->create_listen(cm_id, backlog);
429 if (ret)
430 cm_id_priv->state = IW_CM_STATE_IDLE;
431 spin_lock_irqsave(&cm_id_priv->lock, flags);
432 break;
433 default:
434 ret = -EINVAL;
436 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
438 return ret;
440 EXPORT_SYMBOL(iw_cm_listen);
443 * CM_ID <-- IDLE
445 * Rejects an inbound connection request. No events are generated.
447 int iw_cm_reject(struct iw_cm_id *cm_id,
448 const void *private_data,
449 u8 private_data_len)
451 struct iwcm_id_private *cm_id_priv;
452 unsigned long flags;
453 int ret;
455 cm_id_priv = container_of(cm_id, struct iwcm_id_private, id);
456 set_bit(IWCM_F_CONNECT_WAIT, &cm_id_priv->flags);
458 spin_lock_irqsave(&cm_id_priv->lock, flags);
459 if (cm_id_priv->state != IW_CM_STATE_CONN_RECV) {
460 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
461 clear_bit(IWCM_F_CONNECT_WAIT, &cm_id_priv->flags);
462 wake_up_all(&cm_id_priv->connect_wait);
463 return -EINVAL;
465 cm_id_priv->state = IW_CM_STATE_IDLE;
466 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
468 ret = cm_id->device->iwcm->reject(cm_id, private_data,
469 private_data_len);
471 clear_bit(IWCM_F_CONNECT_WAIT, &cm_id_priv->flags);
472 wake_up_all(&cm_id_priv->connect_wait);
474 return ret;
476 EXPORT_SYMBOL(iw_cm_reject);
479 * CM_ID <-- ESTABLISHED
481 * Accepts an inbound connection request and generates an ESTABLISHED
482 * event. Callers of iw_cm_disconnect and iw_destroy_cm_id will block
483 * until the ESTABLISHED event is received from the provider.
485 int iw_cm_accept(struct iw_cm_id *cm_id,
486 struct iw_cm_conn_param *iw_param)
488 struct iwcm_id_private *cm_id_priv;
489 struct ib_qp *qp;
490 unsigned long flags;
491 int ret;
493 cm_id_priv = container_of(cm_id, struct iwcm_id_private, id);
494 set_bit(IWCM_F_CONNECT_WAIT, &cm_id_priv->flags);
496 spin_lock_irqsave(&cm_id_priv->lock, flags);
497 if (cm_id_priv->state != IW_CM_STATE_CONN_RECV) {
498 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
499 clear_bit(IWCM_F_CONNECT_WAIT, &cm_id_priv->flags);
500 wake_up_all(&cm_id_priv->connect_wait);
501 return -EINVAL;
503 /* Get the ib_qp given the QPN */
504 qp = cm_id->device->iwcm->get_qp(cm_id->device, iw_param->qpn);
505 if (!qp) {
506 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
507 return -EINVAL;
509 cm_id->device->iwcm->add_ref(qp);
510 cm_id_priv->qp = qp;
511 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
513 ret = cm_id->device->iwcm->accept(cm_id, iw_param);
514 if (ret) {
515 /* An error on accept precludes provider events */
516 BUG_ON(cm_id_priv->state != IW_CM_STATE_CONN_RECV);
517 cm_id_priv->state = IW_CM_STATE_IDLE;
518 spin_lock_irqsave(&cm_id_priv->lock, flags);
519 if (cm_id_priv->qp) {
520 cm_id->device->iwcm->rem_ref(qp);
521 cm_id_priv->qp = NULL;
523 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
524 clear_bit(IWCM_F_CONNECT_WAIT, &cm_id_priv->flags);
525 wake_up_all(&cm_id_priv->connect_wait);
528 return ret;
530 EXPORT_SYMBOL(iw_cm_accept);
533 * Active Side: CM_ID <-- CONN_SENT
535 * If successful, results in the generation of a CONNECT_REPLY
536 * event. iw_cm_disconnect and iw_cm_destroy will block until the
537 * CONNECT_REPLY event is received from the provider.
539 int iw_cm_connect(struct iw_cm_id *cm_id, struct iw_cm_conn_param *iw_param)
541 struct iwcm_id_private *cm_id_priv;
542 int ret;
543 unsigned long flags;
544 struct ib_qp *qp;
546 cm_id_priv = container_of(cm_id, struct iwcm_id_private, id);
548 ret = alloc_work_entries(cm_id_priv, 4);
549 if (ret)
550 return ret;
552 set_bit(IWCM_F_CONNECT_WAIT, &cm_id_priv->flags);
553 spin_lock_irqsave(&cm_id_priv->lock, flags);
555 if (cm_id_priv->state != IW_CM_STATE_IDLE) {
556 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
557 clear_bit(IWCM_F_CONNECT_WAIT, &cm_id_priv->flags);
558 wake_up_all(&cm_id_priv->connect_wait);
559 return -EINVAL;
562 /* Get the ib_qp given the QPN */
563 qp = cm_id->device->iwcm->get_qp(cm_id->device, iw_param->qpn);
564 if (!qp) {
565 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
566 return -EINVAL;
568 cm_id->device->iwcm->add_ref(qp);
569 cm_id_priv->qp = qp;
570 cm_id_priv->state = IW_CM_STATE_CONN_SENT;
571 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
573 ret = cm_id->device->iwcm->connect(cm_id, iw_param);
574 if (ret) {
575 spin_lock_irqsave(&cm_id_priv->lock, flags);
576 if (cm_id_priv->qp) {
577 cm_id->device->iwcm->rem_ref(qp);
578 cm_id_priv->qp = NULL;
580 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
581 BUG_ON(cm_id_priv->state != IW_CM_STATE_CONN_SENT);
582 cm_id_priv->state = IW_CM_STATE_IDLE;
583 clear_bit(IWCM_F_CONNECT_WAIT, &cm_id_priv->flags);
584 wake_up_all(&cm_id_priv->connect_wait);
587 return ret;
589 EXPORT_SYMBOL(iw_cm_connect);
592 * Passive Side: new CM_ID <-- CONN_RECV
594 * Handles an inbound connect request. The function creates a new
595 * iw_cm_id to represent the new connection and inherits the client
596 * callback function and other attributes from the listening parent.
598 * The work item contains a pointer to the listen_cm_id and the event. The
599 * listen_cm_id contains the client cm_handler, context and
600 * device. These are copied when the device is cloned. The event
601 * contains the new four tuple.
603 * An error on the child should not affect the parent, so this
604 * function does not return a value.
606 static void cm_conn_req_handler(struct iwcm_id_private *listen_id_priv,
607 struct iw_cm_event *iw_event)
609 unsigned long flags;
610 struct iw_cm_id *cm_id;
611 struct iwcm_id_private *cm_id_priv;
612 int ret;
615 * The provider should never generate a connection request
616 * event with a bad status.
618 BUG_ON(iw_event->status);
621 * We could be destroying the listening id. If so, ignore this
622 * upcall.
624 spin_lock_irqsave(&listen_id_priv->lock, flags);
625 if (listen_id_priv->state != IW_CM_STATE_LISTEN) {
626 spin_unlock_irqrestore(&listen_id_priv->lock, flags);
627 goto out;
629 spin_unlock_irqrestore(&listen_id_priv->lock, flags);
631 cm_id = iw_create_cm_id(listen_id_priv->id.device,
632 listen_id_priv->id.cm_handler,
633 listen_id_priv->id.context);
634 /* If the cm_id could not be created, ignore the request */
635 if (IS_ERR(cm_id))
636 goto out;
638 cm_id->provider_data = iw_event->provider_data;
639 cm_id->local_addr = iw_event->local_addr;
640 cm_id->remote_addr = iw_event->remote_addr;
642 cm_id_priv = container_of(cm_id, struct iwcm_id_private, id);
643 cm_id_priv->state = IW_CM_STATE_CONN_RECV;
645 ret = alloc_work_entries(cm_id_priv, 3);
646 if (ret) {
647 iw_cm_reject(cm_id, NULL, 0);
648 iw_destroy_cm_id(cm_id);
649 goto out;
652 /* Call the client CM handler */
653 ret = cm_id->cm_handler(cm_id, iw_event);
654 if (ret) {
655 iw_cm_reject(cm_id, NULL, 0);
656 set_bit(IWCM_F_CALLBACK_DESTROY, &cm_id_priv->flags);
657 destroy_cm_id(cm_id);
658 if (atomic_read(&cm_id_priv->refcount)==0)
659 free_cm_id(cm_id_priv);
662 out:
663 if (iw_event->private_data_len)
664 kfree(iw_event->private_data);
668 * Passive Side: CM_ID <-- ESTABLISHED
670 * The provider generated an ESTABLISHED event which means that
671 * the MPA negotion has completed successfully and we are now in MPA
672 * FPDU mode.
674 * This event can only be received in the CONN_RECV state. If the
675 * remote peer closed, the ESTABLISHED event would be received followed
676 * by the CLOSE event. If the app closes, it will block until we wake
677 * it up after processing this event.
679 static int cm_conn_est_handler(struct iwcm_id_private *cm_id_priv,
680 struct iw_cm_event *iw_event)
682 unsigned long flags;
683 int ret;
685 spin_lock_irqsave(&cm_id_priv->lock, flags);
688 * We clear the CONNECT_WAIT bit here to allow the callback
689 * function to call iw_cm_disconnect. Calling iw_destroy_cm_id
690 * from a callback handler is not allowed.
692 clear_bit(IWCM_F_CONNECT_WAIT, &cm_id_priv->flags);
693 BUG_ON(cm_id_priv->state != IW_CM_STATE_CONN_RECV);
694 cm_id_priv->state = IW_CM_STATE_ESTABLISHED;
695 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
696 ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, iw_event);
697 wake_up_all(&cm_id_priv->connect_wait);
699 return ret;
703 * Active Side: CM_ID <-- ESTABLISHED
705 * The app has called connect and is waiting for the established event to
706 * post it's requests to the server. This event will wake up anyone
707 * blocked in iw_cm_disconnect or iw_destroy_id.
709 static int cm_conn_rep_handler(struct iwcm_id_private *cm_id_priv,
710 struct iw_cm_event *iw_event)
712 unsigned long flags;
713 int ret;
715 spin_lock_irqsave(&cm_id_priv->lock, flags);
717 * Clear the connect wait bit so a callback function calling
718 * iw_cm_disconnect will not wait and deadlock this thread
720 clear_bit(IWCM_F_CONNECT_WAIT, &cm_id_priv->flags);
721 BUG_ON(cm_id_priv->state != IW_CM_STATE_CONN_SENT);
722 if (iw_event->status == IW_CM_EVENT_STATUS_ACCEPTED) {
723 cm_id_priv->id.local_addr = iw_event->local_addr;
724 cm_id_priv->id.remote_addr = iw_event->remote_addr;
725 cm_id_priv->state = IW_CM_STATE_ESTABLISHED;
726 } else {
727 /* REJECTED or RESET */
728 cm_id_priv->id.device->iwcm->rem_ref(cm_id_priv->qp);
729 cm_id_priv->qp = NULL;
730 cm_id_priv->state = IW_CM_STATE_IDLE;
732 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
733 ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, iw_event);
735 if (iw_event->private_data_len)
736 kfree(iw_event->private_data);
738 /* Wake up waiters on connect complete */
739 wake_up_all(&cm_id_priv->connect_wait);
741 return ret;
745 * CM_ID <-- CLOSING
747 * If in the ESTABLISHED state, move to CLOSING.
749 static void cm_disconnect_handler(struct iwcm_id_private *cm_id_priv,
750 struct iw_cm_event *iw_event)
752 unsigned long flags;
754 spin_lock_irqsave(&cm_id_priv->lock, flags);
755 if (cm_id_priv->state == IW_CM_STATE_ESTABLISHED)
756 cm_id_priv->state = IW_CM_STATE_CLOSING;
757 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
761 * CM_ID <-- IDLE
763 * If in the ESTBLISHED or CLOSING states, the QP will have have been
764 * moved by the provider to the ERR state. Disassociate the CM_ID from
765 * the QP, move to IDLE, and remove the 'connected' reference.
767 * If in some other state, the cm_id was destroyed asynchronously.
768 * This is the last reference that will result in waking up
769 * the app thread blocked in iw_destroy_cm_id.
771 static int cm_close_handler(struct iwcm_id_private *cm_id_priv,
772 struct iw_cm_event *iw_event)
774 unsigned long flags;
775 int ret = 0;
776 spin_lock_irqsave(&cm_id_priv->lock, flags);
778 if (cm_id_priv->qp) {
779 cm_id_priv->id.device->iwcm->rem_ref(cm_id_priv->qp);
780 cm_id_priv->qp = NULL;
782 switch (cm_id_priv->state) {
783 case IW_CM_STATE_ESTABLISHED:
784 case IW_CM_STATE_CLOSING:
785 cm_id_priv->state = IW_CM_STATE_IDLE;
786 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
787 ret = cm_id_priv->id.cm_handler(&cm_id_priv->id, iw_event);
788 spin_lock_irqsave(&cm_id_priv->lock, flags);
789 break;
790 case IW_CM_STATE_DESTROYING:
791 break;
792 default:
793 BUG();
795 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
797 return ret;
800 static int process_event(struct iwcm_id_private *cm_id_priv,
801 struct iw_cm_event *iw_event)
803 int ret = 0;
805 switch (iw_event->event) {
806 case IW_CM_EVENT_CONNECT_REQUEST:
807 cm_conn_req_handler(cm_id_priv, iw_event);
808 break;
809 case IW_CM_EVENT_CONNECT_REPLY:
810 ret = cm_conn_rep_handler(cm_id_priv, iw_event);
811 break;
812 case IW_CM_EVENT_ESTABLISHED:
813 ret = cm_conn_est_handler(cm_id_priv, iw_event);
814 break;
815 case IW_CM_EVENT_DISCONNECT:
816 cm_disconnect_handler(cm_id_priv, iw_event);
817 break;
818 case IW_CM_EVENT_CLOSE:
819 ret = cm_close_handler(cm_id_priv, iw_event);
820 break;
821 default:
822 BUG();
825 return ret;
829 * Process events on the work_list for the cm_id. If the callback
830 * function requests that the cm_id be deleted, a flag is set in the
831 * cm_id flags to indicate that when the last reference is
832 * removed, the cm_id is to be destroyed. This is necessary to
833 * distinguish between an object that will be destroyed by the app
834 * thread asleep on the destroy_comp list vs. an object destroyed
835 * here synchronously when the last reference is removed.
837 static void cm_work_handler(struct work_struct *_work)
839 struct iwcm_work *work = container_of(_work, struct iwcm_work, work);
840 struct iw_cm_event levent;
841 struct iwcm_id_private *cm_id_priv = work->cm_id;
842 unsigned long flags;
843 int empty;
844 int ret = 0;
845 int destroy_id;
847 spin_lock_irqsave(&cm_id_priv->lock, flags);
848 empty = list_empty(&cm_id_priv->work_list);
849 while (!empty) {
850 work = list_entry(cm_id_priv->work_list.next,
851 struct iwcm_work, list);
852 list_del_init(&work->list);
853 empty = list_empty(&cm_id_priv->work_list);
854 levent = work->event;
855 put_work(work);
856 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
858 ret = process_event(cm_id_priv, &levent);
859 if (ret) {
860 set_bit(IWCM_F_CALLBACK_DESTROY, &cm_id_priv->flags);
861 destroy_cm_id(&cm_id_priv->id);
863 BUG_ON(atomic_read(&cm_id_priv->refcount)==0);
864 destroy_id = test_bit(IWCM_F_CALLBACK_DESTROY, &cm_id_priv->flags);
865 if (iwcm_deref_id(cm_id_priv)) {
866 if (destroy_id) {
867 BUG_ON(!list_empty(&cm_id_priv->work_list));
868 free_cm_id(cm_id_priv);
870 return;
872 spin_lock_irqsave(&cm_id_priv->lock, flags);
874 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
878 * This function is called on interrupt context. Schedule events on
879 * the iwcm_wq thread to allow callback functions to downcall into
880 * the CM and/or block. Events are queued to a per-CM_ID
881 * work_list. If this is the first event on the work_list, the work
882 * element is also queued on the iwcm_wq thread.
884 * Each event holds a reference on the cm_id. Until the last posted
885 * event has been delivered and processed, the cm_id cannot be
886 * deleted.
888 * Returns:
889 * 0 - the event was handled.
890 * -ENOMEM - the event was not handled due to lack of resources.
892 static int cm_event_handler(struct iw_cm_id *cm_id,
893 struct iw_cm_event *iw_event)
895 struct iwcm_work *work;
896 struct iwcm_id_private *cm_id_priv;
897 unsigned long flags;
898 int ret = 0;
900 cm_id_priv = container_of(cm_id, struct iwcm_id_private, id);
902 spin_lock_irqsave(&cm_id_priv->lock, flags);
903 work = get_work(cm_id_priv);
904 if (!work) {
905 ret = -ENOMEM;
906 goto out;
909 INIT_WORK(&work->work, cm_work_handler);
910 work->cm_id = cm_id_priv;
911 work->event = *iw_event;
913 if ((work->event.event == IW_CM_EVENT_CONNECT_REQUEST ||
914 work->event.event == IW_CM_EVENT_CONNECT_REPLY) &&
915 work->event.private_data_len) {
916 ret = copy_private_data(&work->event);
917 if (ret) {
918 put_work(work);
919 goto out;
923 atomic_inc(&cm_id_priv->refcount);
924 if (list_empty(&cm_id_priv->work_list)) {
925 list_add_tail(&work->list, &cm_id_priv->work_list);
926 queue_work(iwcm_wq, &work->work);
927 } else
928 list_add_tail(&work->list, &cm_id_priv->work_list);
929 out:
930 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
931 return ret;
934 static int iwcm_init_qp_init_attr(struct iwcm_id_private *cm_id_priv,
935 struct ib_qp_attr *qp_attr,
936 int *qp_attr_mask)
938 unsigned long flags;
939 int ret;
941 spin_lock_irqsave(&cm_id_priv->lock, flags);
942 switch (cm_id_priv->state) {
943 case IW_CM_STATE_IDLE:
944 case IW_CM_STATE_CONN_SENT:
945 case IW_CM_STATE_CONN_RECV:
946 case IW_CM_STATE_ESTABLISHED:
947 *qp_attr_mask = IB_QP_STATE | IB_QP_ACCESS_FLAGS;
948 qp_attr->qp_access_flags = IB_ACCESS_REMOTE_WRITE|
949 IB_ACCESS_REMOTE_READ;
950 ret = 0;
951 break;
952 default:
953 ret = -EINVAL;
954 break;
956 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
957 return ret;
960 static int iwcm_init_qp_rts_attr(struct iwcm_id_private *cm_id_priv,
961 struct ib_qp_attr *qp_attr,
962 int *qp_attr_mask)
964 unsigned long flags;
965 int ret;
967 spin_lock_irqsave(&cm_id_priv->lock, flags);
968 switch (cm_id_priv->state) {
969 case IW_CM_STATE_IDLE:
970 case IW_CM_STATE_CONN_SENT:
971 case IW_CM_STATE_CONN_RECV:
972 case IW_CM_STATE_ESTABLISHED:
973 *qp_attr_mask = 0;
974 ret = 0;
975 break;
976 default:
977 ret = -EINVAL;
978 break;
980 spin_unlock_irqrestore(&cm_id_priv->lock, flags);
981 return ret;
984 int iw_cm_init_qp_attr(struct iw_cm_id *cm_id,
985 struct ib_qp_attr *qp_attr,
986 int *qp_attr_mask)
988 struct iwcm_id_private *cm_id_priv;
989 int ret;
991 cm_id_priv = container_of(cm_id, struct iwcm_id_private, id);
992 switch (qp_attr->qp_state) {
993 case IB_QPS_INIT:
994 case IB_QPS_RTR:
995 ret = iwcm_init_qp_init_attr(cm_id_priv,
996 qp_attr, qp_attr_mask);
997 break;
998 case IB_QPS_RTS:
999 ret = iwcm_init_qp_rts_attr(cm_id_priv,
1000 qp_attr, qp_attr_mask);
1001 break;
1002 default:
1003 ret = -EINVAL;
1004 break;
1006 return ret;
1008 EXPORT_SYMBOL(iw_cm_init_qp_attr);
1010 static int __init iw_cm_init(void)
1012 iwcm_wq = create_singlethread_workqueue("iw_cm_wq");
1013 if (!iwcm_wq)
1014 return -ENOMEM;
1016 return 0;
1019 static void __exit iw_cm_cleanup(void)
1021 destroy_workqueue(iwcm_wq);
1024 module_init(iw_cm_init);
1025 module_exit(iw_cm_cleanup);