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