2 * Copyright (c) 2004 Topspin Communications. All rights reserved.
3 * Copyright (c) 2005 Voltaire, Inc. All rights reserved.
4 * Copyright (c) 2006 Intel Corporation. All rights reserved.
6 * This software is available to you under a choice of one of two
7 * licenses. You may choose to be licensed under the terms of the GNU
8 * General Public License (GPL) Version 2, available from the file
9 * COPYING in the main directory of this source tree, or the
10 * OpenIB.org BSD license below:
12 * Redistribution and use in source and binary forms, with or
13 * without modification, are permitted provided that the following
16 * - Redistributions of source code must retain the above
17 * copyright notice, this list of conditions and the following
20 * - Redistributions in binary form must reproduce the above
21 * copyright notice, this list of conditions and the following
22 * disclaimer in the documentation and/or other materials
23 * provided with the distribution.
25 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
26 * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
27 * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
28 * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
29 * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
30 * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
31 * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
34 * $Id: sa_query.c 2811 2005-07-06 18:11:43Z halr $
37 #include <linux/module.h>
38 #include <linux/init.h>
39 #include <linux/err.h>
40 #include <linux/random.h>
41 #include <linux/spinlock.h>
42 #include <linux/slab.h>
43 #include <linux/pci.h>
44 #include <linux/dma-mapping.h>
45 #include <linux/kref.h>
46 #include <linux/idr.h>
47 #include <linux/workqueue.h>
49 #include <rdma/ib_pack.h>
50 #include <rdma/ib_cache.h>
53 MODULE_AUTHOR("Roland Dreier");
54 MODULE_DESCRIPTION("InfiniBand subnet administration query support");
55 MODULE_LICENSE("Dual BSD/GPL");
63 struct ib_mad_agent
*agent
;
64 struct ib_sa_sm_ah
*sm_ah
;
65 struct work_struct update_task
;
71 int start_port
, end_port
;
72 struct ib_event_handler event_handler
;
73 struct ib_sa_port port
[0];
77 void (*callback
)(struct ib_sa_query
*, int, struct ib_sa_mad
*);
78 void (*release
)(struct ib_sa_query
*);
79 struct ib_sa_client
*client
;
80 struct ib_sa_port
*port
;
81 struct ib_mad_send_buf
*mad_buf
;
82 struct ib_sa_sm_ah
*sm_ah
;
86 struct ib_sa_service_query
{
87 void (*callback
)(int, struct ib_sa_service_rec
*, void *);
89 struct ib_sa_query sa_query
;
92 struct ib_sa_path_query
{
93 void (*callback
)(int, struct ib_sa_path_rec
*, void *);
95 struct ib_sa_query sa_query
;
98 struct ib_sa_mcmember_query
{
99 void (*callback
)(int, struct ib_sa_mcmember_rec
*, void *);
101 struct ib_sa_query sa_query
;
104 static void ib_sa_add_one(struct ib_device
*device
);
105 static void ib_sa_remove_one(struct ib_device
*device
);
107 static struct ib_client sa_client
= {
109 .add
= ib_sa_add_one
,
110 .remove
= ib_sa_remove_one
113 static spinlock_t idr_lock
;
114 static DEFINE_IDR(query_idr
);
116 static spinlock_t tid_lock
;
119 #define PATH_REC_FIELD(field) \
120 .struct_offset_bytes = offsetof(struct ib_sa_path_rec, field), \
121 .struct_size_bytes = sizeof ((struct ib_sa_path_rec *) 0)->field, \
122 .field_name = "sa_path_rec:" #field
124 static const struct ib_field path_rec_table
[] = {
133 { PATH_REC_FIELD(dgid
),
137 { PATH_REC_FIELD(sgid
),
141 { PATH_REC_FIELD(dlid
),
145 { PATH_REC_FIELD(slid
),
149 { PATH_REC_FIELD(raw_traffic
),
157 { PATH_REC_FIELD(flow_label
),
161 { PATH_REC_FIELD(hop_limit
),
165 { PATH_REC_FIELD(traffic_class
),
169 { PATH_REC_FIELD(reversible
),
173 { PATH_REC_FIELD(numb_path
),
177 { PATH_REC_FIELD(pkey
),
185 { PATH_REC_FIELD(sl
),
189 { PATH_REC_FIELD(mtu_selector
),
193 { PATH_REC_FIELD(mtu
),
197 { PATH_REC_FIELD(rate_selector
),
201 { PATH_REC_FIELD(rate
),
205 { PATH_REC_FIELD(packet_life_time_selector
),
209 { PATH_REC_FIELD(packet_life_time
),
213 { PATH_REC_FIELD(preference
),
223 #define MCMEMBER_REC_FIELD(field) \
224 .struct_offset_bytes = offsetof(struct ib_sa_mcmember_rec, field), \
225 .struct_size_bytes = sizeof ((struct ib_sa_mcmember_rec *) 0)->field, \
226 .field_name = "sa_mcmember_rec:" #field
228 static const struct ib_field mcmember_rec_table
[] = {
229 { MCMEMBER_REC_FIELD(mgid
),
233 { MCMEMBER_REC_FIELD(port_gid
),
237 { MCMEMBER_REC_FIELD(qkey
),
241 { MCMEMBER_REC_FIELD(mlid
),
245 { MCMEMBER_REC_FIELD(mtu_selector
),
249 { MCMEMBER_REC_FIELD(mtu
),
253 { MCMEMBER_REC_FIELD(traffic_class
),
257 { MCMEMBER_REC_FIELD(pkey
),
261 { MCMEMBER_REC_FIELD(rate_selector
),
265 { MCMEMBER_REC_FIELD(rate
),
269 { MCMEMBER_REC_FIELD(packet_life_time_selector
),
273 { MCMEMBER_REC_FIELD(packet_life_time
),
277 { MCMEMBER_REC_FIELD(sl
),
281 { MCMEMBER_REC_FIELD(flow_label
),
285 { MCMEMBER_REC_FIELD(hop_limit
),
289 { MCMEMBER_REC_FIELD(scope
),
293 { MCMEMBER_REC_FIELD(join_state
),
297 { MCMEMBER_REC_FIELD(proxy_join
),
307 #define SERVICE_REC_FIELD(field) \
308 .struct_offset_bytes = offsetof(struct ib_sa_service_rec, field), \
309 .struct_size_bytes = sizeof ((struct ib_sa_service_rec *) 0)->field, \
310 .field_name = "sa_service_rec:" #field
312 static const struct ib_field service_rec_table
[] = {
313 { SERVICE_REC_FIELD(id
),
317 { SERVICE_REC_FIELD(gid
),
321 { SERVICE_REC_FIELD(pkey
),
325 { SERVICE_REC_FIELD(lease
),
329 { SERVICE_REC_FIELD(key
),
333 { SERVICE_REC_FIELD(name
),
337 { SERVICE_REC_FIELD(data8
),
341 { SERVICE_REC_FIELD(data16
),
345 { SERVICE_REC_FIELD(data32
),
349 { SERVICE_REC_FIELD(data64
),
355 static void free_sm_ah(struct kref
*kref
)
357 struct ib_sa_sm_ah
*sm_ah
= container_of(kref
, struct ib_sa_sm_ah
, ref
);
359 ib_destroy_ah(sm_ah
->ah
);
363 static void update_sm_ah(struct work_struct
*work
)
365 struct ib_sa_port
*port
=
366 container_of(work
, struct ib_sa_port
, update_task
);
367 struct ib_sa_sm_ah
*new_ah
, *old_ah
;
368 struct ib_port_attr port_attr
;
369 struct ib_ah_attr ah_attr
;
371 if (ib_query_port(port
->agent
->device
, port
->port_num
, &port_attr
)) {
372 printk(KERN_WARNING
"Couldn't query port\n");
376 new_ah
= kmalloc(sizeof *new_ah
, GFP_KERNEL
);
378 printk(KERN_WARNING
"Couldn't allocate new SM AH\n");
382 kref_init(&new_ah
->ref
);
384 memset(&ah_attr
, 0, sizeof ah_attr
);
385 ah_attr
.dlid
= port_attr
.sm_lid
;
386 ah_attr
.sl
= port_attr
.sm_sl
;
387 ah_attr
.port_num
= port
->port_num
;
389 new_ah
->ah
= ib_create_ah(port
->agent
->qp
->pd
, &ah_attr
);
390 if (IS_ERR(new_ah
->ah
)) {
391 printk(KERN_WARNING
"Couldn't create new SM AH\n");
396 spin_lock_irq(&port
->ah_lock
);
397 old_ah
= port
->sm_ah
;
398 port
->sm_ah
= new_ah
;
399 spin_unlock_irq(&port
->ah_lock
);
402 kref_put(&old_ah
->ref
, free_sm_ah
);
405 static void ib_sa_event(struct ib_event_handler
*handler
, struct ib_event
*event
)
407 if (event
->event
== IB_EVENT_PORT_ERR
||
408 event
->event
== IB_EVENT_PORT_ACTIVE
||
409 event
->event
== IB_EVENT_LID_CHANGE
||
410 event
->event
== IB_EVENT_PKEY_CHANGE
||
411 event
->event
== IB_EVENT_SM_CHANGE
||
412 event
->event
== IB_EVENT_CLIENT_REREGISTER
) {
413 struct ib_sa_device
*sa_dev
;
414 sa_dev
= container_of(handler
, typeof(*sa_dev
), event_handler
);
416 schedule_work(&sa_dev
->port
[event
->element
.port_num
-
417 sa_dev
->start_port
].update_task
);
421 void ib_sa_register_client(struct ib_sa_client
*client
)
423 atomic_set(&client
->users
, 1);
424 init_completion(&client
->comp
);
426 EXPORT_SYMBOL(ib_sa_register_client
);
428 void ib_sa_unregister_client(struct ib_sa_client
*client
)
430 ib_sa_client_put(client
);
431 wait_for_completion(&client
->comp
);
433 EXPORT_SYMBOL(ib_sa_unregister_client
);
436 * ib_sa_cancel_query - try to cancel an SA query
437 * @id:ID of query to cancel
438 * @query:query pointer to cancel
440 * Try to cancel an SA query. If the id and query don't match up or
441 * the query has already completed, nothing is done. Otherwise the
442 * query is canceled and will complete with a status of -EINTR.
444 void ib_sa_cancel_query(int id
, struct ib_sa_query
*query
)
447 struct ib_mad_agent
*agent
;
448 struct ib_mad_send_buf
*mad_buf
;
450 spin_lock_irqsave(&idr_lock
, flags
);
451 if (idr_find(&query_idr
, id
) != query
) {
452 spin_unlock_irqrestore(&idr_lock
, flags
);
455 agent
= query
->port
->agent
;
456 mad_buf
= query
->mad_buf
;
457 spin_unlock_irqrestore(&idr_lock
, flags
);
459 ib_cancel_mad(agent
, mad_buf
);
461 EXPORT_SYMBOL(ib_sa_cancel_query
);
463 int ib_init_ah_from_path(struct ib_device
*device
, u8 port_num
,
464 struct ib_sa_path_rec
*rec
, struct ib_ah_attr
*ah_attr
)
469 memset(ah_attr
, 0, sizeof *ah_attr
);
470 ah_attr
->dlid
= be16_to_cpu(rec
->dlid
);
471 ah_attr
->sl
= rec
->sl
;
472 ah_attr
->src_path_bits
= be16_to_cpu(rec
->slid
) & 0x7f;
473 ah_attr
->port_num
= port_num
;
474 ah_attr
->static_rate
= rec
->rate
;
476 if (rec
->hop_limit
> 1) {
477 ah_attr
->ah_flags
= IB_AH_GRH
;
478 ah_attr
->grh
.dgid
= rec
->dgid
;
480 ret
= ib_find_cached_gid(device
, &rec
->sgid
, &port_num
,
485 ah_attr
->grh
.sgid_index
= gid_index
;
486 ah_attr
->grh
.flow_label
= be32_to_cpu(rec
->flow_label
);
487 ah_attr
->grh
.hop_limit
= rec
->hop_limit
;
488 ah_attr
->grh
.traffic_class
= rec
->traffic_class
;
492 EXPORT_SYMBOL(ib_init_ah_from_path
);
494 static void init_mad(struct ib_sa_mad
*mad
, struct ib_mad_agent
*agent
)
498 memset(mad
, 0, sizeof *mad
);
500 mad
->mad_hdr
.base_version
= IB_MGMT_BASE_VERSION
;
501 mad
->mad_hdr
.mgmt_class
= IB_MGMT_CLASS_SUBN_ADM
;
502 mad
->mad_hdr
.class_version
= IB_SA_CLASS_VERSION
;
504 spin_lock_irqsave(&tid_lock
, flags
);
506 cpu_to_be64(((u64
) agent
->hi_tid
) << 32 | tid
++);
507 spin_unlock_irqrestore(&tid_lock
, flags
);
510 static int send_mad(struct ib_sa_query
*query
, int timeout_ms
, gfp_t gfp_mask
)
516 if (!idr_pre_get(&query_idr
, gfp_mask
))
518 spin_lock_irqsave(&idr_lock
, flags
);
519 ret
= idr_get_new(&query_idr
, query
, &id
);
520 spin_unlock_irqrestore(&idr_lock
, flags
);
526 query
->mad_buf
->timeout_ms
= timeout_ms
;
527 query
->mad_buf
->context
[0] = query
;
530 spin_lock_irqsave(&query
->port
->ah_lock
, flags
);
531 kref_get(&query
->port
->sm_ah
->ref
);
532 query
->sm_ah
= query
->port
->sm_ah
;
533 spin_unlock_irqrestore(&query
->port
->ah_lock
, flags
);
535 query
->mad_buf
->ah
= query
->sm_ah
->ah
;
537 ret
= ib_post_send_mad(query
->mad_buf
, NULL
);
539 spin_lock_irqsave(&idr_lock
, flags
);
540 idr_remove(&query_idr
, id
);
541 spin_unlock_irqrestore(&idr_lock
, flags
);
543 kref_put(&query
->sm_ah
->ref
, free_sm_ah
);
547 * It's not safe to dereference query any more, because the
548 * send may already have completed and freed the query in
551 return ret
? ret
: id
;
554 static void ib_sa_path_rec_callback(struct ib_sa_query
*sa_query
,
556 struct ib_sa_mad
*mad
)
558 struct ib_sa_path_query
*query
=
559 container_of(sa_query
, struct ib_sa_path_query
, sa_query
);
562 struct ib_sa_path_rec rec
;
564 ib_unpack(path_rec_table
, ARRAY_SIZE(path_rec_table
),
566 query
->callback(status
, &rec
, query
->context
);
568 query
->callback(status
, NULL
, query
->context
);
571 static void ib_sa_path_rec_release(struct ib_sa_query
*sa_query
)
573 kfree(container_of(sa_query
, struct ib_sa_path_query
, sa_query
));
577 * ib_sa_path_rec_get - Start a Path get query
579 * @device:device to send query on
580 * @port_num: port number to send query on
581 * @rec:Path Record to send in query
582 * @comp_mask:component mask to send in query
583 * @timeout_ms:time to wait for response
584 * @gfp_mask:GFP mask to use for internal allocations
585 * @callback:function called when query completes, times out or is
587 * @context:opaque user context passed to callback
588 * @sa_query:query context, used to cancel query
590 * Send a Path Record Get query to the SA to look up a path. The
591 * callback function will be called when the query completes (or
592 * fails); status is 0 for a successful response, -EINTR if the query
593 * is canceled, -ETIMEDOUT is the query timed out, or -EIO if an error
594 * occurred sending the query. The resp parameter of the callback is
595 * only valid if status is 0.
597 * If the return value of ib_sa_path_rec_get() is negative, it is an
598 * error code. Otherwise it is a query ID that can be used to cancel
601 int ib_sa_path_rec_get(struct ib_sa_client
*client
,
602 struct ib_device
*device
, u8 port_num
,
603 struct ib_sa_path_rec
*rec
,
604 ib_sa_comp_mask comp_mask
,
605 int timeout_ms
, gfp_t gfp_mask
,
606 void (*callback
)(int status
,
607 struct ib_sa_path_rec
*resp
,
610 struct ib_sa_query
**sa_query
)
612 struct ib_sa_path_query
*query
;
613 struct ib_sa_device
*sa_dev
= ib_get_client_data(device
, &sa_client
);
614 struct ib_sa_port
*port
;
615 struct ib_mad_agent
*agent
;
616 struct ib_sa_mad
*mad
;
622 port
= &sa_dev
->port
[port_num
- sa_dev
->start_port
];
625 query
= kmalloc(sizeof *query
, gfp_mask
);
629 query
->sa_query
.mad_buf
= ib_create_send_mad(agent
, 1, 0,
631 IB_MGMT_SA_DATA
, gfp_mask
);
632 if (!query
->sa_query
.mad_buf
) {
637 ib_sa_client_get(client
);
638 query
->sa_query
.client
= client
;
639 query
->callback
= callback
;
640 query
->context
= context
;
642 mad
= query
->sa_query
.mad_buf
->mad
;
643 init_mad(mad
, agent
);
645 query
->sa_query
.callback
= callback
? ib_sa_path_rec_callback
: NULL
;
646 query
->sa_query
.release
= ib_sa_path_rec_release
;
647 query
->sa_query
.port
= port
;
648 mad
->mad_hdr
.method
= IB_MGMT_METHOD_GET
;
649 mad
->mad_hdr
.attr_id
= cpu_to_be16(IB_SA_ATTR_PATH_REC
);
650 mad
->sa_hdr
.comp_mask
= comp_mask
;
652 ib_pack(path_rec_table
, ARRAY_SIZE(path_rec_table
), rec
, mad
->data
);
654 *sa_query
= &query
->sa_query
;
656 ret
= send_mad(&query
->sa_query
, timeout_ms
, gfp_mask
);
664 ib_sa_client_put(query
->sa_query
.client
);
665 ib_free_send_mad(query
->sa_query
.mad_buf
);
671 EXPORT_SYMBOL(ib_sa_path_rec_get
);
673 static void ib_sa_service_rec_callback(struct ib_sa_query
*sa_query
,
675 struct ib_sa_mad
*mad
)
677 struct ib_sa_service_query
*query
=
678 container_of(sa_query
, struct ib_sa_service_query
, sa_query
);
681 struct ib_sa_service_rec rec
;
683 ib_unpack(service_rec_table
, ARRAY_SIZE(service_rec_table
),
685 query
->callback(status
, &rec
, query
->context
);
687 query
->callback(status
, NULL
, query
->context
);
690 static void ib_sa_service_rec_release(struct ib_sa_query
*sa_query
)
692 kfree(container_of(sa_query
, struct ib_sa_service_query
, sa_query
));
696 * ib_sa_service_rec_query - Start Service Record operation
698 * @device:device to send request on
699 * @port_num: port number to send request on
700 * @method:SA method - should be get, set, or delete
701 * @rec:Service Record to send in request
702 * @comp_mask:component mask to send in request
703 * @timeout_ms:time to wait for response
704 * @gfp_mask:GFP mask to use for internal allocations
705 * @callback:function called when request completes, times out or is
707 * @context:opaque user context passed to callback
708 * @sa_query:request context, used to cancel request
710 * Send a Service Record set/get/delete to the SA to register,
711 * unregister or query a service record.
712 * The callback function will be called when the request completes (or
713 * fails); status is 0 for a successful response, -EINTR if the query
714 * is canceled, -ETIMEDOUT is the query timed out, or -EIO if an error
715 * occurred sending the query. The resp parameter of the callback is
716 * only valid if status is 0.
718 * If the return value of ib_sa_service_rec_query() is negative, it is an
719 * error code. Otherwise it is a request ID that can be used to cancel
722 int ib_sa_service_rec_query(struct ib_sa_client
*client
,
723 struct ib_device
*device
, u8 port_num
, u8 method
,
724 struct ib_sa_service_rec
*rec
,
725 ib_sa_comp_mask comp_mask
,
726 int timeout_ms
, gfp_t gfp_mask
,
727 void (*callback
)(int status
,
728 struct ib_sa_service_rec
*resp
,
731 struct ib_sa_query
**sa_query
)
733 struct ib_sa_service_query
*query
;
734 struct ib_sa_device
*sa_dev
= ib_get_client_data(device
, &sa_client
);
735 struct ib_sa_port
*port
;
736 struct ib_mad_agent
*agent
;
737 struct ib_sa_mad
*mad
;
743 port
= &sa_dev
->port
[port_num
- sa_dev
->start_port
];
746 if (method
!= IB_MGMT_METHOD_GET
&&
747 method
!= IB_MGMT_METHOD_SET
&&
748 method
!= IB_SA_METHOD_DELETE
)
751 query
= kmalloc(sizeof *query
, gfp_mask
);
755 query
->sa_query
.mad_buf
= ib_create_send_mad(agent
, 1, 0,
757 IB_MGMT_SA_DATA
, gfp_mask
);
758 if (!query
->sa_query
.mad_buf
) {
763 ib_sa_client_get(client
);
764 query
->sa_query
.client
= client
;
765 query
->callback
= callback
;
766 query
->context
= context
;
768 mad
= query
->sa_query
.mad_buf
->mad
;
769 init_mad(mad
, agent
);
771 query
->sa_query
.callback
= callback
? ib_sa_service_rec_callback
: NULL
;
772 query
->sa_query
.release
= ib_sa_service_rec_release
;
773 query
->sa_query
.port
= port
;
774 mad
->mad_hdr
.method
= method
;
775 mad
->mad_hdr
.attr_id
= cpu_to_be16(IB_SA_ATTR_SERVICE_REC
);
776 mad
->sa_hdr
.comp_mask
= comp_mask
;
778 ib_pack(service_rec_table
, ARRAY_SIZE(service_rec_table
),
781 *sa_query
= &query
->sa_query
;
783 ret
= send_mad(&query
->sa_query
, timeout_ms
, gfp_mask
);
791 ib_sa_client_put(query
->sa_query
.client
);
792 ib_free_send_mad(query
->sa_query
.mad_buf
);
798 EXPORT_SYMBOL(ib_sa_service_rec_query
);
800 static void ib_sa_mcmember_rec_callback(struct ib_sa_query
*sa_query
,
802 struct ib_sa_mad
*mad
)
804 struct ib_sa_mcmember_query
*query
=
805 container_of(sa_query
, struct ib_sa_mcmember_query
, sa_query
);
808 struct ib_sa_mcmember_rec rec
;
810 ib_unpack(mcmember_rec_table
, ARRAY_SIZE(mcmember_rec_table
),
812 query
->callback(status
, &rec
, query
->context
);
814 query
->callback(status
, NULL
, query
->context
);
817 static void ib_sa_mcmember_rec_release(struct ib_sa_query
*sa_query
)
819 kfree(container_of(sa_query
, struct ib_sa_mcmember_query
, sa_query
));
822 int ib_sa_mcmember_rec_query(struct ib_sa_client
*client
,
823 struct ib_device
*device
, u8 port_num
,
825 struct ib_sa_mcmember_rec
*rec
,
826 ib_sa_comp_mask comp_mask
,
827 int timeout_ms
, gfp_t gfp_mask
,
828 void (*callback
)(int status
,
829 struct ib_sa_mcmember_rec
*resp
,
832 struct ib_sa_query
**sa_query
)
834 struct ib_sa_mcmember_query
*query
;
835 struct ib_sa_device
*sa_dev
= ib_get_client_data(device
, &sa_client
);
836 struct ib_sa_port
*port
;
837 struct ib_mad_agent
*agent
;
838 struct ib_sa_mad
*mad
;
844 port
= &sa_dev
->port
[port_num
- sa_dev
->start_port
];
847 query
= kmalloc(sizeof *query
, gfp_mask
);
851 query
->sa_query
.mad_buf
= ib_create_send_mad(agent
, 1, 0,
853 IB_MGMT_SA_DATA
, gfp_mask
);
854 if (!query
->sa_query
.mad_buf
) {
859 ib_sa_client_get(client
);
860 query
->sa_query
.client
= client
;
861 query
->callback
= callback
;
862 query
->context
= context
;
864 mad
= query
->sa_query
.mad_buf
->mad
;
865 init_mad(mad
, agent
);
867 query
->sa_query
.callback
= callback
? ib_sa_mcmember_rec_callback
: NULL
;
868 query
->sa_query
.release
= ib_sa_mcmember_rec_release
;
869 query
->sa_query
.port
= port
;
870 mad
->mad_hdr
.method
= method
;
871 mad
->mad_hdr
.attr_id
= cpu_to_be16(IB_SA_ATTR_MC_MEMBER_REC
);
872 mad
->sa_hdr
.comp_mask
= comp_mask
;
874 ib_pack(mcmember_rec_table
, ARRAY_SIZE(mcmember_rec_table
),
877 *sa_query
= &query
->sa_query
;
879 ret
= send_mad(&query
->sa_query
, timeout_ms
, gfp_mask
);
887 ib_sa_client_put(query
->sa_query
.client
);
888 ib_free_send_mad(query
->sa_query
.mad_buf
);
895 static void send_handler(struct ib_mad_agent
*agent
,
896 struct ib_mad_send_wc
*mad_send_wc
)
898 struct ib_sa_query
*query
= mad_send_wc
->send_buf
->context
[0];
902 switch (mad_send_wc
->status
) {
904 /* No callback -- already got recv */
906 case IB_WC_RESP_TIMEOUT_ERR
:
907 query
->callback(query
, -ETIMEDOUT
, NULL
);
909 case IB_WC_WR_FLUSH_ERR
:
910 query
->callback(query
, -EINTR
, NULL
);
913 query
->callback(query
, -EIO
, NULL
);
917 spin_lock_irqsave(&idr_lock
, flags
);
918 idr_remove(&query_idr
, query
->id
);
919 spin_unlock_irqrestore(&idr_lock
, flags
);
921 ib_free_send_mad(mad_send_wc
->send_buf
);
922 kref_put(&query
->sm_ah
->ref
, free_sm_ah
);
923 ib_sa_client_put(query
->client
);
924 query
->release(query
);
927 static void recv_handler(struct ib_mad_agent
*mad_agent
,
928 struct ib_mad_recv_wc
*mad_recv_wc
)
930 struct ib_sa_query
*query
;
931 struct ib_mad_send_buf
*mad_buf
;
933 mad_buf
= (void *) (unsigned long) mad_recv_wc
->wc
->wr_id
;
934 query
= mad_buf
->context
[0];
936 if (query
->callback
) {
937 if (mad_recv_wc
->wc
->status
== IB_WC_SUCCESS
)
938 query
->callback(query
,
939 mad_recv_wc
->recv_buf
.mad
->mad_hdr
.status
?
941 (struct ib_sa_mad
*) mad_recv_wc
->recv_buf
.mad
);
943 query
->callback(query
, -EIO
, NULL
);
946 ib_free_recv_mad(mad_recv_wc
);
949 static void ib_sa_add_one(struct ib_device
*device
)
951 struct ib_sa_device
*sa_dev
;
954 if (rdma_node_get_transport(device
->node_type
) != RDMA_TRANSPORT_IB
)
957 if (device
->node_type
== RDMA_NODE_IB_SWITCH
)
961 e
= device
->phys_port_cnt
;
964 sa_dev
= kmalloc(sizeof *sa_dev
+
965 (e
- s
+ 1) * sizeof (struct ib_sa_port
),
970 sa_dev
->start_port
= s
;
971 sa_dev
->end_port
= e
;
973 for (i
= 0; i
<= e
- s
; ++i
) {
974 sa_dev
->port
[i
].sm_ah
= NULL
;
975 sa_dev
->port
[i
].port_num
= i
+ s
;
976 spin_lock_init(&sa_dev
->port
[i
].ah_lock
);
978 sa_dev
->port
[i
].agent
=
979 ib_register_mad_agent(device
, i
+ s
, IB_QPT_GSI
,
980 NULL
, 0, send_handler
,
981 recv_handler
, sa_dev
);
982 if (IS_ERR(sa_dev
->port
[i
].agent
))
985 INIT_WORK(&sa_dev
->port
[i
].update_task
, update_sm_ah
);
988 ib_set_client_data(device
, &sa_client
, sa_dev
);
991 * We register our event handler after everything is set up,
992 * and then update our cached info after the event handler is
993 * registered to avoid any problems if a port changes state
994 * during our initialization.
997 INIT_IB_EVENT_HANDLER(&sa_dev
->event_handler
, device
, ib_sa_event
);
998 if (ib_register_event_handler(&sa_dev
->event_handler
))
1001 for (i
= 0; i
<= e
- s
; ++i
)
1002 update_sm_ah(&sa_dev
->port
[i
].update_task
);
1008 ib_unregister_mad_agent(sa_dev
->port
[i
].agent
);
1015 static void ib_sa_remove_one(struct ib_device
*device
)
1017 struct ib_sa_device
*sa_dev
= ib_get_client_data(device
, &sa_client
);
1023 ib_unregister_event_handler(&sa_dev
->event_handler
);
1025 flush_scheduled_work();
1027 for (i
= 0; i
<= sa_dev
->end_port
- sa_dev
->start_port
; ++i
) {
1028 ib_unregister_mad_agent(sa_dev
->port
[i
].agent
);
1029 kref_put(&sa_dev
->port
[i
].sm_ah
->ref
, free_sm_ah
);
1035 static int __init
ib_sa_init(void)
1039 spin_lock_init(&idr_lock
);
1040 spin_lock_init(&tid_lock
);
1042 get_random_bytes(&tid
, sizeof tid
);
1044 ret
= ib_register_client(&sa_client
);
1046 printk(KERN_ERR
"Couldn't register ib_sa client\n");
1052 printk(KERN_ERR
"Couldn't initialize multicast handling\n");
1058 ib_unregister_client(&sa_client
);
1063 static void __exit
ib_sa_cleanup(void)
1066 ib_unregister_client(&sa_client
);
1067 idr_destroy(&query_idr
);
1070 module_init(ib_sa_init
);
1071 module_exit(ib_sa_cleanup
);