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