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/dma-mapping.h>
44 #include <linux/kref.h>
45 #include <linux/idr.h>
46 #include <linux/workqueue.h>
48 #include <rdma/ib_pack.h>
49 #include <rdma/ib_cache.h>
52 MODULE_AUTHOR("Roland Dreier");
53 MODULE_DESCRIPTION("InfiniBand subnet administration query support");
54 MODULE_LICENSE("Dual BSD/GPL");
64 struct ib_mad_agent
*agent
;
65 struct ib_sa_sm_ah
*sm_ah
;
66 struct work_struct update_task
;
72 int start_port
, end_port
;
73 struct ib_event_handler event_handler
;
74 struct ib_sa_port port
[0];
78 void (*callback
)(struct ib_sa_query
*, int, struct ib_sa_mad
*);
79 void (*release
)(struct ib_sa_query
*);
80 struct ib_sa_client
*client
;
81 struct ib_sa_port
*port
;
82 struct ib_mad_send_buf
*mad_buf
;
83 struct ib_sa_sm_ah
*sm_ah
;
87 struct ib_sa_service_query
{
88 void (*callback
)(int, struct ib_sa_service_rec
*, void *);
90 struct ib_sa_query sa_query
;
93 struct ib_sa_path_query
{
94 void (*callback
)(int, struct ib_sa_path_rec
*, void *);
96 struct ib_sa_query sa_query
;
99 struct ib_sa_mcmember_query
{
100 void (*callback
)(int, struct ib_sa_mcmember_rec
*, void *);
102 struct ib_sa_query sa_query
;
105 static void ib_sa_add_one(struct ib_device
*device
);
106 static void ib_sa_remove_one(struct ib_device
*device
);
108 static struct ib_client sa_client
= {
110 .add
= ib_sa_add_one
,
111 .remove
= ib_sa_remove_one
114 static spinlock_t idr_lock
;
115 static DEFINE_IDR(query_idr
);
117 static spinlock_t tid_lock
;
120 #define PATH_REC_FIELD(field) \
121 .struct_offset_bytes = offsetof(struct ib_sa_path_rec, field), \
122 .struct_size_bytes = sizeof ((struct ib_sa_path_rec *) 0)->field, \
123 .field_name = "sa_path_rec:" #field
125 static const struct ib_field path_rec_table
[] = {
134 { PATH_REC_FIELD(dgid
),
138 { PATH_REC_FIELD(sgid
),
142 { PATH_REC_FIELD(dlid
),
146 { PATH_REC_FIELD(slid
),
150 { PATH_REC_FIELD(raw_traffic
),
158 { PATH_REC_FIELD(flow_label
),
162 { PATH_REC_FIELD(hop_limit
),
166 { PATH_REC_FIELD(traffic_class
),
170 { PATH_REC_FIELD(reversible
),
174 { PATH_REC_FIELD(numb_path
),
178 { PATH_REC_FIELD(pkey
),
186 { PATH_REC_FIELD(sl
),
190 { PATH_REC_FIELD(mtu_selector
),
194 { PATH_REC_FIELD(mtu
),
198 { PATH_REC_FIELD(rate_selector
),
202 { PATH_REC_FIELD(rate
),
206 { PATH_REC_FIELD(packet_life_time_selector
),
210 { PATH_REC_FIELD(packet_life_time
),
214 { PATH_REC_FIELD(preference
),
224 #define MCMEMBER_REC_FIELD(field) \
225 .struct_offset_bytes = offsetof(struct ib_sa_mcmember_rec, field), \
226 .struct_size_bytes = sizeof ((struct ib_sa_mcmember_rec *) 0)->field, \
227 .field_name = "sa_mcmember_rec:" #field
229 static const struct ib_field mcmember_rec_table
[] = {
230 { MCMEMBER_REC_FIELD(mgid
),
234 { MCMEMBER_REC_FIELD(port_gid
),
238 { MCMEMBER_REC_FIELD(qkey
),
242 { MCMEMBER_REC_FIELD(mlid
),
246 { MCMEMBER_REC_FIELD(mtu_selector
),
250 { MCMEMBER_REC_FIELD(mtu
),
254 { MCMEMBER_REC_FIELD(traffic_class
),
258 { MCMEMBER_REC_FIELD(pkey
),
262 { MCMEMBER_REC_FIELD(rate_selector
),
266 { MCMEMBER_REC_FIELD(rate
),
270 { MCMEMBER_REC_FIELD(packet_life_time_selector
),
274 { MCMEMBER_REC_FIELD(packet_life_time
),
278 { MCMEMBER_REC_FIELD(sl
),
282 { MCMEMBER_REC_FIELD(flow_label
),
286 { MCMEMBER_REC_FIELD(hop_limit
),
290 { MCMEMBER_REC_FIELD(scope
),
294 { MCMEMBER_REC_FIELD(join_state
),
298 { MCMEMBER_REC_FIELD(proxy_join
),
308 #define SERVICE_REC_FIELD(field) \
309 .struct_offset_bytes = offsetof(struct ib_sa_service_rec, field), \
310 .struct_size_bytes = sizeof ((struct ib_sa_service_rec *) 0)->field, \
311 .field_name = "sa_service_rec:" #field
313 static const struct ib_field service_rec_table
[] = {
314 { SERVICE_REC_FIELD(id
),
318 { SERVICE_REC_FIELD(gid
),
322 { SERVICE_REC_FIELD(pkey
),
326 { SERVICE_REC_FIELD(lease
),
330 { SERVICE_REC_FIELD(key
),
334 { SERVICE_REC_FIELD(name
),
338 { SERVICE_REC_FIELD(data8
),
342 { SERVICE_REC_FIELD(data16
),
346 { SERVICE_REC_FIELD(data32
),
350 { SERVICE_REC_FIELD(data64
),
356 static void free_sm_ah(struct kref
*kref
)
358 struct ib_sa_sm_ah
*sm_ah
= container_of(kref
, struct ib_sa_sm_ah
, ref
);
360 ib_destroy_ah(sm_ah
->ah
);
364 static void update_sm_ah(struct work_struct
*work
)
366 struct ib_sa_port
*port
=
367 container_of(work
, struct ib_sa_port
, update_task
);
368 struct ib_sa_sm_ah
*new_ah
, *old_ah
;
369 struct ib_port_attr port_attr
;
370 struct ib_ah_attr ah_attr
;
372 if (ib_query_port(port
->agent
->device
, port
->port_num
, &port_attr
)) {
373 printk(KERN_WARNING
"Couldn't query port\n");
377 new_ah
= kmalloc(sizeof *new_ah
, GFP_KERNEL
);
379 printk(KERN_WARNING
"Couldn't allocate new SM AH\n");
383 kref_init(&new_ah
->ref
);
384 new_ah
->src_path_mask
= (1 << port_attr
.lmc
) - 1;
386 new_ah
->pkey_index
= 0;
387 if (ib_find_pkey(port
->agent
->device
, port
->port_num
,
388 IB_DEFAULT_PKEY_FULL
, &new_ah
->pkey_index
) &&
389 ib_find_pkey(port
->agent
->device
, port
->port_num
,
390 IB_DEFAULT_PKEY_PARTIAL
, &new_ah
->pkey_index
))
391 printk(KERN_ERR
"Couldn't find index for default PKey\n");
393 memset(&ah_attr
, 0, sizeof ah_attr
);
394 ah_attr
.dlid
= port_attr
.sm_lid
;
395 ah_attr
.sl
= port_attr
.sm_sl
;
396 ah_attr
.port_num
= port
->port_num
;
398 new_ah
->ah
= ib_create_ah(port
->agent
->qp
->pd
, &ah_attr
);
399 if (IS_ERR(new_ah
->ah
)) {
400 printk(KERN_WARNING
"Couldn't create new SM AH\n");
405 spin_lock_irq(&port
->ah_lock
);
406 old_ah
= port
->sm_ah
;
407 port
->sm_ah
= new_ah
;
408 spin_unlock_irq(&port
->ah_lock
);
411 kref_put(&old_ah
->ref
, free_sm_ah
);
414 static void ib_sa_event(struct ib_event_handler
*handler
, struct ib_event
*event
)
416 if (event
->event
== IB_EVENT_PORT_ERR
||
417 event
->event
== IB_EVENT_PORT_ACTIVE
||
418 event
->event
== IB_EVENT_LID_CHANGE
||
419 event
->event
== IB_EVENT_PKEY_CHANGE
||
420 event
->event
== IB_EVENT_SM_CHANGE
||
421 event
->event
== IB_EVENT_CLIENT_REREGISTER
) {
422 struct ib_sa_device
*sa_dev
;
423 sa_dev
= container_of(handler
, typeof(*sa_dev
), event_handler
);
425 schedule_work(&sa_dev
->port
[event
->element
.port_num
-
426 sa_dev
->start_port
].update_task
);
430 void ib_sa_register_client(struct ib_sa_client
*client
)
432 atomic_set(&client
->users
, 1);
433 init_completion(&client
->comp
);
435 EXPORT_SYMBOL(ib_sa_register_client
);
437 void ib_sa_unregister_client(struct ib_sa_client
*client
)
439 ib_sa_client_put(client
);
440 wait_for_completion(&client
->comp
);
442 EXPORT_SYMBOL(ib_sa_unregister_client
);
445 * ib_sa_cancel_query - try to cancel an SA query
446 * @id:ID of query to cancel
447 * @query:query pointer to cancel
449 * Try to cancel an SA query. If the id and query don't match up or
450 * the query has already completed, nothing is done. Otherwise the
451 * query is canceled and will complete with a status of -EINTR.
453 void ib_sa_cancel_query(int id
, struct ib_sa_query
*query
)
456 struct ib_mad_agent
*agent
;
457 struct ib_mad_send_buf
*mad_buf
;
459 spin_lock_irqsave(&idr_lock
, flags
);
460 if (idr_find(&query_idr
, id
) != query
) {
461 spin_unlock_irqrestore(&idr_lock
, flags
);
464 agent
= query
->port
->agent
;
465 mad_buf
= query
->mad_buf
;
466 spin_unlock_irqrestore(&idr_lock
, flags
);
468 ib_cancel_mad(agent
, mad_buf
);
470 EXPORT_SYMBOL(ib_sa_cancel_query
);
472 static u8
get_src_path_mask(struct ib_device
*device
, u8 port_num
)
474 struct ib_sa_device
*sa_dev
;
475 struct ib_sa_port
*port
;
479 sa_dev
= ib_get_client_data(device
, &sa_client
);
483 port
= &sa_dev
->port
[port_num
- sa_dev
->start_port
];
484 spin_lock_irqsave(&port
->ah_lock
, flags
);
485 src_path_mask
= port
->sm_ah
? port
->sm_ah
->src_path_mask
: 0x7f;
486 spin_unlock_irqrestore(&port
->ah_lock
, flags
);
488 return src_path_mask
;
491 int ib_init_ah_from_path(struct ib_device
*device
, u8 port_num
,
492 struct ib_sa_path_rec
*rec
, struct ib_ah_attr
*ah_attr
)
497 memset(ah_attr
, 0, sizeof *ah_attr
);
498 ah_attr
->dlid
= be16_to_cpu(rec
->dlid
);
499 ah_attr
->sl
= rec
->sl
;
500 ah_attr
->src_path_bits
= be16_to_cpu(rec
->slid
) &
501 get_src_path_mask(device
, port_num
);
502 ah_attr
->port_num
= port_num
;
503 ah_attr
->static_rate
= rec
->rate
;
505 if (rec
->hop_limit
> 1) {
506 ah_attr
->ah_flags
= IB_AH_GRH
;
507 ah_attr
->grh
.dgid
= rec
->dgid
;
509 ret
= ib_find_cached_gid(device
, &rec
->sgid
, &port_num
,
514 ah_attr
->grh
.sgid_index
= gid_index
;
515 ah_attr
->grh
.flow_label
= be32_to_cpu(rec
->flow_label
);
516 ah_attr
->grh
.hop_limit
= rec
->hop_limit
;
517 ah_attr
->grh
.traffic_class
= rec
->traffic_class
;
521 EXPORT_SYMBOL(ib_init_ah_from_path
);
523 static int alloc_mad(struct ib_sa_query
*query
, gfp_t gfp_mask
)
527 spin_lock_irqsave(&query
->port
->ah_lock
, flags
);
528 kref_get(&query
->port
->sm_ah
->ref
);
529 query
->sm_ah
= query
->port
->sm_ah
;
530 spin_unlock_irqrestore(&query
->port
->ah_lock
, flags
);
532 query
->mad_buf
= ib_create_send_mad(query
->port
->agent
, 1,
533 query
->sm_ah
->pkey_index
,
534 0, IB_MGMT_SA_HDR
, IB_MGMT_SA_DATA
,
536 if (!query
->mad_buf
) {
537 kref_put(&query
->sm_ah
->ref
, free_sm_ah
);
541 query
->mad_buf
->ah
= query
->sm_ah
->ah
;
546 static void free_mad(struct ib_sa_query
*query
)
548 ib_free_send_mad(query
->mad_buf
);
549 kref_put(&query
->sm_ah
->ref
, free_sm_ah
);
552 static void init_mad(struct ib_sa_mad
*mad
, struct ib_mad_agent
*agent
)
556 memset(mad
, 0, sizeof *mad
);
558 mad
->mad_hdr
.base_version
= IB_MGMT_BASE_VERSION
;
559 mad
->mad_hdr
.mgmt_class
= IB_MGMT_CLASS_SUBN_ADM
;
560 mad
->mad_hdr
.class_version
= IB_SA_CLASS_VERSION
;
562 spin_lock_irqsave(&tid_lock
, flags
);
564 cpu_to_be64(((u64
) agent
->hi_tid
) << 32 | tid
++);
565 spin_unlock_irqrestore(&tid_lock
, flags
);
568 static int send_mad(struct ib_sa_query
*query
, int timeout_ms
, gfp_t gfp_mask
)
574 if (!idr_pre_get(&query_idr
, gfp_mask
))
576 spin_lock_irqsave(&idr_lock
, flags
);
577 ret
= idr_get_new(&query_idr
, query
, &id
);
578 spin_unlock_irqrestore(&idr_lock
, flags
);
584 query
->mad_buf
->timeout_ms
= timeout_ms
;
585 query
->mad_buf
->context
[0] = query
;
588 ret
= ib_post_send_mad(query
->mad_buf
, NULL
);
590 spin_lock_irqsave(&idr_lock
, flags
);
591 idr_remove(&query_idr
, id
);
592 spin_unlock_irqrestore(&idr_lock
, flags
);
596 * It's not safe to dereference query any more, because the
597 * send may already have completed and freed the query in
600 return ret
? ret
: id
;
603 static void ib_sa_path_rec_callback(struct ib_sa_query
*sa_query
,
605 struct ib_sa_mad
*mad
)
607 struct ib_sa_path_query
*query
=
608 container_of(sa_query
, struct ib_sa_path_query
, sa_query
);
611 struct ib_sa_path_rec rec
;
613 ib_unpack(path_rec_table
, ARRAY_SIZE(path_rec_table
),
615 query
->callback(status
, &rec
, query
->context
);
617 query
->callback(status
, NULL
, query
->context
);
620 static void ib_sa_path_rec_release(struct ib_sa_query
*sa_query
)
622 kfree(container_of(sa_query
, struct ib_sa_path_query
, sa_query
));
626 * ib_sa_path_rec_get - Start a Path get query
628 * @device:device to send query on
629 * @port_num: port number to send query on
630 * @rec:Path Record to send in query
631 * @comp_mask:component mask to send in query
632 * @timeout_ms:time to wait for response
633 * @gfp_mask:GFP mask to use for internal allocations
634 * @callback:function called when query completes, times out or is
636 * @context:opaque user context passed to callback
637 * @sa_query:query context, used to cancel query
639 * Send a Path Record Get query to the SA to look up a path. The
640 * callback function will be called when the query completes (or
641 * fails); status is 0 for a successful response, -EINTR if the query
642 * is canceled, -ETIMEDOUT is the query timed out, or -EIO if an error
643 * occurred sending the query. The resp parameter of the callback is
644 * only valid if status is 0.
646 * If the return value of ib_sa_path_rec_get() is negative, it is an
647 * error code. Otherwise it is a query ID that can be used to cancel
650 int ib_sa_path_rec_get(struct ib_sa_client
*client
,
651 struct ib_device
*device
, u8 port_num
,
652 struct ib_sa_path_rec
*rec
,
653 ib_sa_comp_mask comp_mask
,
654 int timeout_ms
, gfp_t gfp_mask
,
655 void (*callback
)(int status
,
656 struct ib_sa_path_rec
*resp
,
659 struct ib_sa_query
**sa_query
)
661 struct ib_sa_path_query
*query
;
662 struct ib_sa_device
*sa_dev
= ib_get_client_data(device
, &sa_client
);
663 struct ib_sa_port
*port
;
664 struct ib_mad_agent
*agent
;
665 struct ib_sa_mad
*mad
;
671 port
= &sa_dev
->port
[port_num
- sa_dev
->start_port
];
674 query
= kmalloc(sizeof *query
, gfp_mask
);
678 query
->sa_query
.port
= port
;
679 ret
= alloc_mad(&query
->sa_query
, gfp_mask
);
683 ib_sa_client_get(client
);
684 query
->sa_query
.client
= client
;
685 query
->callback
= callback
;
686 query
->context
= context
;
688 mad
= query
->sa_query
.mad_buf
->mad
;
689 init_mad(mad
, agent
);
691 query
->sa_query
.callback
= callback
? ib_sa_path_rec_callback
: NULL
;
692 query
->sa_query
.release
= ib_sa_path_rec_release
;
693 mad
->mad_hdr
.method
= IB_MGMT_METHOD_GET
;
694 mad
->mad_hdr
.attr_id
= cpu_to_be16(IB_SA_ATTR_PATH_REC
);
695 mad
->sa_hdr
.comp_mask
= comp_mask
;
697 ib_pack(path_rec_table
, ARRAY_SIZE(path_rec_table
), rec
, mad
->data
);
699 *sa_query
= &query
->sa_query
;
701 ret
= send_mad(&query
->sa_query
, timeout_ms
, gfp_mask
);
709 ib_sa_client_put(query
->sa_query
.client
);
710 free_mad(&query
->sa_query
);
716 EXPORT_SYMBOL(ib_sa_path_rec_get
);
718 static void ib_sa_service_rec_callback(struct ib_sa_query
*sa_query
,
720 struct ib_sa_mad
*mad
)
722 struct ib_sa_service_query
*query
=
723 container_of(sa_query
, struct ib_sa_service_query
, sa_query
);
726 struct ib_sa_service_rec rec
;
728 ib_unpack(service_rec_table
, ARRAY_SIZE(service_rec_table
),
730 query
->callback(status
, &rec
, query
->context
);
732 query
->callback(status
, NULL
, query
->context
);
735 static void ib_sa_service_rec_release(struct ib_sa_query
*sa_query
)
737 kfree(container_of(sa_query
, struct ib_sa_service_query
, sa_query
));
741 * ib_sa_service_rec_query - Start Service Record operation
743 * @device:device to send request on
744 * @port_num: port number to send request on
745 * @method:SA method - should be get, set, or delete
746 * @rec:Service Record to send in request
747 * @comp_mask:component mask to send in request
748 * @timeout_ms:time to wait for response
749 * @gfp_mask:GFP mask to use for internal allocations
750 * @callback:function called when request completes, times out or is
752 * @context:opaque user context passed to callback
753 * @sa_query:request context, used to cancel request
755 * Send a Service Record set/get/delete to the SA to register,
756 * unregister or query a service record.
757 * The callback function will be called when the request completes (or
758 * fails); status is 0 for a successful response, -EINTR if the query
759 * is canceled, -ETIMEDOUT is the query timed out, or -EIO if an error
760 * occurred sending the query. The resp parameter of the callback is
761 * only valid if status is 0.
763 * If the return value of ib_sa_service_rec_query() is negative, it is an
764 * error code. Otherwise it is a request ID that can be used to cancel
767 int ib_sa_service_rec_query(struct ib_sa_client
*client
,
768 struct ib_device
*device
, u8 port_num
, u8 method
,
769 struct ib_sa_service_rec
*rec
,
770 ib_sa_comp_mask comp_mask
,
771 int timeout_ms
, gfp_t gfp_mask
,
772 void (*callback
)(int status
,
773 struct ib_sa_service_rec
*resp
,
776 struct ib_sa_query
**sa_query
)
778 struct ib_sa_service_query
*query
;
779 struct ib_sa_device
*sa_dev
= ib_get_client_data(device
, &sa_client
);
780 struct ib_sa_port
*port
;
781 struct ib_mad_agent
*agent
;
782 struct ib_sa_mad
*mad
;
788 port
= &sa_dev
->port
[port_num
- sa_dev
->start_port
];
791 if (method
!= IB_MGMT_METHOD_GET
&&
792 method
!= IB_MGMT_METHOD_SET
&&
793 method
!= IB_SA_METHOD_DELETE
)
796 query
= kmalloc(sizeof *query
, gfp_mask
);
800 query
->sa_query
.port
= port
;
801 ret
= alloc_mad(&query
->sa_query
, gfp_mask
);
805 ib_sa_client_get(client
);
806 query
->sa_query
.client
= client
;
807 query
->callback
= callback
;
808 query
->context
= context
;
810 mad
= query
->sa_query
.mad_buf
->mad
;
811 init_mad(mad
, agent
);
813 query
->sa_query
.callback
= callback
? ib_sa_service_rec_callback
: NULL
;
814 query
->sa_query
.release
= ib_sa_service_rec_release
;
815 mad
->mad_hdr
.method
= method
;
816 mad
->mad_hdr
.attr_id
= cpu_to_be16(IB_SA_ATTR_SERVICE_REC
);
817 mad
->sa_hdr
.comp_mask
= comp_mask
;
819 ib_pack(service_rec_table
, ARRAY_SIZE(service_rec_table
),
822 *sa_query
= &query
->sa_query
;
824 ret
= send_mad(&query
->sa_query
, timeout_ms
, gfp_mask
);
832 ib_sa_client_put(query
->sa_query
.client
);
833 free_mad(&query
->sa_query
);
839 EXPORT_SYMBOL(ib_sa_service_rec_query
);
841 static void ib_sa_mcmember_rec_callback(struct ib_sa_query
*sa_query
,
843 struct ib_sa_mad
*mad
)
845 struct ib_sa_mcmember_query
*query
=
846 container_of(sa_query
, struct ib_sa_mcmember_query
, sa_query
);
849 struct ib_sa_mcmember_rec rec
;
851 ib_unpack(mcmember_rec_table
, ARRAY_SIZE(mcmember_rec_table
),
853 query
->callback(status
, &rec
, query
->context
);
855 query
->callback(status
, NULL
, query
->context
);
858 static void ib_sa_mcmember_rec_release(struct ib_sa_query
*sa_query
)
860 kfree(container_of(sa_query
, struct ib_sa_mcmember_query
, sa_query
));
863 int ib_sa_mcmember_rec_query(struct ib_sa_client
*client
,
864 struct ib_device
*device
, u8 port_num
,
866 struct ib_sa_mcmember_rec
*rec
,
867 ib_sa_comp_mask comp_mask
,
868 int timeout_ms
, gfp_t gfp_mask
,
869 void (*callback
)(int status
,
870 struct ib_sa_mcmember_rec
*resp
,
873 struct ib_sa_query
**sa_query
)
875 struct ib_sa_mcmember_query
*query
;
876 struct ib_sa_device
*sa_dev
= ib_get_client_data(device
, &sa_client
);
877 struct ib_sa_port
*port
;
878 struct ib_mad_agent
*agent
;
879 struct ib_sa_mad
*mad
;
885 port
= &sa_dev
->port
[port_num
- sa_dev
->start_port
];
888 query
= kmalloc(sizeof *query
, gfp_mask
);
892 query
->sa_query
.port
= port
;
893 ret
= alloc_mad(&query
->sa_query
, gfp_mask
);
897 ib_sa_client_get(client
);
898 query
->sa_query
.client
= client
;
899 query
->callback
= callback
;
900 query
->context
= context
;
902 mad
= query
->sa_query
.mad_buf
->mad
;
903 init_mad(mad
, agent
);
905 query
->sa_query
.callback
= callback
? ib_sa_mcmember_rec_callback
: NULL
;
906 query
->sa_query
.release
= ib_sa_mcmember_rec_release
;
907 mad
->mad_hdr
.method
= method
;
908 mad
->mad_hdr
.attr_id
= cpu_to_be16(IB_SA_ATTR_MC_MEMBER_REC
);
909 mad
->sa_hdr
.comp_mask
= comp_mask
;
911 ib_pack(mcmember_rec_table
, ARRAY_SIZE(mcmember_rec_table
),
914 *sa_query
= &query
->sa_query
;
916 ret
= send_mad(&query
->sa_query
, timeout_ms
, gfp_mask
);
924 ib_sa_client_put(query
->sa_query
.client
);
925 free_mad(&query
->sa_query
);
932 static void send_handler(struct ib_mad_agent
*agent
,
933 struct ib_mad_send_wc
*mad_send_wc
)
935 struct ib_sa_query
*query
= mad_send_wc
->send_buf
->context
[0];
939 switch (mad_send_wc
->status
) {
941 /* No callback -- already got recv */
943 case IB_WC_RESP_TIMEOUT_ERR
:
944 query
->callback(query
, -ETIMEDOUT
, NULL
);
946 case IB_WC_WR_FLUSH_ERR
:
947 query
->callback(query
, -EINTR
, NULL
);
950 query
->callback(query
, -EIO
, NULL
);
954 spin_lock_irqsave(&idr_lock
, flags
);
955 idr_remove(&query_idr
, query
->id
);
956 spin_unlock_irqrestore(&idr_lock
, flags
);
959 ib_sa_client_put(query
->client
);
960 query
->release(query
);
963 static void recv_handler(struct ib_mad_agent
*mad_agent
,
964 struct ib_mad_recv_wc
*mad_recv_wc
)
966 struct ib_sa_query
*query
;
967 struct ib_mad_send_buf
*mad_buf
;
969 mad_buf
= (void *) (unsigned long) mad_recv_wc
->wc
->wr_id
;
970 query
= mad_buf
->context
[0];
972 if (query
->callback
) {
973 if (mad_recv_wc
->wc
->status
== IB_WC_SUCCESS
)
974 query
->callback(query
,
975 mad_recv_wc
->recv_buf
.mad
->mad_hdr
.status
?
977 (struct ib_sa_mad
*) mad_recv_wc
->recv_buf
.mad
);
979 query
->callback(query
, -EIO
, NULL
);
982 ib_free_recv_mad(mad_recv_wc
);
985 static void ib_sa_add_one(struct ib_device
*device
)
987 struct ib_sa_device
*sa_dev
;
990 if (rdma_node_get_transport(device
->node_type
) != RDMA_TRANSPORT_IB
)
993 if (device
->node_type
== RDMA_NODE_IB_SWITCH
)
997 e
= device
->phys_port_cnt
;
1000 sa_dev
= kmalloc(sizeof *sa_dev
+
1001 (e
- s
+ 1) * sizeof (struct ib_sa_port
),
1006 sa_dev
->start_port
= s
;
1007 sa_dev
->end_port
= e
;
1009 for (i
= 0; i
<= e
- s
; ++i
) {
1010 sa_dev
->port
[i
].sm_ah
= NULL
;
1011 sa_dev
->port
[i
].port_num
= i
+ s
;
1012 spin_lock_init(&sa_dev
->port
[i
].ah_lock
);
1014 sa_dev
->port
[i
].agent
=
1015 ib_register_mad_agent(device
, i
+ s
, IB_QPT_GSI
,
1016 NULL
, 0, send_handler
,
1017 recv_handler
, sa_dev
);
1018 if (IS_ERR(sa_dev
->port
[i
].agent
))
1021 INIT_WORK(&sa_dev
->port
[i
].update_task
, update_sm_ah
);
1024 ib_set_client_data(device
, &sa_client
, sa_dev
);
1027 * We register our event handler after everything is set up,
1028 * and then update our cached info after the event handler is
1029 * registered to avoid any problems if a port changes state
1030 * during our initialization.
1033 INIT_IB_EVENT_HANDLER(&sa_dev
->event_handler
, device
, ib_sa_event
);
1034 if (ib_register_event_handler(&sa_dev
->event_handler
))
1037 for (i
= 0; i
<= e
- s
; ++i
)
1038 update_sm_ah(&sa_dev
->port
[i
].update_task
);
1044 ib_unregister_mad_agent(sa_dev
->port
[i
].agent
);
1051 static void ib_sa_remove_one(struct ib_device
*device
)
1053 struct ib_sa_device
*sa_dev
= ib_get_client_data(device
, &sa_client
);
1059 ib_unregister_event_handler(&sa_dev
->event_handler
);
1061 flush_scheduled_work();
1063 for (i
= 0; i
<= sa_dev
->end_port
- sa_dev
->start_port
; ++i
) {
1064 ib_unregister_mad_agent(sa_dev
->port
[i
].agent
);
1065 kref_put(&sa_dev
->port
[i
].sm_ah
->ref
, free_sm_ah
);
1071 static int __init
ib_sa_init(void)
1075 spin_lock_init(&idr_lock
);
1076 spin_lock_init(&tid_lock
);
1078 get_random_bytes(&tid
, sizeof tid
);
1080 ret
= ib_register_client(&sa_client
);
1082 printk(KERN_ERR
"Couldn't register ib_sa client\n");
1088 printk(KERN_ERR
"Couldn't initialize multicast handling\n");
1094 ib_unregister_client(&sa_client
);
1099 static void __exit
ib_sa_cleanup(void)
1102 ib_unregister_client(&sa_client
);
1103 idr_destroy(&query_idr
);
1106 module_init(ib_sa_init
);
1107 module_exit(ib_sa_cleanup
);