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