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
35 #include <linux/module.h>
36 #include <linux/init.h>
37 #include <linux/err.h>
38 #include <linux/random.h>
39 #include <linux/spinlock.h>
40 #include <linux/slab.h>
41 #include <linux/dma-mapping.h>
42 #include <linux/kref.h>
43 #include <linux/idr.h>
44 #include <linux/workqueue.h>
45 #include <uapi/linux/if_ether.h>
46 #include <rdma/ib_pack.h>
47 #include <rdma/ib_cache.h>
48 #include <rdma/rdma_netlink.h>
49 #include <net/netlink.h>
50 #include <uapi/rdma/ib_user_sa.h>
51 #include <rdma/ib_marshall.h>
54 MODULE_AUTHOR("Roland Dreier");
55 MODULE_DESCRIPTION("InfiniBand subnet administration query support");
56 MODULE_LICENSE("Dual BSD/GPL");
58 #define IB_SA_LOCAL_SVC_TIMEOUT_MIN 100
59 #define IB_SA_LOCAL_SVC_TIMEOUT_DEFAULT 2000
60 #define IB_SA_LOCAL_SVC_TIMEOUT_MAX 200000
61 static int sa_local_svc_timeout_ms
= IB_SA_LOCAL_SVC_TIMEOUT_DEFAULT
;
71 struct ib_mad_agent
*agent
;
72 struct ib_sa_sm_ah
*sm_ah
;
73 struct work_struct update_task
;
79 int start_port
, end_port
;
80 struct ib_event_handler event_handler
;
81 struct ib_sa_port port
[0];
85 void (*callback
)(struct ib_sa_query
*, int, struct ib_sa_mad
*);
86 void (*release
)(struct ib_sa_query
*);
87 struct ib_sa_client
*client
;
88 struct ib_sa_port
*port
;
89 struct ib_mad_send_buf
*mad_buf
;
90 struct ib_sa_sm_ah
*sm_ah
;
93 struct list_head list
; /* Local svc request list */
94 u32 seq
; /* Local svc request sequence number */
95 unsigned long timeout
; /* Local svc timeout */
96 u8 path_use
; /* How will the pathrecord be used */
99 #define IB_SA_ENABLE_LOCAL_SERVICE 0x00000001
100 #define IB_SA_CANCEL 0x00000002
102 struct ib_sa_service_query
{
103 void (*callback
)(int, struct ib_sa_service_rec
*, void *);
105 struct ib_sa_query sa_query
;
108 struct ib_sa_path_query
{
109 void (*callback
)(int, struct ib_sa_path_rec
*, void *);
111 struct ib_sa_query sa_query
;
114 struct ib_sa_guidinfo_query
{
115 void (*callback
)(int, struct ib_sa_guidinfo_rec
*, void *);
117 struct ib_sa_query sa_query
;
120 struct ib_sa_mcmember_query
{
121 void (*callback
)(int, struct ib_sa_mcmember_rec
*, void *);
123 struct ib_sa_query sa_query
;
126 static LIST_HEAD(ib_nl_request_list
);
127 static DEFINE_SPINLOCK(ib_nl_request_lock
);
128 static atomic_t ib_nl_sa_request_seq
;
129 static struct workqueue_struct
*ib_nl_wq
;
130 static struct delayed_work ib_nl_timed_work
;
131 static const struct nla_policy ib_nl_policy
[LS_NLA_TYPE_MAX
] = {
132 [LS_NLA_TYPE_PATH_RECORD
] = {.type
= NLA_BINARY
,
133 .len
= sizeof(struct ib_path_rec_data
)},
134 [LS_NLA_TYPE_TIMEOUT
] = {.type
= NLA_U32
},
135 [LS_NLA_TYPE_SERVICE_ID
] = {.type
= NLA_U64
},
136 [LS_NLA_TYPE_DGID
] = {.type
= NLA_BINARY
,
137 .len
= sizeof(struct rdma_nla_ls_gid
)},
138 [LS_NLA_TYPE_SGID
] = {.type
= NLA_BINARY
,
139 .len
= sizeof(struct rdma_nla_ls_gid
)},
140 [LS_NLA_TYPE_TCLASS
] = {.type
= NLA_U8
},
141 [LS_NLA_TYPE_PKEY
] = {.type
= NLA_U16
},
142 [LS_NLA_TYPE_QOS_CLASS
] = {.type
= NLA_U16
},
146 static void ib_sa_add_one(struct ib_device
*device
);
147 static void ib_sa_remove_one(struct ib_device
*device
, void *client_data
);
149 static struct ib_client sa_client
= {
151 .add
= ib_sa_add_one
,
152 .remove
= ib_sa_remove_one
155 static DEFINE_SPINLOCK(idr_lock
);
156 static DEFINE_IDR(query_idr
);
158 static DEFINE_SPINLOCK(tid_lock
);
161 #define PATH_REC_FIELD(field) \
162 .struct_offset_bytes = offsetof(struct ib_sa_path_rec, field), \
163 .struct_size_bytes = sizeof ((struct ib_sa_path_rec *) 0)->field, \
164 .field_name = "sa_path_rec:" #field
166 static const struct ib_field path_rec_table
[] = {
167 { PATH_REC_FIELD(service_id
),
171 { PATH_REC_FIELD(dgid
),
175 { PATH_REC_FIELD(sgid
),
179 { PATH_REC_FIELD(dlid
),
183 { PATH_REC_FIELD(slid
),
187 { PATH_REC_FIELD(raw_traffic
),
195 { PATH_REC_FIELD(flow_label
),
199 { PATH_REC_FIELD(hop_limit
),
203 { PATH_REC_FIELD(traffic_class
),
207 { PATH_REC_FIELD(reversible
),
211 { PATH_REC_FIELD(numb_path
),
215 { PATH_REC_FIELD(pkey
),
219 { PATH_REC_FIELD(qos_class
),
223 { PATH_REC_FIELD(sl
),
227 { PATH_REC_FIELD(mtu_selector
),
231 { PATH_REC_FIELD(mtu
),
235 { PATH_REC_FIELD(rate_selector
),
239 { PATH_REC_FIELD(rate
),
243 { PATH_REC_FIELD(packet_life_time_selector
),
247 { PATH_REC_FIELD(packet_life_time
),
251 { PATH_REC_FIELD(preference
),
261 #define MCMEMBER_REC_FIELD(field) \
262 .struct_offset_bytes = offsetof(struct ib_sa_mcmember_rec, field), \
263 .struct_size_bytes = sizeof ((struct ib_sa_mcmember_rec *) 0)->field, \
264 .field_name = "sa_mcmember_rec:" #field
266 static const struct ib_field mcmember_rec_table
[] = {
267 { MCMEMBER_REC_FIELD(mgid
),
271 { MCMEMBER_REC_FIELD(port_gid
),
275 { MCMEMBER_REC_FIELD(qkey
),
279 { MCMEMBER_REC_FIELD(mlid
),
283 { MCMEMBER_REC_FIELD(mtu_selector
),
287 { MCMEMBER_REC_FIELD(mtu
),
291 { MCMEMBER_REC_FIELD(traffic_class
),
295 { MCMEMBER_REC_FIELD(pkey
),
299 { MCMEMBER_REC_FIELD(rate_selector
),
303 { MCMEMBER_REC_FIELD(rate
),
307 { MCMEMBER_REC_FIELD(packet_life_time_selector
),
311 { MCMEMBER_REC_FIELD(packet_life_time
),
315 { MCMEMBER_REC_FIELD(sl
),
319 { MCMEMBER_REC_FIELD(flow_label
),
323 { MCMEMBER_REC_FIELD(hop_limit
),
327 { MCMEMBER_REC_FIELD(scope
),
331 { MCMEMBER_REC_FIELD(join_state
),
335 { MCMEMBER_REC_FIELD(proxy_join
),
345 #define SERVICE_REC_FIELD(field) \
346 .struct_offset_bytes = offsetof(struct ib_sa_service_rec, field), \
347 .struct_size_bytes = sizeof ((struct ib_sa_service_rec *) 0)->field, \
348 .field_name = "sa_service_rec:" #field
350 static const struct ib_field service_rec_table
[] = {
351 { SERVICE_REC_FIELD(id
),
355 { SERVICE_REC_FIELD(gid
),
359 { SERVICE_REC_FIELD(pkey
),
363 { SERVICE_REC_FIELD(lease
),
367 { SERVICE_REC_FIELD(key
),
371 { SERVICE_REC_FIELD(name
),
375 { SERVICE_REC_FIELD(data8
),
379 { SERVICE_REC_FIELD(data16
),
383 { SERVICE_REC_FIELD(data32
),
387 { SERVICE_REC_FIELD(data64
),
393 #define GUIDINFO_REC_FIELD(field) \
394 .struct_offset_bytes = offsetof(struct ib_sa_guidinfo_rec, field), \
395 .struct_size_bytes = sizeof((struct ib_sa_guidinfo_rec *) 0)->field, \
396 .field_name = "sa_guidinfo_rec:" #field
398 static const struct ib_field guidinfo_rec_table
[] = {
399 { GUIDINFO_REC_FIELD(lid
),
403 { GUIDINFO_REC_FIELD(block_num
),
407 { GUIDINFO_REC_FIELD(res1
),
411 { GUIDINFO_REC_FIELD(res2
),
415 { GUIDINFO_REC_FIELD(guid_info_list
),
421 static inline void ib_sa_disable_local_svc(struct ib_sa_query
*query
)
423 query
->flags
&= ~IB_SA_ENABLE_LOCAL_SERVICE
;
426 static inline int ib_sa_query_cancelled(struct ib_sa_query
*query
)
428 return (query
->flags
& IB_SA_CANCEL
);
431 static void ib_nl_set_path_rec_attrs(struct sk_buff
*skb
,
432 struct ib_sa_query
*query
)
434 struct ib_sa_path_rec
*sa_rec
= query
->mad_buf
->context
[1];
435 struct ib_sa_mad
*mad
= query
->mad_buf
->mad
;
436 ib_sa_comp_mask comp_mask
= mad
->sa_hdr
.comp_mask
;
439 struct rdma_ls_resolve_header
*header
;
441 query
->mad_buf
->context
[1] = NULL
;
443 /* Construct the family header first */
444 header
= (struct rdma_ls_resolve_header
*)
445 skb_put(skb
, NLMSG_ALIGN(sizeof(*header
)));
446 memcpy(header
->device_name
, query
->port
->agent
->device
->name
,
448 header
->port_num
= query
->port
->port_num
;
450 if ((comp_mask
& IB_SA_PATH_REC_REVERSIBLE
) &&
451 sa_rec
->reversible
!= 0)
452 query
->path_use
= LS_RESOLVE_PATH_USE_GMP
;
454 query
->path_use
= LS_RESOLVE_PATH_USE_UNIDIRECTIONAL
;
455 header
->path_use
= query
->path_use
;
457 /* Now build the attributes */
458 if (comp_mask
& IB_SA_PATH_REC_SERVICE_ID
) {
459 val64
= be64_to_cpu(sa_rec
->service_id
);
460 nla_put(skb
, RDMA_NLA_F_MANDATORY
| LS_NLA_TYPE_SERVICE_ID
,
461 sizeof(val64
), &val64
);
463 if (comp_mask
& IB_SA_PATH_REC_DGID
)
464 nla_put(skb
, RDMA_NLA_F_MANDATORY
| LS_NLA_TYPE_DGID
,
465 sizeof(sa_rec
->dgid
), &sa_rec
->dgid
);
466 if (comp_mask
& IB_SA_PATH_REC_SGID
)
467 nla_put(skb
, RDMA_NLA_F_MANDATORY
| LS_NLA_TYPE_SGID
,
468 sizeof(sa_rec
->sgid
), &sa_rec
->sgid
);
469 if (comp_mask
& IB_SA_PATH_REC_TRAFFIC_CLASS
)
470 nla_put(skb
, RDMA_NLA_F_MANDATORY
| LS_NLA_TYPE_TCLASS
,
471 sizeof(sa_rec
->traffic_class
), &sa_rec
->traffic_class
);
473 if (comp_mask
& IB_SA_PATH_REC_PKEY
) {
474 val16
= be16_to_cpu(sa_rec
->pkey
);
475 nla_put(skb
, RDMA_NLA_F_MANDATORY
| LS_NLA_TYPE_PKEY
,
476 sizeof(val16
), &val16
);
478 if (comp_mask
& IB_SA_PATH_REC_QOS_CLASS
) {
479 val16
= be16_to_cpu(sa_rec
->qos_class
);
480 nla_put(skb
, RDMA_NLA_F_MANDATORY
| LS_NLA_TYPE_QOS_CLASS
,
481 sizeof(val16
), &val16
);
485 static int ib_nl_get_path_rec_attrs_len(ib_sa_comp_mask comp_mask
)
489 if (comp_mask
& IB_SA_PATH_REC_SERVICE_ID
)
490 len
+= nla_total_size(sizeof(u64
));
491 if (comp_mask
& IB_SA_PATH_REC_DGID
)
492 len
+= nla_total_size(sizeof(struct rdma_nla_ls_gid
));
493 if (comp_mask
& IB_SA_PATH_REC_SGID
)
494 len
+= nla_total_size(sizeof(struct rdma_nla_ls_gid
));
495 if (comp_mask
& IB_SA_PATH_REC_TRAFFIC_CLASS
)
496 len
+= nla_total_size(sizeof(u8
));
497 if (comp_mask
& IB_SA_PATH_REC_PKEY
)
498 len
+= nla_total_size(sizeof(u16
));
499 if (comp_mask
& IB_SA_PATH_REC_QOS_CLASS
)
500 len
+= nla_total_size(sizeof(u16
));
503 * Make sure that at least some of the required comp_mask bits are
506 if (WARN_ON(len
== 0))
509 /* Add the family header */
510 len
+= NLMSG_ALIGN(sizeof(struct rdma_ls_resolve_header
));
515 static int ib_nl_send_msg(struct ib_sa_query
*query
, gfp_t gfp_mask
)
517 struct sk_buff
*skb
= NULL
;
518 struct nlmsghdr
*nlh
;
521 struct ib_sa_mad
*mad
;
524 mad
= query
->mad_buf
->mad
;
525 len
= ib_nl_get_path_rec_attrs_len(mad
->sa_hdr
.comp_mask
);
529 skb
= nlmsg_new(len
, gfp_mask
);
533 /* Put nlmsg header only for now */
534 data
= ibnl_put_msg(skb
, &nlh
, query
->seq
, 0, RDMA_NL_LS
,
535 RDMA_NL_LS_OP_RESOLVE
, NLM_F_REQUEST
);
542 ib_nl_set_path_rec_attrs(skb
, query
);
544 /* Repair the nlmsg header length */
547 ret
= ibnl_multicast(skb
, nlh
, RDMA_NL_GROUP_LS
, gfp_mask
);
556 static int ib_nl_make_request(struct ib_sa_query
*query
, gfp_t gfp_mask
)
562 INIT_LIST_HEAD(&query
->list
);
563 query
->seq
= (u32
)atomic_inc_return(&ib_nl_sa_request_seq
);
565 /* Put the request on the list first.*/
566 spin_lock_irqsave(&ib_nl_request_lock
, flags
);
567 delay
= msecs_to_jiffies(sa_local_svc_timeout_ms
);
568 query
->timeout
= delay
+ jiffies
;
569 list_add_tail(&query
->list
, &ib_nl_request_list
);
570 /* Start the timeout if this is the only request */
571 if (ib_nl_request_list
.next
== &query
->list
)
572 queue_delayed_work(ib_nl_wq
, &ib_nl_timed_work
, delay
);
573 spin_unlock_irqrestore(&ib_nl_request_lock
, flags
);
575 ret
= ib_nl_send_msg(query
, gfp_mask
);
578 /* Remove the request */
579 spin_lock_irqsave(&ib_nl_request_lock
, flags
);
580 list_del(&query
->list
);
581 spin_unlock_irqrestore(&ib_nl_request_lock
, flags
);
589 static int ib_nl_cancel_request(struct ib_sa_query
*query
)
592 struct ib_sa_query
*wait_query
;
595 spin_lock_irqsave(&ib_nl_request_lock
, flags
);
596 list_for_each_entry(wait_query
, &ib_nl_request_list
, list
) {
597 /* Let the timeout to take care of the callback */
598 if (query
== wait_query
) {
599 query
->flags
|= IB_SA_CANCEL
;
600 query
->timeout
= jiffies
;
601 list_move(&query
->list
, &ib_nl_request_list
);
603 mod_delayed_work(ib_nl_wq
, &ib_nl_timed_work
, 1);
607 spin_unlock_irqrestore(&ib_nl_request_lock
, flags
);
612 static void send_handler(struct ib_mad_agent
*agent
,
613 struct ib_mad_send_wc
*mad_send_wc
);
615 static void ib_nl_process_good_resolve_rsp(struct ib_sa_query
*query
,
616 const struct nlmsghdr
*nlh
)
618 struct ib_mad_send_wc mad_send_wc
;
619 struct ib_sa_mad
*mad
= NULL
;
620 const struct nlattr
*head
, *curr
;
621 struct ib_path_rec_data
*rec
;
626 if (query
->callback
) {
627 head
= (const struct nlattr
*) nlmsg_data(nlh
);
628 len
= nlmsg_len(nlh
);
629 switch (query
->path_use
) {
630 case LS_RESOLVE_PATH_USE_UNIDIRECTIONAL
:
631 mask
= IB_PATH_PRIMARY
| IB_PATH_OUTBOUND
;
634 case LS_RESOLVE_PATH_USE_ALL
:
635 case LS_RESOLVE_PATH_USE_GMP
:
637 mask
= IB_PATH_PRIMARY
| IB_PATH_GMP
|
638 IB_PATH_BIDIRECTIONAL
;
641 nla_for_each_attr(curr
, head
, len
, rem
) {
642 if (curr
->nla_type
== LS_NLA_TYPE_PATH_RECORD
) {
643 rec
= nla_data(curr
);
645 * Get the first one. In the future, we may
646 * need to get up to 6 pathrecords.
648 if ((rec
->flags
& mask
) == mask
) {
649 mad
= query
->mad_buf
->mad
;
650 mad
->mad_hdr
.method
|=
652 memcpy(mad
->data
, rec
->path_rec
,
653 sizeof(rec
->path_rec
));
659 query
->callback(query
, status
, mad
);
662 mad_send_wc
.send_buf
= query
->mad_buf
;
663 mad_send_wc
.status
= IB_WC_SUCCESS
;
664 send_handler(query
->mad_buf
->mad_agent
, &mad_send_wc
);
667 static void ib_nl_request_timeout(struct work_struct
*work
)
670 struct ib_sa_query
*query
;
672 struct ib_mad_send_wc mad_send_wc
;
675 spin_lock_irqsave(&ib_nl_request_lock
, flags
);
676 while (!list_empty(&ib_nl_request_list
)) {
677 query
= list_entry(ib_nl_request_list
.next
,
678 struct ib_sa_query
, list
);
680 if (time_after(query
->timeout
, jiffies
)) {
681 delay
= query
->timeout
- jiffies
;
682 if ((long)delay
<= 0)
684 queue_delayed_work(ib_nl_wq
, &ib_nl_timed_work
, delay
);
688 list_del(&query
->list
);
689 ib_sa_disable_local_svc(query
);
690 /* Hold the lock to protect against query cancellation */
691 if (ib_sa_query_cancelled(query
))
694 ret
= ib_post_send_mad(query
->mad_buf
, NULL
);
696 mad_send_wc
.send_buf
= query
->mad_buf
;
697 mad_send_wc
.status
= IB_WC_WR_FLUSH_ERR
;
698 spin_unlock_irqrestore(&ib_nl_request_lock
, flags
);
699 send_handler(query
->port
->agent
, &mad_send_wc
);
700 spin_lock_irqsave(&ib_nl_request_lock
, flags
);
703 spin_unlock_irqrestore(&ib_nl_request_lock
, flags
);
706 static int ib_nl_handle_set_timeout(struct sk_buff
*skb
,
707 struct netlink_callback
*cb
)
709 const struct nlmsghdr
*nlh
= (struct nlmsghdr
*)cb
->nlh
;
710 int timeout
, delta
, abs_delta
;
711 const struct nlattr
*attr
;
713 struct ib_sa_query
*query
;
715 struct nlattr
*tb
[LS_NLA_TYPE_MAX
];
718 if (!netlink_capable(skb
, CAP_NET_ADMIN
))
721 ret
= nla_parse(tb
, LS_NLA_TYPE_MAX
- 1, nlmsg_data(nlh
),
722 nlmsg_len(nlh
), ib_nl_policy
);
723 attr
= (const struct nlattr
*)tb
[LS_NLA_TYPE_TIMEOUT
];
727 timeout
= *(int *) nla_data(attr
);
728 if (timeout
< IB_SA_LOCAL_SVC_TIMEOUT_MIN
)
729 timeout
= IB_SA_LOCAL_SVC_TIMEOUT_MIN
;
730 if (timeout
> IB_SA_LOCAL_SVC_TIMEOUT_MAX
)
731 timeout
= IB_SA_LOCAL_SVC_TIMEOUT_MAX
;
733 delta
= timeout
- sa_local_svc_timeout_ms
;
740 spin_lock_irqsave(&ib_nl_request_lock
, flags
);
741 sa_local_svc_timeout_ms
= timeout
;
742 list_for_each_entry(query
, &ib_nl_request_list
, list
) {
743 if (delta
< 0 && abs_delta
> query
->timeout
)
746 query
->timeout
+= delta
;
748 /* Get the new delay from the first entry */
750 delay
= query
->timeout
- jiffies
;
756 mod_delayed_work(ib_nl_wq
, &ib_nl_timed_work
,
757 (unsigned long)delay
);
758 spin_unlock_irqrestore(&ib_nl_request_lock
, flags
);
765 static inline int ib_nl_is_good_resolve_resp(const struct nlmsghdr
*nlh
)
767 struct nlattr
*tb
[LS_NLA_TYPE_MAX
];
770 if (nlh
->nlmsg_flags
& RDMA_NL_LS_F_ERR
)
773 ret
= nla_parse(tb
, LS_NLA_TYPE_MAX
- 1, nlmsg_data(nlh
),
774 nlmsg_len(nlh
), ib_nl_policy
);
781 static int ib_nl_handle_resolve_resp(struct sk_buff
*skb
,
782 struct netlink_callback
*cb
)
784 const struct nlmsghdr
*nlh
= (struct nlmsghdr
*)cb
->nlh
;
786 struct ib_sa_query
*query
;
787 struct ib_mad_send_buf
*send_buf
;
788 struct ib_mad_send_wc mad_send_wc
;
792 if (!netlink_capable(skb
, CAP_NET_ADMIN
))
795 spin_lock_irqsave(&ib_nl_request_lock
, flags
);
796 list_for_each_entry(query
, &ib_nl_request_list
, list
) {
798 * If the query is cancelled, let the timeout routine
801 if (nlh
->nlmsg_seq
== query
->seq
) {
802 found
= !ib_sa_query_cancelled(query
);
804 list_del(&query
->list
);
810 spin_unlock_irqrestore(&ib_nl_request_lock
, flags
);
814 send_buf
= query
->mad_buf
;
816 if (!ib_nl_is_good_resolve_resp(nlh
)) {
817 /* if the result is a failure, send out the packet via IB */
818 ib_sa_disable_local_svc(query
);
819 ret
= ib_post_send_mad(query
->mad_buf
, NULL
);
820 spin_unlock_irqrestore(&ib_nl_request_lock
, flags
);
822 mad_send_wc
.send_buf
= send_buf
;
823 mad_send_wc
.status
= IB_WC_GENERAL_ERR
;
824 send_handler(query
->port
->agent
, &mad_send_wc
);
827 spin_unlock_irqrestore(&ib_nl_request_lock
, flags
);
828 ib_nl_process_good_resolve_rsp(query
, nlh
);
835 static struct ibnl_client_cbs ib_sa_cb_table
[] = {
836 [RDMA_NL_LS_OP_RESOLVE
] = {
837 .dump
= ib_nl_handle_resolve_resp
,
838 .module
= THIS_MODULE
},
839 [RDMA_NL_LS_OP_SET_TIMEOUT
] = {
840 .dump
= ib_nl_handle_set_timeout
,
841 .module
= THIS_MODULE
},
844 static void free_sm_ah(struct kref
*kref
)
846 struct ib_sa_sm_ah
*sm_ah
= container_of(kref
, struct ib_sa_sm_ah
, ref
);
848 ib_destroy_ah(sm_ah
->ah
);
852 static void update_sm_ah(struct work_struct
*work
)
854 struct ib_sa_port
*port
=
855 container_of(work
, struct ib_sa_port
, update_task
);
856 struct ib_sa_sm_ah
*new_ah
;
857 struct ib_port_attr port_attr
;
858 struct ib_ah_attr ah_attr
;
860 if (ib_query_port(port
->agent
->device
, port
->port_num
, &port_attr
)) {
861 printk(KERN_WARNING
"Couldn't query port\n");
865 new_ah
= kmalloc(sizeof *new_ah
, GFP_KERNEL
);
867 printk(KERN_WARNING
"Couldn't allocate new SM AH\n");
871 kref_init(&new_ah
->ref
);
872 new_ah
->src_path_mask
= (1 << port_attr
.lmc
) - 1;
874 new_ah
->pkey_index
= 0;
875 if (ib_find_pkey(port
->agent
->device
, port
->port_num
,
876 IB_DEFAULT_PKEY_FULL
, &new_ah
->pkey_index
))
877 printk(KERN_ERR
"Couldn't find index for default PKey\n");
879 memset(&ah_attr
, 0, sizeof ah_attr
);
880 ah_attr
.dlid
= port_attr
.sm_lid
;
881 ah_attr
.sl
= port_attr
.sm_sl
;
882 ah_attr
.port_num
= port
->port_num
;
884 new_ah
->ah
= ib_create_ah(port
->agent
->qp
->pd
, &ah_attr
);
885 if (IS_ERR(new_ah
->ah
)) {
886 printk(KERN_WARNING
"Couldn't create new SM AH\n");
891 spin_lock_irq(&port
->ah_lock
);
893 kref_put(&port
->sm_ah
->ref
, free_sm_ah
);
894 port
->sm_ah
= new_ah
;
895 spin_unlock_irq(&port
->ah_lock
);
899 static void ib_sa_event(struct ib_event_handler
*handler
, struct ib_event
*event
)
901 if (event
->event
== IB_EVENT_PORT_ERR
||
902 event
->event
== IB_EVENT_PORT_ACTIVE
||
903 event
->event
== IB_EVENT_LID_CHANGE
||
904 event
->event
== IB_EVENT_PKEY_CHANGE
||
905 event
->event
== IB_EVENT_SM_CHANGE
||
906 event
->event
== IB_EVENT_CLIENT_REREGISTER
) {
908 struct ib_sa_device
*sa_dev
=
909 container_of(handler
, typeof(*sa_dev
), event_handler
);
910 struct ib_sa_port
*port
=
911 &sa_dev
->port
[event
->element
.port_num
- sa_dev
->start_port
];
913 if (!rdma_cap_ib_sa(handler
->device
, port
->port_num
))
916 spin_lock_irqsave(&port
->ah_lock
, flags
);
918 kref_put(&port
->sm_ah
->ref
, free_sm_ah
);
920 spin_unlock_irqrestore(&port
->ah_lock
, flags
);
922 queue_work(ib_wq
, &sa_dev
->port
[event
->element
.port_num
-
923 sa_dev
->start_port
].update_task
);
927 void ib_sa_register_client(struct ib_sa_client
*client
)
929 atomic_set(&client
->users
, 1);
930 init_completion(&client
->comp
);
932 EXPORT_SYMBOL(ib_sa_register_client
);
934 void ib_sa_unregister_client(struct ib_sa_client
*client
)
936 ib_sa_client_put(client
);
937 wait_for_completion(&client
->comp
);
939 EXPORT_SYMBOL(ib_sa_unregister_client
);
942 * ib_sa_cancel_query - try to cancel an SA query
943 * @id:ID of query to cancel
944 * @query:query pointer to cancel
946 * Try to cancel an SA query. If the id and query don't match up or
947 * the query has already completed, nothing is done. Otherwise the
948 * query is canceled and will complete with a status of -EINTR.
950 void ib_sa_cancel_query(int id
, struct ib_sa_query
*query
)
953 struct ib_mad_agent
*agent
;
954 struct ib_mad_send_buf
*mad_buf
;
956 spin_lock_irqsave(&idr_lock
, flags
);
957 if (idr_find(&query_idr
, id
) != query
) {
958 spin_unlock_irqrestore(&idr_lock
, flags
);
961 agent
= query
->port
->agent
;
962 mad_buf
= query
->mad_buf
;
963 spin_unlock_irqrestore(&idr_lock
, flags
);
966 * If the query is still on the netlink request list, schedule
967 * it to be cancelled by the timeout routine. Otherwise, it has been
968 * sent to the MAD layer and has to be cancelled from there.
970 if (!ib_nl_cancel_request(query
))
971 ib_cancel_mad(agent
, mad_buf
);
973 EXPORT_SYMBOL(ib_sa_cancel_query
);
975 static u8
get_src_path_mask(struct ib_device
*device
, u8 port_num
)
977 struct ib_sa_device
*sa_dev
;
978 struct ib_sa_port
*port
;
982 sa_dev
= ib_get_client_data(device
, &sa_client
);
986 port
= &sa_dev
->port
[port_num
- sa_dev
->start_port
];
987 spin_lock_irqsave(&port
->ah_lock
, flags
);
988 src_path_mask
= port
->sm_ah
? port
->sm_ah
->src_path_mask
: 0x7f;
989 spin_unlock_irqrestore(&port
->ah_lock
, flags
);
991 return src_path_mask
;
994 int ib_init_ah_from_path(struct ib_device
*device
, u8 port_num
,
995 struct ib_sa_path_rec
*rec
, struct ib_ah_attr
*ah_attr
)
1001 memset(ah_attr
, 0, sizeof *ah_attr
);
1002 ah_attr
->dlid
= be16_to_cpu(rec
->dlid
);
1003 ah_attr
->sl
= rec
->sl
;
1004 ah_attr
->src_path_bits
= be16_to_cpu(rec
->slid
) &
1005 get_src_path_mask(device
, port_num
);
1006 ah_attr
->port_num
= port_num
;
1007 ah_attr
->static_rate
= rec
->rate
;
1009 force_grh
= rdma_cap_eth_ah(device
, port_num
);
1011 if (rec
->hop_limit
> 1 || force_grh
) {
1012 struct net_device
*ndev
= ib_get_ndev_from_path(rec
);
1014 ah_attr
->ah_flags
= IB_AH_GRH
;
1015 ah_attr
->grh
.dgid
= rec
->dgid
;
1017 ret
= ib_find_cached_gid(device
, &rec
->sgid
, ndev
, &port_num
,
1025 ah_attr
->grh
.sgid_index
= gid_index
;
1026 ah_attr
->grh
.flow_label
= be32_to_cpu(rec
->flow_label
);
1027 ah_attr
->grh
.hop_limit
= rec
->hop_limit
;
1028 ah_attr
->grh
.traffic_class
= rec
->traffic_class
;
1033 memcpy(ah_attr
->dmac
, rec
->dmac
, ETH_ALEN
);
1037 EXPORT_SYMBOL(ib_init_ah_from_path
);
1039 static int alloc_mad(struct ib_sa_query
*query
, gfp_t gfp_mask
)
1041 unsigned long flags
;
1043 spin_lock_irqsave(&query
->port
->ah_lock
, flags
);
1044 if (!query
->port
->sm_ah
) {
1045 spin_unlock_irqrestore(&query
->port
->ah_lock
, flags
);
1048 kref_get(&query
->port
->sm_ah
->ref
);
1049 query
->sm_ah
= query
->port
->sm_ah
;
1050 spin_unlock_irqrestore(&query
->port
->ah_lock
, flags
);
1052 query
->mad_buf
= ib_create_send_mad(query
->port
->agent
, 1,
1053 query
->sm_ah
->pkey_index
,
1054 0, IB_MGMT_SA_HDR
, IB_MGMT_SA_DATA
,
1056 IB_MGMT_BASE_VERSION
);
1057 if (IS_ERR(query
->mad_buf
)) {
1058 kref_put(&query
->sm_ah
->ref
, free_sm_ah
);
1062 query
->mad_buf
->ah
= query
->sm_ah
->ah
;
1067 static void free_mad(struct ib_sa_query
*query
)
1069 ib_free_send_mad(query
->mad_buf
);
1070 kref_put(&query
->sm_ah
->ref
, free_sm_ah
);
1073 static void init_mad(struct ib_sa_mad
*mad
, struct ib_mad_agent
*agent
)
1075 unsigned long flags
;
1077 memset(mad
, 0, sizeof *mad
);
1079 mad
->mad_hdr
.base_version
= IB_MGMT_BASE_VERSION
;
1080 mad
->mad_hdr
.mgmt_class
= IB_MGMT_CLASS_SUBN_ADM
;
1081 mad
->mad_hdr
.class_version
= IB_SA_CLASS_VERSION
;
1083 spin_lock_irqsave(&tid_lock
, flags
);
1085 cpu_to_be64(((u64
) agent
->hi_tid
) << 32 | tid
++);
1086 spin_unlock_irqrestore(&tid_lock
, flags
);
1089 static int send_mad(struct ib_sa_query
*query
, int timeout_ms
, gfp_t gfp_mask
)
1091 bool preload
= gfpflags_allow_blocking(gfp_mask
);
1092 unsigned long flags
;
1096 idr_preload(gfp_mask
);
1097 spin_lock_irqsave(&idr_lock
, flags
);
1099 id
= idr_alloc(&query_idr
, query
, 0, 0, GFP_NOWAIT
);
1101 spin_unlock_irqrestore(&idr_lock
, flags
);
1107 query
->mad_buf
->timeout_ms
= timeout_ms
;
1108 query
->mad_buf
->context
[0] = query
;
1111 if (query
->flags
& IB_SA_ENABLE_LOCAL_SERVICE
) {
1112 if (!ibnl_chk_listeners(RDMA_NL_GROUP_LS
)) {
1113 if (!ib_nl_make_request(query
, gfp_mask
))
1116 ib_sa_disable_local_svc(query
);
1119 ret
= ib_post_send_mad(query
->mad_buf
, NULL
);
1121 spin_lock_irqsave(&idr_lock
, flags
);
1122 idr_remove(&query_idr
, id
);
1123 spin_unlock_irqrestore(&idr_lock
, flags
);
1127 * It's not safe to dereference query any more, because the
1128 * send may already have completed and freed the query in
1131 return ret
? ret
: id
;
1134 void ib_sa_unpack_path(void *attribute
, struct ib_sa_path_rec
*rec
)
1136 ib_unpack(path_rec_table
, ARRAY_SIZE(path_rec_table
), attribute
, rec
);
1138 EXPORT_SYMBOL(ib_sa_unpack_path
);
1140 void ib_sa_pack_path(struct ib_sa_path_rec
*rec
, void *attribute
)
1142 ib_pack(path_rec_table
, ARRAY_SIZE(path_rec_table
), rec
, attribute
);
1144 EXPORT_SYMBOL(ib_sa_pack_path
);
1146 static void ib_sa_path_rec_callback(struct ib_sa_query
*sa_query
,
1148 struct ib_sa_mad
*mad
)
1150 struct ib_sa_path_query
*query
=
1151 container_of(sa_query
, struct ib_sa_path_query
, sa_query
);
1154 struct ib_sa_path_rec rec
;
1156 ib_unpack(path_rec_table
, ARRAY_SIZE(path_rec_table
),
1160 memset(rec
.dmac
, 0, ETH_ALEN
);
1161 query
->callback(status
, &rec
, query
->context
);
1163 query
->callback(status
, NULL
, query
->context
);
1166 static void ib_sa_path_rec_release(struct ib_sa_query
*sa_query
)
1168 kfree(container_of(sa_query
, struct ib_sa_path_query
, sa_query
));
1172 * ib_sa_path_rec_get - Start a Path get query
1174 * @device:device to send query on
1175 * @port_num: port number to send query on
1176 * @rec:Path Record to send in query
1177 * @comp_mask:component mask to send in query
1178 * @timeout_ms:time to wait for response
1179 * @gfp_mask:GFP mask to use for internal allocations
1180 * @callback:function called when query completes, times out or is
1182 * @context:opaque user context passed to callback
1183 * @sa_query:query context, used to cancel query
1185 * Send a Path Record Get query to the SA to look up a path. The
1186 * callback function will be called when the query completes (or
1187 * fails); status is 0 for a successful response, -EINTR if the query
1188 * is canceled, -ETIMEDOUT is the query timed out, or -EIO if an error
1189 * occurred sending the query. The resp parameter of the callback is
1190 * only valid if status is 0.
1192 * If the return value of ib_sa_path_rec_get() is negative, it is an
1193 * error code. Otherwise it is a query ID that can be used to cancel
1196 int ib_sa_path_rec_get(struct ib_sa_client
*client
,
1197 struct ib_device
*device
, u8 port_num
,
1198 struct ib_sa_path_rec
*rec
,
1199 ib_sa_comp_mask comp_mask
,
1200 int timeout_ms
, gfp_t gfp_mask
,
1201 void (*callback
)(int status
,
1202 struct ib_sa_path_rec
*resp
,
1205 struct ib_sa_query
**sa_query
)
1207 struct ib_sa_path_query
*query
;
1208 struct ib_sa_device
*sa_dev
= ib_get_client_data(device
, &sa_client
);
1209 struct ib_sa_port
*port
;
1210 struct ib_mad_agent
*agent
;
1211 struct ib_sa_mad
*mad
;
1217 port
= &sa_dev
->port
[port_num
- sa_dev
->start_port
];
1218 agent
= port
->agent
;
1220 query
= kzalloc(sizeof(*query
), gfp_mask
);
1224 query
->sa_query
.port
= port
;
1225 ret
= alloc_mad(&query
->sa_query
, gfp_mask
);
1229 ib_sa_client_get(client
);
1230 query
->sa_query
.client
= client
;
1231 query
->callback
= callback
;
1232 query
->context
= context
;
1234 mad
= query
->sa_query
.mad_buf
->mad
;
1235 init_mad(mad
, agent
);
1237 query
->sa_query
.callback
= callback
? ib_sa_path_rec_callback
: NULL
;
1238 query
->sa_query
.release
= ib_sa_path_rec_release
;
1239 mad
->mad_hdr
.method
= IB_MGMT_METHOD_GET
;
1240 mad
->mad_hdr
.attr_id
= cpu_to_be16(IB_SA_ATTR_PATH_REC
);
1241 mad
->sa_hdr
.comp_mask
= comp_mask
;
1243 ib_pack(path_rec_table
, ARRAY_SIZE(path_rec_table
), rec
, mad
->data
);
1245 *sa_query
= &query
->sa_query
;
1247 query
->sa_query
.flags
|= IB_SA_ENABLE_LOCAL_SERVICE
;
1248 query
->sa_query
.mad_buf
->context
[1] = rec
;
1250 ret
= send_mad(&query
->sa_query
, timeout_ms
, gfp_mask
);
1258 ib_sa_client_put(query
->sa_query
.client
);
1259 free_mad(&query
->sa_query
);
1265 EXPORT_SYMBOL(ib_sa_path_rec_get
);
1267 static void ib_sa_service_rec_callback(struct ib_sa_query
*sa_query
,
1269 struct ib_sa_mad
*mad
)
1271 struct ib_sa_service_query
*query
=
1272 container_of(sa_query
, struct ib_sa_service_query
, sa_query
);
1275 struct ib_sa_service_rec rec
;
1277 ib_unpack(service_rec_table
, ARRAY_SIZE(service_rec_table
),
1279 query
->callback(status
, &rec
, query
->context
);
1281 query
->callback(status
, NULL
, query
->context
);
1284 static void ib_sa_service_rec_release(struct ib_sa_query
*sa_query
)
1286 kfree(container_of(sa_query
, struct ib_sa_service_query
, sa_query
));
1290 * ib_sa_service_rec_query - Start Service Record operation
1292 * @device:device to send request on
1293 * @port_num: port number to send request on
1294 * @method:SA method - should be get, set, or delete
1295 * @rec:Service Record to send in request
1296 * @comp_mask:component mask to send in request
1297 * @timeout_ms:time to wait for response
1298 * @gfp_mask:GFP mask to use for internal allocations
1299 * @callback:function called when request completes, times out or is
1301 * @context:opaque user context passed to callback
1302 * @sa_query:request context, used to cancel request
1304 * Send a Service Record set/get/delete to the SA to register,
1305 * unregister or query a service record.
1306 * The callback function will be called when the request completes (or
1307 * fails); status is 0 for a successful response, -EINTR if the query
1308 * is canceled, -ETIMEDOUT is the query timed out, or -EIO if an error
1309 * occurred sending the query. The resp parameter of the callback is
1310 * only valid if status is 0.
1312 * If the return value of ib_sa_service_rec_query() is negative, it is an
1313 * error code. Otherwise it is a request ID that can be used to cancel
1316 int ib_sa_service_rec_query(struct ib_sa_client
*client
,
1317 struct ib_device
*device
, u8 port_num
, u8 method
,
1318 struct ib_sa_service_rec
*rec
,
1319 ib_sa_comp_mask comp_mask
,
1320 int timeout_ms
, gfp_t gfp_mask
,
1321 void (*callback
)(int status
,
1322 struct ib_sa_service_rec
*resp
,
1325 struct ib_sa_query
**sa_query
)
1327 struct ib_sa_service_query
*query
;
1328 struct ib_sa_device
*sa_dev
= ib_get_client_data(device
, &sa_client
);
1329 struct ib_sa_port
*port
;
1330 struct ib_mad_agent
*agent
;
1331 struct ib_sa_mad
*mad
;
1337 port
= &sa_dev
->port
[port_num
- sa_dev
->start_port
];
1338 agent
= port
->agent
;
1340 if (method
!= IB_MGMT_METHOD_GET
&&
1341 method
!= IB_MGMT_METHOD_SET
&&
1342 method
!= IB_SA_METHOD_DELETE
)
1345 query
= kzalloc(sizeof(*query
), gfp_mask
);
1349 query
->sa_query
.port
= port
;
1350 ret
= alloc_mad(&query
->sa_query
, gfp_mask
);
1354 ib_sa_client_get(client
);
1355 query
->sa_query
.client
= client
;
1356 query
->callback
= callback
;
1357 query
->context
= context
;
1359 mad
= query
->sa_query
.mad_buf
->mad
;
1360 init_mad(mad
, agent
);
1362 query
->sa_query
.callback
= callback
? ib_sa_service_rec_callback
: NULL
;
1363 query
->sa_query
.release
= ib_sa_service_rec_release
;
1364 mad
->mad_hdr
.method
= method
;
1365 mad
->mad_hdr
.attr_id
= cpu_to_be16(IB_SA_ATTR_SERVICE_REC
);
1366 mad
->sa_hdr
.comp_mask
= comp_mask
;
1368 ib_pack(service_rec_table
, ARRAY_SIZE(service_rec_table
),
1371 *sa_query
= &query
->sa_query
;
1373 ret
= send_mad(&query
->sa_query
, timeout_ms
, gfp_mask
);
1381 ib_sa_client_put(query
->sa_query
.client
);
1382 free_mad(&query
->sa_query
);
1388 EXPORT_SYMBOL(ib_sa_service_rec_query
);
1390 static void ib_sa_mcmember_rec_callback(struct ib_sa_query
*sa_query
,
1392 struct ib_sa_mad
*mad
)
1394 struct ib_sa_mcmember_query
*query
=
1395 container_of(sa_query
, struct ib_sa_mcmember_query
, sa_query
);
1398 struct ib_sa_mcmember_rec rec
;
1400 ib_unpack(mcmember_rec_table
, ARRAY_SIZE(mcmember_rec_table
),
1402 query
->callback(status
, &rec
, query
->context
);
1404 query
->callback(status
, NULL
, query
->context
);
1407 static void ib_sa_mcmember_rec_release(struct ib_sa_query
*sa_query
)
1409 kfree(container_of(sa_query
, struct ib_sa_mcmember_query
, sa_query
));
1412 int ib_sa_mcmember_rec_query(struct ib_sa_client
*client
,
1413 struct ib_device
*device
, u8 port_num
,
1415 struct ib_sa_mcmember_rec
*rec
,
1416 ib_sa_comp_mask comp_mask
,
1417 int timeout_ms
, gfp_t gfp_mask
,
1418 void (*callback
)(int status
,
1419 struct ib_sa_mcmember_rec
*resp
,
1422 struct ib_sa_query
**sa_query
)
1424 struct ib_sa_mcmember_query
*query
;
1425 struct ib_sa_device
*sa_dev
= ib_get_client_data(device
, &sa_client
);
1426 struct ib_sa_port
*port
;
1427 struct ib_mad_agent
*agent
;
1428 struct ib_sa_mad
*mad
;
1434 port
= &sa_dev
->port
[port_num
- sa_dev
->start_port
];
1435 agent
= port
->agent
;
1437 query
= kzalloc(sizeof(*query
), gfp_mask
);
1441 query
->sa_query
.port
= port
;
1442 ret
= alloc_mad(&query
->sa_query
, gfp_mask
);
1446 ib_sa_client_get(client
);
1447 query
->sa_query
.client
= client
;
1448 query
->callback
= callback
;
1449 query
->context
= context
;
1451 mad
= query
->sa_query
.mad_buf
->mad
;
1452 init_mad(mad
, agent
);
1454 query
->sa_query
.callback
= callback
? ib_sa_mcmember_rec_callback
: NULL
;
1455 query
->sa_query
.release
= ib_sa_mcmember_rec_release
;
1456 mad
->mad_hdr
.method
= method
;
1457 mad
->mad_hdr
.attr_id
= cpu_to_be16(IB_SA_ATTR_MC_MEMBER_REC
);
1458 mad
->sa_hdr
.comp_mask
= comp_mask
;
1460 ib_pack(mcmember_rec_table
, ARRAY_SIZE(mcmember_rec_table
),
1463 *sa_query
= &query
->sa_query
;
1465 ret
= send_mad(&query
->sa_query
, timeout_ms
, gfp_mask
);
1473 ib_sa_client_put(query
->sa_query
.client
);
1474 free_mad(&query
->sa_query
);
1481 /* Support GuidInfoRecord */
1482 static void ib_sa_guidinfo_rec_callback(struct ib_sa_query
*sa_query
,
1484 struct ib_sa_mad
*mad
)
1486 struct ib_sa_guidinfo_query
*query
=
1487 container_of(sa_query
, struct ib_sa_guidinfo_query
, sa_query
);
1490 struct ib_sa_guidinfo_rec rec
;
1492 ib_unpack(guidinfo_rec_table
, ARRAY_SIZE(guidinfo_rec_table
),
1494 query
->callback(status
, &rec
, query
->context
);
1496 query
->callback(status
, NULL
, query
->context
);
1499 static void ib_sa_guidinfo_rec_release(struct ib_sa_query
*sa_query
)
1501 kfree(container_of(sa_query
, struct ib_sa_guidinfo_query
, sa_query
));
1504 int ib_sa_guid_info_rec_query(struct ib_sa_client
*client
,
1505 struct ib_device
*device
, u8 port_num
,
1506 struct ib_sa_guidinfo_rec
*rec
,
1507 ib_sa_comp_mask comp_mask
, u8 method
,
1508 int timeout_ms
, gfp_t gfp_mask
,
1509 void (*callback
)(int status
,
1510 struct ib_sa_guidinfo_rec
*resp
,
1513 struct ib_sa_query
**sa_query
)
1515 struct ib_sa_guidinfo_query
*query
;
1516 struct ib_sa_device
*sa_dev
= ib_get_client_data(device
, &sa_client
);
1517 struct ib_sa_port
*port
;
1518 struct ib_mad_agent
*agent
;
1519 struct ib_sa_mad
*mad
;
1525 if (method
!= IB_MGMT_METHOD_GET
&&
1526 method
!= IB_MGMT_METHOD_SET
&&
1527 method
!= IB_SA_METHOD_DELETE
) {
1531 port
= &sa_dev
->port
[port_num
- sa_dev
->start_port
];
1532 agent
= port
->agent
;
1534 query
= kzalloc(sizeof(*query
), gfp_mask
);
1538 query
->sa_query
.port
= port
;
1539 ret
= alloc_mad(&query
->sa_query
, gfp_mask
);
1543 ib_sa_client_get(client
);
1544 query
->sa_query
.client
= client
;
1545 query
->callback
= callback
;
1546 query
->context
= context
;
1548 mad
= query
->sa_query
.mad_buf
->mad
;
1549 init_mad(mad
, agent
);
1551 query
->sa_query
.callback
= callback
? ib_sa_guidinfo_rec_callback
: NULL
;
1552 query
->sa_query
.release
= ib_sa_guidinfo_rec_release
;
1554 mad
->mad_hdr
.method
= method
;
1555 mad
->mad_hdr
.attr_id
= cpu_to_be16(IB_SA_ATTR_GUID_INFO_REC
);
1556 mad
->sa_hdr
.comp_mask
= comp_mask
;
1558 ib_pack(guidinfo_rec_table
, ARRAY_SIZE(guidinfo_rec_table
), rec
,
1561 *sa_query
= &query
->sa_query
;
1563 ret
= send_mad(&query
->sa_query
, timeout_ms
, gfp_mask
);
1571 ib_sa_client_put(query
->sa_query
.client
);
1572 free_mad(&query
->sa_query
);
1578 EXPORT_SYMBOL(ib_sa_guid_info_rec_query
);
1580 static void send_handler(struct ib_mad_agent
*agent
,
1581 struct ib_mad_send_wc
*mad_send_wc
)
1583 struct ib_sa_query
*query
= mad_send_wc
->send_buf
->context
[0];
1584 unsigned long flags
;
1586 if (query
->callback
)
1587 switch (mad_send_wc
->status
) {
1589 /* No callback -- already got recv */
1591 case IB_WC_RESP_TIMEOUT_ERR
:
1592 query
->callback(query
, -ETIMEDOUT
, NULL
);
1594 case IB_WC_WR_FLUSH_ERR
:
1595 query
->callback(query
, -EINTR
, NULL
);
1598 query
->callback(query
, -EIO
, NULL
);
1602 spin_lock_irqsave(&idr_lock
, flags
);
1603 idr_remove(&query_idr
, query
->id
);
1604 spin_unlock_irqrestore(&idr_lock
, flags
);
1607 ib_sa_client_put(query
->client
);
1608 query
->release(query
);
1611 static void recv_handler(struct ib_mad_agent
*mad_agent
,
1612 struct ib_mad_recv_wc
*mad_recv_wc
)
1614 struct ib_sa_query
*query
;
1615 struct ib_mad_send_buf
*mad_buf
;
1617 mad_buf
= (void *) (unsigned long) mad_recv_wc
->wc
->wr_id
;
1618 query
= mad_buf
->context
[0];
1620 if (query
->callback
) {
1621 if (mad_recv_wc
->wc
->status
== IB_WC_SUCCESS
)
1622 query
->callback(query
,
1623 mad_recv_wc
->recv_buf
.mad
->mad_hdr
.status
?
1625 (struct ib_sa_mad
*) mad_recv_wc
->recv_buf
.mad
);
1627 query
->callback(query
, -EIO
, NULL
);
1630 ib_free_recv_mad(mad_recv_wc
);
1633 static void ib_sa_add_one(struct ib_device
*device
)
1635 struct ib_sa_device
*sa_dev
;
1639 s
= rdma_start_port(device
);
1640 e
= rdma_end_port(device
);
1642 sa_dev
= kzalloc(sizeof *sa_dev
+
1643 (e
- s
+ 1) * sizeof (struct ib_sa_port
),
1648 sa_dev
->start_port
= s
;
1649 sa_dev
->end_port
= e
;
1651 for (i
= 0; i
<= e
- s
; ++i
) {
1652 spin_lock_init(&sa_dev
->port
[i
].ah_lock
);
1653 if (!rdma_cap_ib_sa(device
, i
+ 1))
1656 sa_dev
->port
[i
].sm_ah
= NULL
;
1657 sa_dev
->port
[i
].port_num
= i
+ s
;
1659 sa_dev
->port
[i
].agent
=
1660 ib_register_mad_agent(device
, i
+ s
, IB_QPT_GSI
,
1661 NULL
, 0, send_handler
,
1662 recv_handler
, sa_dev
, 0);
1663 if (IS_ERR(sa_dev
->port
[i
].agent
))
1666 INIT_WORK(&sa_dev
->port
[i
].update_task
, update_sm_ah
);
1674 ib_set_client_data(device
, &sa_client
, sa_dev
);
1677 * We register our event handler after everything is set up,
1678 * and then update our cached info after the event handler is
1679 * registered to avoid any problems if a port changes state
1680 * during our initialization.
1683 INIT_IB_EVENT_HANDLER(&sa_dev
->event_handler
, device
, ib_sa_event
);
1684 if (ib_register_event_handler(&sa_dev
->event_handler
))
1687 for (i
= 0; i
<= e
- s
; ++i
) {
1688 if (rdma_cap_ib_sa(device
, i
+ 1))
1689 update_sm_ah(&sa_dev
->port
[i
].update_task
);
1696 if (rdma_cap_ib_sa(device
, i
+ 1))
1697 ib_unregister_mad_agent(sa_dev
->port
[i
].agent
);
1704 static void ib_sa_remove_one(struct ib_device
*device
, void *client_data
)
1706 struct ib_sa_device
*sa_dev
= client_data
;
1712 ib_unregister_event_handler(&sa_dev
->event_handler
);
1714 flush_workqueue(ib_wq
);
1716 for (i
= 0; i
<= sa_dev
->end_port
- sa_dev
->start_port
; ++i
) {
1717 if (rdma_cap_ib_sa(device
, i
+ 1)) {
1718 ib_unregister_mad_agent(sa_dev
->port
[i
].agent
);
1719 if (sa_dev
->port
[i
].sm_ah
)
1720 kref_put(&sa_dev
->port
[i
].sm_ah
->ref
, free_sm_ah
);
1728 static int __init
ib_sa_init(void)
1732 get_random_bytes(&tid
, sizeof tid
);
1734 atomic_set(&ib_nl_sa_request_seq
, 0);
1736 ret
= ib_register_client(&sa_client
);
1738 printk(KERN_ERR
"Couldn't register ib_sa client\n");
1744 printk(KERN_ERR
"Couldn't initialize multicast handling\n");
1748 ib_nl_wq
= create_singlethread_workqueue("ib_nl_sa_wq");
1754 if (ibnl_add_client(RDMA_NL_LS
, RDMA_NL_LS_NUM_OPS
,
1756 pr_err("Failed to add netlink callback\n");
1760 INIT_DELAYED_WORK(&ib_nl_timed_work
, ib_nl_request_timeout
);
1764 destroy_workqueue(ib_nl_wq
);
1768 ib_unregister_client(&sa_client
);
1773 static void __exit
ib_sa_cleanup(void)
1775 ibnl_remove_client(RDMA_NL_LS
);
1776 cancel_delayed_work(&ib_nl_timed_work
);
1777 flush_workqueue(ib_nl_wq
);
1778 destroy_workqueue(ib_nl_wq
);
1780 ib_unregister_client(&sa_client
);
1781 idr_destroy(&query_idr
);
1784 module_init(ib_sa_init
);
1785 module_exit(ib_sa_cleanup
);