Thomas Gleixner | 2874c5f | 2019-05-27 08:55:01 +0200 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0-or-later |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (c) 2007 Patrick McHardy <kaber@trash.net> |
| 4 | * |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 5 | * The code this is based on carried the following copyright notice: |
| 6 | * --- |
| 7 | * (C) Copyright 2001-2006 |
| 8 | * Alex Zeffertt, Cambridge Broadband Ltd, ajz@cambridgebroadband.com |
| 9 | * Re-worked by Ben Greear <greearb@candelatech.com> |
| 10 | * --- |
| 11 | */ |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/types.h> |
| 14 | #include <linux/module.h> |
| 15 | #include <linux/init.h> |
| 16 | #include <linux/errno.h> |
| 17 | #include <linux/slab.h> |
| 18 | #include <linux/string.h> |
Franck Bui-Huu | 8252474 | 2008-05-12 21:21:05 +0200 | [diff] [blame] | 19 | #include <linux/rculist.h> |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 20 | #include <linux/notifier.h> |
| 21 | #include <linux/netdevice.h> |
| 22 | #include <linux/etherdevice.h> |
Hangbin Liu | 254c0a2 | 2019-03-20 10:23:33 +0800 | [diff] [blame] | 23 | #include <linux/net_tstamp.h> |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 24 | #include <linux/ethtool.h> |
| 25 | #include <linux/if_arp.h> |
Jiri Pirko | 87002b0 | 2011-12-08 04:11:17 +0000 | [diff] [blame] | 26 | #include <linux/if_vlan.h> |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 27 | #include <linux/if_link.h> |
| 28 | #include <linux/if_macvlan.h> |
Eric Dumazet | cd431e7 | 2013-02-05 20:22:50 +0000 | [diff] [blame] | 29 | #include <linux/hash.h> |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 30 | #include <linux/workqueue.h> |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 31 | #include <net/rtnetlink.h> |
Arnd Bergmann | 618e1b7 | 2009-11-26 06:07:10 +0000 | [diff] [blame] | 32 | #include <net/xfrm.h> |
dingtianhong | 688cea8 | 2014-05-30 16:00:56 +0800 | [diff] [blame] | 33 | #include <linux/netpoll.h> |
Hangbin Liu | 254c0a2 | 2019-03-20 10:23:33 +0800 | [diff] [blame] | 34 | #include <linux/phy.h> |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 35 | |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 36 | #define MACVLAN_HASH_BITS 8 |
| 37 | #define MACVLAN_HASH_SIZE (1<<MACVLAN_HASH_BITS) |
Thomas Karlsson | d4bff72 | 2020-12-02 19:49:58 +0100 | [diff] [blame] | 38 | #define MACVLAN_DEFAULT_BC_QUEUE_LEN 1000 |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 39 | |
Vlad Yasevich | 43c2d57 | 2017-06-21 07:59:18 -0400 | [diff] [blame] | 40 | #define MACVLAN_F_PASSTHRU 1 |
Vlad Yasevich | 18c8c54 | 2017-06-21 07:59:19 -0400 | [diff] [blame] | 41 | #define MACVLAN_F_ADDRCHANGE 2 |
Vlad Yasevich | 43c2d57 | 2017-06-21 07:59:18 -0400 | [diff] [blame] | 42 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 43 | struct macvlan_port { |
| 44 | struct net_device *dev; |
| 45 | struct hlist_head vlan_hash[MACVLAN_HASH_SIZE]; |
| 46 | struct list_head vlans; |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 47 | struct sk_buff_head bc_queue; |
| 48 | struct work_struct bc_work; |
Thomas Karlsson | d4bff72 | 2020-12-02 19:49:58 +0100 | [diff] [blame] | 49 | u32 bc_queue_len_used; |
Vlad Yasevich | 43c2d57 | 2017-06-21 07:59:18 -0400 | [diff] [blame] | 50 | u32 flags; |
David S. Miller | 5e3c516 | 2014-08-14 14:32:49 -0700 | [diff] [blame] | 51 | int count; |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 52 | struct hlist_head vlan_source_hash[MACVLAN_HASH_SIZE]; |
Herbert Xu | 9c127a0 | 2016-06-01 11:45:44 +0800 | [diff] [blame] | 53 | DECLARE_BITMAP(mc_filter, MACVLAN_MC_FILTER_SZ); |
Vlad Yasevich | 18c8c54 | 2017-06-21 07:59:19 -0400 | [diff] [blame] | 54 | unsigned char perm_addr[ETH_ALEN]; |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | struct macvlan_source_entry { |
| 58 | struct hlist_node hlist; |
| 59 | struct macvlan_dev *vlan; |
| 60 | unsigned char addr[6+2] __aligned(sizeof(u16)); |
| 61 | struct rcu_head rcu; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 62 | }; |
| 63 | |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 64 | struct macvlan_skb_cb { |
| 65 | const struct macvlan_dev *src; |
| 66 | }; |
| 67 | |
| 68 | #define MACVLAN_SKB_CB(__skb) ((struct macvlan_skb_cb *)&((__skb)->cb[0])) |
| 69 | |
Eric W. Biederman | d5cd9244 | 2011-03-21 18:22:22 -0700 | [diff] [blame] | 70 | static void macvlan_port_destroy(struct net_device *dev); |
Thomas Karlsson | d4bff72 | 2020-12-02 19:49:58 +0100 | [diff] [blame] | 71 | static void update_port_bc_queue_len(struct macvlan_port *port); |
Eric W. Biederman | d5cd9244 | 2011-03-21 18:22:22 -0700 | [diff] [blame] | 72 | |
Vlad Yasevich | 43c2d57 | 2017-06-21 07:59:18 -0400 | [diff] [blame] | 73 | static inline bool macvlan_passthru(const struct macvlan_port *port) |
| 74 | { |
| 75 | return port->flags & MACVLAN_F_PASSTHRU; |
| 76 | } |
| 77 | |
| 78 | static inline void macvlan_set_passthru(struct macvlan_port *port) |
| 79 | { |
| 80 | port->flags |= MACVLAN_F_PASSTHRU; |
| 81 | } |
| 82 | |
Vlad Yasevich | 18c8c54 | 2017-06-21 07:59:19 -0400 | [diff] [blame] | 83 | static inline bool macvlan_addr_change(const struct macvlan_port *port) |
| 84 | { |
| 85 | return port->flags & MACVLAN_F_ADDRCHANGE; |
| 86 | } |
| 87 | |
| 88 | static inline void macvlan_set_addr_change(struct macvlan_port *port) |
| 89 | { |
| 90 | port->flags |= MACVLAN_F_ADDRCHANGE; |
| 91 | } |
| 92 | |
| 93 | static inline void macvlan_clear_addr_change(struct macvlan_port *port) |
| 94 | { |
| 95 | port->flags &= ~MACVLAN_F_ADDRCHANGE; |
| 96 | } |
| 97 | |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 98 | /* Hash Ethernet address */ |
| 99 | static u32 macvlan_eth_hash(const unsigned char *addr) |
| 100 | { |
| 101 | u64 value = get_unaligned((u64 *)addr); |
| 102 | |
| 103 | /* only want 6 bytes */ |
| 104 | #ifdef __BIG_ENDIAN |
| 105 | value >>= 16; |
| 106 | #else |
| 107 | value <<= 16; |
| 108 | #endif |
| 109 | return hash_64(value, MACVLAN_HASH_BITS); |
| 110 | } |
| 111 | |
Eric Dumazet | e052f7e | 2013-03-30 10:08:44 +0000 | [diff] [blame] | 112 | static struct macvlan_port *macvlan_port_get_rcu(const struct net_device *dev) |
| 113 | { |
| 114 | return rcu_dereference(dev->rx_handler_data); |
| 115 | } |
| 116 | |
| 117 | static struct macvlan_port *macvlan_port_get_rtnl(const struct net_device *dev) |
| 118 | { |
| 119 | return rtnl_dereference(dev->rx_handler_data); |
| 120 | } |
| 121 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 122 | static struct macvlan_dev *macvlan_hash_lookup(const struct macvlan_port *port, |
| 123 | const unsigned char *addr) |
| 124 | { |
| 125 | struct macvlan_dev *vlan; |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 126 | u32 idx = macvlan_eth_hash(addr); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 127 | |
Wei Yongjun | 58e64a3 | 2020-04-22 10:11:35 +0800 | [diff] [blame] | 128 | hlist_for_each_entry_rcu(vlan, &port->vlan_hash[idx], hlist, |
| 129 | lockdep_rtnl_is_held()) { |
Joe Perches | a6700db | 2012-05-09 17:04:04 +0000 | [diff] [blame] | 130 | if (ether_addr_equal_64bits(vlan->dev->dev_addr, addr)) |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 131 | return vlan; |
| 132 | } |
| 133 | return NULL; |
| 134 | } |
| 135 | |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 136 | static struct macvlan_source_entry *macvlan_hash_lookup_source( |
| 137 | const struct macvlan_dev *vlan, |
| 138 | const unsigned char *addr) |
| 139 | { |
| 140 | struct macvlan_source_entry *entry; |
| 141 | u32 idx = macvlan_eth_hash(addr); |
| 142 | struct hlist_head *h = &vlan->port->vlan_source_hash[idx]; |
| 143 | |
| 144 | hlist_for_each_entry_rcu(entry, h, hlist) { |
| 145 | if (ether_addr_equal_64bits(entry->addr, addr) && |
| 146 | entry->vlan == vlan) |
| 147 | return entry; |
| 148 | } |
| 149 | return NULL; |
| 150 | } |
| 151 | |
| 152 | static int macvlan_hash_add_source(struct macvlan_dev *vlan, |
| 153 | const unsigned char *addr) |
| 154 | { |
| 155 | struct macvlan_port *port = vlan->port; |
| 156 | struct macvlan_source_entry *entry; |
| 157 | struct hlist_head *h; |
| 158 | |
| 159 | entry = macvlan_hash_lookup_source(vlan, addr); |
| 160 | if (entry) |
| 161 | return 0; |
| 162 | |
| 163 | entry = kmalloc(sizeof(*entry), GFP_KERNEL); |
| 164 | if (!entry) |
| 165 | return -ENOMEM; |
| 166 | |
| 167 | ether_addr_copy(entry->addr, addr); |
| 168 | entry->vlan = vlan; |
| 169 | h = &port->vlan_source_hash[macvlan_eth_hash(addr)]; |
| 170 | hlist_add_head_rcu(&entry->hlist, h); |
| 171 | vlan->macaddr_count++; |
| 172 | |
| 173 | return 0; |
| 174 | } |
| 175 | |
Eric Biederman | f9ac30f | 2009-03-13 13:16:13 -0700 | [diff] [blame] | 176 | static void macvlan_hash_add(struct macvlan_dev *vlan) |
| 177 | { |
| 178 | struct macvlan_port *port = vlan->port; |
| 179 | const unsigned char *addr = vlan->dev->dev_addr; |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 180 | u32 idx = macvlan_eth_hash(addr); |
Eric Biederman | f9ac30f | 2009-03-13 13:16:13 -0700 | [diff] [blame] | 181 | |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 182 | hlist_add_head_rcu(&vlan->hlist, &port->vlan_hash[idx]); |
| 183 | } |
| 184 | |
| 185 | static void macvlan_hash_del_source(struct macvlan_source_entry *entry) |
| 186 | { |
| 187 | hlist_del_rcu(&entry->hlist); |
| 188 | kfree_rcu(entry, rcu); |
Eric Biederman | f9ac30f | 2009-03-13 13:16:13 -0700 | [diff] [blame] | 189 | } |
| 190 | |
Eric Dumazet | 449f454 | 2011-05-19 12:24:16 +0000 | [diff] [blame] | 191 | static void macvlan_hash_del(struct macvlan_dev *vlan, bool sync) |
Eric Biederman | f9ac30f | 2009-03-13 13:16:13 -0700 | [diff] [blame] | 192 | { |
| 193 | hlist_del_rcu(&vlan->hlist); |
Eric Dumazet | 449f454 | 2011-05-19 12:24:16 +0000 | [diff] [blame] | 194 | if (sync) |
| 195 | synchronize_rcu(); |
Eric Biederman | f9ac30f | 2009-03-13 13:16:13 -0700 | [diff] [blame] | 196 | } |
| 197 | |
| 198 | static void macvlan_hash_change_addr(struct macvlan_dev *vlan, |
| 199 | const unsigned char *addr) |
| 200 | { |
Eric Dumazet | 449f454 | 2011-05-19 12:24:16 +0000 | [diff] [blame] | 201 | macvlan_hash_del(vlan, true); |
Eric Biederman | f9ac30f | 2009-03-13 13:16:13 -0700 | [diff] [blame] | 202 | /* Now that we are unhashed it is safe to change the device |
| 203 | * address without confusing packet delivery. |
| 204 | */ |
Jakub Kicinski | 2f23e5c | 2021-10-01 14:32:19 -0700 | [diff] [blame] | 205 | eth_hw_addr_set(vlan->dev, addr); |
Eric Biederman | f9ac30f | 2009-03-13 13:16:13 -0700 | [diff] [blame] | 206 | macvlan_hash_add(vlan); |
| 207 | } |
| 208 | |
Gao Feng | d94d025 | 2016-11-14 08:24:19 +0800 | [diff] [blame] | 209 | static bool macvlan_addr_busy(const struct macvlan_port *port, |
| 210 | const unsigned char *addr) |
Eric Biederman | f9ac30f | 2009-03-13 13:16:13 -0700 | [diff] [blame] | 211 | { |
Vlad Yasevich | 18c8c54 | 2017-06-21 07:59:19 -0400 | [diff] [blame] | 212 | /* Test to see if the specified address is |
Eric Biederman | f9ac30f | 2009-03-13 13:16:13 -0700 | [diff] [blame] | 213 | * currently in use by the underlying device or |
| 214 | * another macvlan. |
| 215 | */ |
Vlad Yasevich | 18c8c54 | 2017-06-21 07:59:19 -0400 | [diff] [blame] | 216 | if (!macvlan_passthru(port) && !macvlan_addr_change(port) && |
Vlad Yasevich | e696cda | 2017-06-21 07:59:17 -0400 | [diff] [blame] | 217 | ether_addr_equal_64bits(port->dev->dev_addr, addr)) |
Gao Feng | d94d025 | 2016-11-14 08:24:19 +0800 | [diff] [blame] | 218 | return true; |
Eric Biederman | f9ac30f | 2009-03-13 13:16:13 -0700 | [diff] [blame] | 219 | |
| 220 | if (macvlan_hash_lookup(port, addr)) |
Gao Feng | d94d025 | 2016-11-14 08:24:19 +0800 | [diff] [blame] | 221 | return true; |
Eric Biederman | f9ac30f | 2009-03-13 13:16:13 -0700 | [diff] [blame] | 222 | |
Gao Feng | d94d025 | 2016-11-14 08:24:19 +0800 | [diff] [blame] | 223 | return false; |
Eric Biederman | f9ac30f | 2009-03-13 13:16:13 -0700 | [diff] [blame] | 224 | } |
| 225 | |
Arnd Bergmann | a1e514c | 2009-11-26 06:07:09 +0000 | [diff] [blame] | 226 | |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 227 | static int macvlan_broadcast_one(struct sk_buff *skb, |
| 228 | const struct macvlan_dev *vlan, |
Arnd Bergmann | 618e1b7 | 2009-11-26 06:07:10 +0000 | [diff] [blame] | 229 | const struct ethhdr *eth, bool local) |
Arnd Bergmann | a1e514c | 2009-11-26 06:07:09 +0000 | [diff] [blame] | 230 | { |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 231 | struct net_device *dev = vlan->dev; |
Arnd Bergmann | a1e514c | 2009-11-26 06:07:09 +0000 | [diff] [blame] | 232 | |
Arnd Bergmann | 618e1b7 | 2009-11-26 06:07:10 +0000 | [diff] [blame] | 233 | if (local) |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 234 | return __dev_forward_skb(dev, skb); |
Arnd Bergmann | 618e1b7 | 2009-11-26 06:07:10 +0000 | [diff] [blame] | 235 | |
Arnd Bergmann | a1e514c | 2009-11-26 06:07:09 +0000 | [diff] [blame] | 236 | skb->dev = dev; |
Joe Perches | a6700db | 2012-05-09 17:04:04 +0000 | [diff] [blame] | 237 | if (ether_addr_equal_64bits(eth->h_dest, dev->broadcast)) |
Arnd Bergmann | a1e514c | 2009-11-26 06:07:09 +0000 | [diff] [blame] | 238 | skb->pkt_type = PACKET_BROADCAST; |
| 239 | else |
| 240 | skb->pkt_type = PACKET_MULTICAST; |
| 241 | |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 242 | return 0; |
Arnd Bergmann | a1e514c | 2009-11-26 06:07:09 +0000 | [diff] [blame] | 243 | } |
| 244 | |
Eric Dumazet | 3807ff5 | 2013-02-07 16:41:02 +0000 | [diff] [blame] | 245 | static u32 macvlan_hash_mix(const struct macvlan_dev *vlan) |
| 246 | { |
| 247 | return (u32)(((unsigned long)vlan) >> L1_CACHE_SHIFT); |
| 248 | } |
| 249 | |
| 250 | |
| 251 | static unsigned int mc_hash(const struct macvlan_dev *vlan, |
| 252 | const unsigned char *addr) |
Eric Dumazet | cd431e7 | 2013-02-05 20:22:50 +0000 | [diff] [blame] | 253 | { |
| 254 | u32 val = __get_unaligned_cpu32(addr + 2); |
| 255 | |
Eric Dumazet | 3807ff5 | 2013-02-07 16:41:02 +0000 | [diff] [blame] | 256 | val ^= macvlan_hash_mix(vlan); |
Eric Dumazet | cd431e7 | 2013-02-05 20:22:50 +0000 | [diff] [blame] | 257 | return hash_32(val, MACVLAN_MC_FILTER_BITS); |
| 258 | } |
| 259 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 260 | static void macvlan_broadcast(struct sk_buff *skb, |
Arnd Bergmann | 618e1b7 | 2009-11-26 06:07:10 +0000 | [diff] [blame] | 261 | const struct macvlan_port *port, |
| 262 | struct net_device *src, |
| 263 | enum macvlan_mode mode) |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 264 | { |
Eric Dumazet | 1712b2f | 2020-01-14 13:00:35 -0800 | [diff] [blame] | 265 | const struct ethhdr *eth = eth_hdr(skb); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 266 | const struct macvlan_dev *vlan; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 267 | struct sk_buff *nskb; |
| 268 | unsigned int i; |
Arnd Bergmann | a1e514c | 2009-11-26 06:07:09 +0000 | [diff] [blame] | 269 | int err; |
Eric Dumazet | 3807ff5 | 2013-02-07 16:41:02 +0000 | [diff] [blame] | 270 | unsigned int hash; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 271 | |
Patrick McHardy | efbbced | 2008-11-26 15:30:48 -0800 | [diff] [blame] | 272 | if (skb->protocol == htons(ETH_P_PAUSE)) |
| 273 | return; |
| 274 | |
Christophe JAILLET | bb23ffa | 2021-04-25 18:14:10 +0200 | [diff] [blame] | 275 | hash_for_each_rcu(port->vlan_hash, i, vlan, hlist) { |
| 276 | if (vlan->dev == src || !(vlan->mode & mode)) |
| 277 | continue; |
Arnd Bergmann | 618e1b7 | 2009-11-26 06:07:10 +0000 | [diff] [blame] | 278 | |
Christophe JAILLET | bb23ffa | 2021-04-25 18:14:10 +0200 | [diff] [blame] | 279 | hash = mc_hash(vlan, eth->h_dest); |
| 280 | if (!test_bit(hash, vlan->mc_filter)) |
| 281 | continue; |
Herbert Xu | de9e8f3 | 2013-09-07 12:27:11 +1000 | [diff] [blame] | 282 | |
Christophe JAILLET | bb23ffa | 2021-04-25 18:14:10 +0200 | [diff] [blame] | 283 | err = NET_RX_DROP; |
| 284 | nskb = skb_clone(skb, GFP_ATOMIC); |
| 285 | if (likely(nskb)) |
| 286 | err = macvlan_broadcast_one(nskb, vlan, eth, |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 287 | mode == MACVLAN_MODE_BRIDGE) ?: |
Christophe JAILLET | bb23ffa | 2021-04-25 18:14:10 +0200 | [diff] [blame] | 288 | netif_rx_ni(nskb); |
| 289 | macvlan_count_rx(vlan, skb->len + ETH_HLEN, |
| 290 | err == NET_RX_SUCCESS, true); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 291 | } |
| 292 | } |
| 293 | |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 294 | static void macvlan_process_broadcast(struct work_struct *w) |
| 295 | { |
| 296 | struct macvlan_port *port = container_of(w, struct macvlan_port, |
| 297 | bc_work); |
| 298 | struct sk_buff *skb; |
| 299 | struct sk_buff_head list; |
| 300 | |
Eric Dumazet | fe0ca73 | 2014-10-22 19:43:46 -0700 | [diff] [blame] | 301 | __skb_queue_head_init(&list); |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 302 | |
| 303 | spin_lock_bh(&port->bc_queue.lock); |
| 304 | skb_queue_splice_tail_init(&port->bc_queue, &list); |
| 305 | spin_unlock_bh(&port->bc_queue.lock); |
| 306 | |
| 307 | while ((skb = __skb_dequeue(&list))) { |
| 308 | const struct macvlan_dev *src = MACVLAN_SKB_CB(skb)->src; |
| 309 | |
| 310 | rcu_read_lock(); |
| 311 | |
| 312 | if (!src) |
| 313 | /* frame comes from an external address */ |
| 314 | macvlan_broadcast(skb, port, NULL, |
| 315 | MACVLAN_MODE_PRIVATE | |
| 316 | MACVLAN_MODE_VEPA | |
| 317 | MACVLAN_MODE_PASSTHRU| |
| 318 | MACVLAN_MODE_BRIDGE); |
| 319 | else if (src->mode == MACVLAN_MODE_VEPA) |
| 320 | /* flood to everyone except source */ |
| 321 | macvlan_broadcast(skb, port, src->dev, |
| 322 | MACVLAN_MODE_VEPA | |
| 323 | MACVLAN_MODE_BRIDGE); |
| 324 | else |
| 325 | /* |
| 326 | * flood only to VEPA ports, bridge ports |
| 327 | * already saw the frame on the way out. |
| 328 | */ |
| 329 | macvlan_broadcast(skb, port, src->dev, |
| 330 | MACVLAN_MODE_VEPA); |
| 331 | |
| 332 | rcu_read_unlock(); |
| 333 | |
Herbert Xu | 260916d | 2016-06-01 11:43:00 +0800 | [diff] [blame] | 334 | if (src) |
| 335 | dev_put(src->dev); |
Yang Wei | bf97403 | 2019-01-17 23:30:03 +0800 | [diff] [blame] | 336 | consume_skb(skb); |
Mahesh Bandewar | ce9a418 | 2020-03-09 15:57:07 -0700 | [diff] [blame] | 337 | |
| 338 | cond_resched(); |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 339 | } |
| 340 | } |
| 341 | |
| 342 | static void macvlan_broadcast_enqueue(struct macvlan_port *port, |
Herbert Xu | 260916d | 2016-06-01 11:43:00 +0800 | [diff] [blame] | 343 | const struct macvlan_dev *src, |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 344 | struct sk_buff *skb) |
| 345 | { |
Herbert Xu | e676f19 | 2014-04-22 17:15:34 +0800 | [diff] [blame] | 346 | struct sk_buff *nskb; |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 347 | int err = -ENOMEM; |
| 348 | |
Herbert Xu | e676f19 | 2014-04-22 17:15:34 +0800 | [diff] [blame] | 349 | nskb = skb_clone(skb, GFP_ATOMIC); |
| 350 | if (!nskb) |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 351 | goto err; |
| 352 | |
Herbert Xu | 260916d | 2016-06-01 11:43:00 +0800 | [diff] [blame] | 353 | MACVLAN_SKB_CB(nskb)->src = src; |
| 354 | |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 355 | spin_lock(&port->bc_queue.lock); |
Thomas Karlsson | d4bff72 | 2020-12-02 19:49:58 +0100 | [diff] [blame] | 356 | if (skb_queue_len(&port->bc_queue) < port->bc_queue_len_used) { |
Herbert Xu | 260916d | 2016-06-01 11:43:00 +0800 | [diff] [blame] | 357 | if (src) |
| 358 | dev_hold(src->dev); |
Herbert Xu | e676f19 | 2014-04-22 17:15:34 +0800 | [diff] [blame] | 359 | __skb_queue_tail(&port->bc_queue, nskb); |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 360 | err = 0; |
| 361 | } |
| 362 | spin_unlock(&port->bc_queue.lock); |
| 363 | |
Menglong Dong | 1d7ea55 | 2019-11-25 16:58:09 +0800 | [diff] [blame] | 364 | schedule_work(&port->bc_work); |
| 365 | |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 366 | if (err) |
Herbert Xu | e676f19 | 2014-04-22 17:15:34 +0800 | [diff] [blame] | 367 | goto free_nskb; |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 368 | |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 369 | return; |
| 370 | |
Herbert Xu | e676f19 | 2014-04-22 17:15:34 +0800 | [diff] [blame] | 371 | free_nskb: |
| 372 | kfree_skb(nskb); |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 373 | err: |
| 374 | atomic_long_inc(&skb->dev->rx_dropped); |
| 375 | } |
| 376 | |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 377 | static void macvlan_flush_sources(struct macvlan_port *port, |
| 378 | struct macvlan_dev *vlan) |
| 379 | { |
Christophe JAILLET | bb23ffa | 2021-04-25 18:14:10 +0200 | [diff] [blame] | 380 | struct macvlan_source_entry *entry; |
| 381 | struct hlist_node *next; |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 382 | int i; |
| 383 | |
Christophe JAILLET | bb23ffa | 2021-04-25 18:14:10 +0200 | [diff] [blame] | 384 | hash_for_each_safe(port->vlan_source_hash, i, next, entry, hlist) |
| 385 | if (entry->vlan == vlan) |
| 386 | macvlan_hash_del_source(entry); |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 387 | |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 388 | vlan->macaddr_count = 0; |
| 389 | } |
| 390 | |
| 391 | static void macvlan_forward_source_one(struct sk_buff *skb, |
| 392 | struct macvlan_dev *vlan) |
| 393 | { |
| 394 | struct sk_buff *nskb; |
| 395 | struct net_device *dev; |
| 396 | int len; |
| 397 | int ret; |
| 398 | |
| 399 | dev = vlan->dev; |
| 400 | if (unlikely(!(dev->flags & IFF_UP))) |
| 401 | return; |
| 402 | |
| 403 | nskb = skb_clone(skb, GFP_ATOMIC); |
| 404 | if (!nskb) |
| 405 | return; |
| 406 | |
| 407 | len = nskb->len + ETH_HLEN; |
| 408 | nskb->dev = dev; |
Alexander Duyck | c8c41ea | 2017-10-13 13:40:31 -0700 | [diff] [blame] | 409 | |
| 410 | if (ether_addr_equal_64bits(eth_hdr(skb)->h_dest, dev->dev_addr)) |
| 411 | nskb->pkt_type = PACKET_HOST; |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 412 | |
| 413 | ret = netif_rx(nskb); |
jbaron@akamai.com | 4c97993 | 2014-10-10 03:13:27 +0000 | [diff] [blame] | 414 | macvlan_count_rx(vlan, len, ret == NET_RX_SUCCESS, false); |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 415 | } |
| 416 | |
Jethro Beekman | 427f0c8 | 2021-04-25 11:22:03 +0200 | [diff] [blame] | 417 | static bool macvlan_forward_source(struct sk_buff *skb, |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 418 | struct macvlan_port *port, |
| 419 | const unsigned char *addr) |
| 420 | { |
| 421 | struct macvlan_source_entry *entry; |
| 422 | u32 idx = macvlan_eth_hash(addr); |
| 423 | struct hlist_head *h = &port->vlan_source_hash[idx]; |
Jethro Beekman | 427f0c8 | 2021-04-25 11:22:03 +0200 | [diff] [blame] | 424 | bool consume = false; |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 425 | |
| 426 | hlist_for_each_entry_rcu(entry, h, hlist) { |
Jethro Beekman | 427f0c8 | 2021-04-25 11:22:03 +0200 | [diff] [blame] | 427 | if (ether_addr_equal_64bits(entry->addr, addr)) { |
| 428 | if (entry->vlan->flags & MACVLAN_FLAG_NODST) |
| 429 | consume = true; |
Gao Feng | fc51f2b | 2016-11-21 08:26:38 +0800 | [diff] [blame] | 430 | macvlan_forward_source_one(skb, entry->vlan); |
Jethro Beekman | 427f0c8 | 2021-04-25 11:22:03 +0200 | [diff] [blame] | 431 | } |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 432 | } |
Jethro Beekman | 427f0c8 | 2021-04-25 11:22:03 +0200 | [diff] [blame] | 433 | |
| 434 | return consume; |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 435 | } |
| 436 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 437 | /* called under rcu_read_lock() from netif_receive_skb */ |
Jiri Pirko | 8a4eb57 | 2011-03-12 03:14:39 +0000 | [diff] [blame] | 438 | static rx_handler_result_t macvlan_handle_frame(struct sk_buff **pskb) |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 439 | { |
Jiri Pirko | ab95bfe | 2010-06-01 21:52:08 +0000 | [diff] [blame] | 440 | struct macvlan_port *port; |
Jiri Pirko | 8a4eb57 | 2011-03-12 03:14:39 +0000 | [diff] [blame] | 441 | struct sk_buff *skb = *pskb; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 442 | const struct ethhdr *eth = eth_hdr(skb); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 443 | const struct macvlan_dev *vlan; |
Arnd Bergmann | 618e1b7 | 2009-11-26 06:07:10 +0000 | [diff] [blame] | 444 | const struct macvlan_dev *src; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 445 | struct net_device *dev; |
Sridhar Samudrala | ba01877 | 2010-07-27 09:10:07 +0000 | [diff] [blame] | 446 | unsigned int len = 0; |
jbaron@akamai.com | d1dd9119 | 2014-10-10 03:13:31 +0000 | [diff] [blame] | 447 | int ret; |
| 448 | rx_handler_result_t handle_res; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 449 | |
Alexander Sverdlin | 81f3dc9 | 2020-05-26 14:27:51 +0200 | [diff] [blame] | 450 | /* Packets from dev_loopback_xmit() do not have L2 header, bail out */ |
| 451 | if (unlikely(skb->pkt_type == PACKET_LOOPBACK)) |
| 452 | return RX_HANDLER_PASS; |
| 453 | |
Jiri Pirko | a35e2c1 | 2010-06-15 03:27:57 +0000 | [diff] [blame] | 454 | port = macvlan_port_get_rcu(skb->dev); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 455 | if (is_multicast_ether_addr(eth->h_dest)) { |
Herbert Xu | 9c127a0 | 2016-06-01 11:45:44 +0800 | [diff] [blame] | 456 | unsigned int hash; |
| 457 | |
Eric W. Biederman | 19bcf9f | 2015-10-09 13:44:54 -0500 | [diff] [blame] | 458 | skb = ip_check_defrag(dev_net(skb->dev), skb, IP_DEFRAG_MACVLAN); |
Eric Dumazet | bc416d9 | 2011-10-06 10:28:31 +0000 | [diff] [blame] | 459 | if (!skb) |
| 460 | return RX_HANDLER_CONSUMED; |
Sabrina Dubroca | e639b8d | 2015-11-16 22:54:20 +0100 | [diff] [blame] | 461 | *pskb = skb; |
Eric Dumazet | 4ec7ac1 | 2012-01-23 05:38:59 +0000 | [diff] [blame] | 462 | eth = eth_hdr(skb); |
Jethro Beekman | 427f0c8 | 2021-04-25 11:22:03 +0200 | [diff] [blame] | 463 | if (macvlan_forward_source(skb, port, eth->h_source)) |
| 464 | return RX_HANDLER_CONSUMED; |
Arnd Bergmann | 618e1b7 | 2009-11-26 06:07:10 +0000 | [diff] [blame] | 465 | src = macvlan_hash_lookup(port, eth->h_source); |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 466 | if (src && src->mode != MACVLAN_MODE_VEPA && |
| 467 | src->mode != MACVLAN_MODE_BRIDGE) { |
stephen hemminger | 729e72a | 2011-11-02 12:11:53 +0000 | [diff] [blame] | 468 | /* forward to original port. */ |
| 469 | vlan = src; |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 470 | ret = macvlan_broadcast_one(skb, vlan, eth, 0) ?: |
| 471 | netif_rx(skb); |
jbaron@akamai.com | d1dd9119 | 2014-10-10 03:13:31 +0000 | [diff] [blame] | 472 | handle_res = RX_HANDLER_CONSUMED; |
stephen hemminger | 729e72a | 2011-11-02 12:11:53 +0000 | [diff] [blame] | 473 | goto out; |
| 474 | } |
| 475 | |
Herbert Xu | 9c127a0 | 2016-06-01 11:45:44 +0800 | [diff] [blame] | 476 | hash = mc_hash(NULL, eth->h_dest); |
| 477 | if (test_bit(hash, port->mc_filter)) |
| 478 | macvlan_broadcast_enqueue(port, src, skb); |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 479 | |
Jiri Pirko | 8a4eb57 | 2011-03-12 03:14:39 +0000 | [diff] [blame] | 480 | return RX_HANDLER_PASS; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 481 | } |
| 482 | |
Jethro Beekman | 427f0c8 | 2021-04-25 11:22:03 +0200 | [diff] [blame] | 483 | if (macvlan_forward_source(skb, port, eth->h_source)) |
| 484 | return RX_HANDLER_CONSUMED; |
Vlad Yasevich | 43c2d57 | 2017-06-21 07:59:18 -0400 | [diff] [blame] | 485 | if (macvlan_passthru(port)) |
Jiri Pirko | 233c7df | 2013-05-09 04:23:40 +0000 | [diff] [blame] | 486 | vlan = list_first_or_null_rcu(&port->vlans, |
| 487 | struct macvlan_dev, list); |
Sridhar Samudrala | eb06acd | 2010-10-28 13:10:50 +0000 | [diff] [blame] | 488 | else |
| 489 | vlan = macvlan_hash_lookup(port, eth->h_dest); |
Alexander Duyck | dd6b9c2 | 2017-10-13 13:40:24 -0700 | [diff] [blame] | 490 | if (!vlan || vlan->mode == MACVLAN_MODE_SOURCE) |
Jiri Pirko | 8a4eb57 | 2011-03-12 03:14:39 +0000 | [diff] [blame] | 491 | return RX_HANDLER_PASS; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 492 | |
| 493 | dev = vlan->dev; |
| 494 | if (unlikely(!(dev->flags & IFF_UP))) { |
| 495 | kfree_skb(skb); |
Jiri Pirko | 8a4eb57 | 2011-03-12 03:14:39 +0000 | [diff] [blame] | 496 | return RX_HANDLER_CONSUMED; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 497 | } |
Arnd Bergmann | a1e514c | 2009-11-26 06:07:09 +0000 | [diff] [blame] | 498 | len = skb->len + ETH_HLEN; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 499 | skb = skb_share_check(skb, GFP_ATOMIC); |
jbaron@akamai.com | d1dd9119 | 2014-10-10 03:13:31 +0000 | [diff] [blame] | 500 | if (!skb) { |
| 501 | ret = NET_RX_DROP; |
| 502 | handle_res = RX_HANDLER_CONSUMED; |
Sridhar Samudrala | ba01877 | 2010-07-27 09:10:07 +0000 | [diff] [blame] | 503 | goto out; |
jbaron@akamai.com | d1dd9119 | 2014-10-10 03:13:31 +0000 | [diff] [blame] | 504 | } |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 505 | |
Sabrina Dubroca | e639b8d | 2015-11-16 22:54:20 +0100 | [diff] [blame] | 506 | *pskb = skb; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 507 | skb->dev = dev; |
| 508 | skb->pkt_type = PACKET_HOST; |
| 509 | |
jbaron@akamai.com | d1dd9119 | 2014-10-10 03:13:31 +0000 | [diff] [blame] | 510 | ret = NET_RX_SUCCESS; |
| 511 | handle_res = RX_HANDLER_ANOTHER; |
Sridhar Samudrala | ba01877 | 2010-07-27 09:10:07 +0000 | [diff] [blame] | 512 | out: |
jbaron@akamai.com | 4c97993 | 2014-10-10 03:13:27 +0000 | [diff] [blame] | 513 | macvlan_count_rx(vlan, len, ret == NET_RX_SUCCESS, false); |
jbaron@akamai.com | d1dd9119 | 2014-10-10 03:13:31 +0000 | [diff] [blame] | 514 | return handle_res; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 515 | } |
| 516 | |
Arnd Bergmann | 618e1b7 | 2009-11-26 06:07:10 +0000 | [diff] [blame] | 517 | static int macvlan_queue_xmit(struct sk_buff *skb, struct net_device *dev) |
| 518 | { |
| 519 | const struct macvlan_dev *vlan = netdev_priv(dev); |
| 520 | const struct macvlan_port *port = vlan->port; |
| 521 | const struct macvlan_dev *dest; |
| 522 | |
| 523 | if (vlan->mode == MACVLAN_MODE_BRIDGE) { |
Eric Dumazet | 1712b2f | 2020-01-14 13:00:35 -0800 | [diff] [blame] | 524 | const struct ethhdr *eth = skb_eth_hdr(skb); |
Arnd Bergmann | 618e1b7 | 2009-11-26 06:07:10 +0000 | [diff] [blame] | 525 | |
| 526 | /* send to other bridge ports directly */ |
| 527 | if (is_multicast_ether_addr(eth->h_dest)) { |
Eric Dumazet | 1712b2f | 2020-01-14 13:00:35 -0800 | [diff] [blame] | 528 | skb_reset_mac_header(skb); |
Arnd Bergmann | 618e1b7 | 2009-11-26 06:07:10 +0000 | [diff] [blame] | 529 | macvlan_broadcast(skb, port, dev, MACVLAN_MODE_BRIDGE); |
| 530 | goto xmit_world; |
| 531 | } |
| 532 | |
| 533 | dest = macvlan_hash_lookup(port, eth->h_dest); |
| 534 | if (dest && dest->mode == MACVLAN_MODE_BRIDGE) { |
David Ward | a37dd33 | 2011-05-19 02:53:20 +0000 | [diff] [blame] | 535 | /* send to lowerdev first for its network taps */ |
David Ward | cb2d0f3 | 2011-09-18 12:53:20 +0000 | [diff] [blame] | 536 | dev_forward_skb(vlan->lowerdev, skb); |
Arnd Bergmann | 618e1b7 | 2009-11-26 06:07:10 +0000 | [diff] [blame] | 537 | |
| 538 | return NET_XMIT_SUCCESS; |
| 539 | } |
| 540 | } |
Arnd Bergmann | 618e1b7 | 2009-11-26 06:07:10 +0000 | [diff] [blame] | 541 | xmit_world: |
David S. Miller | 59b9997 | 2012-05-10 23:03:34 -0400 | [diff] [blame] | 542 | skb->dev = vlan->lowerdev; |
Alexander Duyck | eadec877 | 2018-07-09 12:19:48 -0400 | [diff] [blame] | 543 | return dev_queue_xmit_accel(skb, |
| 544 | netdev_get_sb_channel(dev) ? dev : NULL); |
Arnd Bergmann | 618e1b7 | 2009-11-26 06:07:10 +0000 | [diff] [blame] | 545 | } |
| 546 | |
dingtianhong | 688cea8 | 2014-05-30 16:00:56 +0800 | [diff] [blame] | 547 | static inline netdev_tx_t macvlan_netpoll_send_skb(struct macvlan_dev *vlan, struct sk_buff *skb) |
| 548 | { |
| 549 | #ifdef CONFIG_NET_POLL_CONTROLLER |
Eric Dumazet | f78ed22 | 2020-05-07 09:32:21 -0700 | [diff] [blame] | 550 | return netpoll_send_skb(vlan->netpoll, skb); |
dingtianhong | 688cea8 | 2014-05-30 16:00:56 +0800 | [diff] [blame] | 551 | #else |
| 552 | BUG(); |
dingtianhong | 688cea8 | 2014-05-30 16:00:56 +0800 | [diff] [blame] | 553 | return NETDEV_TX_OK; |
Eric Dumazet | f78ed22 | 2020-05-07 09:32:21 -0700 | [diff] [blame] | 554 | #endif |
dingtianhong | 688cea8 | 2014-05-30 16:00:56 +0800 | [diff] [blame] | 555 | } |
| 556 | |
stephen hemminger | 0db901b | 2013-12-27 12:06:46 -0800 | [diff] [blame] | 557 | static netdev_tx_t macvlan_start_xmit(struct sk_buff *skb, |
| 558 | struct net_device *dev) |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 559 | { |
Alexander Duyck | 81d4e91 | 2018-04-03 17:16:09 -0400 | [diff] [blame] | 560 | struct macvlan_dev *vlan = netdev_priv(dev); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 561 | unsigned int len = skb->len; |
| 562 | int ret; |
dingtianhong | 688cea8 | 2014-05-30 16:00:56 +0800 | [diff] [blame] | 563 | |
| 564 | if (unlikely(netpoll_tx_running(dev))) |
| 565 | return macvlan_netpoll_send_skb(vlan, skb); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 566 | |
Alexander Duyck | 81d4e91 | 2018-04-03 17:16:09 -0400 | [diff] [blame] | 567 | ret = macvlan_queue_xmit(skb, dev); |
John Fastabend | a6cc0cf | 2013-11-06 09:54:46 -0800 | [diff] [blame] | 568 | |
Eric Dumazet | 2d6c9ff | 2010-05-10 04:51:02 +0000 | [diff] [blame] | 569 | if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) { |
Li RongQing | cdf3e27 | 2014-01-04 14:22:34 +0800 | [diff] [blame] | 570 | struct vlan_pcpu_stats *pcpu_stats; |
Eric Dumazet | 2c11455 | 2009-09-03 00:11:45 +0000 | [diff] [blame] | 571 | |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 572 | pcpu_stats = this_cpu_ptr(vlan->pcpu_stats); |
| 573 | u64_stats_update_begin(&pcpu_stats->syncp); |
| 574 | pcpu_stats->tx_packets++; |
| 575 | pcpu_stats->tx_bytes += len; |
| 576 | u64_stats_update_end(&pcpu_stats->syncp); |
| 577 | } else { |
| 578 | this_cpu_inc(vlan->pcpu_stats->tx_dropped); |
| 579 | } |
Patrick McHardy | cbbef5e | 2009-11-10 06:14:24 +0000 | [diff] [blame] | 580 | return ret; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 581 | } |
| 582 | |
| 583 | static int macvlan_hard_header(struct sk_buff *skb, struct net_device *dev, |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 584 | unsigned short type, const void *daddr, |
| 585 | const void *saddr, unsigned len) |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 586 | { |
| 587 | const struct macvlan_dev *vlan = netdev_priv(dev); |
| 588 | struct net_device *lowerdev = vlan->lowerdev; |
| 589 | |
Stephen Hemminger | 0c4e858 | 2007-10-09 01:36:32 -0700 | [diff] [blame] | 590 | return dev_hard_header(skb, lowerdev, type, daddr, |
| 591 | saddr ? : dev->dev_addr, len); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 592 | } |
| 593 | |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 594 | static const struct header_ops macvlan_hard_header_ops = { |
| 595 | .create = macvlan_hard_header, |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 596 | .parse = eth_header_parse, |
Stephen Hemminger | 3b04ddd | 2007-10-09 01:40:57 -0700 | [diff] [blame] | 597 | .cache = eth_header_cache, |
| 598 | .cache_update = eth_header_cache_update, |
| 599 | }; |
| 600 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 601 | static int macvlan_open(struct net_device *dev) |
| 602 | { |
| 603 | struct macvlan_dev *vlan = netdev_priv(dev); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 604 | struct net_device *lowerdev = vlan->lowerdev; |
| 605 | int err; |
| 606 | |
Vlad Yasevich | 43c2d57 | 2017-06-21 07:59:18 -0400 | [diff] [blame] | 607 | if (macvlan_passthru(vlan->port)) { |
Michael S. Tsirkin | 7873814 | 2013-08-01 13:50:10 +0300 | [diff] [blame] | 608 | if (!(vlan->flags & MACVLAN_FLAG_NOPROMISC)) { |
| 609 | err = dev_set_promiscuity(lowerdev, 1); |
| 610 | if (err < 0) |
| 611 | goto out; |
| 612 | } |
Sridhar Samudrala | eb06acd | 2010-10-28 13:10:50 +0000 | [diff] [blame] | 613 | goto hash_add; |
| 614 | } |
| 615 | |
Matteo Croce | 59f997b | 2018-12-01 00:26:27 +0100 | [diff] [blame] | 616 | err = -EADDRINUSE; |
Alexander Duyck | 7d775f6 | 2018-04-03 17:16:03 -0400 | [diff] [blame] | 617 | if (macvlan_addr_busy(vlan->port, dev->dev_addr)) |
| 618 | goto out; |
| 619 | |
| 620 | /* Attempt to populate accel_priv which is used to offload the L2 |
| 621 | * forwarding requests for unicast packets. |
| 622 | */ |
Alexander Duyck | 81d4e91 | 2018-04-03 17:16:09 -0400 | [diff] [blame] | 623 | if (lowerdev->features & NETIF_F_HW_L2FW_DOFFLOAD) |
Alexander Duyck | 7d775f6 | 2018-04-03 17:16:03 -0400 | [diff] [blame] | 624 | vlan->accel_priv = |
John Fastabend | a6cc0cf | 2013-11-06 09:54:46 -0800 | [diff] [blame] | 625 | lowerdev->netdev_ops->ndo_dfwd_add_station(lowerdev, dev); |
| 626 | |
Alexander Duyck | 81d4e91 | 2018-04-03 17:16:09 -0400 | [diff] [blame] | 627 | /* If earlier attempt to offload failed, or accel_priv is not |
| 628 | * populated we must add the unicast address to the lower device. |
| 629 | */ |
| 630 | if (IS_ERR_OR_NULL(vlan->accel_priv)) { |
| 631 | vlan->accel_priv = NULL; |
| 632 | err = dev_uc_add(lowerdev, dev->dev_addr); |
| 633 | if (err < 0) |
| 634 | goto out; |
John Fastabend | a6cc0cf | 2013-11-06 09:54:46 -0800 | [diff] [blame] | 635 | } |
| 636 | |
Wang Chen | b89fb7d | 2008-07-14 20:57:07 -0700 | [diff] [blame] | 637 | if (dev->flags & IFF_ALLMULTI) { |
| 638 | err = dev_set_allmulti(lowerdev, 1); |
| 639 | if (err < 0) |
| 640 | goto del_unicast; |
| 641 | } |
Sridhar Samudrala | eb06acd | 2010-10-28 13:10:50 +0000 | [diff] [blame] | 642 | |
Vlad Yasevich | efdbd2b | 2015-05-01 17:36:37 -0400 | [diff] [blame] | 643 | if (dev->flags & IFF_PROMISC) { |
| 644 | err = dev_set_promiscuity(lowerdev, 1); |
| 645 | if (err < 0) |
| 646 | goto clear_multi; |
| 647 | } |
| 648 | |
Sridhar Samudrala | eb06acd | 2010-10-28 13:10:50 +0000 | [diff] [blame] | 649 | hash_add: |
Eric Biederman | f9ac30f | 2009-03-13 13:16:13 -0700 | [diff] [blame] | 650 | macvlan_hash_add(vlan); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 651 | return 0; |
Wang Chen | b89fb7d | 2008-07-14 20:57:07 -0700 | [diff] [blame] | 652 | |
Vlad Yasevich | efdbd2b | 2015-05-01 17:36:37 -0400 | [diff] [blame] | 653 | clear_multi: |
Gao Feng | c3891fa | 2016-11-22 09:54:36 +0800 | [diff] [blame] | 654 | if (dev->flags & IFF_ALLMULTI) |
| 655 | dev_set_allmulti(lowerdev, -1); |
Wang Chen | b89fb7d | 2008-07-14 20:57:07 -0700 | [diff] [blame] | 656 | del_unicast: |
Alexander Duyck | 7d775f6 | 2018-04-03 17:16:03 -0400 | [diff] [blame] | 657 | if (vlan->accel_priv) { |
John Fastabend | a6cc0cf | 2013-11-06 09:54:46 -0800 | [diff] [blame] | 658 | lowerdev->netdev_ops->ndo_dfwd_del_station(lowerdev, |
Alexander Duyck | 7d775f6 | 2018-04-03 17:16:03 -0400 | [diff] [blame] | 659 | vlan->accel_priv); |
| 660 | vlan->accel_priv = NULL; |
Alexander Duyck | 81d4e91 | 2018-04-03 17:16:09 -0400 | [diff] [blame] | 661 | } else { |
| 662 | dev_uc_del(lowerdev, dev->dev_addr); |
John Fastabend | a6cc0cf | 2013-11-06 09:54:46 -0800 | [diff] [blame] | 663 | } |
Alexander Duyck | 81d4e91 | 2018-04-03 17:16:09 -0400 | [diff] [blame] | 664 | out: |
Wang Chen | b89fb7d | 2008-07-14 20:57:07 -0700 | [diff] [blame] | 665 | return err; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 666 | } |
| 667 | |
| 668 | static int macvlan_stop(struct net_device *dev) |
| 669 | { |
| 670 | struct macvlan_dev *vlan = netdev_priv(dev); |
| 671 | struct net_device *lowerdev = vlan->lowerdev; |
| 672 | |
Alexander Duyck | 7d775f6 | 2018-04-03 17:16:03 -0400 | [diff] [blame] | 673 | if (vlan->accel_priv) { |
John Fastabend | a6cc0cf | 2013-11-06 09:54:46 -0800 | [diff] [blame] | 674 | lowerdev->netdev_ops->ndo_dfwd_del_station(lowerdev, |
Alexander Duyck | 7d775f6 | 2018-04-03 17:16:03 -0400 | [diff] [blame] | 675 | vlan->accel_priv); |
| 676 | vlan->accel_priv = NULL; |
John Fastabend | a6cc0cf | 2013-11-06 09:54:46 -0800 | [diff] [blame] | 677 | } |
| 678 | |
John Fastabend | df8ef8f | 2012-04-15 06:44:37 +0000 | [diff] [blame] | 679 | dev_uc_unsync(lowerdev, dev); |
| 680 | dev_mc_unsync(lowerdev, dev); |
| 681 | |
Vlad Yasevich | 43c2d57 | 2017-06-21 07:59:18 -0400 | [diff] [blame] | 682 | if (macvlan_passthru(vlan->port)) { |
John Fastabend | df8ef8f | 2012-04-15 06:44:37 +0000 | [diff] [blame] | 683 | if (!(vlan->flags & MACVLAN_FLAG_NOPROMISC)) |
| 684 | dev_set_promiscuity(lowerdev, -1); |
Sridhar Samudrala | eb06acd | 2010-10-28 13:10:50 +0000 | [diff] [blame] | 685 | goto hash_del; |
| 686 | } |
| 687 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 688 | if (dev->flags & IFF_ALLMULTI) |
| 689 | dev_set_allmulti(lowerdev, -1); |
| 690 | |
Vlad Yasevich | efdbd2b | 2015-05-01 17:36:37 -0400 | [diff] [blame] | 691 | if (dev->flags & IFF_PROMISC) |
| 692 | dev_set_promiscuity(lowerdev, -1); |
| 693 | |
Jiri Pirko | a748ee2 | 2010-04-01 21:22:09 +0000 | [diff] [blame] | 694 | dev_uc_del(lowerdev, dev->dev_addr); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 695 | |
Sridhar Samudrala | eb06acd | 2010-10-28 13:10:50 +0000 | [diff] [blame] | 696 | hash_del: |
Eric Dumazet | 449f454 | 2011-05-19 12:24:16 +0000 | [diff] [blame] | 697 | macvlan_hash_del(vlan, !dev->dismantle); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 698 | return 0; |
| 699 | } |
| 700 | |
Jakub Kicinski | 8bc7823 | 2021-10-22 16:21:02 -0700 | [diff] [blame] | 701 | static int macvlan_sync_address(struct net_device *dev, |
| 702 | const unsigned char *addr) |
Patrick McHardy | ad5d20a | 2007-11-19 22:00:42 -0800 | [diff] [blame] | 703 | { |
| 704 | struct macvlan_dev *vlan = netdev_priv(dev); |
| 705 | struct net_device *lowerdev = vlan->lowerdev; |
Vlad Yasevich | 18c8c54 | 2017-06-21 07:59:19 -0400 | [diff] [blame] | 706 | struct macvlan_port *port = vlan->port; |
Patrick McHardy | ad5d20a | 2007-11-19 22:00:42 -0800 | [diff] [blame] | 707 | int err; |
| 708 | |
dingtianhong | e289fd2 | 2014-05-30 14:32:49 +0800 | [diff] [blame] | 709 | if (!(dev->flags & IFF_UP)) { |
| 710 | /* Just copy in the new address */ |
Jakub Kicinski | e35b8d7 | 2021-10-01 14:32:22 -0700 | [diff] [blame] | 711 | eth_hw_addr_set(dev, addr); |
dingtianhong | e289fd2 | 2014-05-30 14:32:49 +0800 | [diff] [blame] | 712 | } else { |
| 713 | /* Rehash and update the device filters */ |
| 714 | if (macvlan_addr_busy(vlan->port, addr)) |
Matteo Croce | 59f997b | 2018-12-01 00:26:27 +0100 | [diff] [blame] | 715 | return -EADDRINUSE; |
dingtianhong | e289fd2 | 2014-05-30 14:32:49 +0800 | [diff] [blame] | 716 | |
Vlad Yasevich | 18c8c54 | 2017-06-21 07:59:19 -0400 | [diff] [blame] | 717 | if (!macvlan_passthru(port)) { |
dingtianhong | e289fd2 | 2014-05-30 14:32:49 +0800 | [diff] [blame] | 718 | err = dev_uc_add(lowerdev, addr); |
| 719 | if (err) |
| 720 | return err; |
| 721 | |
| 722 | dev_uc_del(lowerdev, dev->dev_addr); |
| 723 | } |
| 724 | |
| 725 | macvlan_hash_change_addr(vlan, addr); |
| 726 | } |
Vlad Yasevich | 18c8c54 | 2017-06-21 07:59:19 -0400 | [diff] [blame] | 727 | if (macvlan_passthru(port) && !macvlan_addr_change(port)) { |
| 728 | /* Since addr_change isn't set, we are here due to lower |
| 729 | * device change. Save the lower-dev address so we can |
| 730 | * restore it later. |
| 731 | */ |
| 732 | ether_addr_copy(vlan->port->perm_addr, |
| 733 | lowerdev->dev_addr); |
| 734 | } |
| 735 | macvlan_clear_addr_change(port); |
dingtianhong | e289fd2 | 2014-05-30 14:32:49 +0800 | [diff] [blame] | 736 | return 0; |
| 737 | } |
| 738 | |
| 739 | static int macvlan_set_mac_address(struct net_device *dev, void *p) |
| 740 | { |
| 741 | struct macvlan_dev *vlan = netdev_priv(dev); |
| 742 | struct sockaddr *addr = p; |
| 743 | |
Patrick McHardy | ad5d20a | 2007-11-19 22:00:42 -0800 | [diff] [blame] | 744 | if (!is_valid_ether_addr(addr->sa_data)) |
| 745 | return -EADDRNOTAVAIL; |
| 746 | |
Vlad Yasevich | e26f43f | 2017-06-21 07:59:16 -0400 | [diff] [blame] | 747 | /* If the addresses are the same, this is a no-op */ |
| 748 | if (ether_addr_equal(dev->dev_addr, addr->sa_data)) |
| 749 | return 0; |
| 750 | |
dingtianhong | e289fd2 | 2014-05-30 14:32:49 +0800 | [diff] [blame] | 751 | if (vlan->mode == MACVLAN_MODE_PASSTHRU) { |
Vlad Yasevich | 18c8c54 | 2017-06-21 07:59:19 -0400 | [diff] [blame] | 752 | macvlan_set_addr_change(vlan->port); |
Petr Machata | 3a37a96 | 2018-12-13 11:54:30 +0000 | [diff] [blame] | 753 | return dev_set_mac_address(vlan->lowerdev, addr, NULL); |
Eric Biederman | f9ac30f | 2009-03-13 13:16:13 -0700 | [diff] [blame] | 754 | } |
dingtianhong | e289fd2 | 2014-05-30 14:32:49 +0800 | [diff] [blame] | 755 | |
Matteo Croce | 59f997b | 2018-12-01 00:26:27 +0100 | [diff] [blame] | 756 | if (macvlan_addr_busy(vlan->port, addr->sa_data)) |
| 757 | return -EADDRINUSE; |
| 758 | |
dingtianhong | e289fd2 | 2014-05-30 14:32:49 +0800 | [diff] [blame] | 759 | return macvlan_sync_address(dev, addr->sa_data); |
Patrick McHardy | ad5d20a | 2007-11-19 22:00:42 -0800 | [diff] [blame] | 760 | } |
| 761 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 762 | static void macvlan_change_rx_flags(struct net_device *dev, int change) |
| 763 | { |
| 764 | struct macvlan_dev *vlan = netdev_priv(dev); |
| 765 | struct net_device *lowerdev = vlan->lowerdev; |
| 766 | |
Peter Christensen | bbeb0ea | 2014-05-08 11:15:37 +0200 | [diff] [blame] | 767 | if (dev->flags & IFF_UP) { |
| 768 | if (change & IFF_ALLMULTI) |
| 769 | dev_set_allmulti(lowerdev, dev->flags & IFF_ALLMULTI ? 1 : -1); |
Vlad Yasevich | efdbd2b | 2015-05-01 17:36:37 -0400 | [diff] [blame] | 770 | if (change & IFF_PROMISC) |
| 771 | dev_set_promiscuity(lowerdev, |
| 772 | dev->flags & IFF_PROMISC ? 1 : -1); |
| 773 | |
Peter Christensen | bbeb0ea | 2014-05-08 11:15:37 +0200 | [diff] [blame] | 774 | } |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 775 | } |
| 776 | |
Herbert Xu | 9c127a0 | 2016-06-01 11:45:44 +0800 | [diff] [blame] | 777 | static void macvlan_compute_filter(unsigned long *mc_filter, |
| 778 | struct net_device *dev, |
| 779 | struct macvlan_dev *vlan) |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 780 | { |
Eric Dumazet | cd431e7 | 2013-02-05 20:22:50 +0000 | [diff] [blame] | 781 | if (dev->flags & (IFF_PROMISC | IFF_ALLMULTI)) { |
Herbert Xu | 9c127a0 | 2016-06-01 11:45:44 +0800 | [diff] [blame] | 782 | bitmap_fill(mc_filter, MACVLAN_MC_FILTER_SZ); |
Eric Dumazet | cd431e7 | 2013-02-05 20:22:50 +0000 | [diff] [blame] | 783 | } else { |
| 784 | struct netdev_hw_addr *ha; |
| 785 | DECLARE_BITMAP(filter, MACVLAN_MC_FILTER_SZ); |
| 786 | |
| 787 | bitmap_zero(filter, MACVLAN_MC_FILTER_SZ); |
| 788 | netdev_for_each_mc_addr(ha, dev) { |
Eric Dumazet | 3807ff5 | 2013-02-07 16:41:02 +0000 | [diff] [blame] | 789 | __set_bit(mc_hash(vlan, ha->addr), filter); |
Eric Dumazet | cd431e7 | 2013-02-05 20:22:50 +0000 | [diff] [blame] | 790 | } |
Eric Dumazet | d527043 | 2013-02-07 16:02:57 +0000 | [diff] [blame] | 791 | |
Eric Dumazet | 3807ff5 | 2013-02-07 16:41:02 +0000 | [diff] [blame] | 792 | __set_bit(mc_hash(vlan, dev->broadcast), filter); |
Eric Dumazet | d527043 | 2013-02-07 16:02:57 +0000 | [diff] [blame] | 793 | |
Herbert Xu | 9c127a0 | 2016-06-01 11:45:44 +0800 | [diff] [blame] | 794 | bitmap_copy(mc_filter, filter, MACVLAN_MC_FILTER_SZ); |
Eric Dumazet | cd431e7 | 2013-02-05 20:22:50 +0000 | [diff] [blame] | 795 | } |
Herbert Xu | 9c127a0 | 2016-06-01 11:45:44 +0800 | [diff] [blame] | 796 | } |
| 797 | |
| 798 | static void macvlan_set_mac_lists(struct net_device *dev) |
| 799 | { |
| 800 | struct macvlan_dev *vlan = netdev_priv(dev); |
| 801 | |
| 802 | macvlan_compute_filter(vlan->mc_filter, dev, vlan); |
| 803 | |
John Fastabend | df8ef8f | 2012-04-15 06:44:37 +0000 | [diff] [blame] | 804 | dev_uc_sync(vlan->lowerdev, dev); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 805 | dev_mc_sync(vlan->lowerdev, dev); |
Herbert Xu | 9c127a0 | 2016-06-01 11:45:44 +0800 | [diff] [blame] | 806 | |
| 807 | /* This is slightly inaccurate as we're including the subscription |
| 808 | * list of vlan->lowerdev too. |
| 809 | * |
| 810 | * Bug alert: This only works if everyone has the same broadcast |
| 811 | * address as lowerdev. As soon as someone changes theirs this |
| 812 | * will break. |
| 813 | * |
| 814 | * However, this is already broken as when you change your broadcast |
| 815 | * address we don't get called. |
| 816 | * |
| 817 | * The solution is to maintain a list of broadcast addresses like |
| 818 | * we do for uc/mc, if you care. |
| 819 | */ |
| 820 | macvlan_compute_filter(vlan->port->mc_filter, vlan->lowerdev, NULL); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 821 | } |
| 822 | |
| 823 | static int macvlan_change_mtu(struct net_device *dev, int new_mtu) |
| 824 | { |
| 825 | struct macvlan_dev *vlan = netdev_priv(dev); |
| 826 | |
Jarod Wilson | 9157208 | 2016-10-20 13:55:20 -0400 | [diff] [blame] | 827 | if (vlan->lowerdev->mtu < new_mtu) |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 828 | return -EINVAL; |
| 829 | dev->mtu = new_mtu; |
| 830 | return 0; |
| 831 | } |
| 832 | |
Arnd Bergmann | a760537 | 2021-07-27 15:45:13 +0200 | [diff] [blame] | 833 | static int macvlan_eth_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd) |
Hangbin Liu | 254c0a2 | 2019-03-20 10:23:33 +0800 | [diff] [blame] | 834 | { |
| 835 | struct net_device *real_dev = macvlan_dev_real_dev(dev); |
| 836 | const struct net_device_ops *ops = real_dev->netdev_ops; |
| 837 | struct ifreq ifrr; |
| 838 | int err = -EOPNOTSUPP; |
| 839 | |
Gustavo A. R. Silva | 36f1843 | 2019-05-27 13:38:55 -0500 | [diff] [blame] | 840 | strscpy(ifrr.ifr_name, real_dev->name, IFNAMSIZ); |
Hangbin Liu | 254c0a2 | 2019-03-20 10:23:33 +0800 | [diff] [blame] | 841 | ifrr.ifr_ifru = ifr->ifr_ifru; |
| 842 | |
| 843 | switch (cmd) { |
| 844 | case SIOCSHWTSTAMP: |
Hangbin Liu | 6c2ea9e | 2019-05-09 14:54:08 +0800 | [diff] [blame] | 845 | if (!net_eq(dev_net(dev), &init_net)) |
| 846 | break; |
Gustavo A. R. Silva | df561f66 | 2020-08-23 17:36:59 -0500 | [diff] [blame] | 847 | fallthrough; |
Hangbin Liu | 254c0a2 | 2019-03-20 10:23:33 +0800 | [diff] [blame] | 848 | case SIOCGHWTSTAMP: |
Arnd Bergmann | a760537 | 2021-07-27 15:45:13 +0200 | [diff] [blame] | 849 | if (netif_device_present(real_dev) && ops->ndo_eth_ioctl) |
| 850 | err = ops->ndo_eth_ioctl(real_dev, &ifrr, cmd); |
Hangbin Liu | 254c0a2 | 2019-03-20 10:23:33 +0800 | [diff] [blame] | 851 | break; |
| 852 | } |
| 853 | |
| 854 | if (!err) |
| 855 | ifr->ifr_ifru = ifrr.ifr_ifru; |
| 856 | |
| 857 | return err; |
| 858 | } |
| 859 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 860 | /* |
| 861 | * macvlan network devices have devices nesting below it and are a special |
| 862 | * "super class" of normal network devices; split their locks off into a |
| 863 | * separate class since they always nest. |
| 864 | */ |
Cong Wang | 845e0eb | 2020-06-08 14:53:01 -0700 | [diff] [blame] | 865 | static struct lock_class_key macvlan_netdev_addr_lock_key; |
| 866 | |
Vlad Yasevich | 70957ea | 2017-05-11 11:09:52 -0400 | [diff] [blame] | 867 | #define ALWAYS_ON_OFFLOADS \ |
| 868 | (NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_GSO_SOFTWARE | \ |
Dimitris Michailidis | f21e507 | 2017-08-16 14:34:46 -0700 | [diff] [blame] | 869 | NETIF_F_GSO_ROBUST | NETIF_F_GSO_ENCAP_ALL) |
Vlad Yasevich | 8b4703e | 2014-03-03 15:33:53 -0500 | [diff] [blame] | 870 | |
Vlad Yasevich | 70957ea | 2017-05-11 11:09:52 -0400 | [diff] [blame] | 871 | #define ALWAYS_ON_FEATURES (ALWAYS_ON_OFFLOADS | NETIF_F_LLTX) |
| 872 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 873 | #define MACVLAN_FEATURES \ |
Tom Herbert | a188222 | 2015-12-14 11:19:43 -0800 | [diff] [blame] | 874 | (NETIF_F_SG | NETIF_F_HW_CSUM | NETIF_F_HIGHDMA | NETIF_F_FRAGLIST | \ |
David S. Miller | fb652fd | 2017-07-03 06:33:08 -0700 | [diff] [blame] | 875 | NETIF_F_GSO | NETIF_F_TSO | NETIF_F_LRO | \ |
John Fastabend | 8d13e67 | 2011-06-06 04:27:16 +0000 | [diff] [blame] | 876 | NETIF_F_TSO_ECN | NETIF_F_TSO6 | NETIF_F_GRO | NETIF_F_RXCSUM | \ |
Patrick McHardy | 28d2b13 | 2013-04-19 02:04:32 +0000 | [diff] [blame] | 877 | NETIF_F_HW_VLAN_CTAG_FILTER | NETIF_F_HW_VLAN_STAG_FILTER) |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 878 | |
| 879 | #define MACVLAN_STATE_MASK \ |
| 880 | ((1<<__LINK_STATE_NOCARRIER) | (1<<__LINK_STATE_DORMANT)) |
| 881 | |
Cong Wang | 845e0eb | 2020-06-08 14:53:01 -0700 | [diff] [blame] | 882 | static void macvlan_set_lockdep_class(struct net_device *dev) |
| 883 | { |
| 884 | netdev_lockdep_set_classes(dev); |
Cong Wang | be74294 | 2020-06-26 11:24:22 -0700 | [diff] [blame] | 885 | lockdep_set_class(&dev->addr_list_lock, |
| 886 | &macvlan_netdev_addr_lock_key); |
Cong Wang | 845e0eb | 2020-06-08 14:53:01 -0700 | [diff] [blame] | 887 | } |
| 888 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 889 | static int macvlan_init(struct net_device *dev) |
| 890 | { |
| 891 | struct macvlan_dev *vlan = netdev_priv(dev); |
| 892 | const struct net_device *lowerdev = vlan->lowerdev; |
Francesco Ruggeri | 3083796 | 2016-04-23 15:03:32 -0700 | [diff] [blame] | 893 | struct macvlan_port *port = vlan->port; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 894 | |
| 895 | dev->state = (dev->state & ~MACVLAN_STATE_MASK) | |
| 896 | (lowerdev->state & MACVLAN_STATE_MASK); |
| 897 | dev->features = lowerdev->features & MACVLAN_FEATURES; |
Vlad Yasevich | 8b4703e | 2014-03-03 15:33:53 -0500 | [diff] [blame] | 898 | dev->features |= ALWAYS_ON_FEATURES; |
Michal Kubeček | 62dbe83 | 2014-12-05 17:05:49 +0100 | [diff] [blame] | 899 | dev->hw_features |= NETIF_F_LRO; |
Vlad Yasevich | 081e83a | 2014-07-31 10:30:25 -0400 | [diff] [blame] | 900 | dev->vlan_features = lowerdev->vlan_features & MACVLAN_FEATURES; |
Vlad Yasevich | 70957ea | 2017-05-11 11:09:52 -0400 | [diff] [blame] | 901 | dev->vlan_features |= ALWAYS_ON_OFFLOADS; |
Dimitris Michailidis | f21e507 | 2017-08-16 14:34:46 -0700 | [diff] [blame] | 902 | dev->hw_enc_features |= dev->features; |
Eric Dumazet | 4b66d21 | 2021-11-19 07:43:31 -0800 | [diff] [blame] | 903 | netif_set_gso_max_size(dev, lowerdev->gso_max_size); |
Eric Dumazet | 6d872df | 2021-11-19 07:43:32 -0800 | [diff] [blame] | 904 | netif_set_gso_max_segs(dev, lowerdev->gso_max_segs); |
sg.tweak@gmail.com | ef5c899 | 2009-06-10 09:55:02 +0000 | [diff] [blame] | 905 | dev->hard_header_len = lowerdev->hard_header_len; |
Cong Wang | 845e0eb | 2020-06-08 14:53:01 -0700 | [diff] [blame] | 906 | macvlan_set_lockdep_class(dev); |
Cong Wang | 1a33e10 | 2020-05-02 22:22:19 -0700 | [diff] [blame] | 907 | |
WANG Cong | 1c213bd | 2014-02-13 11:46:28 -0800 | [diff] [blame] | 908 | vlan->pcpu_stats = netdev_alloc_pcpu_stats(struct vlan_pcpu_stats); |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 909 | if (!vlan->pcpu_stats) |
Eric Dumazet | fccaf71 | 2009-11-17 08:53:49 +0000 | [diff] [blame] | 910 | return -ENOMEM; |
| 911 | |
Francesco Ruggeri | 3083796 | 2016-04-23 15:03:32 -0700 | [diff] [blame] | 912 | port->count += 1; |
| 913 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 914 | return 0; |
| 915 | } |
| 916 | |
Eric Dumazet | fccaf71 | 2009-11-17 08:53:49 +0000 | [diff] [blame] | 917 | static void macvlan_uninit(struct net_device *dev) |
| 918 | { |
| 919 | struct macvlan_dev *vlan = netdev_priv(dev); |
Eric W. Biederman | d5cd9244 | 2011-03-21 18:22:22 -0700 | [diff] [blame] | 920 | struct macvlan_port *port = vlan->port; |
Eric Dumazet | fccaf71 | 2009-11-17 08:53:49 +0000 | [diff] [blame] | 921 | |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 922 | free_percpu(vlan->pcpu_stats); |
Eric W. Biederman | d5cd9244 | 2011-03-21 18:22:22 -0700 | [diff] [blame] | 923 | |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 924 | macvlan_flush_sources(port, vlan); |
David S. Miller | 5e3c516 | 2014-08-14 14:32:49 -0700 | [diff] [blame] | 925 | port->count -= 1; |
| 926 | if (!port->count) |
Eric W. Biederman | d5cd9244 | 2011-03-21 18:22:22 -0700 | [diff] [blame] | 927 | macvlan_port_destroy(port->dev); |
Eric Dumazet | fccaf71 | 2009-11-17 08:53:49 +0000 | [diff] [blame] | 928 | } |
| 929 | |
stephen hemminger | bc1f447 | 2017-01-06 19:12:52 -0800 | [diff] [blame] | 930 | static void macvlan_dev_get_stats64(struct net_device *dev, |
| 931 | struct rtnl_link_stats64 *stats) |
Eric Dumazet | fccaf71 | 2009-11-17 08:53:49 +0000 | [diff] [blame] | 932 | { |
Eric Dumazet | fccaf71 | 2009-11-17 08:53:49 +0000 | [diff] [blame] | 933 | struct macvlan_dev *vlan = netdev_priv(dev); |
| 934 | |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 935 | if (vlan->pcpu_stats) { |
Li RongQing | cdf3e27 | 2014-01-04 14:22:34 +0800 | [diff] [blame] | 936 | struct vlan_pcpu_stats *p; |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 937 | u64 rx_packets, rx_bytes, rx_multicast, tx_packets, tx_bytes; |
| 938 | u32 rx_errors = 0, tx_dropped = 0; |
Eric Dumazet | bc66154 | 2010-06-24 00:54:21 +0000 | [diff] [blame] | 939 | unsigned int start; |
Eric Dumazet | fccaf71 | 2009-11-17 08:53:49 +0000 | [diff] [blame] | 940 | int i; |
| 941 | |
| 942 | for_each_possible_cpu(i) { |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 943 | p = per_cpu_ptr(vlan->pcpu_stats, i); |
Eric Dumazet | bc66154 | 2010-06-24 00:54:21 +0000 | [diff] [blame] | 944 | do { |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 945 | start = u64_stats_fetch_begin_irq(&p->syncp); |
Eric Dumazet | bc66154 | 2010-06-24 00:54:21 +0000 | [diff] [blame] | 946 | rx_packets = p->rx_packets; |
| 947 | rx_bytes = p->rx_bytes; |
| 948 | rx_multicast = p->rx_multicast; |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 949 | tx_packets = p->tx_packets; |
| 950 | tx_bytes = p->tx_bytes; |
Eric W. Biederman | 57a7744 | 2014-03-13 21:26:42 -0700 | [diff] [blame] | 951 | } while (u64_stats_fetch_retry_irq(&p->syncp, start)); |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 952 | |
| 953 | stats->rx_packets += rx_packets; |
| 954 | stats->rx_bytes += rx_bytes; |
| 955 | stats->multicast += rx_multicast; |
| 956 | stats->tx_packets += tx_packets; |
| 957 | stats->tx_bytes += tx_bytes; |
| 958 | /* rx_errors & tx_dropped are u32, updated |
| 959 | * without syncp protection. |
| 960 | */ |
| 961 | rx_errors += p->rx_errors; |
| 962 | tx_dropped += p->tx_dropped; |
Eric Dumazet | fccaf71 | 2009-11-17 08:53:49 +0000 | [diff] [blame] | 963 | } |
Eric Dumazet | 8ffab51 | 2010-11-10 21:14:04 +0000 | [diff] [blame] | 964 | stats->rx_errors = rx_errors; |
| 965 | stats->rx_dropped = rx_errors; |
| 966 | stats->tx_dropped = tx_dropped; |
Eric Dumazet | fccaf71 | 2009-11-17 08:53:49 +0000 | [diff] [blame] | 967 | } |
Eric Dumazet | fccaf71 | 2009-11-17 08:53:49 +0000 | [diff] [blame] | 968 | } |
| 969 | |
Jiri Pirko | 8e58613 | 2011-12-08 19:52:37 -0500 | [diff] [blame] | 970 | static int macvlan_vlan_rx_add_vid(struct net_device *dev, |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 971 | __be16 proto, u16 vid) |
John Fastabend | 8d13e67 | 2011-06-06 04:27:16 +0000 | [diff] [blame] | 972 | { |
| 973 | struct macvlan_dev *vlan = netdev_priv(dev); |
| 974 | struct net_device *lowerdev = vlan->lowerdev; |
John Fastabend | 8d13e67 | 2011-06-06 04:27:16 +0000 | [diff] [blame] | 975 | |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 976 | return vlan_vid_add(lowerdev, proto, vid); |
John Fastabend | 8d13e67 | 2011-06-06 04:27:16 +0000 | [diff] [blame] | 977 | } |
| 978 | |
Jiri Pirko | 8e58613 | 2011-12-08 19:52:37 -0500 | [diff] [blame] | 979 | static int macvlan_vlan_rx_kill_vid(struct net_device *dev, |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 980 | __be16 proto, u16 vid) |
John Fastabend | 8d13e67 | 2011-06-06 04:27:16 +0000 | [diff] [blame] | 981 | { |
| 982 | struct macvlan_dev *vlan = netdev_priv(dev); |
| 983 | struct net_device *lowerdev = vlan->lowerdev; |
John Fastabend | 8d13e67 | 2011-06-06 04:27:16 +0000 | [diff] [blame] | 984 | |
Patrick McHardy | 80d5c36 | 2013-04-19 02:04:28 +0000 | [diff] [blame] | 985 | vlan_vid_del(lowerdev, proto, vid); |
Jiri Pirko | 8e58613 | 2011-12-08 19:52:37 -0500 | [diff] [blame] | 986 | return 0; |
John Fastabend | 8d13e67 | 2011-06-06 04:27:16 +0000 | [diff] [blame] | 987 | } |
| 988 | |
stephen hemminger | edc7d57 | 2012-10-01 12:32:33 +0000 | [diff] [blame] | 989 | static int macvlan_fdb_add(struct ndmsg *ndm, struct nlattr *tb[], |
John Fastabend | df8ef8f | 2012-04-15 06:44:37 +0000 | [diff] [blame] | 990 | struct net_device *dev, |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 991 | const unsigned char *addr, u16 vid, |
Petr Machata | 87b0984 | 2019-01-16 23:06:50 +0000 | [diff] [blame] | 992 | u16 flags, |
| 993 | struct netlink_ext_ack *extack) |
John Fastabend | df8ef8f | 2012-04-15 06:44:37 +0000 | [diff] [blame] | 994 | { |
| 995 | struct macvlan_dev *vlan = netdev_priv(dev); |
| 996 | int err = -EINVAL; |
| 997 | |
Vlad Yasevich | 8a50f11 | 2014-08-15 13:04:59 -0400 | [diff] [blame] | 998 | /* Support unicast filter only on passthru devices. |
| 999 | * Multicast filter should be allowed on all devices. |
| 1000 | */ |
Vlad Yasevich | 43c2d57 | 2017-06-21 07:59:18 -0400 | [diff] [blame] | 1001 | if (!macvlan_passthru(vlan->port) && is_unicast_ether_addr(addr)) |
John Fastabend | df8ef8f | 2012-04-15 06:44:37 +0000 | [diff] [blame] | 1002 | return -EOPNOTSUPP; |
| 1003 | |
Thomas Richter | ab2cfbb | 2013-07-19 17:20:08 +0200 | [diff] [blame] | 1004 | if (flags & NLM_F_REPLACE) |
| 1005 | return -EOPNOTSUPP; |
| 1006 | |
John Fastabend | df8ef8f | 2012-04-15 06:44:37 +0000 | [diff] [blame] | 1007 | if (is_unicast_ether_addr(addr)) |
| 1008 | err = dev_uc_add_excl(dev, addr); |
| 1009 | else if (is_multicast_ether_addr(addr)) |
| 1010 | err = dev_mc_add_excl(dev, addr); |
| 1011 | |
| 1012 | return err; |
| 1013 | } |
| 1014 | |
Vlad Yasevich | 1690be6 | 2013-02-13 12:00:18 +0000 | [diff] [blame] | 1015 | static int macvlan_fdb_del(struct ndmsg *ndm, struct nlattr *tb[], |
John Fastabend | df8ef8f | 2012-04-15 06:44:37 +0000 | [diff] [blame] | 1016 | struct net_device *dev, |
Jiri Pirko | f6f6424 | 2014-11-28 14:34:15 +0100 | [diff] [blame] | 1017 | const unsigned char *addr, u16 vid) |
John Fastabend | df8ef8f | 2012-04-15 06:44:37 +0000 | [diff] [blame] | 1018 | { |
| 1019 | struct macvlan_dev *vlan = netdev_priv(dev); |
| 1020 | int err = -EINVAL; |
| 1021 | |
Vlad Yasevich | 8a50f11 | 2014-08-15 13:04:59 -0400 | [diff] [blame] | 1022 | /* Support unicast filter only on passthru devices. |
| 1023 | * Multicast filter should be allowed on all devices. |
| 1024 | */ |
Vlad Yasevich | 43c2d57 | 2017-06-21 07:59:18 -0400 | [diff] [blame] | 1025 | if (!macvlan_passthru(vlan->port) && is_unicast_ether_addr(addr)) |
John Fastabend | df8ef8f | 2012-04-15 06:44:37 +0000 | [diff] [blame] | 1026 | return -EOPNOTSUPP; |
| 1027 | |
| 1028 | if (is_unicast_ether_addr(addr)) |
| 1029 | err = dev_uc_del(dev, addr); |
| 1030 | else if (is_multicast_ether_addr(addr)) |
| 1031 | err = dev_mc_del(dev, addr); |
| 1032 | |
| 1033 | return err; |
| 1034 | } |
| 1035 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1036 | static void macvlan_ethtool_get_drvinfo(struct net_device *dev, |
| 1037 | struct ethtool_drvinfo *drvinfo) |
| 1038 | { |
Jiri Pirko | 7826d43 | 2013-01-06 00:44:26 +0000 | [diff] [blame] | 1039 | strlcpy(drvinfo->driver, "macvlan", sizeof(drvinfo->driver)); |
| 1040 | strlcpy(drvinfo->version, "0.1", sizeof(drvinfo->version)); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1041 | } |
| 1042 | |
David Decotigny | 85f9581 | 2016-02-24 10:58:04 -0800 | [diff] [blame] | 1043 | static int macvlan_ethtool_get_link_ksettings(struct net_device *dev, |
| 1044 | struct ethtool_link_ksettings *cmd) |
Stephen Hemminger | 9edb8bb | 2008-10-29 15:31:53 -0700 | [diff] [blame] | 1045 | { |
| 1046 | const struct macvlan_dev *vlan = netdev_priv(dev); |
Jiri Pirko | 4bc71cb | 2011-09-03 03:34:30 +0000 | [diff] [blame] | 1047 | |
David Decotigny | 85f9581 | 2016-02-24 10:58:04 -0800 | [diff] [blame] | 1048 | return __ethtool_get_link_ksettings(vlan->lowerdev, cmd); |
Stephen Hemminger | 9edb8bb | 2008-10-29 15:31:53 -0700 | [diff] [blame] | 1049 | } |
| 1050 | |
Hangbin Liu | 254c0a2 | 2019-03-20 10:23:33 +0800 | [diff] [blame] | 1051 | static int macvlan_ethtool_get_ts_info(struct net_device *dev, |
| 1052 | struct ethtool_ts_info *info) |
| 1053 | { |
| 1054 | struct net_device *real_dev = macvlan_dev_real_dev(dev); |
| 1055 | const struct ethtool_ops *ops = real_dev->ethtool_ops; |
| 1056 | struct phy_device *phydev = real_dev->phydev; |
| 1057 | |
Richard Cochran | d25de98 | 2019-12-25 18:16:10 -0800 | [diff] [blame] | 1058 | if (phy_has_tsinfo(phydev)) { |
| 1059 | return phy_ts_info(phydev, info); |
Hangbin Liu | 254c0a2 | 2019-03-20 10:23:33 +0800 | [diff] [blame] | 1060 | } else if (ops->get_ts_info) { |
| 1061 | return ops->get_ts_info(real_dev, info); |
| 1062 | } else { |
| 1063 | info->so_timestamping = SOF_TIMESTAMPING_RX_SOFTWARE | |
| 1064 | SOF_TIMESTAMPING_SOFTWARE; |
| 1065 | info->phc_index = -1; |
| 1066 | } |
| 1067 | |
| 1068 | return 0; |
| 1069 | } |
| 1070 | |
Vlad Yasevich | 2be5c76 | 2013-06-25 16:04:21 -0400 | [diff] [blame] | 1071 | static netdev_features_t macvlan_fix_features(struct net_device *dev, |
| 1072 | netdev_features_t features) |
| 1073 | { |
| 1074 | struct macvlan_dev *vlan = netdev_priv(dev); |
Michal Kubeček | 62dbe83 | 2014-12-05 17:05:49 +0100 | [diff] [blame] | 1075 | netdev_features_t lowerdev_features = vlan->lowerdev->features; |
Florian Westphal | 797f87f | 2013-12-26 12:17:00 +0100 | [diff] [blame] | 1076 | netdev_features_t mask; |
Vlad Yasevich | 2be5c76 | 2013-06-25 16:04:21 -0400 | [diff] [blame] | 1077 | |
Florian Westphal | 797f87f | 2013-12-26 12:17:00 +0100 | [diff] [blame] | 1078 | features |= NETIF_F_ALL_FOR_ALL; |
| 1079 | features &= (vlan->set_features | ~MACVLAN_FEATURES); |
| 1080 | mask = features; |
| 1081 | |
Michal Kubeček | 62dbe83 | 2014-12-05 17:05:49 +0100 | [diff] [blame] | 1082 | lowerdev_features &= (features | ~NETIF_F_LRO); |
| 1083 | features = netdev_increment_features(lowerdev_features, features, mask); |
Vlad Yasevich | 8b4703e | 2014-03-03 15:33:53 -0500 | [diff] [blame] | 1084 | features |= ALWAYS_ON_FEATURES; |
Shannon Nelson | 13fbcc8 | 2018-03-08 16:17:23 -0800 | [diff] [blame] | 1085 | features &= (ALWAYS_ON_FEATURES | MACVLAN_FEATURES); |
Florian Westphal | 797f87f | 2013-12-26 12:17:00 +0100 | [diff] [blame] | 1086 | |
| 1087 | return features; |
Vlad Yasevich | 2be5c76 | 2013-06-25 16:04:21 -0400 | [diff] [blame] | 1088 | } |
| 1089 | |
dingtianhong | 688cea8 | 2014-05-30 16:00:56 +0800 | [diff] [blame] | 1090 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 1091 | static void macvlan_dev_poll_controller(struct net_device *dev) |
| 1092 | { |
| 1093 | return; |
| 1094 | } |
| 1095 | |
| 1096 | static int macvlan_dev_netpoll_setup(struct net_device *dev, struct netpoll_info *npinfo) |
| 1097 | { |
| 1098 | struct macvlan_dev *vlan = netdev_priv(dev); |
| 1099 | struct net_device *real_dev = vlan->lowerdev; |
| 1100 | struct netpoll *netpoll; |
Menglong Dong | 419a38c | 2020-11-04 20:54:04 -0500 | [diff] [blame] | 1101 | int err; |
dingtianhong | 688cea8 | 2014-05-30 16:00:56 +0800 | [diff] [blame] | 1102 | |
| 1103 | netpoll = kzalloc(sizeof(*netpoll), GFP_KERNEL); |
| 1104 | err = -ENOMEM; |
| 1105 | if (!netpoll) |
| 1106 | goto out; |
| 1107 | |
| 1108 | err = __netpoll_setup(netpoll, real_dev); |
| 1109 | if (err) { |
| 1110 | kfree(netpoll); |
| 1111 | goto out; |
| 1112 | } |
| 1113 | |
| 1114 | vlan->netpoll = netpoll; |
| 1115 | |
| 1116 | out: |
| 1117 | return err; |
| 1118 | } |
| 1119 | |
| 1120 | static void macvlan_dev_netpoll_cleanup(struct net_device *dev) |
| 1121 | { |
| 1122 | struct macvlan_dev *vlan = netdev_priv(dev); |
| 1123 | struct netpoll *netpoll = vlan->netpoll; |
| 1124 | |
| 1125 | if (!netpoll) |
| 1126 | return; |
| 1127 | |
| 1128 | vlan->netpoll = NULL; |
| 1129 | |
Debabrata Banerjee | c9fbd71 | 2018-10-18 11:18:26 -0400 | [diff] [blame] | 1130 | __netpoll_free(netpoll); |
dingtianhong | 688cea8 | 2014-05-30 16:00:56 +0800 | [diff] [blame] | 1131 | } |
| 1132 | #endif /* CONFIG_NET_POLL_CONTROLLER */ |
| 1133 | |
Nicolas Dichtel | ef5fa6b | 2015-04-02 17:07:05 +0200 | [diff] [blame] | 1134 | static int macvlan_dev_get_iflink(const struct net_device *dev) |
| 1135 | { |
| 1136 | struct macvlan_dev *vlan = netdev_priv(dev); |
| 1137 | |
| 1138 | return vlan->lowerdev->ifindex; |
| 1139 | } |
| 1140 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1141 | static const struct ethtool_ops macvlan_ethtool_ops = { |
| 1142 | .get_link = ethtool_op_get_link, |
David Decotigny | 85f9581 | 2016-02-24 10:58:04 -0800 | [diff] [blame] | 1143 | .get_link_ksettings = macvlan_ethtool_get_link_ksettings, |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1144 | .get_drvinfo = macvlan_ethtool_get_drvinfo, |
Hangbin Liu | 254c0a2 | 2019-03-20 10:23:33 +0800 | [diff] [blame] | 1145 | .get_ts_info = macvlan_ethtool_get_ts_info, |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1146 | }; |
| 1147 | |
Stephen Hemminger | 54a30c9 | 2008-11-19 21:51:06 -0800 | [diff] [blame] | 1148 | static const struct net_device_ops macvlan_netdev_ops = { |
| 1149 | .ndo_init = macvlan_init, |
Eric Dumazet | fccaf71 | 2009-11-17 08:53:49 +0000 | [diff] [blame] | 1150 | .ndo_uninit = macvlan_uninit, |
Stephen Hemminger | 54a30c9 | 2008-11-19 21:51:06 -0800 | [diff] [blame] | 1151 | .ndo_open = macvlan_open, |
| 1152 | .ndo_stop = macvlan_stop, |
Stephen Hemminger | 0082982 | 2008-11-20 20:14:53 -0800 | [diff] [blame] | 1153 | .ndo_start_xmit = macvlan_start_xmit, |
Stephen Hemminger | 54a30c9 | 2008-11-19 21:51:06 -0800 | [diff] [blame] | 1154 | .ndo_change_mtu = macvlan_change_mtu, |
Arnd Bergmann | a760537 | 2021-07-27 15:45:13 +0200 | [diff] [blame] | 1155 | .ndo_eth_ioctl = macvlan_eth_ioctl, |
Vlad Yasevich | 2be5c76 | 2013-06-25 16:04:21 -0400 | [diff] [blame] | 1156 | .ndo_fix_features = macvlan_fix_features, |
Stephen Hemminger | 54a30c9 | 2008-11-19 21:51:06 -0800 | [diff] [blame] | 1157 | .ndo_change_rx_flags = macvlan_change_rx_flags, |
| 1158 | .ndo_set_mac_address = macvlan_set_mac_address, |
John Fastabend | df8ef8f | 2012-04-15 06:44:37 +0000 | [diff] [blame] | 1159 | .ndo_set_rx_mode = macvlan_set_mac_lists, |
Eric Dumazet | bc66154 | 2010-06-24 00:54:21 +0000 | [diff] [blame] | 1160 | .ndo_get_stats64 = macvlan_dev_get_stats64, |
Stephen Hemminger | 54a30c9 | 2008-11-19 21:51:06 -0800 | [diff] [blame] | 1161 | .ndo_validate_addr = eth_validate_addr, |
John Fastabend | 8d13e67 | 2011-06-06 04:27:16 +0000 | [diff] [blame] | 1162 | .ndo_vlan_rx_add_vid = macvlan_vlan_rx_add_vid, |
| 1163 | .ndo_vlan_rx_kill_vid = macvlan_vlan_rx_kill_vid, |
John Fastabend | df8ef8f | 2012-04-15 06:44:37 +0000 | [diff] [blame] | 1164 | .ndo_fdb_add = macvlan_fdb_add, |
| 1165 | .ndo_fdb_del = macvlan_fdb_del, |
| 1166 | .ndo_fdb_dump = ndo_dflt_fdb_dump, |
dingtianhong | 688cea8 | 2014-05-30 16:00:56 +0800 | [diff] [blame] | 1167 | #ifdef CONFIG_NET_POLL_CONTROLLER |
| 1168 | .ndo_poll_controller = macvlan_dev_poll_controller, |
| 1169 | .ndo_netpoll_setup = macvlan_dev_netpoll_setup, |
| 1170 | .ndo_netpoll_cleanup = macvlan_dev_netpoll_cleanup, |
| 1171 | #endif |
Nicolas Dichtel | ef5fa6b | 2015-04-02 17:07:05 +0200 | [diff] [blame] | 1172 | .ndo_get_iflink = macvlan_dev_get_iflink, |
Toshiaki Makita | f56e67b | 2015-07-31 15:03:24 +0900 | [diff] [blame] | 1173 | .ndo_features_check = passthru_features_check, |
Stephen Hemminger | 54a30c9 | 2008-11-19 21:51:06 -0800 | [diff] [blame] | 1174 | }; |
| 1175 | |
Herbert Xu | 8a35747 | 2010-07-21 21:44:31 +0000 | [diff] [blame] | 1176 | void macvlan_common_setup(struct net_device *dev) |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1177 | { |
| 1178 | ether_setup(dev); |
| 1179 | |
Jarod Wilson | 9157208 | 2016-10-20 13:55:20 -0400 | [diff] [blame] | 1180 | dev->min_mtu = 0; |
| 1181 | dev->max_mtu = ETH_MAX_MTU; |
Eric Dumazet | 0287587 | 2014-10-05 18:38:35 -0700 | [diff] [blame] | 1182 | dev->priv_flags &= ~IFF_TX_SKB_SHARING; |
| 1183 | netif_keep_dst(dev); |
Jakub Kicinski | 2106efd | 2021-11-22 17:24:47 -0800 | [diff] [blame] | 1184 | dev->priv_flags |= IFF_UNICAST_FLT | IFF_CHANGE_PROTO_DOWN; |
Stephen Hemminger | 54a30c9 | 2008-11-19 21:51:06 -0800 | [diff] [blame] | 1185 | dev->netdev_ops = &macvlan_netdev_ops; |
David S. Miller | cf124db | 2017-05-08 12:52:56 -0400 | [diff] [blame] | 1186 | dev->needs_free_netdev = true; |
Lutz Jaenicke | 7174012 | 2013-08-28 13:34:31 +0200 | [diff] [blame] | 1187 | dev->header_ops = &macvlan_hard_header_ops; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1188 | dev->ethtool_ops = &macvlan_ethtool_ops; |
Herbert Xu | 8a35747 | 2010-07-21 21:44:31 +0000 | [diff] [blame] | 1189 | } |
| 1190 | EXPORT_SYMBOL_GPL(macvlan_common_setup); |
| 1191 | |
| 1192 | static void macvlan_setup(struct net_device *dev) |
| 1193 | { |
| 1194 | macvlan_common_setup(dev); |
Zhang Shengju | 7009212 | 2016-02-14 14:10:39 +0000 | [diff] [blame] | 1195 | dev->priv_flags |= IFF_NO_QUEUE; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1196 | } |
| 1197 | |
| 1198 | static int macvlan_port_create(struct net_device *dev) |
| 1199 | { |
| 1200 | struct macvlan_port *port; |
| 1201 | unsigned int i; |
Jiri Pirko | ab95bfe | 2010-06-01 21:52:08 +0000 | [diff] [blame] | 1202 | int err; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1203 | |
| 1204 | if (dev->type != ARPHRD_ETHER || dev->flags & IFF_LOOPBACK) |
| 1205 | return -EINVAL; |
| 1206 | |
Mahesh Bandewar | 322dc6e | 2017-01-18 15:02:55 -0800 | [diff] [blame] | 1207 | if (netdev_is_rx_handler_busy(dev)) |
Mahesh Bandewar | d6b00fe | 2014-12-06 15:53:46 -0800 | [diff] [blame] | 1208 | return -EBUSY; |
| 1209 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1210 | port = kzalloc(sizeof(*port), GFP_KERNEL); |
| 1211 | if (port == NULL) |
| 1212 | return -ENOMEM; |
| 1213 | |
| 1214 | port->dev = dev; |
Vlad Yasevich | 18c8c54 | 2017-06-21 07:59:19 -0400 | [diff] [blame] | 1215 | ether_addr_copy(port->perm_addr, dev->dev_addr); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1216 | INIT_LIST_HEAD(&port->vlans); |
| 1217 | for (i = 0; i < MACVLAN_HASH_SIZE; i++) |
| 1218 | INIT_HLIST_HEAD(&port->vlan_hash[i]); |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1219 | for (i = 0; i < MACVLAN_HASH_SIZE; i++) |
| 1220 | INIT_HLIST_HEAD(&port->vlan_source_hash[i]); |
Jiri Pirko | ab95bfe | 2010-06-01 21:52:08 +0000 | [diff] [blame] | 1221 | |
Thomas Karlsson | d4bff72 | 2020-12-02 19:49:58 +0100 | [diff] [blame] | 1222 | port->bc_queue_len_used = 0; |
Herbert Xu | 412ca15 | 2014-04-17 13:45:59 +0800 | [diff] [blame] | 1223 | skb_queue_head_init(&port->bc_queue); |
| 1224 | INIT_WORK(&port->bc_work, macvlan_process_broadcast); |
| 1225 | |
Jiri Pirko | a35e2c1 | 2010-06-15 03:27:57 +0000 | [diff] [blame] | 1226 | err = netdev_rx_handler_register(dev, macvlan_handle_frame, port); |
| 1227 | if (err) |
Jiri Pirko | ab95bfe | 2010-06-01 21:52:08 +0000 | [diff] [blame] | 1228 | kfree(port); |
Eric Dumazet | d935156 | 2011-05-20 14:59:23 -0400 | [diff] [blame] | 1229 | else |
| 1230 | dev->priv_flags |= IFF_MACVLAN_PORT; |
Jiri Pirko | ab95bfe | 2010-06-01 21:52:08 +0000 | [diff] [blame] | 1231 | return err; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1232 | } |
| 1233 | |
| 1234 | static void macvlan_port_destroy(struct net_device *dev) |
| 1235 | { |
Eric Dumazet | e052f7e | 2013-03-30 10:08:44 +0000 | [diff] [blame] | 1236 | struct macvlan_port *port = macvlan_port_get_rtnl(dev); |
Herbert Xu | f647821 | 2017-04-20 20:55:12 +0800 | [diff] [blame] | 1237 | struct sk_buff *skb; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1238 | |
Jiri Pirko | a35e2c1 | 2010-06-15 03:27:57 +0000 | [diff] [blame] | 1239 | dev->priv_flags &= ~IFF_MACVLAN_PORT; |
Jiri Pirko | ab95bfe | 2010-06-01 21:52:08 +0000 | [diff] [blame] | 1240 | netdev_rx_handler_unregister(dev); |
Eric Dumazet | fe0ca73 | 2014-10-22 19:43:46 -0700 | [diff] [blame] | 1241 | |
| 1242 | /* After this point, no packet can schedule bc_work anymore, |
| 1243 | * but we need to cancel it and purge left skbs if any. |
| 1244 | */ |
| 1245 | cancel_work_sync(&port->bc_work); |
Herbert Xu | f647821 | 2017-04-20 20:55:12 +0800 | [diff] [blame] | 1246 | |
| 1247 | while ((skb = __skb_dequeue(&port->bc_queue))) { |
| 1248 | const struct macvlan_dev *src = MACVLAN_SKB_CB(skb)->src; |
| 1249 | |
| 1250 | if (src) |
| 1251 | dev_put(src->dev); |
| 1252 | |
| 1253 | kfree_skb(skb); |
| 1254 | } |
Eric Dumazet | fe0ca73 | 2014-10-22 19:43:46 -0700 | [diff] [blame] | 1255 | |
Vlad Yasevich | 18c8c54 | 2017-06-21 07:59:19 -0400 | [diff] [blame] | 1256 | /* If the lower device address has been changed by passthru |
| 1257 | * macvlan, put it back. |
| 1258 | */ |
| 1259 | if (macvlan_passthru(port) && |
| 1260 | !ether_addr_equal(port->dev->dev_addr, port->perm_addr)) { |
| 1261 | struct sockaddr sa; |
| 1262 | |
| 1263 | sa.sa_family = port->dev->type; |
| 1264 | memcpy(&sa.sa_data, port->perm_addr, port->dev->addr_len); |
Petr Machata | 3a37a96 | 2018-12-13 11:54:30 +0000 | [diff] [blame] | 1265 | dev_set_mac_address(port->dev, &sa, NULL); |
Vlad Yasevich | 18c8c54 | 2017-06-21 07:59:19 -0400 | [diff] [blame] | 1266 | } |
| 1267 | |
Gao Feng | a1f5315 | 2016-12-07 12:23:18 +0800 | [diff] [blame] | 1268 | kfree(port); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1269 | } |
| 1270 | |
Matthias Schiffer | a8b8a889 | 2017-06-25 23:56:01 +0200 | [diff] [blame] | 1271 | static int macvlan_validate(struct nlattr *tb[], struct nlattr *data[], |
| 1272 | struct netlink_ext_ack *extack) |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1273 | { |
Alvin Šipraga | 8b61fba | 2020-08-18 10:51:34 +0200 | [diff] [blame] | 1274 | struct nlattr *nla, *head; |
| 1275 | int rem, len; |
| 1276 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1277 | if (tb[IFLA_ADDRESS]) { |
| 1278 | if (nla_len(tb[IFLA_ADDRESS]) != ETH_ALEN) |
| 1279 | return -EINVAL; |
| 1280 | if (!is_valid_ether_addr(nla_data(tb[IFLA_ADDRESS]))) |
| 1281 | return -EADDRNOTAVAIL; |
| 1282 | } |
Arnd Bergmann | 27c0b1a | 2009-11-26 06:07:11 +0000 | [diff] [blame] | 1283 | |
Zhang Shengju | 07850a4 | 2017-09-20 08:12:23 +0800 | [diff] [blame] | 1284 | if (!data) |
| 1285 | return 0; |
| 1286 | |
| 1287 | if (data[IFLA_MACVLAN_FLAGS] && |
Jethro Beekman | 427f0c8 | 2021-04-25 11:22:03 +0200 | [diff] [blame] | 1288 | nla_get_u16(data[IFLA_MACVLAN_FLAGS]) & ~(MACVLAN_FLAG_NOPROMISC | |
| 1289 | MACVLAN_FLAG_NODST)) |
Michael S. Tsirkin | 1512747 | 2013-08-05 18:25:54 +0300 | [diff] [blame] | 1290 | return -EINVAL; |
| 1291 | |
Zhang Shengju | 07850a4 | 2017-09-20 08:12:23 +0800 | [diff] [blame] | 1292 | if (data[IFLA_MACVLAN_MODE]) { |
Arnd Bergmann | 27c0b1a | 2009-11-26 06:07:11 +0000 | [diff] [blame] | 1293 | switch (nla_get_u32(data[IFLA_MACVLAN_MODE])) { |
| 1294 | case MACVLAN_MODE_PRIVATE: |
| 1295 | case MACVLAN_MODE_VEPA: |
| 1296 | case MACVLAN_MODE_BRIDGE: |
Sridhar Samudrala | eb06acd | 2010-10-28 13:10:50 +0000 | [diff] [blame] | 1297 | case MACVLAN_MODE_PASSTHRU: |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1298 | case MACVLAN_MODE_SOURCE: |
Arnd Bergmann | 27c0b1a | 2009-11-26 06:07:11 +0000 | [diff] [blame] | 1299 | break; |
| 1300 | default: |
| 1301 | return -EINVAL; |
| 1302 | } |
| 1303 | } |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1304 | |
Zhang Shengju | 07850a4 | 2017-09-20 08:12:23 +0800 | [diff] [blame] | 1305 | if (data[IFLA_MACVLAN_MACADDR_MODE]) { |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1306 | switch (nla_get_u32(data[IFLA_MACVLAN_MACADDR_MODE])) { |
| 1307 | case MACVLAN_MACADDR_ADD: |
| 1308 | case MACVLAN_MACADDR_DEL: |
| 1309 | case MACVLAN_MACADDR_FLUSH: |
| 1310 | case MACVLAN_MACADDR_SET: |
| 1311 | break; |
| 1312 | default: |
| 1313 | return -EINVAL; |
| 1314 | } |
| 1315 | } |
| 1316 | |
Zhang Shengju | 07850a4 | 2017-09-20 08:12:23 +0800 | [diff] [blame] | 1317 | if (data[IFLA_MACVLAN_MACADDR]) { |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1318 | if (nla_len(data[IFLA_MACVLAN_MACADDR]) != ETH_ALEN) |
| 1319 | return -EINVAL; |
| 1320 | |
| 1321 | if (!is_valid_ether_addr(nla_data(data[IFLA_MACVLAN_MACADDR]))) |
| 1322 | return -EADDRNOTAVAIL; |
| 1323 | } |
| 1324 | |
Alvin Šipraga | 8b61fba | 2020-08-18 10:51:34 +0200 | [diff] [blame] | 1325 | if (data[IFLA_MACVLAN_MACADDR_DATA]) { |
| 1326 | head = nla_data(data[IFLA_MACVLAN_MACADDR_DATA]); |
| 1327 | len = nla_len(data[IFLA_MACVLAN_MACADDR_DATA]); |
| 1328 | |
| 1329 | nla_for_each_attr(nla, head, len, rem) { |
| 1330 | if (nla_type(nla) != IFLA_MACVLAN_MACADDR || |
| 1331 | nla_len(nla) != ETH_ALEN) |
| 1332 | return -EINVAL; |
| 1333 | |
| 1334 | if (!is_valid_ether_addr(nla_data(nla))) |
| 1335 | return -EADDRNOTAVAIL; |
| 1336 | } |
| 1337 | } |
| 1338 | |
Zhang Shengju | 07850a4 | 2017-09-20 08:12:23 +0800 | [diff] [blame] | 1339 | if (data[IFLA_MACVLAN_MACADDR_COUNT]) |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1340 | return -EINVAL; |
| 1341 | |
| 1342 | return 0; |
| 1343 | } |
| 1344 | |
Lee Jones | 50a77e5 | 2020-11-02 11:45:08 +0000 | [diff] [blame] | 1345 | /* |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1346 | * reconfigure list of remote source mac address |
| 1347 | * (only for macvlan devices in source mode) |
| 1348 | * Note regarding alignment: all netlink data is aligned to 4 Byte, which |
| 1349 | * suffices for both ether_addr_copy and ether_addr_equal_64bits usage. |
| 1350 | */ |
| 1351 | static int macvlan_changelink_sources(struct macvlan_dev *vlan, u32 mode, |
| 1352 | struct nlattr *data[]) |
| 1353 | { |
| 1354 | char *addr = NULL; |
| 1355 | int ret, rem, len; |
| 1356 | struct nlattr *nla, *head; |
| 1357 | struct macvlan_source_entry *entry; |
| 1358 | |
| 1359 | if (data[IFLA_MACVLAN_MACADDR]) |
| 1360 | addr = nla_data(data[IFLA_MACVLAN_MACADDR]); |
| 1361 | |
| 1362 | if (mode == MACVLAN_MACADDR_ADD) { |
| 1363 | if (!addr) |
| 1364 | return -EINVAL; |
| 1365 | |
| 1366 | return macvlan_hash_add_source(vlan, addr); |
| 1367 | |
| 1368 | } else if (mode == MACVLAN_MACADDR_DEL) { |
| 1369 | if (!addr) |
| 1370 | return -EINVAL; |
| 1371 | |
| 1372 | entry = macvlan_hash_lookup_source(vlan, addr); |
| 1373 | if (entry) { |
| 1374 | macvlan_hash_del_source(entry); |
| 1375 | vlan->macaddr_count--; |
| 1376 | } |
| 1377 | } else if (mode == MACVLAN_MACADDR_FLUSH) { |
| 1378 | macvlan_flush_sources(vlan->port, vlan); |
| 1379 | } else if (mode == MACVLAN_MACADDR_SET) { |
| 1380 | macvlan_flush_sources(vlan->port, vlan); |
| 1381 | |
| 1382 | if (addr) { |
| 1383 | ret = macvlan_hash_add_source(vlan, addr); |
| 1384 | if (ret) |
| 1385 | return ret; |
| 1386 | } |
| 1387 | |
Yunjian Wang | 89430ef | 2021-01-05 14:31:34 +0800 | [diff] [blame] | 1388 | if (!data[IFLA_MACVLAN_MACADDR_DATA]) |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1389 | return 0; |
| 1390 | |
| 1391 | head = nla_data(data[IFLA_MACVLAN_MACADDR_DATA]); |
| 1392 | len = nla_len(data[IFLA_MACVLAN_MACADDR_DATA]); |
| 1393 | |
| 1394 | nla_for_each_attr(nla, head, len, rem) { |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1395 | addr = nla_data(nla); |
| 1396 | ret = macvlan_hash_add_source(vlan, addr); |
| 1397 | if (ret) |
| 1398 | return ret; |
| 1399 | } |
| 1400 | } else { |
| 1401 | return -EINVAL; |
| 1402 | } |
| 1403 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1404 | return 0; |
| 1405 | } |
| 1406 | |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 1407 | int macvlan_common_newlink(struct net *src_net, struct net_device *dev, |
David Ahern | 42ab19e | 2017-10-04 17:48:47 -0700 | [diff] [blame] | 1408 | struct nlattr *tb[], struct nlattr *data[], |
| 1409 | struct netlink_ext_ack *extack) |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1410 | { |
| 1411 | struct macvlan_dev *vlan = netdev_priv(dev); |
| 1412 | struct macvlan_port *port; |
| 1413 | struct net_device *lowerdev; |
| 1414 | int err; |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1415 | int macmode; |
Gao Feng | aa5fd0f | 2016-11-04 10:28:49 +0800 | [diff] [blame] | 1416 | bool create = false; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1417 | |
| 1418 | if (!tb[IFLA_LINK]) |
| 1419 | return -EINVAL; |
| 1420 | |
Eric W. Biederman | 81adee4 | 2009-11-08 00:53:51 -0800 | [diff] [blame] | 1421 | lowerdev = __dev_get_by_index(src_net, nla_get_u32(tb[IFLA_LINK])); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1422 | if (lowerdev == NULL) |
| 1423 | return -ENODEV; |
| 1424 | |
Kevin Wallace | d70f2cf | 2013-12-03 02:55:22 -0800 | [diff] [blame] | 1425 | /* When creating macvlans or macvtaps on top of other macvlans - use |
Eric Biederman | b0832a2 | 2009-03-13 13:15:37 -0700 | [diff] [blame] | 1426 | * the real device as the lowerdev. |
Patrick McHardy | a6ca5f1 | 2008-01-10 22:39:28 -0800 | [diff] [blame] | 1427 | */ |
Kevin Wallace | d70f2cf | 2013-12-03 02:55:22 -0800 | [diff] [blame] | 1428 | if (netif_is_macvlan(lowerdev)) |
| 1429 | lowerdev = macvlan_dev_real_dev(lowerdev); |
Patrick McHardy | a6ca5f1 | 2008-01-10 22:39:28 -0800 | [diff] [blame] | 1430 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1431 | if (!tb[IFLA_MTU]) |
| 1432 | dev->mtu = lowerdev->mtu; |
| 1433 | else if (dev->mtu > lowerdev->mtu) |
| 1434 | return -EINVAL; |
| 1435 | |
Jarod Wilson | 9157208 | 2016-10-20 13:55:20 -0400 | [diff] [blame] | 1436 | /* MTU range: 68 - lowerdev->max_mtu */ |
| 1437 | dev->min_mtu = ETH_MIN_MTU; |
| 1438 | dev->max_mtu = lowerdev->max_mtu; |
| 1439 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1440 | if (!tb[IFLA_ADDRESS]) |
Danny Kukawka | 7ce5d22 | 2012-02-15 06:45:40 +0000 | [diff] [blame] | 1441 | eth_hw_addr_random(dev); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1442 | |
Julian Wiedmann | 913564f | 2019-01-31 10:48:10 +0100 | [diff] [blame] | 1443 | if (!netif_is_macvlan_port(lowerdev)) { |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1444 | err = macvlan_port_create(lowerdev); |
| 1445 | if (err < 0) |
| 1446 | return err; |
Gao Feng | aa5fd0f | 2016-11-04 10:28:49 +0800 | [diff] [blame] | 1447 | create = true; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1448 | } |
Eric Dumazet | e052f7e | 2013-03-30 10:08:44 +0000 | [diff] [blame] | 1449 | port = macvlan_port_get_rtnl(lowerdev); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1450 | |
Sridhar Samudrala | eb06acd | 2010-10-28 13:10:50 +0000 | [diff] [blame] | 1451 | /* Only 1 macvlan device can be created in passthru mode */ |
Vlad Yasevich | 43c2d57 | 2017-06-21 07:59:18 -0400 | [diff] [blame] | 1452 | if (macvlan_passthru(port)) { |
Gao Feng | aa5fd0f | 2016-11-04 10:28:49 +0800 | [diff] [blame] | 1453 | /* The macvlan port must be not created this time, |
| 1454 | * still goto destroy_macvlan_port for readability. |
| 1455 | */ |
| 1456 | err = -EINVAL; |
| 1457 | goto destroy_macvlan_port; |
| 1458 | } |
Sridhar Samudrala | eb06acd | 2010-10-28 13:10:50 +0000 | [diff] [blame] | 1459 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1460 | vlan->lowerdev = lowerdev; |
| 1461 | vlan->dev = dev; |
| 1462 | vlan->port = port; |
Vlad Yasevich | 2be5c76 | 2013-06-25 16:04:21 -0400 | [diff] [blame] | 1463 | vlan->set_features = MACVLAN_FEATURES; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1464 | |
Arnd Bergmann | 27c0b1a | 2009-11-26 06:07:11 +0000 | [diff] [blame] | 1465 | vlan->mode = MACVLAN_MODE_VEPA; |
| 1466 | if (data && data[IFLA_MACVLAN_MODE]) |
| 1467 | vlan->mode = nla_get_u32(data[IFLA_MACVLAN_MODE]); |
| 1468 | |
John Fastabend | df8ef8f | 2012-04-15 06:44:37 +0000 | [diff] [blame] | 1469 | if (data && data[IFLA_MACVLAN_FLAGS]) |
| 1470 | vlan->flags = nla_get_u16(data[IFLA_MACVLAN_FLAGS]); |
| 1471 | |
Sridhar Samudrala | eb06acd | 2010-10-28 13:10:50 +0000 | [diff] [blame] | 1472 | if (vlan->mode == MACVLAN_MODE_PASSTHRU) { |
Gao Feng | aa5fd0f | 2016-11-04 10:28:49 +0800 | [diff] [blame] | 1473 | if (port->count) { |
| 1474 | err = -EINVAL; |
| 1475 | goto destroy_macvlan_port; |
| 1476 | } |
Vlad Yasevich | 43c2d57 | 2017-06-21 07:59:18 -0400 | [diff] [blame] | 1477 | macvlan_set_passthru(port); |
Bjørn Mork | 8b98604 | 2013-08-30 18:08:47 +0200 | [diff] [blame] | 1478 | eth_hw_addr_inherit(dev, lowerdev); |
Sridhar Samudrala | eb06acd | 2010-10-28 13:10:50 +0000 | [diff] [blame] | 1479 | } |
| 1480 | |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1481 | if (data && data[IFLA_MACVLAN_MACADDR_MODE]) { |
Gao Feng | aa5fd0f | 2016-11-04 10:28:49 +0800 | [diff] [blame] | 1482 | if (vlan->mode != MACVLAN_MODE_SOURCE) { |
| 1483 | err = -EINVAL; |
| 1484 | goto destroy_macvlan_port; |
| 1485 | } |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1486 | macmode = nla_get_u32(data[IFLA_MACVLAN_MACADDR_MODE]); |
| 1487 | err = macvlan_changelink_sources(vlan, macmode, data); |
| 1488 | if (err) |
Gao Feng | aa5fd0f | 2016-11-04 10:28:49 +0800 | [diff] [blame] | 1489 | goto destroy_macvlan_port; |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1490 | } |
| 1491 | |
Thomas Karlsson | d4bff72 | 2020-12-02 19:49:58 +0100 | [diff] [blame] | 1492 | vlan->bc_queue_len_req = MACVLAN_DEFAULT_BC_QUEUE_LEN; |
| 1493 | if (data && data[IFLA_MACVLAN_BC_QUEUE_LEN]) |
| 1494 | vlan->bc_queue_len_req = nla_get_u32(data[IFLA_MACVLAN_BC_QUEUE_LEN]); |
| 1495 | |
John Fastabend | 47d4ab9 | 2013-10-21 14:28:02 -0700 | [diff] [blame] | 1496 | err = register_netdevice(dev); |
| 1497 | if (err < 0) |
Gao Feng | aa5fd0f | 2016-11-04 10:28:49 +0800 | [diff] [blame] | 1498 | goto destroy_macvlan_port; |
John Fastabend | 47d4ab9 | 2013-10-21 14:28:02 -0700 | [diff] [blame] | 1499 | |
John Fastabend | a6cc0cf | 2013-11-06 09:54:46 -0800 | [diff] [blame] | 1500 | dev->priv_flags |= IFF_MACVLAN; |
David Ahern | 42ab19e | 2017-10-04 17:48:47 -0700 | [diff] [blame] | 1501 | err = netdev_upper_dev_link(lowerdev, dev, extack); |
Jiri Pirko | 7cd43db | 2013-01-03 22:48:50 +0000 | [diff] [blame] | 1502 | if (err) |
Cong Wang | da37705 | 2014-02-11 15:51:29 -0800 | [diff] [blame] | 1503 | goto unregister_netdev; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1504 | |
Jiri Pirko | 233c7df | 2013-05-09 04:23:40 +0000 | [diff] [blame] | 1505 | list_add_tail_rcu(&vlan->list, &port->vlans); |
Thomas Karlsson | d4bff72 | 2020-12-02 19:49:58 +0100 | [diff] [blame] | 1506 | update_port_bc_queue_len(vlan->port); |
Patrick Mullaney | fc4a748 | 2009-12-03 15:59:22 -0800 | [diff] [blame] | 1507 | netif_stacked_transfer_operstate(lowerdev, dev); |
Nikolay Aleksandrov | de7d244 | 2016-01-27 17:50:43 +0100 | [diff] [blame] | 1508 | linkwatch_fire_event(dev); |
Jiri Pirko | f16d3d5 | 2010-05-24 07:02:25 +0000 | [diff] [blame] | 1509 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1510 | return 0; |
Jiri Pirko | f16d3d5 | 2010-05-24 07:02:25 +0000 | [diff] [blame] | 1511 | |
Cong Wang | da37705 | 2014-02-11 15:51:29 -0800 | [diff] [blame] | 1512 | unregister_netdev: |
Gao Feng | d02fd6e | 2017-12-26 21:44:32 +0800 | [diff] [blame] | 1513 | /* macvlan_uninit would free the macvlan port */ |
Cong Wang | da37705 | 2014-02-11 15:51:29 -0800 | [diff] [blame] | 1514 | unregister_netdevice(dev); |
Gao Feng | d02fd6e | 2017-12-26 21:44:32 +0800 | [diff] [blame] | 1515 | return err; |
Gao Feng | aa5fd0f | 2016-11-04 10:28:49 +0800 | [diff] [blame] | 1516 | destroy_macvlan_port: |
Gao Feng | d02fd6e | 2017-12-26 21:44:32 +0800 | [diff] [blame] | 1517 | /* the macvlan port may be freed by macvlan_uninit when fail to register. |
| 1518 | * so we destroy the macvlan port only when it's valid. |
| 1519 | */ |
Alexey Kodanev | 4e14bf4 | 2018-02-22 18:20:30 +0300 | [diff] [blame] | 1520 | if (create && macvlan_port_get_rtnl(lowerdev)) |
Gao Feng | aa5fd0f | 2016-11-04 10:28:49 +0800 | [diff] [blame] | 1521 | macvlan_port_destroy(port->dev); |
Jiri Pirko | f16d3d5 | 2010-05-24 07:02:25 +0000 | [diff] [blame] | 1522 | return err; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1523 | } |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 1524 | EXPORT_SYMBOL_GPL(macvlan_common_newlink); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1525 | |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 1526 | static int macvlan_newlink(struct net *src_net, struct net_device *dev, |
Matthias Schiffer | 7a3f4a1 | 2017-06-25 23:55:59 +0200 | [diff] [blame] | 1527 | struct nlattr *tb[], struct nlattr *data[], |
| 1528 | struct netlink_ext_ack *extack) |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 1529 | { |
David Ahern | 42ab19e | 2017-10-04 17:48:47 -0700 | [diff] [blame] | 1530 | return macvlan_common_newlink(src_net, dev, tb, data, extack); |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 1531 | } |
| 1532 | |
| 1533 | void macvlan_dellink(struct net_device *dev, struct list_head *head) |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1534 | { |
| 1535 | struct macvlan_dev *vlan = netdev_priv(dev); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1536 | |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1537 | if (vlan->mode == MACVLAN_MODE_SOURCE) |
| 1538 | macvlan_flush_sources(vlan->port, vlan); |
Jiri Pirko | 233c7df | 2013-05-09 04:23:40 +0000 | [diff] [blame] | 1539 | list_del_rcu(&vlan->list); |
Thomas Karlsson | d4bff72 | 2020-12-02 19:49:58 +0100 | [diff] [blame] | 1540 | update_port_bc_queue_len(vlan->port); |
Eric Dumazet | 23289a3 | 2009-10-27 07:06:36 +0000 | [diff] [blame] | 1541 | unregister_netdevice_queue(dev, head); |
Jiri Pirko | 7cd43db | 2013-01-03 22:48:50 +0000 | [diff] [blame] | 1542 | netdev_upper_dev_unlink(vlan->lowerdev, dev); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1543 | } |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 1544 | EXPORT_SYMBOL_GPL(macvlan_dellink); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1545 | |
Arnd Bergmann | 27c0b1a | 2009-11-26 06:07:11 +0000 | [diff] [blame] | 1546 | static int macvlan_changelink(struct net_device *dev, |
Matthias Schiffer | ad744b2 | 2017-06-25 23:56:00 +0200 | [diff] [blame] | 1547 | struct nlattr *tb[], struct nlattr *data[], |
| 1548 | struct netlink_ext_ack *extack) |
Arnd Bergmann | 27c0b1a | 2009-11-26 06:07:11 +0000 | [diff] [blame] | 1549 | { |
| 1550 | struct macvlan_dev *vlan = netdev_priv(dev); |
Michael S. Tsirkin | 266e834 | 2013-08-01 13:43:19 +0300 | [diff] [blame] | 1551 | enum macvlan_mode mode; |
| 1552 | bool set_mode = false; |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1553 | enum macvlan_macaddr_mode macmode; |
| 1554 | int ret; |
Michael S. Tsirkin | 266e834 | 2013-08-01 13:43:19 +0300 | [diff] [blame] | 1555 | |
| 1556 | /* Validate mode, but don't set yet: setting flags may fail. */ |
| 1557 | if (data && data[IFLA_MACVLAN_MODE]) { |
| 1558 | set_mode = true; |
| 1559 | mode = nla_get_u32(data[IFLA_MACVLAN_MODE]); |
| 1560 | /* Passthrough mode can't be set or cleared dynamically */ |
| 1561 | if ((mode == MACVLAN_MODE_PASSTHRU) != |
| 1562 | (vlan->mode == MACVLAN_MODE_PASSTHRU)) |
| 1563 | return -EINVAL; |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1564 | if (vlan->mode == MACVLAN_MODE_SOURCE && |
| 1565 | vlan->mode != mode) |
| 1566 | macvlan_flush_sources(vlan->port, vlan); |
Michael S. Tsirkin | 266e834 | 2013-08-01 13:43:19 +0300 | [diff] [blame] | 1567 | } |
Michael S. Tsirkin | 99ffc3e7 | 2013-06-13 10:07:29 +0300 | [diff] [blame] | 1568 | |
John Fastabend | df8ef8f | 2012-04-15 06:44:37 +0000 | [diff] [blame] | 1569 | if (data && data[IFLA_MACVLAN_FLAGS]) { |
| 1570 | __u16 flags = nla_get_u16(data[IFLA_MACVLAN_FLAGS]); |
| 1571 | bool promisc = (flags ^ vlan->flags) & MACVLAN_FLAG_NOPROMISC; |
Vlad Yasevich | 43c2d57 | 2017-06-21 07:59:18 -0400 | [diff] [blame] | 1572 | if (macvlan_passthru(vlan->port) && promisc) { |
Michael S. Tsirkin | 99ffc3e7 | 2013-06-13 10:07:29 +0300 | [diff] [blame] | 1573 | int err; |
John Fastabend | df8ef8f | 2012-04-15 06:44:37 +0000 | [diff] [blame] | 1574 | |
Michael S. Tsirkin | 99ffc3e7 | 2013-06-13 10:07:29 +0300 | [diff] [blame] | 1575 | if (flags & MACVLAN_FLAG_NOPROMISC) |
| 1576 | err = dev_set_promiscuity(vlan->lowerdev, -1); |
| 1577 | else |
| 1578 | err = dev_set_promiscuity(vlan->lowerdev, 1); |
| 1579 | if (err < 0) |
| 1580 | return err; |
| 1581 | } |
John Fastabend | df8ef8f | 2012-04-15 06:44:37 +0000 | [diff] [blame] | 1582 | vlan->flags = flags; |
| 1583 | } |
Thomas Karlsson | d4bff72 | 2020-12-02 19:49:58 +0100 | [diff] [blame] | 1584 | |
| 1585 | if (data && data[IFLA_MACVLAN_BC_QUEUE_LEN]) { |
| 1586 | vlan->bc_queue_len_req = nla_get_u32(data[IFLA_MACVLAN_BC_QUEUE_LEN]); |
| 1587 | update_port_bc_queue_len(vlan->port); |
| 1588 | } |
| 1589 | |
Michael S. Tsirkin | 266e834 | 2013-08-01 13:43:19 +0300 | [diff] [blame] | 1590 | if (set_mode) |
| 1591 | vlan->mode = mode; |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1592 | if (data && data[IFLA_MACVLAN_MACADDR_MODE]) { |
| 1593 | if (vlan->mode != MACVLAN_MODE_SOURCE) |
| 1594 | return -EINVAL; |
| 1595 | macmode = nla_get_u32(data[IFLA_MACVLAN_MACADDR_MODE]); |
| 1596 | ret = macvlan_changelink_sources(vlan, macmode, data); |
| 1597 | if (ret) |
| 1598 | return ret; |
| 1599 | } |
Arnd Bergmann | 27c0b1a | 2009-11-26 06:07:11 +0000 | [diff] [blame] | 1600 | return 0; |
| 1601 | } |
| 1602 | |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1603 | static size_t macvlan_get_size_mac(const struct macvlan_dev *vlan) |
| 1604 | { |
| 1605 | if (vlan->macaddr_count == 0) |
| 1606 | return 0; |
| 1607 | return nla_total_size(0) /* IFLA_MACVLAN_MACADDR_DATA */ |
| 1608 | + vlan->macaddr_count * nla_total_size(sizeof(u8) * ETH_ALEN); |
| 1609 | } |
| 1610 | |
Arnd Bergmann | 27c0b1a | 2009-11-26 06:07:11 +0000 | [diff] [blame] | 1611 | static size_t macvlan_get_size(const struct net_device *dev) |
| 1612 | { |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1613 | struct macvlan_dev *vlan = netdev_priv(dev); |
| 1614 | |
Eric Dumazet | 01fe944 | 2013-01-17 13:30:49 -0800 | [diff] [blame] | 1615 | return (0 |
| 1616 | + nla_total_size(4) /* IFLA_MACVLAN_MODE */ |
| 1617 | + nla_total_size(2) /* IFLA_MACVLAN_FLAGS */ |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1618 | + nla_total_size(4) /* IFLA_MACVLAN_MACADDR_COUNT */ |
| 1619 | + macvlan_get_size_mac(vlan) /* IFLA_MACVLAN_MACADDR */ |
Thomas Karlsson | d4bff72 | 2020-12-02 19:49:58 +0100 | [diff] [blame] | 1620 | + nla_total_size(4) /* IFLA_MACVLAN_BC_QUEUE_LEN */ |
| 1621 | + nla_total_size(4) /* IFLA_MACVLAN_BC_QUEUE_LEN_USED */ |
Eric Dumazet | 01fe944 | 2013-01-17 13:30:49 -0800 | [diff] [blame] | 1622 | ); |
Arnd Bergmann | 27c0b1a | 2009-11-26 06:07:11 +0000 | [diff] [blame] | 1623 | } |
| 1624 | |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1625 | static int macvlan_fill_info_macaddr(struct sk_buff *skb, |
| 1626 | const struct macvlan_dev *vlan, |
| 1627 | const int i) |
| 1628 | { |
| 1629 | struct hlist_head *h = &vlan->port->vlan_source_hash[i]; |
| 1630 | struct macvlan_source_entry *entry; |
| 1631 | |
| 1632 | hlist_for_each_entry_rcu(entry, h, hlist) { |
| 1633 | if (entry->vlan != vlan) |
| 1634 | continue; |
| 1635 | if (nla_put(skb, IFLA_MACVLAN_MACADDR, ETH_ALEN, entry->addr)) |
| 1636 | return 1; |
| 1637 | } |
| 1638 | return 0; |
| 1639 | } |
| 1640 | |
Arnd Bergmann | 27c0b1a | 2009-11-26 06:07:11 +0000 | [diff] [blame] | 1641 | static int macvlan_fill_info(struct sk_buff *skb, |
| 1642 | const struct net_device *dev) |
| 1643 | { |
| 1644 | struct macvlan_dev *vlan = netdev_priv(dev); |
Thomas Karlsson | d4bff72 | 2020-12-02 19:49:58 +0100 | [diff] [blame] | 1645 | struct macvlan_port *port = vlan->port; |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1646 | int i; |
| 1647 | struct nlattr *nest; |
Arnd Bergmann | 27c0b1a | 2009-11-26 06:07:11 +0000 | [diff] [blame] | 1648 | |
David S. Miller | ead9a76 | 2012-04-01 20:23:06 -0400 | [diff] [blame] | 1649 | if (nla_put_u32(skb, IFLA_MACVLAN_MODE, vlan->mode)) |
| 1650 | goto nla_put_failure; |
John Fastabend | df8ef8f | 2012-04-15 06:44:37 +0000 | [diff] [blame] | 1651 | if (nla_put_u16(skb, IFLA_MACVLAN_FLAGS, vlan->flags)) |
| 1652 | goto nla_put_failure; |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1653 | if (nla_put_u32(skb, IFLA_MACVLAN_MACADDR_COUNT, vlan->macaddr_count)) |
| 1654 | goto nla_put_failure; |
| 1655 | if (vlan->macaddr_count > 0) { |
Michal Kubecek | ae0be8d | 2019-04-26 11:13:06 +0200 | [diff] [blame] | 1656 | nest = nla_nest_start_noflag(skb, IFLA_MACVLAN_MACADDR_DATA); |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1657 | if (nest == NULL) |
| 1658 | goto nla_put_failure; |
| 1659 | |
| 1660 | for (i = 0; i < MACVLAN_HASH_SIZE; i++) { |
| 1661 | if (macvlan_fill_info_macaddr(skb, vlan, i)) |
| 1662 | goto nla_put_failure; |
| 1663 | } |
| 1664 | nla_nest_end(skb, nest); |
| 1665 | } |
Thomas Karlsson | d4bff72 | 2020-12-02 19:49:58 +0100 | [diff] [blame] | 1666 | if (nla_put_u32(skb, IFLA_MACVLAN_BC_QUEUE_LEN, vlan->bc_queue_len_req)) |
| 1667 | goto nla_put_failure; |
| 1668 | if (nla_put_u32(skb, IFLA_MACVLAN_BC_QUEUE_LEN_USED, port->bc_queue_len_used)) |
| 1669 | goto nla_put_failure; |
Arnd Bergmann | 27c0b1a | 2009-11-26 06:07:11 +0000 | [diff] [blame] | 1670 | return 0; |
| 1671 | |
| 1672 | nla_put_failure: |
| 1673 | return -EMSGSIZE; |
| 1674 | } |
| 1675 | |
| 1676 | static const struct nla_policy macvlan_policy[IFLA_MACVLAN_MAX + 1] = { |
John Fastabend | df8ef8f | 2012-04-15 06:44:37 +0000 | [diff] [blame] | 1677 | [IFLA_MACVLAN_MODE] = { .type = NLA_U32 }, |
| 1678 | [IFLA_MACVLAN_FLAGS] = { .type = NLA_U16 }, |
Michael Braun | 79cf79a | 2014-09-25 16:31:08 +0200 | [diff] [blame] | 1679 | [IFLA_MACVLAN_MACADDR_MODE] = { .type = NLA_U32 }, |
| 1680 | [IFLA_MACVLAN_MACADDR] = { .type = NLA_BINARY, .len = MAX_ADDR_LEN }, |
| 1681 | [IFLA_MACVLAN_MACADDR_DATA] = { .type = NLA_NESTED }, |
| 1682 | [IFLA_MACVLAN_MACADDR_COUNT] = { .type = NLA_U32 }, |
Thomas Karlsson | d4bff72 | 2020-12-02 19:49:58 +0100 | [diff] [blame] | 1683 | [IFLA_MACVLAN_BC_QUEUE_LEN] = { .type = NLA_U32 }, |
| 1684 | [IFLA_MACVLAN_BC_QUEUE_LEN_USED] = { .type = NLA_REJECT }, |
Arnd Bergmann | 27c0b1a | 2009-11-26 06:07:11 +0000 | [diff] [blame] | 1685 | }; |
| 1686 | |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 1687 | int macvlan_link_register(struct rtnl_link_ops *ops) |
| 1688 | { |
| 1689 | /* common fields */ |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 1690 | ops->validate = macvlan_validate; |
| 1691 | ops->maxtype = IFLA_MACVLAN_MAX; |
| 1692 | ops->policy = macvlan_policy; |
| 1693 | ops->changelink = macvlan_changelink; |
| 1694 | ops->get_size = macvlan_get_size; |
| 1695 | ops->fill_info = macvlan_fill_info; |
| 1696 | |
| 1697 | return rtnl_link_register(ops); |
| 1698 | }; |
| 1699 | EXPORT_SYMBOL_GPL(macvlan_link_register); |
| 1700 | |
Nicolas Dichtel | eaca400 | 2015-01-20 15:15:45 +0100 | [diff] [blame] | 1701 | static struct net *macvlan_get_link_net(const struct net_device *dev) |
| 1702 | { |
| 1703 | return dev_net(macvlan_dev_real_dev(dev)); |
| 1704 | } |
| 1705 | |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 1706 | static struct rtnl_link_ops macvlan_link_ops = { |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1707 | .kind = "macvlan", |
Herbert Xu | 8a35747 | 2010-07-21 21:44:31 +0000 | [diff] [blame] | 1708 | .setup = macvlan_setup, |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1709 | .newlink = macvlan_newlink, |
| 1710 | .dellink = macvlan_dellink, |
Nicolas Dichtel | eaca400 | 2015-01-20 15:15:45 +0100 | [diff] [blame] | 1711 | .get_link_net = macvlan_get_link_net, |
Sainath Grandhi | 6fe3faf | 2017-02-10 16:03:49 -0800 | [diff] [blame] | 1712 | .priv_size = sizeof(struct macvlan_dev), |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1713 | }; |
| 1714 | |
Thomas Karlsson | d4bff72 | 2020-12-02 19:49:58 +0100 | [diff] [blame] | 1715 | static void update_port_bc_queue_len(struct macvlan_port *port) |
| 1716 | { |
| 1717 | u32 max_bc_queue_len_req = 0; |
| 1718 | struct macvlan_dev *vlan; |
| 1719 | |
| 1720 | list_for_each_entry(vlan, &port->vlans, list) { |
| 1721 | if (vlan->bc_queue_len_req > max_bc_queue_len_req) |
| 1722 | max_bc_queue_len_req = vlan->bc_queue_len_req; |
| 1723 | } |
| 1724 | port->bc_queue_len_used = max_bc_queue_len_req; |
| 1725 | } |
| 1726 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1727 | static int macvlan_device_event(struct notifier_block *unused, |
| 1728 | unsigned long event, void *ptr) |
| 1729 | { |
Jiri Pirko | 351638e | 2013-05-28 01:30:21 +0000 | [diff] [blame] | 1730 | struct net_device *dev = netdev_notifier_info_to_dev(ptr); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1731 | struct macvlan_dev *vlan, *next; |
| 1732 | struct macvlan_port *port; |
Eric Dumazet | 226bd34 | 2011-05-08 23:17:57 +0000 | [diff] [blame] | 1733 | LIST_HEAD(list_kill); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1734 | |
Julian Wiedmann | 913564f | 2019-01-31 10:48:10 +0100 | [diff] [blame] | 1735 | if (!netif_is_macvlan_port(dev)) |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1736 | return NOTIFY_DONE; |
| 1737 | |
Eric Dumazet | e052f7e | 2013-03-30 10:08:44 +0000 | [diff] [blame] | 1738 | port = macvlan_port_get_rtnl(dev); |
Jiri Pirko | a35e2c1 | 2010-06-15 03:27:57 +0000 | [diff] [blame] | 1739 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1740 | switch (event) { |
Nikolay Aleksandrov | de7d244 | 2016-01-27 17:50:43 +0100 | [diff] [blame] | 1741 | case NETDEV_UP: |
Travis Brown | 80fd2d6 | 2018-07-10 00:35:01 +0000 | [diff] [blame] | 1742 | case NETDEV_DOWN: |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1743 | case NETDEV_CHANGE: |
| 1744 | list_for_each_entry(vlan, &port->vlans, list) |
Patrick Mullaney | fc4a748 | 2009-12-03 15:59:22 -0800 | [diff] [blame] | 1745 | netif_stacked_transfer_operstate(vlan->lowerdev, |
| 1746 | vlan->dev); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1747 | break; |
| 1748 | case NETDEV_FEAT_CHANGE: |
| 1749 | list_for_each_entry(vlan, &port->vlans, list) { |
Eric Dumazet | 4b66d21 | 2021-11-19 07:43:31 -0800 | [diff] [blame] | 1750 | netif_set_gso_max_size(vlan->dev, dev->gso_max_size); |
Eric Dumazet | 6d872df | 2021-11-19 07:43:32 -0800 | [diff] [blame] | 1751 | netif_set_gso_max_segs(vlan->dev, dev->gso_max_segs); |
Florian Westphal | 797f87f | 2013-12-26 12:17:00 +0100 | [diff] [blame] | 1752 | netdev_update_features(vlan->dev); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1753 | } |
| 1754 | break; |
dingtianhong | 3763e7e | 2014-05-13 14:39:27 +0800 | [diff] [blame] | 1755 | case NETDEV_CHANGEMTU: |
| 1756 | list_for_each_entry(vlan, &port->vlans, list) { |
| 1757 | if (vlan->dev->mtu <= dev->mtu) |
| 1758 | continue; |
| 1759 | dev_set_mtu(vlan->dev, dev->mtu); |
| 1760 | } |
| 1761 | break; |
dingtianhong | e289fd2 | 2014-05-30 14:32:49 +0800 | [diff] [blame] | 1762 | case NETDEV_CHANGEADDR: |
Vlad Yasevich | 43c2d57 | 2017-06-21 07:59:18 -0400 | [diff] [blame] | 1763 | if (!macvlan_passthru(port)) |
dingtianhong | e289fd2 | 2014-05-30 14:32:49 +0800 | [diff] [blame] | 1764 | return NOTIFY_DONE; |
| 1765 | |
| 1766 | vlan = list_first_entry_or_null(&port->vlans, |
| 1767 | struct macvlan_dev, |
| 1768 | list); |
| 1769 | |
Taehee Yoo | 4dee15b | 2020-04-20 13:29:40 +0000 | [diff] [blame] | 1770 | if (vlan && macvlan_sync_address(vlan->dev, dev->dev_addr)) |
dingtianhong | e289fd2 | 2014-05-30 14:32:49 +0800 | [diff] [blame] | 1771 | return NOTIFY_BAD; |
| 1772 | |
| 1773 | break; |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1774 | case NETDEV_UNREGISTER: |
David Lamparter | 3b27e10 | 2010-09-17 03:22:19 +0000 | [diff] [blame] | 1775 | /* twiddle thumbs on netns device moves */ |
| 1776 | if (dev->reg_state != NETREG_UNREGISTERING) |
| 1777 | break; |
| 1778 | |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1779 | list_for_each_entry_safe(vlan, next, &port->vlans, list) |
Eric Dumazet | 226bd34 | 2011-05-08 23:17:57 +0000 | [diff] [blame] | 1780 | vlan->dev->rtnl_link_ops->dellink(vlan->dev, &list_kill); |
| 1781 | unregister_netdevice_many(&list_kill); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1782 | break; |
Jiri Pirko | 1c01fe1 | 2010-03-10 10:30:19 +0000 | [diff] [blame] | 1783 | case NETDEV_PRE_TYPE_CHANGE: |
Zheng Yongjun | 26d3f69 | 2021-06-01 22:16:10 +0800 | [diff] [blame] | 1784 | /* Forbid underlying device to change its type. */ |
Jiri Pirko | 1c01fe1 | 2010-03-10 10:30:19 +0000 | [diff] [blame] | 1785 | return NOTIFY_BAD; |
Vlad Yasevich | 4c99125 | 2014-06-04 16:23:37 -0400 | [diff] [blame] | 1786 | |
| 1787 | case NETDEV_NOTIFY_PEERS: |
| 1788 | case NETDEV_BONDING_FAILOVER: |
| 1789 | case NETDEV_RESEND_IGMP: |
| 1790 | /* Propagate to all vlans */ |
| 1791 | list_for_each_entry(vlan, &port->vlans, list) |
| 1792 | call_netdevice_notifiers(event, vlan->dev); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1793 | } |
| 1794 | return NOTIFY_DONE; |
| 1795 | } |
| 1796 | |
| 1797 | static struct notifier_block macvlan_notifier_block __read_mostly = { |
| 1798 | .notifier_call = macvlan_device_event, |
| 1799 | }; |
| 1800 | |
| 1801 | static int __init macvlan_init_module(void) |
| 1802 | { |
| 1803 | int err; |
| 1804 | |
| 1805 | register_netdevice_notifier(&macvlan_notifier_block); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1806 | |
Arnd Bergmann | fc0663d | 2010-01-30 12:23:40 +0000 | [diff] [blame] | 1807 | err = macvlan_link_register(&macvlan_link_ops); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1808 | if (err < 0) |
| 1809 | goto err1; |
| 1810 | return 0; |
| 1811 | err1: |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1812 | unregister_netdevice_notifier(&macvlan_notifier_block); |
| 1813 | return err; |
| 1814 | } |
| 1815 | |
| 1816 | static void __exit macvlan_cleanup_module(void) |
| 1817 | { |
| 1818 | rtnl_link_unregister(&macvlan_link_ops); |
Patrick McHardy | b863ceb | 2007-07-14 18:55:06 -0700 | [diff] [blame] | 1819 | unregister_netdevice_notifier(&macvlan_notifier_block); |
| 1820 | } |
| 1821 | |
| 1822 | module_init(macvlan_init_module); |
| 1823 | module_exit(macvlan_cleanup_module); |
| 1824 | |
| 1825 | MODULE_LICENSE("GPL"); |
| 1826 | MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>"); |
| 1827 | MODULE_DESCRIPTION("Driver for MAC address based VLANs"); |
| 1828 | MODULE_ALIAS_RTNL_LINK("macvlan"); |