Thomas Gleixner | d2912cb | 2019-06-04 10:11:33 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-only |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 2 | /* |
| 3 | * VLAN netlink control interface |
| 4 | * |
| 5 | * Copyright (c) 2007 Patrick McHardy <kaber@trash.net> |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #include <linux/kernel.h> |
| 9 | #include <linux/netdevice.h> |
| 10 | #include <linux/if_vlan.h> |
Paul Gortmaker | 3a9a231 | 2011-05-27 09:12:25 -0400 | [diff] [blame] | 11 | #include <linux/module.h> |
Eric W. Biederman | 881d966 | 2007-09-17 11:56:21 -0700 | [diff] [blame] | 12 | #include <net/net_namespace.h> |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 13 | #include <net/netlink.h> |
| 14 | #include <net/rtnetlink.h> |
| 15 | #include "vlan.h" |
| 16 | |
| 17 | |
| 18 | static const struct nla_policy vlan_policy[IFLA_VLAN_MAX + 1] = { |
| 19 | [IFLA_VLAN_ID] = { .type = NLA_U16 }, |
| 20 | [IFLA_VLAN_FLAGS] = { .len = sizeof(struct ifla_vlan_flags) }, |
| 21 | [IFLA_VLAN_EGRESS_QOS] = { .type = NLA_NESTED }, |
| 22 | [IFLA_VLAN_INGRESS_QOS] = { .type = NLA_NESTED }, |
Patrick McHardy | 8ad227f | 2013-04-19 02:04:31 +0000 | [diff] [blame] | 23 | [IFLA_VLAN_PROTOCOL] = { .type = NLA_U16 }, |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 24 | }; |
| 25 | |
| 26 | static const struct nla_policy vlan_map_policy[IFLA_VLAN_QOS_MAX + 1] = { |
| 27 | [IFLA_VLAN_QOS_MAPPING] = { .len = sizeof(struct ifla_vlan_qos_mapping) }, |
| 28 | }; |
| 29 | |
| 30 | |
| 31 | static inline int vlan_validate_qos_map(struct nlattr *attr) |
| 32 | { |
| 33 | if (!attr) |
| 34 | return 0; |
Johannes Berg | 8cb0817 | 2019-04-26 14:07:28 +0200 | [diff] [blame] | 35 | return nla_validate_nested_deprecated(attr, IFLA_VLAN_QOS_MAX, |
| 36 | vlan_map_policy, NULL); |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 37 | } |
| 38 | |
Matthias Schiffer | a8b8a889 | 2017-06-25 23:56:01 +0200 | [diff] [blame] | 39 | static int vlan_validate(struct nlattr *tb[], struct nlattr *data[], |
| 40 | struct netlink_ext_ack *extack) |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 41 | { |
| 42 | struct ifla_vlan_flags *flags; |
| 43 | u16 id; |
| 44 | int err; |
| 45 | |
Patrick McHardy | 0e06877 | 2007-07-11 19:42:31 -0700 | [diff] [blame] | 46 | if (tb[IFLA_ADDRESS]) { |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 47 | if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) { |
| 48 | NL_SET_ERR_MSG_MOD(extack, "Invalid link address"); |
Patrick McHardy | 0e06877 | 2007-07-11 19:42:31 -0700 | [diff] [blame] | 49 | return -EINVAL; |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 50 | } |
| 51 | if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) { |
| 52 | NL_SET_ERR_MSG_MOD(extack, "Invalid link address"); |
Patrick McHardy | 0e06877 | 2007-07-11 19:42:31 -0700 | [diff] [blame] | 53 | return -EADDRNOTAVAIL; |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 54 | } |
Patrick McHardy | 0e06877 | 2007-07-11 19:42:31 -0700 | [diff] [blame] | 55 | } |
| 56 | |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 57 | if (!data) { |
| 58 | NL_SET_ERR_MSG_MOD(extack, "VLAN properties not specified"); |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 59 | return -EINVAL; |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 60 | } |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 61 | |
Patrick McHardy | 8ad227f | 2013-04-19 02:04:31 +0000 | [diff] [blame] | 62 | if (data[IFLA_VLAN_PROTOCOL]) { |
| 63 | switch (nla_get_be16(data[IFLA_VLAN_PROTOCOL])) { |
Joe Perches | f0e7882 | 2014-03-12 10:04:15 -0700 | [diff] [blame] | 64 | case htons(ETH_P_8021Q): |
| 65 | case htons(ETH_P_8021AD): |
Patrick McHardy | 8ad227f | 2013-04-19 02:04:31 +0000 | [diff] [blame] | 66 | break; |
| 67 | default: |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 68 | NL_SET_ERR_MSG_MOD(extack, "Invalid VLAN protocol"); |
Patrick McHardy | 8ad227f | 2013-04-19 02:04:31 +0000 | [diff] [blame] | 69 | return -EPROTONOSUPPORT; |
| 70 | } |
| 71 | } |
| 72 | |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 73 | if (data[IFLA_VLAN_ID]) { |
| 74 | id = nla_get_u16(data[IFLA_VLAN_ID]); |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 75 | if (id >= VLAN_VID_MASK) { |
| 76 | NL_SET_ERR_MSG_MOD(extack, "Invalid VLAN id"); |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 77 | return -ERANGE; |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 78 | } |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 79 | } |
| 80 | if (data[IFLA_VLAN_FLAGS]) { |
| 81 | flags = nla_data(data[IFLA_VLAN_FLAGS]); |
Patrick McHardy | 70c03b4 | 2008-07-05 21:26:57 -0700 | [diff] [blame] | 82 | if ((flags->flags & flags->mask) & |
Patrick McHardy | 5e75659 | 2009-11-25 07:54:54 +0000 | [diff] [blame] | 83 | ~(VLAN_FLAG_REORDER_HDR | VLAN_FLAG_GVRP | |
Mike Manning | 8c8b345 | 2019-04-18 18:35:31 +0100 | [diff] [blame] | 84 | VLAN_FLAG_LOOSE_BINDING | VLAN_FLAG_MVRP | |
| 85 | VLAN_FLAG_BRIDGE_BINDING)) { |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 86 | NL_SET_ERR_MSG_MOD(extack, "Invalid VLAN flags"); |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 87 | return -EINVAL; |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 88 | } |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | err = vlan_validate_qos_map(data[IFLA_VLAN_INGRESS_QOS]); |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 92 | if (err < 0) { |
| 93 | NL_SET_ERR_MSG_MOD(extack, "Invalid ingress QOS map"); |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 94 | return err; |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 95 | } |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 96 | err = vlan_validate_qos_map(data[IFLA_VLAN_EGRESS_QOS]); |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 97 | if (err < 0) { |
| 98 | NL_SET_ERR_MSG_MOD(extack, "Invalid egress QOS map"); |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 99 | return err; |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 100 | } |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 101 | return 0; |
| 102 | } |
| 103 | |
Matthias Schiffer | ad744b2 | 2017-06-25 23:56:00 +0200 | [diff] [blame] | 104 | static int vlan_changelink(struct net_device *dev, struct nlattr *tb[], |
| 105 | struct nlattr *data[], |
| 106 | struct netlink_ext_ack *extack) |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 107 | { |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 108 | struct ifla_vlan_flags *flags; |
| 109 | struct ifla_vlan_qos_mapping *m; |
| 110 | struct nlattr *attr; |
Eric Dumazet | eb8ef2a | 2020-01-07 01:42:25 -0800 | [diff] [blame] | 111 | int rem, err; |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 112 | |
| 113 | if (data[IFLA_VLAN_FLAGS]) { |
| 114 | flags = nla_data(data[IFLA_VLAN_FLAGS]); |
Eric Dumazet | eb8ef2a | 2020-01-07 01:42:25 -0800 | [diff] [blame] | 115 | err = vlan_dev_change_flags(dev, flags->flags, flags->mask); |
| 116 | if (err) |
| 117 | return err; |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 118 | } |
| 119 | if (data[IFLA_VLAN_INGRESS_QOS]) { |
| 120 | nla_for_each_nested(attr, data[IFLA_VLAN_INGRESS_QOS], rem) { |
| 121 | m = nla_data(attr); |
| 122 | vlan_dev_set_ingress_priority(dev, m->to, m->from); |
| 123 | } |
| 124 | } |
| 125 | if (data[IFLA_VLAN_EGRESS_QOS]) { |
| 126 | nla_for_each_nested(attr, data[IFLA_VLAN_EGRESS_QOS], rem) { |
| 127 | m = nla_data(attr); |
Eric Dumazet | eb8ef2a | 2020-01-07 01:42:25 -0800 | [diff] [blame] | 128 | err = vlan_dev_set_egress_priority(dev, m->from, m->to); |
| 129 | if (err) |
| 130 | return err; |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 131 | } |
| 132 | } |
| 133 | return 0; |
| 134 | } |
| 135 | |
Eric W. Biederman | 81adee4 | 2009-11-08 00:53:51 -0800 | [diff] [blame] | 136 | static int vlan_newlink(struct net *src_net, struct net_device *dev, |
Matthias Schiffer | 7a3f4a1 | 2017-06-25 23:55:59 +0200 | [diff] [blame] | 137 | struct nlattr *tb[], struct nlattr *data[], |
| 138 | struct netlink_ext_ack *extack) |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 139 | { |
Jiri Pirko | 7da82c0 | 2011-12-08 04:11:15 +0000 | [diff] [blame] | 140 | struct vlan_dev_priv *vlan = vlan_dev_priv(dev); |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 141 | struct net_device *real_dev; |
Paolo Abeni | 18d3df3 | 2016-07-14 18:00:10 +0200 | [diff] [blame] | 142 | unsigned int max_mtu; |
Patrick McHardy | 8ad227f | 2013-04-19 02:04:31 +0000 | [diff] [blame] | 143 | __be16 proto; |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 144 | int err; |
| 145 | |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 146 | if (!data[IFLA_VLAN_ID]) { |
| 147 | NL_SET_ERR_MSG_MOD(extack, "VLAN id not specified"); |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 148 | return -EINVAL; |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 149 | } |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 150 | |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 151 | if (!tb[IFLA_LINK]) { |
| 152 | NL_SET_ERR_MSG_MOD(extack, "link not specified"); |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 153 | return -EINVAL; |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 154 | } |
| 155 | |
Eric W. Biederman | 81adee4 | 2009-11-08 00:53:51 -0800 | [diff] [blame] | 156 | real_dev = __dev_get_by_index(src_net, nla_get_u32(tb[IFLA_LINK])); |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 157 | if (!real_dev) { |
| 158 | NL_SET_ERR_MSG_MOD(extack, "link does not exist"); |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 159 | return -ENODEV; |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 160 | } |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 161 | |
Patrick McHardy | 8ad227f | 2013-04-19 02:04:31 +0000 | [diff] [blame] | 162 | if (data[IFLA_VLAN_PROTOCOL]) |
| 163 | proto = nla_get_be16(data[IFLA_VLAN_PROTOCOL]); |
| 164 | else |
| 165 | proto = htons(ETH_P_8021Q); |
| 166 | |
| 167 | vlan->vlan_proto = proto; |
Patrick McHardy | 1fd9b1f | 2013-04-19 02:04:29 +0000 | [diff] [blame] | 168 | vlan->vlan_id = nla_get_u16(data[IFLA_VLAN_ID]); |
| 169 | vlan->real_dev = real_dev; |
Vadim Fedorenko | 9d917c2 | 2017-11-02 15:49:08 +0300 | [diff] [blame] | 170 | dev->priv_flags |= (real_dev->priv_flags & IFF_XMIT_DST_RELEASE); |
Patrick McHardy | 1fd9b1f | 2013-04-19 02:04:29 +0000 | [diff] [blame] | 171 | vlan->flags = VLAN_FLAG_REORDER_HDR; |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 172 | |
David Ahern | 33fa382 | 2018-05-17 12:29:47 -0700 | [diff] [blame] | 173 | err = vlan_check_real_dev(real_dev, vlan->vlan_proto, vlan->vlan_id, |
| 174 | extack); |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 175 | if (err < 0) |
| 176 | return err; |
| 177 | |
Paolo Abeni | 18d3df3 | 2016-07-14 18:00:10 +0200 | [diff] [blame] | 178 | max_mtu = netif_reduces_vlan_mtu(real_dev) ? real_dev->mtu - VLAN_HLEN : |
| 179 | real_dev->mtu; |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 180 | if (!tb[IFLA_MTU]) |
Paolo Abeni | 18d3df3 | 2016-07-14 18:00:10 +0200 | [diff] [blame] | 181 | dev->mtu = max_mtu; |
| 182 | else if (dev->mtu > max_mtu) |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 183 | return -EINVAL; |
| 184 | |
Matthias Schiffer | ad744b2 | 2017-06-25 23:56:00 +0200 | [diff] [blame] | 185 | err = vlan_changelink(dev, tb, data, extack); |
Eric Dumazet | 9bbd917 | 2020-01-07 01:42:24 -0800 | [diff] [blame] | 186 | if (err) |
Xin Long | 37aa50c | 2022-02-09 03:19:55 -0500 | [diff] [blame] | 187 | return err; |
| 188 | err = register_vlan_dev(dev, extack); |
| 189 | if (err) |
| 190 | vlan_dev_free_egress_priority(dev); |
Eric Dumazet | 9bbd917 | 2020-01-07 01:42:24 -0800 | [diff] [blame] | 191 | return err; |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 192 | } |
| 193 | |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 194 | static inline size_t vlan_qos_map_size(unsigned int n) |
| 195 | { |
| 196 | if (n == 0) |
| 197 | return 0; |
| 198 | /* IFLA_VLAN_{EGRESS,INGRESS}_QOS + n * IFLA_VLAN_QOS_MAPPING */ |
| 199 | return nla_total_size(sizeof(struct nlattr)) + |
| 200 | nla_total_size(sizeof(struct ifla_vlan_qos_mapping)) * n; |
| 201 | } |
| 202 | |
| 203 | static size_t vlan_get_size(const struct net_device *dev) |
| 204 | { |
Jiri Pirko | 7da82c0 | 2011-12-08 04:11:15 +0000 | [diff] [blame] | 205 | struct vlan_dev_priv *vlan = vlan_dev_priv(dev); |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 206 | |
Patrick McHardy | 8ad227f | 2013-04-19 02:04:31 +0000 | [diff] [blame] | 207 | return nla_total_size(2) + /* IFLA_VLAN_PROTOCOL */ |
| 208 | nla_total_size(2) + /* IFLA_VLAN_ID */ |
Marc Kleine-Budde | c33a39c | 2013-10-07 23:19:58 +0200 | [diff] [blame] | 209 | nla_total_size(sizeof(struct ifla_vlan_flags)) + /* IFLA_VLAN_FLAGS */ |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 210 | vlan_qos_map_size(vlan->nr_ingress_mappings) + |
| 211 | vlan_qos_map_size(vlan->nr_egress_mappings); |
| 212 | } |
| 213 | |
| 214 | static int vlan_fill_info(struct sk_buff *skb, const struct net_device *dev) |
| 215 | { |
Jiri Pirko | 7da82c0 | 2011-12-08 04:11:15 +0000 | [diff] [blame] | 216 | struct vlan_dev_priv *vlan = vlan_dev_priv(dev); |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 217 | struct vlan_priority_tci_mapping *pm; |
| 218 | struct ifla_vlan_flags f; |
| 219 | struct ifla_vlan_qos_mapping m; |
| 220 | struct nlattr *nest; |
| 221 | unsigned int i; |
| 222 | |
Patrick McHardy | 8ad227f | 2013-04-19 02:04:31 +0000 | [diff] [blame] | 223 | if (nla_put_be16(skb, IFLA_VLAN_PROTOCOL, vlan->vlan_proto) || |
| 224 | nla_put_u16(skb, IFLA_VLAN_ID, vlan->vlan_id)) |
David S. Miller | 61849dd | 2012-04-01 20:50:45 -0400 | [diff] [blame] | 225 | goto nla_put_failure; |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 226 | if (vlan->flags) { |
| 227 | f.flags = vlan->flags; |
| 228 | f.mask = ~0; |
David S. Miller | 61849dd | 2012-04-01 20:50:45 -0400 | [diff] [blame] | 229 | if (nla_put(skb, IFLA_VLAN_FLAGS, sizeof(f), &f)) |
| 230 | goto nla_put_failure; |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 231 | } |
| 232 | if (vlan->nr_ingress_mappings) { |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 233 | nest = nla_nest_start_noflag(skb, IFLA_VLAN_INGRESS_QOS); |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 234 | if (nest == NULL) |
| 235 | goto nla_put_failure; |
| 236 | |
| 237 | for (i = 0; i < ARRAY_SIZE(vlan->ingress_priority_map); i++) { |
| 238 | if (!vlan->ingress_priority_map[i]) |
| 239 | continue; |
| 240 | |
| 241 | m.from = i; |
| 242 | m.to = vlan->ingress_priority_map[i]; |
David S. Miller | 61849dd | 2012-04-01 20:50:45 -0400 | [diff] [blame] | 243 | if (nla_put(skb, IFLA_VLAN_QOS_MAPPING, |
| 244 | sizeof(m), &m)) |
| 245 | goto nla_put_failure; |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 246 | } |
| 247 | nla_nest_end(skb, nest); |
| 248 | } |
| 249 | |
| 250 | if (vlan->nr_egress_mappings) { |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 251 | nest = nla_nest_start_noflag(skb, IFLA_VLAN_EGRESS_QOS); |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 252 | if (nest == NULL) |
| 253 | goto nla_put_failure; |
| 254 | |
| 255 | for (i = 0; i < ARRAY_SIZE(vlan->egress_priority_map); i++) { |
| 256 | for (pm = vlan->egress_priority_map[i]; pm; |
| 257 | pm = pm->next) { |
| 258 | if (!pm->vlan_qos) |
| 259 | continue; |
| 260 | |
| 261 | m.from = pm->priority; |
| 262 | m.to = (pm->vlan_qos >> 13) & 0x7; |
David S. Miller | 61849dd | 2012-04-01 20:50:45 -0400 | [diff] [blame] | 263 | if (nla_put(skb, IFLA_VLAN_QOS_MAPPING, |
| 264 | sizeof(m), &m)) |
| 265 | goto nla_put_failure; |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 266 | } |
| 267 | } |
| 268 | nla_nest_end(skb, nest); |
| 269 | } |
| 270 | return 0; |
| 271 | |
| 272 | nla_put_failure: |
| 273 | return -EMSGSIZE; |
| 274 | } |
| 275 | |
Nicolas Dichtel | 1f17257 | 2015-01-20 15:15:44 +0100 | [diff] [blame] | 276 | static struct net *vlan_get_link_net(const struct net_device *dev) |
| 277 | { |
| 278 | struct net_device *real_dev = vlan_dev_priv(dev)->real_dev; |
| 279 | |
| 280 | return dev_net(real_dev); |
| 281 | } |
| 282 | |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 283 | struct rtnl_link_ops vlan_link_ops __read_mostly = { |
| 284 | .kind = "vlan", |
| 285 | .maxtype = IFLA_VLAN_MAX, |
| 286 | .policy = vlan_policy, |
Jiri Pirko | 7da82c0 | 2011-12-08 04:11:15 +0000 | [diff] [blame] | 287 | .priv_size = sizeof(struct vlan_dev_priv), |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 288 | .setup = vlan_setup, |
| 289 | .validate = vlan_validate, |
| 290 | .newlink = vlan_newlink, |
| 291 | .changelink = vlan_changelink, |
Patrick McHardy | af30151 | 2008-01-21 00:25:50 -0800 | [diff] [blame] | 292 | .dellink = unregister_vlan_dev, |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 293 | .get_size = vlan_get_size, |
| 294 | .fill_info = vlan_fill_info, |
Nicolas Dichtel | 1f17257 | 2015-01-20 15:15:44 +0100 | [diff] [blame] | 295 | .get_link_net = vlan_get_link_net, |
Patrick McHardy | 07b5b17 | 2007-06-13 12:07:54 -0700 | [diff] [blame] | 296 | }; |
| 297 | |
| 298 | int __init vlan_netlink_init(void) |
| 299 | { |
| 300 | return rtnl_link_register(&vlan_link_ops); |
| 301 | } |
| 302 | |
| 303 | void __exit vlan_netlink_fini(void) |
| 304 | { |
| 305 | rtnl_link_unregister(&vlan_link_ops); |
| 306 | } |
| 307 | |
| 308 | MODULE_ALIAS_RTNL_LINK("vlan"); |