Thomas Gleixner | 9952f69 | 2019-05-28 10:10:04 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 2 | /* |
Mark Rustad | 698e1d2 | 2011-03-14 09:01:02 +0000 | [diff] [blame] | 3 | * Copyright (c) 2008-2011, Intel Corporation. |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 4 | * |
Paul Gortmaker | 36b9ad80 | 2015-10-07 17:27:44 -0400 | [diff] [blame] | 5 | * Description: Data Center Bridging netlink interface |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 6 | * Author: Lucy Liu <lucy.liu@intel.com> |
| 7 | */ |
| 8 | |
| 9 | #include <linux/netdevice.h> |
| 10 | #include <linux/netlink.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 11 | #include <linux/slab.h> |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 12 | #include <net/netlink.h> |
| 13 | #include <net/rtnetlink.h> |
| 14 | #include <linux/dcbnl.h> |
John Fastabend | 96b9968 | 2010-12-30 09:26:37 +0000 | [diff] [blame] | 15 | #include <net/dcbevent.h> |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 16 | #include <linux/rtnetlink.h> |
Paul Gortmaker | 36b9ad80 | 2015-10-07 17:27:44 -0400 | [diff] [blame] | 17 | #include <linux/init.h> |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 18 | #include <net/sock.h> |
| 19 | |
Ben Hutchings | ae86b9e | 2012-07-10 10:55:35 +0000 | [diff] [blame] | 20 | /* Data Center Bridging (DCB) is a collection of Ethernet enhancements |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 21 | * intended to allow network traffic with differing requirements |
| 22 | * (highly reliable, no drops vs. best effort vs. low latency) to operate |
| 23 | * and co-exist on Ethernet. Current DCB features are: |
| 24 | * |
| 25 | * Enhanced Transmission Selection (aka Priority Grouping [PG]) - provides a |
| 26 | * framework for assigning bandwidth guarantees to traffic classes. |
| 27 | * |
| 28 | * Priority-based Flow Control (PFC) - provides a flow control mechanism which |
| 29 | * can work independently for each 802.1p priority. |
| 30 | * |
| 31 | * Congestion Notification - provides a mechanism for end-to-end congestion |
| 32 | * control for protocols which do not have built-in congestion management. |
| 33 | * |
| 34 | * More information about the emerging standards for these Ethernet features |
| 35 | * can be found at: http://www.ieee802.org/1/pages/dcbridges.html |
| 36 | * |
| 37 | * This file implements an rtnetlink interface to allow configuration of DCB |
| 38 | * features for capable devices. |
| 39 | */ |
| 40 | |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 41 | /**************** DCB attribute policies *************************************/ |
| 42 | |
| 43 | /* DCB netlink attributes policy */ |
Alexey Dobriyan | b54452b | 2010-02-18 08:14:31 +0000 | [diff] [blame] | 44 | static const struct nla_policy dcbnl_rtnl_policy[DCB_ATTR_MAX + 1] = { |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 45 | [DCB_ATTR_IFNAME] = {.type = NLA_NUL_STRING, .len = IFNAMSIZ - 1}, |
| 46 | [DCB_ATTR_STATE] = {.type = NLA_U8}, |
| 47 | [DCB_ATTR_PFC_CFG] = {.type = NLA_NESTED}, |
| 48 | [DCB_ATTR_PG_CFG] = {.type = NLA_NESTED}, |
| 49 | [DCB_ATTR_SET_ALL] = {.type = NLA_U8}, |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 50 | [DCB_ATTR_PERM_HWADDR] = {.type = NLA_FLAG}, |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 51 | [DCB_ATTR_CAP] = {.type = NLA_NESTED}, |
| 52 | [DCB_ATTR_PFC_STATE] = {.type = NLA_U8}, |
| 53 | [DCB_ATTR_BCN] = {.type = NLA_NESTED}, |
Yi Zou | 6fa382a | 2009-08-31 12:33:20 +0000 | [diff] [blame] | 54 | [DCB_ATTR_APP] = {.type = NLA_NESTED}, |
John Fastabend | 3e29027 | 2010-12-30 09:25:46 +0000 | [diff] [blame] | 55 | [DCB_ATTR_IEEE] = {.type = NLA_NESTED}, |
Shmulik Ravid | 6241b62 | 2010-12-30 06:26:48 +0000 | [diff] [blame] | 56 | [DCB_ATTR_DCBX] = {.type = NLA_U8}, |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 57 | [DCB_ATTR_FEATCFG] = {.type = NLA_NESTED}, |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 58 | }; |
| 59 | |
| 60 | /* DCB priority flow control to User Priority nested attributes */ |
Alexey Dobriyan | b54452b | 2010-02-18 08:14:31 +0000 | [diff] [blame] | 61 | static const struct nla_policy dcbnl_pfc_up_nest[DCB_PFC_UP_ATTR_MAX + 1] = { |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 62 | [DCB_PFC_UP_ATTR_0] = {.type = NLA_U8}, |
| 63 | [DCB_PFC_UP_ATTR_1] = {.type = NLA_U8}, |
| 64 | [DCB_PFC_UP_ATTR_2] = {.type = NLA_U8}, |
| 65 | [DCB_PFC_UP_ATTR_3] = {.type = NLA_U8}, |
| 66 | [DCB_PFC_UP_ATTR_4] = {.type = NLA_U8}, |
| 67 | [DCB_PFC_UP_ATTR_5] = {.type = NLA_U8}, |
| 68 | [DCB_PFC_UP_ATTR_6] = {.type = NLA_U8}, |
| 69 | [DCB_PFC_UP_ATTR_7] = {.type = NLA_U8}, |
| 70 | [DCB_PFC_UP_ATTR_ALL] = {.type = NLA_FLAG}, |
| 71 | }; |
| 72 | |
| 73 | /* DCB priority grouping nested attributes */ |
Alexey Dobriyan | b54452b | 2010-02-18 08:14:31 +0000 | [diff] [blame] | 74 | static const struct nla_policy dcbnl_pg_nest[DCB_PG_ATTR_MAX + 1] = { |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 75 | [DCB_PG_ATTR_TC_0] = {.type = NLA_NESTED}, |
| 76 | [DCB_PG_ATTR_TC_1] = {.type = NLA_NESTED}, |
| 77 | [DCB_PG_ATTR_TC_2] = {.type = NLA_NESTED}, |
| 78 | [DCB_PG_ATTR_TC_3] = {.type = NLA_NESTED}, |
| 79 | [DCB_PG_ATTR_TC_4] = {.type = NLA_NESTED}, |
| 80 | [DCB_PG_ATTR_TC_5] = {.type = NLA_NESTED}, |
| 81 | [DCB_PG_ATTR_TC_6] = {.type = NLA_NESTED}, |
| 82 | [DCB_PG_ATTR_TC_7] = {.type = NLA_NESTED}, |
| 83 | [DCB_PG_ATTR_TC_ALL] = {.type = NLA_NESTED}, |
| 84 | [DCB_PG_ATTR_BW_ID_0] = {.type = NLA_U8}, |
| 85 | [DCB_PG_ATTR_BW_ID_1] = {.type = NLA_U8}, |
| 86 | [DCB_PG_ATTR_BW_ID_2] = {.type = NLA_U8}, |
| 87 | [DCB_PG_ATTR_BW_ID_3] = {.type = NLA_U8}, |
| 88 | [DCB_PG_ATTR_BW_ID_4] = {.type = NLA_U8}, |
| 89 | [DCB_PG_ATTR_BW_ID_5] = {.type = NLA_U8}, |
| 90 | [DCB_PG_ATTR_BW_ID_6] = {.type = NLA_U8}, |
| 91 | [DCB_PG_ATTR_BW_ID_7] = {.type = NLA_U8}, |
| 92 | [DCB_PG_ATTR_BW_ID_ALL] = {.type = NLA_FLAG}, |
| 93 | }; |
| 94 | |
| 95 | /* DCB traffic class nested attributes. */ |
Alexey Dobriyan | b54452b | 2010-02-18 08:14:31 +0000 | [diff] [blame] | 96 | static const struct nla_policy dcbnl_tc_param_nest[DCB_TC_ATTR_PARAM_MAX + 1] = { |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 97 | [DCB_TC_ATTR_PARAM_PGID] = {.type = NLA_U8}, |
| 98 | [DCB_TC_ATTR_PARAM_UP_MAPPING] = {.type = NLA_U8}, |
| 99 | [DCB_TC_ATTR_PARAM_STRICT_PRIO] = {.type = NLA_U8}, |
| 100 | [DCB_TC_ATTR_PARAM_BW_PCT] = {.type = NLA_U8}, |
| 101 | [DCB_TC_ATTR_PARAM_ALL] = {.type = NLA_FLAG}, |
| 102 | }; |
| 103 | |
Alexander Duyck | 4613218 | 2008-11-20 21:05:08 -0800 | [diff] [blame] | 104 | /* DCB capabilities nested attributes. */ |
Alexey Dobriyan | b54452b | 2010-02-18 08:14:31 +0000 | [diff] [blame] | 105 | static const struct nla_policy dcbnl_cap_nest[DCB_CAP_ATTR_MAX + 1] = { |
Alexander Duyck | 4613218 | 2008-11-20 21:05:08 -0800 | [diff] [blame] | 106 | [DCB_CAP_ATTR_ALL] = {.type = NLA_FLAG}, |
| 107 | [DCB_CAP_ATTR_PG] = {.type = NLA_U8}, |
| 108 | [DCB_CAP_ATTR_PFC] = {.type = NLA_U8}, |
| 109 | [DCB_CAP_ATTR_UP2TC] = {.type = NLA_U8}, |
| 110 | [DCB_CAP_ATTR_PG_TCS] = {.type = NLA_U8}, |
| 111 | [DCB_CAP_ATTR_PFC_TCS] = {.type = NLA_U8}, |
| 112 | [DCB_CAP_ATTR_GSP] = {.type = NLA_U8}, |
| 113 | [DCB_CAP_ATTR_BCN] = {.type = NLA_U8}, |
Shmulik Ravid | 6241b62 | 2010-12-30 06:26:48 +0000 | [diff] [blame] | 114 | [DCB_CAP_ATTR_DCBX] = {.type = NLA_U8}, |
Alexander Duyck | 4613218 | 2008-11-20 21:05:08 -0800 | [diff] [blame] | 115 | }; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 116 | |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 117 | /* DCB capabilities nested attributes. */ |
Alexey Dobriyan | b54452b | 2010-02-18 08:14:31 +0000 | [diff] [blame] | 118 | static const struct nla_policy dcbnl_numtcs_nest[DCB_NUMTCS_ATTR_MAX + 1] = { |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 119 | [DCB_NUMTCS_ATTR_ALL] = {.type = NLA_FLAG}, |
| 120 | [DCB_NUMTCS_ATTR_PG] = {.type = NLA_U8}, |
| 121 | [DCB_NUMTCS_ATTR_PFC] = {.type = NLA_U8}, |
| 122 | }; |
| 123 | |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 124 | /* DCB BCN nested attributes. */ |
Alexey Dobriyan | b54452b | 2010-02-18 08:14:31 +0000 | [diff] [blame] | 125 | static const struct nla_policy dcbnl_bcn_nest[DCB_BCN_ATTR_MAX + 1] = { |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 126 | [DCB_BCN_ATTR_RP_0] = {.type = NLA_U8}, |
| 127 | [DCB_BCN_ATTR_RP_1] = {.type = NLA_U8}, |
| 128 | [DCB_BCN_ATTR_RP_2] = {.type = NLA_U8}, |
| 129 | [DCB_BCN_ATTR_RP_3] = {.type = NLA_U8}, |
| 130 | [DCB_BCN_ATTR_RP_4] = {.type = NLA_U8}, |
| 131 | [DCB_BCN_ATTR_RP_5] = {.type = NLA_U8}, |
| 132 | [DCB_BCN_ATTR_RP_6] = {.type = NLA_U8}, |
| 133 | [DCB_BCN_ATTR_RP_7] = {.type = NLA_U8}, |
| 134 | [DCB_BCN_ATTR_RP_ALL] = {.type = NLA_FLAG}, |
Don Skidmore | f4314e8 | 2008-12-21 20:10:29 -0800 | [diff] [blame] | 135 | [DCB_BCN_ATTR_BCNA_0] = {.type = NLA_U32}, |
| 136 | [DCB_BCN_ATTR_BCNA_1] = {.type = NLA_U32}, |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 137 | [DCB_BCN_ATTR_ALPHA] = {.type = NLA_U32}, |
| 138 | [DCB_BCN_ATTR_BETA] = {.type = NLA_U32}, |
| 139 | [DCB_BCN_ATTR_GD] = {.type = NLA_U32}, |
| 140 | [DCB_BCN_ATTR_GI] = {.type = NLA_U32}, |
| 141 | [DCB_BCN_ATTR_TMAX] = {.type = NLA_U32}, |
| 142 | [DCB_BCN_ATTR_TD] = {.type = NLA_U32}, |
| 143 | [DCB_BCN_ATTR_RMIN] = {.type = NLA_U32}, |
| 144 | [DCB_BCN_ATTR_W] = {.type = NLA_U32}, |
| 145 | [DCB_BCN_ATTR_RD] = {.type = NLA_U32}, |
| 146 | [DCB_BCN_ATTR_RU] = {.type = NLA_U32}, |
| 147 | [DCB_BCN_ATTR_WRTT] = {.type = NLA_U32}, |
| 148 | [DCB_BCN_ATTR_RI] = {.type = NLA_U32}, |
| 149 | [DCB_BCN_ATTR_C] = {.type = NLA_U32}, |
| 150 | [DCB_BCN_ATTR_ALL] = {.type = NLA_FLAG}, |
| 151 | }; |
| 152 | |
Yi Zou | 6fa382a | 2009-08-31 12:33:20 +0000 | [diff] [blame] | 153 | /* DCB APP nested attributes. */ |
Alexey Dobriyan | b54452b | 2010-02-18 08:14:31 +0000 | [diff] [blame] | 154 | static const struct nla_policy dcbnl_app_nest[DCB_APP_ATTR_MAX + 1] = { |
Yi Zou | 6fa382a | 2009-08-31 12:33:20 +0000 | [diff] [blame] | 155 | [DCB_APP_ATTR_IDTYPE] = {.type = NLA_U8}, |
| 156 | [DCB_APP_ATTR_ID] = {.type = NLA_U16}, |
| 157 | [DCB_APP_ATTR_PRIORITY] = {.type = NLA_U8}, |
| 158 | }; |
| 159 | |
John Fastabend | 3e29027 | 2010-12-30 09:25:46 +0000 | [diff] [blame] | 160 | /* IEEE 802.1Qaz nested attributes. */ |
| 161 | static const struct nla_policy dcbnl_ieee_policy[DCB_ATTR_IEEE_MAX + 1] = { |
| 162 | [DCB_ATTR_IEEE_ETS] = {.len = sizeof(struct ieee_ets)}, |
| 163 | [DCB_ATTR_IEEE_PFC] = {.len = sizeof(struct ieee_pfc)}, |
| 164 | [DCB_ATTR_IEEE_APP_TABLE] = {.type = NLA_NESTED}, |
Amir Vadai | 08f10af | 2012-04-04 21:33:30 +0000 | [diff] [blame] | 165 | [DCB_ATTR_IEEE_MAXRATE] = {.len = sizeof(struct ieee_maxrate)}, |
Shani Michaeli | c9368247 | 2015-03-05 20:16:11 +0200 | [diff] [blame] | 166 | [DCB_ATTR_IEEE_QCN] = {.len = sizeof(struct ieee_qcn)}, |
| 167 | [DCB_ATTR_IEEE_QCN_STATS] = {.len = sizeof(struct ieee_qcn_stats)}, |
Huy Nguyen | e549f6f | 2018-02-22 11:57:10 -0600 | [diff] [blame] | 168 | [DCB_ATTR_DCB_BUFFER] = {.len = sizeof(struct dcbnl_buffer)}, |
John Fastabend | 3e29027 | 2010-12-30 09:25:46 +0000 | [diff] [blame] | 169 | }; |
| 170 | |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 171 | /* DCB number of traffic classes nested attributes. */ |
| 172 | static const struct nla_policy dcbnl_featcfg_nest[DCB_FEATCFG_ATTR_MAX + 1] = { |
| 173 | [DCB_FEATCFG_ATTR_ALL] = {.type = NLA_FLAG}, |
| 174 | [DCB_FEATCFG_ATTR_PG] = {.type = NLA_U8}, |
| 175 | [DCB_FEATCFG_ATTR_PFC] = {.type = NLA_U8}, |
| 176 | [DCB_FEATCFG_ATTR_APP] = {.type = NLA_U8}, |
| 177 | }; |
| 178 | |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 179 | static LIST_HEAD(dcb_app_list); |
| 180 | static DEFINE_SPINLOCK(dcb_lock); |
| 181 | |
Thomas Graf | 33a03aa | 2012-06-13 02:54:54 +0000 | [diff] [blame] | 182 | static struct sk_buff *dcbnl_newmsg(int type, u8 cmd, u32 port, u32 seq, |
| 183 | u32 flags, struct nlmsghdr **nlhp) |
| 184 | { |
| 185 | struct sk_buff *skb; |
| 186 | struct dcbmsg *dcb; |
| 187 | struct nlmsghdr *nlh; |
| 188 | |
| 189 | skb = nlmsg_new(NLMSG_DEFAULT_SIZE, GFP_KERNEL); |
| 190 | if (!skb) |
| 191 | return NULL; |
| 192 | |
| 193 | nlh = nlmsg_put(skb, port, seq, type, sizeof(*dcb), flags); |
Thomas Graf | b3908e2 | 2012-06-13 22:40:15 +0000 | [diff] [blame] | 194 | BUG_ON(!nlh); |
Thomas Graf | 33a03aa | 2012-06-13 02:54:54 +0000 | [diff] [blame] | 195 | |
| 196 | dcb = nlmsg_data(nlh); |
| 197 | dcb->dcb_family = AF_UNSPEC; |
| 198 | dcb->cmd = cmd; |
| 199 | dcb->dcb_pad = 0; |
| 200 | |
| 201 | if (nlhp) |
| 202 | *nlhp = nlh; |
| 203 | |
| 204 | return skb; |
| 205 | } |
| 206 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 207 | static int dcbnl_getstate(struct net_device *netdev, struct nlmsghdr *nlh, |
| 208 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 209 | { |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 210 | /* if (!tb[DCB_ATTR_STATE] || !netdev->dcbnl_ops->getstate) */ |
| 211 | if (!netdev->dcbnl_ops->getstate) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 212 | return -EOPNOTSUPP; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 213 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 214 | return nla_put_u8(skb, DCB_ATTR_STATE, |
| 215 | netdev->dcbnl_ops->getstate(netdev)); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 216 | } |
| 217 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 218 | static int dcbnl_getpfccfg(struct net_device *netdev, struct nlmsghdr *nlh, |
| 219 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 220 | { |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 221 | struct nlattr *data[DCB_PFC_UP_ATTR_MAX + 1], *nest; |
| 222 | u8 value; |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 223 | int ret; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 224 | int i; |
| 225 | int getall = 0; |
| 226 | |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 227 | if (!tb[DCB_ATTR_PFC_CFG]) |
| 228 | return -EINVAL; |
| 229 | |
| 230 | if (!netdev->dcbnl_ops->getpfccfg) |
| 231 | return -EOPNOTSUPP; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 232 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 233 | ret = nla_parse_nested_deprecated(data, DCB_PFC_UP_ATTR_MAX, |
| 234 | tb[DCB_ATTR_PFC_CFG], |
| 235 | dcbnl_pfc_up_nest, NULL); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 236 | if (ret) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 237 | return ret; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 238 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 239 | nest = nla_nest_start_noflag(skb, DCB_ATTR_PFC_CFG); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 240 | if (!nest) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 241 | return -EMSGSIZE; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 242 | |
| 243 | if (data[DCB_PFC_UP_ATTR_ALL]) |
| 244 | getall = 1; |
| 245 | |
| 246 | for (i = DCB_PFC_UP_ATTR_0; i <= DCB_PFC_UP_ATTR_7; i++) { |
| 247 | if (!getall && !data[i]) |
| 248 | continue; |
| 249 | |
| 250 | netdev->dcbnl_ops->getpfccfg(netdev, i - DCB_PFC_UP_ATTR_0, |
| 251 | &value); |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 252 | ret = nla_put_u8(skb, i, value); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 253 | if (ret) { |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 254 | nla_nest_cancel(skb, nest); |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 255 | return ret; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 256 | } |
| 257 | } |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 258 | nla_nest_end(skb, nest); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 259 | |
| 260 | return 0; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 261 | } |
| 262 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 263 | static int dcbnl_getperm_hwaddr(struct net_device *netdev, struct nlmsghdr *nlh, |
| 264 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 265 | { |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 266 | u8 perm_addr[MAX_ADDR_LEN]; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 267 | |
| 268 | if (!netdev->dcbnl_ops->getpermhwaddr) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 269 | return -EOPNOTSUPP; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 270 | |
Mathias Krause | 29cd8ae | 2013-03-09 05:52:21 +0000 | [diff] [blame] | 271 | memset(perm_addr, 0, sizeof(perm_addr)); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 272 | netdev->dcbnl_ops->getpermhwaddr(netdev, perm_addr); |
| 273 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 274 | return nla_put(skb, DCB_ATTR_PERM_HWADDR, sizeof(perm_addr), perm_addr); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 275 | } |
| 276 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 277 | static int dcbnl_getcap(struct net_device *netdev, struct nlmsghdr *nlh, |
| 278 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Alexander Duyck | 4613218 | 2008-11-20 21:05:08 -0800 | [diff] [blame] | 279 | { |
Alexander Duyck | 4613218 | 2008-11-20 21:05:08 -0800 | [diff] [blame] | 280 | struct nlattr *data[DCB_CAP_ATTR_MAX + 1], *nest; |
| 281 | u8 value; |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 282 | int ret; |
Alexander Duyck | 4613218 | 2008-11-20 21:05:08 -0800 | [diff] [blame] | 283 | int i; |
| 284 | int getall = 0; |
| 285 | |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 286 | if (!tb[DCB_ATTR_CAP]) |
| 287 | return -EINVAL; |
| 288 | |
| 289 | if (!netdev->dcbnl_ops->getcap) |
| 290 | return -EOPNOTSUPP; |
Alexander Duyck | 4613218 | 2008-11-20 21:05:08 -0800 | [diff] [blame] | 291 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 292 | ret = nla_parse_nested_deprecated(data, DCB_CAP_ATTR_MAX, |
| 293 | tb[DCB_ATTR_CAP], dcbnl_cap_nest, |
| 294 | NULL); |
Alexander Duyck | 4613218 | 2008-11-20 21:05:08 -0800 | [diff] [blame] | 295 | if (ret) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 296 | return ret; |
Alexander Duyck | 4613218 | 2008-11-20 21:05:08 -0800 | [diff] [blame] | 297 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 298 | nest = nla_nest_start_noflag(skb, DCB_ATTR_CAP); |
Alexander Duyck | 4613218 | 2008-11-20 21:05:08 -0800 | [diff] [blame] | 299 | if (!nest) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 300 | return -EMSGSIZE; |
Alexander Duyck | 4613218 | 2008-11-20 21:05:08 -0800 | [diff] [blame] | 301 | |
| 302 | if (data[DCB_CAP_ATTR_ALL]) |
| 303 | getall = 1; |
| 304 | |
| 305 | for (i = DCB_CAP_ATTR_ALL+1; i <= DCB_CAP_ATTR_MAX; i++) { |
| 306 | if (!getall && !data[i]) |
| 307 | continue; |
| 308 | |
| 309 | if (!netdev->dcbnl_ops->getcap(netdev, i, &value)) { |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 310 | ret = nla_put_u8(skb, i, value); |
Alexander Duyck | 4613218 | 2008-11-20 21:05:08 -0800 | [diff] [blame] | 311 | if (ret) { |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 312 | nla_nest_cancel(skb, nest); |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 313 | return ret; |
Alexander Duyck | 4613218 | 2008-11-20 21:05:08 -0800 | [diff] [blame] | 314 | } |
| 315 | } |
| 316 | } |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 317 | nla_nest_end(skb, nest); |
Alexander Duyck | 4613218 | 2008-11-20 21:05:08 -0800 | [diff] [blame] | 318 | |
| 319 | return 0; |
Alexander Duyck | 4613218 | 2008-11-20 21:05:08 -0800 | [diff] [blame] | 320 | } |
| 321 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 322 | static int dcbnl_getnumtcs(struct net_device *netdev, struct nlmsghdr *nlh, |
| 323 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 324 | { |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 325 | struct nlattr *data[DCB_NUMTCS_ATTR_MAX + 1], *nest; |
| 326 | u8 value; |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 327 | int ret; |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 328 | int i; |
| 329 | int getall = 0; |
| 330 | |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 331 | if (!tb[DCB_ATTR_NUMTCS]) |
| 332 | return -EINVAL; |
| 333 | |
| 334 | if (!netdev->dcbnl_ops->getnumtcs) |
| 335 | return -EOPNOTSUPP; |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 336 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 337 | ret = nla_parse_nested_deprecated(data, DCB_NUMTCS_ATTR_MAX, |
| 338 | tb[DCB_ATTR_NUMTCS], |
| 339 | dcbnl_numtcs_nest, NULL); |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 340 | if (ret) |
| 341 | return ret; |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 342 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 343 | nest = nla_nest_start_noflag(skb, DCB_ATTR_NUMTCS); |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 344 | if (!nest) |
| 345 | return -EMSGSIZE; |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 346 | |
| 347 | if (data[DCB_NUMTCS_ATTR_ALL]) |
| 348 | getall = 1; |
| 349 | |
| 350 | for (i = DCB_NUMTCS_ATTR_ALL+1; i <= DCB_NUMTCS_ATTR_MAX; i++) { |
| 351 | if (!getall && !data[i]) |
| 352 | continue; |
| 353 | |
| 354 | ret = netdev->dcbnl_ops->getnumtcs(netdev, i, &value); |
| 355 | if (!ret) { |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 356 | ret = nla_put_u8(skb, i, value); |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 357 | if (ret) { |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 358 | nla_nest_cancel(skb, nest); |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 359 | return ret; |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 360 | } |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 361 | } else |
| 362 | return -EINVAL; |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 363 | } |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 364 | nla_nest_end(skb, nest); |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 365 | |
| 366 | return 0; |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 367 | } |
| 368 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 369 | static int dcbnl_setnumtcs(struct net_device *netdev, struct nlmsghdr *nlh, |
| 370 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 371 | { |
| 372 | struct nlattr *data[DCB_NUMTCS_ATTR_MAX + 1]; |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 373 | int ret; |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 374 | u8 value; |
| 375 | int i; |
| 376 | |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 377 | if (!tb[DCB_ATTR_NUMTCS]) |
| 378 | return -EINVAL; |
| 379 | |
| 380 | if (!netdev->dcbnl_ops->setnumtcs) |
| 381 | return -EOPNOTSUPP; |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 382 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 383 | ret = nla_parse_nested_deprecated(data, DCB_NUMTCS_ATTR_MAX, |
| 384 | tb[DCB_ATTR_NUMTCS], |
| 385 | dcbnl_numtcs_nest, NULL); |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 386 | if (ret) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 387 | return ret; |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 388 | |
| 389 | for (i = DCB_NUMTCS_ATTR_ALL+1; i <= DCB_NUMTCS_ATTR_MAX; i++) { |
| 390 | if (data[i] == NULL) |
| 391 | continue; |
| 392 | |
| 393 | value = nla_get_u8(data[i]); |
| 394 | |
| 395 | ret = netdev->dcbnl_ops->setnumtcs(netdev, i, value); |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 396 | if (ret) |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 397 | break; |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 398 | } |
| 399 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 400 | return nla_put_u8(skb, DCB_ATTR_NUMTCS, !!ret); |
Alexander Duyck | 33dbabc | 2008-11-20 21:08:19 -0800 | [diff] [blame] | 401 | } |
| 402 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 403 | static int dcbnl_getpfcstate(struct net_device *netdev, struct nlmsghdr *nlh, |
| 404 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Alexander Duyck | 0eb3aa9 | 2008-11-20 21:09:23 -0800 | [diff] [blame] | 405 | { |
Alexander Duyck | 0eb3aa9 | 2008-11-20 21:09:23 -0800 | [diff] [blame] | 406 | if (!netdev->dcbnl_ops->getpfcstate) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 407 | return -EOPNOTSUPP; |
Alexander Duyck | 0eb3aa9 | 2008-11-20 21:09:23 -0800 | [diff] [blame] | 408 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 409 | return nla_put_u8(skb, DCB_ATTR_PFC_STATE, |
| 410 | netdev->dcbnl_ops->getpfcstate(netdev)); |
Alexander Duyck | 0eb3aa9 | 2008-11-20 21:09:23 -0800 | [diff] [blame] | 411 | } |
| 412 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 413 | static int dcbnl_setpfcstate(struct net_device *netdev, struct nlmsghdr *nlh, |
| 414 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Alexander Duyck | 0eb3aa9 | 2008-11-20 21:09:23 -0800 | [diff] [blame] | 415 | { |
Alexander Duyck | 0eb3aa9 | 2008-11-20 21:09:23 -0800 | [diff] [blame] | 416 | u8 value; |
| 417 | |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 418 | if (!tb[DCB_ATTR_PFC_STATE]) |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 419 | return -EINVAL; |
Alexander Duyck | 0eb3aa9 | 2008-11-20 21:09:23 -0800 | [diff] [blame] | 420 | |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 421 | if (!netdev->dcbnl_ops->setpfcstate) |
| 422 | return -EOPNOTSUPP; |
| 423 | |
Alexander Duyck | 0eb3aa9 | 2008-11-20 21:09:23 -0800 | [diff] [blame] | 424 | value = nla_get_u8(tb[DCB_ATTR_PFC_STATE]); |
| 425 | |
| 426 | netdev->dcbnl_ops->setpfcstate(netdev, value); |
| 427 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 428 | return nla_put_u8(skb, DCB_ATTR_PFC_STATE, 0); |
Alexander Duyck | 0eb3aa9 | 2008-11-20 21:09:23 -0800 | [diff] [blame] | 429 | } |
| 430 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 431 | static int dcbnl_getapp(struct net_device *netdev, struct nlmsghdr *nlh, |
| 432 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 433 | { |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 434 | struct nlattr *app_nest; |
| 435 | struct nlattr *app_tb[DCB_APP_ATTR_MAX + 1]; |
| 436 | u16 id; |
| 437 | u8 up, idtype; |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 438 | int ret; |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 439 | |
John Fastabend | 3dce38a | 2011-01-21 16:35:18 +0000 | [diff] [blame] | 440 | if (!tb[DCB_ATTR_APP]) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 441 | return -EINVAL; |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 442 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 443 | ret = nla_parse_nested_deprecated(app_tb, DCB_APP_ATTR_MAX, |
| 444 | tb[DCB_ATTR_APP], dcbnl_app_nest, |
| 445 | NULL); |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 446 | if (ret) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 447 | return ret; |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 448 | |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 449 | /* all must be non-null */ |
| 450 | if ((!app_tb[DCB_APP_ATTR_IDTYPE]) || |
| 451 | (!app_tb[DCB_APP_ATTR_ID])) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 452 | return -EINVAL; |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 453 | |
| 454 | /* either by eth type or by socket number */ |
| 455 | idtype = nla_get_u8(app_tb[DCB_APP_ATTR_IDTYPE]); |
| 456 | if ((idtype != DCB_APP_IDTYPE_ETHTYPE) && |
| 457 | (idtype != DCB_APP_IDTYPE_PORTNUM)) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 458 | return -EINVAL; |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 459 | |
| 460 | id = nla_get_u16(app_tb[DCB_APP_ATTR_ID]); |
John Fastabend | 3dce38a | 2011-01-21 16:35:18 +0000 | [diff] [blame] | 461 | |
| 462 | if (netdev->dcbnl_ops->getapp) { |
Anish Bhatt | c265947 | 2014-07-16 22:32:39 -0700 | [diff] [blame] | 463 | ret = netdev->dcbnl_ops->getapp(netdev, idtype, id); |
| 464 | if (ret < 0) |
| 465 | return ret; |
| 466 | else |
| 467 | up = ret; |
John Fastabend | 3dce38a | 2011-01-21 16:35:18 +0000 | [diff] [blame] | 468 | } else { |
| 469 | struct dcb_app app = { |
| 470 | .selector = idtype, |
| 471 | .protocol = id, |
| 472 | }; |
| 473 | up = dcb_getapp(netdev, &app); |
| 474 | } |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 475 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 476 | app_nest = nla_nest_start_noflag(skb, DCB_ATTR_APP); |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 477 | if (!app_nest) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 478 | return -EMSGSIZE; |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 479 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 480 | ret = nla_put_u8(skb, DCB_APP_ATTR_IDTYPE, idtype); |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 481 | if (ret) |
| 482 | goto out_cancel; |
| 483 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 484 | ret = nla_put_u16(skb, DCB_APP_ATTR_ID, id); |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 485 | if (ret) |
| 486 | goto out_cancel; |
| 487 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 488 | ret = nla_put_u8(skb, DCB_APP_ATTR_PRIORITY, up); |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 489 | if (ret) |
| 490 | goto out_cancel; |
| 491 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 492 | nla_nest_end(skb, app_nest); |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 493 | |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 494 | return 0; |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 495 | |
| 496 | out_cancel: |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 497 | nla_nest_cancel(skb, app_nest); |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 498 | return ret; |
| 499 | } |
| 500 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 501 | static int dcbnl_setapp(struct net_device *netdev, struct nlmsghdr *nlh, |
| 502 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 503 | { |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 504 | int ret; |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 505 | u16 id; |
| 506 | u8 up, idtype; |
| 507 | struct nlattr *app_tb[DCB_APP_ATTR_MAX + 1]; |
| 508 | |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 509 | if (!tb[DCB_ATTR_APP]) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 510 | return -EINVAL; |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 511 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 512 | ret = nla_parse_nested_deprecated(app_tb, DCB_APP_ATTR_MAX, |
| 513 | tb[DCB_ATTR_APP], dcbnl_app_nest, |
| 514 | NULL); |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 515 | if (ret) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 516 | return ret; |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 517 | |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 518 | /* all must be non-null */ |
| 519 | if ((!app_tb[DCB_APP_ATTR_IDTYPE]) || |
| 520 | (!app_tb[DCB_APP_ATTR_ID]) || |
| 521 | (!app_tb[DCB_APP_ATTR_PRIORITY])) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 522 | return -EINVAL; |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 523 | |
| 524 | /* either by eth type or by socket number */ |
| 525 | idtype = nla_get_u8(app_tb[DCB_APP_ATTR_IDTYPE]); |
| 526 | if ((idtype != DCB_APP_IDTYPE_ETHTYPE) && |
| 527 | (idtype != DCB_APP_IDTYPE_PORTNUM)) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 528 | return -EINVAL; |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 529 | |
| 530 | id = nla_get_u16(app_tb[DCB_APP_ATTR_ID]); |
| 531 | up = nla_get_u8(app_tb[DCB_APP_ATTR_PRIORITY]); |
| 532 | |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 533 | if (netdev->dcbnl_ops->setapp) { |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 534 | ret = netdev->dcbnl_ops->setapp(netdev, idtype, id, up); |
Anish Bhatt | c265947 | 2014-07-16 22:32:39 -0700 | [diff] [blame] | 535 | if (ret < 0) |
| 536 | return ret; |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 537 | } else { |
| 538 | struct dcb_app app; |
| 539 | app.selector = idtype; |
| 540 | app.protocol = id; |
| 541 | app.priority = up; |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 542 | ret = dcb_setapp(netdev, &app); |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 543 | } |
| 544 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 545 | ret = nla_put_u8(skb, DCB_ATTR_APP, ret); |
John Fastabend | 0815798 | 2012-04-20 09:49:23 +0000 | [diff] [blame] | 546 | dcbnl_cee_notify(netdev, RTM_SETDCB, DCB_CMD_SAPP, seq, 0); |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 547 | |
Yi Zou | 5794968 | 2009-08-31 12:33:40 +0000 | [diff] [blame] | 548 | return ret; |
| 549 | } |
| 550 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 551 | static int __dcbnl_pg_getcfg(struct net_device *netdev, struct nlmsghdr *nlh, |
| 552 | struct nlattr **tb, struct sk_buff *skb, int dir) |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 553 | { |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 554 | struct nlattr *pg_nest, *param_nest, *data; |
| 555 | struct nlattr *pg_tb[DCB_PG_ATTR_MAX + 1]; |
| 556 | struct nlattr *param_tb[DCB_TC_ATTR_PARAM_MAX + 1]; |
| 557 | u8 prio, pgid, tc_pct, up_map; |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 558 | int ret; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 559 | int getall = 0; |
| 560 | int i; |
| 561 | |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 562 | if (!tb[DCB_ATTR_PG_CFG]) |
| 563 | return -EINVAL; |
| 564 | |
| 565 | if (!netdev->dcbnl_ops->getpgtccfgtx || |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 566 | !netdev->dcbnl_ops->getpgtccfgrx || |
| 567 | !netdev->dcbnl_ops->getpgbwgcfgtx || |
| 568 | !netdev->dcbnl_ops->getpgbwgcfgrx) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 569 | return -EOPNOTSUPP; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 570 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 571 | ret = nla_parse_nested_deprecated(pg_tb, DCB_PG_ATTR_MAX, |
| 572 | tb[DCB_ATTR_PG_CFG], dcbnl_pg_nest, |
| 573 | NULL); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 574 | if (ret) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 575 | return ret; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 576 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 577 | pg_nest = nla_nest_start_noflag(skb, DCB_ATTR_PG_CFG); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 578 | if (!pg_nest) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 579 | return -EMSGSIZE; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 580 | |
| 581 | if (pg_tb[DCB_PG_ATTR_TC_ALL]) |
| 582 | getall = 1; |
| 583 | |
| 584 | for (i = DCB_PG_ATTR_TC_0; i <= DCB_PG_ATTR_TC_7; i++) { |
| 585 | if (!getall && !pg_tb[i]) |
| 586 | continue; |
| 587 | |
| 588 | if (pg_tb[DCB_PG_ATTR_TC_ALL]) |
| 589 | data = pg_tb[DCB_PG_ATTR_TC_ALL]; |
| 590 | else |
| 591 | data = pg_tb[i]; |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 592 | ret = nla_parse_nested_deprecated(param_tb, |
| 593 | DCB_TC_ATTR_PARAM_MAX, data, |
| 594 | dcbnl_tc_param_nest, NULL); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 595 | if (ret) |
| 596 | goto err_pg; |
| 597 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 598 | param_nest = nla_nest_start_noflag(skb, i); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 599 | if (!param_nest) |
| 600 | goto err_pg; |
| 601 | |
| 602 | pgid = DCB_ATTR_VALUE_UNDEFINED; |
| 603 | prio = DCB_ATTR_VALUE_UNDEFINED; |
| 604 | tc_pct = DCB_ATTR_VALUE_UNDEFINED; |
| 605 | up_map = DCB_ATTR_VALUE_UNDEFINED; |
| 606 | |
| 607 | if (dir) { |
| 608 | /* Rx */ |
| 609 | netdev->dcbnl_ops->getpgtccfgrx(netdev, |
| 610 | i - DCB_PG_ATTR_TC_0, &prio, |
| 611 | &pgid, &tc_pct, &up_map); |
| 612 | } else { |
| 613 | /* Tx */ |
| 614 | netdev->dcbnl_ops->getpgtccfgtx(netdev, |
| 615 | i - DCB_PG_ATTR_TC_0, &prio, |
| 616 | &pgid, &tc_pct, &up_map); |
| 617 | } |
| 618 | |
| 619 | if (param_tb[DCB_TC_ATTR_PARAM_PGID] || |
| 620 | param_tb[DCB_TC_ATTR_PARAM_ALL]) { |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 621 | ret = nla_put_u8(skb, |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 622 | DCB_TC_ATTR_PARAM_PGID, pgid); |
| 623 | if (ret) |
| 624 | goto err_param; |
| 625 | } |
| 626 | if (param_tb[DCB_TC_ATTR_PARAM_UP_MAPPING] || |
| 627 | param_tb[DCB_TC_ATTR_PARAM_ALL]) { |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 628 | ret = nla_put_u8(skb, |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 629 | DCB_TC_ATTR_PARAM_UP_MAPPING, up_map); |
| 630 | if (ret) |
| 631 | goto err_param; |
| 632 | } |
| 633 | if (param_tb[DCB_TC_ATTR_PARAM_STRICT_PRIO] || |
| 634 | param_tb[DCB_TC_ATTR_PARAM_ALL]) { |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 635 | ret = nla_put_u8(skb, |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 636 | DCB_TC_ATTR_PARAM_STRICT_PRIO, prio); |
| 637 | if (ret) |
| 638 | goto err_param; |
| 639 | } |
| 640 | if (param_tb[DCB_TC_ATTR_PARAM_BW_PCT] || |
| 641 | param_tb[DCB_TC_ATTR_PARAM_ALL]) { |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 642 | ret = nla_put_u8(skb, DCB_TC_ATTR_PARAM_BW_PCT, |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 643 | tc_pct); |
| 644 | if (ret) |
| 645 | goto err_param; |
| 646 | } |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 647 | nla_nest_end(skb, param_nest); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 648 | } |
| 649 | |
| 650 | if (pg_tb[DCB_PG_ATTR_BW_ID_ALL]) |
| 651 | getall = 1; |
| 652 | else |
| 653 | getall = 0; |
| 654 | |
| 655 | for (i = DCB_PG_ATTR_BW_ID_0; i <= DCB_PG_ATTR_BW_ID_7; i++) { |
| 656 | if (!getall && !pg_tb[i]) |
| 657 | continue; |
| 658 | |
| 659 | tc_pct = DCB_ATTR_VALUE_UNDEFINED; |
| 660 | |
| 661 | if (dir) { |
| 662 | /* Rx */ |
| 663 | netdev->dcbnl_ops->getpgbwgcfgrx(netdev, |
| 664 | i - DCB_PG_ATTR_BW_ID_0, &tc_pct); |
| 665 | } else { |
| 666 | /* Tx */ |
| 667 | netdev->dcbnl_ops->getpgbwgcfgtx(netdev, |
| 668 | i - DCB_PG_ATTR_BW_ID_0, &tc_pct); |
| 669 | } |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 670 | ret = nla_put_u8(skb, i, tc_pct); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 671 | if (ret) |
| 672 | goto err_pg; |
| 673 | } |
| 674 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 675 | nla_nest_end(skb, pg_nest); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 676 | |
| 677 | return 0; |
| 678 | |
| 679 | err_param: |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 680 | nla_nest_cancel(skb, param_nest); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 681 | err_pg: |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 682 | nla_nest_cancel(skb, pg_nest); |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 683 | |
| 684 | return -EMSGSIZE; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 685 | } |
| 686 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 687 | static int dcbnl_pgtx_getcfg(struct net_device *netdev, struct nlmsghdr *nlh, |
| 688 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 689 | { |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 690 | return __dcbnl_pg_getcfg(netdev, nlh, tb, skb, 0); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 691 | } |
| 692 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 693 | static int dcbnl_pgrx_getcfg(struct net_device *netdev, struct nlmsghdr *nlh, |
| 694 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 695 | { |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 696 | return __dcbnl_pg_getcfg(netdev, nlh, tb, skb, 1); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 697 | } |
| 698 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 699 | static int dcbnl_setstate(struct net_device *netdev, struct nlmsghdr *nlh, |
| 700 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 701 | { |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 702 | u8 value; |
| 703 | |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 704 | if (!tb[DCB_ATTR_STATE]) |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 705 | return -EINVAL; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 706 | |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 707 | if (!netdev->dcbnl_ops->setstate) |
| 708 | return -EOPNOTSUPP; |
| 709 | |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 710 | value = nla_get_u8(tb[DCB_ATTR_STATE]); |
| 711 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 712 | return nla_put_u8(skb, DCB_ATTR_STATE, |
| 713 | netdev->dcbnl_ops->setstate(netdev, value)); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 714 | } |
| 715 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 716 | static int dcbnl_setpfccfg(struct net_device *netdev, struct nlmsghdr *nlh, |
| 717 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 718 | { |
| 719 | struct nlattr *data[DCB_PFC_UP_ATTR_MAX + 1]; |
| 720 | int i; |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 721 | int ret; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 722 | u8 value; |
| 723 | |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 724 | if (!tb[DCB_ATTR_PFC_CFG]) |
| 725 | return -EINVAL; |
| 726 | |
| 727 | if (!netdev->dcbnl_ops->setpfccfg) |
| 728 | return -EOPNOTSUPP; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 729 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 730 | ret = nla_parse_nested_deprecated(data, DCB_PFC_UP_ATTR_MAX, |
| 731 | tb[DCB_ATTR_PFC_CFG], |
| 732 | dcbnl_pfc_up_nest, NULL); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 733 | if (ret) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 734 | return ret; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 735 | |
| 736 | for (i = DCB_PFC_UP_ATTR_0; i <= DCB_PFC_UP_ATTR_7; i++) { |
| 737 | if (data[i] == NULL) |
| 738 | continue; |
| 739 | value = nla_get_u8(data[i]); |
| 740 | netdev->dcbnl_ops->setpfccfg(netdev, |
| 741 | data[i]->nla_type - DCB_PFC_UP_ATTR_0, value); |
| 742 | } |
| 743 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 744 | return nla_put_u8(skb, DCB_ATTR_PFC_CFG, 0); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 745 | } |
| 746 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 747 | static int dcbnl_setall(struct net_device *netdev, struct nlmsghdr *nlh, |
| 748 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 749 | { |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 750 | int ret; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 751 | |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 752 | if (!tb[DCB_ATTR_SET_ALL]) |
| 753 | return -EINVAL; |
| 754 | |
| 755 | if (!netdev->dcbnl_ops->setall) |
| 756 | return -EOPNOTSUPP; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 757 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 758 | ret = nla_put_u8(skb, DCB_ATTR_SET_ALL, |
| 759 | netdev->dcbnl_ops->setall(netdev)); |
John Fastabend | 0815798 | 2012-04-20 09:49:23 +0000 | [diff] [blame] | 760 | dcbnl_cee_notify(netdev, RTM_SETDCB, DCB_CMD_SET_ALL, seq, 0); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 761 | |
| 762 | return ret; |
| 763 | } |
| 764 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 765 | static int __dcbnl_pg_setcfg(struct net_device *netdev, struct nlmsghdr *nlh, |
| 766 | u32 seq, struct nlattr **tb, struct sk_buff *skb, |
| 767 | int dir) |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 768 | { |
| 769 | struct nlattr *pg_tb[DCB_PG_ATTR_MAX + 1]; |
| 770 | struct nlattr *param_tb[DCB_TC_ATTR_PARAM_MAX + 1]; |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 771 | int ret; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 772 | int i; |
| 773 | u8 pgid; |
| 774 | u8 up_map; |
| 775 | u8 prio; |
| 776 | u8 tc_pct; |
| 777 | |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 778 | if (!tb[DCB_ATTR_PG_CFG]) |
| 779 | return -EINVAL; |
| 780 | |
| 781 | if (!netdev->dcbnl_ops->setpgtccfgtx || |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 782 | !netdev->dcbnl_ops->setpgtccfgrx || |
| 783 | !netdev->dcbnl_ops->setpgbwgcfgtx || |
| 784 | !netdev->dcbnl_ops->setpgbwgcfgrx) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 785 | return -EOPNOTSUPP; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 786 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 787 | ret = nla_parse_nested_deprecated(pg_tb, DCB_PG_ATTR_MAX, |
| 788 | tb[DCB_ATTR_PG_CFG], dcbnl_pg_nest, |
| 789 | NULL); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 790 | if (ret) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 791 | return ret; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 792 | |
| 793 | for (i = DCB_PG_ATTR_TC_0; i <= DCB_PG_ATTR_TC_7; i++) { |
| 794 | if (!pg_tb[i]) |
| 795 | continue; |
| 796 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 797 | ret = nla_parse_nested_deprecated(param_tb, |
| 798 | DCB_TC_ATTR_PARAM_MAX, |
| 799 | pg_tb[i], |
| 800 | dcbnl_tc_param_nest, NULL); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 801 | if (ret) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 802 | return ret; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 803 | |
| 804 | pgid = DCB_ATTR_VALUE_UNDEFINED; |
| 805 | prio = DCB_ATTR_VALUE_UNDEFINED; |
| 806 | tc_pct = DCB_ATTR_VALUE_UNDEFINED; |
| 807 | up_map = DCB_ATTR_VALUE_UNDEFINED; |
| 808 | |
| 809 | if (param_tb[DCB_TC_ATTR_PARAM_STRICT_PRIO]) |
| 810 | prio = |
| 811 | nla_get_u8(param_tb[DCB_TC_ATTR_PARAM_STRICT_PRIO]); |
| 812 | |
| 813 | if (param_tb[DCB_TC_ATTR_PARAM_PGID]) |
| 814 | pgid = nla_get_u8(param_tb[DCB_TC_ATTR_PARAM_PGID]); |
| 815 | |
| 816 | if (param_tb[DCB_TC_ATTR_PARAM_BW_PCT]) |
| 817 | tc_pct = nla_get_u8(param_tb[DCB_TC_ATTR_PARAM_BW_PCT]); |
| 818 | |
| 819 | if (param_tb[DCB_TC_ATTR_PARAM_UP_MAPPING]) |
| 820 | up_map = |
| 821 | nla_get_u8(param_tb[DCB_TC_ATTR_PARAM_UP_MAPPING]); |
| 822 | |
| 823 | /* dir: Tx = 0, Rx = 1 */ |
| 824 | if (dir) { |
| 825 | /* Rx */ |
| 826 | netdev->dcbnl_ops->setpgtccfgrx(netdev, |
| 827 | i - DCB_PG_ATTR_TC_0, |
| 828 | prio, pgid, tc_pct, up_map); |
| 829 | } else { |
| 830 | /* Tx */ |
| 831 | netdev->dcbnl_ops->setpgtccfgtx(netdev, |
| 832 | i - DCB_PG_ATTR_TC_0, |
| 833 | prio, pgid, tc_pct, up_map); |
| 834 | } |
| 835 | } |
| 836 | |
| 837 | for (i = DCB_PG_ATTR_BW_ID_0; i <= DCB_PG_ATTR_BW_ID_7; i++) { |
| 838 | if (!pg_tb[i]) |
| 839 | continue; |
| 840 | |
| 841 | tc_pct = nla_get_u8(pg_tb[i]); |
| 842 | |
| 843 | /* dir: Tx = 0, Rx = 1 */ |
| 844 | if (dir) { |
| 845 | /* Rx */ |
| 846 | netdev->dcbnl_ops->setpgbwgcfgrx(netdev, |
| 847 | i - DCB_PG_ATTR_BW_ID_0, tc_pct); |
| 848 | } else { |
| 849 | /* Tx */ |
| 850 | netdev->dcbnl_ops->setpgbwgcfgtx(netdev, |
| 851 | i - DCB_PG_ATTR_BW_ID_0, tc_pct); |
| 852 | } |
| 853 | } |
| 854 | |
John Fastabend | bb1dfef | 2012-06-20 19:56:21 +0000 | [diff] [blame] | 855 | return nla_put_u8(skb, DCB_ATTR_PG_CFG, 0); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 856 | } |
| 857 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 858 | static int dcbnl_pgtx_setcfg(struct net_device *netdev, struct nlmsghdr *nlh, |
| 859 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 860 | { |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 861 | return __dcbnl_pg_setcfg(netdev, nlh, seq, tb, skb, 0); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 862 | } |
| 863 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 864 | static int dcbnl_pgrx_setcfg(struct net_device *netdev, struct nlmsghdr *nlh, |
| 865 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 866 | { |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 867 | return __dcbnl_pg_setcfg(netdev, nlh, seq, tb, skb, 1); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 868 | } |
| 869 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 870 | static int dcbnl_bcn_getcfg(struct net_device *netdev, struct nlmsghdr *nlh, |
| 871 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 872 | { |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 873 | struct nlattr *bcn_nest; |
| 874 | struct nlattr *bcn_tb[DCB_BCN_ATTR_MAX + 1]; |
| 875 | u8 value_byte; |
| 876 | u32 value_integer; |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 877 | int ret; |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 878 | bool getall = false; |
| 879 | int i; |
| 880 | |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 881 | if (!tb[DCB_ATTR_BCN]) |
| 882 | return -EINVAL; |
| 883 | |
| 884 | if (!netdev->dcbnl_ops->getbcnrp || |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 885 | !netdev->dcbnl_ops->getbcncfg) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 886 | return -EOPNOTSUPP; |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 887 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 888 | ret = nla_parse_nested_deprecated(bcn_tb, DCB_BCN_ATTR_MAX, |
| 889 | tb[DCB_ATTR_BCN], dcbnl_bcn_nest, |
| 890 | NULL); |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 891 | if (ret) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 892 | return ret; |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 893 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 894 | bcn_nest = nla_nest_start_noflag(skb, DCB_ATTR_BCN); |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 895 | if (!bcn_nest) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 896 | return -EMSGSIZE; |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 897 | |
| 898 | if (bcn_tb[DCB_BCN_ATTR_ALL]) |
| 899 | getall = true; |
| 900 | |
| 901 | for (i = DCB_BCN_ATTR_RP_0; i <= DCB_BCN_ATTR_RP_7; i++) { |
| 902 | if (!getall && !bcn_tb[i]) |
| 903 | continue; |
| 904 | |
| 905 | netdev->dcbnl_ops->getbcnrp(netdev, i - DCB_BCN_ATTR_RP_0, |
| 906 | &value_byte); |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 907 | ret = nla_put_u8(skb, i, value_byte); |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 908 | if (ret) |
| 909 | goto err_bcn; |
| 910 | } |
| 911 | |
Don Skidmore | f4314e8 | 2008-12-21 20:10:29 -0800 | [diff] [blame] | 912 | for (i = DCB_BCN_ATTR_BCNA_0; i <= DCB_BCN_ATTR_RI; i++) { |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 913 | if (!getall && !bcn_tb[i]) |
| 914 | continue; |
| 915 | |
| 916 | netdev->dcbnl_ops->getbcncfg(netdev, i, |
| 917 | &value_integer); |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 918 | ret = nla_put_u32(skb, i, value_integer); |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 919 | if (ret) |
| 920 | goto err_bcn; |
| 921 | } |
| 922 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 923 | nla_nest_end(skb, bcn_nest); |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 924 | |
| 925 | return 0; |
| 926 | |
| 927 | err_bcn: |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 928 | nla_nest_cancel(skb, bcn_nest); |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 929 | return ret; |
| 930 | } |
| 931 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 932 | static int dcbnl_bcn_setcfg(struct net_device *netdev, struct nlmsghdr *nlh, |
| 933 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 934 | { |
| 935 | struct nlattr *data[DCB_BCN_ATTR_MAX + 1]; |
| 936 | int i; |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 937 | int ret; |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 938 | u8 value_byte; |
| 939 | u32 value_int; |
| 940 | |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 941 | if (!tb[DCB_ATTR_BCN]) |
| 942 | return -EINVAL; |
| 943 | |
| 944 | if (!netdev->dcbnl_ops->setbcncfg || |
Joe Perches | f64f9e7 | 2009-11-29 16:55:45 -0800 | [diff] [blame] | 945 | !netdev->dcbnl_ops->setbcnrp) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 946 | return -EOPNOTSUPP; |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 947 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 948 | ret = nla_parse_nested_deprecated(data, DCB_BCN_ATTR_MAX, |
| 949 | tb[DCB_ATTR_BCN], dcbnl_pfc_up_nest, |
| 950 | NULL); |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 951 | if (ret) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 952 | return ret; |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 953 | |
| 954 | for (i = DCB_BCN_ATTR_RP_0; i <= DCB_BCN_ATTR_RP_7; i++) { |
| 955 | if (data[i] == NULL) |
| 956 | continue; |
| 957 | value_byte = nla_get_u8(data[i]); |
| 958 | netdev->dcbnl_ops->setbcnrp(netdev, |
| 959 | data[i]->nla_type - DCB_BCN_ATTR_RP_0, value_byte); |
| 960 | } |
| 961 | |
Don Skidmore | f4314e8 | 2008-12-21 20:10:29 -0800 | [diff] [blame] | 962 | for (i = DCB_BCN_ATTR_BCNA_0; i <= DCB_BCN_ATTR_RI; i++) { |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 963 | if (data[i] == NULL) |
| 964 | continue; |
| 965 | value_int = nla_get_u32(data[i]); |
| 966 | netdev->dcbnl_ops->setbcncfg(netdev, |
| 967 | i, value_int); |
| 968 | } |
| 969 | |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 970 | return nla_put_u8(skb, DCB_ATTR_BCN, 0); |
Alexander Duyck | 859ee3c | 2008-11-20 21:10:23 -0800 | [diff] [blame] | 971 | } |
| 972 | |
Shmulik Ravid | dc6ed1d | 2011-02-27 05:04:38 +0000 | [diff] [blame] | 973 | static int dcbnl_build_peer_app(struct net_device *netdev, struct sk_buff* skb, |
| 974 | int app_nested_type, int app_info_type, |
| 975 | int app_entry_type) |
Shmulik Ravid | eed8471 | 2011-02-27 05:04:31 +0000 | [diff] [blame] | 976 | { |
| 977 | struct dcb_peer_app_info info; |
| 978 | struct dcb_app *table = NULL; |
| 979 | const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops; |
| 980 | u16 app_count; |
| 981 | int err; |
| 982 | |
| 983 | |
| 984 | /** |
| 985 | * retrieve the peer app configuration form the driver. If the driver |
| 986 | * handlers fail exit without doing anything |
| 987 | */ |
| 988 | err = ops->peer_getappinfo(netdev, &info, &app_count); |
| 989 | if (!err && app_count) { |
Kees Cook | 6da2ec5 | 2018-06-12 13:55:00 -0700 | [diff] [blame] | 990 | table = kmalloc_array(app_count, sizeof(struct dcb_app), |
| 991 | GFP_KERNEL); |
Shmulik Ravid | eed8471 | 2011-02-27 05:04:31 +0000 | [diff] [blame] | 992 | if (!table) |
| 993 | return -ENOMEM; |
| 994 | |
| 995 | err = ops->peer_getapptable(netdev, table); |
| 996 | } |
| 997 | |
| 998 | if (!err) { |
| 999 | u16 i; |
| 1000 | struct nlattr *app; |
| 1001 | |
| 1002 | /** |
| 1003 | * build the message, from here on the only possible failure |
| 1004 | * is due to the skb size |
| 1005 | */ |
| 1006 | err = -EMSGSIZE; |
| 1007 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 1008 | app = nla_nest_start_noflag(skb, app_nested_type); |
Shmulik Ravid | eed8471 | 2011-02-27 05:04:31 +0000 | [diff] [blame] | 1009 | if (!app) |
| 1010 | goto nla_put_failure; |
| 1011 | |
David S. Miller | 1eb4c97 | 2012-04-01 20:03:01 -0400 | [diff] [blame] | 1012 | if (app_info_type && |
| 1013 | nla_put(skb, app_info_type, sizeof(info), &info)) |
| 1014 | goto nla_put_failure; |
Shmulik Ravid | dc6ed1d | 2011-02-27 05:04:38 +0000 | [diff] [blame] | 1015 | |
David S. Miller | 1eb4c97 | 2012-04-01 20:03:01 -0400 | [diff] [blame] | 1016 | for (i = 0; i < app_count; i++) { |
| 1017 | if (nla_put(skb, app_entry_type, sizeof(struct dcb_app), |
| 1018 | &table[i])) |
| 1019 | goto nla_put_failure; |
| 1020 | } |
Shmulik Ravid | eed8471 | 2011-02-27 05:04:31 +0000 | [diff] [blame] | 1021 | nla_nest_end(skb, app); |
| 1022 | } |
| 1023 | err = 0; |
| 1024 | |
| 1025 | nla_put_failure: |
| 1026 | kfree(table); |
| 1027 | return err; |
| 1028 | } |
John Fastabend | 3e29027 | 2010-12-30 09:25:46 +0000 | [diff] [blame] | 1029 | |
Shani Michaeli | c9368247 | 2015-03-05 20:16:11 +0200 | [diff] [blame] | 1030 | /* Handle IEEE 802.1Qaz/802.1Qau/802.1Qbb GET commands. */ |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1031 | static int dcbnl_ieee_fill(struct sk_buff *skb, struct net_device *netdev) |
John Fastabend | 3e29027 | 2010-12-30 09:25:46 +0000 | [diff] [blame] | 1032 | { |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 1033 | struct nlattr *ieee, *app; |
| 1034 | struct dcb_app_type *itr; |
John Fastabend | 3e29027 | 2010-12-30 09:25:46 +0000 | [diff] [blame] | 1035 | const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops; |
John Fastabend | c7797ba | 2011-06-21 07:34:31 +0000 | [diff] [blame] | 1036 | int dcbx; |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1037 | int err; |
John Fastabend | 3e29027 | 2010-12-30 09:25:46 +0000 | [diff] [blame] | 1038 | |
David S. Miller | 1eb4c97 | 2012-04-01 20:03:01 -0400 | [diff] [blame] | 1039 | if (nla_put_string(skb, DCB_ATTR_IFNAME, netdev->name)) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1040 | return -EMSGSIZE; |
| 1041 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 1042 | ieee = nla_nest_start_noflag(skb, DCB_ATTR_IEEE); |
John Fastabend | 3e29027 | 2010-12-30 09:25:46 +0000 | [diff] [blame] | 1043 | if (!ieee) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1044 | return -EMSGSIZE; |
John Fastabend | 3e29027 | 2010-12-30 09:25:46 +0000 | [diff] [blame] | 1045 | |
| 1046 | if (ops->ieee_getets) { |
| 1047 | struct ieee_ets ets; |
Mathias Krause | 29cd8ae | 2013-03-09 05:52:21 +0000 | [diff] [blame] | 1048 | memset(&ets, 0, sizeof(ets)); |
John Fastabend | 3e29027 | 2010-12-30 09:25:46 +0000 | [diff] [blame] | 1049 | err = ops->ieee_getets(netdev, &ets); |
David S. Miller | 1eb4c97 | 2012-04-01 20:03:01 -0400 | [diff] [blame] | 1050 | if (!err && |
| 1051 | nla_put(skb, DCB_ATTR_IEEE_ETS, sizeof(ets), &ets)) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1052 | return -EMSGSIZE; |
John Fastabend | 3e29027 | 2010-12-30 09:25:46 +0000 | [diff] [blame] | 1053 | } |
| 1054 | |
Amir Vadai | 08f10af | 2012-04-04 21:33:30 +0000 | [diff] [blame] | 1055 | if (ops->ieee_getmaxrate) { |
| 1056 | struct ieee_maxrate maxrate; |
Mathias Krause | 29cd8ae | 2013-03-09 05:52:21 +0000 | [diff] [blame] | 1057 | memset(&maxrate, 0, sizeof(maxrate)); |
Amir Vadai | 08f10af | 2012-04-04 21:33:30 +0000 | [diff] [blame] | 1058 | err = ops->ieee_getmaxrate(netdev, &maxrate); |
| 1059 | if (!err) { |
| 1060 | err = nla_put(skb, DCB_ATTR_IEEE_MAXRATE, |
| 1061 | sizeof(maxrate), &maxrate); |
| 1062 | if (err) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1063 | return -EMSGSIZE; |
Amir Vadai | 08f10af | 2012-04-04 21:33:30 +0000 | [diff] [blame] | 1064 | } |
| 1065 | } |
| 1066 | |
Shani Michaeli | c9368247 | 2015-03-05 20:16:11 +0200 | [diff] [blame] | 1067 | if (ops->ieee_getqcn) { |
| 1068 | struct ieee_qcn qcn; |
| 1069 | |
| 1070 | memset(&qcn, 0, sizeof(qcn)); |
| 1071 | err = ops->ieee_getqcn(netdev, &qcn); |
| 1072 | if (!err) { |
| 1073 | err = nla_put(skb, DCB_ATTR_IEEE_QCN, |
| 1074 | sizeof(qcn), &qcn); |
| 1075 | if (err) |
| 1076 | return -EMSGSIZE; |
| 1077 | } |
| 1078 | } |
| 1079 | |
| 1080 | if (ops->ieee_getqcnstats) { |
| 1081 | struct ieee_qcn_stats qcn_stats; |
| 1082 | |
| 1083 | memset(&qcn_stats, 0, sizeof(qcn_stats)); |
| 1084 | err = ops->ieee_getqcnstats(netdev, &qcn_stats); |
| 1085 | if (!err) { |
| 1086 | err = nla_put(skb, DCB_ATTR_IEEE_QCN_STATS, |
| 1087 | sizeof(qcn_stats), &qcn_stats); |
| 1088 | if (err) |
| 1089 | return -EMSGSIZE; |
| 1090 | } |
| 1091 | } |
| 1092 | |
John Fastabend | 3e29027 | 2010-12-30 09:25:46 +0000 | [diff] [blame] | 1093 | if (ops->ieee_getpfc) { |
| 1094 | struct ieee_pfc pfc; |
Mathias Krause | 29cd8ae | 2013-03-09 05:52:21 +0000 | [diff] [blame] | 1095 | memset(&pfc, 0, sizeof(pfc)); |
John Fastabend | 3e29027 | 2010-12-30 09:25:46 +0000 | [diff] [blame] | 1096 | err = ops->ieee_getpfc(netdev, &pfc); |
David S. Miller | 1eb4c97 | 2012-04-01 20:03:01 -0400 | [diff] [blame] | 1097 | if (!err && |
| 1098 | nla_put(skb, DCB_ATTR_IEEE_PFC, sizeof(pfc), &pfc)) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1099 | return -EMSGSIZE; |
John Fastabend | 3e29027 | 2010-12-30 09:25:46 +0000 | [diff] [blame] | 1100 | } |
| 1101 | |
Huy Nguyen | e549f6f | 2018-02-22 11:57:10 -0600 | [diff] [blame] | 1102 | if (ops->dcbnl_getbuffer) { |
| 1103 | struct dcbnl_buffer buffer; |
| 1104 | |
| 1105 | memset(&buffer, 0, sizeof(buffer)); |
| 1106 | err = ops->dcbnl_getbuffer(netdev, &buffer); |
| 1107 | if (!err && |
| 1108 | nla_put(skb, DCB_ATTR_DCB_BUFFER, sizeof(buffer), &buffer)) |
| 1109 | return -EMSGSIZE; |
| 1110 | } |
| 1111 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 1112 | app = nla_nest_start_noflag(skb, DCB_ATTR_IEEE_APP_TABLE); |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 1113 | if (!app) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1114 | return -EMSGSIZE; |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 1115 | |
Anish Bhatt | 52cff74 | 2014-11-14 16:38:31 -0800 | [diff] [blame] | 1116 | spin_lock_bh(&dcb_lock); |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 1117 | list_for_each_entry(itr, &dcb_app_list, list) { |
Mark Rustad | e290ed8 | 2011-10-06 08:52:33 +0000 | [diff] [blame] | 1118 | if (itr->ifindex == netdev->ifindex) { |
Dan Carpenter | 70bfa2d | 2011-01-04 21:03:12 +0000 | [diff] [blame] | 1119 | err = nla_put(skb, DCB_ATTR_IEEE_APP, sizeof(itr->app), |
| 1120 | &itr->app); |
| 1121 | if (err) { |
Anish Bhatt | 52cff74 | 2014-11-14 16:38:31 -0800 | [diff] [blame] | 1122 | spin_unlock_bh(&dcb_lock); |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1123 | return -EMSGSIZE; |
Dan Carpenter | 70bfa2d | 2011-01-04 21:03:12 +0000 | [diff] [blame] | 1124 | } |
| 1125 | } |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 1126 | } |
John Fastabend | c7797ba | 2011-06-21 07:34:31 +0000 | [diff] [blame] | 1127 | |
| 1128 | if (netdev->dcbnl_ops->getdcbx) |
| 1129 | dcbx = netdev->dcbnl_ops->getdcbx(netdev); |
| 1130 | else |
| 1131 | dcbx = -EOPNOTSUPP; |
| 1132 | |
Anish Bhatt | 52cff74 | 2014-11-14 16:38:31 -0800 | [diff] [blame] | 1133 | spin_unlock_bh(&dcb_lock); |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 1134 | nla_nest_end(skb, app); |
| 1135 | |
Shmulik Ravid | eed8471 | 2011-02-27 05:04:31 +0000 | [diff] [blame] | 1136 | /* get peer info if available */ |
| 1137 | if (ops->ieee_peer_getets) { |
| 1138 | struct ieee_ets ets; |
Mathias Krause | 29cd8ae | 2013-03-09 05:52:21 +0000 | [diff] [blame] | 1139 | memset(&ets, 0, sizeof(ets)); |
Shmulik Ravid | eed8471 | 2011-02-27 05:04:31 +0000 | [diff] [blame] | 1140 | err = ops->ieee_peer_getets(netdev, &ets); |
David S. Miller | 1eb4c97 | 2012-04-01 20:03:01 -0400 | [diff] [blame] | 1141 | if (!err && |
| 1142 | nla_put(skb, DCB_ATTR_IEEE_PEER_ETS, sizeof(ets), &ets)) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1143 | return -EMSGSIZE; |
Shmulik Ravid | eed8471 | 2011-02-27 05:04:31 +0000 | [diff] [blame] | 1144 | } |
| 1145 | |
| 1146 | if (ops->ieee_peer_getpfc) { |
| 1147 | struct ieee_pfc pfc; |
Mathias Krause | 29cd8ae | 2013-03-09 05:52:21 +0000 | [diff] [blame] | 1148 | memset(&pfc, 0, sizeof(pfc)); |
Shmulik Ravid | eed8471 | 2011-02-27 05:04:31 +0000 | [diff] [blame] | 1149 | err = ops->ieee_peer_getpfc(netdev, &pfc); |
David S. Miller | 1eb4c97 | 2012-04-01 20:03:01 -0400 | [diff] [blame] | 1150 | if (!err && |
| 1151 | nla_put(skb, DCB_ATTR_IEEE_PEER_PFC, sizeof(pfc), &pfc)) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1152 | return -EMSGSIZE; |
Shmulik Ravid | eed8471 | 2011-02-27 05:04:31 +0000 | [diff] [blame] | 1153 | } |
| 1154 | |
| 1155 | if (ops->peer_getappinfo && ops->peer_getapptable) { |
Shmulik Ravid | dc6ed1d | 2011-02-27 05:04:38 +0000 | [diff] [blame] | 1156 | err = dcbnl_build_peer_app(netdev, skb, |
| 1157 | DCB_ATTR_IEEE_PEER_APP, |
| 1158 | DCB_ATTR_IEEE_APP_UNSPEC, |
| 1159 | DCB_ATTR_IEEE_APP); |
Shmulik Ravid | eed8471 | 2011-02-27 05:04:31 +0000 | [diff] [blame] | 1160 | if (err) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1161 | return -EMSGSIZE; |
Shmulik Ravid | eed8471 | 2011-02-27 05:04:31 +0000 | [diff] [blame] | 1162 | } |
| 1163 | |
John Fastabend | 3e29027 | 2010-12-30 09:25:46 +0000 | [diff] [blame] | 1164 | nla_nest_end(skb, ieee); |
John Fastabend | c7797ba | 2011-06-21 07:34:31 +0000 | [diff] [blame] | 1165 | if (dcbx >= 0) { |
| 1166 | err = nla_put_u8(skb, DCB_ATTR_DCBX, dcbx); |
| 1167 | if (err) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1168 | return -EMSGSIZE; |
John Fastabend | c7797ba | 2011-06-21 07:34:31 +0000 | [diff] [blame] | 1169 | } |
John Fastabend | 3e29027 | 2010-12-30 09:25:46 +0000 | [diff] [blame] | 1170 | |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1171 | return 0; |
John Fastabend | 3e29027 | 2010-12-30 09:25:46 +0000 | [diff] [blame] | 1172 | } |
| 1173 | |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1174 | static int dcbnl_cee_pg_fill(struct sk_buff *skb, struct net_device *dev, |
| 1175 | int dir) |
| 1176 | { |
| 1177 | u8 pgid, up_map, prio, tc_pct; |
| 1178 | const struct dcbnl_rtnl_ops *ops = dev->dcbnl_ops; |
| 1179 | int i = dir ? DCB_ATTR_CEE_TX_PG : DCB_ATTR_CEE_RX_PG; |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 1180 | struct nlattr *pg = nla_nest_start_noflag(skb, i); |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1181 | |
| 1182 | if (!pg) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1183 | return -EMSGSIZE; |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1184 | |
| 1185 | for (i = DCB_PG_ATTR_TC_0; i <= DCB_PG_ATTR_TC_7; i++) { |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 1186 | struct nlattr *tc_nest = nla_nest_start_noflag(skb, i); |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1187 | |
| 1188 | if (!tc_nest) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1189 | return -EMSGSIZE; |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1190 | |
| 1191 | pgid = DCB_ATTR_VALUE_UNDEFINED; |
| 1192 | prio = DCB_ATTR_VALUE_UNDEFINED; |
| 1193 | tc_pct = DCB_ATTR_VALUE_UNDEFINED; |
| 1194 | up_map = DCB_ATTR_VALUE_UNDEFINED; |
| 1195 | |
| 1196 | if (!dir) |
| 1197 | ops->getpgtccfgrx(dev, i - DCB_PG_ATTR_TC_0, |
| 1198 | &prio, &pgid, &tc_pct, &up_map); |
| 1199 | else |
| 1200 | ops->getpgtccfgtx(dev, i - DCB_PG_ATTR_TC_0, |
| 1201 | &prio, &pgid, &tc_pct, &up_map); |
| 1202 | |
David S. Miller | 1eb4c97 | 2012-04-01 20:03:01 -0400 | [diff] [blame] | 1203 | if (nla_put_u8(skb, DCB_TC_ATTR_PARAM_PGID, pgid) || |
| 1204 | nla_put_u8(skb, DCB_TC_ATTR_PARAM_UP_MAPPING, up_map) || |
| 1205 | nla_put_u8(skb, DCB_TC_ATTR_PARAM_STRICT_PRIO, prio) || |
| 1206 | nla_put_u8(skb, DCB_TC_ATTR_PARAM_BW_PCT, tc_pct)) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1207 | return -EMSGSIZE; |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1208 | nla_nest_end(skb, tc_nest); |
| 1209 | } |
| 1210 | |
| 1211 | for (i = DCB_PG_ATTR_BW_ID_0; i <= DCB_PG_ATTR_BW_ID_7; i++) { |
| 1212 | tc_pct = DCB_ATTR_VALUE_UNDEFINED; |
| 1213 | |
| 1214 | if (!dir) |
| 1215 | ops->getpgbwgcfgrx(dev, i - DCB_PG_ATTR_BW_ID_0, |
| 1216 | &tc_pct); |
| 1217 | else |
| 1218 | ops->getpgbwgcfgtx(dev, i - DCB_PG_ATTR_BW_ID_0, |
| 1219 | &tc_pct); |
David S. Miller | 1eb4c97 | 2012-04-01 20:03:01 -0400 | [diff] [blame] | 1220 | if (nla_put_u8(skb, i, tc_pct)) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1221 | return -EMSGSIZE; |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1222 | } |
| 1223 | nla_nest_end(skb, pg); |
| 1224 | return 0; |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1225 | } |
| 1226 | |
| 1227 | static int dcbnl_cee_fill(struct sk_buff *skb, struct net_device *netdev) |
| 1228 | { |
| 1229 | struct nlattr *cee, *app; |
| 1230 | struct dcb_app_type *itr; |
| 1231 | const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops; |
| 1232 | int dcbx, i, err = -EMSGSIZE; |
| 1233 | u8 value; |
| 1234 | |
David S. Miller | 1eb4c97 | 2012-04-01 20:03:01 -0400 | [diff] [blame] | 1235 | if (nla_put_string(skb, DCB_ATTR_IFNAME, netdev->name)) |
| 1236 | goto nla_put_failure; |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 1237 | cee = nla_nest_start_noflag(skb, DCB_ATTR_CEE); |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1238 | if (!cee) |
| 1239 | goto nla_put_failure; |
| 1240 | |
| 1241 | /* local pg */ |
| 1242 | if (ops->getpgtccfgtx && ops->getpgbwgcfgtx) { |
| 1243 | err = dcbnl_cee_pg_fill(skb, netdev, 1); |
| 1244 | if (err) |
| 1245 | goto nla_put_failure; |
| 1246 | } |
| 1247 | |
| 1248 | if (ops->getpgtccfgrx && ops->getpgbwgcfgrx) { |
| 1249 | err = dcbnl_cee_pg_fill(skb, netdev, 0); |
| 1250 | if (err) |
| 1251 | goto nla_put_failure; |
| 1252 | } |
| 1253 | |
| 1254 | /* local pfc */ |
| 1255 | if (ops->getpfccfg) { |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 1256 | struct nlattr *pfc_nest = nla_nest_start_noflag(skb, |
| 1257 | DCB_ATTR_CEE_PFC); |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1258 | |
| 1259 | if (!pfc_nest) |
| 1260 | goto nla_put_failure; |
| 1261 | |
| 1262 | for (i = DCB_PFC_UP_ATTR_0; i <= DCB_PFC_UP_ATTR_7; i++) { |
| 1263 | ops->getpfccfg(netdev, i - DCB_PFC_UP_ATTR_0, &value); |
David S. Miller | 1eb4c97 | 2012-04-01 20:03:01 -0400 | [diff] [blame] | 1264 | if (nla_put_u8(skb, i, value)) |
| 1265 | goto nla_put_failure; |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1266 | } |
| 1267 | nla_nest_end(skb, pfc_nest); |
| 1268 | } |
| 1269 | |
| 1270 | /* local app */ |
Anish Bhatt | 52cff74 | 2014-11-14 16:38:31 -0800 | [diff] [blame] | 1271 | spin_lock_bh(&dcb_lock); |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 1272 | app = nla_nest_start_noflag(skb, DCB_ATTR_CEE_APP_TABLE); |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1273 | if (!app) |
Dan Carpenter | 40f5d72 | 2011-07-07 21:27:24 +0000 | [diff] [blame] | 1274 | goto dcb_unlock; |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1275 | |
| 1276 | list_for_each_entry(itr, &dcb_app_list, list) { |
Mark Rustad | e290ed8 | 2011-10-06 08:52:33 +0000 | [diff] [blame] | 1277 | if (itr->ifindex == netdev->ifindex) { |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 1278 | struct nlattr *app_nest = nla_nest_start_noflag(skb, |
| 1279 | DCB_ATTR_APP); |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1280 | if (!app_nest) |
| 1281 | goto dcb_unlock; |
| 1282 | |
| 1283 | err = nla_put_u8(skb, DCB_APP_ATTR_IDTYPE, |
| 1284 | itr->app.selector); |
| 1285 | if (err) |
| 1286 | goto dcb_unlock; |
| 1287 | |
| 1288 | err = nla_put_u16(skb, DCB_APP_ATTR_ID, |
| 1289 | itr->app.protocol); |
| 1290 | if (err) |
| 1291 | goto dcb_unlock; |
| 1292 | |
| 1293 | err = nla_put_u8(skb, DCB_APP_ATTR_PRIORITY, |
| 1294 | itr->app.priority); |
| 1295 | if (err) |
| 1296 | goto dcb_unlock; |
| 1297 | |
| 1298 | nla_nest_end(skb, app_nest); |
| 1299 | } |
| 1300 | } |
| 1301 | nla_nest_end(skb, app); |
| 1302 | |
| 1303 | if (netdev->dcbnl_ops->getdcbx) |
| 1304 | dcbx = netdev->dcbnl_ops->getdcbx(netdev); |
| 1305 | else |
| 1306 | dcbx = -EOPNOTSUPP; |
| 1307 | |
Anish Bhatt | 52cff74 | 2014-11-14 16:38:31 -0800 | [diff] [blame] | 1308 | spin_unlock_bh(&dcb_lock); |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1309 | |
| 1310 | /* features flags */ |
| 1311 | if (ops->getfeatcfg) { |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 1312 | struct nlattr *feat = nla_nest_start_noflag(skb, |
| 1313 | DCB_ATTR_CEE_FEAT); |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1314 | if (!feat) |
| 1315 | goto nla_put_failure; |
| 1316 | |
| 1317 | for (i = DCB_FEATCFG_ATTR_ALL + 1; i <= DCB_FEATCFG_ATTR_MAX; |
| 1318 | i++) |
David S. Miller | 1eb4c97 | 2012-04-01 20:03:01 -0400 | [diff] [blame] | 1319 | if (!ops->getfeatcfg(netdev, i, &value) && |
| 1320 | nla_put_u8(skb, i, value)) |
| 1321 | goto nla_put_failure; |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1322 | |
| 1323 | nla_nest_end(skb, feat); |
| 1324 | } |
| 1325 | |
| 1326 | /* peer info if available */ |
| 1327 | if (ops->cee_peer_getpg) { |
| 1328 | struct cee_pg pg; |
Mathias Krause | 29cd8ae | 2013-03-09 05:52:21 +0000 | [diff] [blame] | 1329 | memset(&pg, 0, sizeof(pg)); |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1330 | err = ops->cee_peer_getpg(netdev, &pg); |
David S. Miller | 1eb4c97 | 2012-04-01 20:03:01 -0400 | [diff] [blame] | 1331 | if (!err && |
| 1332 | nla_put(skb, DCB_ATTR_CEE_PEER_PG, sizeof(pg), &pg)) |
| 1333 | goto nla_put_failure; |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1334 | } |
| 1335 | |
| 1336 | if (ops->cee_peer_getpfc) { |
| 1337 | struct cee_pfc pfc; |
Mathias Krause | 29cd8ae | 2013-03-09 05:52:21 +0000 | [diff] [blame] | 1338 | memset(&pfc, 0, sizeof(pfc)); |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1339 | err = ops->cee_peer_getpfc(netdev, &pfc); |
David S. Miller | 1eb4c97 | 2012-04-01 20:03:01 -0400 | [diff] [blame] | 1340 | if (!err && |
| 1341 | nla_put(skb, DCB_ATTR_CEE_PEER_PFC, sizeof(pfc), &pfc)) |
| 1342 | goto nla_put_failure; |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1343 | } |
| 1344 | |
| 1345 | if (ops->peer_getappinfo && ops->peer_getapptable) { |
| 1346 | err = dcbnl_build_peer_app(netdev, skb, |
| 1347 | DCB_ATTR_CEE_PEER_APP_TABLE, |
| 1348 | DCB_ATTR_CEE_PEER_APP_INFO, |
| 1349 | DCB_ATTR_CEE_PEER_APP); |
| 1350 | if (err) |
| 1351 | goto nla_put_failure; |
| 1352 | } |
| 1353 | nla_nest_end(skb, cee); |
| 1354 | |
| 1355 | /* DCBX state */ |
| 1356 | if (dcbx >= 0) { |
| 1357 | err = nla_put_u8(skb, DCB_ATTR_DCBX, dcbx); |
| 1358 | if (err) |
| 1359 | goto nla_put_failure; |
| 1360 | } |
| 1361 | return 0; |
| 1362 | |
| 1363 | dcb_unlock: |
Anish Bhatt | 52cff74 | 2014-11-14 16:38:31 -0800 | [diff] [blame] | 1364 | spin_unlock_bh(&dcb_lock); |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1365 | nla_put_failure: |
Pan Bian | c66ebf2 | 2016-12-03 21:49:08 +0800 | [diff] [blame] | 1366 | err = -EMSGSIZE; |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1367 | return err; |
| 1368 | } |
| 1369 | |
| 1370 | static int dcbnl_notify(struct net_device *dev, int event, int cmd, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1371 | u32 seq, u32 portid, int dcbx_ver) |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1372 | { |
| 1373 | struct net *net = dev_net(dev); |
| 1374 | struct sk_buff *skb; |
| 1375 | struct nlmsghdr *nlh; |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1376 | const struct dcbnl_rtnl_ops *ops = dev->dcbnl_ops; |
| 1377 | int err; |
| 1378 | |
| 1379 | if (!ops) |
| 1380 | return -EOPNOTSUPP; |
| 1381 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1382 | skb = dcbnl_newmsg(event, cmd, portid, seq, 0, &nlh); |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1383 | if (!skb) |
| 1384 | return -ENOBUFS; |
| 1385 | |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1386 | if (dcbx_ver == DCB_CAP_DCBX_VER_IEEE) |
| 1387 | err = dcbnl_ieee_fill(skb, dev); |
| 1388 | else |
| 1389 | err = dcbnl_cee_fill(skb, dev); |
| 1390 | |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1391 | if (err < 0) { |
| 1392 | /* Report error to broadcast listeners */ |
Thomas Graf | ab6d470 | 2012-06-13 02:54:57 +0000 | [diff] [blame] | 1393 | nlmsg_free(skb); |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1394 | rtnl_set_sk_err(net, RTNLGRP_DCB, err); |
| 1395 | } else { |
| 1396 | /* End nlmsg and notify broadcast listeners */ |
| 1397 | nlmsg_end(skb, nlh); |
| 1398 | rtnl_notify(skb, net, 0, RTNLGRP_DCB, NULL, GFP_KERNEL); |
| 1399 | } |
| 1400 | |
| 1401 | return err; |
| 1402 | } |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1403 | |
| 1404 | int dcbnl_ieee_notify(struct net_device *dev, int event, int cmd, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1405 | u32 seq, u32 portid) |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1406 | { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1407 | return dcbnl_notify(dev, event, cmd, seq, portid, DCB_CAP_DCBX_VER_IEEE); |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1408 | } |
| 1409 | EXPORT_SYMBOL(dcbnl_ieee_notify); |
| 1410 | |
| 1411 | int dcbnl_cee_notify(struct net_device *dev, int event, int cmd, |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1412 | u32 seq, u32 portid) |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1413 | { |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1414 | return dcbnl_notify(dev, event, cmd, seq, portid, DCB_CAP_DCBX_VER_CEE); |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1415 | } |
| 1416 | EXPORT_SYMBOL(dcbnl_cee_notify); |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1417 | |
Shani Michaeli | c9368247 | 2015-03-05 20:16:11 +0200 | [diff] [blame] | 1418 | /* Handle IEEE 802.1Qaz/802.1Qau/802.1Qbb SET commands. |
| 1419 | * If any requested operation can not be completed |
| 1420 | * the entire msg is aborted and error value is returned. |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1421 | * No attempt is made to reconcile the case where only part of the |
| 1422 | * cmd can be completed. |
| 1423 | */ |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1424 | static int dcbnl_ieee_set(struct net_device *netdev, struct nlmsghdr *nlh, |
| 1425 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1426 | { |
| 1427 | const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops; |
| 1428 | struct nlattr *ieee[DCB_ATTR_IEEE_MAX + 1]; |
Petr Machata | 297e77e | 2020-09-10 14:09:05 +0200 | [diff] [blame] | 1429 | int prio; |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1430 | int err; |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1431 | |
| 1432 | if (!ops) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1433 | return -EOPNOTSUPP; |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1434 | |
John Fastabend | 4003b65 | 2011-06-21 07:35:04 +0000 | [diff] [blame] | 1435 | if (!tb[DCB_ATTR_IEEE]) |
| 1436 | return -EINVAL; |
| 1437 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 1438 | err = nla_parse_nested_deprecated(ieee, DCB_ATTR_IEEE_MAX, |
| 1439 | tb[DCB_ATTR_IEEE], |
| 1440 | dcbnl_ieee_policy, NULL); |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1441 | if (err) |
| 1442 | return err; |
| 1443 | |
| 1444 | if (ieee[DCB_ATTR_IEEE_ETS] && ops->ieee_setets) { |
| 1445 | struct ieee_ets *ets = nla_data(ieee[DCB_ATTR_IEEE_ETS]); |
| 1446 | err = ops->ieee_setets(netdev, ets); |
| 1447 | if (err) |
| 1448 | goto err; |
| 1449 | } |
| 1450 | |
Amir Vadai | 08f10af | 2012-04-04 21:33:30 +0000 | [diff] [blame] | 1451 | if (ieee[DCB_ATTR_IEEE_MAXRATE] && ops->ieee_setmaxrate) { |
| 1452 | struct ieee_maxrate *maxrate = |
| 1453 | nla_data(ieee[DCB_ATTR_IEEE_MAXRATE]); |
| 1454 | err = ops->ieee_setmaxrate(netdev, maxrate); |
| 1455 | if (err) |
| 1456 | goto err; |
| 1457 | } |
| 1458 | |
Shani Michaeli | c9368247 | 2015-03-05 20:16:11 +0200 | [diff] [blame] | 1459 | if (ieee[DCB_ATTR_IEEE_QCN] && ops->ieee_setqcn) { |
| 1460 | struct ieee_qcn *qcn = |
| 1461 | nla_data(ieee[DCB_ATTR_IEEE_QCN]); |
| 1462 | |
| 1463 | err = ops->ieee_setqcn(netdev, qcn); |
| 1464 | if (err) |
| 1465 | goto err; |
| 1466 | } |
| 1467 | |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1468 | if (ieee[DCB_ATTR_IEEE_PFC] && ops->ieee_setpfc) { |
| 1469 | struct ieee_pfc *pfc = nla_data(ieee[DCB_ATTR_IEEE_PFC]); |
| 1470 | err = ops->ieee_setpfc(netdev, pfc); |
| 1471 | if (err) |
| 1472 | goto err; |
| 1473 | } |
| 1474 | |
Huy Nguyen | e549f6f | 2018-02-22 11:57:10 -0600 | [diff] [blame] | 1475 | if (ieee[DCB_ATTR_DCB_BUFFER] && ops->dcbnl_setbuffer) { |
| 1476 | struct dcbnl_buffer *buffer = |
| 1477 | nla_data(ieee[DCB_ATTR_DCB_BUFFER]); |
| 1478 | |
Petr Machata | 297e77e | 2020-09-10 14:09:05 +0200 | [diff] [blame] | 1479 | for (prio = 0; prio < ARRAY_SIZE(buffer->prio2buffer); prio++) { |
| 1480 | if (buffer->prio2buffer[prio] >= DCBX_MAX_BUFFERS) { |
| 1481 | err = -EINVAL; |
| 1482 | goto err; |
| 1483 | } |
| 1484 | } |
| 1485 | |
Huy Nguyen | e549f6f | 2018-02-22 11:57:10 -0600 | [diff] [blame] | 1486 | err = ops->dcbnl_setbuffer(netdev, buffer); |
| 1487 | if (err) |
| 1488 | goto err; |
| 1489 | } |
| 1490 | |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1491 | if (ieee[DCB_ATTR_IEEE_APP_TABLE]) { |
| 1492 | struct nlattr *attr; |
| 1493 | int rem; |
| 1494 | |
| 1495 | nla_for_each_nested(attr, ieee[DCB_ATTR_IEEE_APP_TABLE], rem) { |
| 1496 | struct dcb_app *app_data; |
stephen hemminger | 332b4fc | 2017-05-19 09:55:48 -0700 | [diff] [blame] | 1497 | |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1498 | if (nla_type(attr) != DCB_ATTR_IEEE_APP) |
| 1499 | continue; |
stephen hemminger | 332b4fc | 2017-05-19 09:55:48 -0700 | [diff] [blame] | 1500 | |
| 1501 | if (nla_len(attr) < sizeof(struct dcb_app)) { |
| 1502 | err = -ERANGE; |
| 1503 | goto err; |
| 1504 | } |
| 1505 | |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1506 | app_data = nla_data(attr); |
| 1507 | if (ops->ieee_setapp) |
| 1508 | err = ops->ieee_setapp(netdev, app_data); |
| 1509 | else |
John Fastabend | b6db217 | 2011-06-21 07:34:42 +0000 | [diff] [blame] | 1510 | err = dcb_ieee_setapp(netdev, app_data); |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1511 | if (err) |
| 1512 | goto err; |
| 1513 | } |
| 1514 | } |
| 1515 | |
| 1516 | err: |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1517 | err = nla_put_u8(skb, DCB_ATTR_IEEE, err); |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1518 | dcbnl_ieee_notify(netdev, RTM_SETDCB, DCB_CMD_IEEE_SET, seq, 0); |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1519 | return err; |
| 1520 | } |
| 1521 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1522 | static int dcbnl_ieee_get(struct net_device *netdev, struct nlmsghdr *nlh, |
| 1523 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1524 | { |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1525 | const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops; |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1526 | |
| 1527 | if (!ops) |
| 1528 | return -EOPNOTSUPP; |
| 1529 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1530 | return dcbnl_ieee_fill(skb, netdev); |
John Fastabend | 314b477 | 2011-06-21 07:34:37 +0000 | [diff] [blame] | 1531 | } |
John Fastabend | f9ae7e4 | 2011-06-21 07:34:48 +0000 | [diff] [blame] | 1532 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1533 | static int dcbnl_ieee_del(struct net_device *netdev, struct nlmsghdr *nlh, |
| 1534 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
John Fastabend | f9ae7e4 | 2011-06-21 07:34:48 +0000 | [diff] [blame] | 1535 | { |
| 1536 | const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops; |
| 1537 | struct nlattr *ieee[DCB_ATTR_IEEE_MAX + 1]; |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1538 | int err; |
John Fastabend | f9ae7e4 | 2011-06-21 07:34:48 +0000 | [diff] [blame] | 1539 | |
| 1540 | if (!ops) |
| 1541 | return -EOPNOTSUPP; |
| 1542 | |
| 1543 | if (!tb[DCB_ATTR_IEEE]) |
| 1544 | return -EINVAL; |
| 1545 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 1546 | err = nla_parse_nested_deprecated(ieee, DCB_ATTR_IEEE_MAX, |
| 1547 | tb[DCB_ATTR_IEEE], |
| 1548 | dcbnl_ieee_policy, NULL); |
John Fastabend | f9ae7e4 | 2011-06-21 07:34:48 +0000 | [diff] [blame] | 1549 | if (err) |
| 1550 | return err; |
| 1551 | |
| 1552 | if (ieee[DCB_ATTR_IEEE_APP_TABLE]) { |
| 1553 | struct nlattr *attr; |
| 1554 | int rem; |
| 1555 | |
| 1556 | nla_for_each_nested(attr, ieee[DCB_ATTR_IEEE_APP_TABLE], rem) { |
| 1557 | struct dcb_app *app_data; |
| 1558 | |
| 1559 | if (nla_type(attr) != DCB_ATTR_IEEE_APP) |
| 1560 | continue; |
| 1561 | app_data = nla_data(attr); |
| 1562 | if (ops->ieee_delapp) |
| 1563 | err = ops->ieee_delapp(netdev, app_data); |
| 1564 | else |
| 1565 | err = dcb_ieee_delapp(netdev, app_data); |
| 1566 | if (err) |
| 1567 | goto err; |
| 1568 | } |
| 1569 | } |
| 1570 | |
| 1571 | err: |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1572 | err = nla_put_u8(skb, DCB_ATTR_IEEE, err); |
Shmulik Ravid | 5b7f762 | 2011-07-05 06:16:25 +0000 | [diff] [blame] | 1573 | dcbnl_ieee_notify(netdev, RTM_SETDCB, DCB_CMD_IEEE_DEL, seq, 0); |
John Fastabend | f9ae7e4 | 2011-06-21 07:34:48 +0000 | [diff] [blame] | 1574 | return err; |
| 1575 | } |
| 1576 | |
| 1577 | |
Shmulik Ravid | 6241b62 | 2010-12-30 06:26:48 +0000 | [diff] [blame] | 1578 | /* DCBX configuration */ |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1579 | static int dcbnl_getdcbx(struct net_device *netdev, struct nlmsghdr *nlh, |
| 1580 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Shmulik Ravid | 6241b62 | 2010-12-30 06:26:48 +0000 | [diff] [blame] | 1581 | { |
Shmulik Ravid | 6241b62 | 2010-12-30 06:26:48 +0000 | [diff] [blame] | 1582 | if (!netdev->dcbnl_ops->getdcbx) |
Shmulik Ravid | 7f891cf | 2011-01-03 08:04:59 +0000 | [diff] [blame] | 1583 | return -EOPNOTSUPP; |
Shmulik Ravid | 6241b62 | 2010-12-30 06:26:48 +0000 | [diff] [blame] | 1584 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1585 | return nla_put_u8(skb, DCB_ATTR_DCBX, |
| 1586 | netdev->dcbnl_ops->getdcbx(netdev)); |
Shmulik Ravid | 6241b62 | 2010-12-30 06:26:48 +0000 | [diff] [blame] | 1587 | } |
| 1588 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1589 | static int dcbnl_setdcbx(struct net_device *netdev, struct nlmsghdr *nlh, |
| 1590 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Shmulik Ravid | 6241b62 | 2010-12-30 06:26:48 +0000 | [diff] [blame] | 1591 | { |
Shmulik Ravid | 6241b62 | 2010-12-30 06:26:48 +0000 | [diff] [blame] | 1592 | u8 value; |
| 1593 | |
Shmulik Ravid | 7f891cf | 2011-01-03 08:04:59 +0000 | [diff] [blame] | 1594 | if (!netdev->dcbnl_ops->setdcbx) |
| 1595 | return -EOPNOTSUPP; |
| 1596 | |
| 1597 | if (!tb[DCB_ATTR_DCBX]) |
| 1598 | return -EINVAL; |
Shmulik Ravid | 6241b62 | 2010-12-30 06:26:48 +0000 | [diff] [blame] | 1599 | |
| 1600 | value = nla_get_u8(tb[DCB_ATTR_DCBX]); |
| 1601 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1602 | return nla_put_u8(skb, DCB_ATTR_DCBX, |
| 1603 | netdev->dcbnl_ops->setdcbx(netdev, value)); |
Shmulik Ravid | 6241b62 | 2010-12-30 06:26:48 +0000 | [diff] [blame] | 1604 | } |
| 1605 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1606 | static int dcbnl_getfeatcfg(struct net_device *netdev, struct nlmsghdr *nlh, |
| 1607 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1608 | { |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1609 | struct nlattr *data[DCB_FEATCFG_ATTR_MAX + 1], *nest; |
| 1610 | u8 value; |
Shmulik Ravid | 7f891cf | 2011-01-03 08:04:59 +0000 | [diff] [blame] | 1611 | int ret, i; |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1612 | int getall = 0; |
| 1613 | |
Shmulik Ravid | 7f891cf | 2011-01-03 08:04:59 +0000 | [diff] [blame] | 1614 | if (!netdev->dcbnl_ops->getfeatcfg) |
| 1615 | return -EOPNOTSUPP; |
| 1616 | |
| 1617 | if (!tb[DCB_ATTR_FEATCFG]) |
| 1618 | return -EINVAL; |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1619 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 1620 | ret = nla_parse_nested_deprecated(data, DCB_FEATCFG_ATTR_MAX, |
| 1621 | tb[DCB_ATTR_FEATCFG], |
| 1622 | dcbnl_featcfg_nest, NULL); |
Shmulik Ravid | 7f891cf | 2011-01-03 08:04:59 +0000 | [diff] [blame] | 1623 | if (ret) |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1624 | return ret; |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1625 | |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 1626 | nest = nla_nest_start_noflag(skb, DCB_ATTR_FEATCFG); |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1627 | if (!nest) |
| 1628 | return -EMSGSIZE; |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1629 | |
| 1630 | if (data[DCB_FEATCFG_ATTR_ALL]) |
| 1631 | getall = 1; |
| 1632 | |
| 1633 | for (i = DCB_FEATCFG_ATTR_ALL+1; i <= DCB_FEATCFG_ATTR_MAX; i++) { |
| 1634 | if (!getall && !data[i]) |
| 1635 | continue; |
| 1636 | |
| 1637 | ret = netdev->dcbnl_ops->getfeatcfg(netdev, i, &value); |
Shmulik Ravid | 7f891cf | 2011-01-03 08:04:59 +0000 | [diff] [blame] | 1638 | if (!ret) |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1639 | ret = nla_put_u8(skb, i, value); |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1640 | |
Shmulik Ravid | 7f891cf | 2011-01-03 08:04:59 +0000 | [diff] [blame] | 1641 | if (ret) { |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1642 | nla_nest_cancel(skb, nest); |
Shmulik Ravid | 7f891cf | 2011-01-03 08:04:59 +0000 | [diff] [blame] | 1643 | goto nla_put_failure; |
| 1644 | } |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1645 | } |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1646 | nla_nest_end(skb, nest); |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1647 | |
Shmulik Ravid | 7f891cf | 2011-01-03 08:04:59 +0000 | [diff] [blame] | 1648 | nla_put_failure: |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1649 | return ret; |
| 1650 | } |
| 1651 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1652 | static int dcbnl_setfeatcfg(struct net_device *netdev, struct nlmsghdr *nlh, |
| 1653 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1654 | { |
| 1655 | struct nlattr *data[DCB_FEATCFG_ATTR_MAX + 1]; |
Shmulik Ravid | 7f891cf | 2011-01-03 08:04:59 +0000 | [diff] [blame] | 1656 | int ret, i; |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1657 | u8 value; |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1658 | |
Shmulik Ravid | 7f891cf | 2011-01-03 08:04:59 +0000 | [diff] [blame] | 1659 | if (!netdev->dcbnl_ops->setfeatcfg) |
| 1660 | return -ENOTSUPP; |
| 1661 | |
| 1662 | if (!tb[DCB_ATTR_FEATCFG]) |
| 1663 | return -EINVAL; |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1664 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 1665 | ret = nla_parse_nested_deprecated(data, DCB_FEATCFG_ATTR_MAX, |
| 1666 | tb[DCB_ATTR_FEATCFG], |
| 1667 | dcbnl_featcfg_nest, NULL); |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1668 | |
Shmulik Ravid | 7f891cf | 2011-01-03 08:04:59 +0000 | [diff] [blame] | 1669 | if (ret) |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1670 | goto err; |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1671 | |
| 1672 | for (i = DCB_FEATCFG_ATTR_ALL+1; i <= DCB_FEATCFG_ATTR_MAX; i++) { |
| 1673 | if (data[i] == NULL) |
| 1674 | continue; |
| 1675 | |
| 1676 | value = nla_get_u8(data[i]); |
| 1677 | |
| 1678 | ret = netdev->dcbnl_ops->setfeatcfg(netdev, i, value); |
| 1679 | |
| 1680 | if (ret) |
Shmulik Ravid | 7f891cf | 2011-01-03 08:04:59 +0000 | [diff] [blame] | 1681 | goto err; |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1682 | } |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1683 | err: |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1684 | ret = nla_put_u8(skb, DCB_ATTR_FEATCFG, ret); |
Shmulik Ravid | 7f891cf | 2011-01-03 08:04:59 +0000 | [diff] [blame] | 1685 | |
Shmulik Ravid | ea45fe4 | 2010-12-30 06:26:55 +0000 | [diff] [blame] | 1686 | return ret; |
| 1687 | } |
| 1688 | |
Shmulik Ravid | dc6ed1d | 2011-02-27 05:04:38 +0000 | [diff] [blame] | 1689 | /* Handle CEE DCBX GET commands. */ |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1690 | static int dcbnl_cee_get(struct net_device *netdev, struct nlmsghdr *nlh, |
| 1691 | u32 seq, struct nlattr **tb, struct sk_buff *skb) |
Shmulik Ravid | dc6ed1d | 2011-02-27 05:04:38 +0000 | [diff] [blame] | 1692 | { |
Shmulik Ravid | dc6ed1d | 2011-02-27 05:04:38 +0000 | [diff] [blame] | 1693 | const struct dcbnl_rtnl_ops *ops = netdev->dcbnl_ops; |
Shmulik Ravid | dc6ed1d | 2011-02-27 05:04:38 +0000 | [diff] [blame] | 1694 | |
| 1695 | if (!ops) |
| 1696 | return -EOPNOTSUPP; |
| 1697 | |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1698 | return dcbnl_cee_fill(skb, netdev); |
Shmulik Ravid | dc6ed1d | 2011-02-27 05:04:38 +0000 | [diff] [blame] | 1699 | } |
| 1700 | |
Thomas Graf | 33a03aa | 2012-06-13 02:54:54 +0000 | [diff] [blame] | 1701 | struct reply_func { |
| 1702 | /* reply netlink message type */ |
| 1703 | int type; |
| 1704 | |
| 1705 | /* function to fill message contents */ |
| 1706 | int (*cb)(struct net_device *, struct nlmsghdr *, u32, |
| 1707 | struct nlattr **, struct sk_buff *); |
| 1708 | }; |
| 1709 | |
| 1710 | static const struct reply_func reply_funcs[DCB_CMD_MAX+1] = { |
Thomas Graf | 7be9941 | 2012-06-13 02:54:55 +0000 | [diff] [blame] | 1711 | [DCB_CMD_GSTATE] = { RTM_GETDCB, dcbnl_getstate }, |
| 1712 | [DCB_CMD_SSTATE] = { RTM_SETDCB, dcbnl_setstate }, |
| 1713 | [DCB_CMD_PFC_GCFG] = { RTM_GETDCB, dcbnl_getpfccfg }, |
| 1714 | [DCB_CMD_PFC_SCFG] = { RTM_SETDCB, dcbnl_setpfccfg }, |
| 1715 | [DCB_CMD_GPERM_HWADDR] = { RTM_GETDCB, dcbnl_getperm_hwaddr }, |
| 1716 | [DCB_CMD_GCAP] = { RTM_GETDCB, dcbnl_getcap }, |
| 1717 | [DCB_CMD_GNUMTCS] = { RTM_GETDCB, dcbnl_getnumtcs }, |
| 1718 | [DCB_CMD_SNUMTCS] = { RTM_SETDCB, dcbnl_setnumtcs }, |
| 1719 | [DCB_CMD_PFC_GSTATE] = { RTM_GETDCB, dcbnl_getpfcstate }, |
| 1720 | [DCB_CMD_PFC_SSTATE] = { RTM_SETDCB, dcbnl_setpfcstate }, |
| 1721 | [DCB_CMD_GAPP] = { RTM_GETDCB, dcbnl_getapp }, |
| 1722 | [DCB_CMD_SAPP] = { RTM_SETDCB, dcbnl_setapp }, |
| 1723 | [DCB_CMD_PGTX_GCFG] = { RTM_GETDCB, dcbnl_pgtx_getcfg }, |
| 1724 | [DCB_CMD_PGTX_SCFG] = { RTM_SETDCB, dcbnl_pgtx_setcfg }, |
| 1725 | [DCB_CMD_PGRX_GCFG] = { RTM_GETDCB, dcbnl_pgrx_getcfg }, |
| 1726 | [DCB_CMD_PGRX_SCFG] = { RTM_SETDCB, dcbnl_pgrx_setcfg }, |
| 1727 | [DCB_CMD_SET_ALL] = { RTM_SETDCB, dcbnl_setall }, |
| 1728 | [DCB_CMD_BCN_GCFG] = { RTM_GETDCB, dcbnl_bcn_getcfg }, |
| 1729 | [DCB_CMD_BCN_SCFG] = { RTM_SETDCB, dcbnl_bcn_setcfg }, |
| 1730 | [DCB_CMD_IEEE_GET] = { RTM_GETDCB, dcbnl_ieee_get }, |
| 1731 | [DCB_CMD_IEEE_SET] = { RTM_SETDCB, dcbnl_ieee_set }, |
| 1732 | [DCB_CMD_IEEE_DEL] = { RTM_SETDCB, dcbnl_ieee_del }, |
| 1733 | [DCB_CMD_GDCBX] = { RTM_GETDCB, dcbnl_getdcbx }, |
| 1734 | [DCB_CMD_SDCBX] = { RTM_SETDCB, dcbnl_setdcbx }, |
| 1735 | [DCB_CMD_GFEATCFG] = { RTM_GETDCB, dcbnl_getfeatcfg }, |
| 1736 | [DCB_CMD_SFEATCFG] = { RTM_SETDCB, dcbnl_setfeatcfg }, |
| 1737 | [DCB_CMD_CEE_GET] = { RTM_GETDCB, dcbnl_cee_get }, |
Thomas Graf | 33a03aa | 2012-06-13 02:54:54 +0000 | [diff] [blame] | 1738 | }; |
| 1739 | |
David Ahern | c21ef3e | 2017-04-16 09:48:24 -0700 | [diff] [blame] | 1740 | static int dcb_doit(struct sk_buff *skb, struct nlmsghdr *nlh, |
| 1741 | struct netlink_ext_ack *extack) |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 1742 | { |
| 1743 | struct net *net = sock_net(skb->sk); |
| 1744 | struct net_device *netdev; |
Thomas Graf | 7a282bc | 2012-06-13 02:55:01 +0000 | [diff] [blame] | 1745 | struct dcbmsg *dcb = nlmsg_data(nlh); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 1746 | struct nlattr *tb[DCB_ATTR_MAX + 1]; |
Gaurav Singh | 0cc55e6 | 2020-06-22 22:50:39 -0400 | [diff] [blame] | 1747 | u32 portid = NETLINK_CB(skb).portid; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 1748 | int ret = -EINVAL; |
Thomas Graf | 33a03aa | 2012-06-13 02:54:54 +0000 | [diff] [blame] | 1749 | struct sk_buff *reply_skb; |
Thomas Graf | 39912f9 | 2012-06-13 22:34:03 +0000 | [diff] [blame] | 1750 | struct nlmsghdr *reply_nlh = NULL; |
Thomas Graf | 33a03aa | 2012-06-13 02:54:54 +0000 | [diff] [blame] | 1751 | const struct reply_func *fn; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 1752 | |
Eric W. Biederman | 90f62cf | 2014-04-23 14:29:27 -0700 | [diff] [blame] | 1753 | if ((nlh->nlmsg_type == RTM_SETDCB) && !netlink_capable(skb, CAP_NET_ADMIN)) |
Eric W. Biederman | dfc47ef | 2012-11-16 03:03:00 +0000 | [diff] [blame] | 1754 | return -EPERM; |
| 1755 | |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 1756 | ret = nlmsg_parse_deprecated(nlh, sizeof(*dcb), tb, DCB_ATTR_MAX, |
| 1757 | dcbnl_rtnl_policy, extack); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 1758 | if (ret < 0) |
| 1759 | return ret; |
| 1760 | |
Thomas Graf | 33a03aa | 2012-06-13 02:54:54 +0000 | [diff] [blame] | 1761 | if (dcb->cmd > DCB_CMD_MAX) |
| 1762 | return -EINVAL; |
| 1763 | |
| 1764 | /* check if a reply function has been defined for the command */ |
| 1765 | fn = &reply_funcs[dcb->cmd]; |
| 1766 | if (!fn->cb) |
| 1767 | return -EOPNOTSUPP; |
Petr Machata | df85bc1 | 2021-01-11 18:07:07 +0100 | [diff] [blame] | 1768 | if (fn->type == RTM_SETDCB && !netlink_capable(skb, CAP_NET_ADMIN)) |
Petr Machata | 826f328 | 2020-12-22 22:49:44 +0100 | [diff] [blame] | 1769 | return -EPERM; |
Thomas Graf | 33a03aa | 2012-06-13 02:54:54 +0000 | [diff] [blame] | 1770 | |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 1771 | if (!tb[DCB_ATTR_IFNAME]) |
| 1772 | return -EINVAL; |
| 1773 | |
Ying Xue | d9ac62b | 2014-01-15 10:23:39 +0800 | [diff] [blame] | 1774 | netdev = __dev_get_by_name(net, nla_data(tb[DCB_ATTR_IFNAME])); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 1775 | if (!netdev) |
Thomas Graf | 3d1f486 | 2012-06-13 02:54:58 +0000 | [diff] [blame] | 1776 | return -ENODEV; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 1777 | |
Ying Xue | d9ac62b | 2014-01-15 10:23:39 +0800 | [diff] [blame] | 1778 | if (!netdev->dcbnl_ops) |
| 1779 | return -EOPNOTSUPP; |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 1780 | |
Eric W. Biederman | 15e4730 | 2012-09-07 20:12:54 +0000 | [diff] [blame] | 1781 | reply_skb = dcbnl_newmsg(fn->type, dcb->cmd, portid, nlh->nlmsg_seq, |
Thomas Graf | 33a03aa | 2012-06-13 02:54:54 +0000 | [diff] [blame] | 1782 | nlh->nlmsg_flags, &reply_nlh); |
Ying Xue | d9ac62b | 2014-01-15 10:23:39 +0800 | [diff] [blame] | 1783 | if (!reply_skb) |
| 1784 | return -ENOBUFS; |
Thomas Graf | 33a03aa | 2012-06-13 02:54:54 +0000 | [diff] [blame] | 1785 | |
| 1786 | ret = fn->cb(netdev, nlh, nlh->nlmsg_seq, tb, reply_skb); |
| 1787 | if (ret < 0) { |
| 1788 | nlmsg_free(reply_skb); |
| 1789 | goto out; |
| 1790 | } |
| 1791 | |
| 1792 | nlmsg_end(reply_skb, reply_nlh); |
| 1793 | |
John Fastabend | 7c77ab2 | 2012-12-09 20:48:13 +0000 | [diff] [blame] | 1794 | ret = rtnl_unicast(reply_skb, net, portid); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 1795 | out: |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 1796 | return ret; |
| 1797 | } |
| 1798 | |
Thomas Graf | 716b31a | 2012-06-13 02:54:59 +0000 | [diff] [blame] | 1799 | static struct dcb_app_type *dcb_app_lookup(const struct dcb_app *app, |
| 1800 | int ifindex, int prio) |
| 1801 | { |
| 1802 | struct dcb_app_type *itr; |
| 1803 | |
| 1804 | list_for_each_entry(itr, &dcb_app_list, list) { |
| 1805 | if (itr->app.selector == app->selector && |
| 1806 | itr->app.protocol == app->protocol && |
| 1807 | itr->ifindex == ifindex && |
Petr Machata | 08193d1 | 2018-07-27 15:26:55 +0300 | [diff] [blame] | 1808 | ((prio == -1) || itr->app.priority == prio)) |
Thomas Graf | 716b31a | 2012-06-13 02:54:59 +0000 | [diff] [blame] | 1809 | return itr; |
| 1810 | } |
| 1811 | |
| 1812 | return NULL; |
| 1813 | } |
| 1814 | |
Thomas Graf | 4e4f2f6 | 2012-06-13 02:55:00 +0000 | [diff] [blame] | 1815 | static int dcb_app_add(const struct dcb_app *app, int ifindex) |
| 1816 | { |
| 1817 | struct dcb_app_type *entry; |
| 1818 | |
| 1819 | entry = kmalloc(sizeof(*entry), GFP_ATOMIC); |
| 1820 | if (!entry) |
| 1821 | return -ENOMEM; |
| 1822 | |
| 1823 | memcpy(&entry->app, app, sizeof(*app)); |
| 1824 | entry->ifindex = ifindex; |
| 1825 | list_add(&entry->list, &dcb_app_list); |
| 1826 | |
| 1827 | return 0; |
| 1828 | } |
| 1829 | |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 1830 | /** |
| 1831 | * dcb_getapp - retrieve the DCBX application user priority |
Andrew Lunn | a89a501 | 2020-10-28 02:09:13 +0100 | [diff] [blame] | 1832 | * @dev: network interface |
| 1833 | * @app: application to get user priority of |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 1834 | * |
| 1835 | * On success returns a non-zero 802.1p user priority bitmap |
| 1836 | * otherwise returns 0 as the invalid user priority bitmap to |
| 1837 | * indicate an error. |
| 1838 | */ |
| 1839 | u8 dcb_getapp(struct net_device *dev, struct dcb_app *app) |
| 1840 | { |
| 1841 | struct dcb_app_type *itr; |
| 1842 | u8 prio = 0; |
| 1843 | |
Anish Bhatt | 52cff74 | 2014-11-14 16:38:31 -0800 | [diff] [blame] | 1844 | spin_lock_bh(&dcb_lock); |
Petr Machata | 08193d1 | 2018-07-27 15:26:55 +0300 | [diff] [blame] | 1845 | itr = dcb_app_lookup(app, dev->ifindex, -1); |
| 1846 | if (itr) |
Thomas Graf | 716b31a | 2012-06-13 02:54:59 +0000 | [diff] [blame] | 1847 | prio = itr->app.priority; |
Anish Bhatt | 52cff74 | 2014-11-14 16:38:31 -0800 | [diff] [blame] | 1848 | spin_unlock_bh(&dcb_lock); |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 1849 | |
| 1850 | return prio; |
| 1851 | } |
| 1852 | EXPORT_SYMBOL(dcb_getapp); |
| 1853 | |
| 1854 | /** |
John Fastabend | b6db217 | 2011-06-21 07:34:42 +0000 | [diff] [blame] | 1855 | * dcb_setapp - add CEE dcb application data to app list |
Andrew Lunn | a89a501 | 2020-10-28 02:09:13 +0100 | [diff] [blame] | 1856 | * @dev: network interface |
| 1857 | * @new: application data to add |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 1858 | * |
John Fastabend | b6db217 | 2011-06-21 07:34:42 +0000 | [diff] [blame] | 1859 | * Priority 0 is an invalid priority in CEE spec. This routine |
| 1860 | * removes applications from the app list if the priority is |
Anish Bhatt | 16eecd9 | 2014-07-28 20:57:07 -0700 | [diff] [blame] | 1861 | * set to zero. Priority is expected to be 8-bit 802.1p user priority bitmap |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 1862 | */ |
John Fastabend | ab6baf9 | 2011-06-21 07:34:58 +0000 | [diff] [blame] | 1863 | int dcb_setapp(struct net_device *dev, struct dcb_app *new) |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 1864 | { |
| 1865 | struct dcb_app_type *itr; |
John Fastabend | 7ec7927 | 2011-01-31 12:00:59 +0000 | [diff] [blame] | 1866 | struct dcb_app_type event; |
Thomas Graf | 4e4f2f6 | 2012-06-13 02:55:00 +0000 | [diff] [blame] | 1867 | int err = 0; |
John Fastabend | 7ec7927 | 2011-01-31 12:00:59 +0000 | [diff] [blame] | 1868 | |
Mark Rustad | e290ed8 | 2011-10-06 08:52:33 +0000 | [diff] [blame] | 1869 | event.ifindex = dev->ifindex; |
John Fastabend | 7ec7927 | 2011-01-31 12:00:59 +0000 | [diff] [blame] | 1870 | memcpy(&event.app, new, sizeof(event.app)); |
John Fastabend | 6bd0e1c | 2011-10-06 08:52:38 +0000 | [diff] [blame] | 1871 | if (dev->dcbnl_ops->getdcbx) |
| 1872 | event.dcbx = dev->dcbnl_ops->getdcbx(dev); |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 1873 | |
Anish Bhatt | 52cff74 | 2014-11-14 16:38:31 -0800 | [diff] [blame] | 1874 | spin_lock_bh(&dcb_lock); |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 1875 | /* Search for existing match and replace */ |
Petr Machata | 08193d1 | 2018-07-27 15:26:55 +0300 | [diff] [blame] | 1876 | itr = dcb_app_lookup(new, dev->ifindex, -1); |
| 1877 | if (itr) { |
Thomas Graf | 716b31a | 2012-06-13 02:54:59 +0000 | [diff] [blame] | 1878 | if (new->priority) |
| 1879 | itr->app.priority = new->priority; |
| 1880 | else { |
| 1881 | list_del(&itr->list); |
| 1882 | kfree(itr); |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 1883 | } |
Thomas Graf | 716b31a | 2012-06-13 02:54:59 +0000 | [diff] [blame] | 1884 | goto out; |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 1885 | } |
| 1886 | /* App type does not exist add new application type */ |
Thomas Graf | 4e4f2f6 | 2012-06-13 02:55:00 +0000 | [diff] [blame] | 1887 | if (new->priority) |
| 1888 | err = dcb_app_add(new, dev->ifindex); |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 1889 | out: |
Anish Bhatt | 52cff74 | 2014-11-14 16:38:31 -0800 | [diff] [blame] | 1890 | spin_unlock_bh(&dcb_lock); |
Thomas Graf | 4e4f2f6 | 2012-06-13 02:55:00 +0000 | [diff] [blame] | 1891 | if (!err) |
| 1892 | call_dcbevent_notifiers(DCB_APP_EVENT, &event); |
| 1893 | return err; |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 1894 | } |
| 1895 | EXPORT_SYMBOL(dcb_setapp); |
| 1896 | |
John Fastabend | b6db217 | 2011-06-21 07:34:42 +0000 | [diff] [blame] | 1897 | /** |
John Fastabend | a364c8c | 2011-06-21 07:34:53 +0000 | [diff] [blame] | 1898 | * dcb_ieee_getapp_mask - retrieve the IEEE DCB application priority |
Andrew Lunn | a89a501 | 2020-10-28 02:09:13 +0100 | [diff] [blame] | 1899 | * @dev: network interface |
| 1900 | * @app: where to store the retrieve application data |
John Fastabend | a364c8c | 2011-06-21 07:34:53 +0000 | [diff] [blame] | 1901 | * |
| 1902 | * Helper routine which on success returns a non-zero 802.1Qaz user |
| 1903 | * priority bitmap otherwise returns 0 to indicate the dcb_app was |
| 1904 | * not found in APP list. |
| 1905 | */ |
| 1906 | u8 dcb_ieee_getapp_mask(struct net_device *dev, struct dcb_app *app) |
| 1907 | { |
| 1908 | struct dcb_app_type *itr; |
| 1909 | u8 prio = 0; |
| 1910 | |
Anish Bhatt | 52cff74 | 2014-11-14 16:38:31 -0800 | [diff] [blame] | 1911 | spin_lock_bh(&dcb_lock); |
Petr Machata | 08193d1 | 2018-07-27 15:26:55 +0300 | [diff] [blame] | 1912 | itr = dcb_app_lookup(app, dev->ifindex, -1); |
| 1913 | if (itr) |
Thomas Graf | 716b31a | 2012-06-13 02:54:59 +0000 | [diff] [blame] | 1914 | prio |= 1 << itr->app.priority; |
Anish Bhatt | 52cff74 | 2014-11-14 16:38:31 -0800 | [diff] [blame] | 1915 | spin_unlock_bh(&dcb_lock); |
John Fastabend | a364c8c | 2011-06-21 07:34:53 +0000 | [diff] [blame] | 1916 | |
| 1917 | return prio; |
| 1918 | } |
| 1919 | EXPORT_SYMBOL(dcb_ieee_getapp_mask); |
| 1920 | |
| 1921 | /** |
John Fastabend | b6db217 | 2011-06-21 07:34:42 +0000 | [diff] [blame] | 1922 | * dcb_ieee_setapp - add IEEE dcb application data to app list |
Andrew Lunn | a89a501 | 2020-10-28 02:09:13 +0100 | [diff] [blame] | 1923 | * @dev: network interface |
| 1924 | * @new: application data to add |
John Fastabend | b6db217 | 2011-06-21 07:34:42 +0000 | [diff] [blame] | 1925 | * |
| 1926 | * This adds Application data to the list. Multiple application |
| 1927 | * entries may exists for the same selector and protocol as long |
Anish Bhatt | 16eecd9 | 2014-07-28 20:57:07 -0700 | [diff] [blame] | 1928 | * as the priorities are different. Priority is expected to be a |
| 1929 | * 3-bit unsigned integer |
John Fastabend | b6db217 | 2011-06-21 07:34:42 +0000 | [diff] [blame] | 1930 | */ |
| 1931 | int dcb_ieee_setapp(struct net_device *dev, struct dcb_app *new) |
| 1932 | { |
John Fastabend | b6db217 | 2011-06-21 07:34:42 +0000 | [diff] [blame] | 1933 | struct dcb_app_type event; |
| 1934 | int err = 0; |
| 1935 | |
Mark Rustad | e290ed8 | 2011-10-06 08:52:33 +0000 | [diff] [blame] | 1936 | event.ifindex = dev->ifindex; |
John Fastabend | b6db217 | 2011-06-21 07:34:42 +0000 | [diff] [blame] | 1937 | memcpy(&event.app, new, sizeof(event.app)); |
John Fastabend | 6bd0e1c | 2011-10-06 08:52:38 +0000 | [diff] [blame] | 1938 | if (dev->dcbnl_ops->getdcbx) |
| 1939 | event.dcbx = dev->dcbnl_ops->getdcbx(dev); |
John Fastabend | b6db217 | 2011-06-21 07:34:42 +0000 | [diff] [blame] | 1940 | |
Anish Bhatt | 52cff74 | 2014-11-14 16:38:31 -0800 | [diff] [blame] | 1941 | spin_lock_bh(&dcb_lock); |
John Fastabend | b6db217 | 2011-06-21 07:34:42 +0000 | [diff] [blame] | 1942 | /* Search for existing match and abort if found */ |
Thomas Graf | 716b31a | 2012-06-13 02:54:59 +0000 | [diff] [blame] | 1943 | if (dcb_app_lookup(new, dev->ifindex, new->priority)) { |
| 1944 | err = -EEXIST; |
| 1945 | goto out; |
John Fastabend | b6db217 | 2011-06-21 07:34:42 +0000 | [diff] [blame] | 1946 | } |
| 1947 | |
Thomas Graf | 4e4f2f6 | 2012-06-13 02:55:00 +0000 | [diff] [blame] | 1948 | err = dcb_app_add(new, dev->ifindex); |
John Fastabend | b6db217 | 2011-06-21 07:34:42 +0000 | [diff] [blame] | 1949 | out: |
Anish Bhatt | 52cff74 | 2014-11-14 16:38:31 -0800 | [diff] [blame] | 1950 | spin_unlock_bh(&dcb_lock); |
John Fastabend | b6db217 | 2011-06-21 07:34:42 +0000 | [diff] [blame] | 1951 | if (!err) |
| 1952 | call_dcbevent_notifiers(DCB_APP_EVENT, &event); |
| 1953 | return err; |
| 1954 | } |
| 1955 | EXPORT_SYMBOL(dcb_ieee_setapp); |
| 1956 | |
John Fastabend | f9ae7e4 | 2011-06-21 07:34:48 +0000 | [diff] [blame] | 1957 | /** |
| 1958 | * dcb_ieee_delapp - delete IEEE dcb application data from list |
Andrew Lunn | a89a501 | 2020-10-28 02:09:13 +0100 | [diff] [blame] | 1959 | * @dev: network interface |
| 1960 | * @del: application data to delete |
John Fastabend | f9ae7e4 | 2011-06-21 07:34:48 +0000 | [diff] [blame] | 1961 | * |
| 1962 | * This removes a matching APP data from the APP list |
| 1963 | */ |
| 1964 | int dcb_ieee_delapp(struct net_device *dev, struct dcb_app *del) |
| 1965 | { |
| 1966 | struct dcb_app_type *itr; |
| 1967 | struct dcb_app_type event; |
| 1968 | int err = -ENOENT; |
| 1969 | |
Mark Rustad | e290ed8 | 2011-10-06 08:52:33 +0000 | [diff] [blame] | 1970 | event.ifindex = dev->ifindex; |
John Fastabend | f9ae7e4 | 2011-06-21 07:34:48 +0000 | [diff] [blame] | 1971 | memcpy(&event.app, del, sizeof(event.app)); |
John Fastabend | 6bd0e1c | 2011-10-06 08:52:38 +0000 | [diff] [blame] | 1972 | if (dev->dcbnl_ops->getdcbx) |
| 1973 | event.dcbx = dev->dcbnl_ops->getdcbx(dev); |
John Fastabend | f9ae7e4 | 2011-06-21 07:34:48 +0000 | [diff] [blame] | 1974 | |
Anish Bhatt | 52cff74 | 2014-11-14 16:38:31 -0800 | [diff] [blame] | 1975 | spin_lock_bh(&dcb_lock); |
John Fastabend | f9ae7e4 | 2011-06-21 07:34:48 +0000 | [diff] [blame] | 1976 | /* Search for existing match and remove it. */ |
Thomas Graf | 716b31a | 2012-06-13 02:54:59 +0000 | [diff] [blame] | 1977 | if ((itr = dcb_app_lookup(del, dev->ifindex, del->priority))) { |
| 1978 | list_del(&itr->list); |
| 1979 | kfree(itr); |
| 1980 | err = 0; |
John Fastabend | f9ae7e4 | 2011-06-21 07:34:48 +0000 | [diff] [blame] | 1981 | } |
| 1982 | |
Anish Bhatt | 52cff74 | 2014-11-14 16:38:31 -0800 | [diff] [blame] | 1983 | spin_unlock_bh(&dcb_lock); |
John Fastabend | f9ae7e4 | 2011-06-21 07:34:48 +0000 | [diff] [blame] | 1984 | if (!err) |
| 1985 | call_dcbevent_notifiers(DCB_APP_EVENT, &event); |
| 1986 | return err; |
| 1987 | } |
| 1988 | EXPORT_SYMBOL(dcb_ieee_delapp); |
| 1989 | |
Andrew Lunn | a89a501 | 2020-10-28 02:09:13 +0100 | [diff] [blame] | 1990 | /* |
Petr Machata | b67c540 | 2018-07-27 15:26:56 +0300 | [diff] [blame] | 1991 | * dcb_ieee_getapp_prio_dscp_mask_map - For a given device, find mapping from |
| 1992 | * priorities to the DSCP values assigned to that priority. Initialize p_map |
| 1993 | * such that each map element holds a bit mask of DSCP values configured for |
| 1994 | * that priority by APP entries. |
| 1995 | */ |
| 1996 | void dcb_ieee_getapp_prio_dscp_mask_map(const struct net_device *dev, |
| 1997 | struct dcb_ieee_app_prio_map *p_map) |
| 1998 | { |
| 1999 | int ifindex = dev->ifindex; |
| 2000 | struct dcb_app_type *itr; |
| 2001 | u8 prio; |
| 2002 | |
| 2003 | memset(p_map->map, 0, sizeof(p_map->map)); |
| 2004 | |
| 2005 | spin_lock_bh(&dcb_lock); |
| 2006 | list_for_each_entry(itr, &dcb_app_list, list) { |
| 2007 | if (itr->ifindex == ifindex && |
| 2008 | itr->app.selector == IEEE_8021QAZ_APP_SEL_DSCP && |
| 2009 | itr->app.protocol < 64 && |
| 2010 | itr->app.priority < IEEE_8021QAZ_MAX_TCS) { |
| 2011 | prio = itr->app.priority; |
| 2012 | p_map->map[prio] |= 1ULL << itr->app.protocol; |
| 2013 | } |
| 2014 | } |
| 2015 | spin_unlock_bh(&dcb_lock); |
| 2016 | } |
| 2017 | EXPORT_SYMBOL(dcb_ieee_getapp_prio_dscp_mask_map); |
| 2018 | |
Andrew Lunn | a89a501 | 2020-10-28 02:09:13 +0100 | [diff] [blame] | 2019 | /* |
Petr Machata | b67c540 | 2018-07-27 15:26:56 +0300 | [diff] [blame] | 2020 | * dcb_ieee_getapp_dscp_prio_mask_map - For a given device, find mapping from |
| 2021 | * DSCP values to the priorities assigned to that DSCP value. Initialize p_map |
| 2022 | * such that each map element holds a bit mask of priorities configured for a |
| 2023 | * given DSCP value by APP entries. |
| 2024 | */ |
| 2025 | void |
| 2026 | dcb_ieee_getapp_dscp_prio_mask_map(const struct net_device *dev, |
| 2027 | struct dcb_ieee_app_dscp_map *p_map) |
| 2028 | { |
| 2029 | int ifindex = dev->ifindex; |
| 2030 | struct dcb_app_type *itr; |
| 2031 | |
| 2032 | memset(p_map->map, 0, sizeof(p_map->map)); |
| 2033 | |
| 2034 | spin_lock_bh(&dcb_lock); |
| 2035 | list_for_each_entry(itr, &dcb_app_list, list) { |
| 2036 | if (itr->ifindex == ifindex && |
| 2037 | itr->app.selector == IEEE_8021QAZ_APP_SEL_DSCP && |
| 2038 | itr->app.protocol < 64 && |
| 2039 | itr->app.priority < IEEE_8021QAZ_MAX_TCS) |
| 2040 | p_map->map[itr->app.protocol] |= 1 << itr->app.priority; |
| 2041 | } |
| 2042 | spin_unlock_bh(&dcb_lock); |
| 2043 | } |
| 2044 | EXPORT_SYMBOL(dcb_ieee_getapp_dscp_prio_mask_map); |
| 2045 | |
Andrew Lunn | a89a501 | 2020-10-28 02:09:13 +0100 | [diff] [blame] | 2046 | /* |
Petr Machata | b67c540 | 2018-07-27 15:26:56 +0300 | [diff] [blame] | 2047 | * Per 802.1Q-2014, the selector value of 1 is used for matching on Ethernet |
| 2048 | * type, with valid PID values >= 1536. A special meaning is then assigned to |
| 2049 | * protocol value of 0: "default priority. For use when priority is not |
| 2050 | * otherwise specified". |
| 2051 | * |
| 2052 | * dcb_ieee_getapp_default_prio_mask - For a given device, find all APP entries |
| 2053 | * of the form {$PRIO, ETHERTYPE, 0} and construct a bit mask of all default |
| 2054 | * priorities set by these entries. |
| 2055 | */ |
| 2056 | u8 dcb_ieee_getapp_default_prio_mask(const struct net_device *dev) |
| 2057 | { |
| 2058 | int ifindex = dev->ifindex; |
| 2059 | struct dcb_app_type *itr; |
| 2060 | u8 mask = 0; |
| 2061 | |
| 2062 | spin_lock_bh(&dcb_lock); |
| 2063 | list_for_each_entry(itr, &dcb_app_list, list) { |
| 2064 | if (itr->ifindex == ifindex && |
| 2065 | itr->app.selector == IEEE_8021QAZ_APP_SEL_ETHERTYPE && |
| 2066 | itr->app.protocol == 0 && |
| 2067 | itr->app.priority < IEEE_8021QAZ_MAX_TCS) |
| 2068 | mask |= 1 << itr->app.priority; |
| 2069 | } |
| 2070 | spin_unlock_bh(&dcb_lock); |
| 2071 | |
| 2072 | return mask; |
| 2073 | } |
| 2074 | EXPORT_SYMBOL(dcb_ieee_getapp_default_prio_mask); |
| 2075 | |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 2076 | static int __init dcbnl_init(void) |
| 2077 | { |
John Fastabend | 9ab933a | 2010-12-30 09:26:31 +0000 | [diff] [blame] | 2078 | INIT_LIST_HEAD(&dcb_app_list); |
| 2079 | |
Florian Westphal | b97bac6 | 2017-08-09 20:41:48 +0200 | [diff] [blame] | 2080 | rtnl_register(PF_UNSPEC, RTM_GETDCB, dcb_doit, NULL, 0); |
| 2081 | rtnl_register(PF_UNSPEC, RTM_SETDCB, dcb_doit, NULL, 0); |
Alexander Duyck | 2f90b86 | 2008-11-20 20:52:10 -0800 | [diff] [blame] | 2082 | |
| 2083 | return 0; |
| 2084 | } |
Paul Gortmaker | 36b9ad80 | 2015-10-07 17:27:44 -0400 | [diff] [blame] | 2085 | device_initcall(dcbnl_init); |