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