1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2008-2011, Intel Corporation.
5 * Description: Data Center Bridging netlink interface
6 * Author: Lucy Liu <lucy.liu@intel.com>
9 #include <linux/netdevice.h>
10 #include <linux/netlink.h>
11 #include <linux/slab.h>
12 #include <net/netlink.h>
13 #include <net/rtnetlink.h>
14 #include <linux/dcbnl.h>
15 #include <net/dcbevent.h>
16 #include <linux/rtnetlink.h>
17 #include <linux/init.h>
20 /* Data Center Bridging (DCB) is a collection of Ethernet enhancements
21 * intended to allow network traffic with differing requirements
22 * (highly reliable, no drops vs. best effort vs. low latency) to operate
23 * and co-exist on Ethernet. Current DCB features are:
25 * Enhanced Transmission Selection (aka Priority Grouping [PG]) - provides a
26 * framework for assigning bandwidth guarantees to traffic classes.
28 * Priority-based Flow Control (PFC) - provides a flow control mechanism which
29 * can work independently for each 802.1p priority.
31 * Congestion Notification - provides a mechanism for end-to-end congestion
32 * control for protocols which do not have built-in congestion management.
34 * More information about the emerging standards for these Ethernet features
35 * can be found at: http://www.ieee802.org/1/pages/dcbridges.html
37 * This file implements an rtnetlink interface to allow configuration of DCB
38 * features for capable devices.
41 /**************** DCB attribute policies *************************************/
43 /* DCB netlink attributes policy */
44 static const struct nla_policy dcbnl_rtnl_policy
[DCB_ATTR_MAX
+ 1] = {
45 [DCB_ATTR_IFNAME
] = {.type
= NLA_NUL_STRING
, .len
= IFNAMSIZ
- 1},
46 [DCB_ATTR_STATE
] = {.type
= NLA_U8
},
47 [DCB_ATTR_PFC_CFG
] = {.type
= NLA_NESTED
},
48 [DCB_ATTR_PG_CFG
] = {.type
= NLA_NESTED
},
49 [DCB_ATTR_SET_ALL
] = {.type
= NLA_U8
},
50 [DCB_ATTR_PERM_HWADDR
] = {.type
= NLA_FLAG
},
51 [DCB_ATTR_CAP
] = {.type
= NLA_NESTED
},
52 [DCB_ATTR_PFC_STATE
] = {.type
= NLA_U8
},
53 [DCB_ATTR_BCN
] = {.type
= NLA_NESTED
},
54 [DCB_ATTR_APP
] = {.type
= NLA_NESTED
},
55 [DCB_ATTR_IEEE
] = {.type
= NLA_NESTED
},
56 [DCB_ATTR_DCBX
] = {.type
= NLA_U8
},
57 [DCB_ATTR_FEATCFG
] = {.type
= NLA_NESTED
},
60 /* DCB priority flow control to User Priority nested attributes */
61 static const struct nla_policy dcbnl_pfc_up_nest
[DCB_PFC_UP_ATTR_MAX
+ 1] = {
62 [DCB_PFC_UP_ATTR_0
] = {.type
= NLA_U8
},
63 [DCB_PFC_UP_ATTR_1
] = {.type
= NLA_U8
},
64 [DCB_PFC_UP_ATTR_2
] = {.type
= NLA_U8
},
65 [DCB_PFC_UP_ATTR_3
] = {.type
= NLA_U8
},
66 [DCB_PFC_UP_ATTR_4
] = {.type
= NLA_U8
},
67 [DCB_PFC_UP_ATTR_5
] = {.type
= NLA_U8
},
68 [DCB_PFC_UP_ATTR_6
] = {.type
= NLA_U8
},
69 [DCB_PFC_UP_ATTR_7
] = {.type
= NLA_U8
},
70 [DCB_PFC_UP_ATTR_ALL
] = {.type
= NLA_FLAG
},
73 /* DCB priority grouping nested attributes */
74 static const struct nla_policy dcbnl_pg_nest
[DCB_PG_ATTR_MAX
+ 1] = {
75 [DCB_PG_ATTR_TC_0
] = {.type
= NLA_NESTED
},
76 [DCB_PG_ATTR_TC_1
] = {.type
= NLA_NESTED
},
77 [DCB_PG_ATTR_TC_2
] = {.type
= NLA_NESTED
},
78 [DCB_PG_ATTR_TC_3
] = {.type
= NLA_NESTED
},
79 [DCB_PG_ATTR_TC_4
] = {.type
= NLA_NESTED
},
80 [DCB_PG_ATTR_TC_5
] = {.type
= NLA_NESTED
},
81 [DCB_PG_ATTR_TC_6
] = {.type
= NLA_NESTED
},
82 [DCB_PG_ATTR_TC_7
] = {.type
= NLA_NESTED
},
83 [DCB_PG_ATTR_TC_ALL
] = {.type
= NLA_NESTED
},
84 [DCB_PG_ATTR_BW_ID_0
] = {.type
= NLA_U8
},
85 [DCB_PG_ATTR_BW_ID_1
] = {.type
= NLA_U8
},
86 [DCB_PG_ATTR_BW_ID_2
] = {.type
= NLA_U8
},
87 [DCB_PG_ATTR_BW_ID_3
] = {.type
= NLA_U8
},
88 [DCB_PG_ATTR_BW_ID_4
] = {.type
= NLA_U8
},
89 [DCB_PG_ATTR_BW_ID_5
] = {.type
= NLA_U8
},
90 [DCB_PG_ATTR_BW_ID_6
] = {.type
= NLA_U8
},
91 [DCB_PG_ATTR_BW_ID_7
] = {.type
= NLA_U8
},
92 [DCB_PG_ATTR_BW_ID_ALL
] = {.type
= NLA_FLAG
},
95 /* DCB traffic class nested attributes. */
96 static const struct nla_policy dcbnl_tc_param_nest
[DCB_TC_ATTR_PARAM_MAX
+ 1] = {
97 [DCB_TC_ATTR_PARAM_PGID
] = {.type
= NLA_U8
},
98 [DCB_TC_ATTR_PARAM_UP_MAPPING
] = {.type
= NLA_U8
},
99 [DCB_TC_ATTR_PARAM_STRICT_PRIO
] = {.type
= NLA_U8
},
100 [DCB_TC_ATTR_PARAM_BW_PCT
] = {.type
= NLA_U8
},
101 [DCB_TC_ATTR_PARAM_ALL
] = {.type
= NLA_FLAG
},
104 /* DCB capabilities nested attributes. */
105 static const struct nla_policy dcbnl_cap_nest
[DCB_CAP_ATTR_MAX
+ 1] = {
106 [DCB_CAP_ATTR_ALL
] = {.type
= NLA_FLAG
},
107 [DCB_CAP_ATTR_PG
] = {.type
= NLA_U8
},
108 [DCB_CAP_ATTR_PFC
] = {.type
= NLA_U8
},
109 [DCB_CAP_ATTR_UP2TC
] = {.type
= NLA_U8
},
110 [DCB_CAP_ATTR_PG_TCS
] = {.type
= NLA_U8
},
111 [DCB_CAP_ATTR_PFC_TCS
] = {.type
= NLA_U8
},
112 [DCB_CAP_ATTR_GSP
] = {.type
= NLA_U8
},
113 [DCB_CAP_ATTR_BCN
] = {.type
= NLA_U8
},
114 [DCB_CAP_ATTR_DCBX
] = {.type
= NLA_U8
},
117 /* DCB capabilities nested attributes. */
118 static const struct nla_policy dcbnl_numtcs_nest
[DCB_NUMTCS_ATTR_MAX
+ 1] = {
119 [DCB_NUMTCS_ATTR_ALL
] = {.type
= NLA_FLAG
},
120 [DCB_NUMTCS_ATTR_PG
] = {.type
= NLA_U8
},
121 [DCB_NUMTCS_ATTR_PFC
] = {.type
= NLA_U8
},
124 /* DCB BCN nested attributes. */
125 static const struct nla_policy dcbnl_bcn_nest
[DCB_BCN_ATTR_MAX
+ 1] = {
126 [DCB_BCN_ATTR_RP_0
] = {.type
= NLA_U8
},
127 [DCB_BCN_ATTR_RP_1
] = {.type
= NLA_U8
},
128 [DCB_BCN_ATTR_RP_2
] = {.type
= NLA_U8
},
129 [DCB_BCN_ATTR_RP_3
] = {.type
= NLA_U8
},
130 [DCB_BCN_ATTR_RP_4
] = {.type
= NLA_U8
},
131 [DCB_BCN_ATTR_RP_5
] = {.type
= NLA_U8
},
132 [DCB_BCN_ATTR_RP_6
] = {.type
= NLA_U8
},
133 [DCB_BCN_ATTR_RP_7
] = {.type
= NLA_U8
},
134 [DCB_BCN_ATTR_RP_ALL
] = {.type
= NLA_FLAG
},
135 [DCB_BCN_ATTR_BCNA_0
] = {.type
= NLA_U32
},
136 [DCB_BCN_ATTR_BCNA_1
] = {.type
= NLA_U32
},
137 [DCB_BCN_ATTR_ALPHA
] = {.type
= NLA_U32
},
138 [DCB_BCN_ATTR_BETA
] = {.type
= NLA_U32
},
139 [DCB_BCN_ATTR_GD
] = {.type
= NLA_U32
},
140 [DCB_BCN_ATTR_GI
] = {.type
= NLA_U32
},
141 [DCB_BCN_ATTR_TMAX
] = {.type
= NLA_U32
},
142 [DCB_BCN_ATTR_TD
] = {.type
= NLA_U32
},
143 [DCB_BCN_ATTR_RMIN
] = {.type
= NLA_U32
},
144 [DCB_BCN_ATTR_W
] = {.type
= NLA_U32
},
145 [DCB_BCN_ATTR_RD
] = {.type
= NLA_U32
},
146 [DCB_BCN_ATTR_RU
] = {.type
= NLA_U32
},
147 [DCB_BCN_ATTR_WRTT
] = {.type
= NLA_U32
},
148 [DCB_BCN_ATTR_RI
] = {.type
= NLA_U32
},
149 [DCB_BCN_ATTR_C
] = {.type
= NLA_U32
},
150 [DCB_BCN_ATTR_ALL
] = {.type
= NLA_FLAG
},
153 /* DCB APP nested attributes. */
154 static const struct nla_policy dcbnl_app_nest
[DCB_APP_ATTR_MAX
+ 1] = {
155 [DCB_APP_ATTR_IDTYPE
] = {.type
= NLA_U8
},
156 [DCB_APP_ATTR_ID
] = {.type
= NLA_U16
},
157 [DCB_APP_ATTR_PRIORITY
] = {.type
= NLA_U8
},
160 /* IEEE 802.1Qaz nested attributes. */
161 static const struct nla_policy dcbnl_ieee_policy
[DCB_ATTR_IEEE_MAX
+ 1] = {
162 [DCB_ATTR_IEEE_ETS
] = {.len
= sizeof(struct ieee_ets
)},
163 [DCB_ATTR_IEEE_PFC
] = {.len
= sizeof(struct ieee_pfc
)},
164 [DCB_ATTR_IEEE_APP_TABLE
] = {.type
= NLA_NESTED
},
165 [DCB_ATTR_IEEE_MAXRATE
] = {.len
= sizeof(struct ieee_maxrate
)},
166 [DCB_ATTR_IEEE_QCN
] = {.len
= sizeof(struct ieee_qcn
)},
167 [DCB_ATTR_IEEE_QCN_STATS
] = {.len
= sizeof(struct ieee_qcn_stats
)},
168 [DCB_ATTR_DCB_BUFFER
] = {.len
= sizeof(struct dcbnl_buffer
)},
171 /* DCB number of traffic classes nested attributes. */
172 static const struct nla_policy dcbnl_featcfg_nest
[DCB_FEATCFG_ATTR_MAX
+ 1] = {
173 [DCB_FEATCFG_ATTR_ALL
] = {.type
= NLA_FLAG
},
174 [DCB_FEATCFG_ATTR_PG
] = {.type
= NLA_U8
},
175 [DCB_FEATCFG_ATTR_PFC
] = {.type
= NLA_U8
},
176 [DCB_FEATCFG_ATTR_APP
] = {.type
= NLA_U8
},
179 static LIST_HEAD(dcb_app_list
);
180 static DEFINE_SPINLOCK(dcb_lock
);
182 static struct sk_buff
*dcbnl_newmsg(int type
, u8 cmd
, u32 port
, u32 seq
,
183 u32 flags
, struct nlmsghdr
**nlhp
)
187 struct nlmsghdr
*nlh
;
189 skb
= nlmsg_new(NLMSG_DEFAULT_SIZE
, GFP_KERNEL
);
193 nlh
= nlmsg_put(skb
, port
, seq
, type
, sizeof(*dcb
), flags
);
196 dcb
= nlmsg_data(nlh
);
197 dcb
->dcb_family
= AF_UNSPEC
;
207 static int dcbnl_getstate(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
208 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
210 /* if (!tb[DCB_ATTR_STATE] || !netdev->dcbnl_ops->getstate) */
211 if (!netdev
->dcbnl_ops
->getstate
)
214 return nla_put_u8(skb
, DCB_ATTR_STATE
,
215 netdev
->dcbnl_ops
->getstate(netdev
));
218 static int dcbnl_getpfccfg(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
219 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
221 struct nlattr
*data
[DCB_PFC_UP_ATTR_MAX
+ 1], *nest
;
227 if (!tb
[DCB_ATTR_PFC_CFG
])
230 if (!netdev
->dcbnl_ops
->getpfccfg
)
233 ret
= nla_parse_nested_deprecated(data
, DCB_PFC_UP_ATTR_MAX
,
234 tb
[DCB_ATTR_PFC_CFG
],
235 dcbnl_pfc_up_nest
, NULL
);
239 nest
= nla_nest_start_noflag(skb
, DCB_ATTR_PFC_CFG
);
243 if (data
[DCB_PFC_UP_ATTR_ALL
])
246 for (i
= DCB_PFC_UP_ATTR_0
; i
<= DCB_PFC_UP_ATTR_7
; i
++) {
247 if (!getall
&& !data
[i
])
250 netdev
->dcbnl_ops
->getpfccfg(netdev
, i
- DCB_PFC_UP_ATTR_0
,
252 ret
= nla_put_u8(skb
, i
, value
);
254 nla_nest_cancel(skb
, nest
);
258 nla_nest_end(skb
, nest
);
263 static int dcbnl_getperm_hwaddr(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
264 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
266 u8 perm_addr
[MAX_ADDR_LEN
];
268 if (!netdev
->dcbnl_ops
->getpermhwaddr
)
271 memset(perm_addr
, 0, sizeof(perm_addr
));
272 netdev
->dcbnl_ops
->getpermhwaddr(netdev
, perm_addr
);
274 return nla_put(skb
, DCB_ATTR_PERM_HWADDR
, sizeof(perm_addr
), perm_addr
);
277 static int dcbnl_getcap(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
278 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
280 struct nlattr
*data
[DCB_CAP_ATTR_MAX
+ 1], *nest
;
286 if (!tb
[DCB_ATTR_CAP
])
289 if (!netdev
->dcbnl_ops
->getcap
)
292 ret
= nla_parse_nested_deprecated(data
, DCB_CAP_ATTR_MAX
,
293 tb
[DCB_ATTR_CAP
], dcbnl_cap_nest
,
298 nest
= nla_nest_start_noflag(skb
, DCB_ATTR_CAP
);
302 if (data
[DCB_CAP_ATTR_ALL
])
305 for (i
= DCB_CAP_ATTR_ALL
+1; i
<= DCB_CAP_ATTR_MAX
; i
++) {
306 if (!getall
&& !data
[i
])
309 if (!netdev
->dcbnl_ops
->getcap(netdev
, i
, &value
)) {
310 ret
= nla_put_u8(skb
, i
, value
);
312 nla_nest_cancel(skb
, nest
);
317 nla_nest_end(skb
, nest
);
322 static int dcbnl_getnumtcs(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
323 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
325 struct nlattr
*data
[DCB_NUMTCS_ATTR_MAX
+ 1], *nest
;
331 if (!tb
[DCB_ATTR_NUMTCS
])
334 if (!netdev
->dcbnl_ops
->getnumtcs
)
337 ret
= nla_parse_nested_deprecated(data
, DCB_NUMTCS_ATTR_MAX
,
339 dcbnl_numtcs_nest
, NULL
);
343 nest
= nla_nest_start_noflag(skb
, DCB_ATTR_NUMTCS
);
347 if (data
[DCB_NUMTCS_ATTR_ALL
])
350 for (i
= DCB_NUMTCS_ATTR_ALL
+1; i
<= DCB_NUMTCS_ATTR_MAX
; i
++) {
351 if (!getall
&& !data
[i
])
354 ret
= netdev
->dcbnl_ops
->getnumtcs(netdev
, i
, &value
);
356 ret
= nla_put_u8(skb
, i
, value
);
358 nla_nest_cancel(skb
, nest
);
364 nla_nest_end(skb
, nest
);
369 static int dcbnl_setnumtcs(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
370 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
372 struct nlattr
*data
[DCB_NUMTCS_ATTR_MAX
+ 1];
377 if (!tb
[DCB_ATTR_NUMTCS
])
380 if (!netdev
->dcbnl_ops
->setnumtcs
)
383 ret
= nla_parse_nested_deprecated(data
, DCB_NUMTCS_ATTR_MAX
,
385 dcbnl_numtcs_nest
, NULL
);
389 for (i
= DCB_NUMTCS_ATTR_ALL
+1; i
<= DCB_NUMTCS_ATTR_MAX
; i
++) {
393 value
= nla_get_u8(data
[i
]);
395 ret
= netdev
->dcbnl_ops
->setnumtcs(netdev
, i
, value
);
400 return nla_put_u8(skb
, DCB_ATTR_NUMTCS
, !!ret
);
403 static int dcbnl_getpfcstate(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
404 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
406 if (!netdev
->dcbnl_ops
->getpfcstate
)
409 return nla_put_u8(skb
, DCB_ATTR_PFC_STATE
,
410 netdev
->dcbnl_ops
->getpfcstate(netdev
));
413 static int dcbnl_setpfcstate(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
414 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
418 if (!tb
[DCB_ATTR_PFC_STATE
])
421 if (!netdev
->dcbnl_ops
->setpfcstate
)
424 value
= nla_get_u8(tb
[DCB_ATTR_PFC_STATE
]);
426 netdev
->dcbnl_ops
->setpfcstate(netdev
, value
);
428 return nla_put_u8(skb
, DCB_ATTR_PFC_STATE
, 0);
431 static int dcbnl_getapp(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
432 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
434 struct nlattr
*app_nest
;
435 struct nlattr
*app_tb
[DCB_APP_ATTR_MAX
+ 1];
440 if (!tb
[DCB_ATTR_APP
])
443 ret
= nla_parse_nested_deprecated(app_tb
, DCB_APP_ATTR_MAX
,
444 tb
[DCB_ATTR_APP
], dcbnl_app_nest
,
449 /* all must be non-null */
450 if ((!app_tb
[DCB_APP_ATTR_IDTYPE
]) ||
451 (!app_tb
[DCB_APP_ATTR_ID
]))
454 /* either by eth type or by socket number */
455 idtype
= nla_get_u8(app_tb
[DCB_APP_ATTR_IDTYPE
]);
456 if ((idtype
!= DCB_APP_IDTYPE_ETHTYPE
) &&
457 (idtype
!= DCB_APP_IDTYPE_PORTNUM
))
460 id
= nla_get_u16(app_tb
[DCB_APP_ATTR_ID
]);
462 if (netdev
->dcbnl_ops
->getapp
) {
463 ret
= netdev
->dcbnl_ops
->getapp(netdev
, idtype
, id
);
469 struct dcb_app app
= {
473 up
= dcb_getapp(netdev
, &app
);
476 app_nest
= nla_nest_start_noflag(skb
, DCB_ATTR_APP
);
480 ret
= nla_put_u8(skb
, DCB_APP_ATTR_IDTYPE
, idtype
);
484 ret
= nla_put_u16(skb
, DCB_APP_ATTR_ID
, id
);
488 ret
= nla_put_u8(skb
, DCB_APP_ATTR_PRIORITY
, up
);
492 nla_nest_end(skb
, app_nest
);
497 nla_nest_cancel(skb
, app_nest
);
501 static int dcbnl_setapp(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
502 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
507 struct nlattr
*app_tb
[DCB_APP_ATTR_MAX
+ 1];
509 if (!tb
[DCB_ATTR_APP
])
512 ret
= nla_parse_nested_deprecated(app_tb
, DCB_APP_ATTR_MAX
,
513 tb
[DCB_ATTR_APP
], dcbnl_app_nest
,
518 /* all must be non-null */
519 if ((!app_tb
[DCB_APP_ATTR_IDTYPE
]) ||
520 (!app_tb
[DCB_APP_ATTR_ID
]) ||
521 (!app_tb
[DCB_APP_ATTR_PRIORITY
]))
524 /* either by eth type or by socket number */
525 idtype
= nla_get_u8(app_tb
[DCB_APP_ATTR_IDTYPE
]);
526 if ((idtype
!= DCB_APP_IDTYPE_ETHTYPE
) &&
527 (idtype
!= DCB_APP_IDTYPE_PORTNUM
))
530 id
= nla_get_u16(app_tb
[DCB_APP_ATTR_ID
]);
531 up
= nla_get_u8(app_tb
[DCB_APP_ATTR_PRIORITY
]);
533 if (netdev
->dcbnl_ops
->setapp
) {
534 ret
= netdev
->dcbnl_ops
->setapp(netdev
, idtype
, id
, up
);
539 app
.selector
= idtype
;
542 ret
= dcb_setapp(netdev
, &app
);
545 ret
= nla_put_u8(skb
, DCB_ATTR_APP
, ret
);
546 dcbnl_cee_notify(netdev
, RTM_SETDCB
, DCB_CMD_SAPP
, seq
, 0);
551 static int __dcbnl_pg_getcfg(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
552 struct nlattr
**tb
, struct sk_buff
*skb
, int dir
)
554 struct nlattr
*pg_nest
, *param_nest
, *data
;
555 struct nlattr
*pg_tb
[DCB_PG_ATTR_MAX
+ 1];
556 struct nlattr
*param_tb
[DCB_TC_ATTR_PARAM_MAX
+ 1];
557 u8 prio
, pgid
, tc_pct
, up_map
;
562 if (!tb
[DCB_ATTR_PG_CFG
])
565 if (!netdev
->dcbnl_ops
->getpgtccfgtx
||
566 !netdev
->dcbnl_ops
->getpgtccfgrx
||
567 !netdev
->dcbnl_ops
->getpgbwgcfgtx
||
568 !netdev
->dcbnl_ops
->getpgbwgcfgrx
)
571 ret
= nla_parse_nested_deprecated(pg_tb
, DCB_PG_ATTR_MAX
,
572 tb
[DCB_ATTR_PG_CFG
], dcbnl_pg_nest
,
577 pg_nest
= nla_nest_start_noflag(skb
, DCB_ATTR_PG_CFG
);
581 if (pg_tb
[DCB_PG_ATTR_TC_ALL
])
584 for (i
= DCB_PG_ATTR_TC_0
; i
<= DCB_PG_ATTR_TC_7
; i
++) {
585 if (!getall
&& !pg_tb
[i
])
588 if (pg_tb
[DCB_PG_ATTR_TC_ALL
])
589 data
= pg_tb
[DCB_PG_ATTR_TC_ALL
];
592 ret
= nla_parse_nested_deprecated(param_tb
,
593 DCB_TC_ATTR_PARAM_MAX
, data
,
594 dcbnl_tc_param_nest
, NULL
);
598 param_nest
= nla_nest_start_noflag(skb
, i
);
602 pgid
= DCB_ATTR_VALUE_UNDEFINED
;
603 prio
= DCB_ATTR_VALUE_UNDEFINED
;
604 tc_pct
= DCB_ATTR_VALUE_UNDEFINED
;
605 up_map
= DCB_ATTR_VALUE_UNDEFINED
;
609 netdev
->dcbnl_ops
->getpgtccfgrx(netdev
,
610 i
- DCB_PG_ATTR_TC_0
, &prio
,
611 &pgid
, &tc_pct
, &up_map
);
614 netdev
->dcbnl_ops
->getpgtccfgtx(netdev
,
615 i
- DCB_PG_ATTR_TC_0
, &prio
,
616 &pgid
, &tc_pct
, &up_map
);
619 if (param_tb
[DCB_TC_ATTR_PARAM_PGID
] ||
620 param_tb
[DCB_TC_ATTR_PARAM_ALL
]) {
621 ret
= nla_put_u8(skb
,
622 DCB_TC_ATTR_PARAM_PGID
, pgid
);
626 if (param_tb
[DCB_TC_ATTR_PARAM_UP_MAPPING
] ||
627 param_tb
[DCB_TC_ATTR_PARAM_ALL
]) {
628 ret
= nla_put_u8(skb
,
629 DCB_TC_ATTR_PARAM_UP_MAPPING
, up_map
);
633 if (param_tb
[DCB_TC_ATTR_PARAM_STRICT_PRIO
] ||
634 param_tb
[DCB_TC_ATTR_PARAM_ALL
]) {
635 ret
= nla_put_u8(skb
,
636 DCB_TC_ATTR_PARAM_STRICT_PRIO
, prio
);
640 if (param_tb
[DCB_TC_ATTR_PARAM_BW_PCT
] ||
641 param_tb
[DCB_TC_ATTR_PARAM_ALL
]) {
642 ret
= nla_put_u8(skb
, DCB_TC_ATTR_PARAM_BW_PCT
,
647 nla_nest_end(skb
, param_nest
);
650 if (pg_tb
[DCB_PG_ATTR_BW_ID_ALL
])
655 for (i
= DCB_PG_ATTR_BW_ID_0
; i
<= DCB_PG_ATTR_BW_ID_7
; i
++) {
656 if (!getall
&& !pg_tb
[i
])
659 tc_pct
= DCB_ATTR_VALUE_UNDEFINED
;
663 netdev
->dcbnl_ops
->getpgbwgcfgrx(netdev
,
664 i
- DCB_PG_ATTR_BW_ID_0
, &tc_pct
);
667 netdev
->dcbnl_ops
->getpgbwgcfgtx(netdev
,
668 i
- DCB_PG_ATTR_BW_ID_0
, &tc_pct
);
670 ret
= nla_put_u8(skb
, i
, tc_pct
);
675 nla_nest_end(skb
, pg_nest
);
680 nla_nest_cancel(skb
, param_nest
);
682 nla_nest_cancel(skb
, pg_nest
);
687 static int dcbnl_pgtx_getcfg(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
688 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
690 return __dcbnl_pg_getcfg(netdev
, nlh
, tb
, skb
, 0);
693 static int dcbnl_pgrx_getcfg(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
694 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
696 return __dcbnl_pg_getcfg(netdev
, nlh
, tb
, skb
, 1);
699 static int dcbnl_setstate(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
700 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
704 if (!tb
[DCB_ATTR_STATE
])
707 if (!netdev
->dcbnl_ops
->setstate
)
710 value
= nla_get_u8(tb
[DCB_ATTR_STATE
]);
712 return nla_put_u8(skb
, DCB_ATTR_STATE
,
713 netdev
->dcbnl_ops
->setstate(netdev
, value
));
716 static int dcbnl_setpfccfg(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
717 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
719 struct nlattr
*data
[DCB_PFC_UP_ATTR_MAX
+ 1];
724 if (!tb
[DCB_ATTR_PFC_CFG
])
727 if (!netdev
->dcbnl_ops
->setpfccfg
)
730 ret
= nla_parse_nested_deprecated(data
, DCB_PFC_UP_ATTR_MAX
,
731 tb
[DCB_ATTR_PFC_CFG
],
732 dcbnl_pfc_up_nest
, NULL
);
736 for (i
= DCB_PFC_UP_ATTR_0
; i
<= DCB_PFC_UP_ATTR_7
; i
++) {
739 value
= nla_get_u8(data
[i
]);
740 netdev
->dcbnl_ops
->setpfccfg(netdev
,
741 data
[i
]->nla_type
- DCB_PFC_UP_ATTR_0
, value
);
744 return nla_put_u8(skb
, DCB_ATTR_PFC_CFG
, 0);
747 static int dcbnl_setall(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
748 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
752 if (!tb
[DCB_ATTR_SET_ALL
])
755 if (!netdev
->dcbnl_ops
->setall
)
758 ret
= nla_put_u8(skb
, DCB_ATTR_SET_ALL
,
759 netdev
->dcbnl_ops
->setall(netdev
));
760 dcbnl_cee_notify(netdev
, RTM_SETDCB
, DCB_CMD_SET_ALL
, seq
, 0);
765 static int __dcbnl_pg_setcfg(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
766 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
,
769 struct nlattr
*pg_tb
[DCB_PG_ATTR_MAX
+ 1];
770 struct nlattr
*param_tb
[DCB_TC_ATTR_PARAM_MAX
+ 1];
778 if (!tb
[DCB_ATTR_PG_CFG
])
781 if (!netdev
->dcbnl_ops
->setpgtccfgtx
||
782 !netdev
->dcbnl_ops
->setpgtccfgrx
||
783 !netdev
->dcbnl_ops
->setpgbwgcfgtx
||
784 !netdev
->dcbnl_ops
->setpgbwgcfgrx
)
787 ret
= nla_parse_nested_deprecated(pg_tb
, DCB_PG_ATTR_MAX
,
788 tb
[DCB_ATTR_PG_CFG
], dcbnl_pg_nest
,
793 for (i
= DCB_PG_ATTR_TC_0
; i
<= DCB_PG_ATTR_TC_7
; i
++) {
797 ret
= nla_parse_nested_deprecated(param_tb
,
798 DCB_TC_ATTR_PARAM_MAX
,
800 dcbnl_tc_param_nest
, NULL
);
804 pgid
= DCB_ATTR_VALUE_UNDEFINED
;
805 prio
= DCB_ATTR_VALUE_UNDEFINED
;
806 tc_pct
= DCB_ATTR_VALUE_UNDEFINED
;
807 up_map
= DCB_ATTR_VALUE_UNDEFINED
;
809 if (param_tb
[DCB_TC_ATTR_PARAM_STRICT_PRIO
])
811 nla_get_u8(param_tb
[DCB_TC_ATTR_PARAM_STRICT_PRIO
]);
813 if (param_tb
[DCB_TC_ATTR_PARAM_PGID
])
814 pgid
= nla_get_u8(param_tb
[DCB_TC_ATTR_PARAM_PGID
]);
816 if (param_tb
[DCB_TC_ATTR_PARAM_BW_PCT
])
817 tc_pct
= nla_get_u8(param_tb
[DCB_TC_ATTR_PARAM_BW_PCT
]);
819 if (param_tb
[DCB_TC_ATTR_PARAM_UP_MAPPING
])
821 nla_get_u8(param_tb
[DCB_TC_ATTR_PARAM_UP_MAPPING
]);
823 /* dir: Tx = 0, Rx = 1 */
826 netdev
->dcbnl_ops
->setpgtccfgrx(netdev
,
827 i
- DCB_PG_ATTR_TC_0
,
828 prio
, pgid
, tc_pct
, up_map
);
831 netdev
->dcbnl_ops
->setpgtccfgtx(netdev
,
832 i
- DCB_PG_ATTR_TC_0
,
833 prio
, pgid
, tc_pct
, up_map
);
837 for (i
= DCB_PG_ATTR_BW_ID_0
; i
<= DCB_PG_ATTR_BW_ID_7
; i
++) {
841 tc_pct
= nla_get_u8(pg_tb
[i
]);
843 /* dir: Tx = 0, Rx = 1 */
846 netdev
->dcbnl_ops
->setpgbwgcfgrx(netdev
,
847 i
- DCB_PG_ATTR_BW_ID_0
, tc_pct
);
850 netdev
->dcbnl_ops
->setpgbwgcfgtx(netdev
,
851 i
- DCB_PG_ATTR_BW_ID_0
, tc_pct
);
855 return nla_put_u8(skb
, DCB_ATTR_PG_CFG
, 0);
858 static int dcbnl_pgtx_setcfg(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
859 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
861 return __dcbnl_pg_setcfg(netdev
, nlh
, seq
, tb
, skb
, 0);
864 static int dcbnl_pgrx_setcfg(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
865 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
867 return __dcbnl_pg_setcfg(netdev
, nlh
, seq
, tb
, skb
, 1);
870 static int dcbnl_bcn_getcfg(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
871 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
873 struct nlattr
*bcn_nest
;
874 struct nlattr
*bcn_tb
[DCB_BCN_ATTR_MAX
+ 1];
881 if (!tb
[DCB_ATTR_BCN
])
884 if (!netdev
->dcbnl_ops
->getbcnrp
||
885 !netdev
->dcbnl_ops
->getbcncfg
)
888 ret
= nla_parse_nested_deprecated(bcn_tb
, DCB_BCN_ATTR_MAX
,
889 tb
[DCB_ATTR_BCN
], dcbnl_bcn_nest
,
894 bcn_nest
= nla_nest_start_noflag(skb
, DCB_ATTR_BCN
);
898 if (bcn_tb
[DCB_BCN_ATTR_ALL
])
901 for (i
= DCB_BCN_ATTR_RP_0
; i
<= DCB_BCN_ATTR_RP_7
; i
++) {
902 if (!getall
&& !bcn_tb
[i
])
905 netdev
->dcbnl_ops
->getbcnrp(netdev
, i
- DCB_BCN_ATTR_RP_0
,
907 ret
= nla_put_u8(skb
, i
, value_byte
);
912 for (i
= DCB_BCN_ATTR_BCNA_0
; i
<= DCB_BCN_ATTR_RI
; i
++) {
913 if (!getall
&& !bcn_tb
[i
])
916 netdev
->dcbnl_ops
->getbcncfg(netdev
, i
,
918 ret
= nla_put_u32(skb
, i
, value_integer
);
923 nla_nest_end(skb
, bcn_nest
);
928 nla_nest_cancel(skb
, bcn_nest
);
932 static int dcbnl_bcn_setcfg(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
933 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
935 struct nlattr
*data
[DCB_BCN_ATTR_MAX
+ 1];
941 if (!tb
[DCB_ATTR_BCN
])
944 if (!netdev
->dcbnl_ops
->setbcncfg
||
945 !netdev
->dcbnl_ops
->setbcnrp
)
948 ret
= nla_parse_nested_deprecated(data
, DCB_BCN_ATTR_MAX
,
949 tb
[DCB_ATTR_BCN
], dcbnl_pfc_up_nest
,
954 for (i
= DCB_BCN_ATTR_RP_0
; i
<= DCB_BCN_ATTR_RP_7
; i
++) {
957 value_byte
= nla_get_u8(data
[i
]);
958 netdev
->dcbnl_ops
->setbcnrp(netdev
,
959 data
[i
]->nla_type
- DCB_BCN_ATTR_RP_0
, value_byte
);
962 for (i
= DCB_BCN_ATTR_BCNA_0
; i
<= DCB_BCN_ATTR_RI
; i
++) {
965 value_int
= nla_get_u32(data
[i
]);
966 netdev
->dcbnl_ops
->setbcncfg(netdev
,
970 return nla_put_u8(skb
, DCB_ATTR_BCN
, 0);
973 static int dcbnl_build_peer_app(struct net_device
*netdev
, struct sk_buff
* skb
,
974 int app_nested_type
, int app_info_type
,
977 struct dcb_peer_app_info info
;
978 struct dcb_app
*table
= NULL
;
979 const struct dcbnl_rtnl_ops
*ops
= netdev
->dcbnl_ops
;
985 * retrieve the peer app configuration form the driver. If the driver
986 * handlers fail exit without doing anything
988 err
= ops
->peer_getappinfo(netdev
, &info
, &app_count
);
989 if (!err
&& app_count
) {
990 table
= kmalloc_array(app_count
, sizeof(struct dcb_app
),
995 err
= ops
->peer_getapptable(netdev
, table
);
1003 * build the message, from here on the only possible failure
1004 * is due to the skb size
1008 app
= nla_nest_start_noflag(skb
, app_nested_type
);
1010 goto nla_put_failure
;
1012 if (app_info_type
&&
1013 nla_put(skb
, app_info_type
, sizeof(info
), &info
))
1014 goto nla_put_failure
;
1016 for (i
= 0; i
< app_count
; i
++) {
1017 if (nla_put(skb
, app_entry_type
, sizeof(struct dcb_app
),
1019 goto nla_put_failure
;
1021 nla_nest_end(skb
, app
);
1030 /* Handle IEEE 802.1Qaz/802.1Qau/802.1Qbb GET commands. */
1031 static int dcbnl_ieee_fill(struct sk_buff
*skb
, struct net_device
*netdev
)
1033 struct nlattr
*ieee
, *app
;
1034 struct dcb_app_type
*itr
;
1035 const struct dcbnl_rtnl_ops
*ops
= netdev
->dcbnl_ops
;
1039 if (nla_put_string(skb
, DCB_ATTR_IFNAME
, netdev
->name
))
1042 ieee
= nla_nest_start_noflag(skb
, DCB_ATTR_IEEE
);
1046 if (ops
->ieee_getets
) {
1047 struct ieee_ets ets
;
1048 memset(&ets
, 0, sizeof(ets
));
1049 err
= ops
->ieee_getets(netdev
, &ets
);
1051 nla_put(skb
, DCB_ATTR_IEEE_ETS
, sizeof(ets
), &ets
))
1055 if (ops
->ieee_getmaxrate
) {
1056 struct ieee_maxrate maxrate
;
1057 memset(&maxrate
, 0, sizeof(maxrate
));
1058 err
= ops
->ieee_getmaxrate(netdev
, &maxrate
);
1060 err
= nla_put(skb
, DCB_ATTR_IEEE_MAXRATE
,
1061 sizeof(maxrate
), &maxrate
);
1067 if (ops
->ieee_getqcn
) {
1068 struct ieee_qcn qcn
;
1070 memset(&qcn
, 0, sizeof(qcn
));
1071 err
= ops
->ieee_getqcn(netdev
, &qcn
);
1073 err
= nla_put(skb
, DCB_ATTR_IEEE_QCN
,
1080 if (ops
->ieee_getqcnstats
) {
1081 struct ieee_qcn_stats qcn_stats
;
1083 memset(&qcn_stats
, 0, sizeof(qcn_stats
));
1084 err
= ops
->ieee_getqcnstats(netdev
, &qcn_stats
);
1086 err
= nla_put(skb
, DCB_ATTR_IEEE_QCN_STATS
,
1087 sizeof(qcn_stats
), &qcn_stats
);
1093 if (ops
->ieee_getpfc
) {
1094 struct ieee_pfc pfc
;
1095 memset(&pfc
, 0, sizeof(pfc
));
1096 err
= ops
->ieee_getpfc(netdev
, &pfc
);
1098 nla_put(skb
, DCB_ATTR_IEEE_PFC
, sizeof(pfc
), &pfc
))
1102 if (ops
->dcbnl_getbuffer
) {
1103 struct dcbnl_buffer buffer
;
1105 memset(&buffer
, 0, sizeof(buffer
));
1106 err
= ops
->dcbnl_getbuffer(netdev
, &buffer
);
1108 nla_put(skb
, DCB_ATTR_DCB_BUFFER
, sizeof(buffer
), &buffer
))
1112 app
= nla_nest_start_noflag(skb
, DCB_ATTR_IEEE_APP_TABLE
);
1116 spin_lock_bh(&dcb_lock
);
1117 list_for_each_entry(itr
, &dcb_app_list
, list
) {
1118 if (itr
->ifindex
== netdev
->ifindex
) {
1119 err
= nla_put(skb
, DCB_ATTR_IEEE_APP
, sizeof(itr
->app
),
1122 spin_unlock_bh(&dcb_lock
);
1128 if (netdev
->dcbnl_ops
->getdcbx
)
1129 dcbx
= netdev
->dcbnl_ops
->getdcbx(netdev
);
1133 spin_unlock_bh(&dcb_lock
);
1134 nla_nest_end(skb
, app
);
1136 /* get peer info if available */
1137 if (ops
->ieee_peer_getets
) {
1138 struct ieee_ets ets
;
1139 memset(&ets
, 0, sizeof(ets
));
1140 err
= ops
->ieee_peer_getets(netdev
, &ets
);
1142 nla_put(skb
, DCB_ATTR_IEEE_PEER_ETS
, sizeof(ets
), &ets
))
1146 if (ops
->ieee_peer_getpfc
) {
1147 struct ieee_pfc pfc
;
1148 memset(&pfc
, 0, sizeof(pfc
));
1149 err
= ops
->ieee_peer_getpfc(netdev
, &pfc
);
1151 nla_put(skb
, DCB_ATTR_IEEE_PEER_PFC
, sizeof(pfc
), &pfc
))
1155 if (ops
->peer_getappinfo
&& ops
->peer_getapptable
) {
1156 err
= dcbnl_build_peer_app(netdev
, skb
,
1157 DCB_ATTR_IEEE_PEER_APP
,
1158 DCB_ATTR_IEEE_APP_UNSPEC
,
1164 nla_nest_end(skb
, ieee
);
1166 err
= nla_put_u8(skb
, DCB_ATTR_DCBX
, dcbx
);
1174 static int dcbnl_cee_pg_fill(struct sk_buff
*skb
, struct net_device
*dev
,
1177 u8 pgid
, up_map
, prio
, tc_pct
;
1178 const struct dcbnl_rtnl_ops
*ops
= dev
->dcbnl_ops
;
1179 int i
= dir
? DCB_ATTR_CEE_TX_PG
: DCB_ATTR_CEE_RX_PG
;
1180 struct nlattr
*pg
= nla_nest_start_noflag(skb
, i
);
1185 for (i
= DCB_PG_ATTR_TC_0
; i
<= DCB_PG_ATTR_TC_7
; i
++) {
1186 struct nlattr
*tc_nest
= nla_nest_start_noflag(skb
, i
);
1191 pgid
= DCB_ATTR_VALUE_UNDEFINED
;
1192 prio
= DCB_ATTR_VALUE_UNDEFINED
;
1193 tc_pct
= DCB_ATTR_VALUE_UNDEFINED
;
1194 up_map
= DCB_ATTR_VALUE_UNDEFINED
;
1197 ops
->getpgtccfgrx(dev
, i
- DCB_PG_ATTR_TC_0
,
1198 &prio
, &pgid
, &tc_pct
, &up_map
);
1200 ops
->getpgtccfgtx(dev
, i
- DCB_PG_ATTR_TC_0
,
1201 &prio
, &pgid
, &tc_pct
, &up_map
);
1203 if (nla_put_u8(skb
, DCB_TC_ATTR_PARAM_PGID
, pgid
) ||
1204 nla_put_u8(skb
, DCB_TC_ATTR_PARAM_UP_MAPPING
, up_map
) ||
1205 nla_put_u8(skb
, DCB_TC_ATTR_PARAM_STRICT_PRIO
, prio
) ||
1206 nla_put_u8(skb
, DCB_TC_ATTR_PARAM_BW_PCT
, tc_pct
))
1208 nla_nest_end(skb
, tc_nest
);
1211 for (i
= DCB_PG_ATTR_BW_ID_0
; i
<= DCB_PG_ATTR_BW_ID_7
; i
++) {
1212 tc_pct
= DCB_ATTR_VALUE_UNDEFINED
;
1215 ops
->getpgbwgcfgrx(dev
, i
- DCB_PG_ATTR_BW_ID_0
,
1218 ops
->getpgbwgcfgtx(dev
, i
- DCB_PG_ATTR_BW_ID_0
,
1220 if (nla_put_u8(skb
, i
, tc_pct
))
1223 nla_nest_end(skb
, pg
);
1227 static int dcbnl_cee_fill(struct sk_buff
*skb
, struct net_device
*netdev
)
1229 struct nlattr
*cee
, *app
;
1230 struct dcb_app_type
*itr
;
1231 const struct dcbnl_rtnl_ops
*ops
= netdev
->dcbnl_ops
;
1232 int dcbx
, i
, err
= -EMSGSIZE
;
1235 if (nla_put_string(skb
, DCB_ATTR_IFNAME
, netdev
->name
))
1236 goto nla_put_failure
;
1237 cee
= nla_nest_start_noflag(skb
, DCB_ATTR_CEE
);
1239 goto nla_put_failure
;
1242 if (ops
->getpgtccfgtx
&& ops
->getpgbwgcfgtx
) {
1243 err
= dcbnl_cee_pg_fill(skb
, netdev
, 1);
1245 goto nla_put_failure
;
1248 if (ops
->getpgtccfgrx
&& ops
->getpgbwgcfgrx
) {
1249 err
= dcbnl_cee_pg_fill(skb
, netdev
, 0);
1251 goto nla_put_failure
;
1255 if (ops
->getpfccfg
) {
1256 struct nlattr
*pfc_nest
= nla_nest_start_noflag(skb
,
1260 goto nla_put_failure
;
1262 for (i
= DCB_PFC_UP_ATTR_0
; i
<= DCB_PFC_UP_ATTR_7
; i
++) {
1263 ops
->getpfccfg(netdev
, i
- DCB_PFC_UP_ATTR_0
, &value
);
1264 if (nla_put_u8(skb
, i
, value
))
1265 goto nla_put_failure
;
1267 nla_nest_end(skb
, pfc_nest
);
1271 spin_lock_bh(&dcb_lock
);
1272 app
= nla_nest_start_noflag(skb
, DCB_ATTR_CEE_APP_TABLE
);
1276 list_for_each_entry(itr
, &dcb_app_list
, list
) {
1277 if (itr
->ifindex
== netdev
->ifindex
) {
1278 struct nlattr
*app_nest
= nla_nest_start_noflag(skb
,
1283 err
= nla_put_u8(skb
, DCB_APP_ATTR_IDTYPE
,
1288 err
= nla_put_u16(skb
, DCB_APP_ATTR_ID
,
1293 err
= nla_put_u8(skb
, DCB_APP_ATTR_PRIORITY
,
1298 nla_nest_end(skb
, app_nest
);
1301 nla_nest_end(skb
, app
);
1303 if (netdev
->dcbnl_ops
->getdcbx
)
1304 dcbx
= netdev
->dcbnl_ops
->getdcbx(netdev
);
1308 spin_unlock_bh(&dcb_lock
);
1310 /* features flags */
1311 if (ops
->getfeatcfg
) {
1312 struct nlattr
*feat
= nla_nest_start_noflag(skb
,
1315 goto nla_put_failure
;
1317 for (i
= DCB_FEATCFG_ATTR_ALL
+ 1; i
<= DCB_FEATCFG_ATTR_MAX
;
1319 if (!ops
->getfeatcfg(netdev
, i
, &value
) &&
1320 nla_put_u8(skb
, i
, value
))
1321 goto nla_put_failure
;
1323 nla_nest_end(skb
, feat
);
1326 /* peer info if available */
1327 if (ops
->cee_peer_getpg
) {
1329 memset(&pg
, 0, sizeof(pg
));
1330 err
= ops
->cee_peer_getpg(netdev
, &pg
);
1332 nla_put(skb
, DCB_ATTR_CEE_PEER_PG
, sizeof(pg
), &pg
))
1333 goto nla_put_failure
;
1336 if (ops
->cee_peer_getpfc
) {
1338 memset(&pfc
, 0, sizeof(pfc
));
1339 err
= ops
->cee_peer_getpfc(netdev
, &pfc
);
1341 nla_put(skb
, DCB_ATTR_CEE_PEER_PFC
, sizeof(pfc
), &pfc
))
1342 goto nla_put_failure
;
1345 if (ops
->peer_getappinfo
&& ops
->peer_getapptable
) {
1346 err
= dcbnl_build_peer_app(netdev
, skb
,
1347 DCB_ATTR_CEE_PEER_APP_TABLE
,
1348 DCB_ATTR_CEE_PEER_APP_INFO
,
1349 DCB_ATTR_CEE_PEER_APP
);
1351 goto nla_put_failure
;
1353 nla_nest_end(skb
, cee
);
1357 err
= nla_put_u8(skb
, DCB_ATTR_DCBX
, dcbx
);
1359 goto nla_put_failure
;
1364 spin_unlock_bh(&dcb_lock
);
1370 static int dcbnl_notify(struct net_device
*dev
, int event
, int cmd
,
1371 u32 seq
, u32 portid
, int dcbx_ver
)
1373 struct net
*net
= dev_net(dev
);
1374 struct sk_buff
*skb
;
1375 struct nlmsghdr
*nlh
;
1376 const struct dcbnl_rtnl_ops
*ops
= dev
->dcbnl_ops
;
1382 skb
= dcbnl_newmsg(event
, cmd
, portid
, seq
, 0, &nlh
);
1386 if (dcbx_ver
== DCB_CAP_DCBX_VER_IEEE
)
1387 err
= dcbnl_ieee_fill(skb
, dev
);
1389 err
= dcbnl_cee_fill(skb
, dev
);
1392 /* Report error to broadcast listeners */
1394 rtnl_set_sk_err(net
, RTNLGRP_DCB
, err
);
1396 /* End nlmsg and notify broadcast listeners */
1397 nlmsg_end(skb
, nlh
);
1398 rtnl_notify(skb
, net
, 0, RTNLGRP_DCB
, NULL
, GFP_KERNEL
);
1404 int dcbnl_ieee_notify(struct net_device
*dev
, int event
, int cmd
,
1405 u32 seq
, u32 portid
)
1407 return dcbnl_notify(dev
, event
, cmd
, seq
, portid
, DCB_CAP_DCBX_VER_IEEE
);
1409 EXPORT_SYMBOL(dcbnl_ieee_notify
);
1411 int dcbnl_cee_notify(struct net_device
*dev
, int event
, int cmd
,
1412 u32 seq
, u32 portid
)
1414 return dcbnl_notify(dev
, event
, cmd
, seq
, portid
, DCB_CAP_DCBX_VER_CEE
);
1416 EXPORT_SYMBOL(dcbnl_cee_notify
);
1418 /* Handle IEEE 802.1Qaz/802.1Qau/802.1Qbb SET commands.
1419 * If any requested operation can not be completed
1420 * the entire msg is aborted and error value is returned.
1421 * No attempt is made to reconcile the case where only part of the
1422 * cmd can be completed.
1424 static int dcbnl_ieee_set(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
1425 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
1427 const struct dcbnl_rtnl_ops
*ops
= netdev
->dcbnl_ops
;
1428 struct nlattr
*ieee
[DCB_ATTR_IEEE_MAX
+ 1];
1434 if (!tb
[DCB_ATTR_IEEE
])
1437 err
= nla_parse_nested_deprecated(ieee
, DCB_ATTR_IEEE_MAX
,
1439 dcbnl_ieee_policy
, NULL
);
1443 if (ieee
[DCB_ATTR_IEEE_ETS
] && ops
->ieee_setets
) {
1444 struct ieee_ets
*ets
= nla_data(ieee
[DCB_ATTR_IEEE_ETS
]);
1445 err
= ops
->ieee_setets(netdev
, ets
);
1450 if (ieee
[DCB_ATTR_IEEE_MAXRATE
] && ops
->ieee_setmaxrate
) {
1451 struct ieee_maxrate
*maxrate
=
1452 nla_data(ieee
[DCB_ATTR_IEEE_MAXRATE
]);
1453 err
= ops
->ieee_setmaxrate(netdev
, maxrate
);
1458 if (ieee
[DCB_ATTR_IEEE_QCN
] && ops
->ieee_setqcn
) {
1459 struct ieee_qcn
*qcn
=
1460 nla_data(ieee
[DCB_ATTR_IEEE_QCN
]);
1462 err
= ops
->ieee_setqcn(netdev
, qcn
);
1467 if (ieee
[DCB_ATTR_IEEE_PFC
] && ops
->ieee_setpfc
) {
1468 struct ieee_pfc
*pfc
= nla_data(ieee
[DCB_ATTR_IEEE_PFC
]);
1469 err
= ops
->ieee_setpfc(netdev
, pfc
);
1474 if (ieee
[DCB_ATTR_DCB_BUFFER
] && ops
->dcbnl_setbuffer
) {
1475 struct dcbnl_buffer
*buffer
=
1476 nla_data(ieee
[DCB_ATTR_DCB_BUFFER
]);
1478 err
= ops
->dcbnl_setbuffer(netdev
, buffer
);
1483 if (ieee
[DCB_ATTR_IEEE_APP_TABLE
]) {
1484 struct nlattr
*attr
;
1487 nla_for_each_nested(attr
, ieee
[DCB_ATTR_IEEE_APP_TABLE
], rem
) {
1488 struct dcb_app
*app_data
;
1490 if (nla_type(attr
) != DCB_ATTR_IEEE_APP
)
1493 if (nla_len(attr
) < sizeof(struct dcb_app
)) {
1498 app_data
= nla_data(attr
);
1499 if (ops
->ieee_setapp
)
1500 err
= ops
->ieee_setapp(netdev
, app_data
);
1502 err
= dcb_ieee_setapp(netdev
, app_data
);
1509 err
= nla_put_u8(skb
, DCB_ATTR_IEEE
, err
);
1510 dcbnl_ieee_notify(netdev
, RTM_SETDCB
, DCB_CMD_IEEE_SET
, seq
, 0);
1514 static int dcbnl_ieee_get(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
1515 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
1517 const struct dcbnl_rtnl_ops
*ops
= netdev
->dcbnl_ops
;
1522 return dcbnl_ieee_fill(skb
, netdev
);
1525 static int dcbnl_ieee_del(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
1526 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
1528 const struct dcbnl_rtnl_ops
*ops
= netdev
->dcbnl_ops
;
1529 struct nlattr
*ieee
[DCB_ATTR_IEEE_MAX
+ 1];
1535 if (!tb
[DCB_ATTR_IEEE
])
1538 err
= nla_parse_nested_deprecated(ieee
, DCB_ATTR_IEEE_MAX
,
1540 dcbnl_ieee_policy
, NULL
);
1544 if (ieee
[DCB_ATTR_IEEE_APP_TABLE
]) {
1545 struct nlattr
*attr
;
1548 nla_for_each_nested(attr
, ieee
[DCB_ATTR_IEEE_APP_TABLE
], rem
) {
1549 struct dcb_app
*app_data
;
1551 if (nla_type(attr
) != DCB_ATTR_IEEE_APP
)
1553 app_data
= nla_data(attr
);
1554 if (ops
->ieee_delapp
)
1555 err
= ops
->ieee_delapp(netdev
, app_data
);
1557 err
= dcb_ieee_delapp(netdev
, app_data
);
1564 err
= nla_put_u8(skb
, DCB_ATTR_IEEE
, err
);
1565 dcbnl_ieee_notify(netdev
, RTM_SETDCB
, DCB_CMD_IEEE_DEL
, seq
, 0);
1570 /* DCBX configuration */
1571 static int dcbnl_getdcbx(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
1572 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
1574 if (!netdev
->dcbnl_ops
->getdcbx
)
1577 return nla_put_u8(skb
, DCB_ATTR_DCBX
,
1578 netdev
->dcbnl_ops
->getdcbx(netdev
));
1581 static int dcbnl_setdcbx(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
1582 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
1586 if (!netdev
->dcbnl_ops
->setdcbx
)
1589 if (!tb
[DCB_ATTR_DCBX
])
1592 value
= nla_get_u8(tb
[DCB_ATTR_DCBX
]);
1594 return nla_put_u8(skb
, DCB_ATTR_DCBX
,
1595 netdev
->dcbnl_ops
->setdcbx(netdev
, value
));
1598 static int dcbnl_getfeatcfg(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
1599 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
1601 struct nlattr
*data
[DCB_FEATCFG_ATTR_MAX
+ 1], *nest
;
1606 if (!netdev
->dcbnl_ops
->getfeatcfg
)
1609 if (!tb
[DCB_ATTR_FEATCFG
])
1612 ret
= nla_parse_nested_deprecated(data
, DCB_FEATCFG_ATTR_MAX
,
1613 tb
[DCB_ATTR_FEATCFG
],
1614 dcbnl_featcfg_nest
, NULL
);
1618 nest
= nla_nest_start_noflag(skb
, DCB_ATTR_FEATCFG
);
1622 if (data
[DCB_FEATCFG_ATTR_ALL
])
1625 for (i
= DCB_FEATCFG_ATTR_ALL
+1; i
<= DCB_FEATCFG_ATTR_MAX
; i
++) {
1626 if (!getall
&& !data
[i
])
1629 ret
= netdev
->dcbnl_ops
->getfeatcfg(netdev
, i
, &value
);
1631 ret
= nla_put_u8(skb
, i
, value
);
1634 nla_nest_cancel(skb
, nest
);
1635 goto nla_put_failure
;
1638 nla_nest_end(skb
, nest
);
1644 static int dcbnl_setfeatcfg(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
1645 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
1647 struct nlattr
*data
[DCB_FEATCFG_ATTR_MAX
+ 1];
1651 if (!netdev
->dcbnl_ops
->setfeatcfg
)
1654 if (!tb
[DCB_ATTR_FEATCFG
])
1657 ret
= nla_parse_nested_deprecated(data
, DCB_FEATCFG_ATTR_MAX
,
1658 tb
[DCB_ATTR_FEATCFG
],
1659 dcbnl_featcfg_nest
, NULL
);
1664 for (i
= DCB_FEATCFG_ATTR_ALL
+1; i
<= DCB_FEATCFG_ATTR_MAX
; i
++) {
1665 if (data
[i
] == NULL
)
1668 value
= nla_get_u8(data
[i
]);
1670 ret
= netdev
->dcbnl_ops
->setfeatcfg(netdev
, i
, value
);
1676 ret
= nla_put_u8(skb
, DCB_ATTR_FEATCFG
, ret
);
1681 /* Handle CEE DCBX GET commands. */
1682 static int dcbnl_cee_get(struct net_device
*netdev
, struct nlmsghdr
*nlh
,
1683 u32 seq
, struct nlattr
**tb
, struct sk_buff
*skb
)
1685 const struct dcbnl_rtnl_ops
*ops
= netdev
->dcbnl_ops
;
1690 return dcbnl_cee_fill(skb
, netdev
);
1694 /* reply netlink message type */
1697 /* function to fill message contents */
1698 int (*cb
)(struct net_device
*, struct nlmsghdr
*, u32
,
1699 struct nlattr
**, struct sk_buff
*);
1702 static const struct reply_func reply_funcs
[DCB_CMD_MAX
+1] = {
1703 [DCB_CMD_GSTATE
] = { RTM_GETDCB
, dcbnl_getstate
},
1704 [DCB_CMD_SSTATE
] = { RTM_SETDCB
, dcbnl_setstate
},
1705 [DCB_CMD_PFC_GCFG
] = { RTM_GETDCB
, dcbnl_getpfccfg
},
1706 [DCB_CMD_PFC_SCFG
] = { RTM_SETDCB
, dcbnl_setpfccfg
},
1707 [DCB_CMD_GPERM_HWADDR
] = { RTM_GETDCB
, dcbnl_getperm_hwaddr
},
1708 [DCB_CMD_GCAP
] = { RTM_GETDCB
, dcbnl_getcap
},
1709 [DCB_CMD_GNUMTCS
] = { RTM_GETDCB
, dcbnl_getnumtcs
},
1710 [DCB_CMD_SNUMTCS
] = { RTM_SETDCB
, dcbnl_setnumtcs
},
1711 [DCB_CMD_PFC_GSTATE
] = { RTM_GETDCB
, dcbnl_getpfcstate
},
1712 [DCB_CMD_PFC_SSTATE
] = { RTM_SETDCB
, dcbnl_setpfcstate
},
1713 [DCB_CMD_GAPP
] = { RTM_GETDCB
, dcbnl_getapp
},
1714 [DCB_CMD_SAPP
] = { RTM_SETDCB
, dcbnl_setapp
},
1715 [DCB_CMD_PGTX_GCFG
] = { RTM_GETDCB
, dcbnl_pgtx_getcfg
},
1716 [DCB_CMD_PGTX_SCFG
] = { RTM_SETDCB
, dcbnl_pgtx_setcfg
},
1717 [DCB_CMD_PGRX_GCFG
] = { RTM_GETDCB
, dcbnl_pgrx_getcfg
},
1718 [DCB_CMD_PGRX_SCFG
] = { RTM_SETDCB
, dcbnl_pgrx_setcfg
},
1719 [DCB_CMD_SET_ALL
] = { RTM_SETDCB
, dcbnl_setall
},
1720 [DCB_CMD_BCN_GCFG
] = { RTM_GETDCB
, dcbnl_bcn_getcfg
},
1721 [DCB_CMD_BCN_SCFG
] = { RTM_SETDCB
, dcbnl_bcn_setcfg
},
1722 [DCB_CMD_IEEE_GET
] = { RTM_GETDCB
, dcbnl_ieee_get
},
1723 [DCB_CMD_IEEE_SET
] = { RTM_SETDCB
, dcbnl_ieee_set
},
1724 [DCB_CMD_IEEE_DEL
] = { RTM_SETDCB
, dcbnl_ieee_del
},
1725 [DCB_CMD_GDCBX
] = { RTM_GETDCB
, dcbnl_getdcbx
},
1726 [DCB_CMD_SDCBX
] = { RTM_SETDCB
, dcbnl_setdcbx
},
1727 [DCB_CMD_GFEATCFG
] = { RTM_GETDCB
, dcbnl_getfeatcfg
},
1728 [DCB_CMD_SFEATCFG
] = { RTM_SETDCB
, dcbnl_setfeatcfg
},
1729 [DCB_CMD_CEE_GET
] = { RTM_GETDCB
, dcbnl_cee_get
},
1732 static int dcb_doit(struct sk_buff
*skb
, struct nlmsghdr
*nlh
,
1733 struct netlink_ext_ack
*extack
)
1735 struct net
*net
= sock_net(skb
->sk
);
1736 struct net_device
*netdev
;
1737 struct dcbmsg
*dcb
= nlmsg_data(nlh
);
1738 struct nlattr
*tb
[DCB_ATTR_MAX
+ 1];
1739 u32 portid
= skb
? NETLINK_CB(skb
).portid
: 0;
1741 struct sk_buff
*reply_skb
;
1742 struct nlmsghdr
*reply_nlh
= NULL
;
1743 const struct reply_func
*fn
;
1745 if ((nlh
->nlmsg_type
== RTM_SETDCB
) && !netlink_capable(skb
, CAP_NET_ADMIN
))
1748 ret
= nlmsg_parse_deprecated(nlh
, sizeof(*dcb
), tb
, DCB_ATTR_MAX
,
1749 dcbnl_rtnl_policy
, extack
);
1753 if (dcb
->cmd
> DCB_CMD_MAX
)
1756 /* check if a reply function has been defined for the command */
1757 fn
= &reply_funcs
[dcb
->cmd
];
1761 if (!tb
[DCB_ATTR_IFNAME
])
1764 netdev
= __dev_get_by_name(net
, nla_data(tb
[DCB_ATTR_IFNAME
]));
1768 if (!netdev
->dcbnl_ops
)
1771 reply_skb
= dcbnl_newmsg(fn
->type
, dcb
->cmd
, portid
, nlh
->nlmsg_seq
,
1772 nlh
->nlmsg_flags
, &reply_nlh
);
1776 ret
= fn
->cb(netdev
, nlh
, nlh
->nlmsg_seq
, tb
, reply_skb
);
1778 nlmsg_free(reply_skb
);
1782 nlmsg_end(reply_skb
, reply_nlh
);
1784 ret
= rtnl_unicast(reply_skb
, net
, portid
);
1789 static struct dcb_app_type
*dcb_app_lookup(const struct dcb_app
*app
,
1790 int ifindex
, int prio
)
1792 struct dcb_app_type
*itr
;
1794 list_for_each_entry(itr
, &dcb_app_list
, list
) {
1795 if (itr
->app
.selector
== app
->selector
&&
1796 itr
->app
.protocol
== app
->protocol
&&
1797 itr
->ifindex
== ifindex
&&
1798 ((prio
== -1) || itr
->app
.priority
== prio
))
1805 static int dcb_app_add(const struct dcb_app
*app
, int ifindex
)
1807 struct dcb_app_type
*entry
;
1809 entry
= kmalloc(sizeof(*entry
), GFP_ATOMIC
);
1813 memcpy(&entry
->app
, app
, sizeof(*app
));
1814 entry
->ifindex
= ifindex
;
1815 list_add(&entry
->list
, &dcb_app_list
);
1821 * dcb_getapp - retrieve the DCBX application user priority
1823 * On success returns a non-zero 802.1p user priority bitmap
1824 * otherwise returns 0 as the invalid user priority bitmap to
1825 * indicate an error.
1827 u8
dcb_getapp(struct net_device
*dev
, struct dcb_app
*app
)
1829 struct dcb_app_type
*itr
;
1832 spin_lock_bh(&dcb_lock
);
1833 itr
= dcb_app_lookup(app
, dev
->ifindex
, -1);
1835 prio
= itr
->app
.priority
;
1836 spin_unlock_bh(&dcb_lock
);
1840 EXPORT_SYMBOL(dcb_getapp
);
1843 * dcb_setapp - add CEE dcb application data to app list
1845 * Priority 0 is an invalid priority in CEE spec. This routine
1846 * removes applications from the app list if the priority is
1847 * set to zero. Priority is expected to be 8-bit 802.1p user priority bitmap
1849 int dcb_setapp(struct net_device
*dev
, struct dcb_app
*new)
1851 struct dcb_app_type
*itr
;
1852 struct dcb_app_type event
;
1855 event
.ifindex
= dev
->ifindex
;
1856 memcpy(&event
.app
, new, sizeof(event
.app
));
1857 if (dev
->dcbnl_ops
->getdcbx
)
1858 event
.dcbx
= dev
->dcbnl_ops
->getdcbx(dev
);
1860 spin_lock_bh(&dcb_lock
);
1861 /* Search for existing match and replace */
1862 itr
= dcb_app_lookup(new, dev
->ifindex
, -1);
1865 itr
->app
.priority
= new->priority
;
1867 list_del(&itr
->list
);
1872 /* App type does not exist add new application type */
1874 err
= dcb_app_add(new, dev
->ifindex
);
1876 spin_unlock_bh(&dcb_lock
);
1878 call_dcbevent_notifiers(DCB_APP_EVENT
, &event
);
1881 EXPORT_SYMBOL(dcb_setapp
);
1884 * dcb_ieee_getapp_mask - retrieve the IEEE DCB application priority
1886 * Helper routine which on success returns a non-zero 802.1Qaz user
1887 * priority bitmap otherwise returns 0 to indicate the dcb_app was
1888 * not found in APP list.
1890 u8
dcb_ieee_getapp_mask(struct net_device
*dev
, struct dcb_app
*app
)
1892 struct dcb_app_type
*itr
;
1895 spin_lock_bh(&dcb_lock
);
1896 itr
= dcb_app_lookup(app
, dev
->ifindex
, -1);
1898 prio
|= 1 << itr
->app
.priority
;
1899 spin_unlock_bh(&dcb_lock
);
1903 EXPORT_SYMBOL(dcb_ieee_getapp_mask
);
1906 * dcb_ieee_setapp - add IEEE dcb application data to app list
1908 * This adds Application data to the list. Multiple application
1909 * entries may exists for the same selector and protocol as long
1910 * as the priorities are different. Priority is expected to be a
1911 * 3-bit unsigned integer
1913 int dcb_ieee_setapp(struct net_device
*dev
, struct dcb_app
*new)
1915 struct dcb_app_type event
;
1918 event
.ifindex
= dev
->ifindex
;
1919 memcpy(&event
.app
, new, sizeof(event
.app
));
1920 if (dev
->dcbnl_ops
->getdcbx
)
1921 event
.dcbx
= dev
->dcbnl_ops
->getdcbx(dev
);
1923 spin_lock_bh(&dcb_lock
);
1924 /* Search for existing match and abort if found */
1925 if (dcb_app_lookup(new, dev
->ifindex
, new->priority
)) {
1930 err
= dcb_app_add(new, dev
->ifindex
);
1932 spin_unlock_bh(&dcb_lock
);
1934 call_dcbevent_notifiers(DCB_APP_EVENT
, &event
);
1937 EXPORT_SYMBOL(dcb_ieee_setapp
);
1940 * dcb_ieee_delapp - delete IEEE dcb application data from list
1942 * This removes a matching APP data from the APP list
1944 int dcb_ieee_delapp(struct net_device
*dev
, struct dcb_app
*del
)
1946 struct dcb_app_type
*itr
;
1947 struct dcb_app_type event
;
1950 event
.ifindex
= dev
->ifindex
;
1951 memcpy(&event
.app
, del
, sizeof(event
.app
));
1952 if (dev
->dcbnl_ops
->getdcbx
)
1953 event
.dcbx
= dev
->dcbnl_ops
->getdcbx(dev
);
1955 spin_lock_bh(&dcb_lock
);
1956 /* Search for existing match and remove it. */
1957 if ((itr
= dcb_app_lookup(del
, dev
->ifindex
, del
->priority
))) {
1958 list_del(&itr
->list
);
1963 spin_unlock_bh(&dcb_lock
);
1965 call_dcbevent_notifiers(DCB_APP_EVENT
, &event
);
1968 EXPORT_SYMBOL(dcb_ieee_delapp
);
1971 * dcb_ieee_getapp_prio_dscp_mask_map - For a given device, find mapping from
1972 * priorities to the DSCP values assigned to that priority. Initialize p_map
1973 * such that each map element holds a bit mask of DSCP values configured for
1974 * that priority by APP entries.
1976 void dcb_ieee_getapp_prio_dscp_mask_map(const struct net_device
*dev
,
1977 struct dcb_ieee_app_prio_map
*p_map
)
1979 int ifindex
= dev
->ifindex
;
1980 struct dcb_app_type
*itr
;
1983 memset(p_map
->map
, 0, sizeof(p_map
->map
));
1985 spin_lock_bh(&dcb_lock
);
1986 list_for_each_entry(itr
, &dcb_app_list
, list
) {
1987 if (itr
->ifindex
== ifindex
&&
1988 itr
->app
.selector
== IEEE_8021QAZ_APP_SEL_DSCP
&&
1989 itr
->app
.protocol
< 64 &&
1990 itr
->app
.priority
< IEEE_8021QAZ_MAX_TCS
) {
1991 prio
= itr
->app
.priority
;
1992 p_map
->map
[prio
] |= 1ULL << itr
->app
.protocol
;
1995 spin_unlock_bh(&dcb_lock
);
1997 EXPORT_SYMBOL(dcb_ieee_getapp_prio_dscp_mask_map
);
2000 * dcb_ieee_getapp_dscp_prio_mask_map - For a given device, find mapping from
2001 * DSCP values to the priorities assigned to that DSCP value. Initialize p_map
2002 * such that each map element holds a bit mask of priorities configured for a
2003 * given DSCP value by APP entries.
2006 dcb_ieee_getapp_dscp_prio_mask_map(const struct net_device
*dev
,
2007 struct dcb_ieee_app_dscp_map
*p_map
)
2009 int ifindex
= dev
->ifindex
;
2010 struct dcb_app_type
*itr
;
2012 memset(p_map
->map
, 0, sizeof(p_map
->map
));
2014 spin_lock_bh(&dcb_lock
);
2015 list_for_each_entry(itr
, &dcb_app_list
, list
) {
2016 if (itr
->ifindex
== ifindex
&&
2017 itr
->app
.selector
== IEEE_8021QAZ_APP_SEL_DSCP
&&
2018 itr
->app
.protocol
< 64 &&
2019 itr
->app
.priority
< IEEE_8021QAZ_MAX_TCS
)
2020 p_map
->map
[itr
->app
.protocol
] |= 1 << itr
->app
.priority
;
2022 spin_unlock_bh(&dcb_lock
);
2024 EXPORT_SYMBOL(dcb_ieee_getapp_dscp_prio_mask_map
);
2027 * Per 802.1Q-2014, the selector value of 1 is used for matching on Ethernet
2028 * type, with valid PID values >= 1536. A special meaning is then assigned to
2029 * protocol value of 0: "default priority. For use when priority is not
2030 * otherwise specified".
2032 * dcb_ieee_getapp_default_prio_mask - For a given device, find all APP entries
2033 * of the form {$PRIO, ETHERTYPE, 0} and construct a bit mask of all default
2034 * priorities set by these entries.
2036 u8
dcb_ieee_getapp_default_prio_mask(const struct net_device
*dev
)
2038 int ifindex
= dev
->ifindex
;
2039 struct dcb_app_type
*itr
;
2042 spin_lock_bh(&dcb_lock
);
2043 list_for_each_entry(itr
, &dcb_app_list
, list
) {
2044 if (itr
->ifindex
== ifindex
&&
2045 itr
->app
.selector
== IEEE_8021QAZ_APP_SEL_ETHERTYPE
&&
2046 itr
->app
.protocol
== 0 &&
2047 itr
->app
.priority
< IEEE_8021QAZ_MAX_TCS
)
2048 mask
|= 1 << itr
->app
.priority
;
2050 spin_unlock_bh(&dcb_lock
);
2054 EXPORT_SYMBOL(dcb_ieee_getapp_default_prio_mask
);
2056 static int __init
dcbnl_init(void)
2058 INIT_LIST_HEAD(&dcb_app_list
);
2060 rtnl_register(PF_UNSPEC
, RTM_GETDCB
, dcb_doit
, NULL
, 0);
2061 rtnl_register(PF_UNSPEC
, RTM_SETDCB
, dcb_doit
, NULL
, 0);
2065 device_initcall(dcbnl_init
);