2 * Copyright (c) 2008-2011, Intel Corporation.
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
13 * You should have received a copy of the GNU General Public License along with
14 * this program; if not, see <http://www.gnu.org/licenses/>.
16 * Description: Data Center Bridging netlink interface
20 #include <linux/netdevice.h>
21 #include <linux/netlink.h>
22 #include <linux/slab.h>
23 #include <net/netlink.h>
24 #include <net/rtnetlink.h>
25 #include <linux/dcbnl.h>
26 #include <net/dcbevent.h>
27 #include <linux/rtnetlink.h>
28 #include <linux/init.h>
31 /* Data Center Bridging (DCB) is a collection of Ethernet enhancements
32 * intended to allow network traffic with differing requirements
33 * (highly reliable, no drops vs. best effort vs. low latency) to operate
34 * and co-exist on Ethernet. Current DCB features are:
36 * Enhanced Transmission Selection (aka Priority Grouping [PG]) - provides a
37 * framework for assigning bandwidth guarantees to traffic classes.
39 * Priority-based Flow Control (PFC) - provides a flow control mechanism which
40 * can work independently for each 802.1p priority.
42 * Congestion Notification - provides a mechanism for end-to-end congestion
43 * control for protocols which do not have built-in congestion management.
45 * More information about the emerging standards for these Ethernet features
46 * can be found at: http://www.ieee802.org/1/pages/dcbridges.html
48 * This file implements an rtnetlink interface to allow configuration of DCB
49 * features for capable devices.
52 /**************** DCB attribute policies *************************************/
54 /* DCB netlink attributes policy */
55 static const struct nla_policy dcbnl_rtnl_policy[DCB_ATTR_MAX + 1] = {
56 [DCB_ATTR_IFNAME] = {.type = NLA_NUL_STRING, .len = IFNAMSIZ - 1},
57 [DCB_ATTR_STATE] = {.type = NLA_U8},
58 [DCB_ATTR_PFC_CFG] = {.type = NLA_NESTED},
59 [DCB_ATTR_PG_CFG] = {.type = NLA_NESTED},
60 [DCB_ATTR_SET_ALL] = {.type = NLA_U8},
61 [DCB_ATTR_PERM_HWADDR] = {.type = NLA_FLAG},
62 [DCB_ATTR_CAP] = {.type = NLA_NESTED},
63 [DCB_ATTR_PFC_STATE] = {.type = NLA_U8},
64 [DCB_ATTR_BCN] = {.type = NLA_NESTED},
65 [DCB_ATTR_APP] = {.type = NLA_NESTED},
66 [DCB_ATTR_IEEE] = {.type = NLA_NESTED},
67 [DCB_ATTR_DCBX] = {.type = NLA_U8},
68 [DCB_ATTR_FEATCFG] = {.type = NLA_NESTED},
71 /* DCB priority flow control to User Priority nested attributes */
72 static const struct nla_policy dcbnl_pfc_up_nest[DCB_PFC_UP_ATTR_MAX + 1] = {
73 [DCB_PFC_UP_ATTR_0] = {.type = NLA_U8},
74 [DCB_PFC_UP_ATTR_1] = {.type = NLA_U8},
75 [DCB_PFC_UP_ATTR_2] = {.type = NLA_U8},
76 [DCB_PFC_UP_ATTR_3] = {.type = NLA_U8},
77 [DCB_PFC_UP_ATTR_4] = {.type = NLA_U8},
78 [DCB_PFC_UP_ATTR_5] = {.type = NLA_U8},
79 [DCB_PFC_UP_ATTR_6] = {.type = NLA_U8},
80 [DCB_PFC_UP_ATTR_7] = {.type = NLA_U8},
81 [DCB_PFC_UP_ATTR_ALL] = {.type = NLA_FLAG},
84 /* DCB priority grouping nested attributes */
85 static const struct nla_policy dcbnl_pg_nest[DCB_PG_ATTR_MAX + 1] = {
86 [DCB_PG_ATTR_TC_0] = {.type = NLA_NESTED},
87 [DCB_PG_ATTR_TC_1] = {.type = NLA_NESTED},
88 [DCB_PG_ATTR_TC_2] = {.type = NLA_NESTED},
89 [DCB_PG_ATTR_TC_3] = {.type = NLA_NESTED},
90 [DCB_PG_ATTR_TC_4] = {.type = NLA_NESTED},
91 [DCB_PG_ATTR_TC_5] = {.type = NLA_NESTED},
92 [DCB_PG_ATTR_TC_6] = {.type = NLA_NESTED},
93 [DCB_PG_ATTR_TC_7] = {.type = NLA_NESTED},
94 [DCB_PG_ATTR_TC_ALL] = {.type = NLA_NESTED},
95 [DCB_PG_ATTR_BW_ID_0] = {.type = NLA_U8},
96 [DCB_PG_ATTR_BW_ID_1] = {.type = NLA_U8},
97 [DCB_PG_ATTR_BW_ID_2] = {.type = NLA_U8},
98 [DCB_PG_ATTR_BW_ID_3] = {.type = NLA_U8},
99 [DCB_PG_ATTR_BW_ID_4] = {.type = NLA_U8},
100 [DCB_PG_ATTR_BW_ID_5] = {.type = NLA_U8},
101 [DCB_PG_ATTR_BW_ID_6] = {.type = NLA_U8},
102 [DCB_PG_ATTR_BW_ID_7] = {.type = NLA_U8},
103 [DCB_PG_ATTR_BW_ID_ALL] = {.type = NLA_FLAG},
106 /* DCB traffic class nested attributes. */
107 static const struct nla_policy dcbnl_tc_param_nest[DCB_TC_ATTR_PARAM_MAX + 1] = {
108 [DCB_TC_ATTR_PARAM_PGID] = {.type = NLA_U8},
109 [DCB_TC_ATTR_PARAM_UP_MAPPING] = {.type = NLA_U8},
110 [DCB_TC_ATTR_PARAM_STRICT_PRIO] = {.type = NLA_U8},
111 [DCB_TC_ATTR_PARAM_BW_PCT] = {.type = NLA_U8},
112 [DCB_TC_ATTR_PARAM_ALL] = {.type = NLA_FLAG},
115 /* DCB capabilities nested attributes. */
116 static const struct nla_policy dcbnl_cap_nest[DCB_CAP_ATTR_MAX + 1] = {
117 [DCB_CAP_ATTR_ALL] = {.type = NLA_FLAG},
118 [DCB_CAP_ATTR_PG] = {.type = NLA_U8},
119 [DCB_CAP_ATTR_PFC] = {.type = NLA_U8},
120 [DCB_CAP_ATTR_UP2TC] = {.type = NLA_U8},
121 [DCB_CAP_ATTR_PG_TCS] = {.type = NLA_U8},
122 [DCB_CAP_ATTR_PFC_TCS] = {.type = NLA_U8},
123 [DCB_CAP_ATTR_GSP] = {.type = NLA_U8},
124 [DCB_CAP_ATTR_BCN] = {.type = NLA_U8},
125 [DCB_CAP_ATTR_DCBX] = {.type = NLA_U8},
128 /* DCB capabilities nested attributes. */
129 static const struct nla_policy dcbnl_numtcs_nest[DCB_NUMTCS_ATTR_MAX + 1] = {
130 [DCB_NUMTCS_ATTR_ALL] = {.type = NLA_FLAG},
131 [DCB_NUMTCS_ATTR_PG] = {.type = NLA_U8},
132 [DCB_NUMTCS_ATTR_PFC] = {.type = NLA_U8},
135 /* DCB BCN nested attributes. */
136 static const struct nla_policy dcbnl_bcn_nest[DCB_BCN_ATTR_MAX + 1] = {
137 [DCB_BCN_ATTR_RP_0] = {.type = NLA_U8},
138 [DCB_BCN_ATTR_RP_1] = {.type = NLA_U8},
139 [DCB_BCN_ATTR_RP_2] = {.type = NLA_U8},
140 [DCB_BCN_ATTR_RP_3] = {.type = NLA_U8},
141 [DCB_BCN_ATTR_RP_4] = {.type = NLA_U8},
142 [DCB_BCN_ATTR_RP_5] = {.type = NLA_U8},
143 [DCB_BCN_ATTR_RP_6] = {.type = NLA_U8},
144 [DCB_BCN_ATTR_RP_7] = {.type = NLA_U8},
145 [DCB_BCN_ATTR_RP_ALL] = {.type = NLA_FLAG},
146 [DCB_BCN_ATTR_BCNA_0] = {.type = NLA_U32},
147 [DCB_BCN_ATTR_BCNA_1] = {.type = NLA_U32},
148 [DCB_BCN_ATTR_ALPHA] = {.type = NLA_U32},
149 [DCB_BCN_ATTR_BETA] = {.type = NLA_U32},
150 [DCB_BCN_ATTR_GD] = {.type = NLA_U32},
151 [DCB_BCN_ATTR_GI] = {.type = NLA_U32},
152 [DCB_BCN_ATTR_TMAX] = {.type = NLA_U32},
153 [DCB_BCN_ATTR_TD] = {.type = NLA_U32},
154 [DCB_BCN_ATTR_RMIN] = {.type = NLA_U32},
155 [DCB_BCN_ATTR_W] = {.type = NLA_U32},
156 [DCB_BCN_ATTR_RD] = {.type = NLA_U32},
157 [DCB_BCN_ATTR_RU] = {.type = NLA_U32},
158 [DCB_BCN_ATTR_WRTT] = {.type = NLA_U32},
159 [DCB_BCN_ATTR_RI] = {.type = NLA_U32},
160 [DCB_BCN_ATTR_C] = {.type = NLA_U32},
161 [DCB_BCN_ATTR_ALL] = {.type = NLA_FLAG},
164 /* DCB APP nested attributes. */
165 static const struct nla_policy dcbnl_app_nest[DCB_APP_ATTR_MAX + 1] = {
166 [DCB_APP_ATTR_IDTYPE] = {.type = NLA_U8},
167 [DCB_APP_ATTR_ID] = {.type = NLA_U16},
168 [DCB_APP_ATTR_PRIORITY] = {.type = NLA_U8},
171 /* IEEE 802.1Qaz nested attributes. */
172 static const struct nla_policy dcbnl_ieee_policy[DCB_ATTR_IEEE_MAX + 1] = {
173 [DCB_ATTR_IEEE_ETS] = {.len = sizeof(struct ieee_ets)},
174 [DCB_ATTR_IEEE_PFC] = {.len = sizeof(struct ieee_pfc)},
175 [DCB_ATTR_IEEE_APP_TABLE] = {.type = NLA_NESTED},
176 [DCB_ATTR_IEEE_MAXRATE] = {.len = sizeof(struct ieee_maxrate)},
177 [DCB_ATTR_IEEE_QCN] = {.len = sizeof(struct ieee_qcn)},
178 [DCB_ATTR_IEEE_QCN_STATS] = {.len = sizeof(struct ieee_qcn_stats)},
181 /* DCB number of traffic classes nested attributes. */
182 static const struct nla_policy dcbnl_featcfg_nest[DCB_FEATCFG_ATTR_MAX + 1] = {
183 [DCB_FEATCFG_ATTR_ALL] = {.type = NLA_FLAG},
184 [DCB_FEATCFG_ATTR_PG] = {.type = NLA_U8},
185 [DCB_FEATCFG_ATTR_PFC] = {.type = NLA_U8},
186 [DCB_FEATCFG_ATTR_APP] = {.type = NLA_U8},
189 static LIST_HEAD(dcb_app_list);
190 static DEFINE_SPINLOCK(dcb_lock);
192 static struct sk_buff *dcbnl_newmsg(int type, u8 cmd, u32 port, u32 seq,
193 u32 flags, struct nlmsghdr **nlhp)
197 struct nlmsghdr *nlh;
199 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
203 nlh = nlmsg_put(skb, port, seq, type, sizeof(*dcb), flags);
206 dcb = nlmsg_data(nlh);
207 dcb->dcb_family = AF_UNSPEC;
217 static int dcbnl_getstate(struct net_device *netdev, struct nlmsghdr *nlh,
218 u32 seq, struct nlattr **tb, struct sk_buff *skb)
220 /* if (!tb[DCB_ATTR_STATE] || !netdev->dcbnl_ops->getstate) */
221 if (!netdev->dcbnl_ops->getstate)
224 return nla_put_u8(skb, DCB_ATTR_STATE,
225 netdev->dcbnl_ops->getstate(netdev));
228 static int dcbnl_getpfccfg(struct net_device *netdev, struct nlmsghdr *nlh,
229 u32 seq, struct nlattr **tb, struct sk_buff *skb)
231 struct nlattr *data[DCB_PFC_UP_ATTR_MAX + 1], *nest;
237 if (!tb[DCB_ATTR_PFC_CFG])
240 if (!netdev->dcbnl_ops->getpfccfg)
243 ret = nla_parse_nested(data, DCB_PFC_UP_ATTR_MAX,
244 tb[DCB_ATTR_PFC_CFG], dcbnl_pfc_up_nest, NULL);
248 nest = nla_nest_start(skb, DCB_ATTR_PFC_CFG);
252 if (data[DCB_PFC_UP_ATTR_ALL])
255 for (i = DCB_PFC_UP_ATTR_0; i <= DCB_PFC_UP_ATTR_7; i++) {
256 if (!getall && !data[i])
259 netdev->dcbnl_ops->getpfccfg(netdev, i - DCB_PFC_UP_ATTR_0,
261 ret = nla_put_u8(skb, i, value);
263 nla_nest_cancel(skb, nest);
267 nla_nest_end(skb, nest);
272 static int dcbnl_getperm_hwaddr(struct net_device *netdev, struct nlmsghdr *nlh,
273 u32 seq, struct nlattr **tb, struct sk_buff *skb)
275 u8 perm_addr[MAX_ADDR_LEN];
277 if (!netdev->dcbnl_ops->getpermhwaddr)
280 memset(perm_addr, 0, sizeof(perm_addr));
281 netdev->dcbnl_ops->getpermhwaddr(netdev, perm_addr);
283 return nla_put(skb, DCB_ATTR_PERM_HWADDR, sizeof(perm_addr), perm_addr);
286 static int dcbnl_getcap(struct net_device *netdev, struct nlmsghdr *nlh,
287 u32 seq, struct nlattr **tb, struct sk_buff *skb)
289 struct nlattr *data[DCB_CAP_ATTR_MAX + 1], *nest;
295 if (!tb[DCB_ATTR_CAP])
298 if (!netdev->dcbnl_ops->getcap)
301 ret = nla_parse_nested(data, DCB_CAP_ATTR_MAX, tb[DCB_ATTR_CAP],
302 dcbnl_cap_nest, NULL);
306 nest = nla_nest_start(skb, DCB_ATTR_CAP);
310 if (data[DCB_CAP_ATTR_ALL])
313 for (i = DCB_CAP_ATTR_ALL+1; i <= DCB_CAP_ATTR_MAX; i++) {
314 if (!getall && !data[i])
317 if (!netdev->dcbnl_ops->getcap(netdev, i, &value)) {
318 ret = nla_put_u8(skb, i, value);
320 nla_nest_cancel(skb, nest);
325 nla_nest_end(skb, nest);
330 static int dcbnl_getnumtcs(struct net_device *netdev, struct nlmsghdr *nlh,
331 u32 seq, struct nlattr **tb, struct sk_buff *skb)
333 struct nlattr *data[DCB_NUMTCS_ATTR_MAX + 1], *nest;
339 if (!tb[DCB_ATTR_NUMTCS])
342 if (!netdev->dcbnl_ops->getnumtcs)
345 ret = nla_parse_nested(data, DCB_NUMTCS_ATTR_MAX, tb[DCB_ATTR_NUMTCS],
346 dcbnl_numtcs_nest, NULL);
350 nest = nla_nest_start(skb, DCB_ATTR_NUMTCS);
354 if (data[DCB_NUMTCS_ATTR_ALL])
357 for (i = DCB_NUMTCS_ATTR_ALL+1; i <= DCB_NUMTCS_ATTR_MAX; i++) {
358 if (!getall && !data[i])
361 ret = netdev->dcbnl_ops->getnumtcs(netdev, i, &value);
363 ret = nla_put_u8(skb, i, value);
365 nla_nest_cancel(skb, nest);
371 nla_nest_end(skb, nest);
376 static int dcbnl_setnumtcs(struct net_device *netdev, struct nlmsghdr *nlh,
377 u32 seq, struct nlattr **tb, struct sk_buff *skb)
379 struct nlattr *data[DCB_NUMTCS_ATTR_MAX + 1];
384 if (!tb[DCB_ATTR_NUMTCS])
387 if (!netdev->dcbnl_ops->setnumtcs)
390 ret = nla_parse_nested(data, DCB_NUMTCS_ATTR_MAX, tb[DCB_ATTR_NUMTCS],
391 dcbnl_numtcs_nest, NULL);
395 for (i = DCB_NUMTCS_ATTR_ALL+1; i <= DCB_NUMTCS_ATTR_MAX; i++) {
399 value = nla_get_u8(data[i]);
401 ret = netdev->dcbnl_ops->setnumtcs(netdev, i, value);
406 return nla_put_u8(skb, DCB_ATTR_NUMTCS, !!ret);
409 static int dcbnl_getpfcstate(struct net_device *netdev, struct nlmsghdr *nlh,
410 u32 seq, struct nlattr **tb, struct sk_buff *skb)
412 if (!netdev->dcbnl_ops->getpfcstate)
415 return nla_put_u8(skb, DCB_ATTR_PFC_STATE,
416 netdev->dcbnl_ops->getpfcstate(netdev));
419 static int dcbnl_setpfcstate(struct net_device *netdev, struct nlmsghdr *nlh,
420 u32 seq, struct nlattr **tb, struct sk_buff *skb)
424 if (!tb[DCB_ATTR_PFC_STATE])
427 if (!netdev->dcbnl_ops->setpfcstate)
430 value = nla_get_u8(tb[DCB_ATTR_PFC_STATE]);
432 netdev->dcbnl_ops->setpfcstate(netdev, value);
434 return nla_put_u8(skb, DCB_ATTR_PFC_STATE, 0);
437 static int dcbnl_getapp(struct net_device *netdev, struct nlmsghdr *nlh,
438 u32 seq, struct nlattr **tb, struct sk_buff *skb)
440 struct nlattr *app_nest;
441 struct nlattr *app_tb[DCB_APP_ATTR_MAX + 1];
446 if (!tb[DCB_ATTR_APP])
449 ret = nla_parse_nested(app_tb, DCB_APP_ATTR_MAX, tb[DCB_ATTR_APP],
450 dcbnl_app_nest, NULL);
454 /* all must be non-null */
455 if ((!app_tb[DCB_APP_ATTR_IDTYPE]) ||
456 (!app_tb[DCB_APP_ATTR_ID]))
459 /* either by eth type or by socket number */
460 idtype = nla_get_u8(app_tb[DCB_APP_ATTR_IDTYPE]);
461 if ((idtype != DCB_APP_IDTYPE_ETHTYPE) &&
462 (idtype != DCB_APP_IDTYPE_PORTNUM))
465 id = nla_get_u16(app_tb[DCB_APP_ATTR_ID]);
467 if (netdev->dcbnl_ops->getapp) {
468 ret = netdev->dcbnl_ops->getapp(netdev, idtype, id);
474 struct dcb_app app = {
478 up = dcb_getapp(netdev, &app);
481 app_nest = nla_nest_start(skb, DCB_ATTR_APP);
485 ret = nla_put_u8(skb, DCB_APP_ATTR_IDTYPE, idtype);
489 ret = nla_put_u16(skb, DCB_APP_ATTR_ID, id);
493 ret = nla_put_u8(skb, DCB_APP_ATTR_PRIORITY, up);
497 nla_nest_end(skb, app_nest);
502 nla_nest_cancel(skb, app_nest);
506 static int dcbnl_setapp(struct net_device *netdev, struct nlmsghdr *nlh,
507 u32 seq, struct nlattr **tb, struct sk_buff *skb)
512 struct nlattr *app_tb[DCB_APP_ATTR_MAX + 1];
514 if (!tb[DCB_ATTR_APP])
517 ret = nla_parse_nested(app_tb, DCB_APP_ATTR_MAX, tb[DCB_ATTR_APP],
518 dcbnl_app_nest, NULL);
522 /* all must be non-null */
523 if ((!app_tb[DCB_APP_ATTR_IDTYPE]) ||
524 (!app_tb[DCB_APP_ATTR_ID]) ||
525 (!app_tb[DCB_APP_ATTR_PRIORITY]))
528 /* either by eth type or by socket number */
529 idtype = nla_get_u8(app_tb[DCB_APP_ATTR_IDTYPE]);
530 if ((idtype != DCB_APP_IDTYPE_ETHTYPE) &&
531 (idtype != DCB_APP_IDTYPE_PORTNUM))
534 id = nla_get_u16(app_tb[DCB_APP_ATTR_ID]);
535 up = nla_get_u8(app_tb[DCB_APP_ATTR_PRIORITY]);
537 if (netdev->dcbnl_ops->setapp) {
538 ret = netdev->dcbnl_ops->setapp(netdev, idtype, id, up);
543 app.selector = idtype;
546 ret = dcb_setapp(netdev, &app);
549 ret = nla_put_u8(skb, DCB_ATTR_APP, ret);
550 dcbnl_cee_notify(netdev, RTM_SETDCB, DCB_CMD_SAPP, seq, 0);
555 static int __dcbnl_pg_getcfg(struct net_device *netdev, struct nlmsghdr *nlh,
556 struct nlattr **tb, struct sk_buff *skb, int dir)
558 struct nlattr *pg_nest, *param_nest, *data;
559 struct nlattr *pg_tb[DCB_PG_ATTR_MAX + 1];
560 struct nlattr *param_tb[DCB_TC_ATTR_PARAM_MAX + 1];
561 u8 prio, pgid, tc_pct, up_map;
566 if (!tb[DCB_ATTR_PG_CFG])
569 if (!netdev->dcbnl_ops->getpgtccfgtx ||
570 !netdev->dcbnl_ops->getpgtccfgrx ||
571 !netdev->dcbnl_ops->getpgbwgcfgtx ||
572 !netdev->dcbnl_ops->getpgbwgcfgrx)
575 ret = nla_parse_nested(pg_tb, DCB_PG_ATTR_MAX, tb[DCB_ATTR_PG_CFG],
576 dcbnl_pg_nest, NULL);
580 pg_nest = nla_nest_start(skb, DCB_ATTR_PG_CFG);
584 if (pg_tb[DCB_PG_ATTR_TC_ALL])
587 for (i = DCB_PG_ATTR_TC_0; i <= DCB_PG_ATTR_TC_7; i++) {
588 if (!getall && !pg_tb[i])
591 if (pg_tb[DCB_PG_ATTR_TC_ALL])
592 data = pg_tb[DCB_PG_ATTR_TC_ALL];
595 ret = nla_parse_nested(param_tb, DCB_TC_ATTR_PARAM_MAX, data,
596 dcbnl_tc_param_nest, NULL);
600 param_nest = nla_nest_start(skb, i);
604 pgid = DCB_ATTR_VALUE_UNDEFINED;
605 prio = DCB_ATTR_VALUE_UNDEFINED;
606 tc_pct = DCB_ATTR_VALUE_UNDEFINED;
607 up_map = DCB_ATTR_VALUE_UNDEFINED;
611 netdev->dcbnl_ops->getpgtccfgrx(netdev,
612 i - DCB_PG_ATTR_TC_0, &prio,
613 &pgid, &tc_pct, &up_map);
616 netdev->dcbnl_ops->getpgtccfgtx(netdev,
617 i - DCB_PG_ATTR_TC_0, &prio,
618 &pgid, &tc_pct, &up_map);
621 if (param_tb[DCB_TC_ATTR_PARAM_PGID] ||
622 param_tb[DCB_TC_ATTR_PARAM_ALL]) {
623 ret = nla_put_u8(skb,
624 DCB_TC_ATTR_PARAM_PGID, pgid);
628 if (param_tb[DCB_TC_ATTR_PARAM_UP_MAPPING] ||
629 param_tb[DCB_TC_ATTR_PARAM_ALL]) {
630 ret = nla_put_u8(skb,
631 DCB_TC_ATTR_PARAM_UP_MAPPING, up_map);
635 if (param_tb[DCB_TC_ATTR_PARAM_STRICT_PRIO] ||
636 param_tb[DCB_TC_ATTR_PARAM_ALL]) {
637 ret = nla_put_u8(skb,
638 DCB_TC_ATTR_PARAM_STRICT_PRIO, prio);
642 if (param_tb[DCB_TC_ATTR_PARAM_BW_PCT] ||
643 param_tb[DCB_TC_ATTR_PARAM_ALL]) {
644 ret = nla_put_u8(skb, DCB_TC_ATTR_PARAM_BW_PCT,
649 nla_nest_end(skb, param_nest);
652 if (pg_tb[DCB_PG_ATTR_BW_ID_ALL])
657 for (i = DCB_PG_ATTR_BW_ID_0; i <= DCB_PG_ATTR_BW_ID_7; i++) {
658 if (!getall && !pg_tb[i])
661 tc_pct = DCB_ATTR_VALUE_UNDEFINED;
665 netdev->dcbnl_ops->getpgbwgcfgrx(netdev,
666 i - DCB_PG_ATTR_BW_ID_0, &tc_pct);
669 netdev->dcbnl_ops->getpgbwgcfgtx(netdev,
670 i - DCB_PG_ATTR_BW_ID_0, &tc_pct);
672 ret = nla_put_u8(skb, i, tc_pct);
677 nla_nest_end(skb, pg_nest);
682 nla_nest_cancel(skb, param_nest);
684 nla_nest_cancel(skb, pg_nest);
689 static int dcbnl_pgtx_getcfg(struct net_device *netdev, struct nlmsghdr *nlh,
690 u32 seq, struct nlattr **tb, struct sk_buff *skb)
692 return __dcbnl_pg_getcfg(netdev, nlh, tb, skb, 0);
695 static int dcbnl_pgrx_getcfg(struct net_device *netdev, struct nlmsghdr *nlh,
696 u32 seq, struct nlattr **tb, struct sk_buff *skb)
698 return __dcbnl_pg_getcfg(netdev, nlh, tb, skb, 1);
701 static int dcbnl_setstate(struct net_device *netdev, struct nlmsghdr *nlh,
702 u32 seq, struct nlattr **tb, struct sk_buff *skb)
706 if (!tb[DCB_ATTR_STATE])
709 if (!netdev->dcbnl_ops->setstate)
712 value = nla_get_u8(tb[DCB_ATTR_STATE]);
714 return nla_put_u8(skb, DCB_ATTR_STATE,
715 netdev->dcbnl_ops->setstate(netdev, value));
718 static int dcbnl_setpfccfg(struct net_device *netdev, struct nlmsghdr *nlh,
719 u32 seq, struct nlattr **tb, struct sk_buff *skb)
721 struct nlattr *data[DCB_PFC_UP_ATTR_MAX + 1];
726 if (!tb[DCB_ATTR_PFC_CFG])
729 if (!netdev->dcbnl_ops->setpfccfg)
732 ret = nla_parse_nested(data, DCB_PFC_UP_ATTR_MAX,
733 tb[DCB_ATTR_PFC_CFG], dcbnl_pfc_up_nest, NULL);
737 for (i = DCB_PFC_UP_ATTR_0; i <= DCB_PFC_UP_ATTR_7; i++) {
740 value = nla_get_u8(data[i]);
741 netdev->dcbnl_ops->setpfccfg(netdev,
742 data[i]->nla_type - DCB_PFC_UP_ATTR_0, value);
745 return nla_put_u8(skb, DCB_ATTR_PFC_CFG, 0);
748 static int dcbnl_setall(struct net_device *netdev, struct nlmsghdr *nlh,
749 u32 seq, struct nlattr **tb, struct sk_buff *skb)
753 if (!tb[DCB_ATTR_SET_ALL])
756 if (!netdev->dcbnl_ops->setall)
759 ret = nla_put_u8(skb, DCB_ATTR_SET_ALL,
760 netdev->dcbnl_ops->setall(netdev));
761 dcbnl_cee_notify(netdev, RTM_SETDCB, DCB_CMD_SET_ALL, seq, 0);
766 static int __dcbnl_pg_setcfg(struct net_device *netdev, struct nlmsghdr *nlh,
767 u32 seq, struct nlattr **tb, struct sk_buff *skb,
770 struct nlattr *pg_tb[DCB_PG_ATTR_MAX + 1];
771 struct nlattr *param_tb[DCB_TC_ATTR_PARAM_MAX + 1];
779 if (!tb[DCB_ATTR_PG_CFG])
782 if (!netdev->dcbnl_ops->setpgtccfgtx ||
783 !netdev->dcbnl_ops->setpgtccfgrx ||
784 !netdev->dcbnl_ops->setpgbwgcfgtx ||
785 !netdev->dcbnl_ops->setpgbwgcfgrx)
788 ret = nla_parse_nested(pg_tb, DCB_PG_ATTR_MAX, tb[DCB_ATTR_PG_CFG],
789 dcbnl_pg_nest, NULL);
793 for (i = DCB_PG_ATTR_TC_0; i <= DCB_PG_ATTR_TC_7; i++) {
797 ret = nla_parse_nested(param_tb, DCB_TC_ATTR_PARAM_MAX,
798 pg_tb[i], dcbnl_tc_param_nest, NULL);
802 pgid = DCB_ATTR_VALUE_UNDEFINED;
803 prio = DCB_ATTR_VALUE_UNDEFINED;
804 tc_pct = DCB_ATTR_VALUE_UNDEFINED;
805 up_map = DCB_ATTR_VALUE_UNDEFINED;
807 if (param_tb[DCB_TC_ATTR_PARAM_STRICT_PRIO])
809 nla_get_u8(param_tb[DCB_TC_ATTR_PARAM_STRICT_PRIO]);
811 if (param_tb[DCB_TC_ATTR_PARAM_PGID])
812 pgid = nla_get_u8(param_tb[DCB_TC_ATTR_PARAM_PGID]);
814 if (param_tb[DCB_TC_ATTR_PARAM_BW_PCT])
815 tc_pct = nla_get_u8(param_tb[DCB_TC_ATTR_PARAM_BW_PCT]);
817 if (param_tb[DCB_TC_ATTR_PARAM_UP_MAPPING])
819 nla_get_u8(param_tb[DCB_TC_ATTR_PARAM_UP_MAPPING]);
821 /* dir: Tx = 0, Rx = 1 */
824 netdev->dcbnl_ops->setpgtccfgrx(netdev,
825 i - DCB_PG_ATTR_TC_0,
826 prio, pgid, tc_pct, up_map);
829 netdev->dcbnl_ops->setpgtccfgtx(netdev,
830 i - DCB_PG_ATTR_TC_0,
831 prio, pgid, tc_pct, up_map);
835 for (i = DCB_PG_ATTR_BW_ID_0; i <= DCB_PG_ATTR_BW_ID_7; i++) {
839 tc_pct = nla_get_u8(pg_tb[i]);
841 /* dir: Tx = 0, Rx = 1 */
844 netdev->dcbnl_ops->setpgbwgcfgrx(netdev,
845 i - DCB_PG_ATTR_BW_ID_0, tc_pct);
848 netdev->dcbnl_ops->setpgbwgcfgtx(netdev,
849 i - DCB_PG_ATTR_BW_ID_0, tc_pct);
853 return nla_put_u8(skb, DCB_ATTR_PG_CFG, 0);
856 static int dcbnl_pgtx_setcfg(struct net_device *netdev, struct nlmsghdr *nlh,
857 u32 seq, struct nlattr **tb, struct sk_buff *skb)
859 return __dcbnl_pg_setcfg(netdev, nlh, seq, tb, skb, 0);
862 static int dcbnl_pgrx_setcfg(struct net_device *netdev, struct nlmsghdr *nlh,
863 u32 seq, struct nlattr **tb, struct sk_buff *skb)
865 return __dcbnl_pg_setcfg(netdev, nlh, seq, tb, skb, 1);
868 static int dcbnl_bcn_getcfg(struct net_device *netdev, struct nlmsghdr *nlh,
869 u32 seq, struct nlattr **tb, struct sk_buff *skb)
871 struct nlattr *bcn_nest;
872 struct nlattr *bcn_tb[DCB_BCN_ATTR_MAX + 1];
879 if (!tb[DCB_ATTR_BCN])
882 if (!netdev->dcbnl_ops->getbcnrp ||
883 !netdev->dcbnl_ops->getbcncfg)
886 ret = nla_parse_nested(bcn_tb, DCB_BCN_ATTR_MAX, tb[DCB_ATTR_BCN],
887 dcbnl_bcn_nest, NULL);
891 bcn_nest = nla_nest_start(skb, DCB_ATTR_BCN);
895 if (bcn_tb[DCB_BCN_ATTR_ALL])
898 for (i = DCB_BCN_ATTR_RP_0; i <= DCB_BCN_ATTR_RP_7; i++) {
899 if (!getall && !bcn_tb[i])
902 netdev->dcbnl_ops->getbcnrp(netdev, i - DCB_BCN_ATTR_RP_0,
904 ret = nla_put_u8(skb, i, value_byte);
909 for (i = DCB_BCN_ATTR_BCNA_0; i <= DCB_BCN_ATTR_RI; i++) {
910 if (!getall && !bcn_tb[i])
913 netdev->dcbnl_ops->getbcncfg(netdev, i,
915 ret = nla_put_u32(skb, i, value_integer);
920 nla_nest_end(skb, bcn_nest);
925 nla_nest_cancel(skb, bcn_nest);
929 static int dcbnl_bcn_setcfg(struct net_device *netdev, struct nlmsghdr *nlh,
930 u32 seq, struct nlattr **tb, struct sk_buff *skb)
932 struct nlattr *data[DCB_BCN_ATTR_MAX + 1];
938 if (!tb[DCB_ATTR_BCN])
941 if (!netdev->dcbnl_ops->setbcncfg ||
942 !netdev->dcbnl_ops->setbcnrp)
945 ret = nla_parse_nested(data, DCB_BCN_ATTR_MAX, tb[DCB_ATTR_BCN],
946 dcbnl_pfc_up_nest, NULL);
950 for (i = DCB_BCN_ATTR_RP_0; i <= DCB_BCN_ATTR_RP_7; i++) {
953 value_byte = nla_get_u8(data[i]);
954 netdev->dcbnl_ops->setbcnrp(netdev,
955 data[i]->nla_type - DCB_BCN_ATTR_RP_0, value_byte);
958 for (i = DCB_BCN_ATTR_BCNA_0; i <= DCB_BCN_ATTR_RI; i++) {
961 value_int = nla_get_u32(data[i]);
962 netdev->dcbnl_ops->setbcncfg(netdev,
966 return nla_put_u8(skb, DCB_ATTR_BCN, 0);
969 static int dcbnl_build_peer_app(struct net_device *netdev, struct sk_buff* skb,
970 int app_nested_type, int app_info_type,
973 struct dcb_peer_app_info info;
974 struct dcb_app *table = NULL;
975 const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops;
981 * retrieve the peer app configuration form the driver. If the driver
982 * handlers fail exit without doing anything
984 err = ops->peer_getappinfo(netdev, &info, &app_count);
985 if (!err && app_count) {
986 table = kmalloc(sizeof(struct dcb_app) * app_count, GFP_KERNEL);
990 err = ops->peer_getapptable(netdev, table);
998 * build the message, from here on the only possible failure
999 * is due to the skb size
1003 app = nla_nest_start(skb, app_nested_type);
1005 goto nla_put_failure;
1007 if (app_info_type &&
1008 nla_put(skb, app_info_type, sizeof(info), &info))
1009 goto nla_put_failure;
1011 for (i = 0; i < app_count; i++) {
1012 if (nla_put(skb, app_entry_type, sizeof(struct dcb_app),
1014 goto nla_put_failure;
1016 nla_nest_end(skb, app);
1025 /* Handle IEEE 802.1Qaz/802.1Qau/802.1Qbb GET commands. */
1026 static int dcbnl_ieee_fill(struct sk_buff *skb, struct net_device *netdev)
1028 struct nlattr *ieee, *app;
1029 struct dcb_app_type *itr;
1030 const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops;
1034 if (nla_put_string(skb, DCB_ATTR_IFNAME, netdev->name))
1037 ieee = nla_nest_start(skb, DCB_ATTR_IEEE);
1041 if (ops->ieee_getets) {
1042 struct ieee_ets ets;
1043 memset(&ets, 0, sizeof(ets));
1044 err = ops->ieee_getets(netdev, &ets);
1046 nla_put(skb, DCB_ATTR_IEEE_ETS, sizeof(ets), &ets))
1050 if (ops->ieee_getmaxrate) {
1051 struct ieee_maxrate maxrate;
1052 memset(&maxrate, 0, sizeof(maxrate));
1053 err = ops->ieee_getmaxrate(netdev, &maxrate);
1055 err = nla_put(skb, DCB_ATTR_IEEE_MAXRATE,
1056 sizeof(maxrate), &maxrate);
1062 if (ops->ieee_getqcn) {
1063 struct ieee_qcn qcn;
1065 memset(&qcn, 0, sizeof(qcn));
1066 err = ops->ieee_getqcn(netdev, &qcn);
1068 err = nla_put(skb, DCB_ATTR_IEEE_QCN,
1075 if (ops->ieee_getqcnstats) {
1076 struct ieee_qcn_stats qcn_stats;
1078 memset(&qcn_stats, 0, sizeof(qcn_stats));
1079 err = ops->ieee_getqcnstats(netdev, &qcn_stats);
1081 err = nla_put(skb, DCB_ATTR_IEEE_QCN_STATS,
1082 sizeof(qcn_stats), &qcn_stats);
1088 if (ops->ieee_getpfc) {
1089 struct ieee_pfc pfc;
1090 memset(&pfc, 0, sizeof(pfc));
1091 err = ops->ieee_getpfc(netdev, &pfc);
1093 nla_put(skb, DCB_ATTR_IEEE_PFC, sizeof(pfc), &pfc))
1097 app = nla_nest_start(skb, DCB_ATTR_IEEE_APP_TABLE);
1101 spin_lock_bh(&dcb_lock);
1102 list_for_each_entry(itr, &dcb_app_list, list) {
1103 if (itr->ifindex == netdev->ifindex) {
1104 err = nla_put(skb, DCB_ATTR_IEEE_APP, sizeof(itr->app),
1107 spin_unlock_bh(&dcb_lock);
1113 if (netdev->dcbnl_ops->getdcbx)
1114 dcbx = netdev->dcbnl_ops->getdcbx(netdev);
1118 spin_unlock_bh(&dcb_lock);
1119 nla_nest_end(skb, app);
1121 /* get peer info if available */
1122 if (ops->ieee_peer_getets) {
1123 struct ieee_ets ets;
1124 memset(&ets, 0, sizeof(ets));
1125 err = ops->ieee_peer_getets(netdev, &ets);
1127 nla_put(skb, DCB_ATTR_IEEE_PEER_ETS, sizeof(ets), &ets))
1131 if (ops->ieee_peer_getpfc) {
1132 struct ieee_pfc pfc;
1133 memset(&pfc, 0, sizeof(pfc));
1134 err = ops->ieee_peer_getpfc(netdev, &pfc);
1136 nla_put(skb, DCB_ATTR_IEEE_PEER_PFC, sizeof(pfc), &pfc))
1140 if (ops->peer_getappinfo && ops->peer_getapptable) {
1141 err = dcbnl_build_peer_app(netdev, skb,
1142 DCB_ATTR_IEEE_PEER_APP,
1143 DCB_ATTR_IEEE_APP_UNSPEC,
1149 nla_nest_end(skb, ieee);
1151 err = nla_put_u8(skb, DCB_ATTR_DCBX, dcbx);
1159 static int dcbnl_cee_pg_fill(struct sk_buff *skb, struct net_device *dev,
1162 u8 pgid, up_map, prio, tc_pct;
1163 const struct dcbnl_rtnl_ops *ops = dev->dcbnl_ops;
1164 int i = dir ? DCB_ATTR_CEE_TX_PG : DCB_ATTR_CEE_RX_PG;
1165 struct nlattr *pg = nla_nest_start(skb, i);
1170 for (i = DCB_PG_ATTR_TC_0; i <= DCB_PG_ATTR_TC_7; i++) {
1171 struct nlattr *tc_nest = nla_nest_start(skb, i);
1176 pgid = DCB_ATTR_VALUE_UNDEFINED;
1177 prio = DCB_ATTR_VALUE_UNDEFINED;
1178 tc_pct = DCB_ATTR_VALUE_UNDEFINED;
1179 up_map = DCB_ATTR_VALUE_UNDEFINED;
1182 ops->getpgtccfgrx(dev, i - DCB_PG_ATTR_TC_0,
1183 &prio, &pgid, &tc_pct, &up_map);
1185 ops->getpgtccfgtx(dev, i - DCB_PG_ATTR_TC_0,
1186 &prio, &pgid, &tc_pct, &up_map);
1188 if (nla_put_u8(skb, DCB_TC_ATTR_PARAM_PGID, pgid) ||
1189 nla_put_u8(skb, DCB_TC_ATTR_PARAM_UP_MAPPING, up_map) ||
1190 nla_put_u8(skb, DCB_TC_ATTR_PARAM_STRICT_PRIO, prio) ||
1191 nla_put_u8(skb, DCB_TC_ATTR_PARAM_BW_PCT, tc_pct))
1193 nla_nest_end(skb, tc_nest);
1196 for (i = DCB_PG_ATTR_BW_ID_0; i <= DCB_PG_ATTR_BW_ID_7; i++) {
1197 tc_pct = DCB_ATTR_VALUE_UNDEFINED;
1200 ops->getpgbwgcfgrx(dev, i - DCB_PG_ATTR_BW_ID_0,
1203 ops->getpgbwgcfgtx(dev, i - DCB_PG_ATTR_BW_ID_0,
1205 if (nla_put_u8(skb, i, tc_pct))
1208 nla_nest_end(skb, pg);
1212 static int dcbnl_cee_fill(struct sk_buff *skb, struct net_device *netdev)
1214 struct nlattr *cee, *app;
1215 struct dcb_app_type *itr;
1216 const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops;
1217 int dcbx, i, err = -EMSGSIZE;
1220 if (nla_put_string(skb, DCB_ATTR_IFNAME, netdev->name))
1221 goto nla_put_failure;
1222 cee = nla_nest_start(skb, DCB_ATTR_CEE);
1224 goto nla_put_failure;
1227 if (ops->getpgtccfgtx && ops->getpgbwgcfgtx) {
1228 err = dcbnl_cee_pg_fill(skb, netdev, 1);
1230 goto nla_put_failure;
1233 if (ops->getpgtccfgrx && ops->getpgbwgcfgrx) {
1234 err = dcbnl_cee_pg_fill(skb, netdev, 0);
1236 goto nla_put_failure;
1240 if (ops->getpfccfg) {
1241 struct nlattr *pfc_nest = nla_nest_start(skb, DCB_ATTR_CEE_PFC);
1244 goto nla_put_failure;
1246 for (i = DCB_PFC_UP_ATTR_0; i <= DCB_PFC_UP_ATTR_7; i++) {
1247 ops->getpfccfg(netdev, i - DCB_PFC_UP_ATTR_0, &value);
1248 if (nla_put_u8(skb, i, value))
1249 goto nla_put_failure;
1251 nla_nest_end(skb, pfc_nest);
1255 spin_lock_bh(&dcb_lock);
1256 app = nla_nest_start(skb, DCB_ATTR_CEE_APP_TABLE);
1260 list_for_each_entry(itr, &dcb_app_list, list) {
1261 if (itr->ifindex == netdev->ifindex) {
1262 struct nlattr *app_nest = nla_nest_start(skb,
1267 err = nla_put_u8(skb, DCB_APP_ATTR_IDTYPE,
1272 err = nla_put_u16(skb, DCB_APP_ATTR_ID,
1277 err = nla_put_u8(skb, DCB_APP_ATTR_PRIORITY,
1282 nla_nest_end(skb, app_nest);
1285 nla_nest_end(skb, app);
1287 if (netdev->dcbnl_ops->getdcbx)
1288 dcbx = netdev->dcbnl_ops->getdcbx(netdev);
1292 spin_unlock_bh(&dcb_lock);
1294 /* features flags */
1295 if (ops->getfeatcfg) {
1296 struct nlattr *feat = nla_nest_start(skb, DCB_ATTR_CEE_FEAT);
1298 goto nla_put_failure;
1300 for (i = DCB_FEATCFG_ATTR_ALL + 1; i <= DCB_FEATCFG_ATTR_MAX;
1302 if (!ops->getfeatcfg(netdev, i, &value) &&
1303 nla_put_u8(skb, i, value))
1304 goto nla_put_failure;
1306 nla_nest_end(skb, feat);
1309 /* peer info if available */
1310 if (ops->cee_peer_getpg) {
1312 memset(&pg, 0, sizeof(pg));
1313 err = ops->cee_peer_getpg(netdev, &pg);
1315 nla_put(skb, DCB_ATTR_CEE_PEER_PG, sizeof(pg), &pg))
1316 goto nla_put_failure;
1319 if (ops->cee_peer_getpfc) {
1321 memset(&pfc, 0, sizeof(pfc));
1322 err = ops->cee_peer_getpfc(netdev, &pfc);
1324 nla_put(skb, DCB_ATTR_CEE_PEER_PFC, sizeof(pfc), &pfc))
1325 goto nla_put_failure;
1328 if (ops->peer_getappinfo && ops->peer_getapptable) {
1329 err = dcbnl_build_peer_app(netdev, skb,
1330 DCB_ATTR_CEE_PEER_APP_TABLE,
1331 DCB_ATTR_CEE_PEER_APP_INFO,
1332 DCB_ATTR_CEE_PEER_APP);
1334 goto nla_put_failure;
1336 nla_nest_end(skb, cee);
1340 err = nla_put_u8(skb, DCB_ATTR_DCBX, dcbx);
1342 goto nla_put_failure;
1347 spin_unlock_bh(&dcb_lock);
1353 static int dcbnl_notify(struct net_device *dev, int event, int cmd,
1354 u32 seq, u32 portid, int dcbx_ver)
1356 struct net *net = dev_net(dev);
1357 struct sk_buff *skb;
1358 struct nlmsghdr *nlh;
1359 const struct dcbnl_rtnl_ops *ops = dev->dcbnl_ops;
1365 skb = dcbnl_newmsg(event, cmd, portid, seq, 0, &nlh);
1369 if (dcbx_ver == DCB_CAP_DCBX_VER_IEEE)
1370 err = dcbnl_ieee_fill(skb, dev);
1372 err = dcbnl_cee_fill(skb, dev);
1375 /* Report error to broadcast listeners */
1377 rtnl_set_sk_err(net, RTNLGRP_DCB, err);
1379 /* End nlmsg and notify broadcast listeners */
1380 nlmsg_end(skb, nlh);
1381 rtnl_notify(skb, net, 0, RTNLGRP_DCB, NULL, GFP_KERNEL);
1387 int dcbnl_ieee_notify(struct net_device *dev, int event, int cmd,
1388 u32 seq, u32 portid)
1390 return dcbnl_notify(dev, event, cmd, seq, portid, DCB_CAP_DCBX_VER_IEEE);
1392 EXPORT_SYMBOL(dcbnl_ieee_notify);
1394 int dcbnl_cee_notify(struct net_device *dev, int event, int cmd,
1395 u32 seq, u32 portid)
1397 return dcbnl_notify(dev, event, cmd, seq, portid, DCB_CAP_DCBX_VER_CEE);
1399 EXPORT_SYMBOL(dcbnl_cee_notify);
1401 /* Handle IEEE 802.1Qaz/802.1Qau/802.1Qbb SET commands.
1402 * If any requested operation can not be completed
1403 * the entire msg is aborted and error value is returned.
1404 * No attempt is made to reconcile the case where only part of the
1405 * cmd can be completed.
1407 static int dcbnl_ieee_set(struct net_device *netdev, struct nlmsghdr *nlh,
1408 u32 seq, struct nlattr **tb, struct sk_buff *skb)
1410 const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops;
1411 struct nlattr *ieee[DCB_ATTR_IEEE_MAX + 1];
1417 if (!tb[DCB_ATTR_IEEE])
1420 err = nla_parse_nested(ieee, DCB_ATTR_IEEE_MAX, tb[DCB_ATTR_IEEE],
1421 dcbnl_ieee_policy, NULL);
1425 if (ieee[DCB_ATTR_IEEE_ETS] && ops->ieee_setets) {
1426 struct ieee_ets *ets = nla_data(ieee[DCB_ATTR_IEEE_ETS]);
1427 err = ops->ieee_setets(netdev, ets);
1432 if (ieee[DCB_ATTR_IEEE_MAXRATE] && ops->ieee_setmaxrate) {
1433 struct ieee_maxrate *maxrate =
1434 nla_data(ieee[DCB_ATTR_IEEE_MAXRATE]);
1435 err = ops->ieee_setmaxrate(netdev, maxrate);
1440 if (ieee[DCB_ATTR_IEEE_QCN] && ops->ieee_setqcn) {
1441 struct ieee_qcn *qcn =
1442 nla_data(ieee[DCB_ATTR_IEEE_QCN]);
1444 err = ops->ieee_setqcn(netdev, qcn);
1449 if (ieee[DCB_ATTR_IEEE_PFC] && ops->ieee_setpfc) {
1450 struct ieee_pfc *pfc = nla_data(ieee[DCB_ATTR_IEEE_PFC]);
1451 err = ops->ieee_setpfc(netdev, pfc);
1456 if (ieee[DCB_ATTR_IEEE_APP_TABLE]) {
1457 struct nlattr *attr;
1460 nla_for_each_nested(attr, ieee[DCB_ATTR_IEEE_APP_TABLE], rem) {
1461 struct dcb_app *app_data;
1463 if (nla_type(attr) != DCB_ATTR_IEEE_APP)
1466 if (nla_len(attr) < sizeof(struct dcb_app)) {
1471 app_data = nla_data(attr);
1472 if (ops->ieee_setapp)
1473 err = ops->ieee_setapp(netdev, app_data);
1475 err = dcb_ieee_setapp(netdev, app_data);
1482 err = nla_put_u8(skb, DCB_ATTR_IEEE, err);
1483 dcbnl_ieee_notify(netdev, RTM_SETDCB, DCB_CMD_IEEE_SET, seq, 0);
1487 static int dcbnl_ieee_get(struct net_device *netdev, struct nlmsghdr *nlh,
1488 u32 seq, struct nlattr **tb, struct sk_buff *skb)
1490 const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops;
1495 return dcbnl_ieee_fill(skb, netdev);
1498 static int dcbnl_ieee_del(struct net_device *netdev, struct nlmsghdr *nlh,
1499 u32 seq, struct nlattr **tb, struct sk_buff *skb)
1501 const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops;
1502 struct nlattr *ieee[DCB_ATTR_IEEE_MAX + 1];
1508 if (!tb[DCB_ATTR_IEEE])
1511 err = nla_parse_nested(ieee, DCB_ATTR_IEEE_MAX, tb[DCB_ATTR_IEEE],
1512 dcbnl_ieee_policy, NULL);
1516 if (ieee[DCB_ATTR_IEEE_APP_TABLE]) {
1517 struct nlattr *attr;
1520 nla_for_each_nested(attr, ieee[DCB_ATTR_IEEE_APP_TABLE], rem) {
1521 struct dcb_app *app_data;
1523 if (nla_type(attr) != DCB_ATTR_IEEE_APP)
1525 app_data = nla_data(attr);
1526 if (ops->ieee_delapp)
1527 err = ops->ieee_delapp(netdev, app_data);
1529 err = dcb_ieee_delapp(netdev, app_data);
1536 err = nla_put_u8(skb, DCB_ATTR_IEEE, err);
1537 dcbnl_ieee_notify(netdev, RTM_SETDCB, DCB_CMD_IEEE_DEL, seq, 0);
1542 /* DCBX configuration */
1543 static int dcbnl_getdcbx(struct net_device *netdev, struct nlmsghdr *nlh,
1544 u32 seq, struct nlattr **tb, struct sk_buff *skb)
1546 if (!netdev->dcbnl_ops->getdcbx)
1549 return nla_put_u8(skb, DCB_ATTR_DCBX,
1550 netdev->dcbnl_ops->getdcbx(netdev));
1553 static int dcbnl_setdcbx(struct net_device *netdev, struct nlmsghdr *nlh,
1554 u32 seq, struct nlattr **tb, struct sk_buff *skb)
1558 if (!netdev->dcbnl_ops->setdcbx)
1561 if (!tb[DCB_ATTR_DCBX])
1564 value = nla_get_u8(tb[DCB_ATTR_DCBX]);
1566 return nla_put_u8(skb, DCB_ATTR_DCBX,
1567 netdev->dcbnl_ops->setdcbx(netdev, value));
1570 static int dcbnl_getfeatcfg(struct net_device *netdev, struct nlmsghdr *nlh,
1571 u32 seq, struct nlattr **tb, struct sk_buff *skb)
1573 struct nlattr *data[DCB_FEATCFG_ATTR_MAX + 1], *nest;
1578 if (!netdev->dcbnl_ops->getfeatcfg)
1581 if (!tb[DCB_ATTR_FEATCFG])
1584 ret = nla_parse_nested(data, DCB_FEATCFG_ATTR_MAX,
1585 tb[DCB_ATTR_FEATCFG], dcbnl_featcfg_nest, NULL);
1589 nest = nla_nest_start(skb, DCB_ATTR_FEATCFG);
1593 if (data[DCB_FEATCFG_ATTR_ALL])
1596 for (i = DCB_FEATCFG_ATTR_ALL+1; i <= DCB_FEATCFG_ATTR_MAX; i++) {
1597 if (!getall && !data[i])
1600 ret = netdev->dcbnl_ops->getfeatcfg(netdev, i, &value);
1602 ret = nla_put_u8(skb, i, value);
1605 nla_nest_cancel(skb, nest);
1606 goto nla_put_failure;
1609 nla_nest_end(skb, nest);
1615 static int dcbnl_setfeatcfg(struct net_device *netdev, struct nlmsghdr *nlh,
1616 u32 seq, struct nlattr **tb, struct sk_buff *skb)
1618 struct nlattr *data[DCB_FEATCFG_ATTR_MAX + 1];
1622 if (!netdev->dcbnl_ops->setfeatcfg)
1625 if (!tb[DCB_ATTR_FEATCFG])
1628 ret = nla_parse_nested(data, DCB_FEATCFG_ATTR_MAX,
1629 tb[DCB_ATTR_FEATCFG], dcbnl_featcfg_nest, NULL);
1634 for (i = DCB_FEATCFG_ATTR_ALL+1; i <= DCB_FEATCFG_ATTR_MAX; i++) {
1635 if (data[i] == NULL)
1638 value = nla_get_u8(data[i]);
1640 ret = netdev->dcbnl_ops->setfeatcfg(netdev, i, value);
1646 ret = nla_put_u8(skb, DCB_ATTR_FEATCFG, ret);
1651 /* Handle CEE DCBX GET commands. */
1652 static int dcbnl_cee_get(struct net_device *netdev, struct nlmsghdr *nlh,
1653 u32 seq, struct nlattr **tb, struct sk_buff *skb)
1655 const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops;
1660 return dcbnl_cee_fill(skb, netdev);
1664 /* reply netlink message type */
1667 /* function to fill message contents */
1668 int (*cb)(struct net_device *, struct nlmsghdr *, u32,
1669 struct nlattr **, struct sk_buff *);
1672 static const struct reply_func reply_funcs[DCB_CMD_MAX+1] = {
1673 [DCB_CMD_GSTATE] = { RTM_GETDCB, dcbnl_getstate },
1674 [DCB_CMD_SSTATE] = { RTM_SETDCB, dcbnl_setstate },
1675 [DCB_CMD_PFC_GCFG] = { RTM_GETDCB, dcbnl_getpfccfg },
1676 [DCB_CMD_PFC_SCFG] = { RTM_SETDCB, dcbnl_setpfccfg },
1677 [DCB_CMD_GPERM_HWADDR] = { RTM_GETDCB, dcbnl_getperm_hwaddr },
1678 [DCB_CMD_GCAP] = { RTM_GETDCB, dcbnl_getcap },
1679 [DCB_CMD_GNUMTCS] = { RTM_GETDCB, dcbnl_getnumtcs },
1680 [DCB_CMD_SNUMTCS] = { RTM_SETDCB, dcbnl_setnumtcs },
1681 [DCB_CMD_PFC_GSTATE] = { RTM_GETDCB, dcbnl_getpfcstate },
1682 [DCB_CMD_PFC_SSTATE] = { RTM_SETDCB, dcbnl_setpfcstate },
1683 [DCB_CMD_GAPP] = { RTM_GETDCB, dcbnl_getapp },
1684 [DCB_CMD_SAPP] = { RTM_SETDCB, dcbnl_setapp },
1685 [DCB_CMD_PGTX_GCFG] = { RTM_GETDCB, dcbnl_pgtx_getcfg },
1686 [DCB_CMD_PGTX_SCFG] = { RTM_SETDCB, dcbnl_pgtx_setcfg },
1687 [DCB_CMD_PGRX_GCFG] = { RTM_GETDCB, dcbnl_pgrx_getcfg },
1688 [DCB_CMD_PGRX_SCFG] = { RTM_SETDCB, dcbnl_pgrx_setcfg },
1689 [DCB_CMD_SET_ALL] = { RTM_SETDCB, dcbnl_setall },
1690 [DCB_CMD_BCN_GCFG] = { RTM_GETDCB, dcbnl_bcn_getcfg },
1691 [DCB_CMD_BCN_SCFG] = { RTM_SETDCB, dcbnl_bcn_setcfg },
1692 [DCB_CMD_IEEE_GET] = { RTM_GETDCB, dcbnl_ieee_get },
1693 [DCB_CMD_IEEE_SET] = { RTM_SETDCB, dcbnl_ieee_set },
1694 [DCB_CMD_IEEE_DEL] = { RTM_SETDCB, dcbnl_ieee_del },
1695 [DCB_CMD_GDCBX] = { RTM_GETDCB, dcbnl_getdcbx },
1696 [DCB_CMD_SDCBX] = { RTM_SETDCB, dcbnl_setdcbx },
1697 [DCB_CMD_GFEATCFG] = { RTM_GETDCB, dcbnl_getfeatcfg },
1698 [DCB_CMD_SFEATCFG] = { RTM_SETDCB, dcbnl_setfeatcfg },
1699 [DCB_CMD_CEE_GET] = { RTM_GETDCB, dcbnl_cee_get },
1702 static int dcb_doit(struct sk_buff *skb, struct nlmsghdr *nlh,
1703 struct netlink_ext_ack *extack)
1705 struct net *net = sock_net(skb->sk);
1706 struct net_device *netdev;
1707 struct dcbmsg *dcb = nlmsg_data(nlh);
1708 struct nlattr *tb[DCB_ATTR_MAX + 1];
1709 u32 portid = skb ? NETLINK_CB(skb).portid : 0;
1711 struct sk_buff *reply_skb;
1712 struct nlmsghdr *reply_nlh = NULL;
1713 const struct reply_func *fn;
1715 if ((nlh->nlmsg_type == RTM_SETDCB) && !netlink_capable(skb, CAP_NET_ADMIN))
1718 ret = nlmsg_parse(nlh, sizeof(*dcb), tb, DCB_ATTR_MAX,
1719 dcbnl_rtnl_policy, extack);
1723 if (dcb->cmd > DCB_CMD_MAX)
1726 /* check if a reply function has been defined for the command */
1727 fn = &reply_funcs[dcb->cmd];
1731 if (!tb[DCB_ATTR_IFNAME])
1734 netdev = __dev_get_by_name(net, nla_data(tb[DCB_ATTR_IFNAME]));
1738 if (!netdev->dcbnl_ops)
1741 reply_skb = dcbnl_newmsg(fn->type, dcb->cmd, portid, nlh->nlmsg_seq,
1742 nlh->nlmsg_flags, &reply_nlh);
1746 ret = fn->cb(netdev, nlh, nlh->nlmsg_seq, tb, reply_skb);
1748 nlmsg_free(reply_skb);
1752 nlmsg_end(reply_skb, reply_nlh);
1754 ret = rtnl_unicast(reply_skb, net, portid);
1759 static struct dcb_app_type *dcb_app_lookup(const struct dcb_app *app,
1760 int ifindex, int prio)
1762 struct dcb_app_type *itr;
1764 list_for_each_entry(itr, &dcb_app_list, list) {
1765 if (itr->app.selector == app->selector &&
1766 itr->app.protocol == app->protocol &&
1767 itr->ifindex == ifindex &&
1768 (!prio || itr->app.priority == prio))
1775 static int dcb_app_add(const struct dcb_app *app, int ifindex)
1777 struct dcb_app_type *entry;
1779 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
1783 memcpy(&entry->app, app, sizeof(*app));
1784 entry->ifindex = ifindex;
1785 list_add(&entry->list, &dcb_app_list);
1791 * dcb_getapp - retrieve the DCBX application user priority
1793 * On success returns a non-zero 802.1p user priority bitmap
1794 * otherwise returns 0 as the invalid user priority bitmap to
1795 * indicate an error.
1797 u8 dcb_getapp(struct net_device *dev, struct dcb_app *app)
1799 struct dcb_app_type *itr;
1802 spin_lock_bh(&dcb_lock);
1803 if ((itr = dcb_app_lookup(app, dev->ifindex, 0)))
1804 prio = itr->app.priority;
1805 spin_unlock_bh(&dcb_lock);
1809 EXPORT_SYMBOL(dcb_getapp);
1812 * dcb_setapp - add CEE dcb application data to app list
1814 * Priority 0 is an invalid priority in CEE spec. This routine
1815 * removes applications from the app list if the priority is
1816 * set to zero. Priority is expected to be 8-bit 802.1p user priority bitmap
1818 int dcb_setapp(struct net_device *dev, struct dcb_app *new)
1820 struct dcb_app_type *itr;
1821 struct dcb_app_type event;
1824 event.ifindex = dev->ifindex;
1825 memcpy(&event.app, new, sizeof(event.app));
1826 if (dev->dcbnl_ops->getdcbx)
1827 event.dcbx = dev->dcbnl_ops->getdcbx(dev);
1829 spin_lock_bh(&dcb_lock);
1830 /* Search for existing match and replace */
1831 if ((itr = dcb_app_lookup(new, dev->ifindex, 0))) {
1833 itr->app.priority = new->priority;
1835 list_del(&itr->list);
1840 /* App type does not exist add new application type */
1842 err = dcb_app_add(new, dev->ifindex);
1844 spin_unlock_bh(&dcb_lock);
1846 call_dcbevent_notifiers(DCB_APP_EVENT, &event);
1849 EXPORT_SYMBOL(dcb_setapp);
1852 * dcb_ieee_getapp_mask - retrieve the IEEE DCB application priority
1854 * Helper routine which on success returns a non-zero 802.1Qaz user
1855 * priority bitmap otherwise returns 0 to indicate the dcb_app was
1856 * not found in APP list.
1858 u8 dcb_ieee_getapp_mask(struct net_device *dev, struct dcb_app *app)
1860 struct dcb_app_type *itr;
1863 spin_lock_bh(&dcb_lock);
1864 if ((itr = dcb_app_lookup(app, dev->ifindex, 0)))
1865 prio |= 1 << itr->app.priority;
1866 spin_unlock_bh(&dcb_lock);
1870 EXPORT_SYMBOL(dcb_ieee_getapp_mask);
1873 * dcb_ieee_setapp - add IEEE dcb application data to app list
1875 * This adds Application data to the list. Multiple application
1876 * entries may exists for the same selector and protocol as long
1877 * as the priorities are different. Priority is expected to be a
1878 * 3-bit unsigned integer
1880 int dcb_ieee_setapp(struct net_device *dev, struct dcb_app *new)
1882 struct dcb_app_type event;
1885 event.ifindex = dev->ifindex;
1886 memcpy(&event.app, new, sizeof(event.app));
1887 if (dev->dcbnl_ops->getdcbx)
1888 event.dcbx = dev->dcbnl_ops->getdcbx(dev);
1890 spin_lock_bh(&dcb_lock);
1891 /* Search for existing match and abort if found */
1892 if (dcb_app_lookup(new, dev->ifindex, new->priority)) {
1897 err = dcb_app_add(new, dev->ifindex);
1899 spin_unlock_bh(&dcb_lock);
1901 call_dcbevent_notifiers(DCB_APP_EVENT, &event);
1904 EXPORT_SYMBOL(dcb_ieee_setapp);
1907 * dcb_ieee_delapp - delete IEEE dcb application data from list
1909 * This removes a matching APP data from the APP list
1911 int dcb_ieee_delapp(struct net_device *dev, struct dcb_app *del)
1913 struct dcb_app_type *itr;
1914 struct dcb_app_type event;
1917 event.ifindex = dev->ifindex;
1918 memcpy(&event.app, del, sizeof(event.app));
1919 if (dev->dcbnl_ops->getdcbx)
1920 event.dcbx = dev->dcbnl_ops->getdcbx(dev);
1922 spin_lock_bh(&dcb_lock);
1923 /* Search for existing match and remove it. */
1924 if ((itr = dcb_app_lookup(del, dev->ifindex, del->priority))) {
1925 list_del(&itr->list);
1930 spin_unlock_bh(&dcb_lock);
1932 call_dcbevent_notifiers(DCB_APP_EVENT, &event);
1935 EXPORT_SYMBOL(dcb_ieee_delapp);
1937 static int __init dcbnl_init(void)
1939 INIT_LIST_HEAD(&dcb_app_list);
1941 rtnl_register(PF_UNSPEC, RTM_GETDCB, dcb_doit, NULL, 0);
1942 rtnl_register(PF_UNSPEC, RTM_SETDCB, dcb_doit, NULL, 0);
1946 device_initcall(dcbnl_init);