blob: f6fbcc0f1af9e8694f8c55a5f277bc79d2f86539 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* -*- linux-c -*-
2 * INET 802.1Q VLAN
3 * Ethernet-type device handling.
4 *
5 * Authors: Ben Greear <greearb@candelatech.com>
Patrick McHardyad712082008-01-21 00:27:00 -08006 * Please send support related email to: netdev@vger.kernel.org
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * VLAN Home Page: http://www.candelatech.com/~greear/vlan.html
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +09008 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Fixes: Mar 22 2001: Martin Bokaemper <mbokaemper@unispherenetworks.com>
10 * - reset skb->pkt_type on incoming packets when MAC was changed
11 * - see that changed MAC is saddr for outgoing packets
12 * Oct 20, 2001: Ard van Breeman:
13 * - Fix MC-list, finally.
14 * - Flush MC-list on VLAN destroy.
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +090015 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 *
17 * This program is free software; you can redistribute it and/or
18 * modify it under the terms of the GNU General Public License
19 * as published by the Free Software Foundation; either version
20 * 2 of the License, or (at your option) any later version.
21 */
22
23#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090024#include <linux/slab.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/skbuff.h>
26#include <linux/netdevice.h>
27#include <linux/etherdevice.h>
Patrick McHardy75b88462008-07-08 03:22:42 -070028#include <linux/ethtool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <net/arp.h>
30
31#include "vlan.h"
32#include "vlanproc.h"
33#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35/*
36 * Rebuild the Ethernet MAC header. This is called after an ARP
37 * (or in future other address resolution) has completed on this
38 * sk_buff. We now let ARP fill in the other fields.
39 *
40 * This routine CANNOT use cached dst->neigh!
41 * Really, it is used only when dst->neigh is wrong.
42 *
43 * TODO: This needs a checkup, I'm ignorant here. --BLG
44 */
Patrick McHardyef3eb3e2008-01-21 00:22:11 -080045static int vlan_dev_rebuild_header(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070046{
47 struct net_device *dev = skb->dev;
48 struct vlan_ethhdr *veth = (struct vlan_ethhdr *)(skb->data);
49
50 switch (veth->h_vlan_encapsulated_proto) {
51#ifdef CONFIG_INET
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -070052 case htons(ETH_P_IP):
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
54 /* TODO: Confirm this will work with VLAN headers... */
55 return arp_find(veth->h_dest, skb);
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +090056#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070057 default:
Patrick McHardy40f98e12008-01-21 00:24:30 -080058 pr_debug("%s: unable to resolve type %X addresses.\n",
59 dev->name, ntohs(veth->h_vlan_encapsulated_proto));
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +090060
Linus Torvalds1da177e2005-04-16 15:20:36 -070061 memcpy(veth->h_source, dev->dev_addr, ETH_ALEN);
62 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070063 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
65 return 0;
66}
67
68static inline struct sk_buff *vlan_check_reorder_header(struct sk_buff *skb)
69{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -080070 if (vlan_dev_info(skb->dev)->flags & VLAN_FLAG_REORDER_HDR) {
Patrick McHardy11a100f2008-07-08 15:36:57 -070071 if (skb_cow(skb, skb_headroom(skb)) < 0)
72 skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 if (skb) {
74 /* Lifted from Gleb's VLAN code... */
75 memmove(skb->data - ETH_HLEN,
76 skb->data - VLAN_ETH_HLEN, 12);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -070077 skb->mac_header += VLAN_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 }
79 }
80
81 return skb;
82}
83
Pavel Emelyanov91b4f952008-01-21 00:28:03 -080084static inline void vlan_set_encap_proto(struct sk_buff *skb,
85 struct vlan_hdr *vhdr)
86{
87 __be16 proto;
88 unsigned char *rawp;
89
90 /*
91 * Was a VLAN packet, grab the encapsulated protocol, which the layer
92 * three protocols care about.
93 */
94
95 proto = vhdr->h_vlan_encapsulated_proto;
96 if (ntohs(proto) >= 1536) {
97 skb->protocol = proto;
98 return;
99 }
100
101 rawp = skb->data;
102 if (*(unsigned short *)rawp == 0xFFFF)
103 /*
104 * This is a magic hack to spot IPX packets. Older Novell
105 * breaks the protocol design and runs IPX over 802.3 without
106 * an 802.2 LLC layer. We look for FFFF which isn't a used
107 * 802.2 SSAP/DSAP. This won't work for fault tolerant netware
108 * but does for the rest.
109 */
110 skb->protocol = htons(ETH_P_802_3);
111 else
112 /*
113 * Real 802.2 LLC
114 */
115 skb->protocol = htons(ETH_P_802_2);
116}
117
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118/*
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900119 * Determine the packet's protocol ID. The rule here is that we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120 * assume 802.3 if the type field is short enough to be a length.
121 * This is normal practice and works for any 'now in use' protocol.
122 *
123 * Also, at this point we assume that we ARE dealing exclusively with
124 * VLAN packets, or packets that should be made into VLAN packets based
125 * on a default VLAN ID.
126 *
127 * NOTE: Should be similar to ethernet/eth.c.
128 *
129 * SANITY NOTE: This method is called when a packet is moving up the stack
130 * towards userland. To get here, it would have already passed
131 * through the ethernet/eth.c eth_type_trans() method.
132 * SANITY NOTE 2: We are referencing to the VLAN_HDR frields, which MAY be
133 * stored UNALIGNED in the memory. RISC systems don't like
134 * such cases very much...
Patrick McHardy2029cc22008-01-21 00:26:41 -0800135 * SANITY NOTE 2a: According to Dave Miller & Alexey, it will always be
136 * aligned, so there doesn't need to be any of the unaligned
137 * stuff. It has been commented out now... --Ben
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 *
139 */
140int vlan_skb_recv(struct sk_buff *skb, struct net_device *dev,
Patrick McHardy2029cc22008-01-21 00:26:41 -0800141 struct packet_type *ptype, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700143 struct vlan_hdr *vhdr;
Eric Dumazet97932412009-11-17 04:53:09 +0000144 struct vlan_rx_stats *rx_stats;
Pedro Garciaad1afb02010-07-18 15:38:44 -0700145 struct net_device *vlan_dev;
Patrick McHardy9bb85822008-07-08 03:24:44 -0700146 u16 vlan_id;
147 u16 vlan_tci;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148
Patrick McHardy2029cc22008-01-21 00:26:41 -0800149 skb = skb_share_check(skb, GFP_ATOMIC);
150 if (skb == NULL)
Patrick McHardy31ffdbcb2008-01-21 00:27:18 -0800151 goto err_free;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700152
Patrick McHardy31ffdbcb2008-01-21 00:27:18 -0800153 if (unlikely(!pskb_may_pull(skb, VLAN_HLEN)))
154 goto err_free;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700155
Patrick McHardy31ffdbcb2008-01-21 00:27:18 -0800156 vhdr = (struct vlan_hdr *)skb->data;
Patrick McHardy9bb85822008-07-08 03:24:44 -0700157 vlan_tci = ntohs(vhdr->h_vlan_TCI);
158 vlan_id = vlan_tci & VLAN_VID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 rcu_read_lock();
Pedro Garciaad1afb02010-07-18 15:38:44 -0700161 vlan_dev = __find_vlan_dev(dev, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162
Pedro Garciaad1afb02010-07-18 15:38:44 -0700163 /* If the VLAN device is defined, we use it.
164 * If not, and the VID is 0, it is a 802.1p packet (not
165 * really a VLAN), so we will just netif_rx it later to the
166 * original interface, but with the skb->proto set to the
167 * wrapped proto: we do nothing here.
168 */
169
170 if (!vlan_dev) {
171 if (vlan_id) {
172 pr_debug("%s: ERROR: No net_device for VID: %u on dev: %s\n",
173 __func__, vlan_id, dev->name);
174 goto err_unlock;
175 }
176 rx_stats = NULL;
177 } else {
178 skb->dev = vlan_dev;
179
Eric Dumazetaf5ef242010-09-26 22:47:09 +0000180 rx_stats = this_cpu_ptr(vlan_dev_info(skb->dev)->vlan_rx_stats);
181
Pedro Garciaad1afb02010-07-18 15:38:44 -0700182 u64_stats_update_begin(&rx_stats->syncp);
183 rx_stats->rx_packets++;
184 rx_stats->rx_bytes += skb->len;
185
186 skb->priority = vlan_get_ingress_priority(skb->dev, vlan_tci);
187
188 pr_debug("%s: priority: %u for TCI: %hu\n",
189 __func__, skb->priority, vlan_tci);
190
191 switch (skb->pkt_type) {
192 case PACKET_BROADCAST:
193 /* Yeah, stats collect these together.. */
194 /* stats->broadcast ++; // no such counter :-( */
195 break;
196
197 case PACKET_MULTICAST:
198 rx_stats->rx_multicast++;
199 break;
200
201 case PACKET_OTHERHOST:
202 /* Our lower layer thinks this is not local, let's make
203 * sure.
204 * This allows the VLAN to have a different MAC than the
205 * underlying device, and still route correctly.
206 */
207 if (!compare_ether_addr(eth_hdr(skb)->h_dest,
208 skb->dev->dev_addr))
209 skb->pkt_type = PACKET_HOST;
210 break;
211 default:
212 break;
213 }
214 u64_stats_update_end(&rx_stats->syncp);
215 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Herbert Xucbb042f2006-03-20 22:43:56 -0800217 skb_pull_rcsum(skb, VLAN_HLEN);
Pavel Emelyanov91b4f952008-01-21 00:28:03 -0800218 vlan_set_encap_proto(skb, vhdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219
Pedro Garciaad1afb02010-07-18 15:38:44 -0700220 if (vlan_dev) {
221 skb = vlan_check_reorder_header(skb);
222 if (!skb) {
223 rx_stats->rx_errors++;
224 goto err_unlock;
225 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226 }
Patrick McHardy31ffdbcb2008-01-21 00:27:18 -0800227
Eric Dumazet8990f462010-09-20 00:12:11 +0000228 if (unlikely(netif_rx(skb) == NET_RX_DROP)) {
229 if (rx_stats)
230 rx_stats->rx_dropped++;
231 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232 rcu_read_unlock();
Patrick McHardy31ffdbcb2008-01-21 00:27:18 -0800233 return NET_RX_SUCCESS;
234
235err_unlock:
236 rcu_read_unlock();
237err_free:
238 kfree_skb(skb);
239 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
241
Patrick McHardy9bb85822008-07-08 03:24:44 -0700242static inline u16
Patrick McHardy2029cc22008-01-21 00:26:41 -0800243vlan_dev_get_egress_qos_mask(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Patrick McHardy2029cc22008-01-21 00:26:41 -0800245 struct vlan_priority_tci_mapping *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Patrick McHardy2029cc22008-01-21 00:26:41 -0800247 mp = vlan_dev_info(dev)->egress_priority_map[(skb->priority & 0xF)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 while (mp) {
249 if (mp->priority == skb->priority) {
Patrick McHardy2029cc22008-01-21 00:26:41 -0800250 return mp->vlan_qos; /* This should already be shifted
251 * to mask correctly with the
252 * VLAN's TCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 }
254 mp = mp->next;
255 }
256 return 0;
257}
258
259/*
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900260 * Create the VLAN header for an arbitrary protocol layer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 *
262 * saddr=NULL means use device source address
263 * daddr=NULL means leave destination address (eg unresolved arp)
264 *
265 * This is called when the SKB is moving down the stack towards the
266 * physical devices.
267 */
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800268static int vlan_dev_hard_header(struct sk_buff *skb, struct net_device *dev,
269 unsigned short type,
270 const void *daddr, const void *saddr,
271 unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272{
273 struct vlan_hdr *vhdr;
Patrick McHardy1349fe92008-07-14 22:51:19 -0700274 unsigned int vhdrlen = 0;
Patrick McHardy9bb85822008-07-08 03:24:44 -0700275 u16 vlan_tci = 0;
Patrick McHardy1349fe92008-07-14 22:51:19 -0700276 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
Patrick McHardy11a100f2008-07-08 15:36:57 -0700278 if (WARN_ON(skb_headroom(skb) < dev->hard_header_len))
279 return -ENOSPC;
280
Patrick McHardy1349fe92008-07-14 22:51:19 -0700281 if (!(vlan_dev_info(dev)->flags & VLAN_FLAG_REORDER_HDR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 vhdr = (struct vlan_hdr *) skb_push(skb, VLAN_HLEN);
283
Patrick McHardy9bb85822008-07-08 03:24:44 -0700284 vlan_tci = vlan_dev_info(dev)->vlan_id;
285 vlan_tci |= vlan_dev_get_egress_qos_mask(dev, skb);
Patrick McHardy9bb85822008-07-08 03:24:44 -0700286 vhdr->h_vlan_TCI = htons(vlan_tci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 /*
Octavian Purdilabf9ae532009-12-26 11:50:59 +0000289 * Set the protocol type. For a packet of type ETH_P_802_3/2 we
290 * put the length in here instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 */
Octavian Purdilabf9ae532009-12-26 11:50:59 +0000292 if (type != ETH_P_802_3 && type != ETH_P_802_2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 vhdr->h_vlan_encapsulated_proto = htons(type);
Patrick McHardy2029cc22008-01-21 00:26:41 -0800294 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 vhdr->h_vlan_encapsulated_proto = htons(len);
Jerome Borsboom279e1722007-04-13 16:12:47 -0700296
297 skb->protocol = htons(ETH_P_8021Q);
Patrick McHardy1349fe92008-07-14 22:51:19 -0700298 type = ETH_P_8021Q;
299 vhdrlen = VLAN_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 }
301
302 /* Before delegating work to the lower layer, enter our MAC-address */
303 if (saddr == NULL)
304 saddr = dev->dev_addr;
305
Patrick McHardy1349fe92008-07-14 22:51:19 -0700306 /* Now make the underlying real hard header */
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800307 dev = vlan_dev_info(dev)->real_dev;
Patrick McHardy1349fe92008-07-14 22:51:19 -0700308 rc = dev_hard_header(skb, dev, type, daddr, saddr, len + vhdrlen);
309 if (rc > 0)
310 rc += vhdrlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311 return rc;
312}
313
Stephen Hemminger6fef4c02009-08-31 19:50:41 +0000314static netdev_tx_t vlan_dev_hard_start_xmit(struct sk_buff *skb,
315 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316{
Eric Dumazet2f8bc322009-09-03 02:19:58 -0700317 int i = skb_get_queue_mapping(skb);
318 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319 struct vlan_ethhdr *veth = (struct vlan_ethhdr *)(skb->data);
Eric Dumazet1a123a32009-09-03 00:39:16 +0000320 unsigned int len;
321 int ret;
David S. Miller55b01e82008-02-23 20:09:11 -0800322
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 /* Handle non-VLAN frames if they are sent to us, for example by DHCP.
324 *
325 * NOTE: THIS ASSUMES DIX ETHERNET, SPECIFICALLY NOT SUPPORTING
326 * OTHER THINGS LIKE FDDI/TokenRing/802.3 SNAPs...
327 */
Joonwoo Park6ab3b482007-11-29 22:16:41 +1100328 if (veth->h_vlan_proto != htons(ETH_P_8021Q) ||
Patrick McHardyd80aa312008-07-14 22:51:39 -0700329 vlan_dev_info(dev)->flags & VLAN_FLAG_REORDER_HDR) {
330 unsigned int orig_headroom = skb_headroom(skb);
Patrick McHardy9bb85822008-07-08 03:24:44 -0700331 u16 vlan_tci;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800333 vlan_dev_info(dev)->cnt_encap_on_xmit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
Patrick McHardy9bb85822008-07-08 03:24:44 -0700335 vlan_tci = vlan_dev_info(dev)->vlan_id;
336 vlan_tci |= vlan_dev_get_egress_qos_mask(dev, skb);
Patrick McHardy9bb85822008-07-08 03:24:44 -0700337 skb = __vlan_put_tag(skb, vlan_tci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 if (!skb) {
Eric Dumazet450c4ea2009-05-18 00:35:38 +0000339 txq->tx_dropped++;
Patrick McHardyd80aa312008-07-14 22:51:39 -0700340 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
342
Patrick McHardy2029cc22008-01-21 00:26:41 -0800343 if (orig_headroom < VLAN_HLEN)
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800344 vlan_dev_info(dev)->cnt_inc_headroom_on_tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 }
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347
Arnd Bergmann8a83a002010-01-30 12:23:03 +0000348 skb_set_dev(skb, vlan_dev_info(dev)->real_dev);
Eric Dumazet1a123a32009-09-03 00:39:16 +0000349 len = skb->len;
350 ret = dev_queue_xmit(skb);
351
Eric Dumazet2d6c9ff2010-05-10 04:51:02 +0000352 if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
Eric Dumazet1a123a32009-09-03 00:39:16 +0000353 txq->tx_packets++;
354 txq->tx_bytes += len;
355 } else
356 txq->tx_dropped++;
357
Patrick McHardycbbef5e2009-11-10 06:14:24 +0000358 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359}
360
Stephen Hemminger6fef4c02009-08-31 19:50:41 +0000361static netdev_tx_t vlan_dev_hwaccel_hard_start_xmit(struct sk_buff *skb,
362 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{
Eric Dumazet2f8bc322009-09-03 02:19:58 -0700364 int i = skb_get_queue_mapping(skb);
365 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
Patrick McHardy9bb85822008-07-08 03:24:44 -0700366 u16 vlan_tci;
Eric Dumazet1a123a32009-09-03 00:39:16 +0000367 unsigned int len;
368 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369
Patrick McHardy9bb85822008-07-08 03:24:44 -0700370 vlan_tci = vlan_dev_info(dev)->vlan_id;
371 vlan_tci |= vlan_dev_get_egress_qos_mask(dev, skb);
372 skb = __vlan_hwaccel_put_tag(skb, vlan_tci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800374 skb->dev = vlan_dev_info(dev)->real_dev;
Eric Dumazet1a123a32009-09-03 00:39:16 +0000375 len = skb->len;
376 ret = dev_queue_xmit(skb);
377
Eric Dumazet2d6c9ff2010-05-10 04:51:02 +0000378 if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
Eric Dumazet1a123a32009-09-03 00:39:16 +0000379 txq->tx_packets++;
380 txq->tx_bytes += len;
381 } else
382 txq->tx_dropped++;
383
Patrick McHardycbbef5e2009-11-10 06:14:24 +0000384 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385}
386
Vasu Dev669d3e02010-03-23 14:41:45 +0000387static u16 vlan_dev_select_queue(struct net_device *dev, struct sk_buff *skb)
388{
389 struct net_device *rdev = vlan_dev_info(dev)->real_dev;
390 const struct net_device_ops *ops = rdev->netdev_ops;
391
392 return ops->ndo_select_queue(rdev, skb);
393}
394
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800395static int vlan_dev_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396{
397 /* TODO: gotta make sure the underlying layer can handle it,
398 * maybe an IFF_VLAN_CAPABLE flag for devices?
399 */
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800400 if (vlan_dev_info(dev)->real_dev->mtu < new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return -ERANGE;
402
403 dev->mtu = new_mtu;
404
405 return 0;
406}
407
Patrick McHardyc17d8872007-06-13 12:05:22 -0700408void vlan_dev_set_ingress_priority(const struct net_device *dev,
Patrick McHardy9bb85822008-07-08 03:24:44 -0700409 u32 skb_prio, u16 vlan_prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800411 struct vlan_dev_info *vlan = vlan_dev_info(dev);
Patrick McHardyb020cb42007-06-13 12:07:22 -0700412
413 if (vlan->ingress_priority_map[vlan_prio & 0x7] && !skb_prio)
414 vlan->nr_ingress_mappings--;
415 else if (!vlan->ingress_priority_map[vlan_prio & 0x7] && skb_prio)
416 vlan->nr_ingress_mappings++;
417
418 vlan->ingress_priority_map[vlan_prio & 0x7] = skb_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419}
420
Patrick McHardyc17d8872007-06-13 12:05:22 -0700421int vlan_dev_set_egress_priority(const struct net_device *dev,
Patrick McHardy9bb85822008-07-08 03:24:44 -0700422 u32 skb_prio, u16 vlan_prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800424 struct vlan_dev_info *vlan = vlan_dev_info(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425 struct vlan_priority_tci_mapping *mp = NULL;
426 struct vlan_priority_tci_mapping *np;
Eric Dumazet05423b22009-10-26 18:40:35 -0700427 u32 vlan_qos = (vlan_prio << VLAN_PRIO_SHIFT) & VLAN_PRIO_MASK;
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900428
Patrick McHardyc17d8872007-06-13 12:05:22 -0700429 /* See if a priority mapping exists.. */
Patrick McHardyb020cb42007-06-13 12:07:22 -0700430 mp = vlan->egress_priority_map[skb_prio & 0xF];
Patrick McHardyc17d8872007-06-13 12:05:22 -0700431 while (mp) {
432 if (mp->priority == skb_prio) {
Patrick McHardyb020cb42007-06-13 12:07:22 -0700433 if (mp->vlan_qos && !vlan_qos)
434 vlan->nr_egress_mappings--;
435 else if (!mp->vlan_qos && vlan_qos)
436 vlan->nr_egress_mappings++;
437 mp->vlan_qos = vlan_qos;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700438 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 }
Patrick McHardyc17d8872007-06-13 12:05:22 -0700440 mp = mp->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 }
Patrick McHardyc17d8872007-06-13 12:05:22 -0700442
443 /* Create a new mapping then. */
Patrick McHardyb020cb42007-06-13 12:07:22 -0700444 mp = vlan->egress_priority_map[skb_prio & 0xF];
Patrick McHardyc17d8872007-06-13 12:05:22 -0700445 np = kmalloc(sizeof(struct vlan_priority_tci_mapping), GFP_KERNEL);
446 if (!np)
447 return -ENOBUFS;
448
449 np->next = mp;
450 np->priority = skb_prio;
Patrick McHardyb020cb42007-06-13 12:07:22 -0700451 np->vlan_qos = vlan_qos;
452 vlan->egress_priority_map[skb_prio & 0xF] = np;
453 if (vlan_qos)
454 vlan->nr_egress_mappings++;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700455 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456}
457
Patrick McHardya4bf3af42007-06-13 12:07:37 -0700458/* Flags are defined in the vlan_flags enum in include/linux/if_vlan.h file. */
Patrick McHardyb3ce0322008-07-05 21:26:27 -0700459int vlan_dev_change_flags(const struct net_device *dev, u32 flags, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Patrick McHardyb3ce0322008-07-05 21:26:27 -0700461 struct vlan_dev_info *vlan = vlan_dev_info(dev);
462 u32 old_flags = vlan->flags;
463
Patrick McHardy5e756592009-11-25 07:54:54 +0000464 if (mask & ~(VLAN_FLAG_REORDER_HDR | VLAN_FLAG_GVRP |
465 VLAN_FLAG_LOOSE_BINDING))
Patrick McHardyb3ce0322008-07-05 21:26:27 -0700466 return -EINVAL;
467
468 vlan->flags = (old_flags & ~mask) | (flags & mask);
Patrick McHardy70c03b42008-07-05 21:26:57 -0700469
470 if (netif_running(dev) && (vlan->flags ^ old_flags) & VLAN_FLAG_GVRP) {
471 if (vlan->flags & VLAN_FLAG_GVRP)
472 vlan_gvrp_request_join(dev);
473 else
474 vlan_gvrp_request_leave(dev);
475 }
Patrick McHardyb3ce0322008-07-05 21:26:27 -0700476 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477}
478
Patrick McHardyc17d8872007-06-13 12:05:22 -0700479void vlan_dev_get_realdev_name(const struct net_device *dev, char *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800481 strncpy(result, vlan_dev_info(dev)->real_dev->name, 23);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482}
483
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800484static int vlan_dev_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800486 struct vlan_dev_info *vlan = vlan_dev_info(dev);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700487 struct net_device *real_dev = vlan->real_dev;
488 int err;
489
Patrick McHardy5e756592009-11-25 07:54:54 +0000490 if (!(real_dev->flags & IFF_UP) &&
491 !(vlan->flags & VLAN_FLAG_LOOSE_BINDING))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 return -ENETDOWN;
493
Patrick McHardy8c979c22007-07-11 19:45:24 -0700494 if (compare_ether_addr(dev->dev_addr, real_dev->dev_addr)) {
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000495 err = dev_uc_add(real_dev, dev->dev_addr);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700496 if (err < 0)
Wang Chen89146502008-07-14 20:59:03 -0700497 goto out;
Patrick McHardy8c979c22007-07-11 19:45:24 -0700498 }
Patrick McHardy8c979c22007-07-11 19:45:24 -0700499
Wang Chen89146502008-07-14 20:59:03 -0700500 if (dev->flags & IFF_ALLMULTI) {
501 err = dev_set_allmulti(real_dev, 1);
502 if (err < 0)
503 goto del_unicast;
504 }
505 if (dev->flags & IFF_PROMISC) {
506 err = dev_set_promiscuity(real_dev, 1);
507 if (err < 0)
508 goto clear_allmulti;
509 }
510
511 memcpy(vlan->real_dev_addr, real_dev->dev_addr, ETH_ALEN);
Patrick McHardy6c78dcb2007-07-14 18:52:56 -0700512
Patrick McHardy70c03b42008-07-05 21:26:57 -0700513 if (vlan->flags & VLAN_FLAG_GVRP)
514 vlan_gvrp_request_join(dev);
515
Phil Oester0ac820e2010-08-17 18:45:08 +0000516 if (netif_carrier_ok(real_dev))
517 netif_carrier_on(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 return 0;
Wang Chen89146502008-07-14 20:59:03 -0700519
520clear_allmulti:
521 if (dev->flags & IFF_ALLMULTI)
522 dev_set_allmulti(real_dev, -1);
523del_unicast:
524 if (compare_ether_addr(dev->dev_addr, real_dev->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000525 dev_uc_del(real_dev, dev->dev_addr);
Wang Chen89146502008-07-14 20:59:03 -0700526out:
Jay Vosburghadc667e2009-04-25 18:03:35 -0700527 netif_carrier_off(dev);
Wang Chen89146502008-07-14 20:59:03 -0700528 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529}
530
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800531static int vlan_dev_stop(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532{
Patrick McHardy70c03b42008-07-05 21:26:57 -0700533 struct vlan_dev_info *vlan = vlan_dev_info(dev);
534 struct net_device *real_dev = vlan->real_dev;
535
536 if (vlan->flags & VLAN_FLAG_GVRP)
537 vlan_gvrp_request_leave(dev);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700538
Patrick McHardy56addd62007-07-14 18:53:28 -0700539 dev_mc_unsync(real_dev, dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000540 dev_uc_unsync(real_dev, dev);
Patrick McHardy6c78dcb2007-07-14 18:52:56 -0700541 if (dev->flags & IFF_ALLMULTI)
542 dev_set_allmulti(real_dev, -1);
543 if (dev->flags & IFF_PROMISC)
544 dev_set_promiscuity(real_dev, -1);
545
Patrick McHardy8c979c22007-07-11 19:45:24 -0700546 if (compare_ether_addr(dev->dev_addr, real_dev->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000547 dev_uc_del(real_dev, dev->dev_addr);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700548
Jay Vosburghadc667e2009-04-25 18:03:35 -0700549 netif_carrier_off(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 return 0;
551}
552
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800553static int vlan_dev_set_mac_address(struct net_device *dev, void *p)
Patrick McHardy39aaac12007-11-10 21:52:35 -0800554{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800555 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
Patrick McHardy39aaac12007-11-10 21:52:35 -0800556 struct sockaddr *addr = p;
557 int err;
558
559 if (!is_valid_ether_addr(addr->sa_data))
560 return -EADDRNOTAVAIL;
561
562 if (!(dev->flags & IFF_UP))
563 goto out;
564
565 if (compare_ether_addr(addr->sa_data, real_dev->dev_addr)) {
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000566 err = dev_uc_add(real_dev, addr->sa_data);
Patrick McHardy39aaac12007-11-10 21:52:35 -0800567 if (err < 0)
568 return err;
569 }
570
571 if (compare_ether_addr(dev->dev_addr, real_dev->dev_addr))
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000572 dev_uc_del(real_dev, dev->dev_addr);
Patrick McHardy39aaac12007-11-10 21:52:35 -0800573
574out:
575 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
576 return 0;
577}
578
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800579static int vlan_dev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800581 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
Stephen Hemminger656299f2008-11-19 21:53:47 -0800582 const struct net_device_ops *ops = real_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 struct ifreq ifrr;
584 int err = -EOPNOTSUPP;
585
586 strncpy(ifrr.ifr_name, real_dev->name, IFNAMSIZ);
587 ifrr.ifr_ifru = ifr->ifr_ifru;
588
Patrick McHardy2029cc22008-01-21 00:26:41 -0800589 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 case SIOCGMIIPHY:
591 case SIOCGMIIREG:
592 case SIOCSMIIREG:
Stephen Hemminger656299f2008-11-19 21:53:47 -0800593 if (netif_device_present(real_dev) && ops->ndo_do_ioctl)
594 err = ops->ndo_do_ioctl(real_dev, &ifrr, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700596 }
597
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900598 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700599 ifr->ifr_ifru = ifrr.ifr_ifru;
600
601 return err;
602}
603
Frank Blaschkacc883d12009-01-08 10:50:20 -0800604static int vlan_dev_neigh_setup(struct net_device *dev, struct neigh_parms *pa)
605{
606 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
607 const struct net_device_ops *ops = real_dev->netdev_ops;
608 int err = 0;
609
610 if (netif_device_present(real_dev) && ops->ndo_neigh_setup)
David S. Miller9d40bbd2009-03-04 23:46:25 -0800611 err = ops->ndo_neigh_setup(real_dev, pa);
Frank Blaschkacc883d12009-01-08 10:50:20 -0800612
613 return err;
614}
615
Vasu Devb85daa52009-08-14 12:41:07 +0000616#if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
617static int vlan_dev_fcoe_ddp_setup(struct net_device *dev, u16 xid,
618 struct scatterlist *sgl, unsigned int sgc)
619{
620 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
621 const struct net_device_ops *ops = real_dev->netdev_ops;
622 int rc = 0;
623
624 if (ops->ndo_fcoe_ddp_setup)
625 rc = ops->ndo_fcoe_ddp_setup(real_dev, xid, sgl, sgc);
626
627 return rc;
628}
629
630static int vlan_dev_fcoe_ddp_done(struct net_device *dev, u16 xid)
631{
632 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
633 const struct net_device_ops *ops = real_dev->netdev_ops;
634 int len = 0;
635
636 if (ops->ndo_fcoe_ddp_done)
637 len = ops->ndo_fcoe_ddp_done(real_dev, xid);
638
639 return len;
640}
Yi Zou0af46d92009-08-31 12:31:55 +0000641
642static int vlan_dev_fcoe_enable(struct net_device *dev)
643{
644 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
645 const struct net_device_ops *ops = real_dev->netdev_ops;
646 int rc = -EINVAL;
647
648 if (ops->ndo_fcoe_enable)
649 rc = ops->ndo_fcoe_enable(real_dev);
650 return rc;
651}
652
653static int vlan_dev_fcoe_disable(struct net_device *dev)
654{
655 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
656 const struct net_device_ops *ops = real_dev->netdev_ops;
657 int rc = -EINVAL;
658
659 if (ops->ndo_fcoe_disable)
660 rc = ops->ndo_fcoe_disable(real_dev);
661 return rc;
662}
Yi Zoud6534792009-10-28 18:25:16 +0000663
664static int vlan_dev_fcoe_get_wwn(struct net_device *dev, u64 *wwn, int type)
665{
666 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
667 const struct net_device_ops *ops = real_dev->netdev_ops;
668 int rc = -EINVAL;
669
670 if (ops->ndo_fcoe_get_wwn)
671 rc = ops->ndo_fcoe_get_wwn(real_dev, wwn, type);
672 return rc;
673}
Vasu Devb85daa52009-08-14 12:41:07 +0000674#endif
675
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800676static void vlan_dev_change_rx_flags(struct net_device *dev, int change)
Patrick McHardy6c78dcb2007-07-14 18:52:56 -0700677{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800678 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
Patrick McHardy6c78dcb2007-07-14 18:52:56 -0700679
680 if (change & IFF_ALLMULTI)
681 dev_set_allmulti(real_dev, dev->flags & IFF_ALLMULTI ? 1 : -1);
682 if (change & IFF_PROMISC)
683 dev_set_promiscuity(real_dev, dev->flags & IFF_PROMISC ? 1 : -1);
684}
685
Chris Leeche83a2ea2008-01-31 16:53:23 -0800686static void vlan_dev_set_rx_mode(struct net_device *vlan_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800688 dev_mc_sync(vlan_dev_info(vlan_dev)->real_dev, vlan_dev);
Jiri Pirkoa748ee22010-04-01 21:22:09 +0000689 dev_uc_sync(vlan_dev_info(vlan_dev)->real_dev, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690}
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800691
692/*
693 * vlan network devices have devices nesting below it, and are a special
694 * "super class" of normal network devices; split their locks off into a
695 * separate class since they always nest.
696 */
697static struct lock_class_key vlan_netdev_xmit_lock_key;
David S. Millercf508b12008-07-22 14:16:42 -0700698static struct lock_class_key vlan_netdev_addr_lock_key;
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800699
David S. Millere8a04642008-07-17 00:34:19 -0700700static void vlan_dev_set_lockdep_one(struct net_device *dev,
701 struct netdev_queue *txq,
702 void *_subclass)
David S. Millerc773e842008-07-08 23:13:53 -0700703{
704 lockdep_set_class_and_subclass(&txq->_xmit_lock,
David S. Millere8a04642008-07-17 00:34:19 -0700705 &vlan_netdev_xmit_lock_key,
706 *(int *)_subclass);
David S. Millerc773e842008-07-08 23:13:53 -0700707}
708
709static void vlan_dev_set_lockdep_class(struct net_device *dev, int subclass)
710{
David S. Millercf508b12008-07-22 14:16:42 -0700711 lockdep_set_class_and_subclass(&dev->addr_list_lock,
712 &vlan_netdev_addr_lock_key,
713 subclass);
David S. Millere8a04642008-07-17 00:34:19 -0700714 netdev_for_each_tx_queue(dev, vlan_dev_set_lockdep_one, &subclass);
David S. Millerc773e842008-07-08 23:13:53 -0700715}
716
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800717static const struct header_ops vlan_header_ops = {
718 .create = vlan_dev_hard_header,
719 .rebuild = vlan_dev_rebuild_header,
720 .parse = eth_header_parse,
721};
722
Vasu Dev669d3e02010-03-23 14:41:45 +0000723static const struct net_device_ops vlan_netdev_ops, vlan_netdev_accel_ops,
724 vlan_netdev_ops_sq, vlan_netdev_accel_ops_sq;
Eric Dumazetf7d1b9f2008-12-25 16:45:19 -0800725
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800726static int vlan_dev_init(struct net_device *dev)
727{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800728 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800729 int subclass = 0;
730
Jay Vosburghadc667e2009-04-25 18:03:35 -0700731 netif_carrier_off(dev);
732
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800733 /* IFF_BROADCAST|IFF_MULTICAST; ??? */
John Fastabend194dbcc2010-05-12 21:31:06 +0000734 dev->flags = real_dev->flags & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI |
735 IFF_MASTER | IFF_SLAVE);
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800736 dev->iflink = real_dev->ifindex;
737 dev->state = (real_dev->state & ((1<<__LINK_STATE_NOCARRIER) |
738 (1<<__LINK_STATE_DORMANT))) |
739 (1<<__LINK_STATE_PRESENT);
740
Patrick McHardy289c79a2008-05-23 00:22:04 -0700741 dev->features |= real_dev->features & real_dev->vlan_features;
Alexander Duyck1ae4be22008-09-11 20:17:05 -0700742 dev->gso_max_size = real_dev->gso_max_size;
Patrick McHardy5fb13572008-05-20 14:54:50 -0700743
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800744 /* ipv6 shared card related stuff */
745 dev->dev_id = real_dev->dev_id;
746
747 if (is_zero_ether_addr(dev->dev_addr))
748 memcpy(dev->dev_addr, real_dev->dev_addr, dev->addr_len);
749 if (is_zero_ether_addr(dev->broadcast))
750 memcpy(dev->broadcast, real_dev->broadcast, dev->addr_len);
751
Vasu Devb85daa52009-08-14 12:41:07 +0000752#if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
753 dev->fcoe_ddp_xid = real_dev->fcoe_ddp_xid;
754#endif
755
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800756 if (real_dev->features & NETIF_F_HW_VLAN_TX) {
757 dev->header_ops = real_dev->header_ops;
758 dev->hard_header_len = real_dev->hard_header_len;
Vasu Dev669d3e02010-03-23 14:41:45 +0000759 if (real_dev->netdev_ops->ndo_select_queue)
760 dev->netdev_ops = &vlan_netdev_accel_ops_sq;
761 else
762 dev->netdev_ops = &vlan_netdev_accel_ops;
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800763 } else {
764 dev->header_ops = &vlan_header_ops;
765 dev->hard_header_len = real_dev->hard_header_len + VLAN_HLEN;
Vasu Dev669d3e02010-03-23 14:41:45 +0000766 if (real_dev->netdev_ops->ndo_select_queue)
767 dev->netdev_ops = &vlan_netdev_ops_sq;
768 else
769 dev->netdev_ops = &vlan_netdev_ops;
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800770 }
771
Joonwoo Park26a25232008-07-08 03:22:16 -0700772 if (is_vlan_dev(real_dev))
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800773 subclass = 1;
774
David S. Millerc773e842008-07-08 23:13:53 -0700775 vlan_dev_set_lockdep_class(dev, subclass);
Eric Dumazet97932412009-11-17 04:53:09 +0000776
777 vlan_dev_info(dev)->vlan_rx_stats = alloc_percpu(struct vlan_rx_stats);
778 if (!vlan_dev_info(dev)->vlan_rx_stats)
779 return -ENOMEM;
780
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800781 return 0;
782}
783
Pavel Emelyanov23556322008-04-04 12:45:12 -0700784static void vlan_dev_uninit(struct net_device *dev)
785{
786 struct vlan_priority_tci_mapping *pm;
787 struct vlan_dev_info *vlan = vlan_dev_info(dev);
788 int i;
789
Eric Dumazet97932412009-11-17 04:53:09 +0000790 free_percpu(vlan->vlan_rx_stats);
791 vlan->vlan_rx_stats = NULL;
Pavel Emelyanov23556322008-04-04 12:45:12 -0700792 for (i = 0; i < ARRAY_SIZE(vlan->egress_priority_map); i++) {
793 while ((pm = vlan->egress_priority_map[i]) != NULL) {
794 vlan->egress_priority_map[i] = pm->next;
795 kfree(pm);
796 }
797 }
798}
799
Stephen Hemmingerb30200612008-10-28 22:12:36 -0700800static int vlan_ethtool_get_settings(struct net_device *dev,
801 struct ethtool_cmd *cmd)
802{
803 const struct vlan_dev_info *vlan = vlan_dev_info(dev);
Patrick McHardyb1b67dd2009-04-20 04:49:28 +0000804 return dev_ethtool_get_settings(vlan->real_dev, cmd);
Stephen Hemmingerb30200612008-10-28 22:12:36 -0700805}
806
807static void vlan_ethtool_get_drvinfo(struct net_device *dev,
808 struct ethtool_drvinfo *info)
809{
810 strcpy(info->driver, vlan_fullname);
811 strcpy(info->version, vlan_version);
812 strcpy(info->fw_version, "N/A");
813}
814
Patrick McHardy75b88462008-07-08 03:22:42 -0700815static u32 vlan_ethtool_get_rx_csum(struct net_device *dev)
816{
817 const struct vlan_dev_info *vlan = vlan_dev_info(dev);
Patrick McHardyb1b67dd2009-04-20 04:49:28 +0000818 return dev_ethtool_get_rx_csum(vlan->real_dev);
Patrick McHardy75b88462008-07-08 03:22:42 -0700819}
820
Patrick McHardy19b9a4e2008-07-14 22:51:01 -0700821static u32 vlan_ethtool_get_flags(struct net_device *dev)
822{
823 const struct vlan_dev_info *vlan = vlan_dev_info(dev);
Patrick McHardyb1b67dd2009-04-20 04:49:28 +0000824 return dev_ethtool_get_flags(vlan->real_dev);
Patrick McHardy19b9a4e2008-07-14 22:51:01 -0700825}
826
Eric Dumazet28172732010-07-07 14:58:56 -0700827static struct rtnl_link_stats64 *vlan_dev_get_stats64(struct net_device *dev, struct rtnl_link_stats64 *stats)
Eric Dumazet97932412009-11-17 04:53:09 +0000828{
Ben Hutchings3cfde792010-07-09 09:11:52 +0000829 dev_txq_stats_fold(dev, stats);
Eric Dumazet97932412009-11-17 04:53:09 +0000830
831 if (vlan_dev_info(dev)->vlan_rx_stats) {
Eric Dumazet9618e2f2010-06-24 00:55:06 +0000832 struct vlan_rx_stats *p, accum = {0};
Eric Dumazet97932412009-11-17 04:53:09 +0000833 int i;
834
835 for_each_possible_cpu(i) {
Eric Dumazet9618e2f2010-06-24 00:55:06 +0000836 u64 rxpackets, rxbytes, rxmulticast;
837 unsigned int start;
838
Eric Dumazet97932412009-11-17 04:53:09 +0000839 p = per_cpu_ptr(vlan_dev_info(dev)->vlan_rx_stats, i);
Eric Dumazet9618e2f2010-06-24 00:55:06 +0000840 do {
841 start = u64_stats_fetch_begin_bh(&p->syncp);
842 rxpackets = p->rx_packets;
843 rxbytes = p->rx_bytes;
844 rxmulticast = p->rx_multicast;
845 } while (u64_stats_fetch_retry_bh(&p->syncp, start));
846 accum.rx_packets += rxpackets;
847 accum.rx_bytes += rxbytes;
848 accum.rx_multicast += rxmulticast;
Eric Dumazet8990f462010-09-20 00:12:11 +0000849 /* rx_errors, rx_dropped are ulong, not protected by syncp */
Eric Dumazet9618e2f2010-06-24 00:55:06 +0000850 accum.rx_errors += p->rx_errors;
Eric Dumazet8990f462010-09-20 00:12:11 +0000851 accum.rx_dropped += p->rx_dropped;
Eric Dumazet97932412009-11-17 04:53:09 +0000852 }
Eric Dumazet9618e2f2010-06-24 00:55:06 +0000853 stats->rx_packets = accum.rx_packets;
854 stats->rx_bytes = accum.rx_bytes;
855 stats->rx_errors = accum.rx_errors;
856 stats->multicast = accum.rx_multicast;
Eric Dumazet8990f462010-09-20 00:12:11 +0000857 stats->rx_dropped = accum.rx_dropped;
Eric Dumazet97932412009-11-17 04:53:09 +0000858 }
859 return stats;
860}
861
Eric Dumazeta204b482010-07-08 23:12:21 -0700862static int vlan_ethtool_set_tso(struct net_device *dev, u32 data)
863{
864 if (data) {
865 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
866
867 /* Underlying device must support TSO for VLAN-tagged packets
868 * and must have TSO enabled now.
869 */
870 if (!(real_dev->vlan_features & NETIF_F_TSO))
871 return -EOPNOTSUPP;
872 if (!(real_dev->features & NETIF_F_TSO))
873 return -EINVAL;
874 dev->features |= NETIF_F_TSO;
875 } else {
876 dev->features &= ~NETIF_F_TSO;
877 }
878 return 0;
879}
880
Patrick McHardy75b88462008-07-08 03:22:42 -0700881static const struct ethtool_ops vlan_ethtool_ops = {
Stephen Hemmingerb30200612008-10-28 22:12:36 -0700882 .get_settings = vlan_ethtool_get_settings,
883 .get_drvinfo = vlan_ethtool_get_drvinfo,
Patrick McHardy75b88462008-07-08 03:22:42 -0700884 .get_link = ethtool_op_get_link,
885 .get_rx_csum = vlan_ethtool_get_rx_csum,
Patrick McHardy19b9a4e2008-07-14 22:51:01 -0700886 .get_flags = vlan_ethtool_get_flags,
Eric Dumazeta204b482010-07-08 23:12:21 -0700887 .set_tso = vlan_ethtool_set_tso,
Patrick McHardy75b88462008-07-08 03:22:42 -0700888};
889
Stephen Hemminger656299f2008-11-19 21:53:47 -0800890static const struct net_device_ops vlan_netdev_ops = {
891 .ndo_change_mtu = vlan_dev_change_mtu,
892 .ndo_init = vlan_dev_init,
893 .ndo_uninit = vlan_dev_uninit,
894 .ndo_open = vlan_dev_open,
895 .ndo_stop = vlan_dev_stop,
Eric Dumazetf7d1b9f2008-12-25 16:45:19 -0800896 .ndo_start_xmit = vlan_dev_hard_start_xmit,
897 .ndo_validate_addr = eth_validate_addr,
898 .ndo_set_mac_address = vlan_dev_set_mac_address,
899 .ndo_set_rx_mode = vlan_dev_set_rx_mode,
900 .ndo_set_multicast_list = vlan_dev_set_rx_mode,
901 .ndo_change_rx_flags = vlan_dev_change_rx_flags,
902 .ndo_do_ioctl = vlan_dev_ioctl,
Frank Blaschkacc883d12009-01-08 10:50:20 -0800903 .ndo_neigh_setup = vlan_dev_neigh_setup,
Eric Dumazet9618e2f2010-06-24 00:55:06 +0000904 .ndo_get_stats64 = vlan_dev_get_stats64,
Vasu Devb85daa52009-08-14 12:41:07 +0000905#if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
906 .ndo_fcoe_ddp_setup = vlan_dev_fcoe_ddp_setup,
907 .ndo_fcoe_ddp_done = vlan_dev_fcoe_ddp_done,
Yi Zou0af46d92009-08-31 12:31:55 +0000908 .ndo_fcoe_enable = vlan_dev_fcoe_enable,
909 .ndo_fcoe_disable = vlan_dev_fcoe_disable,
Yi Zoud6534792009-10-28 18:25:16 +0000910 .ndo_fcoe_get_wwn = vlan_dev_fcoe_get_wwn,
Vasu Devb85daa52009-08-14 12:41:07 +0000911#endif
Eric Dumazetf7d1b9f2008-12-25 16:45:19 -0800912};
913
914static const struct net_device_ops vlan_netdev_accel_ops = {
915 .ndo_change_mtu = vlan_dev_change_mtu,
916 .ndo_init = vlan_dev_init,
917 .ndo_uninit = vlan_dev_uninit,
918 .ndo_open = vlan_dev_open,
919 .ndo_stop = vlan_dev_stop,
920 .ndo_start_xmit = vlan_dev_hwaccel_hard_start_xmit,
Stephen Hemminger656299f2008-11-19 21:53:47 -0800921 .ndo_validate_addr = eth_validate_addr,
922 .ndo_set_mac_address = vlan_dev_set_mac_address,
923 .ndo_set_rx_mode = vlan_dev_set_rx_mode,
924 .ndo_set_multicast_list = vlan_dev_set_rx_mode,
925 .ndo_change_rx_flags = vlan_dev_change_rx_flags,
926 .ndo_do_ioctl = vlan_dev_ioctl,
Frank Blaschkacc883d12009-01-08 10:50:20 -0800927 .ndo_neigh_setup = vlan_dev_neigh_setup,
Eric Dumazet9618e2f2010-06-24 00:55:06 +0000928 .ndo_get_stats64 = vlan_dev_get_stats64,
Vasu Devb85daa52009-08-14 12:41:07 +0000929#if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
930 .ndo_fcoe_ddp_setup = vlan_dev_fcoe_ddp_setup,
931 .ndo_fcoe_ddp_done = vlan_dev_fcoe_ddp_done,
Yi Zou0af46d92009-08-31 12:31:55 +0000932 .ndo_fcoe_enable = vlan_dev_fcoe_enable,
933 .ndo_fcoe_disable = vlan_dev_fcoe_disable,
Yi Zoud6534792009-10-28 18:25:16 +0000934 .ndo_fcoe_get_wwn = vlan_dev_fcoe_get_wwn,
Vasu Devb85daa52009-08-14 12:41:07 +0000935#endif
Stephen Hemminger656299f2008-11-19 21:53:47 -0800936};
937
Vasu Dev669d3e02010-03-23 14:41:45 +0000938static const struct net_device_ops vlan_netdev_ops_sq = {
939 .ndo_select_queue = vlan_dev_select_queue,
940 .ndo_change_mtu = vlan_dev_change_mtu,
941 .ndo_init = vlan_dev_init,
942 .ndo_uninit = vlan_dev_uninit,
943 .ndo_open = vlan_dev_open,
944 .ndo_stop = vlan_dev_stop,
945 .ndo_start_xmit = vlan_dev_hard_start_xmit,
946 .ndo_validate_addr = eth_validate_addr,
947 .ndo_set_mac_address = vlan_dev_set_mac_address,
948 .ndo_set_rx_mode = vlan_dev_set_rx_mode,
949 .ndo_set_multicast_list = vlan_dev_set_rx_mode,
950 .ndo_change_rx_flags = vlan_dev_change_rx_flags,
951 .ndo_do_ioctl = vlan_dev_ioctl,
952 .ndo_neigh_setup = vlan_dev_neigh_setup,
Eric Dumazet9618e2f2010-06-24 00:55:06 +0000953 .ndo_get_stats64 = vlan_dev_get_stats64,
Vasu Dev669d3e02010-03-23 14:41:45 +0000954#if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
955 .ndo_fcoe_ddp_setup = vlan_dev_fcoe_ddp_setup,
956 .ndo_fcoe_ddp_done = vlan_dev_fcoe_ddp_done,
957 .ndo_fcoe_enable = vlan_dev_fcoe_enable,
958 .ndo_fcoe_disable = vlan_dev_fcoe_disable,
959 .ndo_fcoe_get_wwn = vlan_dev_fcoe_get_wwn,
960#endif
961};
962
963static const struct net_device_ops vlan_netdev_accel_ops_sq = {
964 .ndo_select_queue = vlan_dev_select_queue,
965 .ndo_change_mtu = vlan_dev_change_mtu,
966 .ndo_init = vlan_dev_init,
967 .ndo_uninit = vlan_dev_uninit,
968 .ndo_open = vlan_dev_open,
969 .ndo_stop = vlan_dev_stop,
970 .ndo_start_xmit = vlan_dev_hwaccel_hard_start_xmit,
971 .ndo_validate_addr = eth_validate_addr,
972 .ndo_set_mac_address = vlan_dev_set_mac_address,
973 .ndo_set_rx_mode = vlan_dev_set_rx_mode,
974 .ndo_set_multicast_list = vlan_dev_set_rx_mode,
975 .ndo_change_rx_flags = vlan_dev_change_rx_flags,
976 .ndo_do_ioctl = vlan_dev_ioctl,
977 .ndo_neigh_setup = vlan_dev_neigh_setup,
Eric Dumazet9618e2f2010-06-24 00:55:06 +0000978 .ndo_get_stats64 = vlan_dev_get_stats64,
Vasu Dev669d3e02010-03-23 14:41:45 +0000979#if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
980 .ndo_fcoe_ddp_setup = vlan_dev_fcoe_ddp_setup,
981 .ndo_fcoe_ddp_done = vlan_dev_fcoe_ddp_done,
982 .ndo_fcoe_enable = vlan_dev_fcoe_enable,
983 .ndo_fcoe_disable = vlan_dev_fcoe_disable,
984 .ndo_fcoe_get_wwn = vlan_dev_fcoe_get_wwn,
985#endif
986};
987
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800988void vlan_setup(struct net_device *dev)
989{
990 ether_setup(dev);
991
992 dev->priv_flags |= IFF_802_1Q_VLAN;
Eric Dumazet93f154b2009-05-18 22:19:19 -0700993 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800994 dev->tx_queue_len = 0;
995
Stephen Hemminger656299f2008-11-19 21:53:47 -0800996 dev->netdev_ops = &vlan_netdev_ops;
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800997 dev->destructor = free_netdev;
Patrick McHardy75b88462008-07-08 03:22:42 -0700998 dev->ethtool_ops = &vlan_ethtool_ops;
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800999
1000 memset(dev->broadcast, 0, ETH_ALEN);
1001}