2 * net/core/devlink.c - Network physical/parent device Netlink interface
4 * Heavily inspired by net/wireless/
5 * Copyright (c) 2016 Mellanox Technologies. All rights reserved.
6 * Copyright (c) 2016 Jiri Pirko <jiri@mellanox.com>
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
14 #include <linux/kernel.h>
15 #include <linux/module.h>
16 #include <linux/types.h>
17 #include <linux/slab.h>
18 #include <linux/gfp.h>
19 #include <linux/device.h>
20 #include <linux/list.h>
21 #include <linux/netdevice.h>
22 #include <rdma/ib_verbs.h>
23 #include <net/netlink.h>
24 #include <net/genetlink.h>
25 #include <net/rtnetlink.h>
26 #include <net/net_namespace.h>
28 #include <net/devlink.h>
29 #define CREATE_TRACE_POINTS
30 #include <trace/events/devlink.h>
32 EXPORT_TRACEPOINT_SYMBOL_GPL(devlink_hwmsg
);
34 static LIST_HEAD(devlink_list
);
38 * An overall lock guarding every operation coming from userspace.
39 * It also guards devlink devices list and it is taken when
40 * driver registers/unregisters it.
42 static DEFINE_MUTEX(devlink_mutex
);
46 * Shared lock to guard lists of ports in all devlink devices.
48 static DEFINE_MUTEX(devlink_port_mutex
);
50 static struct net
*devlink_net(const struct devlink
*devlink
)
52 return read_pnet(&devlink
->_net
);
55 static void devlink_net_set(struct devlink
*devlink
, struct net
*net
)
57 write_pnet(&devlink
->_net
, net
);
60 static struct devlink
*devlink_get_from_attrs(struct net
*net
,
61 struct nlattr
**attrs
)
63 struct devlink
*devlink
;
67 if (!attrs
[DEVLINK_ATTR_BUS_NAME
] || !attrs
[DEVLINK_ATTR_DEV_NAME
])
68 return ERR_PTR(-EINVAL
);
70 busname
= nla_data(attrs
[DEVLINK_ATTR_BUS_NAME
]);
71 devname
= nla_data(attrs
[DEVLINK_ATTR_DEV_NAME
]);
73 list_for_each_entry(devlink
, &devlink_list
, list
) {
74 if (strcmp(devlink
->dev
->bus
->name
, busname
) == 0 &&
75 strcmp(dev_name(devlink
->dev
), devname
) == 0 &&
76 net_eq(devlink_net(devlink
), net
))
80 return ERR_PTR(-ENODEV
);
83 static struct devlink
*devlink_get_from_info(struct genl_info
*info
)
85 return devlink_get_from_attrs(genl_info_net(info
), info
->attrs
);
88 static struct devlink_port
*devlink_port_get_by_index(struct devlink
*devlink
,
91 struct devlink_port
*devlink_port
;
93 list_for_each_entry(devlink_port
, &devlink
->port_list
, list
) {
94 if (devlink_port
->index
== port_index
)
100 static bool devlink_port_index_exists(struct devlink
*devlink
, int port_index
)
102 return devlink_port_get_by_index(devlink
, port_index
);
105 static struct devlink_port
*devlink_port_get_from_attrs(struct devlink
*devlink
,
106 struct nlattr
**attrs
)
108 if (attrs
[DEVLINK_ATTR_PORT_INDEX
]) {
109 u32 port_index
= nla_get_u32(attrs
[DEVLINK_ATTR_PORT_INDEX
]);
110 struct devlink_port
*devlink_port
;
112 devlink_port
= devlink_port_get_by_index(devlink
, port_index
);
114 return ERR_PTR(-ENODEV
);
117 return ERR_PTR(-EINVAL
);
120 static struct devlink_port
*devlink_port_get_from_info(struct devlink
*devlink
,
121 struct genl_info
*info
)
123 return devlink_port_get_from_attrs(devlink
, info
->attrs
);
127 struct list_head list
;
130 u16 ingress_pools_count
;
131 u16 egress_pools_count
;
132 u16 ingress_tc_count
;
136 static u16
devlink_sb_pool_count(struct devlink_sb
*devlink_sb
)
138 return devlink_sb
->ingress_pools_count
+ devlink_sb
->egress_pools_count
;
141 static struct devlink_sb
*devlink_sb_get_by_index(struct devlink
*devlink
,
142 unsigned int sb_index
)
144 struct devlink_sb
*devlink_sb
;
146 list_for_each_entry(devlink_sb
, &devlink
->sb_list
, list
) {
147 if (devlink_sb
->index
== sb_index
)
153 static bool devlink_sb_index_exists(struct devlink
*devlink
,
154 unsigned int sb_index
)
156 return devlink_sb_get_by_index(devlink
, sb_index
);
159 static struct devlink_sb
*devlink_sb_get_from_attrs(struct devlink
*devlink
,
160 struct nlattr
**attrs
)
162 if (attrs
[DEVLINK_ATTR_SB_INDEX
]) {
163 u32 sb_index
= nla_get_u32(attrs
[DEVLINK_ATTR_SB_INDEX
]);
164 struct devlink_sb
*devlink_sb
;
166 devlink_sb
= devlink_sb_get_by_index(devlink
, sb_index
);
168 return ERR_PTR(-ENODEV
);
171 return ERR_PTR(-EINVAL
);
174 static struct devlink_sb
*devlink_sb_get_from_info(struct devlink
*devlink
,
175 struct genl_info
*info
)
177 return devlink_sb_get_from_attrs(devlink
, info
->attrs
);
180 static int devlink_sb_pool_index_get_from_attrs(struct devlink_sb
*devlink_sb
,
181 struct nlattr
**attrs
,
186 if (!attrs
[DEVLINK_ATTR_SB_POOL_INDEX
])
189 val
= nla_get_u16(attrs
[DEVLINK_ATTR_SB_POOL_INDEX
]);
190 if (val
>= devlink_sb_pool_count(devlink_sb
))
196 static int devlink_sb_pool_index_get_from_info(struct devlink_sb
*devlink_sb
,
197 struct genl_info
*info
,
200 return devlink_sb_pool_index_get_from_attrs(devlink_sb
, info
->attrs
,
205 devlink_sb_pool_type_get_from_attrs(struct nlattr
**attrs
,
206 enum devlink_sb_pool_type
*p_pool_type
)
210 if (!attrs
[DEVLINK_ATTR_SB_POOL_TYPE
])
213 val
= nla_get_u8(attrs
[DEVLINK_ATTR_SB_POOL_TYPE
]);
214 if (val
!= DEVLINK_SB_POOL_TYPE_INGRESS
&&
215 val
!= DEVLINK_SB_POOL_TYPE_EGRESS
)
222 devlink_sb_pool_type_get_from_info(struct genl_info
*info
,
223 enum devlink_sb_pool_type
*p_pool_type
)
225 return devlink_sb_pool_type_get_from_attrs(info
->attrs
, p_pool_type
);
229 devlink_sb_th_type_get_from_attrs(struct nlattr
**attrs
,
230 enum devlink_sb_threshold_type
*p_th_type
)
234 if (!attrs
[DEVLINK_ATTR_SB_POOL_THRESHOLD_TYPE
])
237 val
= nla_get_u8(attrs
[DEVLINK_ATTR_SB_POOL_THRESHOLD_TYPE
]);
238 if (val
!= DEVLINK_SB_THRESHOLD_TYPE_STATIC
&&
239 val
!= DEVLINK_SB_THRESHOLD_TYPE_DYNAMIC
)
246 devlink_sb_th_type_get_from_info(struct genl_info
*info
,
247 enum devlink_sb_threshold_type
*p_th_type
)
249 return devlink_sb_th_type_get_from_attrs(info
->attrs
, p_th_type
);
253 devlink_sb_tc_index_get_from_attrs(struct devlink_sb
*devlink_sb
,
254 struct nlattr
**attrs
,
255 enum devlink_sb_pool_type pool_type
,
260 if (!attrs
[DEVLINK_ATTR_SB_TC_INDEX
])
263 val
= nla_get_u16(attrs
[DEVLINK_ATTR_SB_TC_INDEX
]);
264 if (pool_type
== DEVLINK_SB_POOL_TYPE_INGRESS
&&
265 val
>= devlink_sb
->ingress_tc_count
)
267 if (pool_type
== DEVLINK_SB_POOL_TYPE_EGRESS
&&
268 val
>= devlink_sb
->egress_tc_count
)
275 devlink_sb_tc_index_get_from_info(struct devlink_sb
*devlink_sb
,
276 struct genl_info
*info
,
277 enum devlink_sb_pool_type pool_type
,
280 return devlink_sb_tc_index_get_from_attrs(devlink_sb
, info
->attrs
,
281 pool_type
, p_tc_index
);
284 #define DEVLINK_NL_FLAG_NEED_DEVLINK BIT(0)
285 #define DEVLINK_NL_FLAG_NEED_PORT BIT(1)
286 #define DEVLINK_NL_FLAG_NEED_SB BIT(2)
287 #define DEVLINK_NL_FLAG_LOCK_PORTS BIT(3)
288 /* port is not needed but we need to ensure they don't
289 * change in the middle of command
292 static int devlink_nl_pre_doit(const struct genl_ops
*ops
,
293 struct sk_buff
*skb
, struct genl_info
*info
)
295 struct devlink
*devlink
;
297 mutex_lock(&devlink_mutex
);
298 devlink
= devlink_get_from_info(info
);
299 if (IS_ERR(devlink
)) {
300 mutex_unlock(&devlink_mutex
);
301 return PTR_ERR(devlink
);
303 if (ops
->internal_flags
& DEVLINK_NL_FLAG_NEED_DEVLINK
) {
304 info
->user_ptr
[0] = devlink
;
305 } else if (ops
->internal_flags
& DEVLINK_NL_FLAG_NEED_PORT
) {
306 struct devlink_port
*devlink_port
;
308 mutex_lock(&devlink_port_mutex
);
309 devlink_port
= devlink_port_get_from_info(devlink
, info
);
310 if (IS_ERR(devlink_port
)) {
311 mutex_unlock(&devlink_port_mutex
);
312 mutex_unlock(&devlink_mutex
);
313 return PTR_ERR(devlink_port
);
315 info
->user_ptr
[0] = devlink_port
;
317 if (ops
->internal_flags
& DEVLINK_NL_FLAG_LOCK_PORTS
) {
318 mutex_lock(&devlink_port_mutex
);
320 if (ops
->internal_flags
& DEVLINK_NL_FLAG_NEED_SB
) {
321 struct devlink_sb
*devlink_sb
;
323 devlink_sb
= devlink_sb_get_from_info(devlink
, info
);
324 if (IS_ERR(devlink_sb
)) {
325 if (ops
->internal_flags
& DEVLINK_NL_FLAG_NEED_PORT
)
326 mutex_unlock(&devlink_port_mutex
);
327 mutex_unlock(&devlink_mutex
);
328 return PTR_ERR(devlink_sb
);
330 info
->user_ptr
[1] = devlink_sb
;
335 static void devlink_nl_post_doit(const struct genl_ops
*ops
,
336 struct sk_buff
*skb
, struct genl_info
*info
)
338 if (ops
->internal_flags
& DEVLINK_NL_FLAG_NEED_PORT
||
339 ops
->internal_flags
& DEVLINK_NL_FLAG_LOCK_PORTS
)
340 mutex_unlock(&devlink_port_mutex
);
341 mutex_unlock(&devlink_mutex
);
344 static struct genl_family devlink_nl_family
= {
345 .id
= GENL_ID_GENERATE
,
346 .name
= DEVLINK_GENL_NAME
,
347 .version
= DEVLINK_GENL_VERSION
,
348 .maxattr
= DEVLINK_ATTR_MAX
,
350 .pre_doit
= devlink_nl_pre_doit
,
351 .post_doit
= devlink_nl_post_doit
,
354 enum devlink_multicast_groups
{
355 DEVLINK_MCGRP_CONFIG
,
358 static const struct genl_multicast_group devlink_nl_mcgrps
[] = {
359 [DEVLINK_MCGRP_CONFIG
] = { .name
= DEVLINK_GENL_MCGRP_CONFIG_NAME
},
362 static int devlink_nl_put_handle(struct sk_buff
*msg
, struct devlink
*devlink
)
364 if (nla_put_string(msg
, DEVLINK_ATTR_BUS_NAME
, devlink
->dev
->bus
->name
))
366 if (nla_put_string(msg
, DEVLINK_ATTR_DEV_NAME
, dev_name(devlink
->dev
)))
371 static int devlink_nl_fill(struct sk_buff
*msg
, struct devlink
*devlink
,
372 enum devlink_command cmd
, u32 portid
,
377 hdr
= genlmsg_put(msg
, portid
, seq
, &devlink_nl_family
, flags
, cmd
);
381 if (devlink_nl_put_handle(msg
, devlink
))
382 goto nla_put_failure
;
384 genlmsg_end(msg
, hdr
);
388 genlmsg_cancel(msg
, hdr
);
392 static void devlink_notify(struct devlink
*devlink
, enum devlink_command cmd
)
397 WARN_ON(cmd
!= DEVLINK_CMD_NEW
&& cmd
!= DEVLINK_CMD_DEL
);
399 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
403 err
= devlink_nl_fill(msg
, devlink
, cmd
, 0, 0, 0);
409 genlmsg_multicast_netns(&devlink_nl_family
, devlink_net(devlink
),
410 msg
, 0, DEVLINK_MCGRP_CONFIG
, GFP_KERNEL
);
413 static int devlink_nl_port_fill(struct sk_buff
*msg
, struct devlink
*devlink
,
414 struct devlink_port
*devlink_port
,
415 enum devlink_command cmd
, u32 portid
,
420 hdr
= genlmsg_put(msg
, portid
, seq
, &devlink_nl_family
, flags
, cmd
);
424 if (devlink_nl_put_handle(msg
, devlink
))
425 goto nla_put_failure
;
426 if (nla_put_u32(msg
, DEVLINK_ATTR_PORT_INDEX
, devlink_port
->index
))
427 goto nla_put_failure
;
428 if (nla_put_u16(msg
, DEVLINK_ATTR_PORT_TYPE
, devlink_port
->type
))
429 goto nla_put_failure
;
430 if (devlink_port
->desired_type
!= DEVLINK_PORT_TYPE_NOTSET
&&
431 nla_put_u16(msg
, DEVLINK_ATTR_PORT_DESIRED_TYPE
,
432 devlink_port
->desired_type
))
433 goto nla_put_failure
;
434 if (devlink_port
->type
== DEVLINK_PORT_TYPE_ETH
) {
435 struct net_device
*netdev
= devlink_port
->type_dev
;
438 (nla_put_u32(msg
, DEVLINK_ATTR_PORT_NETDEV_IFINDEX
,
440 nla_put_string(msg
, DEVLINK_ATTR_PORT_NETDEV_NAME
,
442 goto nla_put_failure
;
444 if (devlink_port
->type
== DEVLINK_PORT_TYPE_IB
) {
445 struct ib_device
*ibdev
= devlink_port
->type_dev
;
448 nla_put_string(msg
, DEVLINK_ATTR_PORT_IBDEV_NAME
,
450 goto nla_put_failure
;
452 if (devlink_port
->split
&&
453 nla_put_u32(msg
, DEVLINK_ATTR_PORT_SPLIT_GROUP
,
454 devlink_port
->split_group
))
455 goto nla_put_failure
;
457 genlmsg_end(msg
, hdr
);
461 genlmsg_cancel(msg
, hdr
);
465 static void devlink_port_notify(struct devlink_port
*devlink_port
,
466 enum devlink_command cmd
)
468 struct devlink
*devlink
= devlink_port
->devlink
;
472 if (!devlink_port
->registered
)
475 WARN_ON(cmd
!= DEVLINK_CMD_PORT_NEW
&& cmd
!= DEVLINK_CMD_PORT_DEL
);
477 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
481 err
= devlink_nl_port_fill(msg
, devlink
, devlink_port
, cmd
, 0, 0, 0);
487 genlmsg_multicast_netns(&devlink_nl_family
, devlink_net(devlink
),
488 msg
, 0, DEVLINK_MCGRP_CONFIG
, GFP_KERNEL
);
491 static int devlink_nl_cmd_get_doit(struct sk_buff
*skb
, struct genl_info
*info
)
493 struct devlink
*devlink
= info
->user_ptr
[0];
497 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
501 err
= devlink_nl_fill(msg
, devlink
, DEVLINK_CMD_NEW
,
502 info
->snd_portid
, info
->snd_seq
, 0);
508 return genlmsg_reply(msg
, info
);
511 static int devlink_nl_cmd_get_dumpit(struct sk_buff
*msg
,
512 struct netlink_callback
*cb
)
514 struct devlink
*devlink
;
515 int start
= cb
->args
[0];
519 mutex_lock(&devlink_mutex
);
520 list_for_each_entry(devlink
, &devlink_list
, list
) {
521 if (!net_eq(devlink_net(devlink
), sock_net(msg
->sk
)))
527 err
= devlink_nl_fill(msg
, devlink
, DEVLINK_CMD_NEW
,
528 NETLINK_CB(cb
->skb
).portid
,
529 cb
->nlh
->nlmsg_seq
, NLM_F_MULTI
);
535 mutex_unlock(&devlink_mutex
);
541 static int devlink_nl_cmd_port_get_doit(struct sk_buff
*skb
,
542 struct genl_info
*info
)
544 struct devlink_port
*devlink_port
= info
->user_ptr
[0];
545 struct devlink
*devlink
= devlink_port
->devlink
;
549 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
553 err
= devlink_nl_port_fill(msg
, devlink
, devlink_port
,
554 DEVLINK_CMD_PORT_NEW
,
555 info
->snd_portid
, info
->snd_seq
, 0);
561 return genlmsg_reply(msg
, info
);
564 static int devlink_nl_cmd_port_get_dumpit(struct sk_buff
*msg
,
565 struct netlink_callback
*cb
)
567 struct devlink
*devlink
;
568 struct devlink_port
*devlink_port
;
569 int start
= cb
->args
[0];
573 mutex_lock(&devlink_mutex
);
574 mutex_lock(&devlink_port_mutex
);
575 list_for_each_entry(devlink
, &devlink_list
, list
) {
576 if (!net_eq(devlink_net(devlink
), sock_net(msg
->sk
)))
578 list_for_each_entry(devlink_port
, &devlink
->port_list
, list
) {
583 err
= devlink_nl_port_fill(msg
, devlink
, devlink_port
,
585 NETLINK_CB(cb
->skb
).portid
,
594 mutex_unlock(&devlink_port_mutex
);
595 mutex_unlock(&devlink_mutex
);
601 static int devlink_port_type_set(struct devlink
*devlink
,
602 struct devlink_port
*devlink_port
,
603 enum devlink_port_type port_type
)
608 if (devlink
->ops
&& devlink
->ops
->port_type_set
) {
609 if (port_type
== DEVLINK_PORT_TYPE_NOTSET
)
611 err
= devlink
->ops
->port_type_set(devlink_port
, port_type
);
614 devlink_port
->desired_type
= port_type
;
615 devlink_port_notify(devlink_port
, DEVLINK_CMD_PORT_NEW
);
621 static int devlink_nl_cmd_port_set_doit(struct sk_buff
*skb
,
622 struct genl_info
*info
)
624 struct devlink_port
*devlink_port
= info
->user_ptr
[0];
625 struct devlink
*devlink
= devlink_port
->devlink
;
628 if (info
->attrs
[DEVLINK_ATTR_PORT_TYPE
]) {
629 enum devlink_port_type port_type
;
631 port_type
= nla_get_u16(info
->attrs
[DEVLINK_ATTR_PORT_TYPE
]);
632 err
= devlink_port_type_set(devlink
, devlink_port
, port_type
);
639 static int devlink_port_split(struct devlink
*devlink
,
640 u32 port_index
, u32 count
)
643 if (devlink
->ops
&& devlink
->ops
->port_split
)
644 return devlink
->ops
->port_split(devlink
, port_index
, count
);
648 static int devlink_nl_cmd_port_split_doit(struct sk_buff
*skb
,
649 struct genl_info
*info
)
651 struct devlink
*devlink
= info
->user_ptr
[0];
655 if (!info
->attrs
[DEVLINK_ATTR_PORT_INDEX
] ||
656 !info
->attrs
[DEVLINK_ATTR_PORT_SPLIT_COUNT
])
659 port_index
= nla_get_u32(info
->attrs
[DEVLINK_ATTR_PORT_INDEX
]);
660 count
= nla_get_u32(info
->attrs
[DEVLINK_ATTR_PORT_SPLIT_COUNT
]);
661 return devlink_port_split(devlink
, port_index
, count
);
664 static int devlink_port_unsplit(struct devlink
*devlink
, u32 port_index
)
667 if (devlink
->ops
&& devlink
->ops
->port_unsplit
)
668 return devlink
->ops
->port_unsplit(devlink
, port_index
);
672 static int devlink_nl_cmd_port_unsplit_doit(struct sk_buff
*skb
,
673 struct genl_info
*info
)
675 struct devlink
*devlink
= info
->user_ptr
[0];
678 if (!info
->attrs
[DEVLINK_ATTR_PORT_INDEX
])
681 port_index
= nla_get_u32(info
->attrs
[DEVLINK_ATTR_PORT_INDEX
]);
682 return devlink_port_unsplit(devlink
, port_index
);
685 static int devlink_nl_sb_fill(struct sk_buff
*msg
, struct devlink
*devlink
,
686 struct devlink_sb
*devlink_sb
,
687 enum devlink_command cmd
, u32 portid
,
692 hdr
= genlmsg_put(msg
, portid
, seq
, &devlink_nl_family
, flags
, cmd
);
696 if (devlink_nl_put_handle(msg
, devlink
))
697 goto nla_put_failure
;
698 if (nla_put_u32(msg
, DEVLINK_ATTR_SB_INDEX
, devlink_sb
->index
))
699 goto nla_put_failure
;
700 if (nla_put_u32(msg
, DEVLINK_ATTR_SB_SIZE
, devlink_sb
->size
))
701 goto nla_put_failure
;
702 if (nla_put_u16(msg
, DEVLINK_ATTR_SB_INGRESS_POOL_COUNT
,
703 devlink_sb
->ingress_pools_count
))
704 goto nla_put_failure
;
705 if (nla_put_u16(msg
, DEVLINK_ATTR_SB_EGRESS_POOL_COUNT
,
706 devlink_sb
->egress_pools_count
))
707 goto nla_put_failure
;
708 if (nla_put_u16(msg
, DEVLINK_ATTR_SB_INGRESS_TC_COUNT
,
709 devlink_sb
->ingress_tc_count
))
710 goto nla_put_failure
;
711 if (nla_put_u16(msg
, DEVLINK_ATTR_SB_EGRESS_TC_COUNT
,
712 devlink_sb
->egress_tc_count
))
713 goto nla_put_failure
;
715 genlmsg_end(msg
, hdr
);
719 genlmsg_cancel(msg
, hdr
);
723 static int devlink_nl_cmd_sb_get_doit(struct sk_buff
*skb
,
724 struct genl_info
*info
)
726 struct devlink
*devlink
= info
->user_ptr
[0];
727 struct devlink_sb
*devlink_sb
= info
->user_ptr
[1];
731 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
735 err
= devlink_nl_sb_fill(msg
, devlink
, devlink_sb
,
737 info
->snd_portid
, info
->snd_seq
, 0);
743 return genlmsg_reply(msg
, info
);
746 static int devlink_nl_cmd_sb_get_dumpit(struct sk_buff
*msg
,
747 struct netlink_callback
*cb
)
749 struct devlink
*devlink
;
750 struct devlink_sb
*devlink_sb
;
751 int start
= cb
->args
[0];
755 mutex_lock(&devlink_mutex
);
756 list_for_each_entry(devlink
, &devlink_list
, list
) {
757 if (!net_eq(devlink_net(devlink
), sock_net(msg
->sk
)))
759 list_for_each_entry(devlink_sb
, &devlink
->sb_list
, list
) {
764 err
= devlink_nl_sb_fill(msg
, devlink
, devlink_sb
,
766 NETLINK_CB(cb
->skb
).portid
,
775 mutex_unlock(&devlink_mutex
);
781 static int devlink_nl_sb_pool_fill(struct sk_buff
*msg
, struct devlink
*devlink
,
782 struct devlink_sb
*devlink_sb
,
783 u16 pool_index
, enum devlink_command cmd
,
784 u32 portid
, u32 seq
, int flags
)
786 struct devlink_sb_pool_info pool_info
;
790 err
= devlink
->ops
->sb_pool_get(devlink
, devlink_sb
->index
,
791 pool_index
, &pool_info
);
795 hdr
= genlmsg_put(msg
, portid
, seq
, &devlink_nl_family
, flags
, cmd
);
799 if (devlink_nl_put_handle(msg
, devlink
))
800 goto nla_put_failure
;
801 if (nla_put_u32(msg
, DEVLINK_ATTR_SB_INDEX
, devlink_sb
->index
))
802 goto nla_put_failure
;
803 if (nla_put_u16(msg
, DEVLINK_ATTR_SB_POOL_INDEX
, pool_index
))
804 goto nla_put_failure
;
805 if (nla_put_u8(msg
, DEVLINK_ATTR_SB_POOL_TYPE
, pool_info
.pool_type
))
806 goto nla_put_failure
;
807 if (nla_put_u32(msg
, DEVLINK_ATTR_SB_POOL_SIZE
, pool_info
.size
))
808 goto nla_put_failure
;
809 if (nla_put_u8(msg
, DEVLINK_ATTR_SB_POOL_THRESHOLD_TYPE
,
810 pool_info
.threshold_type
))
811 goto nla_put_failure
;
813 genlmsg_end(msg
, hdr
);
817 genlmsg_cancel(msg
, hdr
);
821 static int devlink_nl_cmd_sb_pool_get_doit(struct sk_buff
*skb
,
822 struct genl_info
*info
)
824 struct devlink
*devlink
= info
->user_ptr
[0];
825 struct devlink_sb
*devlink_sb
= info
->user_ptr
[1];
830 err
= devlink_sb_pool_index_get_from_info(devlink_sb
, info
,
835 if (!devlink
->ops
|| !devlink
->ops
->sb_pool_get
)
838 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
842 err
= devlink_nl_sb_pool_fill(msg
, devlink
, devlink_sb
, pool_index
,
843 DEVLINK_CMD_SB_POOL_NEW
,
844 info
->snd_portid
, info
->snd_seq
, 0);
850 return genlmsg_reply(msg
, info
);
853 static int __sb_pool_get_dumpit(struct sk_buff
*msg
, int start
, int *p_idx
,
854 struct devlink
*devlink
,
855 struct devlink_sb
*devlink_sb
,
858 u16 pool_count
= devlink_sb_pool_count(devlink_sb
);
862 for (pool_index
= 0; pool_index
< pool_count
; pool_index
++) {
863 if (*p_idx
< start
) {
867 err
= devlink_nl_sb_pool_fill(msg
, devlink
,
870 DEVLINK_CMD_SB_POOL_NEW
,
871 portid
, seq
, NLM_F_MULTI
);
879 static int devlink_nl_cmd_sb_pool_get_dumpit(struct sk_buff
*msg
,
880 struct netlink_callback
*cb
)
882 struct devlink
*devlink
;
883 struct devlink_sb
*devlink_sb
;
884 int start
= cb
->args
[0];
888 mutex_lock(&devlink_mutex
);
889 list_for_each_entry(devlink
, &devlink_list
, list
) {
890 if (!net_eq(devlink_net(devlink
), sock_net(msg
->sk
)) ||
891 !devlink
->ops
|| !devlink
->ops
->sb_pool_get
)
893 list_for_each_entry(devlink_sb
, &devlink
->sb_list
, list
) {
894 err
= __sb_pool_get_dumpit(msg
, start
, &idx
, devlink
,
896 NETLINK_CB(cb
->skb
).portid
,
898 if (err
&& err
!= -EOPNOTSUPP
)
903 mutex_unlock(&devlink_mutex
);
909 static int devlink_sb_pool_set(struct devlink
*devlink
, unsigned int sb_index
,
910 u16 pool_index
, u32 size
,
911 enum devlink_sb_threshold_type threshold_type
)
914 const struct devlink_ops
*ops
= devlink
->ops
;
916 if (ops
&& ops
->sb_pool_set
)
917 return ops
->sb_pool_set(devlink
, sb_index
, pool_index
,
918 size
, threshold_type
);
922 static int devlink_nl_cmd_sb_pool_set_doit(struct sk_buff
*skb
,
923 struct genl_info
*info
)
925 struct devlink
*devlink
= info
->user_ptr
[0];
926 struct devlink_sb
*devlink_sb
= info
->user_ptr
[1];
927 enum devlink_sb_threshold_type threshold_type
;
932 err
= devlink_sb_pool_index_get_from_info(devlink_sb
, info
,
937 err
= devlink_sb_th_type_get_from_info(info
, &threshold_type
);
941 if (!info
->attrs
[DEVLINK_ATTR_SB_POOL_SIZE
])
944 size
= nla_get_u32(info
->attrs
[DEVLINK_ATTR_SB_POOL_SIZE
]);
945 return devlink_sb_pool_set(devlink
, devlink_sb
->index
,
946 pool_index
, size
, threshold_type
);
949 static int devlink_nl_sb_port_pool_fill(struct sk_buff
*msg
,
950 struct devlink
*devlink
,
951 struct devlink_port
*devlink_port
,
952 struct devlink_sb
*devlink_sb
,
954 enum devlink_command cmd
,
955 u32 portid
, u32 seq
, int flags
)
957 const struct devlink_ops
*ops
= devlink
->ops
;
962 err
= ops
->sb_port_pool_get(devlink_port
, devlink_sb
->index
,
963 pool_index
, &threshold
);
967 hdr
= genlmsg_put(msg
, portid
, seq
, &devlink_nl_family
, flags
, cmd
);
971 if (devlink_nl_put_handle(msg
, devlink
))
972 goto nla_put_failure
;
973 if (nla_put_u32(msg
, DEVLINK_ATTR_PORT_INDEX
, devlink_port
->index
))
974 goto nla_put_failure
;
975 if (nla_put_u32(msg
, DEVLINK_ATTR_SB_INDEX
, devlink_sb
->index
))
976 goto nla_put_failure
;
977 if (nla_put_u16(msg
, DEVLINK_ATTR_SB_POOL_INDEX
, pool_index
))
978 goto nla_put_failure
;
979 if (nla_put_u32(msg
, DEVLINK_ATTR_SB_THRESHOLD
, threshold
))
980 goto nla_put_failure
;
982 if (ops
->sb_occ_port_pool_get
) {
986 err
= ops
->sb_occ_port_pool_get(devlink_port
, devlink_sb
->index
,
987 pool_index
, &cur
, &max
);
988 if (err
&& err
!= -EOPNOTSUPP
)
989 goto sb_occ_get_failure
;
991 if (nla_put_u32(msg
, DEVLINK_ATTR_SB_OCC_CUR
, cur
))
992 goto nla_put_failure
;
993 if (nla_put_u32(msg
, DEVLINK_ATTR_SB_OCC_MAX
, max
))
994 goto nla_put_failure
;
998 genlmsg_end(msg
, hdr
);
1004 genlmsg_cancel(msg
, hdr
);
1008 static int devlink_nl_cmd_sb_port_pool_get_doit(struct sk_buff
*skb
,
1009 struct genl_info
*info
)
1011 struct devlink_port
*devlink_port
= info
->user_ptr
[0];
1012 struct devlink
*devlink
= devlink_port
->devlink
;
1013 struct devlink_sb
*devlink_sb
= info
->user_ptr
[1];
1014 struct sk_buff
*msg
;
1018 err
= devlink_sb_pool_index_get_from_info(devlink_sb
, info
,
1023 if (!devlink
->ops
|| !devlink
->ops
->sb_port_pool_get
)
1026 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1030 err
= devlink_nl_sb_port_pool_fill(msg
, devlink
, devlink_port
,
1031 devlink_sb
, pool_index
,
1032 DEVLINK_CMD_SB_PORT_POOL_NEW
,
1033 info
->snd_portid
, info
->snd_seq
, 0);
1039 return genlmsg_reply(msg
, info
);
1042 static int __sb_port_pool_get_dumpit(struct sk_buff
*msg
, int start
, int *p_idx
,
1043 struct devlink
*devlink
,
1044 struct devlink_sb
*devlink_sb
,
1045 u32 portid
, u32 seq
)
1047 struct devlink_port
*devlink_port
;
1048 u16 pool_count
= devlink_sb_pool_count(devlink_sb
);
1052 list_for_each_entry(devlink_port
, &devlink
->port_list
, list
) {
1053 for (pool_index
= 0; pool_index
< pool_count
; pool_index
++) {
1054 if (*p_idx
< start
) {
1058 err
= devlink_nl_sb_port_pool_fill(msg
, devlink
,
1062 DEVLINK_CMD_SB_PORT_POOL_NEW
,
1073 static int devlink_nl_cmd_sb_port_pool_get_dumpit(struct sk_buff
*msg
,
1074 struct netlink_callback
*cb
)
1076 struct devlink
*devlink
;
1077 struct devlink_sb
*devlink_sb
;
1078 int start
= cb
->args
[0];
1082 mutex_lock(&devlink_mutex
);
1083 mutex_lock(&devlink_port_mutex
);
1084 list_for_each_entry(devlink
, &devlink_list
, list
) {
1085 if (!net_eq(devlink_net(devlink
), sock_net(msg
->sk
)) ||
1086 !devlink
->ops
|| !devlink
->ops
->sb_port_pool_get
)
1088 list_for_each_entry(devlink_sb
, &devlink
->sb_list
, list
) {
1089 err
= __sb_port_pool_get_dumpit(msg
, start
, &idx
,
1090 devlink
, devlink_sb
,
1091 NETLINK_CB(cb
->skb
).portid
,
1092 cb
->nlh
->nlmsg_seq
);
1093 if (err
&& err
!= -EOPNOTSUPP
)
1098 mutex_unlock(&devlink_port_mutex
);
1099 mutex_unlock(&devlink_mutex
);
1105 static int devlink_sb_port_pool_set(struct devlink_port
*devlink_port
,
1106 unsigned int sb_index
, u16 pool_index
,
1110 const struct devlink_ops
*ops
= devlink_port
->devlink
->ops
;
1112 if (ops
&& ops
->sb_port_pool_set
)
1113 return ops
->sb_port_pool_set(devlink_port
, sb_index
,
1114 pool_index
, threshold
);
1118 static int devlink_nl_cmd_sb_port_pool_set_doit(struct sk_buff
*skb
,
1119 struct genl_info
*info
)
1121 struct devlink_port
*devlink_port
= info
->user_ptr
[0];
1122 struct devlink_sb
*devlink_sb
= info
->user_ptr
[1];
1127 err
= devlink_sb_pool_index_get_from_info(devlink_sb
, info
,
1132 if (!info
->attrs
[DEVLINK_ATTR_SB_THRESHOLD
])
1135 threshold
= nla_get_u32(info
->attrs
[DEVLINK_ATTR_SB_THRESHOLD
]);
1136 return devlink_sb_port_pool_set(devlink_port
, devlink_sb
->index
,
1137 pool_index
, threshold
);
1141 devlink_nl_sb_tc_pool_bind_fill(struct sk_buff
*msg
, struct devlink
*devlink
,
1142 struct devlink_port
*devlink_port
,
1143 struct devlink_sb
*devlink_sb
, u16 tc_index
,
1144 enum devlink_sb_pool_type pool_type
,
1145 enum devlink_command cmd
,
1146 u32 portid
, u32 seq
, int flags
)
1148 const struct devlink_ops
*ops
= devlink
->ops
;
1154 err
= ops
->sb_tc_pool_bind_get(devlink_port
, devlink_sb
->index
,
1155 tc_index
, pool_type
,
1156 &pool_index
, &threshold
);
1160 hdr
= genlmsg_put(msg
, portid
, seq
, &devlink_nl_family
, flags
, cmd
);
1164 if (devlink_nl_put_handle(msg
, devlink
))
1165 goto nla_put_failure
;
1166 if (nla_put_u32(msg
, DEVLINK_ATTR_PORT_INDEX
, devlink_port
->index
))
1167 goto nla_put_failure
;
1168 if (nla_put_u32(msg
, DEVLINK_ATTR_SB_INDEX
, devlink_sb
->index
))
1169 goto nla_put_failure
;
1170 if (nla_put_u16(msg
, DEVLINK_ATTR_SB_TC_INDEX
, tc_index
))
1171 goto nla_put_failure
;
1172 if (nla_put_u8(msg
, DEVLINK_ATTR_SB_POOL_TYPE
, pool_type
))
1173 goto nla_put_failure
;
1174 if (nla_put_u16(msg
, DEVLINK_ATTR_SB_POOL_INDEX
, pool_index
))
1175 goto nla_put_failure
;
1176 if (nla_put_u32(msg
, DEVLINK_ATTR_SB_THRESHOLD
, threshold
))
1177 goto nla_put_failure
;
1179 if (ops
->sb_occ_tc_port_bind_get
) {
1183 err
= ops
->sb_occ_tc_port_bind_get(devlink_port
,
1185 tc_index
, pool_type
,
1187 if (err
&& err
!= -EOPNOTSUPP
)
1190 if (nla_put_u32(msg
, DEVLINK_ATTR_SB_OCC_CUR
, cur
))
1191 goto nla_put_failure
;
1192 if (nla_put_u32(msg
, DEVLINK_ATTR_SB_OCC_MAX
, max
))
1193 goto nla_put_failure
;
1197 genlmsg_end(msg
, hdr
);
1201 genlmsg_cancel(msg
, hdr
);
1205 static int devlink_nl_cmd_sb_tc_pool_bind_get_doit(struct sk_buff
*skb
,
1206 struct genl_info
*info
)
1208 struct devlink_port
*devlink_port
= info
->user_ptr
[0];
1209 struct devlink
*devlink
= devlink_port
->devlink
;
1210 struct devlink_sb
*devlink_sb
= info
->user_ptr
[1];
1211 struct sk_buff
*msg
;
1212 enum devlink_sb_pool_type pool_type
;
1216 err
= devlink_sb_pool_type_get_from_info(info
, &pool_type
);
1220 err
= devlink_sb_tc_index_get_from_info(devlink_sb
, info
,
1221 pool_type
, &tc_index
);
1225 if (!devlink
->ops
|| !devlink
->ops
->sb_tc_pool_bind_get
)
1228 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1232 err
= devlink_nl_sb_tc_pool_bind_fill(msg
, devlink
, devlink_port
,
1233 devlink_sb
, tc_index
, pool_type
,
1234 DEVLINK_CMD_SB_TC_POOL_BIND_NEW
,
1242 return genlmsg_reply(msg
, info
);
1245 static int __sb_tc_pool_bind_get_dumpit(struct sk_buff
*msg
,
1246 int start
, int *p_idx
,
1247 struct devlink
*devlink
,
1248 struct devlink_sb
*devlink_sb
,
1249 u32 portid
, u32 seq
)
1251 struct devlink_port
*devlink_port
;
1255 list_for_each_entry(devlink_port
, &devlink
->port_list
, list
) {
1257 tc_index
< devlink_sb
->ingress_tc_count
; tc_index
++) {
1258 if (*p_idx
< start
) {
1262 err
= devlink_nl_sb_tc_pool_bind_fill(msg
, devlink
,
1266 DEVLINK_SB_POOL_TYPE_INGRESS
,
1267 DEVLINK_CMD_SB_TC_POOL_BIND_NEW
,
1275 tc_index
< devlink_sb
->egress_tc_count
; tc_index
++) {
1276 if (*p_idx
< start
) {
1280 err
= devlink_nl_sb_tc_pool_bind_fill(msg
, devlink
,
1284 DEVLINK_SB_POOL_TYPE_EGRESS
,
1285 DEVLINK_CMD_SB_TC_POOL_BIND_NEW
,
1297 devlink_nl_cmd_sb_tc_pool_bind_get_dumpit(struct sk_buff
*msg
,
1298 struct netlink_callback
*cb
)
1300 struct devlink
*devlink
;
1301 struct devlink_sb
*devlink_sb
;
1302 int start
= cb
->args
[0];
1306 mutex_lock(&devlink_mutex
);
1307 mutex_lock(&devlink_port_mutex
);
1308 list_for_each_entry(devlink
, &devlink_list
, list
) {
1309 if (!net_eq(devlink_net(devlink
), sock_net(msg
->sk
)) ||
1310 !devlink
->ops
|| !devlink
->ops
->sb_tc_pool_bind_get
)
1312 list_for_each_entry(devlink_sb
, &devlink
->sb_list
, list
) {
1313 err
= __sb_tc_pool_bind_get_dumpit(msg
, start
, &idx
,
1316 NETLINK_CB(cb
->skb
).portid
,
1317 cb
->nlh
->nlmsg_seq
);
1318 if (err
&& err
!= -EOPNOTSUPP
)
1323 mutex_unlock(&devlink_port_mutex
);
1324 mutex_unlock(&devlink_mutex
);
1330 static int devlink_sb_tc_pool_bind_set(struct devlink_port
*devlink_port
,
1331 unsigned int sb_index
, u16 tc_index
,
1332 enum devlink_sb_pool_type pool_type
,
1333 u16 pool_index
, u32 threshold
)
1336 const struct devlink_ops
*ops
= devlink_port
->devlink
->ops
;
1338 if (ops
&& ops
->sb_tc_pool_bind_set
)
1339 return ops
->sb_tc_pool_bind_set(devlink_port
, sb_index
,
1340 tc_index
, pool_type
,
1341 pool_index
, threshold
);
1345 static int devlink_nl_cmd_sb_tc_pool_bind_set_doit(struct sk_buff
*skb
,
1346 struct genl_info
*info
)
1348 struct devlink_port
*devlink_port
= info
->user_ptr
[0];
1349 struct devlink_sb
*devlink_sb
= info
->user_ptr
[1];
1350 enum devlink_sb_pool_type pool_type
;
1356 err
= devlink_sb_pool_type_get_from_info(info
, &pool_type
);
1360 err
= devlink_sb_tc_index_get_from_info(devlink_sb
, info
,
1361 pool_type
, &tc_index
);
1365 err
= devlink_sb_pool_index_get_from_info(devlink_sb
, info
,
1370 if (!info
->attrs
[DEVLINK_ATTR_SB_THRESHOLD
])
1373 threshold
= nla_get_u32(info
->attrs
[DEVLINK_ATTR_SB_THRESHOLD
]);
1374 return devlink_sb_tc_pool_bind_set(devlink_port
, devlink_sb
->index
,
1375 tc_index
, pool_type
,
1376 pool_index
, threshold
);
1379 static int devlink_nl_cmd_sb_occ_snapshot_doit(struct sk_buff
*skb
,
1380 struct genl_info
*info
)
1382 struct devlink
*devlink
= info
->user_ptr
[0];
1383 struct devlink_sb
*devlink_sb
= info
->user_ptr
[1];
1384 const struct devlink_ops
*ops
= devlink
->ops
;
1386 if (ops
&& ops
->sb_occ_snapshot
)
1387 return ops
->sb_occ_snapshot(devlink
, devlink_sb
->index
);
1391 static int devlink_nl_cmd_sb_occ_max_clear_doit(struct sk_buff
*skb
,
1392 struct genl_info
*info
)
1394 struct devlink
*devlink
= info
->user_ptr
[0];
1395 struct devlink_sb
*devlink_sb
= info
->user_ptr
[1];
1396 const struct devlink_ops
*ops
= devlink
->ops
;
1398 if (ops
&& ops
->sb_occ_max_clear
)
1399 return ops
->sb_occ_max_clear(devlink
, devlink_sb
->index
);
1403 static int devlink_eswitch_fill(struct sk_buff
*msg
, struct devlink
*devlink
,
1404 enum devlink_command cmd
, u32 portid
,
1405 u32 seq
, int flags
, u16 mode
)
1409 hdr
= genlmsg_put(msg
, portid
, seq
, &devlink_nl_family
, flags
, cmd
);
1413 if (devlink_nl_put_handle(msg
, devlink
))
1414 goto nla_put_failure
;
1416 if (nla_put_u16(msg
, DEVLINK_ATTR_ESWITCH_MODE
, mode
))
1417 goto nla_put_failure
;
1419 genlmsg_end(msg
, hdr
);
1423 genlmsg_cancel(msg
, hdr
);
1427 static int devlink_nl_cmd_eswitch_mode_get_doit(struct sk_buff
*skb
,
1428 struct genl_info
*info
)
1430 struct devlink
*devlink
= info
->user_ptr
[0];
1431 const struct devlink_ops
*ops
= devlink
->ops
;
1432 struct sk_buff
*msg
;
1436 if (!ops
|| !ops
->eswitch_mode_get
)
1439 err
= ops
->eswitch_mode_get(devlink
, &mode
);
1443 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1447 err
= devlink_eswitch_fill(msg
, devlink
, DEVLINK_CMD_ESWITCH_MODE_GET
,
1448 info
->snd_portid
, info
->snd_seq
, 0, mode
);
1455 return genlmsg_reply(msg
, info
);
1458 static int devlink_nl_cmd_eswitch_mode_set_doit(struct sk_buff
*skb
,
1459 struct genl_info
*info
)
1461 struct devlink
*devlink
= info
->user_ptr
[0];
1462 const struct devlink_ops
*ops
= devlink
->ops
;
1465 if (!info
->attrs
[DEVLINK_ATTR_ESWITCH_MODE
])
1468 mode
= nla_get_u16(info
->attrs
[DEVLINK_ATTR_ESWITCH_MODE
]);
1470 if (ops
&& ops
->eswitch_mode_set
)
1471 return ops
->eswitch_mode_set(devlink
, mode
);
1475 static const struct nla_policy devlink_nl_policy
[DEVLINK_ATTR_MAX
+ 1] = {
1476 [DEVLINK_ATTR_BUS_NAME
] = { .type
= NLA_NUL_STRING
},
1477 [DEVLINK_ATTR_DEV_NAME
] = { .type
= NLA_NUL_STRING
},
1478 [DEVLINK_ATTR_PORT_INDEX
] = { .type
= NLA_U32
},
1479 [DEVLINK_ATTR_PORT_TYPE
] = { .type
= NLA_U16
},
1480 [DEVLINK_ATTR_PORT_SPLIT_COUNT
] = { .type
= NLA_U32
},
1481 [DEVLINK_ATTR_SB_INDEX
] = { .type
= NLA_U32
},
1482 [DEVLINK_ATTR_SB_POOL_INDEX
] = { .type
= NLA_U16
},
1483 [DEVLINK_ATTR_SB_POOL_TYPE
] = { .type
= NLA_U8
},
1484 [DEVLINK_ATTR_SB_POOL_SIZE
] = { .type
= NLA_U32
},
1485 [DEVLINK_ATTR_SB_POOL_THRESHOLD_TYPE
] = { .type
= NLA_U8
},
1486 [DEVLINK_ATTR_SB_THRESHOLD
] = { .type
= NLA_U32
},
1487 [DEVLINK_ATTR_SB_TC_INDEX
] = { .type
= NLA_U16
},
1488 [DEVLINK_ATTR_ESWITCH_MODE
] = { .type
= NLA_U16
},
1491 static const struct genl_ops devlink_nl_ops
[] = {
1493 .cmd
= DEVLINK_CMD_GET
,
1494 .doit
= devlink_nl_cmd_get_doit
,
1495 .dumpit
= devlink_nl_cmd_get_dumpit
,
1496 .policy
= devlink_nl_policy
,
1497 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
,
1498 /* can be retrieved by unprivileged users */
1501 .cmd
= DEVLINK_CMD_PORT_GET
,
1502 .doit
= devlink_nl_cmd_port_get_doit
,
1503 .dumpit
= devlink_nl_cmd_port_get_dumpit
,
1504 .policy
= devlink_nl_policy
,
1505 .internal_flags
= DEVLINK_NL_FLAG_NEED_PORT
,
1506 /* can be retrieved by unprivileged users */
1509 .cmd
= DEVLINK_CMD_PORT_SET
,
1510 .doit
= devlink_nl_cmd_port_set_doit
,
1511 .policy
= devlink_nl_policy
,
1512 .flags
= GENL_ADMIN_PERM
,
1513 .internal_flags
= DEVLINK_NL_FLAG_NEED_PORT
,
1516 .cmd
= DEVLINK_CMD_PORT_SPLIT
,
1517 .doit
= devlink_nl_cmd_port_split_doit
,
1518 .policy
= devlink_nl_policy
,
1519 .flags
= GENL_ADMIN_PERM
,
1520 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
,
1523 .cmd
= DEVLINK_CMD_PORT_UNSPLIT
,
1524 .doit
= devlink_nl_cmd_port_unsplit_doit
,
1525 .policy
= devlink_nl_policy
,
1526 .flags
= GENL_ADMIN_PERM
,
1527 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
,
1530 .cmd
= DEVLINK_CMD_SB_GET
,
1531 .doit
= devlink_nl_cmd_sb_get_doit
,
1532 .dumpit
= devlink_nl_cmd_sb_get_dumpit
,
1533 .policy
= devlink_nl_policy
,
1534 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
|
1535 DEVLINK_NL_FLAG_NEED_SB
,
1536 /* can be retrieved by unprivileged users */
1539 .cmd
= DEVLINK_CMD_SB_POOL_GET
,
1540 .doit
= devlink_nl_cmd_sb_pool_get_doit
,
1541 .dumpit
= devlink_nl_cmd_sb_pool_get_dumpit
,
1542 .policy
= devlink_nl_policy
,
1543 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
|
1544 DEVLINK_NL_FLAG_NEED_SB
,
1545 /* can be retrieved by unprivileged users */
1548 .cmd
= DEVLINK_CMD_SB_POOL_SET
,
1549 .doit
= devlink_nl_cmd_sb_pool_set_doit
,
1550 .policy
= devlink_nl_policy
,
1551 .flags
= GENL_ADMIN_PERM
,
1552 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
|
1553 DEVLINK_NL_FLAG_NEED_SB
,
1556 .cmd
= DEVLINK_CMD_SB_PORT_POOL_GET
,
1557 .doit
= devlink_nl_cmd_sb_port_pool_get_doit
,
1558 .dumpit
= devlink_nl_cmd_sb_port_pool_get_dumpit
,
1559 .policy
= devlink_nl_policy
,
1560 .internal_flags
= DEVLINK_NL_FLAG_NEED_PORT
|
1561 DEVLINK_NL_FLAG_NEED_SB
,
1562 /* can be retrieved by unprivileged users */
1565 .cmd
= DEVLINK_CMD_SB_PORT_POOL_SET
,
1566 .doit
= devlink_nl_cmd_sb_port_pool_set_doit
,
1567 .policy
= devlink_nl_policy
,
1568 .flags
= GENL_ADMIN_PERM
,
1569 .internal_flags
= DEVLINK_NL_FLAG_NEED_PORT
|
1570 DEVLINK_NL_FLAG_NEED_SB
,
1573 .cmd
= DEVLINK_CMD_SB_TC_POOL_BIND_GET
,
1574 .doit
= devlink_nl_cmd_sb_tc_pool_bind_get_doit
,
1575 .dumpit
= devlink_nl_cmd_sb_tc_pool_bind_get_dumpit
,
1576 .policy
= devlink_nl_policy
,
1577 .internal_flags
= DEVLINK_NL_FLAG_NEED_PORT
|
1578 DEVLINK_NL_FLAG_NEED_SB
,
1579 /* can be retrieved by unprivileged users */
1582 .cmd
= DEVLINK_CMD_SB_TC_POOL_BIND_SET
,
1583 .doit
= devlink_nl_cmd_sb_tc_pool_bind_set_doit
,
1584 .policy
= devlink_nl_policy
,
1585 .flags
= GENL_ADMIN_PERM
,
1586 .internal_flags
= DEVLINK_NL_FLAG_NEED_PORT
|
1587 DEVLINK_NL_FLAG_NEED_SB
,
1590 .cmd
= DEVLINK_CMD_SB_OCC_SNAPSHOT
,
1591 .doit
= devlink_nl_cmd_sb_occ_snapshot_doit
,
1592 .policy
= devlink_nl_policy
,
1593 .flags
= GENL_ADMIN_PERM
,
1594 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
|
1595 DEVLINK_NL_FLAG_NEED_SB
|
1596 DEVLINK_NL_FLAG_LOCK_PORTS
,
1599 .cmd
= DEVLINK_CMD_SB_OCC_MAX_CLEAR
,
1600 .doit
= devlink_nl_cmd_sb_occ_max_clear_doit
,
1601 .policy
= devlink_nl_policy
,
1602 .flags
= GENL_ADMIN_PERM
,
1603 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
|
1604 DEVLINK_NL_FLAG_NEED_SB
|
1605 DEVLINK_NL_FLAG_LOCK_PORTS
,
1608 .cmd
= DEVLINK_CMD_ESWITCH_MODE_GET
,
1609 .doit
= devlink_nl_cmd_eswitch_mode_get_doit
,
1610 .policy
= devlink_nl_policy
,
1611 .flags
= GENL_ADMIN_PERM
,
1612 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
,
1615 .cmd
= DEVLINK_CMD_ESWITCH_MODE_SET
,
1616 .doit
= devlink_nl_cmd_eswitch_mode_set_doit
,
1617 .policy
= devlink_nl_policy
,
1618 .flags
= GENL_ADMIN_PERM
,
1619 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
,
1624 * devlink_alloc - Allocate new devlink instance resources
1627 * @priv_size: size of user private data
1629 * Allocate new devlink instance resources, including devlink index
1632 struct devlink
*devlink_alloc(const struct devlink_ops
*ops
, size_t priv_size
)
1634 struct devlink
*devlink
;
1636 devlink
= kzalloc(sizeof(*devlink
) + priv_size
, GFP_KERNEL
);
1640 devlink_net_set(devlink
, &init_net
);
1641 INIT_LIST_HEAD(&devlink
->port_list
);
1642 INIT_LIST_HEAD(&devlink
->sb_list
);
1645 EXPORT_SYMBOL_GPL(devlink_alloc
);
1648 * devlink_register - Register devlink instance
1652 int devlink_register(struct devlink
*devlink
, struct device
*dev
)
1654 mutex_lock(&devlink_mutex
);
1656 list_add_tail(&devlink
->list
, &devlink_list
);
1657 devlink_notify(devlink
, DEVLINK_CMD_NEW
);
1658 mutex_unlock(&devlink_mutex
);
1661 EXPORT_SYMBOL_GPL(devlink_register
);
1664 * devlink_unregister - Unregister devlink instance
1668 void devlink_unregister(struct devlink
*devlink
)
1670 mutex_lock(&devlink_mutex
);
1671 devlink_notify(devlink
, DEVLINK_CMD_DEL
);
1672 list_del(&devlink
->list
);
1673 mutex_unlock(&devlink_mutex
);
1675 EXPORT_SYMBOL_GPL(devlink_unregister
);
1678 * devlink_free - Free devlink instance resources
1682 void devlink_free(struct devlink
*devlink
)
1686 EXPORT_SYMBOL_GPL(devlink_free
);
1689 * devlink_port_register - Register devlink port
1692 * @devlink_port: devlink port
1695 * Register devlink port with provided port index. User can use
1696 * any indexing, even hw-related one. devlink_port structure
1697 * is convenient to be embedded inside user driver private structure.
1698 * Note that the caller should take care of zeroing the devlink_port
1701 int devlink_port_register(struct devlink
*devlink
,
1702 struct devlink_port
*devlink_port
,
1703 unsigned int port_index
)
1705 mutex_lock(&devlink_port_mutex
);
1706 if (devlink_port_index_exists(devlink
, port_index
)) {
1707 mutex_unlock(&devlink_port_mutex
);
1710 devlink_port
->devlink
= devlink
;
1711 devlink_port
->index
= port_index
;
1712 devlink_port
->registered
= true;
1713 list_add_tail(&devlink_port
->list
, &devlink
->port_list
);
1714 mutex_unlock(&devlink_port_mutex
);
1715 devlink_port_notify(devlink_port
, DEVLINK_CMD_PORT_NEW
);
1718 EXPORT_SYMBOL_GPL(devlink_port_register
);
1721 * devlink_port_unregister - Unregister devlink port
1723 * @devlink_port: devlink port
1725 void devlink_port_unregister(struct devlink_port
*devlink_port
)
1727 devlink_port_notify(devlink_port
, DEVLINK_CMD_PORT_DEL
);
1728 mutex_lock(&devlink_port_mutex
);
1729 list_del(&devlink_port
->list
);
1730 mutex_unlock(&devlink_port_mutex
);
1732 EXPORT_SYMBOL_GPL(devlink_port_unregister
);
1734 static void __devlink_port_type_set(struct devlink_port
*devlink_port
,
1735 enum devlink_port_type type
,
1738 devlink_port
->type
= type
;
1739 devlink_port
->type_dev
= type_dev
;
1740 devlink_port_notify(devlink_port
, DEVLINK_CMD_PORT_NEW
);
1744 * devlink_port_type_eth_set - Set port type to Ethernet
1746 * @devlink_port: devlink port
1747 * @netdev: related netdevice
1749 void devlink_port_type_eth_set(struct devlink_port
*devlink_port
,
1750 struct net_device
*netdev
)
1752 return __devlink_port_type_set(devlink_port
,
1753 DEVLINK_PORT_TYPE_ETH
, netdev
);
1755 EXPORT_SYMBOL_GPL(devlink_port_type_eth_set
);
1758 * devlink_port_type_ib_set - Set port type to InfiniBand
1760 * @devlink_port: devlink port
1761 * @ibdev: related IB device
1763 void devlink_port_type_ib_set(struct devlink_port
*devlink_port
,
1764 struct ib_device
*ibdev
)
1766 return __devlink_port_type_set(devlink_port
,
1767 DEVLINK_PORT_TYPE_IB
, ibdev
);
1769 EXPORT_SYMBOL_GPL(devlink_port_type_ib_set
);
1772 * devlink_port_type_clear - Clear port type
1774 * @devlink_port: devlink port
1776 void devlink_port_type_clear(struct devlink_port
*devlink_port
)
1778 return __devlink_port_type_set(devlink_port
,
1779 DEVLINK_PORT_TYPE_NOTSET
, NULL
);
1781 EXPORT_SYMBOL_GPL(devlink_port_type_clear
);
1784 * devlink_port_split_set - Set port is split
1786 * @devlink_port: devlink port
1787 * @split_group: split group - identifies group split port is part of
1789 void devlink_port_split_set(struct devlink_port
*devlink_port
,
1792 devlink_port
->split
= true;
1793 devlink_port
->split_group
= split_group
;
1794 devlink_port_notify(devlink_port
, DEVLINK_CMD_PORT_NEW
);
1796 EXPORT_SYMBOL_GPL(devlink_port_split_set
);
1798 int devlink_sb_register(struct devlink
*devlink
, unsigned int sb_index
,
1799 u32 size
, u16 ingress_pools_count
,
1800 u16 egress_pools_count
, u16 ingress_tc_count
,
1801 u16 egress_tc_count
)
1803 struct devlink_sb
*devlink_sb
;
1806 mutex_lock(&devlink_mutex
);
1807 if (devlink_sb_index_exists(devlink
, sb_index
)) {
1812 devlink_sb
= kzalloc(sizeof(*devlink_sb
), GFP_KERNEL
);
1817 devlink_sb
->index
= sb_index
;
1818 devlink_sb
->size
= size
;
1819 devlink_sb
->ingress_pools_count
= ingress_pools_count
;
1820 devlink_sb
->egress_pools_count
= egress_pools_count
;
1821 devlink_sb
->ingress_tc_count
= ingress_tc_count
;
1822 devlink_sb
->egress_tc_count
= egress_tc_count
;
1823 list_add_tail(&devlink_sb
->list
, &devlink
->sb_list
);
1825 mutex_unlock(&devlink_mutex
);
1828 EXPORT_SYMBOL_GPL(devlink_sb_register
);
1830 void devlink_sb_unregister(struct devlink
*devlink
, unsigned int sb_index
)
1832 struct devlink_sb
*devlink_sb
;
1834 mutex_lock(&devlink_mutex
);
1835 devlink_sb
= devlink_sb_get_by_index(devlink
, sb_index
);
1836 WARN_ON(!devlink_sb
);
1837 list_del(&devlink_sb
->list
);
1838 mutex_unlock(&devlink_mutex
);
1841 EXPORT_SYMBOL_GPL(devlink_sb_unregister
);
1843 static int __init
devlink_module_init(void)
1845 return genl_register_family_with_ops_groups(&devlink_nl_family
,
1850 static void __exit
devlink_module_exit(void)
1852 genl_unregister_family(&devlink_nl_family
);
1855 module_init(devlink_module_init
);
1856 module_exit(devlink_module_exit
);
1858 MODULE_LICENSE("GPL v2");
1859 MODULE_AUTHOR("Jiri Pirko <jiri@mellanox.com>");
1860 MODULE_DESCRIPTION("Network physical device Netlink interface");
1861 MODULE_ALIAS_GENL_FAMILY(DEVLINK_GENL_NAME
);