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
)
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
);
1002 genlmsg_cancel(msg
, hdr
);
1006 static int devlink_nl_cmd_sb_port_pool_get_doit(struct sk_buff
*skb
,
1007 struct genl_info
*info
)
1009 struct devlink_port
*devlink_port
= info
->user_ptr
[0];
1010 struct devlink
*devlink
= devlink_port
->devlink
;
1011 struct devlink_sb
*devlink_sb
= info
->user_ptr
[1];
1012 struct sk_buff
*msg
;
1016 err
= devlink_sb_pool_index_get_from_info(devlink_sb
, info
,
1021 if (!devlink
->ops
|| !devlink
->ops
->sb_port_pool_get
)
1024 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1028 err
= devlink_nl_sb_port_pool_fill(msg
, devlink
, devlink_port
,
1029 devlink_sb
, pool_index
,
1030 DEVLINK_CMD_SB_PORT_POOL_NEW
,
1031 info
->snd_portid
, info
->snd_seq
, 0);
1037 return genlmsg_reply(msg
, info
);
1040 static int __sb_port_pool_get_dumpit(struct sk_buff
*msg
, int start
, int *p_idx
,
1041 struct devlink
*devlink
,
1042 struct devlink_sb
*devlink_sb
,
1043 u32 portid
, u32 seq
)
1045 struct devlink_port
*devlink_port
;
1046 u16 pool_count
= devlink_sb_pool_count(devlink_sb
);
1050 list_for_each_entry(devlink_port
, &devlink
->port_list
, list
) {
1051 for (pool_index
= 0; pool_index
< pool_count
; pool_index
++) {
1052 if (*p_idx
< start
) {
1056 err
= devlink_nl_sb_port_pool_fill(msg
, devlink
,
1060 DEVLINK_CMD_SB_PORT_POOL_NEW
,
1071 static int devlink_nl_cmd_sb_port_pool_get_dumpit(struct sk_buff
*msg
,
1072 struct netlink_callback
*cb
)
1074 struct devlink
*devlink
;
1075 struct devlink_sb
*devlink_sb
;
1076 int start
= cb
->args
[0];
1080 mutex_lock(&devlink_mutex
);
1081 mutex_lock(&devlink_port_mutex
);
1082 list_for_each_entry(devlink
, &devlink_list
, list
) {
1083 if (!net_eq(devlink_net(devlink
), sock_net(msg
->sk
)) ||
1084 !devlink
->ops
|| !devlink
->ops
->sb_port_pool_get
)
1086 list_for_each_entry(devlink_sb
, &devlink
->sb_list
, list
) {
1087 err
= __sb_port_pool_get_dumpit(msg
, start
, &idx
,
1088 devlink
, devlink_sb
,
1089 NETLINK_CB(cb
->skb
).portid
,
1090 cb
->nlh
->nlmsg_seq
);
1091 if (err
&& err
!= -EOPNOTSUPP
)
1096 mutex_unlock(&devlink_port_mutex
);
1097 mutex_unlock(&devlink_mutex
);
1103 static int devlink_sb_port_pool_set(struct devlink_port
*devlink_port
,
1104 unsigned int sb_index
, u16 pool_index
,
1108 const struct devlink_ops
*ops
= devlink_port
->devlink
->ops
;
1110 if (ops
&& ops
->sb_port_pool_set
)
1111 return ops
->sb_port_pool_set(devlink_port
, sb_index
,
1112 pool_index
, threshold
);
1116 static int devlink_nl_cmd_sb_port_pool_set_doit(struct sk_buff
*skb
,
1117 struct genl_info
*info
)
1119 struct devlink_port
*devlink_port
= info
->user_ptr
[0];
1120 struct devlink_sb
*devlink_sb
= info
->user_ptr
[1];
1125 err
= devlink_sb_pool_index_get_from_info(devlink_sb
, info
,
1130 if (!info
->attrs
[DEVLINK_ATTR_SB_THRESHOLD
])
1133 threshold
= nla_get_u32(info
->attrs
[DEVLINK_ATTR_SB_THRESHOLD
]);
1134 return devlink_sb_port_pool_set(devlink_port
, devlink_sb
->index
,
1135 pool_index
, threshold
);
1139 devlink_nl_sb_tc_pool_bind_fill(struct sk_buff
*msg
, struct devlink
*devlink
,
1140 struct devlink_port
*devlink_port
,
1141 struct devlink_sb
*devlink_sb
, u16 tc_index
,
1142 enum devlink_sb_pool_type pool_type
,
1143 enum devlink_command cmd
,
1144 u32 portid
, u32 seq
, int flags
)
1146 const struct devlink_ops
*ops
= devlink
->ops
;
1152 err
= ops
->sb_tc_pool_bind_get(devlink_port
, devlink_sb
->index
,
1153 tc_index
, pool_type
,
1154 &pool_index
, &threshold
);
1158 hdr
= genlmsg_put(msg
, portid
, seq
, &devlink_nl_family
, flags
, cmd
);
1162 if (devlink_nl_put_handle(msg
, devlink
))
1163 goto nla_put_failure
;
1164 if (nla_put_u32(msg
, DEVLINK_ATTR_PORT_INDEX
, devlink_port
->index
))
1165 goto nla_put_failure
;
1166 if (nla_put_u32(msg
, DEVLINK_ATTR_SB_INDEX
, devlink_sb
->index
))
1167 goto nla_put_failure
;
1168 if (nla_put_u16(msg
, DEVLINK_ATTR_SB_TC_INDEX
, tc_index
))
1169 goto nla_put_failure
;
1170 if (nla_put_u8(msg
, DEVLINK_ATTR_SB_POOL_TYPE
, pool_type
))
1171 goto nla_put_failure
;
1172 if (nla_put_u16(msg
, DEVLINK_ATTR_SB_POOL_INDEX
, pool_index
))
1173 goto nla_put_failure
;
1174 if (nla_put_u32(msg
, DEVLINK_ATTR_SB_THRESHOLD
, threshold
))
1175 goto nla_put_failure
;
1177 if (ops
->sb_occ_tc_port_bind_get
) {
1181 err
= ops
->sb_occ_tc_port_bind_get(devlink_port
,
1183 tc_index
, pool_type
,
1185 if (err
&& err
!= -EOPNOTSUPP
)
1188 if (nla_put_u32(msg
, DEVLINK_ATTR_SB_OCC_CUR
, cur
))
1189 goto nla_put_failure
;
1190 if (nla_put_u32(msg
, DEVLINK_ATTR_SB_OCC_MAX
, max
))
1191 goto nla_put_failure
;
1195 genlmsg_end(msg
, hdr
);
1199 genlmsg_cancel(msg
, hdr
);
1203 static int devlink_nl_cmd_sb_tc_pool_bind_get_doit(struct sk_buff
*skb
,
1204 struct genl_info
*info
)
1206 struct devlink_port
*devlink_port
= info
->user_ptr
[0];
1207 struct devlink
*devlink
= devlink_port
->devlink
;
1208 struct devlink_sb
*devlink_sb
= info
->user_ptr
[1];
1209 struct sk_buff
*msg
;
1210 enum devlink_sb_pool_type pool_type
;
1214 err
= devlink_sb_pool_type_get_from_info(info
, &pool_type
);
1218 err
= devlink_sb_tc_index_get_from_info(devlink_sb
, info
,
1219 pool_type
, &tc_index
);
1223 if (!devlink
->ops
|| !devlink
->ops
->sb_tc_pool_bind_get
)
1226 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1230 err
= devlink_nl_sb_tc_pool_bind_fill(msg
, devlink
, devlink_port
,
1231 devlink_sb
, tc_index
, pool_type
,
1232 DEVLINK_CMD_SB_TC_POOL_BIND_NEW
,
1240 return genlmsg_reply(msg
, info
);
1243 static int __sb_tc_pool_bind_get_dumpit(struct sk_buff
*msg
,
1244 int start
, int *p_idx
,
1245 struct devlink
*devlink
,
1246 struct devlink_sb
*devlink_sb
,
1247 u32 portid
, u32 seq
)
1249 struct devlink_port
*devlink_port
;
1253 list_for_each_entry(devlink_port
, &devlink
->port_list
, list
) {
1255 tc_index
< devlink_sb
->ingress_tc_count
; tc_index
++) {
1256 if (*p_idx
< start
) {
1260 err
= devlink_nl_sb_tc_pool_bind_fill(msg
, devlink
,
1264 DEVLINK_SB_POOL_TYPE_INGRESS
,
1265 DEVLINK_CMD_SB_TC_POOL_BIND_NEW
,
1273 tc_index
< devlink_sb
->egress_tc_count
; tc_index
++) {
1274 if (*p_idx
< start
) {
1278 err
= devlink_nl_sb_tc_pool_bind_fill(msg
, devlink
,
1282 DEVLINK_SB_POOL_TYPE_EGRESS
,
1283 DEVLINK_CMD_SB_TC_POOL_BIND_NEW
,
1295 devlink_nl_cmd_sb_tc_pool_bind_get_dumpit(struct sk_buff
*msg
,
1296 struct netlink_callback
*cb
)
1298 struct devlink
*devlink
;
1299 struct devlink_sb
*devlink_sb
;
1300 int start
= cb
->args
[0];
1304 mutex_lock(&devlink_mutex
);
1305 mutex_lock(&devlink_port_mutex
);
1306 list_for_each_entry(devlink
, &devlink_list
, list
) {
1307 if (!net_eq(devlink_net(devlink
), sock_net(msg
->sk
)) ||
1308 !devlink
->ops
|| !devlink
->ops
->sb_tc_pool_bind_get
)
1310 list_for_each_entry(devlink_sb
, &devlink
->sb_list
, list
) {
1311 err
= __sb_tc_pool_bind_get_dumpit(msg
, start
, &idx
,
1314 NETLINK_CB(cb
->skb
).portid
,
1315 cb
->nlh
->nlmsg_seq
);
1316 if (err
&& err
!= -EOPNOTSUPP
)
1321 mutex_unlock(&devlink_port_mutex
);
1322 mutex_unlock(&devlink_mutex
);
1328 static int devlink_sb_tc_pool_bind_set(struct devlink_port
*devlink_port
,
1329 unsigned int sb_index
, u16 tc_index
,
1330 enum devlink_sb_pool_type pool_type
,
1331 u16 pool_index
, u32 threshold
)
1334 const struct devlink_ops
*ops
= devlink_port
->devlink
->ops
;
1336 if (ops
&& ops
->sb_tc_pool_bind_set
)
1337 return ops
->sb_tc_pool_bind_set(devlink_port
, sb_index
,
1338 tc_index
, pool_type
,
1339 pool_index
, threshold
);
1343 static int devlink_nl_cmd_sb_tc_pool_bind_set_doit(struct sk_buff
*skb
,
1344 struct genl_info
*info
)
1346 struct devlink_port
*devlink_port
= info
->user_ptr
[0];
1347 struct devlink_sb
*devlink_sb
= info
->user_ptr
[1];
1348 enum devlink_sb_pool_type pool_type
;
1354 err
= devlink_sb_pool_type_get_from_info(info
, &pool_type
);
1358 err
= devlink_sb_tc_index_get_from_info(devlink_sb
, info
,
1359 pool_type
, &tc_index
);
1363 err
= devlink_sb_pool_index_get_from_info(devlink_sb
, info
,
1368 if (!info
->attrs
[DEVLINK_ATTR_SB_THRESHOLD
])
1371 threshold
= nla_get_u32(info
->attrs
[DEVLINK_ATTR_SB_THRESHOLD
]);
1372 return devlink_sb_tc_pool_bind_set(devlink_port
, devlink_sb
->index
,
1373 tc_index
, pool_type
,
1374 pool_index
, threshold
);
1377 static int devlink_nl_cmd_sb_occ_snapshot_doit(struct sk_buff
*skb
,
1378 struct genl_info
*info
)
1380 struct devlink
*devlink
= info
->user_ptr
[0];
1381 struct devlink_sb
*devlink_sb
= info
->user_ptr
[1];
1382 const struct devlink_ops
*ops
= devlink
->ops
;
1384 if (ops
&& ops
->sb_occ_snapshot
)
1385 return ops
->sb_occ_snapshot(devlink
, devlink_sb
->index
);
1389 static int devlink_nl_cmd_sb_occ_max_clear_doit(struct sk_buff
*skb
,
1390 struct genl_info
*info
)
1392 struct devlink
*devlink
= info
->user_ptr
[0];
1393 struct devlink_sb
*devlink_sb
= info
->user_ptr
[1];
1394 const struct devlink_ops
*ops
= devlink
->ops
;
1396 if (ops
&& ops
->sb_occ_max_clear
)
1397 return ops
->sb_occ_max_clear(devlink
, devlink_sb
->index
);
1401 static int devlink_eswitch_fill(struct sk_buff
*msg
, struct devlink
*devlink
,
1402 enum devlink_command cmd
, u32 portid
,
1403 u32 seq
, int flags
, u16 mode
)
1407 hdr
= genlmsg_put(msg
, portid
, seq
, &devlink_nl_family
, flags
, cmd
);
1411 if (devlink_nl_put_handle(msg
, devlink
))
1412 goto nla_put_failure
;
1414 if (nla_put_u16(msg
, DEVLINK_ATTR_ESWITCH_MODE
, mode
))
1415 goto nla_put_failure
;
1417 genlmsg_end(msg
, hdr
);
1421 genlmsg_cancel(msg
, hdr
);
1425 static int devlink_nl_cmd_eswitch_mode_get_doit(struct sk_buff
*skb
,
1426 struct genl_info
*info
)
1428 struct devlink
*devlink
= info
->user_ptr
[0];
1429 const struct devlink_ops
*ops
= devlink
->ops
;
1430 struct sk_buff
*msg
;
1434 if (!ops
|| !ops
->eswitch_mode_get
)
1437 err
= ops
->eswitch_mode_get(devlink
, &mode
);
1441 msg
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
1445 err
= devlink_eswitch_fill(msg
, devlink
, DEVLINK_CMD_ESWITCH_MODE_GET
,
1446 info
->snd_portid
, info
->snd_seq
, 0, mode
);
1453 return genlmsg_reply(msg
, info
);
1456 static int devlink_nl_cmd_eswitch_mode_set_doit(struct sk_buff
*skb
,
1457 struct genl_info
*info
)
1459 struct devlink
*devlink
= info
->user_ptr
[0];
1460 const struct devlink_ops
*ops
= devlink
->ops
;
1463 if (!info
->attrs
[DEVLINK_ATTR_ESWITCH_MODE
])
1466 mode
= nla_get_u16(info
->attrs
[DEVLINK_ATTR_ESWITCH_MODE
]);
1468 if (ops
&& ops
->eswitch_mode_set
)
1469 return ops
->eswitch_mode_set(devlink
, mode
);
1473 static const struct nla_policy devlink_nl_policy
[DEVLINK_ATTR_MAX
+ 1] = {
1474 [DEVLINK_ATTR_BUS_NAME
] = { .type
= NLA_NUL_STRING
},
1475 [DEVLINK_ATTR_DEV_NAME
] = { .type
= NLA_NUL_STRING
},
1476 [DEVLINK_ATTR_PORT_INDEX
] = { .type
= NLA_U32
},
1477 [DEVLINK_ATTR_PORT_TYPE
] = { .type
= NLA_U16
},
1478 [DEVLINK_ATTR_PORT_SPLIT_COUNT
] = { .type
= NLA_U32
},
1479 [DEVLINK_ATTR_SB_INDEX
] = { .type
= NLA_U32
},
1480 [DEVLINK_ATTR_SB_POOL_INDEX
] = { .type
= NLA_U16
},
1481 [DEVLINK_ATTR_SB_POOL_TYPE
] = { .type
= NLA_U8
},
1482 [DEVLINK_ATTR_SB_POOL_SIZE
] = { .type
= NLA_U32
},
1483 [DEVLINK_ATTR_SB_POOL_THRESHOLD_TYPE
] = { .type
= NLA_U8
},
1484 [DEVLINK_ATTR_SB_THRESHOLD
] = { .type
= NLA_U32
},
1485 [DEVLINK_ATTR_SB_TC_INDEX
] = { .type
= NLA_U16
},
1486 [DEVLINK_ATTR_ESWITCH_MODE
] = { .type
= NLA_U16
},
1489 static const struct genl_ops devlink_nl_ops
[] = {
1491 .cmd
= DEVLINK_CMD_GET
,
1492 .doit
= devlink_nl_cmd_get_doit
,
1493 .dumpit
= devlink_nl_cmd_get_dumpit
,
1494 .policy
= devlink_nl_policy
,
1495 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
,
1496 /* can be retrieved by unprivileged users */
1499 .cmd
= DEVLINK_CMD_PORT_GET
,
1500 .doit
= devlink_nl_cmd_port_get_doit
,
1501 .dumpit
= devlink_nl_cmd_port_get_dumpit
,
1502 .policy
= devlink_nl_policy
,
1503 .internal_flags
= DEVLINK_NL_FLAG_NEED_PORT
,
1504 /* can be retrieved by unprivileged users */
1507 .cmd
= DEVLINK_CMD_PORT_SET
,
1508 .doit
= devlink_nl_cmd_port_set_doit
,
1509 .policy
= devlink_nl_policy
,
1510 .flags
= GENL_ADMIN_PERM
,
1511 .internal_flags
= DEVLINK_NL_FLAG_NEED_PORT
,
1514 .cmd
= DEVLINK_CMD_PORT_SPLIT
,
1515 .doit
= devlink_nl_cmd_port_split_doit
,
1516 .policy
= devlink_nl_policy
,
1517 .flags
= GENL_ADMIN_PERM
,
1518 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
,
1521 .cmd
= DEVLINK_CMD_PORT_UNSPLIT
,
1522 .doit
= devlink_nl_cmd_port_unsplit_doit
,
1523 .policy
= devlink_nl_policy
,
1524 .flags
= GENL_ADMIN_PERM
,
1525 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
,
1528 .cmd
= DEVLINK_CMD_SB_GET
,
1529 .doit
= devlink_nl_cmd_sb_get_doit
,
1530 .dumpit
= devlink_nl_cmd_sb_get_dumpit
,
1531 .policy
= devlink_nl_policy
,
1532 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
|
1533 DEVLINK_NL_FLAG_NEED_SB
,
1534 /* can be retrieved by unprivileged users */
1537 .cmd
= DEVLINK_CMD_SB_POOL_GET
,
1538 .doit
= devlink_nl_cmd_sb_pool_get_doit
,
1539 .dumpit
= devlink_nl_cmd_sb_pool_get_dumpit
,
1540 .policy
= devlink_nl_policy
,
1541 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
|
1542 DEVLINK_NL_FLAG_NEED_SB
,
1543 /* can be retrieved by unprivileged users */
1546 .cmd
= DEVLINK_CMD_SB_POOL_SET
,
1547 .doit
= devlink_nl_cmd_sb_pool_set_doit
,
1548 .policy
= devlink_nl_policy
,
1549 .flags
= GENL_ADMIN_PERM
,
1550 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
|
1551 DEVLINK_NL_FLAG_NEED_SB
,
1554 .cmd
= DEVLINK_CMD_SB_PORT_POOL_GET
,
1555 .doit
= devlink_nl_cmd_sb_port_pool_get_doit
,
1556 .dumpit
= devlink_nl_cmd_sb_port_pool_get_dumpit
,
1557 .policy
= devlink_nl_policy
,
1558 .internal_flags
= DEVLINK_NL_FLAG_NEED_PORT
|
1559 DEVLINK_NL_FLAG_NEED_SB
,
1560 /* can be retrieved by unprivileged users */
1563 .cmd
= DEVLINK_CMD_SB_PORT_POOL_SET
,
1564 .doit
= devlink_nl_cmd_sb_port_pool_set_doit
,
1565 .policy
= devlink_nl_policy
,
1566 .flags
= GENL_ADMIN_PERM
,
1567 .internal_flags
= DEVLINK_NL_FLAG_NEED_PORT
|
1568 DEVLINK_NL_FLAG_NEED_SB
,
1571 .cmd
= DEVLINK_CMD_SB_TC_POOL_BIND_GET
,
1572 .doit
= devlink_nl_cmd_sb_tc_pool_bind_get_doit
,
1573 .dumpit
= devlink_nl_cmd_sb_tc_pool_bind_get_dumpit
,
1574 .policy
= devlink_nl_policy
,
1575 .internal_flags
= DEVLINK_NL_FLAG_NEED_PORT
|
1576 DEVLINK_NL_FLAG_NEED_SB
,
1577 /* can be retrieved by unprivileged users */
1580 .cmd
= DEVLINK_CMD_SB_TC_POOL_BIND_SET
,
1581 .doit
= devlink_nl_cmd_sb_tc_pool_bind_set_doit
,
1582 .policy
= devlink_nl_policy
,
1583 .flags
= GENL_ADMIN_PERM
,
1584 .internal_flags
= DEVLINK_NL_FLAG_NEED_PORT
|
1585 DEVLINK_NL_FLAG_NEED_SB
,
1588 .cmd
= DEVLINK_CMD_SB_OCC_SNAPSHOT
,
1589 .doit
= devlink_nl_cmd_sb_occ_snapshot_doit
,
1590 .policy
= devlink_nl_policy
,
1591 .flags
= GENL_ADMIN_PERM
,
1592 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
|
1593 DEVLINK_NL_FLAG_NEED_SB
|
1594 DEVLINK_NL_FLAG_LOCK_PORTS
,
1597 .cmd
= DEVLINK_CMD_SB_OCC_MAX_CLEAR
,
1598 .doit
= devlink_nl_cmd_sb_occ_max_clear_doit
,
1599 .policy
= devlink_nl_policy
,
1600 .flags
= GENL_ADMIN_PERM
,
1601 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
|
1602 DEVLINK_NL_FLAG_NEED_SB
|
1603 DEVLINK_NL_FLAG_LOCK_PORTS
,
1606 .cmd
= DEVLINK_CMD_ESWITCH_MODE_GET
,
1607 .doit
= devlink_nl_cmd_eswitch_mode_get_doit
,
1608 .policy
= devlink_nl_policy
,
1609 .flags
= GENL_ADMIN_PERM
,
1610 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
,
1613 .cmd
= DEVLINK_CMD_ESWITCH_MODE_SET
,
1614 .doit
= devlink_nl_cmd_eswitch_mode_set_doit
,
1615 .policy
= devlink_nl_policy
,
1616 .flags
= GENL_ADMIN_PERM
,
1617 .internal_flags
= DEVLINK_NL_FLAG_NEED_DEVLINK
,
1622 * devlink_alloc - Allocate new devlink instance resources
1625 * @priv_size: size of user private data
1627 * Allocate new devlink instance resources, including devlink index
1630 struct devlink
*devlink_alloc(const struct devlink_ops
*ops
, size_t priv_size
)
1632 struct devlink
*devlink
;
1634 devlink
= kzalloc(sizeof(*devlink
) + priv_size
, GFP_KERNEL
);
1638 devlink_net_set(devlink
, &init_net
);
1639 INIT_LIST_HEAD(&devlink
->port_list
);
1640 INIT_LIST_HEAD(&devlink
->sb_list
);
1643 EXPORT_SYMBOL_GPL(devlink_alloc
);
1646 * devlink_register - Register devlink instance
1650 int devlink_register(struct devlink
*devlink
, struct device
*dev
)
1652 mutex_lock(&devlink_mutex
);
1654 list_add_tail(&devlink
->list
, &devlink_list
);
1655 devlink_notify(devlink
, DEVLINK_CMD_NEW
);
1656 mutex_unlock(&devlink_mutex
);
1659 EXPORT_SYMBOL_GPL(devlink_register
);
1662 * devlink_unregister - Unregister devlink instance
1666 void devlink_unregister(struct devlink
*devlink
)
1668 mutex_lock(&devlink_mutex
);
1669 devlink_notify(devlink
, DEVLINK_CMD_DEL
);
1670 list_del(&devlink
->list
);
1671 mutex_unlock(&devlink_mutex
);
1673 EXPORT_SYMBOL_GPL(devlink_unregister
);
1676 * devlink_free - Free devlink instance resources
1680 void devlink_free(struct devlink
*devlink
)
1684 EXPORT_SYMBOL_GPL(devlink_free
);
1687 * devlink_port_register - Register devlink port
1690 * @devlink_port: devlink port
1693 * Register devlink port with provided port index. User can use
1694 * any indexing, even hw-related one. devlink_port structure
1695 * is convenient to be embedded inside user driver private structure.
1696 * Note that the caller should take care of zeroing the devlink_port
1699 int devlink_port_register(struct devlink
*devlink
,
1700 struct devlink_port
*devlink_port
,
1701 unsigned int port_index
)
1703 mutex_lock(&devlink_port_mutex
);
1704 if (devlink_port_index_exists(devlink
, port_index
)) {
1705 mutex_unlock(&devlink_port_mutex
);
1708 devlink_port
->devlink
= devlink
;
1709 devlink_port
->index
= port_index
;
1710 devlink_port
->registered
= true;
1711 list_add_tail(&devlink_port
->list
, &devlink
->port_list
);
1712 mutex_unlock(&devlink_port_mutex
);
1713 devlink_port_notify(devlink_port
, DEVLINK_CMD_PORT_NEW
);
1716 EXPORT_SYMBOL_GPL(devlink_port_register
);
1719 * devlink_port_unregister - Unregister devlink port
1721 * @devlink_port: devlink port
1723 void devlink_port_unregister(struct devlink_port
*devlink_port
)
1725 devlink_port_notify(devlink_port
, DEVLINK_CMD_PORT_DEL
);
1726 mutex_lock(&devlink_port_mutex
);
1727 list_del(&devlink_port
->list
);
1728 mutex_unlock(&devlink_port_mutex
);
1730 EXPORT_SYMBOL_GPL(devlink_port_unregister
);
1732 static void __devlink_port_type_set(struct devlink_port
*devlink_port
,
1733 enum devlink_port_type type
,
1736 devlink_port
->type
= type
;
1737 devlink_port
->type_dev
= type_dev
;
1738 devlink_port_notify(devlink_port
, DEVLINK_CMD_PORT_NEW
);
1742 * devlink_port_type_eth_set - Set port type to Ethernet
1744 * @devlink_port: devlink port
1745 * @netdev: related netdevice
1747 void devlink_port_type_eth_set(struct devlink_port
*devlink_port
,
1748 struct net_device
*netdev
)
1750 return __devlink_port_type_set(devlink_port
,
1751 DEVLINK_PORT_TYPE_ETH
, netdev
);
1753 EXPORT_SYMBOL_GPL(devlink_port_type_eth_set
);
1756 * devlink_port_type_ib_set - Set port type to InfiniBand
1758 * @devlink_port: devlink port
1759 * @ibdev: related IB device
1761 void devlink_port_type_ib_set(struct devlink_port
*devlink_port
,
1762 struct ib_device
*ibdev
)
1764 return __devlink_port_type_set(devlink_port
,
1765 DEVLINK_PORT_TYPE_IB
, ibdev
);
1767 EXPORT_SYMBOL_GPL(devlink_port_type_ib_set
);
1770 * devlink_port_type_clear - Clear port type
1772 * @devlink_port: devlink port
1774 void devlink_port_type_clear(struct devlink_port
*devlink_port
)
1776 return __devlink_port_type_set(devlink_port
,
1777 DEVLINK_PORT_TYPE_NOTSET
, NULL
);
1779 EXPORT_SYMBOL_GPL(devlink_port_type_clear
);
1782 * devlink_port_split_set - Set port is split
1784 * @devlink_port: devlink port
1785 * @split_group: split group - identifies group split port is part of
1787 void devlink_port_split_set(struct devlink_port
*devlink_port
,
1790 devlink_port
->split
= true;
1791 devlink_port
->split_group
= split_group
;
1792 devlink_port_notify(devlink_port
, DEVLINK_CMD_PORT_NEW
);
1794 EXPORT_SYMBOL_GPL(devlink_port_split_set
);
1796 int devlink_sb_register(struct devlink
*devlink
, unsigned int sb_index
,
1797 u32 size
, u16 ingress_pools_count
,
1798 u16 egress_pools_count
, u16 ingress_tc_count
,
1799 u16 egress_tc_count
)
1801 struct devlink_sb
*devlink_sb
;
1804 mutex_lock(&devlink_mutex
);
1805 if (devlink_sb_index_exists(devlink
, sb_index
)) {
1810 devlink_sb
= kzalloc(sizeof(*devlink_sb
), GFP_KERNEL
);
1815 devlink_sb
->index
= sb_index
;
1816 devlink_sb
->size
= size
;
1817 devlink_sb
->ingress_pools_count
= ingress_pools_count
;
1818 devlink_sb
->egress_pools_count
= egress_pools_count
;
1819 devlink_sb
->ingress_tc_count
= ingress_tc_count
;
1820 devlink_sb
->egress_tc_count
= egress_tc_count
;
1821 list_add_tail(&devlink_sb
->list
, &devlink
->sb_list
);
1823 mutex_unlock(&devlink_mutex
);
1826 EXPORT_SYMBOL_GPL(devlink_sb_register
);
1828 void devlink_sb_unregister(struct devlink
*devlink
, unsigned int sb_index
)
1830 struct devlink_sb
*devlink_sb
;
1832 mutex_lock(&devlink_mutex
);
1833 devlink_sb
= devlink_sb_get_by_index(devlink
, sb_index
);
1834 WARN_ON(!devlink_sb
);
1835 list_del(&devlink_sb
->list
);
1836 mutex_unlock(&devlink_mutex
);
1839 EXPORT_SYMBOL_GPL(devlink_sb_unregister
);
1841 static int __init
devlink_module_init(void)
1843 return genl_register_family_with_ops_groups(&devlink_nl_family
,
1848 static void __exit
devlink_module_exit(void)
1850 genl_unregister_family(&devlink_nl_family
);
1853 module_init(devlink_module_init
);
1854 module_exit(devlink_module_exit
);
1856 MODULE_LICENSE("GPL v2");
1857 MODULE_AUTHOR("Jiri Pirko <jiri@mellanox.com>");
1858 MODULE_DESCRIPTION("Network physical device Netlink interface");
1859 MODULE_ALIAS_GENL_FAMILY(DEVLINK_GENL_NAME
);