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>
52 #include <rdma/ib_addr.h>
54 #include "core_priv.h"
56 #define IB_SA_LOCAL_SVC_TIMEOUT_MIN 100
57 #define IB_SA_LOCAL_SVC_TIMEOUT_DEFAULT 2000
58 #define IB_SA_LOCAL_SVC_TIMEOUT_MAX 200000
59 static int sa_local_svc_timeout_ms
= IB_SA_LOCAL_SVC_TIMEOUT_DEFAULT
;
68 struct ib_sa_classport_cache
{
70 struct ib_class_port_info data
;
74 struct ib_mad_agent
*agent
;
75 struct ib_sa_sm_ah
*sm_ah
;
76 struct work_struct update_task
;
77 struct ib_sa_classport_cache classport_info
;
78 spinlock_t classport_lock
; /* protects class port info set */
84 int start_port
, end_port
;
85 struct ib_event_handler event_handler
;
86 struct ib_sa_port port
[0];
90 void (*callback
)(struct ib_sa_query
*, int, struct ib_sa_mad
*);
91 void (*release
)(struct ib_sa_query
*);
92 struct ib_sa_client
*client
;
93 struct ib_sa_port
*port
;
94 struct ib_mad_send_buf
*mad_buf
;
95 struct ib_sa_sm_ah
*sm_ah
;
98 struct list_head list
; /* Local svc request list */
99 u32 seq
; /* Local svc request sequence number */
100 unsigned long timeout
; /* Local svc timeout */
101 u8 path_use
; /* How will the pathrecord be used */
104 #define IB_SA_ENABLE_LOCAL_SERVICE 0x00000001
105 #define IB_SA_CANCEL 0x00000002
107 struct ib_sa_service_query
{
108 void (*callback
)(int, struct ib_sa_service_rec
*, void *);
110 struct ib_sa_query sa_query
;
113 struct ib_sa_path_query
{
114 void (*callback
)(int, struct ib_sa_path_rec
*, void *);
116 struct ib_sa_query sa_query
;
119 struct ib_sa_guidinfo_query
{
120 void (*callback
)(int, struct ib_sa_guidinfo_rec
*, void *);
122 struct ib_sa_query sa_query
;
125 struct ib_sa_classport_info_query
{
126 void (*callback
)(int, struct ib_class_port_info
*, void *);
128 struct ib_sa_query sa_query
;
131 struct ib_sa_mcmember_query
{
132 void (*callback
)(int, struct ib_sa_mcmember_rec
*, void *);
134 struct ib_sa_query sa_query
;
137 static LIST_HEAD(ib_nl_request_list
);
138 static DEFINE_SPINLOCK(ib_nl_request_lock
);
139 static atomic_t ib_nl_sa_request_seq
;
140 static struct workqueue_struct
*ib_nl_wq
;
141 static struct delayed_work ib_nl_timed_work
;
142 static const struct nla_policy ib_nl_policy
[LS_NLA_TYPE_MAX
] = {
143 [LS_NLA_TYPE_PATH_RECORD
] = {.type
= NLA_BINARY
,
144 .len
= sizeof(struct ib_path_rec_data
)},
145 [LS_NLA_TYPE_TIMEOUT
] = {.type
= NLA_U32
},
146 [LS_NLA_TYPE_SERVICE_ID
] = {.type
= NLA_U64
},
147 [LS_NLA_TYPE_DGID
] = {.type
= NLA_BINARY
,
148 .len
= sizeof(struct rdma_nla_ls_gid
)},
149 [LS_NLA_TYPE_SGID
] = {.type
= NLA_BINARY
,
150 .len
= sizeof(struct rdma_nla_ls_gid
)},
151 [LS_NLA_TYPE_TCLASS
] = {.type
= NLA_U8
},
152 [LS_NLA_TYPE_PKEY
] = {.type
= NLA_U16
},
153 [LS_NLA_TYPE_QOS_CLASS
] = {.type
= NLA_U16
},
157 static void ib_sa_add_one(struct ib_device
*device
);
158 static void ib_sa_remove_one(struct ib_device
*device
, void *client_data
);
160 static struct ib_client sa_client
= {
162 .add
= ib_sa_add_one
,
163 .remove
= ib_sa_remove_one
166 static DEFINE_SPINLOCK(idr_lock
);
167 static DEFINE_IDR(query_idr
);
169 static DEFINE_SPINLOCK(tid_lock
);
172 #define PATH_REC_FIELD(field) \
173 .struct_offset_bytes = offsetof(struct ib_sa_path_rec, field), \
174 .struct_size_bytes = sizeof ((struct ib_sa_path_rec *) 0)->field, \
175 .field_name = "sa_path_rec:" #field
177 static const struct ib_field path_rec_table
[] = {
178 { PATH_REC_FIELD(service_id
),
182 { PATH_REC_FIELD(dgid
),
186 { PATH_REC_FIELD(sgid
),
190 { PATH_REC_FIELD(dlid
),
194 { PATH_REC_FIELD(slid
),
198 { PATH_REC_FIELD(raw_traffic
),
206 { PATH_REC_FIELD(flow_label
),
210 { PATH_REC_FIELD(hop_limit
),
214 { PATH_REC_FIELD(traffic_class
),
218 { PATH_REC_FIELD(reversible
),
222 { PATH_REC_FIELD(numb_path
),
226 { PATH_REC_FIELD(pkey
),
230 { PATH_REC_FIELD(qos_class
),
234 { PATH_REC_FIELD(sl
),
238 { PATH_REC_FIELD(mtu_selector
),
242 { PATH_REC_FIELD(mtu
),
246 { PATH_REC_FIELD(rate_selector
),
250 { PATH_REC_FIELD(rate
),
254 { PATH_REC_FIELD(packet_life_time_selector
),
258 { PATH_REC_FIELD(packet_life_time
),
262 { PATH_REC_FIELD(preference
),
272 #define MCMEMBER_REC_FIELD(field) \
273 .struct_offset_bytes = offsetof(struct ib_sa_mcmember_rec, field), \
274 .struct_size_bytes = sizeof ((struct ib_sa_mcmember_rec *) 0)->field, \
275 .field_name = "sa_mcmember_rec:" #field
277 static const struct ib_field mcmember_rec_table
[] = {
278 { MCMEMBER_REC_FIELD(mgid
),
282 { MCMEMBER_REC_FIELD(port_gid
),
286 { MCMEMBER_REC_FIELD(qkey
),
290 { MCMEMBER_REC_FIELD(mlid
),
294 { MCMEMBER_REC_FIELD(mtu_selector
),
298 { MCMEMBER_REC_FIELD(mtu
),
302 { MCMEMBER_REC_FIELD(traffic_class
),
306 { MCMEMBER_REC_FIELD(pkey
),
310 { MCMEMBER_REC_FIELD(rate_selector
),
314 { MCMEMBER_REC_FIELD(rate
),
318 { MCMEMBER_REC_FIELD(packet_life_time_selector
),
322 { MCMEMBER_REC_FIELD(packet_life_time
),
326 { MCMEMBER_REC_FIELD(sl
),
330 { MCMEMBER_REC_FIELD(flow_label
),
334 { MCMEMBER_REC_FIELD(hop_limit
),
338 { MCMEMBER_REC_FIELD(scope
),
342 { MCMEMBER_REC_FIELD(join_state
),
346 { MCMEMBER_REC_FIELD(proxy_join
),
356 #define SERVICE_REC_FIELD(field) \
357 .struct_offset_bytes = offsetof(struct ib_sa_service_rec, field), \
358 .struct_size_bytes = sizeof ((struct ib_sa_service_rec *) 0)->field, \
359 .field_name = "sa_service_rec:" #field
361 static const struct ib_field service_rec_table
[] = {
362 { SERVICE_REC_FIELD(id
),
366 { SERVICE_REC_FIELD(gid
),
370 { SERVICE_REC_FIELD(pkey
),
374 { SERVICE_REC_FIELD(lease
),
378 { SERVICE_REC_FIELD(key
),
382 { SERVICE_REC_FIELD(name
),
386 { SERVICE_REC_FIELD(data8
),
390 { SERVICE_REC_FIELD(data16
),
394 { SERVICE_REC_FIELD(data32
),
398 { SERVICE_REC_FIELD(data64
),
404 #define CLASSPORTINFO_REC_FIELD(field) \
405 .struct_offset_bytes = offsetof(struct ib_class_port_info, field), \
406 .struct_size_bytes = sizeof((struct ib_class_port_info *)0)->field, \
407 .field_name = "ib_class_port_info:" #field
409 static const struct ib_field classport_info_rec_table
[] = {
410 { CLASSPORTINFO_REC_FIELD(base_version
),
414 { CLASSPORTINFO_REC_FIELD(class_version
),
418 { CLASSPORTINFO_REC_FIELD(capability_mask
),
422 { CLASSPORTINFO_REC_FIELD(cap_mask2_resp_time
),
426 { CLASSPORTINFO_REC_FIELD(redirect_gid
),
430 { CLASSPORTINFO_REC_FIELD(redirect_tcslfl
),
434 { CLASSPORTINFO_REC_FIELD(redirect_lid
),
438 { CLASSPORTINFO_REC_FIELD(redirect_pkey
),
443 { CLASSPORTINFO_REC_FIELD(redirect_qp
),
447 { CLASSPORTINFO_REC_FIELD(redirect_qkey
),
452 { CLASSPORTINFO_REC_FIELD(trap_gid
),
456 { CLASSPORTINFO_REC_FIELD(trap_tcslfl
),
461 { CLASSPORTINFO_REC_FIELD(trap_lid
),
465 { CLASSPORTINFO_REC_FIELD(trap_pkey
),
470 { CLASSPORTINFO_REC_FIELD(trap_hlqp
),
474 { CLASSPORTINFO_REC_FIELD(trap_qkey
),
480 #define GUIDINFO_REC_FIELD(field) \
481 .struct_offset_bytes = offsetof(struct ib_sa_guidinfo_rec, field), \
482 .struct_size_bytes = sizeof((struct ib_sa_guidinfo_rec *) 0)->field, \
483 .field_name = "sa_guidinfo_rec:" #field
485 static const struct ib_field guidinfo_rec_table
[] = {
486 { GUIDINFO_REC_FIELD(lid
),
490 { GUIDINFO_REC_FIELD(block_num
),
494 { GUIDINFO_REC_FIELD(res1
),
498 { GUIDINFO_REC_FIELD(res2
),
502 { GUIDINFO_REC_FIELD(guid_info_list
),
508 static inline void ib_sa_disable_local_svc(struct ib_sa_query
*query
)
510 query
->flags
&= ~IB_SA_ENABLE_LOCAL_SERVICE
;
513 static inline int ib_sa_query_cancelled(struct ib_sa_query
*query
)
515 return (query
->flags
& IB_SA_CANCEL
);
518 static void ib_nl_set_path_rec_attrs(struct sk_buff
*skb
,
519 struct ib_sa_query
*query
)
521 struct ib_sa_path_rec
*sa_rec
= query
->mad_buf
->context
[1];
522 struct ib_sa_mad
*mad
= query
->mad_buf
->mad
;
523 ib_sa_comp_mask comp_mask
= mad
->sa_hdr
.comp_mask
;
526 struct rdma_ls_resolve_header
*header
;
528 query
->mad_buf
->context
[1] = NULL
;
530 /* Construct the family header first */
531 header
= (struct rdma_ls_resolve_header
*)
532 skb_put(skb
, NLMSG_ALIGN(sizeof(*header
)));
533 memcpy(header
->device_name
, query
->port
->agent
->device
->name
,
535 header
->port_num
= query
->port
->port_num
;
537 if ((comp_mask
& IB_SA_PATH_REC_REVERSIBLE
) &&
538 sa_rec
->reversible
!= 0)
539 query
->path_use
= LS_RESOLVE_PATH_USE_GMP
;
541 query
->path_use
= LS_RESOLVE_PATH_USE_UNIDIRECTIONAL
;
542 header
->path_use
= query
->path_use
;
544 /* Now build the attributes */
545 if (comp_mask
& IB_SA_PATH_REC_SERVICE_ID
) {
546 val64
= be64_to_cpu(sa_rec
->service_id
);
547 nla_put(skb
, RDMA_NLA_F_MANDATORY
| LS_NLA_TYPE_SERVICE_ID
,
548 sizeof(val64
), &val64
);
550 if (comp_mask
& IB_SA_PATH_REC_DGID
)
551 nla_put(skb
, RDMA_NLA_F_MANDATORY
| LS_NLA_TYPE_DGID
,
552 sizeof(sa_rec
->dgid
), &sa_rec
->dgid
);
553 if (comp_mask
& IB_SA_PATH_REC_SGID
)
554 nla_put(skb
, RDMA_NLA_F_MANDATORY
| LS_NLA_TYPE_SGID
,
555 sizeof(sa_rec
->sgid
), &sa_rec
->sgid
);
556 if (comp_mask
& IB_SA_PATH_REC_TRAFFIC_CLASS
)
557 nla_put(skb
, RDMA_NLA_F_MANDATORY
| LS_NLA_TYPE_TCLASS
,
558 sizeof(sa_rec
->traffic_class
), &sa_rec
->traffic_class
);
560 if (comp_mask
& IB_SA_PATH_REC_PKEY
) {
561 val16
= be16_to_cpu(sa_rec
->pkey
);
562 nla_put(skb
, RDMA_NLA_F_MANDATORY
| LS_NLA_TYPE_PKEY
,
563 sizeof(val16
), &val16
);
565 if (comp_mask
& IB_SA_PATH_REC_QOS_CLASS
) {
566 val16
= be16_to_cpu(sa_rec
->qos_class
);
567 nla_put(skb
, RDMA_NLA_F_MANDATORY
| LS_NLA_TYPE_QOS_CLASS
,
568 sizeof(val16
), &val16
);
572 static int ib_nl_get_path_rec_attrs_len(ib_sa_comp_mask comp_mask
)
576 if (comp_mask
& IB_SA_PATH_REC_SERVICE_ID
)
577 len
+= nla_total_size(sizeof(u64
));
578 if (comp_mask
& IB_SA_PATH_REC_DGID
)
579 len
+= nla_total_size(sizeof(struct rdma_nla_ls_gid
));
580 if (comp_mask
& IB_SA_PATH_REC_SGID
)
581 len
+= nla_total_size(sizeof(struct rdma_nla_ls_gid
));
582 if (comp_mask
& IB_SA_PATH_REC_TRAFFIC_CLASS
)
583 len
+= nla_total_size(sizeof(u8
));
584 if (comp_mask
& IB_SA_PATH_REC_PKEY
)
585 len
+= nla_total_size(sizeof(u16
));
586 if (comp_mask
& IB_SA_PATH_REC_QOS_CLASS
)
587 len
+= nla_total_size(sizeof(u16
));
590 * Make sure that at least some of the required comp_mask bits are
593 if (WARN_ON(len
== 0))
596 /* Add the family header */
597 len
+= NLMSG_ALIGN(sizeof(struct rdma_ls_resolve_header
));
602 static int ib_nl_send_msg(struct ib_sa_query
*query
, gfp_t gfp_mask
)
604 struct sk_buff
*skb
= NULL
;
605 struct nlmsghdr
*nlh
;
608 struct ib_sa_mad
*mad
;
611 mad
= query
->mad_buf
->mad
;
612 len
= ib_nl_get_path_rec_attrs_len(mad
->sa_hdr
.comp_mask
);
616 skb
= nlmsg_new(len
, gfp_mask
);
620 /* Put nlmsg header only for now */
621 data
= ibnl_put_msg(skb
, &nlh
, query
->seq
, 0, RDMA_NL_LS
,
622 RDMA_NL_LS_OP_RESOLVE
, NLM_F_REQUEST
);
629 ib_nl_set_path_rec_attrs(skb
, query
);
631 /* Repair the nlmsg header length */
634 ret
= ibnl_multicast(skb
, nlh
, RDMA_NL_GROUP_LS
, gfp_mask
);
643 static int ib_nl_make_request(struct ib_sa_query
*query
, gfp_t gfp_mask
)
649 INIT_LIST_HEAD(&query
->list
);
650 query
->seq
= (u32
)atomic_inc_return(&ib_nl_sa_request_seq
);
652 /* Put the request on the list first.*/
653 spin_lock_irqsave(&ib_nl_request_lock
, flags
);
654 delay
= msecs_to_jiffies(sa_local_svc_timeout_ms
);
655 query
->timeout
= delay
+ jiffies
;
656 list_add_tail(&query
->list
, &ib_nl_request_list
);
657 /* Start the timeout if this is the only request */
658 if (ib_nl_request_list
.next
== &query
->list
)
659 queue_delayed_work(ib_nl_wq
, &ib_nl_timed_work
, delay
);
660 spin_unlock_irqrestore(&ib_nl_request_lock
, flags
);
662 ret
= ib_nl_send_msg(query
, gfp_mask
);
665 /* Remove the request */
666 spin_lock_irqsave(&ib_nl_request_lock
, flags
);
667 list_del(&query
->list
);
668 spin_unlock_irqrestore(&ib_nl_request_lock
, flags
);
676 static int ib_nl_cancel_request(struct ib_sa_query
*query
)
679 struct ib_sa_query
*wait_query
;
682 spin_lock_irqsave(&ib_nl_request_lock
, flags
);
683 list_for_each_entry(wait_query
, &ib_nl_request_list
, list
) {
684 /* Let the timeout to take care of the callback */
685 if (query
== wait_query
) {
686 query
->flags
|= IB_SA_CANCEL
;
687 query
->timeout
= jiffies
;
688 list_move(&query
->list
, &ib_nl_request_list
);
690 mod_delayed_work(ib_nl_wq
, &ib_nl_timed_work
, 1);
694 spin_unlock_irqrestore(&ib_nl_request_lock
, flags
);
699 static void send_handler(struct ib_mad_agent
*agent
,
700 struct ib_mad_send_wc
*mad_send_wc
);
702 static void ib_nl_process_good_resolve_rsp(struct ib_sa_query
*query
,
703 const struct nlmsghdr
*nlh
)
705 struct ib_mad_send_wc mad_send_wc
;
706 struct ib_sa_mad
*mad
= NULL
;
707 const struct nlattr
*head
, *curr
;
708 struct ib_path_rec_data
*rec
;
713 if (query
->callback
) {
714 head
= (const struct nlattr
*) nlmsg_data(nlh
);
715 len
= nlmsg_len(nlh
);
716 switch (query
->path_use
) {
717 case LS_RESOLVE_PATH_USE_UNIDIRECTIONAL
:
718 mask
= IB_PATH_PRIMARY
| IB_PATH_OUTBOUND
;
721 case LS_RESOLVE_PATH_USE_ALL
:
722 case LS_RESOLVE_PATH_USE_GMP
:
724 mask
= IB_PATH_PRIMARY
| IB_PATH_GMP
|
725 IB_PATH_BIDIRECTIONAL
;
728 nla_for_each_attr(curr
, head
, len
, rem
) {
729 if (curr
->nla_type
== LS_NLA_TYPE_PATH_RECORD
) {
730 rec
= nla_data(curr
);
732 * Get the first one. In the future, we may
733 * need to get up to 6 pathrecords.
735 if ((rec
->flags
& mask
) == mask
) {
736 mad
= query
->mad_buf
->mad
;
737 mad
->mad_hdr
.method
|=
739 memcpy(mad
->data
, rec
->path_rec
,
740 sizeof(rec
->path_rec
));
746 query
->callback(query
, status
, mad
);
749 mad_send_wc
.send_buf
= query
->mad_buf
;
750 mad_send_wc
.status
= IB_WC_SUCCESS
;
751 send_handler(query
->mad_buf
->mad_agent
, &mad_send_wc
);
754 static void ib_nl_request_timeout(struct work_struct
*work
)
757 struct ib_sa_query
*query
;
759 struct ib_mad_send_wc mad_send_wc
;
762 spin_lock_irqsave(&ib_nl_request_lock
, flags
);
763 while (!list_empty(&ib_nl_request_list
)) {
764 query
= list_entry(ib_nl_request_list
.next
,
765 struct ib_sa_query
, list
);
767 if (time_after(query
->timeout
, jiffies
)) {
768 delay
= query
->timeout
- jiffies
;
769 if ((long)delay
<= 0)
771 queue_delayed_work(ib_nl_wq
, &ib_nl_timed_work
, delay
);
775 list_del(&query
->list
);
776 ib_sa_disable_local_svc(query
);
777 /* Hold the lock to protect against query cancellation */
778 if (ib_sa_query_cancelled(query
))
781 ret
= ib_post_send_mad(query
->mad_buf
, NULL
);
783 mad_send_wc
.send_buf
= query
->mad_buf
;
784 mad_send_wc
.status
= IB_WC_WR_FLUSH_ERR
;
785 spin_unlock_irqrestore(&ib_nl_request_lock
, flags
);
786 send_handler(query
->port
->agent
, &mad_send_wc
);
787 spin_lock_irqsave(&ib_nl_request_lock
, flags
);
790 spin_unlock_irqrestore(&ib_nl_request_lock
, flags
);
793 int ib_nl_handle_set_timeout(struct sk_buff
*skb
,
794 struct netlink_callback
*cb
)
796 const struct nlmsghdr
*nlh
= (struct nlmsghdr
*)cb
->nlh
;
797 int timeout
, delta
, abs_delta
;
798 const struct nlattr
*attr
;
800 struct ib_sa_query
*query
;
802 struct nlattr
*tb
[LS_NLA_TYPE_MAX
];
805 if (!(nlh
->nlmsg_flags
& NLM_F_REQUEST
) ||
806 !(NETLINK_CB(skb
).sk
) ||
807 !netlink_capable(skb
, CAP_NET_ADMIN
))
810 ret
= nla_parse(tb
, LS_NLA_TYPE_MAX
- 1, nlmsg_data(nlh
),
811 nlmsg_len(nlh
), ib_nl_policy
);
812 attr
= (const struct nlattr
*)tb
[LS_NLA_TYPE_TIMEOUT
];
816 timeout
= *(int *) nla_data(attr
);
817 if (timeout
< IB_SA_LOCAL_SVC_TIMEOUT_MIN
)
818 timeout
= IB_SA_LOCAL_SVC_TIMEOUT_MIN
;
819 if (timeout
> IB_SA_LOCAL_SVC_TIMEOUT_MAX
)
820 timeout
= IB_SA_LOCAL_SVC_TIMEOUT_MAX
;
822 delta
= timeout
- sa_local_svc_timeout_ms
;
829 spin_lock_irqsave(&ib_nl_request_lock
, flags
);
830 sa_local_svc_timeout_ms
= timeout
;
831 list_for_each_entry(query
, &ib_nl_request_list
, list
) {
832 if (delta
< 0 && abs_delta
> query
->timeout
)
835 query
->timeout
+= delta
;
837 /* Get the new delay from the first entry */
839 delay
= query
->timeout
- jiffies
;
845 mod_delayed_work(ib_nl_wq
, &ib_nl_timed_work
,
846 (unsigned long)delay
);
847 spin_unlock_irqrestore(&ib_nl_request_lock
, flags
);
854 static inline int ib_nl_is_good_resolve_resp(const struct nlmsghdr
*nlh
)
856 struct nlattr
*tb
[LS_NLA_TYPE_MAX
];
859 if (nlh
->nlmsg_flags
& RDMA_NL_LS_F_ERR
)
862 ret
= nla_parse(tb
, LS_NLA_TYPE_MAX
- 1, nlmsg_data(nlh
),
863 nlmsg_len(nlh
), ib_nl_policy
);
870 int ib_nl_handle_resolve_resp(struct sk_buff
*skb
,
871 struct netlink_callback
*cb
)
873 const struct nlmsghdr
*nlh
= (struct nlmsghdr
*)cb
->nlh
;
875 struct ib_sa_query
*query
;
876 struct ib_mad_send_buf
*send_buf
;
877 struct ib_mad_send_wc mad_send_wc
;
881 if ((nlh
->nlmsg_flags
& NLM_F_REQUEST
) ||
882 !(NETLINK_CB(skb
).sk
) ||
883 !netlink_capable(skb
, CAP_NET_ADMIN
))
886 spin_lock_irqsave(&ib_nl_request_lock
, flags
);
887 list_for_each_entry(query
, &ib_nl_request_list
, list
) {
889 * If the query is cancelled, let the timeout routine
892 if (nlh
->nlmsg_seq
== query
->seq
) {
893 found
= !ib_sa_query_cancelled(query
);
895 list_del(&query
->list
);
901 spin_unlock_irqrestore(&ib_nl_request_lock
, flags
);
905 send_buf
= query
->mad_buf
;
907 if (!ib_nl_is_good_resolve_resp(nlh
)) {
908 /* if the result is a failure, send out the packet via IB */
909 ib_sa_disable_local_svc(query
);
910 ret
= ib_post_send_mad(query
->mad_buf
, NULL
);
911 spin_unlock_irqrestore(&ib_nl_request_lock
, flags
);
913 mad_send_wc
.send_buf
= send_buf
;
914 mad_send_wc
.status
= IB_WC_GENERAL_ERR
;
915 send_handler(query
->port
->agent
, &mad_send_wc
);
918 spin_unlock_irqrestore(&ib_nl_request_lock
, flags
);
919 ib_nl_process_good_resolve_rsp(query
, nlh
);
926 static void free_sm_ah(struct kref
*kref
)
928 struct ib_sa_sm_ah
*sm_ah
= container_of(kref
, struct ib_sa_sm_ah
, ref
);
930 ib_destroy_ah(sm_ah
->ah
);
934 static void update_sm_ah(struct work_struct
*work
)
936 struct ib_sa_port
*port
=
937 container_of(work
, struct ib_sa_port
, update_task
);
938 struct ib_sa_sm_ah
*new_ah
;
939 struct ib_port_attr port_attr
;
940 struct ib_ah_attr ah_attr
;
942 if (ib_query_port(port
->agent
->device
, port
->port_num
, &port_attr
)) {
943 pr_warn("Couldn't query port\n");
947 new_ah
= kmalloc(sizeof *new_ah
, GFP_KERNEL
);
952 kref_init(&new_ah
->ref
);
953 new_ah
->src_path_mask
= (1 << port_attr
.lmc
) - 1;
955 new_ah
->pkey_index
= 0;
956 if (ib_find_pkey(port
->agent
->device
, port
->port_num
,
957 IB_DEFAULT_PKEY_FULL
, &new_ah
->pkey_index
))
958 pr_err("Couldn't find index for default PKey\n");
960 memset(&ah_attr
, 0, sizeof ah_attr
);
961 ah_attr
.dlid
= port_attr
.sm_lid
;
962 ah_attr
.sl
= port_attr
.sm_sl
;
963 ah_attr
.port_num
= port
->port_num
;
964 if (port_attr
.grh_required
) {
965 ah_attr
.ah_flags
= IB_AH_GRH
;
966 ah_attr
.grh
.dgid
.global
.subnet_prefix
= cpu_to_be64(port_attr
.subnet_prefix
);
967 ah_attr
.grh
.dgid
.global
.interface_id
= cpu_to_be64(IB_SA_WELL_KNOWN_GUID
);
970 new_ah
->ah
= ib_create_ah(port
->agent
->qp
->pd
, &ah_attr
);
971 if (IS_ERR(new_ah
->ah
)) {
972 pr_warn("Couldn't create new SM AH\n");
977 spin_lock_irq(&port
->ah_lock
);
979 kref_put(&port
->sm_ah
->ref
, free_sm_ah
);
980 port
->sm_ah
= new_ah
;
981 spin_unlock_irq(&port
->ah_lock
);
985 static void ib_sa_event(struct ib_event_handler
*handler
, struct ib_event
*event
)
987 if (event
->event
== IB_EVENT_PORT_ERR
||
988 event
->event
== IB_EVENT_PORT_ACTIVE
||
989 event
->event
== IB_EVENT_LID_CHANGE
||
990 event
->event
== IB_EVENT_PKEY_CHANGE
||
991 event
->event
== IB_EVENT_SM_CHANGE
||
992 event
->event
== IB_EVENT_CLIENT_REREGISTER
) {
994 struct ib_sa_device
*sa_dev
=
995 container_of(handler
, typeof(*sa_dev
), event_handler
);
996 struct ib_sa_port
*port
=
997 &sa_dev
->port
[event
->element
.port_num
- sa_dev
->start_port
];
999 if (!rdma_cap_ib_sa(handler
->device
, port
->port_num
))
1002 spin_lock_irqsave(&port
->ah_lock
, flags
);
1004 kref_put(&port
->sm_ah
->ref
, free_sm_ah
);
1006 spin_unlock_irqrestore(&port
->ah_lock
, flags
);
1008 if (event
->event
== IB_EVENT_SM_CHANGE
||
1009 event
->event
== IB_EVENT_CLIENT_REREGISTER
||
1010 event
->event
== IB_EVENT_LID_CHANGE
) {
1011 spin_lock_irqsave(&port
->classport_lock
, flags
);
1012 port
->classport_info
.valid
= false;
1013 spin_unlock_irqrestore(&port
->classport_lock
, flags
);
1015 queue_work(ib_wq
, &sa_dev
->port
[event
->element
.port_num
-
1016 sa_dev
->start_port
].update_task
);
1020 void ib_sa_register_client(struct ib_sa_client
*client
)
1022 atomic_set(&client
->users
, 1);
1023 init_completion(&client
->comp
);
1025 EXPORT_SYMBOL(ib_sa_register_client
);
1027 void ib_sa_unregister_client(struct ib_sa_client
*client
)
1029 ib_sa_client_put(client
);
1030 wait_for_completion(&client
->comp
);
1032 EXPORT_SYMBOL(ib_sa_unregister_client
);
1035 * ib_sa_cancel_query - try to cancel an SA query
1036 * @id:ID of query to cancel
1037 * @query:query pointer to cancel
1039 * Try to cancel an SA query. If the id and query don't match up or
1040 * the query has already completed, nothing is done. Otherwise the
1041 * query is canceled and will complete with a status of -EINTR.
1043 void ib_sa_cancel_query(int id
, struct ib_sa_query
*query
)
1045 unsigned long flags
;
1046 struct ib_mad_agent
*agent
;
1047 struct ib_mad_send_buf
*mad_buf
;
1049 spin_lock_irqsave(&idr_lock
, flags
);
1050 if (idr_find(&query_idr
, id
) != query
) {
1051 spin_unlock_irqrestore(&idr_lock
, flags
);
1054 agent
= query
->port
->agent
;
1055 mad_buf
= query
->mad_buf
;
1056 spin_unlock_irqrestore(&idr_lock
, flags
);
1059 * If the query is still on the netlink request list, schedule
1060 * it to be cancelled by the timeout routine. Otherwise, it has been
1061 * sent to the MAD layer and has to be cancelled from there.
1063 if (!ib_nl_cancel_request(query
))
1064 ib_cancel_mad(agent
, mad_buf
);
1066 EXPORT_SYMBOL(ib_sa_cancel_query
);
1068 static u8
get_src_path_mask(struct ib_device
*device
, u8 port_num
)
1070 struct ib_sa_device
*sa_dev
;
1071 struct ib_sa_port
*port
;
1072 unsigned long flags
;
1075 sa_dev
= ib_get_client_data(device
, &sa_client
);
1079 port
= &sa_dev
->port
[port_num
- sa_dev
->start_port
];
1080 spin_lock_irqsave(&port
->ah_lock
, flags
);
1081 src_path_mask
= port
->sm_ah
? port
->sm_ah
->src_path_mask
: 0x7f;
1082 spin_unlock_irqrestore(&port
->ah_lock
, flags
);
1084 return src_path_mask
;
1087 int ib_init_ah_from_path(struct ib_device
*device
, u8 port_num
,
1088 struct ib_sa_path_rec
*rec
, struct ib_ah_attr
*ah_attr
)
1093 struct net_device
*ndev
= NULL
;
1095 memset(ah_attr
, 0, sizeof *ah_attr
);
1096 ah_attr
->dlid
= be16_to_cpu(rec
->dlid
);
1097 ah_attr
->sl
= rec
->sl
;
1098 ah_attr
->src_path_bits
= be16_to_cpu(rec
->slid
) &
1099 get_src_path_mask(device
, port_num
);
1100 ah_attr
->port_num
= port_num
;
1101 ah_attr
->static_rate
= rec
->rate
;
1103 use_roce
= rdma_cap_eth_ah(device
, port_num
);
1106 struct net_device
*idev
;
1107 struct net_device
*resolved_dev
;
1108 struct rdma_dev_addr dev_addr
= {.bound_dev_if
= rec
->ifindex
,
1109 .net
= rec
->net
? rec
->net
:
1112 struct sockaddr _sockaddr
;
1113 struct sockaddr_in _sockaddr_in
;
1114 struct sockaddr_in6 _sockaddr_in6
;
1115 } sgid_addr
, dgid_addr
;
1117 if (!device
->get_netdev
)
1120 rdma_gid2ip(&sgid_addr
._sockaddr
, &rec
->sgid
);
1121 rdma_gid2ip(&dgid_addr
._sockaddr
, &rec
->dgid
);
1123 /* validate the route */
1124 ret
= rdma_resolve_ip_route(&sgid_addr
._sockaddr
,
1125 &dgid_addr
._sockaddr
, &dev_addr
);
1129 if ((dev_addr
.network
== RDMA_NETWORK_IPV4
||
1130 dev_addr
.network
== RDMA_NETWORK_IPV6
) &&
1131 rec
->gid_type
!= IB_GID_TYPE_ROCE_UDP_ENCAP
)
1134 idev
= device
->get_netdev(device
, port_num
);
1138 resolved_dev
= dev_get_by_index(dev_addr
.net
,
1139 dev_addr
.bound_dev_if
);
1140 if (resolved_dev
->flags
& IFF_LOOPBACK
) {
1141 dev_put(resolved_dev
);
1142 resolved_dev
= idev
;
1143 dev_hold(resolved_dev
);
1145 ndev
= ib_get_ndev_from_path(rec
);
1147 if ((ndev
&& ndev
!= resolved_dev
) ||
1148 (resolved_dev
!= idev
&&
1149 !rdma_is_upper_dev_rcu(idev
, resolved_dev
)))
1150 ret
= -EHOSTUNREACH
;
1153 dev_put(resolved_dev
);
1161 if (rec
->hop_limit
> 0 || use_roce
) {
1162 ah_attr
->ah_flags
= IB_AH_GRH
;
1163 ah_attr
->grh
.dgid
= rec
->dgid
;
1165 ret
= ib_find_cached_gid_by_port(device
, &rec
->sgid
,
1166 rec
->gid_type
, port_num
, ndev
,
1174 ah_attr
->grh
.sgid_index
= gid_index
;
1175 ah_attr
->grh
.flow_label
= be32_to_cpu(rec
->flow_label
);
1176 ah_attr
->grh
.hop_limit
= rec
->hop_limit
;
1177 ah_attr
->grh
.traffic_class
= rec
->traffic_class
;
1183 memcpy(ah_attr
->dmac
, rec
->dmac
, ETH_ALEN
);
1187 EXPORT_SYMBOL(ib_init_ah_from_path
);
1189 static int alloc_mad(struct ib_sa_query
*query
, gfp_t gfp_mask
)
1191 unsigned long flags
;
1193 spin_lock_irqsave(&query
->port
->ah_lock
, flags
);
1194 if (!query
->port
->sm_ah
) {
1195 spin_unlock_irqrestore(&query
->port
->ah_lock
, flags
);
1198 kref_get(&query
->port
->sm_ah
->ref
);
1199 query
->sm_ah
= query
->port
->sm_ah
;
1200 spin_unlock_irqrestore(&query
->port
->ah_lock
, flags
);
1202 query
->mad_buf
= ib_create_send_mad(query
->port
->agent
, 1,
1203 query
->sm_ah
->pkey_index
,
1204 0, IB_MGMT_SA_HDR
, IB_MGMT_SA_DATA
,
1206 IB_MGMT_BASE_VERSION
);
1207 if (IS_ERR(query
->mad_buf
)) {
1208 kref_put(&query
->sm_ah
->ref
, free_sm_ah
);
1212 query
->mad_buf
->ah
= query
->sm_ah
->ah
;
1217 static void free_mad(struct ib_sa_query
*query
)
1219 ib_free_send_mad(query
->mad_buf
);
1220 kref_put(&query
->sm_ah
->ref
, free_sm_ah
);
1223 static void init_mad(struct ib_sa_mad
*mad
, struct ib_mad_agent
*agent
)
1225 unsigned long flags
;
1227 memset(mad
, 0, sizeof *mad
);
1229 mad
->mad_hdr
.base_version
= IB_MGMT_BASE_VERSION
;
1230 mad
->mad_hdr
.mgmt_class
= IB_MGMT_CLASS_SUBN_ADM
;
1231 mad
->mad_hdr
.class_version
= IB_SA_CLASS_VERSION
;
1233 spin_lock_irqsave(&tid_lock
, flags
);
1235 cpu_to_be64(((u64
) agent
->hi_tid
) << 32 | tid
++);
1236 spin_unlock_irqrestore(&tid_lock
, flags
);
1239 static int send_mad(struct ib_sa_query
*query
, int timeout_ms
, gfp_t gfp_mask
)
1241 bool preload
= gfpflags_allow_blocking(gfp_mask
);
1242 unsigned long flags
;
1246 idr_preload(gfp_mask
);
1247 spin_lock_irqsave(&idr_lock
, flags
);
1249 id
= idr_alloc(&query_idr
, query
, 0, 0, GFP_NOWAIT
);
1251 spin_unlock_irqrestore(&idr_lock
, flags
);
1257 query
->mad_buf
->timeout_ms
= timeout_ms
;
1258 query
->mad_buf
->context
[0] = query
;
1261 if (query
->flags
& IB_SA_ENABLE_LOCAL_SERVICE
) {
1262 if (!ibnl_chk_listeners(RDMA_NL_GROUP_LS
)) {
1263 if (!ib_nl_make_request(query
, gfp_mask
))
1266 ib_sa_disable_local_svc(query
);
1269 ret
= ib_post_send_mad(query
->mad_buf
, NULL
);
1271 spin_lock_irqsave(&idr_lock
, flags
);
1272 idr_remove(&query_idr
, id
);
1273 spin_unlock_irqrestore(&idr_lock
, flags
);
1277 * It's not safe to dereference query any more, because the
1278 * send may already have completed and freed the query in
1281 return ret
? ret
: id
;
1284 void ib_sa_unpack_path(void *attribute
, struct ib_sa_path_rec
*rec
)
1286 ib_unpack(path_rec_table
, ARRAY_SIZE(path_rec_table
), attribute
, rec
);
1288 EXPORT_SYMBOL(ib_sa_unpack_path
);
1290 void ib_sa_pack_path(struct ib_sa_path_rec
*rec
, void *attribute
)
1292 ib_pack(path_rec_table
, ARRAY_SIZE(path_rec_table
), rec
, attribute
);
1294 EXPORT_SYMBOL(ib_sa_pack_path
);
1296 static void ib_sa_path_rec_callback(struct ib_sa_query
*sa_query
,
1298 struct ib_sa_mad
*mad
)
1300 struct ib_sa_path_query
*query
=
1301 container_of(sa_query
, struct ib_sa_path_query
, sa_query
);
1304 struct ib_sa_path_rec rec
;
1306 ib_unpack(path_rec_table
, ARRAY_SIZE(path_rec_table
),
1310 rec
.gid_type
= IB_GID_TYPE_IB
;
1311 eth_zero_addr(rec
.dmac
);
1312 query
->callback(status
, &rec
, query
->context
);
1314 query
->callback(status
, NULL
, query
->context
);
1317 static void ib_sa_path_rec_release(struct ib_sa_query
*sa_query
)
1319 kfree(container_of(sa_query
, struct ib_sa_path_query
, sa_query
));
1323 * ib_sa_path_rec_get - Start a Path get query
1325 * @device:device to send query on
1326 * @port_num: port number to send query on
1327 * @rec:Path Record to send in query
1328 * @comp_mask:component mask to send in query
1329 * @timeout_ms:time to wait for response
1330 * @gfp_mask:GFP mask to use for internal allocations
1331 * @callback:function called when query completes, times out or is
1333 * @context:opaque user context passed to callback
1334 * @sa_query:query context, used to cancel query
1336 * Send a Path Record Get query to the SA to look up a path. The
1337 * callback function will be called when the query completes (or
1338 * fails); status is 0 for a successful response, -EINTR if the query
1339 * is canceled, -ETIMEDOUT is the query timed out, or -EIO if an error
1340 * occurred sending the query. The resp parameter of the callback is
1341 * only valid if status is 0.
1343 * If the return value of ib_sa_path_rec_get() is negative, it is an
1344 * error code. Otherwise it is a query ID that can be used to cancel
1347 int ib_sa_path_rec_get(struct ib_sa_client
*client
,
1348 struct ib_device
*device
, u8 port_num
,
1349 struct ib_sa_path_rec
*rec
,
1350 ib_sa_comp_mask comp_mask
,
1351 int timeout_ms
, gfp_t gfp_mask
,
1352 void (*callback
)(int status
,
1353 struct ib_sa_path_rec
*resp
,
1356 struct ib_sa_query
**sa_query
)
1358 struct ib_sa_path_query
*query
;
1359 struct ib_sa_device
*sa_dev
= ib_get_client_data(device
, &sa_client
);
1360 struct ib_sa_port
*port
;
1361 struct ib_mad_agent
*agent
;
1362 struct ib_sa_mad
*mad
;
1368 port
= &sa_dev
->port
[port_num
- sa_dev
->start_port
];
1369 agent
= port
->agent
;
1371 query
= kzalloc(sizeof(*query
), gfp_mask
);
1375 query
->sa_query
.port
= port
;
1376 ret
= alloc_mad(&query
->sa_query
, gfp_mask
);
1380 ib_sa_client_get(client
);
1381 query
->sa_query
.client
= client
;
1382 query
->callback
= callback
;
1383 query
->context
= context
;
1385 mad
= query
->sa_query
.mad_buf
->mad
;
1386 init_mad(mad
, agent
);
1388 query
->sa_query
.callback
= callback
? ib_sa_path_rec_callback
: NULL
;
1389 query
->sa_query
.release
= ib_sa_path_rec_release
;
1390 mad
->mad_hdr
.method
= IB_MGMT_METHOD_GET
;
1391 mad
->mad_hdr
.attr_id
= cpu_to_be16(IB_SA_ATTR_PATH_REC
);
1392 mad
->sa_hdr
.comp_mask
= comp_mask
;
1394 ib_pack(path_rec_table
, ARRAY_SIZE(path_rec_table
), rec
, mad
->data
);
1396 *sa_query
= &query
->sa_query
;
1398 query
->sa_query
.flags
|= IB_SA_ENABLE_LOCAL_SERVICE
;
1399 query
->sa_query
.mad_buf
->context
[1] = rec
;
1401 ret
= send_mad(&query
->sa_query
, timeout_ms
, gfp_mask
);
1409 ib_sa_client_put(query
->sa_query
.client
);
1410 free_mad(&query
->sa_query
);
1416 EXPORT_SYMBOL(ib_sa_path_rec_get
);
1418 static void ib_sa_service_rec_callback(struct ib_sa_query
*sa_query
,
1420 struct ib_sa_mad
*mad
)
1422 struct ib_sa_service_query
*query
=
1423 container_of(sa_query
, struct ib_sa_service_query
, sa_query
);
1426 struct ib_sa_service_rec rec
;
1428 ib_unpack(service_rec_table
, ARRAY_SIZE(service_rec_table
),
1430 query
->callback(status
, &rec
, query
->context
);
1432 query
->callback(status
, NULL
, query
->context
);
1435 static void ib_sa_service_rec_release(struct ib_sa_query
*sa_query
)
1437 kfree(container_of(sa_query
, struct ib_sa_service_query
, sa_query
));
1441 * ib_sa_service_rec_query - Start Service Record operation
1443 * @device:device to send request on
1444 * @port_num: port number to send request on
1445 * @method:SA method - should be get, set, or delete
1446 * @rec:Service Record to send in request
1447 * @comp_mask:component mask to send in request
1448 * @timeout_ms:time to wait for response
1449 * @gfp_mask:GFP mask to use for internal allocations
1450 * @callback:function called when request completes, times out or is
1452 * @context:opaque user context passed to callback
1453 * @sa_query:request context, used to cancel request
1455 * Send a Service Record set/get/delete to the SA to register,
1456 * unregister or query a service record.
1457 * The callback function will be called when the request completes (or
1458 * fails); status is 0 for a successful response, -EINTR if the query
1459 * is canceled, -ETIMEDOUT is the query timed out, or -EIO if an error
1460 * occurred sending the query. The resp parameter of the callback is
1461 * only valid if status is 0.
1463 * If the return value of ib_sa_service_rec_query() is negative, it is an
1464 * error code. Otherwise it is a request ID that can be used to cancel
1467 int ib_sa_service_rec_query(struct ib_sa_client
*client
,
1468 struct ib_device
*device
, u8 port_num
, u8 method
,
1469 struct ib_sa_service_rec
*rec
,
1470 ib_sa_comp_mask comp_mask
,
1471 int timeout_ms
, gfp_t gfp_mask
,
1472 void (*callback
)(int status
,
1473 struct ib_sa_service_rec
*resp
,
1476 struct ib_sa_query
**sa_query
)
1478 struct ib_sa_service_query
*query
;
1479 struct ib_sa_device
*sa_dev
= ib_get_client_data(device
, &sa_client
);
1480 struct ib_sa_port
*port
;
1481 struct ib_mad_agent
*agent
;
1482 struct ib_sa_mad
*mad
;
1488 port
= &sa_dev
->port
[port_num
- sa_dev
->start_port
];
1489 agent
= port
->agent
;
1491 if (method
!= IB_MGMT_METHOD_GET
&&
1492 method
!= IB_MGMT_METHOD_SET
&&
1493 method
!= IB_SA_METHOD_DELETE
)
1496 query
= kzalloc(sizeof(*query
), gfp_mask
);
1500 query
->sa_query
.port
= port
;
1501 ret
= alloc_mad(&query
->sa_query
, gfp_mask
);
1505 ib_sa_client_get(client
);
1506 query
->sa_query
.client
= client
;
1507 query
->callback
= callback
;
1508 query
->context
= context
;
1510 mad
= query
->sa_query
.mad_buf
->mad
;
1511 init_mad(mad
, agent
);
1513 query
->sa_query
.callback
= callback
? ib_sa_service_rec_callback
: NULL
;
1514 query
->sa_query
.release
= ib_sa_service_rec_release
;
1515 mad
->mad_hdr
.method
= method
;
1516 mad
->mad_hdr
.attr_id
= cpu_to_be16(IB_SA_ATTR_SERVICE_REC
);
1517 mad
->sa_hdr
.comp_mask
= comp_mask
;
1519 ib_pack(service_rec_table
, ARRAY_SIZE(service_rec_table
),
1522 *sa_query
= &query
->sa_query
;
1524 ret
= send_mad(&query
->sa_query
, timeout_ms
, gfp_mask
);
1532 ib_sa_client_put(query
->sa_query
.client
);
1533 free_mad(&query
->sa_query
);
1539 EXPORT_SYMBOL(ib_sa_service_rec_query
);
1541 static void ib_sa_mcmember_rec_callback(struct ib_sa_query
*sa_query
,
1543 struct ib_sa_mad
*mad
)
1545 struct ib_sa_mcmember_query
*query
=
1546 container_of(sa_query
, struct ib_sa_mcmember_query
, sa_query
);
1549 struct ib_sa_mcmember_rec rec
;
1551 ib_unpack(mcmember_rec_table
, ARRAY_SIZE(mcmember_rec_table
),
1553 query
->callback(status
, &rec
, query
->context
);
1555 query
->callback(status
, NULL
, query
->context
);
1558 static void ib_sa_mcmember_rec_release(struct ib_sa_query
*sa_query
)
1560 kfree(container_of(sa_query
, struct ib_sa_mcmember_query
, sa_query
));
1563 int ib_sa_mcmember_rec_query(struct ib_sa_client
*client
,
1564 struct ib_device
*device
, u8 port_num
,
1566 struct ib_sa_mcmember_rec
*rec
,
1567 ib_sa_comp_mask comp_mask
,
1568 int timeout_ms
, gfp_t gfp_mask
,
1569 void (*callback
)(int status
,
1570 struct ib_sa_mcmember_rec
*resp
,
1573 struct ib_sa_query
**sa_query
)
1575 struct ib_sa_mcmember_query
*query
;
1576 struct ib_sa_device
*sa_dev
= ib_get_client_data(device
, &sa_client
);
1577 struct ib_sa_port
*port
;
1578 struct ib_mad_agent
*agent
;
1579 struct ib_sa_mad
*mad
;
1585 port
= &sa_dev
->port
[port_num
- sa_dev
->start_port
];
1586 agent
= port
->agent
;
1588 query
= kzalloc(sizeof(*query
), gfp_mask
);
1592 query
->sa_query
.port
= port
;
1593 ret
= alloc_mad(&query
->sa_query
, gfp_mask
);
1597 ib_sa_client_get(client
);
1598 query
->sa_query
.client
= client
;
1599 query
->callback
= callback
;
1600 query
->context
= context
;
1602 mad
= query
->sa_query
.mad_buf
->mad
;
1603 init_mad(mad
, agent
);
1605 query
->sa_query
.callback
= callback
? ib_sa_mcmember_rec_callback
: NULL
;
1606 query
->sa_query
.release
= ib_sa_mcmember_rec_release
;
1607 mad
->mad_hdr
.method
= method
;
1608 mad
->mad_hdr
.attr_id
= cpu_to_be16(IB_SA_ATTR_MC_MEMBER_REC
);
1609 mad
->sa_hdr
.comp_mask
= comp_mask
;
1611 ib_pack(mcmember_rec_table
, ARRAY_SIZE(mcmember_rec_table
),
1614 *sa_query
= &query
->sa_query
;
1616 ret
= send_mad(&query
->sa_query
, timeout_ms
, gfp_mask
);
1624 ib_sa_client_put(query
->sa_query
.client
);
1625 free_mad(&query
->sa_query
);
1632 /* Support GuidInfoRecord */
1633 static void ib_sa_guidinfo_rec_callback(struct ib_sa_query
*sa_query
,
1635 struct ib_sa_mad
*mad
)
1637 struct ib_sa_guidinfo_query
*query
=
1638 container_of(sa_query
, struct ib_sa_guidinfo_query
, sa_query
);
1641 struct ib_sa_guidinfo_rec rec
;
1643 ib_unpack(guidinfo_rec_table
, ARRAY_SIZE(guidinfo_rec_table
),
1645 query
->callback(status
, &rec
, query
->context
);
1647 query
->callback(status
, NULL
, query
->context
);
1650 static void ib_sa_guidinfo_rec_release(struct ib_sa_query
*sa_query
)
1652 kfree(container_of(sa_query
, struct ib_sa_guidinfo_query
, sa_query
));
1655 int ib_sa_guid_info_rec_query(struct ib_sa_client
*client
,
1656 struct ib_device
*device
, u8 port_num
,
1657 struct ib_sa_guidinfo_rec
*rec
,
1658 ib_sa_comp_mask comp_mask
, u8 method
,
1659 int timeout_ms
, gfp_t gfp_mask
,
1660 void (*callback
)(int status
,
1661 struct ib_sa_guidinfo_rec
*resp
,
1664 struct ib_sa_query
**sa_query
)
1666 struct ib_sa_guidinfo_query
*query
;
1667 struct ib_sa_device
*sa_dev
= ib_get_client_data(device
, &sa_client
);
1668 struct ib_sa_port
*port
;
1669 struct ib_mad_agent
*agent
;
1670 struct ib_sa_mad
*mad
;
1676 if (method
!= IB_MGMT_METHOD_GET
&&
1677 method
!= IB_MGMT_METHOD_SET
&&
1678 method
!= IB_SA_METHOD_DELETE
) {
1682 port
= &sa_dev
->port
[port_num
- sa_dev
->start_port
];
1683 agent
= port
->agent
;
1685 query
= kzalloc(sizeof(*query
), gfp_mask
);
1689 query
->sa_query
.port
= port
;
1690 ret
= alloc_mad(&query
->sa_query
, gfp_mask
);
1694 ib_sa_client_get(client
);
1695 query
->sa_query
.client
= client
;
1696 query
->callback
= callback
;
1697 query
->context
= context
;
1699 mad
= query
->sa_query
.mad_buf
->mad
;
1700 init_mad(mad
, agent
);
1702 query
->sa_query
.callback
= callback
? ib_sa_guidinfo_rec_callback
: NULL
;
1703 query
->sa_query
.release
= ib_sa_guidinfo_rec_release
;
1705 mad
->mad_hdr
.method
= method
;
1706 mad
->mad_hdr
.attr_id
= cpu_to_be16(IB_SA_ATTR_GUID_INFO_REC
);
1707 mad
->sa_hdr
.comp_mask
= comp_mask
;
1709 ib_pack(guidinfo_rec_table
, ARRAY_SIZE(guidinfo_rec_table
), rec
,
1712 *sa_query
= &query
->sa_query
;
1714 ret
= send_mad(&query
->sa_query
, timeout_ms
, gfp_mask
);
1722 ib_sa_client_put(query
->sa_query
.client
);
1723 free_mad(&query
->sa_query
);
1729 EXPORT_SYMBOL(ib_sa_guid_info_rec_query
);
1731 /* Support get SA ClassPortInfo */
1732 static void ib_sa_classport_info_rec_callback(struct ib_sa_query
*sa_query
,
1734 struct ib_sa_mad
*mad
)
1736 unsigned long flags
;
1737 struct ib_sa_classport_info_query
*query
=
1738 container_of(sa_query
, struct ib_sa_classport_info_query
, sa_query
);
1741 struct ib_class_port_info rec
;
1743 ib_unpack(classport_info_rec_table
,
1744 ARRAY_SIZE(classport_info_rec_table
),
1747 spin_lock_irqsave(&sa_query
->port
->classport_lock
, flags
);
1748 if (!status
&& !sa_query
->port
->classport_info
.valid
) {
1749 memcpy(&sa_query
->port
->classport_info
.data
, &rec
,
1750 sizeof(sa_query
->port
->classport_info
.data
));
1752 sa_query
->port
->classport_info
.valid
= true;
1754 spin_unlock_irqrestore(&sa_query
->port
->classport_lock
, flags
);
1756 query
->callback(status
, &rec
, query
->context
);
1758 query
->callback(status
, NULL
, query
->context
);
1762 static void ib_sa_portclass_info_rec_release(struct ib_sa_query
*sa_query
)
1764 kfree(container_of(sa_query
, struct ib_sa_classport_info_query
,
1768 int ib_sa_classport_info_rec_query(struct ib_sa_client
*client
,
1769 struct ib_device
*device
, u8 port_num
,
1770 int timeout_ms
, gfp_t gfp_mask
,
1771 void (*callback
)(int status
,
1772 struct ib_class_port_info
*resp
,
1775 struct ib_sa_query
**sa_query
)
1777 struct ib_sa_classport_info_query
*query
;
1778 struct ib_sa_device
*sa_dev
= ib_get_client_data(device
, &sa_client
);
1779 struct ib_sa_port
*port
;
1780 struct ib_mad_agent
*agent
;
1781 struct ib_sa_mad
*mad
;
1782 struct ib_class_port_info cached_class_port_info
;
1784 unsigned long flags
;
1789 port
= &sa_dev
->port
[port_num
- sa_dev
->start_port
];
1790 agent
= port
->agent
;
1792 /* Use cached ClassPortInfo attribute if valid instead of sending mad */
1793 spin_lock_irqsave(&port
->classport_lock
, flags
);
1794 if (port
->classport_info
.valid
&& callback
) {
1795 memcpy(&cached_class_port_info
, &port
->classport_info
.data
,
1796 sizeof(cached_class_port_info
));
1797 spin_unlock_irqrestore(&port
->classport_lock
, flags
);
1798 callback(0, &cached_class_port_info
, context
);
1801 spin_unlock_irqrestore(&port
->classport_lock
, flags
);
1803 query
= kzalloc(sizeof(*query
), gfp_mask
);
1807 query
->sa_query
.port
= port
;
1808 ret
= alloc_mad(&query
->sa_query
, gfp_mask
);
1812 ib_sa_client_get(client
);
1813 query
->sa_query
.client
= client
;
1814 query
->callback
= callback
;
1815 query
->context
= context
;
1817 mad
= query
->sa_query
.mad_buf
->mad
;
1818 init_mad(mad
, agent
);
1820 query
->sa_query
.callback
= callback
? ib_sa_classport_info_rec_callback
: NULL
;
1822 query
->sa_query
.release
= ib_sa_portclass_info_rec_release
;
1823 /* support GET only */
1824 mad
->mad_hdr
.method
= IB_MGMT_METHOD_GET
;
1825 mad
->mad_hdr
.attr_id
= cpu_to_be16(IB_SA_ATTR_CLASS_PORTINFO
);
1826 mad
->sa_hdr
.comp_mask
= 0;
1827 *sa_query
= &query
->sa_query
;
1829 ret
= send_mad(&query
->sa_query
, timeout_ms
, gfp_mask
);
1837 ib_sa_client_put(query
->sa_query
.client
);
1838 free_mad(&query
->sa_query
);
1844 EXPORT_SYMBOL(ib_sa_classport_info_rec_query
);
1846 static void send_handler(struct ib_mad_agent
*agent
,
1847 struct ib_mad_send_wc
*mad_send_wc
)
1849 struct ib_sa_query
*query
= mad_send_wc
->send_buf
->context
[0];
1850 unsigned long flags
;
1852 if (query
->callback
)
1853 switch (mad_send_wc
->status
) {
1855 /* No callback -- already got recv */
1857 case IB_WC_RESP_TIMEOUT_ERR
:
1858 query
->callback(query
, -ETIMEDOUT
, NULL
);
1860 case IB_WC_WR_FLUSH_ERR
:
1861 query
->callback(query
, -EINTR
, NULL
);
1864 query
->callback(query
, -EIO
, NULL
);
1868 spin_lock_irqsave(&idr_lock
, flags
);
1869 idr_remove(&query_idr
, query
->id
);
1870 spin_unlock_irqrestore(&idr_lock
, flags
);
1873 ib_sa_client_put(query
->client
);
1874 query
->release(query
);
1877 static void recv_handler(struct ib_mad_agent
*mad_agent
,
1878 struct ib_mad_send_buf
*send_buf
,
1879 struct ib_mad_recv_wc
*mad_recv_wc
)
1881 struct ib_sa_query
*query
;
1886 query
= send_buf
->context
[0];
1887 if (query
->callback
) {
1888 if (mad_recv_wc
->wc
->status
== IB_WC_SUCCESS
)
1889 query
->callback(query
,
1890 mad_recv_wc
->recv_buf
.mad
->mad_hdr
.status
?
1892 (struct ib_sa_mad
*) mad_recv_wc
->recv_buf
.mad
);
1894 query
->callback(query
, -EIO
, NULL
);
1897 ib_free_recv_mad(mad_recv_wc
);
1900 static void ib_sa_add_one(struct ib_device
*device
)
1902 struct ib_sa_device
*sa_dev
;
1906 s
= rdma_start_port(device
);
1907 e
= rdma_end_port(device
);
1909 sa_dev
= kzalloc(sizeof *sa_dev
+
1910 (e
- s
+ 1) * sizeof (struct ib_sa_port
),
1915 sa_dev
->start_port
= s
;
1916 sa_dev
->end_port
= e
;
1918 for (i
= 0; i
<= e
- s
; ++i
) {
1919 spin_lock_init(&sa_dev
->port
[i
].ah_lock
);
1920 if (!rdma_cap_ib_sa(device
, i
+ 1))
1923 sa_dev
->port
[i
].sm_ah
= NULL
;
1924 sa_dev
->port
[i
].port_num
= i
+ s
;
1926 spin_lock_init(&sa_dev
->port
[i
].classport_lock
);
1927 sa_dev
->port
[i
].classport_info
.valid
= false;
1929 sa_dev
->port
[i
].agent
=
1930 ib_register_mad_agent(device
, i
+ s
, IB_QPT_GSI
,
1931 NULL
, 0, send_handler
,
1932 recv_handler
, sa_dev
, 0);
1933 if (IS_ERR(sa_dev
->port
[i
].agent
))
1936 INIT_WORK(&sa_dev
->port
[i
].update_task
, update_sm_ah
);
1944 ib_set_client_data(device
, &sa_client
, sa_dev
);
1947 * We register our event handler after everything is set up,
1948 * and then update our cached info after the event handler is
1949 * registered to avoid any problems if a port changes state
1950 * during our initialization.
1953 INIT_IB_EVENT_HANDLER(&sa_dev
->event_handler
, device
, ib_sa_event
);
1954 if (ib_register_event_handler(&sa_dev
->event_handler
))
1957 for (i
= 0; i
<= e
- s
; ++i
) {
1958 if (rdma_cap_ib_sa(device
, i
+ 1))
1959 update_sm_ah(&sa_dev
->port
[i
].update_task
);
1966 if (rdma_cap_ib_sa(device
, i
+ 1))
1967 ib_unregister_mad_agent(sa_dev
->port
[i
].agent
);
1974 static void ib_sa_remove_one(struct ib_device
*device
, void *client_data
)
1976 struct ib_sa_device
*sa_dev
= client_data
;
1982 ib_unregister_event_handler(&sa_dev
->event_handler
);
1984 flush_workqueue(ib_wq
);
1986 for (i
= 0; i
<= sa_dev
->end_port
- sa_dev
->start_port
; ++i
) {
1987 if (rdma_cap_ib_sa(device
, i
+ 1)) {
1988 ib_unregister_mad_agent(sa_dev
->port
[i
].agent
);
1989 if (sa_dev
->port
[i
].sm_ah
)
1990 kref_put(&sa_dev
->port
[i
].sm_ah
->ref
, free_sm_ah
);
1998 int ib_sa_init(void)
2002 get_random_bytes(&tid
, sizeof tid
);
2004 atomic_set(&ib_nl_sa_request_seq
, 0);
2006 ret
= ib_register_client(&sa_client
);
2008 pr_err("Couldn't register ib_sa client\n");
2014 pr_err("Couldn't initialize multicast handling\n");
2018 ib_nl_wq
= alloc_ordered_workqueue("ib_nl_sa_wq", WQ_MEM_RECLAIM
);
2024 INIT_DELAYED_WORK(&ib_nl_timed_work
, ib_nl_request_timeout
);
2031 ib_unregister_client(&sa_client
);
2036 void ib_sa_cleanup(void)
2038 cancel_delayed_work(&ib_nl_timed_work
);
2039 flush_workqueue(ib_nl_wq
);
2040 destroy_workqueue(ib_nl_wq
);
2042 ib_unregister_client(&sa_client
);
2043 idr_destroy(&query_idr
);