blob: bae7d78aa06895dd9237abc6f1bc2ae3db23f38b [file] [log] [blame]
Alexander Duyck2f90b862008-11-20 20:52:10 -08001/*
Mark Rustad698e1d22011-03-14 09:01:02 +00002 * Copyright (c) 2008-2011, Intel Corporation.
Alexander Duyck2f90b862008-11-20 20:52:10 -08003 *
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.
7 *
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
11 * more details.
12 *
13 * You should have received a copy of the GNU General Public License along with
Jeff Kirsherc057b192013-12-06 09:13:44 -080014 * this program; if not, see <http://www.gnu.org/licenses/>.
Alexander Duyck2f90b862008-11-20 20:52:10 -080015 *
Paul Gortmaker36b9ad802015-10-07 17:27:44 -040016 * Description: Data Center Bridging netlink interface
Alexander Duyck2f90b862008-11-20 20:52:10 -080017 * Author: Lucy Liu <lucy.liu@intel.com>
18 */
19
20#include <linux/netdevice.h>
21#include <linux/netlink.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090022#include <linux/slab.h>
Alexander Duyck2f90b862008-11-20 20:52:10 -080023#include <net/netlink.h>
24#include <net/rtnetlink.h>
25#include <linux/dcbnl.h>
John Fastabend96b99682010-12-30 09:26:37 +000026#include <net/dcbevent.h>
Alexander Duyck2f90b862008-11-20 20:52:10 -080027#include <linux/rtnetlink.h>
Paul Gortmaker36b9ad802015-10-07 17:27:44 -040028#include <linux/init.h>
Alexander Duyck2f90b862008-11-20 20:52:10 -080029#include <net/sock.h>
30
Ben Hutchingsae86b9e2012-07-10 10:55:35 +000031/* Data Center Bridging (DCB) is a collection of Ethernet enhancements
Alexander Duyck2f90b862008-11-20 20:52:10 -080032 * 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:
35 *
36 * Enhanced Transmission Selection (aka Priority Grouping [PG]) - provides a
37 * framework for assigning bandwidth guarantees to traffic classes.
38 *
39 * Priority-based Flow Control (PFC) - provides a flow control mechanism which
40 * can work independently for each 802.1p priority.
41 *
42 * Congestion Notification - provides a mechanism for end-to-end congestion
43 * control for protocols which do not have built-in congestion management.
44 *
45 * More information about the emerging standards for these Ethernet features
46 * can be found at: http://www.ieee802.org/1/pages/dcbridges.html
47 *
48 * This file implements an rtnetlink interface to allow configuration of DCB
49 * features for capable devices.
50 */
51
Alexander Duyck2f90b862008-11-20 20:52:10 -080052/**************** DCB attribute policies *************************************/
53
54/* DCB netlink attributes policy */
Alexey Dobriyanb54452b2010-02-18 08:14:31 +000055static const struct nla_policy dcbnl_rtnl_policy[DCB_ATTR_MAX + 1] = {
Alexander Duyck859ee3c2008-11-20 21:10:23 -080056 [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},
Alexander Duyck2f90b862008-11-20 20:52:10 -080061 [DCB_ATTR_PERM_HWADDR] = {.type = NLA_FLAG},
Alexander Duyck859ee3c2008-11-20 21:10:23 -080062 [DCB_ATTR_CAP] = {.type = NLA_NESTED},
63 [DCB_ATTR_PFC_STATE] = {.type = NLA_U8},
64 [DCB_ATTR_BCN] = {.type = NLA_NESTED},
Yi Zou6fa382a2009-08-31 12:33:20 +000065 [DCB_ATTR_APP] = {.type = NLA_NESTED},
John Fastabend3e290272010-12-30 09:25:46 +000066 [DCB_ATTR_IEEE] = {.type = NLA_NESTED},
Shmulik Ravid6241b622010-12-30 06:26:48 +000067 [DCB_ATTR_DCBX] = {.type = NLA_U8},
Shmulik Ravidea45fe42010-12-30 06:26:55 +000068 [DCB_ATTR_FEATCFG] = {.type = NLA_NESTED},
Alexander Duyck2f90b862008-11-20 20:52:10 -080069};
70
71/* DCB priority flow control to User Priority nested attributes */
Alexey Dobriyanb54452b2010-02-18 08:14:31 +000072static const struct nla_policy dcbnl_pfc_up_nest[DCB_PFC_UP_ATTR_MAX + 1] = {
Alexander Duyck2f90b862008-11-20 20:52:10 -080073 [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},
82};
83
84/* DCB priority grouping nested attributes */
Alexey Dobriyanb54452b2010-02-18 08:14:31 +000085static const struct nla_policy dcbnl_pg_nest[DCB_PG_ATTR_MAX + 1] = {
Alexander Duyck2f90b862008-11-20 20:52:10 -080086 [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},
104};
105
106/* DCB traffic class nested attributes. */
Alexey Dobriyanb54452b2010-02-18 08:14:31 +0000107static const struct nla_policy dcbnl_tc_param_nest[DCB_TC_ATTR_PARAM_MAX + 1] = {
Alexander Duyck2f90b862008-11-20 20:52:10 -0800108 [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},
113};
114
Alexander Duyck46132182008-11-20 21:05:08 -0800115/* DCB capabilities nested attributes. */
Alexey Dobriyanb54452b2010-02-18 08:14:31 +0000116static const struct nla_policy dcbnl_cap_nest[DCB_CAP_ATTR_MAX + 1] = {
Alexander Duyck46132182008-11-20 21:05:08 -0800117 [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},
Shmulik Ravid6241b622010-12-30 06:26:48 +0000125 [DCB_CAP_ATTR_DCBX] = {.type = NLA_U8},
Alexander Duyck46132182008-11-20 21:05:08 -0800126};
Alexander Duyck2f90b862008-11-20 20:52:10 -0800127
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800128/* DCB capabilities nested attributes. */
Alexey Dobriyanb54452b2010-02-18 08:14:31 +0000129static const struct nla_policy dcbnl_numtcs_nest[DCB_NUMTCS_ATTR_MAX + 1] = {
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800130 [DCB_NUMTCS_ATTR_ALL] = {.type = NLA_FLAG},
131 [DCB_NUMTCS_ATTR_PG] = {.type = NLA_U8},
132 [DCB_NUMTCS_ATTR_PFC] = {.type = NLA_U8},
133};
134
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800135/* DCB BCN nested attributes. */
Alexey Dobriyanb54452b2010-02-18 08:14:31 +0000136static const struct nla_policy dcbnl_bcn_nest[DCB_BCN_ATTR_MAX + 1] = {
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800137 [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},
Don Skidmoref4314e82008-12-21 20:10:29 -0800146 [DCB_BCN_ATTR_BCNA_0] = {.type = NLA_U32},
147 [DCB_BCN_ATTR_BCNA_1] = {.type = NLA_U32},
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800148 [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},
162};
163
Yi Zou6fa382a2009-08-31 12:33:20 +0000164/* DCB APP nested attributes. */
Alexey Dobriyanb54452b2010-02-18 08:14:31 +0000165static const struct nla_policy dcbnl_app_nest[DCB_APP_ATTR_MAX + 1] = {
Yi Zou6fa382a2009-08-31 12:33:20 +0000166 [DCB_APP_ATTR_IDTYPE] = {.type = NLA_U8},
167 [DCB_APP_ATTR_ID] = {.type = NLA_U16},
168 [DCB_APP_ATTR_PRIORITY] = {.type = NLA_U8},
169};
170
John Fastabend3e290272010-12-30 09:25:46 +0000171/* IEEE 802.1Qaz nested attributes. */
172static 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},
Amir Vadai08f10af2012-04-04 21:33:30 +0000176 [DCB_ATTR_IEEE_MAXRATE] = {.len = sizeof(struct ieee_maxrate)},
Shani Michaelic93682472015-03-05 20:16:11 +0200177 [DCB_ATTR_IEEE_QCN] = {.len = sizeof(struct ieee_qcn)},
178 [DCB_ATTR_IEEE_QCN_STATS] = {.len = sizeof(struct ieee_qcn_stats)},
John Fastabend3e290272010-12-30 09:25:46 +0000179};
180
Shmulik Ravidea45fe42010-12-30 06:26:55 +0000181/* DCB number of traffic classes nested attributes. */
182static 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},
187};
188
John Fastabend9ab933a2010-12-30 09:26:31 +0000189static LIST_HEAD(dcb_app_list);
190static DEFINE_SPINLOCK(dcb_lock);
191
Thomas Graf33a03aa2012-06-13 02:54:54 +0000192static struct sk_buff *dcbnl_newmsg(int type, u8 cmd, u32 port, u32 seq,
193 u32 flags, struct nlmsghdr **nlhp)
194{
195 struct sk_buff *skb;
196 struct dcbmsg *dcb;
197 struct nlmsghdr *nlh;
198
199 skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL);
200 if (!skb)
201 return NULL;
202
203 nlh = nlmsg_put(skb, port, seq, type, sizeof(*dcb), flags);
Thomas Grafb3908e22012-06-13 22:40:15 +0000204 BUG_ON(!nlh);
Thomas Graf33a03aa2012-06-13 02:54:54 +0000205
206 dcb = nlmsg_data(nlh);
207 dcb->dcb_family = AF_UNSPEC;
208 dcb->cmd = cmd;
209 dcb->dcb_pad = 0;
210
211 if (nlhp)
212 *nlhp = nlh;
213
214 return skb;
215}
216
Thomas Graf7be99412012-06-13 02:54:55 +0000217static int dcbnl_getstate(struct net_device *netdev, struct nlmsghdr *nlh,
218 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Alexander Duyck2f90b862008-11-20 20:52:10 -0800219{
Alexander Duyck2f90b862008-11-20 20:52:10 -0800220 /* if (!tb[DCB_ATTR_STATE] || !netdev->dcbnl_ops->getstate) */
221 if (!netdev->dcbnl_ops->getstate)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000222 return -EOPNOTSUPP;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800223
Thomas Graf7be99412012-06-13 02:54:55 +0000224 return nla_put_u8(skb, DCB_ATTR_STATE,
225 netdev->dcbnl_ops->getstate(netdev));
Alexander Duyck2f90b862008-11-20 20:52:10 -0800226}
227
Thomas Graf7be99412012-06-13 02:54:55 +0000228static int dcbnl_getpfccfg(struct net_device *netdev, struct nlmsghdr *nlh,
229 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Alexander Duyck2f90b862008-11-20 20:52:10 -0800230{
Alexander Duyck2f90b862008-11-20 20:52:10 -0800231 struct nlattr *data[DCB_PFC_UP_ATTR_MAX + 1], *nest;
232 u8 value;
Thomas Graf3d1f4862012-06-13 02:54:58 +0000233 int ret;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800234 int i;
235 int getall = 0;
236
Thomas Graf3d1f4862012-06-13 02:54:58 +0000237 if (!tb[DCB_ATTR_PFC_CFG])
238 return -EINVAL;
239
240 if (!netdev->dcbnl_ops->getpfccfg)
241 return -EOPNOTSUPP;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800242
243 ret = nla_parse_nested(data, DCB_PFC_UP_ATTR_MAX,
Johannes Bergfceb6432017-04-12 14:34:07 +0200244 tb[DCB_ATTR_PFC_CFG], dcbnl_pfc_up_nest, NULL);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800245 if (ret)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000246 return ret;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800247
Thomas Graf7be99412012-06-13 02:54:55 +0000248 nest = nla_nest_start(skb, DCB_ATTR_PFC_CFG);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800249 if (!nest)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000250 return -EMSGSIZE;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800251
252 if (data[DCB_PFC_UP_ATTR_ALL])
253 getall = 1;
254
255 for (i = DCB_PFC_UP_ATTR_0; i <= DCB_PFC_UP_ATTR_7; i++) {
256 if (!getall && !data[i])
257 continue;
258
259 netdev->dcbnl_ops->getpfccfg(netdev, i - DCB_PFC_UP_ATTR_0,
260 &value);
Thomas Graf7be99412012-06-13 02:54:55 +0000261 ret = nla_put_u8(skb, i, value);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800262 if (ret) {
Thomas Graf7be99412012-06-13 02:54:55 +0000263 nla_nest_cancel(skb, nest);
Thomas Graf3d1f4862012-06-13 02:54:58 +0000264 return ret;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800265 }
266 }
Thomas Graf7be99412012-06-13 02:54:55 +0000267 nla_nest_end(skb, nest);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800268
269 return 0;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800270}
271
Thomas Graf7be99412012-06-13 02:54:55 +0000272static int dcbnl_getperm_hwaddr(struct net_device *netdev, struct nlmsghdr *nlh,
273 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Alexander Duyck2f90b862008-11-20 20:52:10 -0800274{
Alexander Duyck2f90b862008-11-20 20:52:10 -0800275 u8 perm_addr[MAX_ADDR_LEN];
Alexander Duyck2f90b862008-11-20 20:52:10 -0800276
277 if (!netdev->dcbnl_ops->getpermhwaddr)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000278 return -EOPNOTSUPP;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800279
Mathias Krause29cd8ae2013-03-09 05:52:21 +0000280 memset(perm_addr, 0, sizeof(perm_addr));
Alexander Duyck2f90b862008-11-20 20:52:10 -0800281 netdev->dcbnl_ops->getpermhwaddr(netdev, perm_addr);
282
Thomas Graf7be99412012-06-13 02:54:55 +0000283 return nla_put(skb, DCB_ATTR_PERM_HWADDR, sizeof(perm_addr), perm_addr);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800284}
285
Thomas Graf7be99412012-06-13 02:54:55 +0000286static int dcbnl_getcap(struct net_device *netdev, struct nlmsghdr *nlh,
287 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Alexander Duyck46132182008-11-20 21:05:08 -0800288{
Alexander Duyck46132182008-11-20 21:05:08 -0800289 struct nlattr *data[DCB_CAP_ATTR_MAX + 1], *nest;
290 u8 value;
Thomas Graf3d1f4862012-06-13 02:54:58 +0000291 int ret;
Alexander Duyck46132182008-11-20 21:05:08 -0800292 int i;
293 int getall = 0;
294
Thomas Graf3d1f4862012-06-13 02:54:58 +0000295 if (!tb[DCB_ATTR_CAP])
296 return -EINVAL;
297
298 if (!netdev->dcbnl_ops->getcap)
299 return -EOPNOTSUPP;
Alexander Duyck46132182008-11-20 21:05:08 -0800300
301 ret = nla_parse_nested(data, DCB_CAP_ATTR_MAX, tb[DCB_ATTR_CAP],
Johannes Bergfceb6432017-04-12 14:34:07 +0200302 dcbnl_cap_nest, NULL);
Alexander Duyck46132182008-11-20 21:05:08 -0800303 if (ret)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000304 return ret;
Alexander Duyck46132182008-11-20 21:05:08 -0800305
Thomas Graf7be99412012-06-13 02:54:55 +0000306 nest = nla_nest_start(skb, DCB_ATTR_CAP);
Alexander Duyck46132182008-11-20 21:05:08 -0800307 if (!nest)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000308 return -EMSGSIZE;
Alexander Duyck46132182008-11-20 21:05:08 -0800309
310 if (data[DCB_CAP_ATTR_ALL])
311 getall = 1;
312
313 for (i = DCB_CAP_ATTR_ALL+1; i <= DCB_CAP_ATTR_MAX; i++) {
314 if (!getall && !data[i])
315 continue;
316
317 if (!netdev->dcbnl_ops->getcap(netdev, i, &value)) {
Thomas Graf7be99412012-06-13 02:54:55 +0000318 ret = nla_put_u8(skb, i, value);
Alexander Duyck46132182008-11-20 21:05:08 -0800319 if (ret) {
Thomas Graf7be99412012-06-13 02:54:55 +0000320 nla_nest_cancel(skb, nest);
Thomas Graf3d1f4862012-06-13 02:54:58 +0000321 return ret;
Alexander Duyck46132182008-11-20 21:05:08 -0800322 }
323 }
324 }
Thomas Graf7be99412012-06-13 02:54:55 +0000325 nla_nest_end(skb, nest);
Alexander Duyck46132182008-11-20 21:05:08 -0800326
327 return 0;
Alexander Duyck46132182008-11-20 21:05:08 -0800328}
329
Thomas Graf7be99412012-06-13 02:54:55 +0000330static int dcbnl_getnumtcs(struct net_device *netdev, struct nlmsghdr *nlh,
331 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800332{
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800333 struct nlattr *data[DCB_NUMTCS_ATTR_MAX + 1], *nest;
334 u8 value;
Thomas Graf3d1f4862012-06-13 02:54:58 +0000335 int ret;
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800336 int i;
337 int getall = 0;
338
Thomas Graf3d1f4862012-06-13 02:54:58 +0000339 if (!tb[DCB_ATTR_NUMTCS])
340 return -EINVAL;
341
342 if (!netdev->dcbnl_ops->getnumtcs)
343 return -EOPNOTSUPP;
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800344
345 ret = nla_parse_nested(data, DCB_NUMTCS_ATTR_MAX, tb[DCB_ATTR_NUMTCS],
Johannes Bergfceb6432017-04-12 14:34:07 +0200346 dcbnl_numtcs_nest, NULL);
Thomas Graf3d1f4862012-06-13 02:54:58 +0000347 if (ret)
348 return ret;
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800349
Thomas Graf7be99412012-06-13 02:54:55 +0000350 nest = nla_nest_start(skb, DCB_ATTR_NUMTCS);
Thomas Graf3d1f4862012-06-13 02:54:58 +0000351 if (!nest)
352 return -EMSGSIZE;
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800353
354 if (data[DCB_NUMTCS_ATTR_ALL])
355 getall = 1;
356
357 for (i = DCB_NUMTCS_ATTR_ALL+1; i <= DCB_NUMTCS_ATTR_MAX; i++) {
358 if (!getall && !data[i])
359 continue;
360
361 ret = netdev->dcbnl_ops->getnumtcs(netdev, i, &value);
362 if (!ret) {
Thomas Graf7be99412012-06-13 02:54:55 +0000363 ret = nla_put_u8(skb, i, value);
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800364 if (ret) {
Thomas Graf7be99412012-06-13 02:54:55 +0000365 nla_nest_cancel(skb, nest);
Thomas Graf3d1f4862012-06-13 02:54:58 +0000366 return ret;
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800367 }
Thomas Graf3d1f4862012-06-13 02:54:58 +0000368 } else
369 return -EINVAL;
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800370 }
Thomas Graf7be99412012-06-13 02:54:55 +0000371 nla_nest_end(skb, nest);
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800372
373 return 0;
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800374}
375
Thomas Graf7be99412012-06-13 02:54:55 +0000376static int dcbnl_setnumtcs(struct net_device *netdev, struct nlmsghdr *nlh,
377 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800378{
379 struct nlattr *data[DCB_NUMTCS_ATTR_MAX + 1];
Thomas Graf3d1f4862012-06-13 02:54:58 +0000380 int ret;
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800381 u8 value;
382 int i;
383
Thomas Graf3d1f4862012-06-13 02:54:58 +0000384 if (!tb[DCB_ATTR_NUMTCS])
385 return -EINVAL;
386
387 if (!netdev->dcbnl_ops->setnumtcs)
388 return -EOPNOTSUPP;
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800389
390 ret = nla_parse_nested(data, DCB_NUMTCS_ATTR_MAX, tb[DCB_ATTR_NUMTCS],
Johannes Bergfceb6432017-04-12 14:34:07 +0200391 dcbnl_numtcs_nest, NULL);
Thomas Graf7be99412012-06-13 02:54:55 +0000392 if (ret)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000393 return ret;
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800394
395 for (i = DCB_NUMTCS_ATTR_ALL+1; i <= DCB_NUMTCS_ATTR_MAX; i++) {
396 if (data[i] == NULL)
397 continue;
398
399 value = nla_get_u8(data[i]);
400
401 ret = netdev->dcbnl_ops->setnumtcs(netdev, i, value);
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800402 if (ret)
Thomas Graf7be99412012-06-13 02:54:55 +0000403 break;
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800404 }
405
Thomas Graf7be99412012-06-13 02:54:55 +0000406 return nla_put_u8(skb, DCB_ATTR_NUMTCS, !!ret);
Alexander Duyck33dbabc2008-11-20 21:08:19 -0800407}
408
Thomas Graf7be99412012-06-13 02:54:55 +0000409static int dcbnl_getpfcstate(struct net_device *netdev, struct nlmsghdr *nlh,
410 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Alexander Duyck0eb3aa92008-11-20 21:09:23 -0800411{
Alexander Duyck0eb3aa92008-11-20 21:09:23 -0800412 if (!netdev->dcbnl_ops->getpfcstate)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000413 return -EOPNOTSUPP;
Alexander Duyck0eb3aa92008-11-20 21:09:23 -0800414
Thomas Graf7be99412012-06-13 02:54:55 +0000415 return nla_put_u8(skb, DCB_ATTR_PFC_STATE,
416 netdev->dcbnl_ops->getpfcstate(netdev));
Alexander Duyck0eb3aa92008-11-20 21:09:23 -0800417}
418
Thomas Graf7be99412012-06-13 02:54:55 +0000419static int dcbnl_setpfcstate(struct net_device *netdev, struct nlmsghdr *nlh,
420 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Alexander Duyck0eb3aa92008-11-20 21:09:23 -0800421{
Alexander Duyck0eb3aa92008-11-20 21:09:23 -0800422 u8 value;
423
Thomas Graf3d1f4862012-06-13 02:54:58 +0000424 if (!tb[DCB_ATTR_PFC_STATE])
Thomas Graf7be99412012-06-13 02:54:55 +0000425 return -EINVAL;
Alexander Duyck0eb3aa92008-11-20 21:09:23 -0800426
Thomas Graf3d1f4862012-06-13 02:54:58 +0000427 if (!netdev->dcbnl_ops->setpfcstate)
428 return -EOPNOTSUPP;
429
Alexander Duyck0eb3aa92008-11-20 21:09:23 -0800430 value = nla_get_u8(tb[DCB_ATTR_PFC_STATE]);
431
432 netdev->dcbnl_ops->setpfcstate(netdev, value);
433
Thomas Graf7be99412012-06-13 02:54:55 +0000434 return nla_put_u8(skb, DCB_ATTR_PFC_STATE, 0);
Alexander Duyck0eb3aa92008-11-20 21:09:23 -0800435}
436
Thomas Graf7be99412012-06-13 02:54:55 +0000437static int dcbnl_getapp(struct net_device *netdev, struct nlmsghdr *nlh,
438 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Yi Zou57949682009-08-31 12:33:40 +0000439{
Yi Zou57949682009-08-31 12:33:40 +0000440 struct nlattr *app_nest;
441 struct nlattr *app_tb[DCB_APP_ATTR_MAX + 1];
442 u16 id;
443 u8 up, idtype;
Thomas Graf3d1f4862012-06-13 02:54:58 +0000444 int ret;
Yi Zou57949682009-08-31 12:33:40 +0000445
John Fastabend3dce38a2011-01-21 16:35:18 +0000446 if (!tb[DCB_ATTR_APP])
Thomas Graf3d1f4862012-06-13 02:54:58 +0000447 return -EINVAL;
Yi Zou57949682009-08-31 12:33:40 +0000448
449 ret = nla_parse_nested(app_tb, DCB_APP_ATTR_MAX, tb[DCB_ATTR_APP],
Johannes Bergfceb6432017-04-12 14:34:07 +0200450 dcbnl_app_nest, NULL);
Yi Zou57949682009-08-31 12:33:40 +0000451 if (ret)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000452 return ret;
Yi Zou57949682009-08-31 12:33:40 +0000453
Yi Zou57949682009-08-31 12:33:40 +0000454 /* all must be non-null */
455 if ((!app_tb[DCB_APP_ATTR_IDTYPE]) ||
456 (!app_tb[DCB_APP_ATTR_ID]))
Thomas Graf3d1f4862012-06-13 02:54:58 +0000457 return -EINVAL;
Yi Zou57949682009-08-31 12:33:40 +0000458
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))
Thomas Graf3d1f4862012-06-13 02:54:58 +0000463 return -EINVAL;
Yi Zou57949682009-08-31 12:33:40 +0000464
465 id = nla_get_u16(app_tb[DCB_APP_ATTR_ID]);
John Fastabend3dce38a2011-01-21 16:35:18 +0000466
467 if (netdev->dcbnl_ops->getapp) {
Anish Bhattc2659472014-07-16 22:32:39 -0700468 ret = netdev->dcbnl_ops->getapp(netdev, idtype, id);
469 if (ret < 0)
470 return ret;
471 else
472 up = ret;
John Fastabend3dce38a2011-01-21 16:35:18 +0000473 } else {
474 struct dcb_app app = {
475 .selector = idtype,
476 .protocol = id,
477 };
478 up = dcb_getapp(netdev, &app);
479 }
Yi Zou57949682009-08-31 12:33:40 +0000480
Thomas Graf7be99412012-06-13 02:54:55 +0000481 app_nest = nla_nest_start(skb, DCB_ATTR_APP);
482 if (!app_nest)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000483 return -EMSGSIZE;
Yi Zou57949682009-08-31 12:33:40 +0000484
Thomas Graf7be99412012-06-13 02:54:55 +0000485 ret = nla_put_u8(skb, DCB_APP_ATTR_IDTYPE, idtype);
Yi Zou57949682009-08-31 12:33:40 +0000486 if (ret)
487 goto out_cancel;
488
Thomas Graf7be99412012-06-13 02:54:55 +0000489 ret = nla_put_u16(skb, DCB_APP_ATTR_ID, id);
Yi Zou57949682009-08-31 12:33:40 +0000490 if (ret)
491 goto out_cancel;
492
Thomas Graf7be99412012-06-13 02:54:55 +0000493 ret = nla_put_u8(skb, DCB_APP_ATTR_PRIORITY, up);
Yi Zou57949682009-08-31 12:33:40 +0000494 if (ret)
495 goto out_cancel;
496
Thomas Graf7be99412012-06-13 02:54:55 +0000497 nla_nest_end(skb, app_nest);
Yi Zou57949682009-08-31 12:33:40 +0000498
Thomas Graf3d1f4862012-06-13 02:54:58 +0000499 return 0;
Yi Zou57949682009-08-31 12:33:40 +0000500
501out_cancel:
Thomas Graf7be99412012-06-13 02:54:55 +0000502 nla_nest_cancel(skb, app_nest);
Yi Zou57949682009-08-31 12:33:40 +0000503 return ret;
504}
505
Thomas Graf7be99412012-06-13 02:54:55 +0000506static int dcbnl_setapp(struct net_device *netdev, struct nlmsghdr *nlh,
507 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Yi Zou57949682009-08-31 12:33:40 +0000508{
Thomas Graf3d1f4862012-06-13 02:54:58 +0000509 int ret;
Yi Zou57949682009-08-31 12:33:40 +0000510 u16 id;
511 u8 up, idtype;
512 struct nlattr *app_tb[DCB_APP_ATTR_MAX + 1];
513
John Fastabend9ab933a2010-12-30 09:26:31 +0000514 if (!tb[DCB_ATTR_APP])
Thomas Graf3d1f4862012-06-13 02:54:58 +0000515 return -EINVAL;
Yi Zou57949682009-08-31 12:33:40 +0000516
517 ret = nla_parse_nested(app_tb, DCB_APP_ATTR_MAX, tb[DCB_ATTR_APP],
Johannes Bergfceb6432017-04-12 14:34:07 +0200518 dcbnl_app_nest, NULL);
Yi Zou57949682009-08-31 12:33:40 +0000519 if (ret)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000520 return ret;
Yi Zou57949682009-08-31 12:33:40 +0000521
Yi Zou57949682009-08-31 12:33:40 +0000522 /* 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]))
Thomas Graf3d1f4862012-06-13 02:54:58 +0000526 return -EINVAL;
Yi Zou57949682009-08-31 12:33:40 +0000527
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))
Thomas Graf3d1f4862012-06-13 02:54:58 +0000532 return -EINVAL;
Yi Zou57949682009-08-31 12:33:40 +0000533
534 id = nla_get_u16(app_tb[DCB_APP_ATTR_ID]);
535 up = nla_get_u8(app_tb[DCB_APP_ATTR_PRIORITY]);
536
John Fastabend9ab933a2010-12-30 09:26:31 +0000537 if (netdev->dcbnl_ops->setapp) {
Thomas Graf3d1f4862012-06-13 02:54:58 +0000538 ret = netdev->dcbnl_ops->setapp(netdev, idtype, id, up);
Anish Bhattc2659472014-07-16 22:32:39 -0700539 if (ret < 0)
540 return ret;
John Fastabend9ab933a2010-12-30 09:26:31 +0000541 } else {
542 struct dcb_app app;
543 app.selector = idtype;
544 app.protocol = id;
545 app.priority = up;
Thomas Graf3d1f4862012-06-13 02:54:58 +0000546 ret = dcb_setapp(netdev, &app);
John Fastabend9ab933a2010-12-30 09:26:31 +0000547 }
548
Thomas Graf7be99412012-06-13 02:54:55 +0000549 ret = nla_put_u8(skb, DCB_ATTR_APP, ret);
John Fastabend08157982012-04-20 09:49:23 +0000550 dcbnl_cee_notify(netdev, RTM_SETDCB, DCB_CMD_SAPP, seq, 0);
Thomas Graf3d1f4862012-06-13 02:54:58 +0000551
Yi Zou57949682009-08-31 12:33:40 +0000552 return ret;
553}
554
Thomas Graf7be99412012-06-13 02:54:55 +0000555static int __dcbnl_pg_getcfg(struct net_device *netdev, struct nlmsghdr *nlh,
556 struct nlattr **tb, struct sk_buff *skb, int dir)
Alexander Duyck2f90b862008-11-20 20:52:10 -0800557{
Alexander Duyck2f90b862008-11-20 20:52:10 -0800558 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;
Thomas Graf3d1f4862012-06-13 02:54:58 +0000562 int ret;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800563 int getall = 0;
564 int i;
565
Thomas Graf3d1f4862012-06-13 02:54:58 +0000566 if (!tb[DCB_ATTR_PG_CFG])
567 return -EINVAL;
568
569 if (!netdev->dcbnl_ops->getpgtccfgtx ||
Alexander Duyck2f90b862008-11-20 20:52:10 -0800570 !netdev->dcbnl_ops->getpgtccfgrx ||
571 !netdev->dcbnl_ops->getpgbwgcfgtx ||
572 !netdev->dcbnl_ops->getpgbwgcfgrx)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000573 return -EOPNOTSUPP;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800574
Johannes Bergfceb6432017-04-12 14:34:07 +0200575 ret = nla_parse_nested(pg_tb, DCB_PG_ATTR_MAX, tb[DCB_ATTR_PG_CFG],
576 dcbnl_pg_nest, NULL);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800577 if (ret)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000578 return ret;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800579
Thomas Graf7be99412012-06-13 02:54:55 +0000580 pg_nest = nla_nest_start(skb, DCB_ATTR_PG_CFG);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800581 if (!pg_nest)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000582 return -EMSGSIZE;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800583
584 if (pg_tb[DCB_PG_ATTR_TC_ALL])
585 getall = 1;
586
587 for (i = DCB_PG_ATTR_TC_0; i <= DCB_PG_ATTR_TC_7; i++) {
588 if (!getall && !pg_tb[i])
589 continue;
590
591 if (pg_tb[DCB_PG_ATTR_TC_ALL])
592 data = pg_tb[DCB_PG_ATTR_TC_ALL];
593 else
594 data = pg_tb[i];
Johannes Bergfceb6432017-04-12 14:34:07 +0200595 ret = nla_parse_nested(param_tb, DCB_TC_ATTR_PARAM_MAX, data,
596 dcbnl_tc_param_nest, NULL);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800597 if (ret)
598 goto err_pg;
599
Thomas Graf7be99412012-06-13 02:54:55 +0000600 param_nest = nla_nest_start(skb, i);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800601 if (!param_nest)
602 goto err_pg;
603
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;
608
609 if (dir) {
610 /* Rx */
611 netdev->dcbnl_ops->getpgtccfgrx(netdev,
612 i - DCB_PG_ATTR_TC_0, &prio,
613 &pgid, &tc_pct, &up_map);
614 } else {
615 /* Tx */
616 netdev->dcbnl_ops->getpgtccfgtx(netdev,
617 i - DCB_PG_ATTR_TC_0, &prio,
618 &pgid, &tc_pct, &up_map);
619 }
620
621 if (param_tb[DCB_TC_ATTR_PARAM_PGID] ||
622 param_tb[DCB_TC_ATTR_PARAM_ALL]) {
Thomas Graf7be99412012-06-13 02:54:55 +0000623 ret = nla_put_u8(skb,
Alexander Duyck2f90b862008-11-20 20:52:10 -0800624 DCB_TC_ATTR_PARAM_PGID, pgid);
625 if (ret)
626 goto err_param;
627 }
628 if (param_tb[DCB_TC_ATTR_PARAM_UP_MAPPING] ||
629 param_tb[DCB_TC_ATTR_PARAM_ALL]) {
Thomas Graf7be99412012-06-13 02:54:55 +0000630 ret = nla_put_u8(skb,
Alexander Duyck2f90b862008-11-20 20:52:10 -0800631 DCB_TC_ATTR_PARAM_UP_MAPPING, up_map);
632 if (ret)
633 goto err_param;
634 }
635 if (param_tb[DCB_TC_ATTR_PARAM_STRICT_PRIO] ||
636 param_tb[DCB_TC_ATTR_PARAM_ALL]) {
Thomas Graf7be99412012-06-13 02:54:55 +0000637 ret = nla_put_u8(skb,
Alexander Duyck2f90b862008-11-20 20:52:10 -0800638 DCB_TC_ATTR_PARAM_STRICT_PRIO, prio);
639 if (ret)
640 goto err_param;
641 }
642 if (param_tb[DCB_TC_ATTR_PARAM_BW_PCT] ||
643 param_tb[DCB_TC_ATTR_PARAM_ALL]) {
Thomas Graf7be99412012-06-13 02:54:55 +0000644 ret = nla_put_u8(skb, DCB_TC_ATTR_PARAM_BW_PCT,
Alexander Duyck2f90b862008-11-20 20:52:10 -0800645 tc_pct);
646 if (ret)
647 goto err_param;
648 }
Thomas Graf7be99412012-06-13 02:54:55 +0000649 nla_nest_end(skb, param_nest);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800650 }
651
652 if (pg_tb[DCB_PG_ATTR_BW_ID_ALL])
653 getall = 1;
654 else
655 getall = 0;
656
657 for (i = DCB_PG_ATTR_BW_ID_0; i <= DCB_PG_ATTR_BW_ID_7; i++) {
658 if (!getall && !pg_tb[i])
659 continue;
660
661 tc_pct = DCB_ATTR_VALUE_UNDEFINED;
662
663 if (dir) {
664 /* Rx */
665 netdev->dcbnl_ops->getpgbwgcfgrx(netdev,
666 i - DCB_PG_ATTR_BW_ID_0, &tc_pct);
667 } else {
668 /* Tx */
669 netdev->dcbnl_ops->getpgbwgcfgtx(netdev,
670 i - DCB_PG_ATTR_BW_ID_0, &tc_pct);
671 }
Thomas Graf7be99412012-06-13 02:54:55 +0000672 ret = nla_put_u8(skb, i, tc_pct);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800673 if (ret)
674 goto err_pg;
675 }
676
Thomas Graf7be99412012-06-13 02:54:55 +0000677 nla_nest_end(skb, pg_nest);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800678
679 return 0;
680
681err_param:
Thomas Graf7be99412012-06-13 02:54:55 +0000682 nla_nest_cancel(skb, param_nest);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800683err_pg:
Thomas Graf7be99412012-06-13 02:54:55 +0000684 nla_nest_cancel(skb, pg_nest);
Thomas Graf3d1f4862012-06-13 02:54:58 +0000685
686 return -EMSGSIZE;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800687}
688
Thomas Graf7be99412012-06-13 02:54:55 +0000689static int dcbnl_pgtx_getcfg(struct net_device *netdev, struct nlmsghdr *nlh,
690 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Alexander Duyck2f90b862008-11-20 20:52:10 -0800691{
Thomas Graf7be99412012-06-13 02:54:55 +0000692 return __dcbnl_pg_getcfg(netdev, nlh, tb, skb, 0);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800693}
694
Thomas Graf7be99412012-06-13 02:54:55 +0000695static int dcbnl_pgrx_getcfg(struct net_device *netdev, struct nlmsghdr *nlh,
696 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Alexander Duyck2f90b862008-11-20 20:52:10 -0800697{
Thomas Graf7be99412012-06-13 02:54:55 +0000698 return __dcbnl_pg_getcfg(netdev, nlh, tb, skb, 1);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800699}
700
Thomas Graf7be99412012-06-13 02:54:55 +0000701static int dcbnl_setstate(struct net_device *netdev, struct nlmsghdr *nlh,
702 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Alexander Duyck2f90b862008-11-20 20:52:10 -0800703{
Alexander Duyck2f90b862008-11-20 20:52:10 -0800704 u8 value;
705
Thomas Graf3d1f4862012-06-13 02:54:58 +0000706 if (!tb[DCB_ATTR_STATE])
Thomas Graf7be99412012-06-13 02:54:55 +0000707 return -EINVAL;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800708
Thomas Graf3d1f4862012-06-13 02:54:58 +0000709 if (!netdev->dcbnl_ops->setstate)
710 return -EOPNOTSUPP;
711
Alexander Duyck2f90b862008-11-20 20:52:10 -0800712 value = nla_get_u8(tb[DCB_ATTR_STATE]);
713
Thomas Graf7be99412012-06-13 02:54:55 +0000714 return nla_put_u8(skb, DCB_ATTR_STATE,
715 netdev->dcbnl_ops->setstate(netdev, value));
Alexander Duyck2f90b862008-11-20 20:52:10 -0800716}
717
Thomas Graf7be99412012-06-13 02:54:55 +0000718static int dcbnl_setpfccfg(struct net_device *netdev, struct nlmsghdr *nlh,
719 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Alexander Duyck2f90b862008-11-20 20:52:10 -0800720{
721 struct nlattr *data[DCB_PFC_UP_ATTR_MAX + 1];
722 int i;
Thomas Graf3d1f4862012-06-13 02:54:58 +0000723 int ret;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800724 u8 value;
725
Thomas Graf3d1f4862012-06-13 02:54:58 +0000726 if (!tb[DCB_ATTR_PFC_CFG])
727 return -EINVAL;
728
729 if (!netdev->dcbnl_ops->setpfccfg)
730 return -EOPNOTSUPP;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800731
732 ret = nla_parse_nested(data, DCB_PFC_UP_ATTR_MAX,
Johannes Bergfceb6432017-04-12 14:34:07 +0200733 tb[DCB_ATTR_PFC_CFG], dcbnl_pfc_up_nest, NULL);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800734 if (ret)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000735 return ret;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800736
737 for (i = DCB_PFC_UP_ATTR_0; i <= DCB_PFC_UP_ATTR_7; i++) {
738 if (data[i] == NULL)
739 continue;
740 value = nla_get_u8(data[i]);
741 netdev->dcbnl_ops->setpfccfg(netdev,
742 data[i]->nla_type - DCB_PFC_UP_ATTR_0, value);
743 }
744
Thomas Graf7be99412012-06-13 02:54:55 +0000745 return nla_put_u8(skb, DCB_ATTR_PFC_CFG, 0);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800746}
747
Thomas Graf7be99412012-06-13 02:54:55 +0000748static int dcbnl_setall(struct net_device *netdev, struct nlmsghdr *nlh,
749 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Alexander Duyck2f90b862008-11-20 20:52:10 -0800750{
Thomas Graf3d1f4862012-06-13 02:54:58 +0000751 int ret;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800752
Thomas Graf3d1f4862012-06-13 02:54:58 +0000753 if (!tb[DCB_ATTR_SET_ALL])
754 return -EINVAL;
755
756 if (!netdev->dcbnl_ops->setall)
757 return -EOPNOTSUPP;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800758
Thomas Graf7be99412012-06-13 02:54:55 +0000759 ret = nla_put_u8(skb, DCB_ATTR_SET_ALL,
760 netdev->dcbnl_ops->setall(netdev));
John Fastabend08157982012-04-20 09:49:23 +0000761 dcbnl_cee_notify(netdev, RTM_SETDCB, DCB_CMD_SET_ALL, seq, 0);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800762
763 return ret;
764}
765
Thomas Graf7be99412012-06-13 02:54:55 +0000766static int __dcbnl_pg_setcfg(struct net_device *netdev, struct nlmsghdr *nlh,
767 u32 seq, struct nlattr **tb, struct sk_buff *skb,
768 int dir)
Alexander Duyck2f90b862008-11-20 20:52:10 -0800769{
770 struct nlattr *pg_tb[DCB_PG_ATTR_MAX + 1];
771 struct nlattr *param_tb[DCB_TC_ATTR_PARAM_MAX + 1];
Thomas Graf3d1f4862012-06-13 02:54:58 +0000772 int ret;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800773 int i;
774 u8 pgid;
775 u8 up_map;
776 u8 prio;
777 u8 tc_pct;
778
Thomas Graf3d1f4862012-06-13 02:54:58 +0000779 if (!tb[DCB_ATTR_PG_CFG])
780 return -EINVAL;
781
782 if (!netdev->dcbnl_ops->setpgtccfgtx ||
Alexander Duyck2f90b862008-11-20 20:52:10 -0800783 !netdev->dcbnl_ops->setpgtccfgrx ||
784 !netdev->dcbnl_ops->setpgbwgcfgtx ||
785 !netdev->dcbnl_ops->setpgbwgcfgrx)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000786 return -EOPNOTSUPP;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800787
Johannes Bergfceb6432017-04-12 14:34:07 +0200788 ret = nla_parse_nested(pg_tb, DCB_PG_ATTR_MAX, tb[DCB_ATTR_PG_CFG],
789 dcbnl_pg_nest, NULL);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800790 if (ret)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000791 return ret;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800792
793 for (i = DCB_PG_ATTR_TC_0; i <= DCB_PG_ATTR_TC_7; i++) {
794 if (!pg_tb[i])
795 continue;
796
797 ret = nla_parse_nested(param_tb, DCB_TC_ATTR_PARAM_MAX,
Johannes Bergfceb6432017-04-12 14:34:07 +0200798 pg_tb[i], dcbnl_tc_param_nest, NULL);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800799 if (ret)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000800 return ret;
Alexander Duyck2f90b862008-11-20 20:52:10 -0800801
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;
806
807 if (param_tb[DCB_TC_ATTR_PARAM_STRICT_PRIO])
808 prio =
809 nla_get_u8(param_tb[DCB_TC_ATTR_PARAM_STRICT_PRIO]);
810
811 if (param_tb[DCB_TC_ATTR_PARAM_PGID])
812 pgid = nla_get_u8(param_tb[DCB_TC_ATTR_PARAM_PGID]);
813
814 if (param_tb[DCB_TC_ATTR_PARAM_BW_PCT])
815 tc_pct = nla_get_u8(param_tb[DCB_TC_ATTR_PARAM_BW_PCT]);
816
817 if (param_tb[DCB_TC_ATTR_PARAM_UP_MAPPING])
818 up_map =
819 nla_get_u8(param_tb[DCB_TC_ATTR_PARAM_UP_MAPPING]);
820
821 /* dir: Tx = 0, Rx = 1 */
822 if (dir) {
823 /* Rx */
824 netdev->dcbnl_ops->setpgtccfgrx(netdev,
825 i - DCB_PG_ATTR_TC_0,
826 prio, pgid, tc_pct, up_map);
827 } else {
828 /* Tx */
829 netdev->dcbnl_ops->setpgtccfgtx(netdev,
830 i - DCB_PG_ATTR_TC_0,
831 prio, pgid, tc_pct, up_map);
832 }
833 }
834
835 for (i = DCB_PG_ATTR_BW_ID_0; i <= DCB_PG_ATTR_BW_ID_7; i++) {
836 if (!pg_tb[i])
837 continue;
838
839 tc_pct = nla_get_u8(pg_tb[i]);
840
841 /* dir: Tx = 0, Rx = 1 */
842 if (dir) {
843 /* Rx */
844 netdev->dcbnl_ops->setpgbwgcfgrx(netdev,
845 i - DCB_PG_ATTR_BW_ID_0, tc_pct);
846 } else {
847 /* Tx */
848 netdev->dcbnl_ops->setpgbwgcfgtx(netdev,
849 i - DCB_PG_ATTR_BW_ID_0, tc_pct);
850 }
851 }
852
John Fastabendbb1dfef2012-06-20 19:56:21 +0000853 return nla_put_u8(skb, DCB_ATTR_PG_CFG, 0);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800854}
855
Thomas Graf7be99412012-06-13 02:54:55 +0000856static int dcbnl_pgtx_setcfg(struct net_device *netdev, struct nlmsghdr *nlh,
857 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Alexander Duyck2f90b862008-11-20 20:52:10 -0800858{
Thomas Graf7be99412012-06-13 02:54:55 +0000859 return __dcbnl_pg_setcfg(netdev, nlh, seq, tb, skb, 0);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800860}
861
Thomas Graf7be99412012-06-13 02:54:55 +0000862static int dcbnl_pgrx_setcfg(struct net_device *netdev, struct nlmsghdr *nlh,
863 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Alexander Duyck2f90b862008-11-20 20:52:10 -0800864{
Thomas Graf7be99412012-06-13 02:54:55 +0000865 return __dcbnl_pg_setcfg(netdev, nlh, seq, tb, skb, 1);
Alexander Duyck2f90b862008-11-20 20:52:10 -0800866}
867
Thomas Graf7be99412012-06-13 02:54:55 +0000868static int dcbnl_bcn_getcfg(struct net_device *netdev, struct nlmsghdr *nlh,
869 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800870{
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800871 struct nlattr *bcn_nest;
872 struct nlattr *bcn_tb[DCB_BCN_ATTR_MAX + 1];
873 u8 value_byte;
874 u32 value_integer;
Thomas Graf3d1f4862012-06-13 02:54:58 +0000875 int ret;
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800876 bool getall = false;
877 int i;
878
Thomas Graf3d1f4862012-06-13 02:54:58 +0000879 if (!tb[DCB_ATTR_BCN])
880 return -EINVAL;
881
882 if (!netdev->dcbnl_ops->getbcnrp ||
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800883 !netdev->dcbnl_ops->getbcncfg)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000884 return -EOPNOTSUPP;
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800885
Johannes Bergfceb6432017-04-12 14:34:07 +0200886 ret = nla_parse_nested(bcn_tb, DCB_BCN_ATTR_MAX, tb[DCB_ATTR_BCN],
887 dcbnl_bcn_nest, NULL);
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800888 if (ret)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000889 return ret;
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800890
Thomas Graf7be99412012-06-13 02:54:55 +0000891 bcn_nest = nla_nest_start(skb, DCB_ATTR_BCN);
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800892 if (!bcn_nest)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000893 return -EMSGSIZE;
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800894
895 if (bcn_tb[DCB_BCN_ATTR_ALL])
896 getall = true;
897
898 for (i = DCB_BCN_ATTR_RP_0; i <= DCB_BCN_ATTR_RP_7; i++) {
899 if (!getall && !bcn_tb[i])
900 continue;
901
902 netdev->dcbnl_ops->getbcnrp(netdev, i - DCB_BCN_ATTR_RP_0,
903 &value_byte);
Thomas Graf7be99412012-06-13 02:54:55 +0000904 ret = nla_put_u8(skb, i, value_byte);
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800905 if (ret)
906 goto err_bcn;
907 }
908
Don Skidmoref4314e82008-12-21 20:10:29 -0800909 for (i = DCB_BCN_ATTR_BCNA_0; i <= DCB_BCN_ATTR_RI; i++) {
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800910 if (!getall && !bcn_tb[i])
911 continue;
912
913 netdev->dcbnl_ops->getbcncfg(netdev, i,
914 &value_integer);
Thomas Graf7be99412012-06-13 02:54:55 +0000915 ret = nla_put_u32(skb, i, value_integer);
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800916 if (ret)
917 goto err_bcn;
918 }
919
Thomas Graf7be99412012-06-13 02:54:55 +0000920 nla_nest_end(skb, bcn_nest);
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800921
922 return 0;
923
924err_bcn:
Thomas Graf7be99412012-06-13 02:54:55 +0000925 nla_nest_cancel(skb, bcn_nest);
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800926 return ret;
927}
928
Thomas Graf7be99412012-06-13 02:54:55 +0000929static int dcbnl_bcn_setcfg(struct net_device *netdev, struct nlmsghdr *nlh,
930 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800931{
932 struct nlattr *data[DCB_BCN_ATTR_MAX + 1];
933 int i;
Thomas Graf3d1f4862012-06-13 02:54:58 +0000934 int ret;
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800935 u8 value_byte;
936 u32 value_int;
937
Thomas Graf3d1f4862012-06-13 02:54:58 +0000938 if (!tb[DCB_ATTR_BCN])
939 return -EINVAL;
940
941 if (!netdev->dcbnl_ops->setbcncfg ||
Joe Perchesf64f9e72009-11-29 16:55:45 -0800942 !netdev->dcbnl_ops->setbcnrp)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000943 return -EOPNOTSUPP;
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800944
Johannes Bergfceb6432017-04-12 14:34:07 +0200945 ret = nla_parse_nested(data, DCB_BCN_ATTR_MAX, tb[DCB_ATTR_BCN],
946 dcbnl_pfc_up_nest, NULL);
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800947 if (ret)
Thomas Graf3d1f4862012-06-13 02:54:58 +0000948 return ret;
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800949
950 for (i = DCB_BCN_ATTR_RP_0; i <= DCB_BCN_ATTR_RP_7; i++) {
951 if (data[i] == NULL)
952 continue;
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);
956 }
957
Don Skidmoref4314e82008-12-21 20:10:29 -0800958 for (i = DCB_BCN_ATTR_BCNA_0; i <= DCB_BCN_ATTR_RI; i++) {
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800959 if (data[i] == NULL)
960 continue;
961 value_int = nla_get_u32(data[i]);
962 netdev->dcbnl_ops->setbcncfg(netdev,
963 i, value_int);
964 }
965
Thomas Graf3d1f4862012-06-13 02:54:58 +0000966 return nla_put_u8(skb, DCB_ATTR_BCN, 0);
Alexander Duyck859ee3c2008-11-20 21:10:23 -0800967}
968
Shmulik Raviddc6ed1d2011-02-27 05:04:38 +0000969static int dcbnl_build_peer_app(struct net_device *netdev, struct sk_buff* skb,
970 int app_nested_type, int app_info_type,
971 int app_entry_type)
Shmulik Ravideed84712011-02-27 05:04:31 +0000972{
973 struct dcb_peer_app_info info;
974 struct dcb_app *table = NULL;
975 const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops;
976 u16 app_count;
977 int err;
978
979
980 /**
981 * retrieve the peer app configuration form the driver. If the driver
982 * handlers fail exit without doing anything
983 */
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);
987 if (!table)
988 return -ENOMEM;
989
990 err = ops->peer_getapptable(netdev, table);
991 }
992
993 if (!err) {
994 u16 i;
995 struct nlattr *app;
996
997 /**
998 * build the message, from here on the only possible failure
999 * is due to the skb size
1000 */
1001 err = -EMSGSIZE;
1002
Shmulik Raviddc6ed1d2011-02-27 05:04:38 +00001003 app = nla_nest_start(skb, app_nested_type);
Shmulik Ravideed84712011-02-27 05:04:31 +00001004 if (!app)
1005 goto nla_put_failure;
1006
David S. Miller1eb4c972012-04-01 20:03:01 -04001007 if (app_info_type &&
1008 nla_put(skb, app_info_type, sizeof(info), &info))
1009 goto nla_put_failure;
Shmulik Raviddc6ed1d2011-02-27 05:04:38 +00001010
David S. Miller1eb4c972012-04-01 20:03:01 -04001011 for (i = 0; i < app_count; i++) {
1012 if (nla_put(skb, app_entry_type, sizeof(struct dcb_app),
1013 &table[i]))
1014 goto nla_put_failure;
1015 }
Shmulik Ravideed84712011-02-27 05:04:31 +00001016 nla_nest_end(skb, app);
1017 }
1018 err = 0;
1019
1020nla_put_failure:
1021 kfree(table);
1022 return err;
1023}
John Fastabend3e290272010-12-30 09:25:46 +00001024
Shani Michaelic93682472015-03-05 20:16:11 +02001025/* Handle IEEE 802.1Qaz/802.1Qau/802.1Qbb GET commands. */
John Fastabend314b4772011-06-21 07:34:37 +00001026static int dcbnl_ieee_fill(struct sk_buff *skb, struct net_device *netdev)
John Fastabend3e290272010-12-30 09:25:46 +00001027{
John Fastabend9ab933a2010-12-30 09:26:31 +00001028 struct nlattr *ieee, *app;
1029 struct dcb_app_type *itr;
John Fastabend3e290272010-12-30 09:25:46 +00001030 const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops;
John Fastabendc7797ba2011-06-21 07:34:31 +00001031 int dcbx;
Thomas Graf3d1f4862012-06-13 02:54:58 +00001032 int err;
John Fastabend3e290272010-12-30 09:25:46 +00001033
David S. Miller1eb4c972012-04-01 20:03:01 -04001034 if (nla_put_string(skb, DCB_ATTR_IFNAME, netdev->name))
Thomas Graf3d1f4862012-06-13 02:54:58 +00001035 return -EMSGSIZE;
1036
John Fastabend3e290272010-12-30 09:25:46 +00001037 ieee = nla_nest_start(skb, DCB_ATTR_IEEE);
1038 if (!ieee)
Thomas Graf3d1f4862012-06-13 02:54:58 +00001039 return -EMSGSIZE;
John Fastabend3e290272010-12-30 09:25:46 +00001040
1041 if (ops->ieee_getets) {
1042 struct ieee_ets ets;
Mathias Krause29cd8ae2013-03-09 05:52:21 +00001043 memset(&ets, 0, sizeof(ets));
John Fastabend3e290272010-12-30 09:25:46 +00001044 err = ops->ieee_getets(netdev, &ets);
David S. Miller1eb4c972012-04-01 20:03:01 -04001045 if (!err &&
1046 nla_put(skb, DCB_ATTR_IEEE_ETS, sizeof(ets), &ets))
Thomas Graf3d1f4862012-06-13 02:54:58 +00001047 return -EMSGSIZE;
John Fastabend3e290272010-12-30 09:25:46 +00001048 }
1049
Amir Vadai08f10af2012-04-04 21:33:30 +00001050 if (ops->ieee_getmaxrate) {
1051 struct ieee_maxrate maxrate;
Mathias Krause29cd8ae2013-03-09 05:52:21 +00001052 memset(&maxrate, 0, sizeof(maxrate));
Amir Vadai08f10af2012-04-04 21:33:30 +00001053 err = ops->ieee_getmaxrate(netdev, &maxrate);
1054 if (!err) {
1055 err = nla_put(skb, DCB_ATTR_IEEE_MAXRATE,
1056 sizeof(maxrate), &maxrate);
1057 if (err)
Thomas Graf3d1f4862012-06-13 02:54:58 +00001058 return -EMSGSIZE;
Amir Vadai08f10af2012-04-04 21:33:30 +00001059 }
1060 }
1061
Shani Michaelic93682472015-03-05 20:16:11 +02001062 if (ops->ieee_getqcn) {
1063 struct ieee_qcn qcn;
1064
1065 memset(&qcn, 0, sizeof(qcn));
1066 err = ops->ieee_getqcn(netdev, &qcn);
1067 if (!err) {
1068 err = nla_put(skb, DCB_ATTR_IEEE_QCN,
1069 sizeof(qcn), &qcn);
1070 if (err)
1071 return -EMSGSIZE;
1072 }
1073 }
1074
1075 if (ops->ieee_getqcnstats) {
1076 struct ieee_qcn_stats qcn_stats;
1077
1078 memset(&qcn_stats, 0, sizeof(qcn_stats));
1079 err = ops->ieee_getqcnstats(netdev, &qcn_stats);
1080 if (!err) {
1081 err = nla_put(skb, DCB_ATTR_IEEE_QCN_STATS,
1082 sizeof(qcn_stats), &qcn_stats);
1083 if (err)
1084 return -EMSGSIZE;
1085 }
1086 }
1087
John Fastabend3e290272010-12-30 09:25:46 +00001088 if (ops->ieee_getpfc) {
1089 struct ieee_pfc pfc;
Mathias Krause29cd8ae2013-03-09 05:52:21 +00001090 memset(&pfc, 0, sizeof(pfc));
John Fastabend3e290272010-12-30 09:25:46 +00001091 err = ops->ieee_getpfc(netdev, &pfc);
David S. Miller1eb4c972012-04-01 20:03:01 -04001092 if (!err &&
1093 nla_put(skb, DCB_ATTR_IEEE_PFC, sizeof(pfc), &pfc))
Thomas Graf3d1f4862012-06-13 02:54:58 +00001094 return -EMSGSIZE;
John Fastabend3e290272010-12-30 09:25:46 +00001095 }
1096
John Fastabend9ab933a2010-12-30 09:26:31 +00001097 app = nla_nest_start(skb, DCB_ATTR_IEEE_APP_TABLE);
1098 if (!app)
Thomas Graf3d1f4862012-06-13 02:54:58 +00001099 return -EMSGSIZE;
John Fastabend9ab933a2010-12-30 09:26:31 +00001100
Anish Bhatt52cff742014-11-14 16:38:31 -08001101 spin_lock_bh(&dcb_lock);
John Fastabend9ab933a2010-12-30 09:26:31 +00001102 list_for_each_entry(itr, &dcb_app_list, list) {
Mark Rustade290ed82011-10-06 08:52:33 +00001103 if (itr->ifindex == netdev->ifindex) {
Dan Carpenter70bfa2d2011-01-04 21:03:12 +00001104 err = nla_put(skb, DCB_ATTR_IEEE_APP, sizeof(itr->app),
1105 &itr->app);
1106 if (err) {
Anish Bhatt52cff742014-11-14 16:38:31 -08001107 spin_unlock_bh(&dcb_lock);
Thomas Graf3d1f4862012-06-13 02:54:58 +00001108 return -EMSGSIZE;
Dan Carpenter70bfa2d2011-01-04 21:03:12 +00001109 }
1110 }
John Fastabend9ab933a2010-12-30 09:26:31 +00001111 }
John Fastabendc7797ba2011-06-21 07:34:31 +00001112
1113 if (netdev->dcbnl_ops->getdcbx)
1114 dcbx = netdev->dcbnl_ops->getdcbx(netdev);
1115 else
1116 dcbx = -EOPNOTSUPP;
1117
Anish Bhatt52cff742014-11-14 16:38:31 -08001118 spin_unlock_bh(&dcb_lock);
John Fastabend9ab933a2010-12-30 09:26:31 +00001119 nla_nest_end(skb, app);
1120
Shmulik Ravideed84712011-02-27 05:04:31 +00001121 /* get peer info if available */
1122 if (ops->ieee_peer_getets) {
1123 struct ieee_ets ets;
Mathias Krause29cd8ae2013-03-09 05:52:21 +00001124 memset(&ets, 0, sizeof(ets));
Shmulik Ravideed84712011-02-27 05:04:31 +00001125 err = ops->ieee_peer_getets(netdev, &ets);
David S. Miller1eb4c972012-04-01 20:03:01 -04001126 if (!err &&
1127 nla_put(skb, DCB_ATTR_IEEE_PEER_ETS, sizeof(ets), &ets))
Thomas Graf3d1f4862012-06-13 02:54:58 +00001128 return -EMSGSIZE;
Shmulik Ravideed84712011-02-27 05:04:31 +00001129 }
1130
1131 if (ops->ieee_peer_getpfc) {
1132 struct ieee_pfc pfc;
Mathias Krause29cd8ae2013-03-09 05:52:21 +00001133 memset(&pfc, 0, sizeof(pfc));
Shmulik Ravideed84712011-02-27 05:04:31 +00001134 err = ops->ieee_peer_getpfc(netdev, &pfc);
David S. Miller1eb4c972012-04-01 20:03:01 -04001135 if (!err &&
1136 nla_put(skb, DCB_ATTR_IEEE_PEER_PFC, sizeof(pfc), &pfc))
Thomas Graf3d1f4862012-06-13 02:54:58 +00001137 return -EMSGSIZE;
Shmulik Ravideed84712011-02-27 05:04:31 +00001138 }
1139
1140 if (ops->peer_getappinfo && ops->peer_getapptable) {
Shmulik Raviddc6ed1d2011-02-27 05:04:38 +00001141 err = dcbnl_build_peer_app(netdev, skb,
1142 DCB_ATTR_IEEE_PEER_APP,
1143 DCB_ATTR_IEEE_APP_UNSPEC,
1144 DCB_ATTR_IEEE_APP);
Shmulik Ravideed84712011-02-27 05:04:31 +00001145 if (err)
Thomas Graf3d1f4862012-06-13 02:54:58 +00001146 return -EMSGSIZE;
Shmulik Ravideed84712011-02-27 05:04:31 +00001147 }
1148
John Fastabend3e290272010-12-30 09:25:46 +00001149 nla_nest_end(skb, ieee);
John Fastabendc7797ba2011-06-21 07:34:31 +00001150 if (dcbx >= 0) {
1151 err = nla_put_u8(skb, DCB_ATTR_DCBX, dcbx);
1152 if (err)
Thomas Graf3d1f4862012-06-13 02:54:58 +00001153 return -EMSGSIZE;
John Fastabendc7797ba2011-06-21 07:34:31 +00001154 }
John Fastabend3e290272010-12-30 09:25:46 +00001155
John Fastabend314b4772011-06-21 07:34:37 +00001156 return 0;
John Fastabend3e290272010-12-30 09:25:46 +00001157}
1158
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001159static int dcbnl_cee_pg_fill(struct sk_buff *skb, struct net_device *dev,
1160 int dir)
1161{
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);
1166
1167 if (!pg)
Thomas Graf3d1f4862012-06-13 02:54:58 +00001168 return -EMSGSIZE;
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001169
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);
1172
1173 if (!tc_nest)
Thomas Graf3d1f4862012-06-13 02:54:58 +00001174 return -EMSGSIZE;
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001175
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;
1180
1181 if (!dir)
1182 ops->getpgtccfgrx(dev, i - DCB_PG_ATTR_TC_0,
1183 &prio, &pgid, &tc_pct, &up_map);
1184 else
1185 ops->getpgtccfgtx(dev, i - DCB_PG_ATTR_TC_0,
1186 &prio, &pgid, &tc_pct, &up_map);
1187
David S. Miller1eb4c972012-04-01 20:03:01 -04001188 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))
Thomas Graf3d1f4862012-06-13 02:54:58 +00001192 return -EMSGSIZE;
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001193 nla_nest_end(skb, tc_nest);
1194 }
1195
1196 for (i = DCB_PG_ATTR_BW_ID_0; i <= DCB_PG_ATTR_BW_ID_7; i++) {
1197 tc_pct = DCB_ATTR_VALUE_UNDEFINED;
1198
1199 if (!dir)
1200 ops->getpgbwgcfgrx(dev, i - DCB_PG_ATTR_BW_ID_0,
1201 &tc_pct);
1202 else
1203 ops->getpgbwgcfgtx(dev, i - DCB_PG_ATTR_BW_ID_0,
1204 &tc_pct);
David S. Miller1eb4c972012-04-01 20:03:01 -04001205 if (nla_put_u8(skb, i, tc_pct))
Thomas Graf3d1f4862012-06-13 02:54:58 +00001206 return -EMSGSIZE;
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001207 }
1208 nla_nest_end(skb, pg);
1209 return 0;
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001210}
1211
1212static int dcbnl_cee_fill(struct sk_buff *skb, struct net_device *netdev)
1213{
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;
1218 u8 value;
1219
David S. Miller1eb4c972012-04-01 20:03:01 -04001220 if (nla_put_string(skb, DCB_ATTR_IFNAME, netdev->name))
1221 goto nla_put_failure;
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001222 cee = nla_nest_start(skb, DCB_ATTR_CEE);
1223 if (!cee)
1224 goto nla_put_failure;
1225
1226 /* local pg */
1227 if (ops->getpgtccfgtx && ops->getpgbwgcfgtx) {
1228 err = dcbnl_cee_pg_fill(skb, netdev, 1);
1229 if (err)
1230 goto nla_put_failure;
1231 }
1232
1233 if (ops->getpgtccfgrx && ops->getpgbwgcfgrx) {
1234 err = dcbnl_cee_pg_fill(skb, netdev, 0);
1235 if (err)
1236 goto nla_put_failure;
1237 }
1238
1239 /* local pfc */
1240 if (ops->getpfccfg) {
1241 struct nlattr *pfc_nest = nla_nest_start(skb, DCB_ATTR_CEE_PFC);
1242
1243 if (!pfc_nest)
1244 goto nla_put_failure;
1245
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);
David S. Miller1eb4c972012-04-01 20:03:01 -04001248 if (nla_put_u8(skb, i, value))
1249 goto nla_put_failure;
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001250 }
1251 nla_nest_end(skb, pfc_nest);
1252 }
1253
1254 /* local app */
Anish Bhatt52cff742014-11-14 16:38:31 -08001255 spin_lock_bh(&dcb_lock);
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001256 app = nla_nest_start(skb, DCB_ATTR_CEE_APP_TABLE);
1257 if (!app)
Dan Carpenter40f5d722011-07-07 21:27:24 +00001258 goto dcb_unlock;
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001259
1260 list_for_each_entry(itr, &dcb_app_list, list) {
Mark Rustade290ed82011-10-06 08:52:33 +00001261 if (itr->ifindex == netdev->ifindex) {
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001262 struct nlattr *app_nest = nla_nest_start(skb,
1263 DCB_ATTR_APP);
1264 if (!app_nest)
1265 goto dcb_unlock;
1266
1267 err = nla_put_u8(skb, DCB_APP_ATTR_IDTYPE,
1268 itr->app.selector);
1269 if (err)
1270 goto dcb_unlock;
1271
1272 err = nla_put_u16(skb, DCB_APP_ATTR_ID,
1273 itr->app.protocol);
1274 if (err)
1275 goto dcb_unlock;
1276
1277 err = nla_put_u8(skb, DCB_APP_ATTR_PRIORITY,
1278 itr->app.priority);
1279 if (err)
1280 goto dcb_unlock;
1281
1282 nla_nest_end(skb, app_nest);
1283 }
1284 }
1285 nla_nest_end(skb, app);
1286
1287 if (netdev->dcbnl_ops->getdcbx)
1288 dcbx = netdev->dcbnl_ops->getdcbx(netdev);
1289 else
1290 dcbx = -EOPNOTSUPP;
1291
Anish Bhatt52cff742014-11-14 16:38:31 -08001292 spin_unlock_bh(&dcb_lock);
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001293
1294 /* features flags */
1295 if (ops->getfeatcfg) {
1296 struct nlattr *feat = nla_nest_start(skb, DCB_ATTR_CEE_FEAT);
1297 if (!feat)
1298 goto nla_put_failure;
1299
1300 for (i = DCB_FEATCFG_ATTR_ALL + 1; i <= DCB_FEATCFG_ATTR_MAX;
1301 i++)
David S. Miller1eb4c972012-04-01 20:03:01 -04001302 if (!ops->getfeatcfg(netdev, i, &value) &&
1303 nla_put_u8(skb, i, value))
1304 goto nla_put_failure;
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001305
1306 nla_nest_end(skb, feat);
1307 }
1308
1309 /* peer info if available */
1310 if (ops->cee_peer_getpg) {
1311 struct cee_pg pg;
Mathias Krause29cd8ae2013-03-09 05:52:21 +00001312 memset(&pg, 0, sizeof(pg));
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001313 err = ops->cee_peer_getpg(netdev, &pg);
David S. Miller1eb4c972012-04-01 20:03:01 -04001314 if (!err &&
1315 nla_put(skb, DCB_ATTR_CEE_PEER_PG, sizeof(pg), &pg))
1316 goto nla_put_failure;
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001317 }
1318
1319 if (ops->cee_peer_getpfc) {
1320 struct cee_pfc pfc;
Mathias Krause29cd8ae2013-03-09 05:52:21 +00001321 memset(&pfc, 0, sizeof(pfc));
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001322 err = ops->cee_peer_getpfc(netdev, &pfc);
David S. Miller1eb4c972012-04-01 20:03:01 -04001323 if (!err &&
1324 nla_put(skb, DCB_ATTR_CEE_PEER_PFC, sizeof(pfc), &pfc))
1325 goto nla_put_failure;
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001326 }
1327
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);
1333 if (err)
1334 goto nla_put_failure;
1335 }
1336 nla_nest_end(skb, cee);
1337
1338 /* DCBX state */
1339 if (dcbx >= 0) {
1340 err = nla_put_u8(skb, DCB_ATTR_DCBX, dcbx);
1341 if (err)
1342 goto nla_put_failure;
1343 }
1344 return 0;
1345
1346dcb_unlock:
Anish Bhatt52cff742014-11-14 16:38:31 -08001347 spin_unlock_bh(&dcb_lock);
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001348nla_put_failure:
Pan Bianc66ebf22016-12-03 21:49:08 +08001349 err = -EMSGSIZE;
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001350 return err;
1351}
1352
1353static int dcbnl_notify(struct net_device *dev, int event, int cmd,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001354 u32 seq, u32 portid, int dcbx_ver)
John Fastabend314b4772011-06-21 07:34:37 +00001355{
1356 struct net *net = dev_net(dev);
1357 struct sk_buff *skb;
1358 struct nlmsghdr *nlh;
John Fastabend314b4772011-06-21 07:34:37 +00001359 const struct dcbnl_rtnl_ops *ops = dev->dcbnl_ops;
1360 int err;
1361
1362 if (!ops)
1363 return -EOPNOTSUPP;
1364
Eric W. Biederman15e47302012-09-07 20:12:54 +00001365 skb = dcbnl_newmsg(event, cmd, portid, seq, 0, &nlh);
John Fastabend314b4772011-06-21 07:34:37 +00001366 if (!skb)
1367 return -ENOBUFS;
1368
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001369 if (dcbx_ver == DCB_CAP_DCBX_VER_IEEE)
1370 err = dcbnl_ieee_fill(skb, dev);
1371 else
1372 err = dcbnl_cee_fill(skb, dev);
1373
John Fastabend314b4772011-06-21 07:34:37 +00001374 if (err < 0) {
1375 /* Report error to broadcast listeners */
Thomas Grafab6d4702012-06-13 02:54:57 +00001376 nlmsg_free(skb);
John Fastabend314b4772011-06-21 07:34:37 +00001377 rtnl_set_sk_err(net, RTNLGRP_DCB, err);
1378 } else {
1379 /* End nlmsg and notify broadcast listeners */
1380 nlmsg_end(skb, nlh);
1381 rtnl_notify(skb, net, 0, RTNLGRP_DCB, NULL, GFP_KERNEL);
1382 }
1383
1384 return err;
1385}
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001386
1387int dcbnl_ieee_notify(struct net_device *dev, int event, int cmd,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001388 u32 seq, u32 portid)
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001389{
Eric W. Biederman15e47302012-09-07 20:12:54 +00001390 return dcbnl_notify(dev, event, cmd, seq, portid, DCB_CAP_DCBX_VER_IEEE);
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001391}
1392EXPORT_SYMBOL(dcbnl_ieee_notify);
1393
1394int dcbnl_cee_notify(struct net_device *dev, int event, int cmd,
Eric W. Biederman15e47302012-09-07 20:12:54 +00001395 u32 seq, u32 portid)
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001396{
Eric W. Biederman15e47302012-09-07 20:12:54 +00001397 return dcbnl_notify(dev, event, cmd, seq, portid, DCB_CAP_DCBX_VER_CEE);
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001398}
1399EXPORT_SYMBOL(dcbnl_cee_notify);
John Fastabend314b4772011-06-21 07:34:37 +00001400
Shani Michaelic93682472015-03-05 20:16:11 +02001401/* 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.
John Fastabend314b4772011-06-21 07:34:37 +00001404 * No attempt is made to reconcile the case where only part of the
1405 * cmd can be completed.
1406 */
Thomas Graf7be99412012-06-13 02:54:55 +00001407static int dcbnl_ieee_set(struct net_device *netdev, struct nlmsghdr *nlh,
1408 u32 seq, struct nlattr **tb, struct sk_buff *skb)
John Fastabend314b4772011-06-21 07:34:37 +00001409{
1410 const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops;
1411 struct nlattr *ieee[DCB_ATTR_IEEE_MAX + 1];
Thomas Graf3d1f4862012-06-13 02:54:58 +00001412 int err;
John Fastabend314b4772011-06-21 07:34:37 +00001413
1414 if (!ops)
Thomas Graf3d1f4862012-06-13 02:54:58 +00001415 return -EOPNOTSUPP;
John Fastabend314b4772011-06-21 07:34:37 +00001416
John Fastabend4003b652011-06-21 07:35:04 +00001417 if (!tb[DCB_ATTR_IEEE])
1418 return -EINVAL;
1419
Johannes Bergfceb6432017-04-12 14:34:07 +02001420 err = nla_parse_nested(ieee, DCB_ATTR_IEEE_MAX, tb[DCB_ATTR_IEEE],
1421 dcbnl_ieee_policy, NULL);
John Fastabend314b4772011-06-21 07:34:37 +00001422 if (err)
1423 return err;
1424
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);
1428 if (err)
1429 goto err;
1430 }
1431
Amir Vadai08f10af2012-04-04 21:33:30 +00001432 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);
1436 if (err)
1437 goto err;
1438 }
1439
Shani Michaelic93682472015-03-05 20:16:11 +02001440 if (ieee[DCB_ATTR_IEEE_QCN] && ops->ieee_setqcn) {
1441 struct ieee_qcn *qcn =
1442 nla_data(ieee[DCB_ATTR_IEEE_QCN]);
1443
1444 err = ops->ieee_setqcn(netdev, qcn);
1445 if (err)
1446 goto err;
1447 }
1448
John Fastabend314b4772011-06-21 07:34:37 +00001449 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);
1452 if (err)
1453 goto err;
1454 }
1455
1456 if (ieee[DCB_ATTR_IEEE_APP_TABLE]) {
1457 struct nlattr *attr;
1458 int rem;
1459
1460 nla_for_each_nested(attr, ieee[DCB_ATTR_IEEE_APP_TABLE], rem) {
1461 struct dcb_app *app_data;
stephen hemminger332b4fc2017-05-19 09:55:48 -07001462
John Fastabend314b4772011-06-21 07:34:37 +00001463 if (nla_type(attr) != DCB_ATTR_IEEE_APP)
1464 continue;
stephen hemminger332b4fc2017-05-19 09:55:48 -07001465
1466 if (nla_len(attr) < sizeof(struct dcb_app)) {
1467 err = -ERANGE;
1468 goto err;
1469 }
1470
John Fastabend314b4772011-06-21 07:34:37 +00001471 app_data = nla_data(attr);
1472 if (ops->ieee_setapp)
1473 err = ops->ieee_setapp(netdev, app_data);
1474 else
John Fastabendb6db2172011-06-21 07:34:42 +00001475 err = dcb_ieee_setapp(netdev, app_data);
John Fastabend314b4772011-06-21 07:34:37 +00001476 if (err)
1477 goto err;
1478 }
1479 }
1480
1481err:
Thomas Graf7be99412012-06-13 02:54:55 +00001482 err = nla_put_u8(skb, DCB_ATTR_IEEE, err);
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001483 dcbnl_ieee_notify(netdev, RTM_SETDCB, DCB_CMD_IEEE_SET, seq, 0);
John Fastabend314b4772011-06-21 07:34:37 +00001484 return err;
1485}
1486
Thomas Graf7be99412012-06-13 02:54:55 +00001487static int dcbnl_ieee_get(struct net_device *netdev, struct nlmsghdr *nlh,
1488 u32 seq, struct nlattr **tb, struct sk_buff *skb)
John Fastabend314b4772011-06-21 07:34:37 +00001489{
John Fastabend314b4772011-06-21 07:34:37 +00001490 const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops;
John Fastabend314b4772011-06-21 07:34:37 +00001491
1492 if (!ops)
1493 return -EOPNOTSUPP;
1494
Thomas Graf7be99412012-06-13 02:54:55 +00001495 return dcbnl_ieee_fill(skb, netdev);
John Fastabend314b4772011-06-21 07:34:37 +00001496}
John Fastabendf9ae7e42011-06-21 07:34:48 +00001497
Thomas Graf7be99412012-06-13 02:54:55 +00001498static int dcbnl_ieee_del(struct net_device *netdev, struct nlmsghdr *nlh,
1499 u32 seq, struct nlattr **tb, struct sk_buff *skb)
John Fastabendf9ae7e42011-06-21 07:34:48 +00001500{
1501 const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops;
1502 struct nlattr *ieee[DCB_ATTR_IEEE_MAX + 1];
Thomas Graf3d1f4862012-06-13 02:54:58 +00001503 int err;
John Fastabendf9ae7e42011-06-21 07:34:48 +00001504
1505 if (!ops)
1506 return -EOPNOTSUPP;
1507
1508 if (!tb[DCB_ATTR_IEEE])
1509 return -EINVAL;
1510
Johannes Bergfceb6432017-04-12 14:34:07 +02001511 err = nla_parse_nested(ieee, DCB_ATTR_IEEE_MAX, tb[DCB_ATTR_IEEE],
1512 dcbnl_ieee_policy, NULL);
John Fastabendf9ae7e42011-06-21 07:34:48 +00001513 if (err)
1514 return err;
1515
1516 if (ieee[DCB_ATTR_IEEE_APP_TABLE]) {
1517 struct nlattr *attr;
1518 int rem;
1519
1520 nla_for_each_nested(attr, ieee[DCB_ATTR_IEEE_APP_TABLE], rem) {
1521 struct dcb_app *app_data;
1522
1523 if (nla_type(attr) != DCB_ATTR_IEEE_APP)
1524 continue;
1525 app_data = nla_data(attr);
1526 if (ops->ieee_delapp)
1527 err = ops->ieee_delapp(netdev, app_data);
1528 else
1529 err = dcb_ieee_delapp(netdev, app_data);
1530 if (err)
1531 goto err;
1532 }
1533 }
1534
1535err:
Thomas Graf7be99412012-06-13 02:54:55 +00001536 err = nla_put_u8(skb, DCB_ATTR_IEEE, err);
Shmulik Ravid5b7f7622011-07-05 06:16:25 +00001537 dcbnl_ieee_notify(netdev, RTM_SETDCB, DCB_CMD_IEEE_DEL, seq, 0);
John Fastabendf9ae7e42011-06-21 07:34:48 +00001538 return err;
1539}
1540
1541
Shmulik Ravid6241b622010-12-30 06:26:48 +00001542/* DCBX configuration */
Thomas Graf7be99412012-06-13 02:54:55 +00001543static int dcbnl_getdcbx(struct net_device *netdev, struct nlmsghdr *nlh,
1544 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Shmulik Ravid6241b622010-12-30 06:26:48 +00001545{
Shmulik Ravid6241b622010-12-30 06:26:48 +00001546 if (!netdev->dcbnl_ops->getdcbx)
Shmulik Ravid7f891cf2011-01-03 08:04:59 +00001547 return -EOPNOTSUPP;
Shmulik Ravid6241b622010-12-30 06:26:48 +00001548
Thomas Graf7be99412012-06-13 02:54:55 +00001549 return nla_put_u8(skb, DCB_ATTR_DCBX,
1550 netdev->dcbnl_ops->getdcbx(netdev));
Shmulik Ravid6241b622010-12-30 06:26:48 +00001551}
1552
Thomas Graf7be99412012-06-13 02:54:55 +00001553static int dcbnl_setdcbx(struct net_device *netdev, struct nlmsghdr *nlh,
1554 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Shmulik Ravid6241b622010-12-30 06:26:48 +00001555{
Shmulik Ravid6241b622010-12-30 06:26:48 +00001556 u8 value;
1557
Shmulik Ravid7f891cf2011-01-03 08:04:59 +00001558 if (!netdev->dcbnl_ops->setdcbx)
1559 return -EOPNOTSUPP;
1560
1561 if (!tb[DCB_ATTR_DCBX])
1562 return -EINVAL;
Shmulik Ravid6241b622010-12-30 06:26:48 +00001563
1564 value = nla_get_u8(tb[DCB_ATTR_DCBX]);
1565
Thomas Graf7be99412012-06-13 02:54:55 +00001566 return nla_put_u8(skb, DCB_ATTR_DCBX,
1567 netdev->dcbnl_ops->setdcbx(netdev, value));
Shmulik Ravid6241b622010-12-30 06:26:48 +00001568}
1569
Thomas Graf7be99412012-06-13 02:54:55 +00001570static int dcbnl_getfeatcfg(struct net_device *netdev, struct nlmsghdr *nlh,
1571 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001572{
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001573 struct nlattr *data[DCB_FEATCFG_ATTR_MAX + 1], *nest;
1574 u8 value;
Shmulik Ravid7f891cf2011-01-03 08:04:59 +00001575 int ret, i;
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001576 int getall = 0;
1577
Shmulik Ravid7f891cf2011-01-03 08:04:59 +00001578 if (!netdev->dcbnl_ops->getfeatcfg)
1579 return -EOPNOTSUPP;
1580
1581 if (!tb[DCB_ATTR_FEATCFG])
1582 return -EINVAL;
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001583
Johannes Bergfceb6432017-04-12 14:34:07 +02001584 ret = nla_parse_nested(data, DCB_FEATCFG_ATTR_MAX,
1585 tb[DCB_ATTR_FEATCFG], dcbnl_featcfg_nest, NULL);
Shmulik Ravid7f891cf2011-01-03 08:04:59 +00001586 if (ret)
Thomas Graf7be99412012-06-13 02:54:55 +00001587 return ret;
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001588
Thomas Graf7be99412012-06-13 02:54:55 +00001589 nest = nla_nest_start(skb, DCB_ATTR_FEATCFG);
1590 if (!nest)
1591 return -EMSGSIZE;
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001592
1593 if (data[DCB_FEATCFG_ATTR_ALL])
1594 getall = 1;
1595
1596 for (i = DCB_FEATCFG_ATTR_ALL+1; i <= DCB_FEATCFG_ATTR_MAX; i++) {
1597 if (!getall && !data[i])
1598 continue;
1599
1600 ret = netdev->dcbnl_ops->getfeatcfg(netdev, i, &value);
Shmulik Ravid7f891cf2011-01-03 08:04:59 +00001601 if (!ret)
Thomas Graf7be99412012-06-13 02:54:55 +00001602 ret = nla_put_u8(skb, i, value);
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001603
Shmulik Ravid7f891cf2011-01-03 08:04:59 +00001604 if (ret) {
Thomas Graf7be99412012-06-13 02:54:55 +00001605 nla_nest_cancel(skb, nest);
Shmulik Ravid7f891cf2011-01-03 08:04:59 +00001606 goto nla_put_failure;
1607 }
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001608 }
Thomas Graf7be99412012-06-13 02:54:55 +00001609 nla_nest_end(skb, nest);
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001610
Shmulik Ravid7f891cf2011-01-03 08:04:59 +00001611nla_put_failure:
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001612 return ret;
1613}
1614
Thomas Graf7be99412012-06-13 02:54:55 +00001615static int dcbnl_setfeatcfg(struct net_device *netdev, struct nlmsghdr *nlh,
1616 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001617{
1618 struct nlattr *data[DCB_FEATCFG_ATTR_MAX + 1];
Shmulik Ravid7f891cf2011-01-03 08:04:59 +00001619 int ret, i;
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001620 u8 value;
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001621
Shmulik Ravid7f891cf2011-01-03 08:04:59 +00001622 if (!netdev->dcbnl_ops->setfeatcfg)
1623 return -ENOTSUPP;
1624
1625 if (!tb[DCB_ATTR_FEATCFG])
1626 return -EINVAL;
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001627
Johannes Bergfceb6432017-04-12 14:34:07 +02001628 ret = nla_parse_nested(data, DCB_FEATCFG_ATTR_MAX,
1629 tb[DCB_ATTR_FEATCFG], dcbnl_featcfg_nest, NULL);
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001630
Shmulik Ravid7f891cf2011-01-03 08:04:59 +00001631 if (ret)
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001632 goto err;
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001633
1634 for (i = DCB_FEATCFG_ATTR_ALL+1; i <= DCB_FEATCFG_ATTR_MAX; i++) {
1635 if (data[i] == NULL)
1636 continue;
1637
1638 value = nla_get_u8(data[i]);
1639
1640 ret = netdev->dcbnl_ops->setfeatcfg(netdev, i, value);
1641
1642 if (ret)
Shmulik Ravid7f891cf2011-01-03 08:04:59 +00001643 goto err;
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001644 }
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001645err:
Thomas Graf7be99412012-06-13 02:54:55 +00001646 ret = nla_put_u8(skb, DCB_ATTR_FEATCFG, ret);
Shmulik Ravid7f891cf2011-01-03 08:04:59 +00001647
Shmulik Ravidea45fe42010-12-30 06:26:55 +00001648 return ret;
1649}
1650
Shmulik Raviddc6ed1d2011-02-27 05:04:38 +00001651/* Handle CEE DCBX GET commands. */
Thomas Graf7be99412012-06-13 02:54:55 +00001652static int dcbnl_cee_get(struct net_device *netdev, struct nlmsghdr *nlh,
1653 u32 seq, struct nlattr **tb, struct sk_buff *skb)
Shmulik Raviddc6ed1d2011-02-27 05:04:38 +00001654{
Shmulik Raviddc6ed1d2011-02-27 05:04:38 +00001655 const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops;
Shmulik Raviddc6ed1d2011-02-27 05:04:38 +00001656
1657 if (!ops)
1658 return -EOPNOTSUPP;
1659
Thomas Graf7be99412012-06-13 02:54:55 +00001660 return dcbnl_cee_fill(skb, netdev);
Shmulik Raviddc6ed1d2011-02-27 05:04:38 +00001661}
1662
Thomas Graf33a03aa2012-06-13 02:54:54 +00001663struct reply_func {
1664 /* reply netlink message type */
1665 int type;
1666
1667 /* function to fill message contents */
1668 int (*cb)(struct net_device *, struct nlmsghdr *, u32,
1669 struct nlattr **, struct sk_buff *);
1670};
1671
1672static const struct reply_func reply_funcs[DCB_CMD_MAX+1] = {
Thomas Graf7be99412012-06-13 02:54:55 +00001673 [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 },
Thomas Graf33a03aa2012-06-13 02:54:54 +00001700};
1701
David Ahernc21ef3e2017-04-16 09:48:24 -07001702static int dcb_doit(struct sk_buff *skb, struct nlmsghdr *nlh,
1703 struct netlink_ext_ack *extack)
Alexander Duyck2f90b862008-11-20 20:52:10 -08001704{
1705 struct net *net = sock_net(skb->sk);
1706 struct net_device *netdev;
Thomas Graf7a282bc2012-06-13 02:55:01 +00001707 struct dcbmsg *dcb = nlmsg_data(nlh);
Alexander Duyck2f90b862008-11-20 20:52:10 -08001708 struct nlattr *tb[DCB_ATTR_MAX + 1];
Eric W. Biederman15e47302012-09-07 20:12:54 +00001709 u32 portid = skb ? NETLINK_CB(skb).portid : 0;
Alexander Duyck2f90b862008-11-20 20:52:10 -08001710 int ret = -EINVAL;
Thomas Graf33a03aa2012-06-13 02:54:54 +00001711 struct sk_buff *reply_skb;
Thomas Graf39912f92012-06-13 22:34:03 +00001712 struct nlmsghdr *reply_nlh = NULL;
Thomas Graf33a03aa2012-06-13 02:54:54 +00001713 const struct reply_func *fn;
Alexander Duyck2f90b862008-11-20 20:52:10 -08001714
Eric W. Biederman90f62cf2014-04-23 14:29:27 -07001715 if ((nlh->nlmsg_type == RTM_SETDCB) && !netlink_capable(skb, CAP_NET_ADMIN))
Eric W. Biedermandfc47ef2012-11-16 03:03:00 +00001716 return -EPERM;
1717
Alexander Duyck2f90b862008-11-20 20:52:10 -08001718 ret = nlmsg_parse(nlh, sizeof(*dcb), tb, DCB_ATTR_MAX,
David Ahernc21ef3e2017-04-16 09:48:24 -07001719 dcbnl_rtnl_policy, extack);
Alexander Duyck2f90b862008-11-20 20:52:10 -08001720 if (ret < 0)
1721 return ret;
1722
Thomas Graf33a03aa2012-06-13 02:54:54 +00001723 if (dcb->cmd > DCB_CMD_MAX)
1724 return -EINVAL;
1725
1726 /* check if a reply function has been defined for the command */
1727 fn = &reply_funcs[dcb->cmd];
1728 if (!fn->cb)
1729 return -EOPNOTSUPP;
1730
Alexander Duyck2f90b862008-11-20 20:52:10 -08001731 if (!tb[DCB_ATTR_IFNAME])
1732 return -EINVAL;
1733
Ying Xued9ac62b2014-01-15 10:23:39 +08001734 netdev = __dev_get_by_name(net, nla_data(tb[DCB_ATTR_IFNAME]));
Alexander Duyck2f90b862008-11-20 20:52:10 -08001735 if (!netdev)
Thomas Graf3d1f4862012-06-13 02:54:58 +00001736 return -ENODEV;
Alexander Duyck2f90b862008-11-20 20:52:10 -08001737
Ying Xued9ac62b2014-01-15 10:23:39 +08001738 if (!netdev->dcbnl_ops)
1739 return -EOPNOTSUPP;
Alexander Duyck2f90b862008-11-20 20:52:10 -08001740
Eric W. Biederman15e47302012-09-07 20:12:54 +00001741 reply_skb = dcbnl_newmsg(fn->type, dcb->cmd, portid, nlh->nlmsg_seq,
Thomas Graf33a03aa2012-06-13 02:54:54 +00001742 nlh->nlmsg_flags, &reply_nlh);
Ying Xued9ac62b2014-01-15 10:23:39 +08001743 if (!reply_skb)
1744 return -ENOBUFS;
Thomas Graf33a03aa2012-06-13 02:54:54 +00001745
1746 ret = fn->cb(netdev, nlh, nlh->nlmsg_seq, tb, reply_skb);
1747 if (ret < 0) {
1748 nlmsg_free(reply_skb);
1749 goto out;
1750 }
1751
1752 nlmsg_end(reply_skb, reply_nlh);
1753
John Fastabend7c77ab22012-12-09 20:48:13 +00001754 ret = rtnl_unicast(reply_skb, net, portid);
Alexander Duyck2f90b862008-11-20 20:52:10 -08001755out:
Alexander Duyck2f90b862008-11-20 20:52:10 -08001756 return ret;
1757}
1758
Thomas Graf716b31a2012-06-13 02:54:59 +00001759static struct dcb_app_type *dcb_app_lookup(const struct dcb_app *app,
1760 int ifindex, int prio)
1761{
1762 struct dcb_app_type *itr;
1763
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))
1769 return itr;
1770 }
1771
1772 return NULL;
1773}
1774
Thomas Graf4e4f2f62012-06-13 02:55:00 +00001775static int dcb_app_add(const struct dcb_app *app, int ifindex)
1776{
1777 struct dcb_app_type *entry;
1778
1779 entry = kmalloc(sizeof(*entry), GFP_ATOMIC);
1780 if (!entry)
1781 return -ENOMEM;
1782
1783 memcpy(&entry->app, app, sizeof(*app));
1784 entry->ifindex = ifindex;
1785 list_add(&entry->list, &dcb_app_list);
1786
1787 return 0;
1788}
1789
John Fastabend9ab933a2010-12-30 09:26:31 +00001790/**
1791 * dcb_getapp - retrieve the DCBX application user priority
1792 *
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.
1796 */
1797u8 dcb_getapp(struct net_device *dev, struct dcb_app *app)
1798{
1799 struct dcb_app_type *itr;
1800 u8 prio = 0;
1801
Anish Bhatt52cff742014-11-14 16:38:31 -08001802 spin_lock_bh(&dcb_lock);
Thomas Graf716b31a2012-06-13 02:54:59 +00001803 if ((itr = dcb_app_lookup(app, dev->ifindex, 0)))
1804 prio = itr->app.priority;
Anish Bhatt52cff742014-11-14 16:38:31 -08001805 spin_unlock_bh(&dcb_lock);
John Fastabend9ab933a2010-12-30 09:26:31 +00001806
1807 return prio;
1808}
1809EXPORT_SYMBOL(dcb_getapp);
1810
1811/**
John Fastabendb6db2172011-06-21 07:34:42 +00001812 * dcb_setapp - add CEE dcb application data to app list
John Fastabend9ab933a2010-12-30 09:26:31 +00001813 *
John Fastabendb6db2172011-06-21 07:34:42 +00001814 * Priority 0 is an invalid priority in CEE spec. This routine
1815 * removes applications from the app list if the priority is
Anish Bhatt16eecd92014-07-28 20:57:07 -07001816 * set to zero. Priority is expected to be 8-bit 802.1p user priority bitmap
John Fastabend9ab933a2010-12-30 09:26:31 +00001817 */
John Fastabendab6baf92011-06-21 07:34:58 +00001818int dcb_setapp(struct net_device *dev, struct dcb_app *new)
John Fastabend9ab933a2010-12-30 09:26:31 +00001819{
1820 struct dcb_app_type *itr;
John Fastabend7ec79272011-01-31 12:00:59 +00001821 struct dcb_app_type event;
Thomas Graf4e4f2f62012-06-13 02:55:00 +00001822 int err = 0;
John Fastabend7ec79272011-01-31 12:00:59 +00001823
Mark Rustade290ed82011-10-06 08:52:33 +00001824 event.ifindex = dev->ifindex;
John Fastabend7ec79272011-01-31 12:00:59 +00001825 memcpy(&event.app, new, sizeof(event.app));
John Fastabend6bd0e1c2011-10-06 08:52:38 +00001826 if (dev->dcbnl_ops->getdcbx)
1827 event.dcbx = dev->dcbnl_ops->getdcbx(dev);
John Fastabend9ab933a2010-12-30 09:26:31 +00001828
Anish Bhatt52cff742014-11-14 16:38:31 -08001829 spin_lock_bh(&dcb_lock);
John Fastabend9ab933a2010-12-30 09:26:31 +00001830 /* Search for existing match and replace */
Thomas Graf716b31a2012-06-13 02:54:59 +00001831 if ((itr = dcb_app_lookup(new, dev->ifindex, 0))) {
1832 if (new->priority)
1833 itr->app.priority = new->priority;
1834 else {
1835 list_del(&itr->list);
1836 kfree(itr);
John Fastabend9ab933a2010-12-30 09:26:31 +00001837 }
Thomas Graf716b31a2012-06-13 02:54:59 +00001838 goto out;
John Fastabend9ab933a2010-12-30 09:26:31 +00001839 }
1840 /* App type does not exist add new application type */
Thomas Graf4e4f2f62012-06-13 02:55:00 +00001841 if (new->priority)
1842 err = dcb_app_add(new, dev->ifindex);
John Fastabend9ab933a2010-12-30 09:26:31 +00001843out:
Anish Bhatt52cff742014-11-14 16:38:31 -08001844 spin_unlock_bh(&dcb_lock);
Thomas Graf4e4f2f62012-06-13 02:55:00 +00001845 if (!err)
1846 call_dcbevent_notifiers(DCB_APP_EVENT, &event);
1847 return err;
John Fastabend9ab933a2010-12-30 09:26:31 +00001848}
1849EXPORT_SYMBOL(dcb_setapp);
1850
John Fastabendb6db2172011-06-21 07:34:42 +00001851/**
John Fastabenda364c8c2011-06-21 07:34:53 +00001852 * dcb_ieee_getapp_mask - retrieve the IEEE DCB application priority
1853 *
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.
1857 */
1858u8 dcb_ieee_getapp_mask(struct net_device *dev, struct dcb_app *app)
1859{
1860 struct dcb_app_type *itr;
1861 u8 prio = 0;
1862
Anish Bhatt52cff742014-11-14 16:38:31 -08001863 spin_lock_bh(&dcb_lock);
Thomas Graf716b31a2012-06-13 02:54:59 +00001864 if ((itr = dcb_app_lookup(app, dev->ifindex, 0)))
1865 prio |= 1 << itr->app.priority;
Anish Bhatt52cff742014-11-14 16:38:31 -08001866 spin_unlock_bh(&dcb_lock);
John Fastabenda364c8c2011-06-21 07:34:53 +00001867
1868 return prio;
1869}
1870EXPORT_SYMBOL(dcb_ieee_getapp_mask);
1871
1872/**
John Fastabendb6db2172011-06-21 07:34:42 +00001873 * dcb_ieee_setapp - add IEEE dcb application data to app list
1874 *
1875 * This adds Application data to the list. Multiple application
1876 * entries may exists for the same selector and protocol as long
Anish Bhatt16eecd92014-07-28 20:57:07 -07001877 * as the priorities are different. Priority is expected to be a
1878 * 3-bit unsigned integer
John Fastabendb6db2172011-06-21 07:34:42 +00001879 */
1880int dcb_ieee_setapp(struct net_device *dev, struct dcb_app *new)
1881{
John Fastabendb6db2172011-06-21 07:34:42 +00001882 struct dcb_app_type event;
1883 int err = 0;
1884
Mark Rustade290ed82011-10-06 08:52:33 +00001885 event.ifindex = dev->ifindex;
John Fastabendb6db2172011-06-21 07:34:42 +00001886 memcpy(&event.app, new, sizeof(event.app));
John Fastabend6bd0e1c2011-10-06 08:52:38 +00001887 if (dev->dcbnl_ops->getdcbx)
1888 event.dcbx = dev->dcbnl_ops->getdcbx(dev);
John Fastabendb6db2172011-06-21 07:34:42 +00001889
Anish Bhatt52cff742014-11-14 16:38:31 -08001890 spin_lock_bh(&dcb_lock);
John Fastabendb6db2172011-06-21 07:34:42 +00001891 /* Search for existing match and abort if found */
Thomas Graf716b31a2012-06-13 02:54:59 +00001892 if (dcb_app_lookup(new, dev->ifindex, new->priority)) {
1893 err = -EEXIST;
1894 goto out;
John Fastabendb6db2172011-06-21 07:34:42 +00001895 }
1896
Thomas Graf4e4f2f62012-06-13 02:55:00 +00001897 err = dcb_app_add(new, dev->ifindex);
John Fastabendb6db2172011-06-21 07:34:42 +00001898out:
Anish Bhatt52cff742014-11-14 16:38:31 -08001899 spin_unlock_bh(&dcb_lock);
John Fastabendb6db2172011-06-21 07:34:42 +00001900 if (!err)
1901 call_dcbevent_notifiers(DCB_APP_EVENT, &event);
1902 return err;
1903}
1904EXPORT_SYMBOL(dcb_ieee_setapp);
1905
John Fastabendf9ae7e42011-06-21 07:34:48 +00001906/**
1907 * dcb_ieee_delapp - delete IEEE dcb application data from list
1908 *
1909 * This removes a matching APP data from the APP list
1910 */
1911int dcb_ieee_delapp(struct net_device *dev, struct dcb_app *del)
1912{
1913 struct dcb_app_type *itr;
1914 struct dcb_app_type event;
1915 int err = -ENOENT;
1916
Mark Rustade290ed82011-10-06 08:52:33 +00001917 event.ifindex = dev->ifindex;
John Fastabendf9ae7e42011-06-21 07:34:48 +00001918 memcpy(&event.app, del, sizeof(event.app));
John Fastabend6bd0e1c2011-10-06 08:52:38 +00001919 if (dev->dcbnl_ops->getdcbx)
1920 event.dcbx = dev->dcbnl_ops->getdcbx(dev);
John Fastabendf9ae7e42011-06-21 07:34:48 +00001921
Anish Bhatt52cff742014-11-14 16:38:31 -08001922 spin_lock_bh(&dcb_lock);
John Fastabendf9ae7e42011-06-21 07:34:48 +00001923 /* Search for existing match and remove it. */
Thomas Graf716b31a2012-06-13 02:54:59 +00001924 if ((itr = dcb_app_lookup(del, dev->ifindex, del->priority))) {
1925 list_del(&itr->list);
1926 kfree(itr);
1927 err = 0;
John Fastabendf9ae7e42011-06-21 07:34:48 +00001928 }
1929
Anish Bhatt52cff742014-11-14 16:38:31 -08001930 spin_unlock_bh(&dcb_lock);
John Fastabendf9ae7e42011-06-21 07:34:48 +00001931 if (!err)
1932 call_dcbevent_notifiers(DCB_APP_EVENT, &event);
1933 return err;
1934}
1935EXPORT_SYMBOL(dcb_ieee_delapp);
1936
Alexander Duyck2f90b862008-11-20 20:52:10 -08001937static int __init dcbnl_init(void)
1938{
John Fastabend9ab933a2010-12-30 09:26:31 +00001939 INIT_LIST_HEAD(&dcb_app_list);
1940
Florian Westphalb97bac62017-08-09 20:41:48 +02001941 rtnl_register(PF_UNSPEC, RTM_GETDCB, dcb_doit, NULL, 0);
1942 rtnl_register(PF_UNSPEC, RTM_SETDCB, dcb_doit, NULL, 0);
Alexander Duyck2f90b862008-11-20 20:52:10 -08001943
1944 return 0;
1945}
Paul Gortmaker36b9ad802015-10-07 17:27:44 -04001946device_initcall(dcbnl_init);