blob: 3938c3e50fb121404058b8df0456dc3bed057fd8 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/skbuff.h>
25#include <linux/netdevice.h>
26#include <linux/etherdevice.h>
Patrick McHardy75b88462008-07-08 03:22:42 -070027#include <linux/ethtool.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <net/arp.h>
29
30#include "vlan.h"
31#include "vlanproc.h"
32#include <linux/if_vlan.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34/*
35 * Rebuild the Ethernet MAC header. This is called after an ARP
36 * (or in future other address resolution) has completed on this
37 * sk_buff. We now let ARP fill in the other fields.
38 *
39 * This routine CANNOT use cached dst->neigh!
40 * Really, it is used only when dst->neigh is wrong.
41 *
42 * TODO: This needs a checkup, I'm ignorant here. --BLG
43 */
Patrick McHardyef3eb3e2008-01-21 00:22:11 -080044static int vlan_dev_rebuild_header(struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -070045{
46 struct net_device *dev = skb->dev;
47 struct vlan_ethhdr *veth = (struct vlan_ethhdr *)(skb->data);
48
49 switch (veth->h_vlan_encapsulated_proto) {
50#ifdef CONFIG_INET
Arnaldo Carvalho de Melo60678042008-09-20 22:20:49 -070051 case htons(ETH_P_IP):
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53 /* TODO: Confirm this will work with VLAN headers... */
54 return arp_find(veth->h_dest, skb);
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +090055#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 default:
Patrick McHardy40f98e12008-01-21 00:24:30 -080057 pr_debug("%s: unable to resolve type %X addresses.\n",
58 dev->name, ntohs(veth->h_vlan_encapsulated_proto));
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +090059
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 memcpy(veth->h_source, dev->dev_addr, ETH_ALEN);
61 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -070062 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64 return 0;
65}
66
67static inline struct sk_buff *vlan_check_reorder_header(struct sk_buff *skb)
68{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -080069 if (vlan_dev_info(skb->dev)->flags & VLAN_FLAG_REORDER_HDR) {
Patrick McHardy11a100f2008-07-08 15:36:57 -070070 if (skb_cow(skb, skb_headroom(skb)) < 0)
71 skb = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 if (skb) {
73 /* Lifted from Gleb's VLAN code... */
74 memmove(skb->data - ETH_HLEN,
75 skb->data - VLAN_ETH_HLEN, 12);
Arnaldo Carvalho de Melob0e380b2007-04-10 21:21:55 -070076 skb->mac_header += VLAN_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 }
78 }
79
80 return skb;
81}
82
Pavel Emelyanov91b4f952008-01-21 00:28:03 -080083static inline void vlan_set_encap_proto(struct sk_buff *skb,
84 struct vlan_hdr *vhdr)
85{
86 __be16 proto;
87 unsigned char *rawp;
88
89 /*
90 * Was a VLAN packet, grab the encapsulated protocol, which the layer
91 * three protocols care about.
92 */
93
94 proto = vhdr->h_vlan_encapsulated_proto;
95 if (ntohs(proto) >= 1536) {
96 skb->protocol = proto;
97 return;
98 }
99
100 rawp = skb->data;
101 if (*(unsigned short *)rawp == 0xFFFF)
102 /*
103 * This is a magic hack to spot IPX packets. Older Novell
104 * breaks the protocol design and runs IPX over 802.3 without
105 * an 802.2 LLC layer. We look for FFFF which isn't a used
106 * 802.2 SSAP/DSAP. This won't work for fault tolerant netware
107 * but does for the rest.
108 */
109 skb->protocol = htons(ETH_P_802_3);
110 else
111 /*
112 * Real 802.2 LLC
113 */
114 skb->protocol = htons(ETH_P_802_2);
115}
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117/*
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900118 * Determine the packet's protocol ID. The rule here is that we
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * assume 802.3 if the type field is short enough to be a length.
120 * This is normal practice and works for any 'now in use' protocol.
121 *
122 * Also, at this point we assume that we ARE dealing exclusively with
123 * VLAN packets, or packets that should be made into VLAN packets based
124 * on a default VLAN ID.
125 *
126 * NOTE: Should be similar to ethernet/eth.c.
127 *
128 * SANITY NOTE: This method is called when a packet is moving up the stack
129 * towards userland. To get here, it would have already passed
130 * through the ethernet/eth.c eth_type_trans() method.
131 * SANITY NOTE 2: We are referencing to the VLAN_HDR frields, which MAY be
132 * stored UNALIGNED in the memory. RISC systems don't like
133 * such cases very much...
Patrick McHardy2029cc22008-01-21 00:26:41 -0800134 * SANITY NOTE 2a: According to Dave Miller & Alexey, it will always be
135 * aligned, so there doesn't need to be any of the unaligned
136 * stuff. It has been commented out now... --Ben
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 *
138 */
139int vlan_skb_recv(struct sk_buff *skb, struct net_device *dev,
Patrick McHardy2029cc22008-01-21 00:26:41 -0800140 struct packet_type *ptype, struct net_device *orig_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141{
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700142 struct vlan_hdr *vhdr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 struct net_device_stats *stats;
Patrick McHardy9bb85822008-07-08 03:24:44 -0700144 u16 vlan_id;
145 u16 vlan_tci;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Patrick McHardy2029cc22008-01-21 00:26:41 -0800147 skb = skb_share_check(skb, GFP_ATOMIC);
148 if (skb == NULL)
Patrick McHardy31ffdbcb2008-01-21 00:27:18 -0800149 goto err_free;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700150
Patrick McHardy31ffdbcb2008-01-21 00:27:18 -0800151 if (unlikely(!pskb_may_pull(skb, VLAN_HLEN)))
152 goto err_free;
Evgeniy Polyakove7c243c2007-08-24 23:36:29 -0700153
Patrick McHardy31ffdbcb2008-01-21 00:27:18 -0800154 vhdr = (struct vlan_hdr *)skb->data;
Patrick McHardy9bb85822008-07-08 03:24:44 -0700155 vlan_tci = ntohs(vhdr->h_vlan_TCI);
156 vlan_id = vlan_tci & VLAN_VID_MASK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 rcu_read_lock();
Patrick McHardy9bb85822008-07-08 03:24:44 -0700159 skb->dev = __find_vlan_dev(dev, vlan_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 if (!skb->dev) {
Patrick McHardy2029cc22008-01-21 00:26:41 -0800161 pr_debug("%s: ERROR: No net_device for VID: %u on dev: %s\n",
Patrick McHardy9bb85822008-07-08 03:24:44 -0700162 __func__, vlan_id, dev->name);
Patrick McHardy31ffdbcb2008-01-21 00:27:18 -0800163 goto err_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164 }
165
Patrick McHardy7bd38d72008-01-21 00:19:31 -0800166 stats = &skb->dev->stats;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 stats->rx_packets++;
168 stats->rx_bytes += skb->len;
169
Herbert Xucbb042f2006-03-20 22:43:56 -0800170 skb_pull_rcsum(skb, VLAN_HLEN);
Stephen Hemmingera3884422005-12-14 16:23:16 -0800171
Patrick McHardy9bb85822008-07-08 03:24:44 -0700172 skb->priority = vlan_get_ingress_priority(skb->dev, vlan_tci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173
Patrick McHardy40f98e12008-01-21 00:24:30 -0800174 pr_debug("%s: priority: %u for TCI: %hu\n",
Patrick McHardy9bb85822008-07-08 03:24:44 -0700175 __func__, skb->priority, vlan_tci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 switch (skb->pkt_type) {
178 case PACKET_BROADCAST: /* Yeah, stats collect these together.. */
Patrick McHardy2029cc22008-01-21 00:26:41 -0800179 /* stats->broadcast ++; // no such counter :-( */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 break;
181
182 case PACKET_MULTICAST:
183 stats->multicast++;
184 break;
185
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900186 case PACKET_OTHERHOST:
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 /* Our lower layer thinks this is not local, let's make sure.
Patrick McHardy2029cc22008-01-21 00:26:41 -0800188 * This allows the VLAN to have a different MAC than the
189 * underlying device, and still route correctly.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 */
Patrick McHardy2029cc22008-01-21 00:26:41 -0800191 if (!compare_ether_addr(eth_hdr(skb)->h_dest,
192 skb->dev->dev_addr))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 skb->pkt_type = PACKET_HOST;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 break;
195 default:
196 break;
Stephen Hemminger3ff50b72007-04-20 17:09:22 -0700197 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Pavel Emelyanov91b4f952008-01-21 00:28:03 -0800199 vlan_set_encap_proto(skb, vhdr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 skb = vlan_check_reorder_header(skb);
Patrick McHardy31ffdbcb2008-01-21 00:27:18 -0800202 if (!skb) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 stats->rx_errors++;
Patrick McHardy31ffdbcb2008-01-21 00:27:18 -0800204 goto err_unlock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 }
Patrick McHardy31ffdbcb2008-01-21 00:27:18 -0800206
207 netif_rx(skb);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 rcu_read_unlock();
Patrick McHardy31ffdbcb2008-01-21 00:27:18 -0800209 return NET_RX_SUCCESS;
210
211err_unlock:
212 rcu_read_unlock();
213err_free:
214 kfree_skb(skb);
215 return NET_RX_DROP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216}
217
Patrick McHardy9bb85822008-07-08 03:24:44 -0700218static inline u16
Patrick McHardy2029cc22008-01-21 00:26:41 -0800219vlan_dev_get_egress_qos_mask(struct net_device *dev, struct sk_buff *skb)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220{
Patrick McHardy2029cc22008-01-21 00:26:41 -0800221 struct vlan_priority_tci_mapping *mp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700222
Patrick McHardy2029cc22008-01-21 00:26:41 -0800223 mp = vlan_dev_info(dev)->egress_priority_map[(skb->priority & 0xF)];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224 while (mp) {
225 if (mp->priority == skb->priority) {
Patrick McHardy2029cc22008-01-21 00:26:41 -0800226 return mp->vlan_qos; /* This should already be shifted
227 * to mask correctly with the
228 * VLAN's TCI */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700229 }
230 mp = mp->next;
231 }
232 return 0;
233}
234
235/*
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900236 * Create the VLAN header for an arbitrary protocol layer
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237 *
238 * saddr=NULL means use device source address
239 * daddr=NULL means leave destination address (eg unresolved arp)
240 *
241 * This is called when the SKB is moving down the stack towards the
242 * physical devices.
243 */
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800244static int vlan_dev_hard_header(struct sk_buff *skb, struct net_device *dev,
245 unsigned short type,
246 const void *daddr, const void *saddr,
247 unsigned int len)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248{
249 struct vlan_hdr *vhdr;
Patrick McHardy1349fe92008-07-14 22:51:19 -0700250 unsigned int vhdrlen = 0;
Patrick McHardy9bb85822008-07-08 03:24:44 -0700251 u16 vlan_tci = 0;
Patrick McHardy1349fe92008-07-14 22:51:19 -0700252 int rc;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Patrick McHardy11a100f2008-07-08 15:36:57 -0700254 if (WARN_ON(skb_headroom(skb) < dev->hard_header_len))
255 return -ENOSPC;
256
Patrick McHardy1349fe92008-07-14 22:51:19 -0700257 if (!(vlan_dev_info(dev)->flags & VLAN_FLAG_REORDER_HDR)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 vhdr = (struct vlan_hdr *) skb_push(skb, VLAN_HLEN);
259
Patrick McHardy9bb85822008-07-08 03:24:44 -0700260 vlan_tci = vlan_dev_info(dev)->vlan_id;
261 vlan_tci |= vlan_dev_get_egress_qos_mask(dev, skb);
Patrick McHardy9bb85822008-07-08 03:24:44 -0700262 vhdr->h_vlan_TCI = htons(vlan_tci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263
264 /*
Patrick McHardy2029cc22008-01-21 00:26:41 -0800265 * Set the protocol type. For a packet of type ETH_P_802_3 we
266 * put the length in here instead. It is up to the 802.2
267 * layer to carry protocol information.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 */
Patrick McHardy2029cc22008-01-21 00:26:41 -0800269 if (type != ETH_P_802_3)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 vhdr->h_vlan_encapsulated_proto = htons(type);
Patrick McHardy2029cc22008-01-21 00:26:41 -0800271 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 vhdr->h_vlan_encapsulated_proto = htons(len);
Jerome Borsboom279e1722007-04-13 16:12:47 -0700273
274 skb->protocol = htons(ETH_P_8021Q);
Patrick McHardy1349fe92008-07-14 22:51:19 -0700275 type = ETH_P_8021Q;
276 vhdrlen = VLAN_HLEN;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 }
278
279 /* Before delegating work to the lower layer, enter our MAC-address */
280 if (saddr == NULL)
281 saddr = dev->dev_addr;
282
Patrick McHardy1349fe92008-07-14 22:51:19 -0700283 /* Now make the underlying real hard header */
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800284 dev = vlan_dev_info(dev)->real_dev;
Patrick McHardy1349fe92008-07-14 22:51:19 -0700285 rc = dev_hard_header(skb, dev, type, daddr, saddr, len + vhdrlen);
286 if (rc > 0)
287 rc += vhdrlen;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 return rc;
289}
290
Stephen Hemminger6fef4c02009-08-31 19:50:41 +0000291static netdev_tx_t vlan_dev_hard_start_xmit(struct sk_buff *skb,
292 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Eric Dumazet2f8bc322009-09-03 02:19:58 -0700294 int i = skb_get_queue_mapping(skb);
295 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296 struct vlan_ethhdr *veth = (struct vlan_ethhdr *)(skb->data);
David S. Miller55b01e82008-02-23 20:09:11 -0800297
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 /* Handle non-VLAN frames if they are sent to us, for example by DHCP.
299 *
300 * NOTE: THIS ASSUMES DIX ETHERNET, SPECIFICALLY NOT SUPPORTING
301 * OTHER THINGS LIKE FDDI/TokenRing/802.3 SNAPs...
302 */
Joonwoo Park6ab3b482007-11-29 22:16:41 +1100303 if (veth->h_vlan_proto != htons(ETH_P_8021Q) ||
Patrick McHardyd80aa312008-07-14 22:51:39 -0700304 vlan_dev_info(dev)->flags & VLAN_FLAG_REORDER_HDR) {
305 unsigned int orig_headroom = skb_headroom(skb);
Patrick McHardy9bb85822008-07-08 03:24:44 -0700306 u16 vlan_tci;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800308 vlan_dev_info(dev)->cnt_encap_on_xmit++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309
Patrick McHardy9bb85822008-07-08 03:24:44 -0700310 vlan_tci = vlan_dev_info(dev)->vlan_id;
311 vlan_tci |= vlan_dev_get_egress_qos_mask(dev, skb);
Patrick McHardy9bb85822008-07-08 03:24:44 -0700312 skb = __vlan_put_tag(skb, vlan_tci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 if (!skb) {
Eric Dumazet450c4ea2009-05-18 00:35:38 +0000314 txq->tx_dropped++;
Patrick McHardyd80aa312008-07-14 22:51:39 -0700315 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 }
317
Patrick McHardy2029cc22008-01-21 00:26:41 -0800318 if (orig_headroom < VLAN_HLEN)
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800319 vlan_dev_info(dev)->cnt_inc_headroom_on_tx++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 }
321
Eric Dumazet450c4ea2009-05-18 00:35:38 +0000322 txq->tx_packets++;
323 txq->tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800325 skb->dev = vlan_dev_info(dev)->real_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 dev_queue_xmit(skb);
Patrick McHardyd80aa312008-07-14 22:51:39 -0700327 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328}
329
Stephen Hemminger6fef4c02009-08-31 19:50:41 +0000330static netdev_tx_t vlan_dev_hwaccel_hard_start_xmit(struct sk_buff *skb,
331 struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
Eric Dumazet2f8bc322009-09-03 02:19:58 -0700333 int i = skb_get_queue_mapping(skb);
334 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
Patrick McHardy9bb85822008-07-08 03:24:44 -0700335 u16 vlan_tci;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Patrick McHardy9bb85822008-07-08 03:24:44 -0700337 vlan_tci = vlan_dev_info(dev)->vlan_id;
338 vlan_tci |= vlan_dev_get_egress_qos_mask(dev, skb);
339 skb = __vlan_hwaccel_put_tag(skb, vlan_tci);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
Eric Dumazet450c4ea2009-05-18 00:35:38 +0000341 txq->tx_packets++;
342 txq->tx_bytes += skb->len;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800344 skb->dev = vlan_dev_info(dev)->real_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 dev_queue_xmit(skb);
Patrick McHardyd80aa312008-07-14 22:51:39 -0700346 return NETDEV_TX_OK;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
348
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800349static int vlan_dev_change_mtu(struct net_device *dev, int new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700350{
351 /* TODO: gotta make sure the underlying layer can handle it,
352 * maybe an IFF_VLAN_CAPABLE flag for devices?
353 */
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800354 if (vlan_dev_info(dev)->real_dev->mtu < new_mtu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return -ERANGE;
356
357 dev->mtu = new_mtu;
358
359 return 0;
360}
361
Patrick McHardyc17d8872007-06-13 12:05:22 -0700362void vlan_dev_set_ingress_priority(const struct net_device *dev,
Patrick McHardy9bb85822008-07-08 03:24:44 -0700363 u32 skb_prio, u16 vlan_prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800365 struct vlan_dev_info *vlan = vlan_dev_info(dev);
Patrick McHardyb020cb42007-06-13 12:07:22 -0700366
367 if (vlan->ingress_priority_map[vlan_prio & 0x7] && !skb_prio)
368 vlan->nr_ingress_mappings--;
369 else if (!vlan->ingress_priority_map[vlan_prio & 0x7] && skb_prio)
370 vlan->nr_ingress_mappings++;
371
372 vlan->ingress_priority_map[vlan_prio & 0x7] = skb_prio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373}
374
Patrick McHardyc17d8872007-06-13 12:05:22 -0700375int vlan_dev_set_egress_priority(const struct net_device *dev,
Patrick McHardy9bb85822008-07-08 03:24:44 -0700376 u32 skb_prio, u16 vlan_prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800378 struct vlan_dev_info *vlan = vlan_dev_info(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 struct vlan_priority_tci_mapping *mp = NULL;
380 struct vlan_priority_tci_mapping *np;
Patrick McHardyb020cb42007-06-13 12:07:22 -0700381 u32 vlan_qos = (vlan_prio << 13) & 0xE000;
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900382
Patrick McHardyc17d8872007-06-13 12:05:22 -0700383 /* See if a priority mapping exists.. */
Patrick McHardyb020cb42007-06-13 12:07:22 -0700384 mp = vlan->egress_priority_map[skb_prio & 0xF];
Patrick McHardyc17d8872007-06-13 12:05:22 -0700385 while (mp) {
386 if (mp->priority == skb_prio) {
Patrick McHardyb020cb42007-06-13 12:07:22 -0700387 if (mp->vlan_qos && !vlan_qos)
388 vlan->nr_egress_mappings--;
389 else if (!mp->vlan_qos && vlan_qos)
390 vlan->nr_egress_mappings++;
391 mp->vlan_qos = vlan_qos;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700392 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 }
Patrick McHardyc17d8872007-06-13 12:05:22 -0700394 mp = mp->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 }
Patrick McHardyc17d8872007-06-13 12:05:22 -0700396
397 /* Create a new mapping then. */
Patrick McHardyb020cb42007-06-13 12:07:22 -0700398 mp = vlan->egress_priority_map[skb_prio & 0xF];
Patrick McHardyc17d8872007-06-13 12:05:22 -0700399 np = kmalloc(sizeof(struct vlan_priority_tci_mapping), GFP_KERNEL);
400 if (!np)
401 return -ENOBUFS;
402
403 np->next = mp;
404 np->priority = skb_prio;
Patrick McHardyb020cb42007-06-13 12:07:22 -0700405 np->vlan_qos = vlan_qos;
406 vlan->egress_priority_map[skb_prio & 0xF] = np;
407 if (vlan_qos)
408 vlan->nr_egress_mappings++;
Patrick McHardyc17d8872007-06-13 12:05:22 -0700409 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410}
411
Patrick McHardya4bf3af42007-06-13 12:07:37 -0700412/* Flags are defined in the vlan_flags enum in include/linux/if_vlan.h file. */
Patrick McHardyb3ce0322008-07-05 21:26:27 -0700413int vlan_dev_change_flags(const struct net_device *dev, u32 flags, u32 mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Patrick McHardyb3ce0322008-07-05 21:26:27 -0700415 struct vlan_dev_info *vlan = vlan_dev_info(dev);
416 u32 old_flags = vlan->flags;
417
Patrick McHardy70c03b42008-07-05 21:26:57 -0700418 if (mask & ~(VLAN_FLAG_REORDER_HDR | VLAN_FLAG_GVRP))
Patrick McHardyb3ce0322008-07-05 21:26:27 -0700419 return -EINVAL;
420
421 vlan->flags = (old_flags & ~mask) | (flags & mask);
Patrick McHardy70c03b42008-07-05 21:26:57 -0700422
423 if (netif_running(dev) && (vlan->flags ^ old_flags) & VLAN_FLAG_GVRP) {
424 if (vlan->flags & VLAN_FLAG_GVRP)
425 vlan_gvrp_request_join(dev);
426 else
427 vlan_gvrp_request_leave(dev);
428 }
Patrick McHardyb3ce0322008-07-05 21:26:27 -0700429 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430}
431
Patrick McHardyc17d8872007-06-13 12:05:22 -0700432void vlan_dev_get_realdev_name(const struct net_device *dev, char *result)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800434 strncpy(result, vlan_dev_info(dev)->real_dev->name, 23);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435}
436
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800437static int vlan_dev_open(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800439 struct vlan_dev_info *vlan = vlan_dev_info(dev);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700440 struct net_device *real_dev = vlan->real_dev;
441 int err;
442
443 if (!(real_dev->flags & IFF_UP))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 return -ENETDOWN;
445
Patrick McHardy8c979c22007-07-11 19:45:24 -0700446 if (compare_ether_addr(dev->dev_addr, real_dev->dev_addr)) {
Jiri Pirkoccffad252009-05-22 23:22:17 +0000447 err = dev_unicast_add(real_dev, dev->dev_addr);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700448 if (err < 0)
Wang Chen89146502008-07-14 20:59:03 -0700449 goto out;
Patrick McHardy8c979c22007-07-11 19:45:24 -0700450 }
Patrick McHardy8c979c22007-07-11 19:45:24 -0700451
Wang Chen89146502008-07-14 20:59:03 -0700452 if (dev->flags & IFF_ALLMULTI) {
453 err = dev_set_allmulti(real_dev, 1);
454 if (err < 0)
455 goto del_unicast;
456 }
457 if (dev->flags & IFF_PROMISC) {
458 err = dev_set_promiscuity(real_dev, 1);
459 if (err < 0)
460 goto clear_allmulti;
461 }
462
463 memcpy(vlan->real_dev_addr, real_dev->dev_addr, ETH_ALEN);
Patrick McHardy6c78dcb2007-07-14 18:52:56 -0700464
Patrick McHardy70c03b42008-07-05 21:26:57 -0700465 if (vlan->flags & VLAN_FLAG_GVRP)
466 vlan_gvrp_request_join(dev);
467
Jay Vosburghadc667e2009-04-25 18:03:35 -0700468 netif_carrier_on(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 return 0;
Wang Chen89146502008-07-14 20:59:03 -0700470
471clear_allmulti:
472 if (dev->flags & IFF_ALLMULTI)
473 dev_set_allmulti(real_dev, -1);
474del_unicast:
475 if (compare_ether_addr(dev->dev_addr, real_dev->dev_addr))
Jiri Pirkoccffad252009-05-22 23:22:17 +0000476 dev_unicast_delete(real_dev, dev->dev_addr);
Wang Chen89146502008-07-14 20:59:03 -0700477out:
Jay Vosburghadc667e2009-04-25 18:03:35 -0700478 netif_carrier_off(dev);
Wang Chen89146502008-07-14 20:59:03 -0700479 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700480}
481
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800482static int vlan_dev_stop(struct net_device *dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Patrick McHardy70c03b42008-07-05 21:26:57 -0700484 struct vlan_dev_info *vlan = vlan_dev_info(dev);
485 struct net_device *real_dev = vlan->real_dev;
486
487 if (vlan->flags & VLAN_FLAG_GVRP)
488 vlan_gvrp_request_leave(dev);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700489
Patrick McHardy56addd62007-07-14 18:53:28 -0700490 dev_mc_unsync(real_dev, dev);
Chris Leeche83a2ea2008-01-31 16:53:23 -0800491 dev_unicast_unsync(real_dev, dev);
Patrick McHardy6c78dcb2007-07-14 18:52:56 -0700492 if (dev->flags & IFF_ALLMULTI)
493 dev_set_allmulti(real_dev, -1);
494 if (dev->flags & IFF_PROMISC)
495 dev_set_promiscuity(real_dev, -1);
496
Patrick McHardy8c979c22007-07-11 19:45:24 -0700497 if (compare_ether_addr(dev->dev_addr, real_dev->dev_addr))
Jiri Pirkoccffad252009-05-22 23:22:17 +0000498 dev_unicast_delete(real_dev, dev->dev_addr);
Patrick McHardy8c979c22007-07-11 19:45:24 -0700499
Jay Vosburghadc667e2009-04-25 18:03:35 -0700500 netif_carrier_off(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return 0;
502}
503
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800504static int vlan_dev_set_mac_address(struct net_device *dev, void *p)
Patrick McHardy39aaac12007-11-10 21:52:35 -0800505{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800506 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
Patrick McHardy39aaac12007-11-10 21:52:35 -0800507 struct sockaddr *addr = p;
508 int err;
509
510 if (!is_valid_ether_addr(addr->sa_data))
511 return -EADDRNOTAVAIL;
512
513 if (!(dev->flags & IFF_UP))
514 goto out;
515
516 if (compare_ether_addr(addr->sa_data, real_dev->dev_addr)) {
Jiri Pirkoccffad252009-05-22 23:22:17 +0000517 err = dev_unicast_add(real_dev, addr->sa_data);
Patrick McHardy39aaac12007-11-10 21:52:35 -0800518 if (err < 0)
519 return err;
520 }
521
522 if (compare_ether_addr(dev->dev_addr, real_dev->dev_addr))
Jiri Pirkoccffad252009-05-22 23:22:17 +0000523 dev_unicast_delete(real_dev, dev->dev_addr);
Patrick McHardy39aaac12007-11-10 21:52:35 -0800524
525out:
526 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
527 return 0;
528}
529
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800530static int vlan_dev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800532 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
Stephen Hemminger656299f2008-11-19 21:53:47 -0800533 const struct net_device_ops *ops = real_dev->netdev_ops;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 struct ifreq ifrr;
535 int err = -EOPNOTSUPP;
536
537 strncpy(ifrr.ifr_name, real_dev->name, IFNAMSIZ);
538 ifrr.ifr_ifru = ifr->ifr_ifru;
539
Patrick McHardy2029cc22008-01-21 00:26:41 -0800540 switch (cmd) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 case SIOCGMIIPHY:
542 case SIOCGMIIREG:
543 case SIOCSMIIREG:
Stephen Hemminger656299f2008-11-19 21:53:47 -0800544 if (netif_device_present(real_dev) && ops->ndo_do_ioctl)
545 err = ops->ndo_do_ioctl(real_dev, &ifrr, cmd);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 }
548
YOSHIFUJI Hideaki122952f2007-02-09 23:24:25 +0900549 if (!err)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550 ifr->ifr_ifru = ifrr.ifr_ifru;
551
552 return err;
553}
554
Frank Blaschkacc883d12009-01-08 10:50:20 -0800555static int vlan_dev_neigh_setup(struct net_device *dev, struct neigh_parms *pa)
556{
557 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
558 const struct net_device_ops *ops = real_dev->netdev_ops;
559 int err = 0;
560
561 if (netif_device_present(real_dev) && ops->ndo_neigh_setup)
David S. Miller9d40bbd2009-03-04 23:46:25 -0800562 err = ops->ndo_neigh_setup(real_dev, pa);
Frank Blaschkacc883d12009-01-08 10:50:20 -0800563
564 return err;
565}
566
Vasu Devb85daa52009-08-14 12:41:07 +0000567#if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
568static int vlan_dev_fcoe_ddp_setup(struct net_device *dev, u16 xid,
569 struct scatterlist *sgl, unsigned int sgc)
570{
571 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
572 const struct net_device_ops *ops = real_dev->netdev_ops;
573 int rc = 0;
574
575 if (ops->ndo_fcoe_ddp_setup)
576 rc = ops->ndo_fcoe_ddp_setup(real_dev, xid, sgl, sgc);
577
578 return rc;
579}
580
581static int vlan_dev_fcoe_ddp_done(struct net_device *dev, u16 xid)
582{
583 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
584 const struct net_device_ops *ops = real_dev->netdev_ops;
585 int len = 0;
586
587 if (ops->ndo_fcoe_ddp_done)
588 len = ops->ndo_fcoe_ddp_done(real_dev, xid);
589
590 return len;
591}
Yi Zou0af46d92009-08-31 12:31:55 +0000592
593static int vlan_dev_fcoe_enable(struct net_device *dev)
594{
595 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
596 const struct net_device_ops *ops = real_dev->netdev_ops;
597 int rc = -EINVAL;
598
599 if (ops->ndo_fcoe_enable)
600 rc = ops->ndo_fcoe_enable(real_dev);
601 return rc;
602}
603
604static int vlan_dev_fcoe_disable(struct net_device *dev)
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 rc = -EINVAL;
609
610 if (ops->ndo_fcoe_disable)
611 rc = ops->ndo_fcoe_disable(real_dev);
612 return rc;
613}
Vasu Devb85daa52009-08-14 12:41:07 +0000614#endif
615
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800616static void vlan_dev_change_rx_flags(struct net_device *dev, int change)
Patrick McHardy6c78dcb2007-07-14 18:52:56 -0700617{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800618 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
Patrick McHardy6c78dcb2007-07-14 18:52:56 -0700619
620 if (change & IFF_ALLMULTI)
621 dev_set_allmulti(real_dev, dev->flags & IFF_ALLMULTI ? 1 : -1);
622 if (change & IFF_PROMISC)
623 dev_set_promiscuity(real_dev, dev->flags & IFF_PROMISC ? 1 : -1);
624}
625
Chris Leeche83a2ea2008-01-31 16:53:23 -0800626static void vlan_dev_set_rx_mode(struct net_device *vlan_dev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800628 dev_mc_sync(vlan_dev_info(vlan_dev)->real_dev, vlan_dev);
Chris Leeche83a2ea2008-01-31 16:53:23 -0800629 dev_unicast_sync(vlan_dev_info(vlan_dev)->real_dev, vlan_dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630}
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800631
632/*
633 * vlan network devices have devices nesting below it, and are a special
634 * "super class" of normal network devices; split their locks off into a
635 * separate class since they always nest.
636 */
637static struct lock_class_key vlan_netdev_xmit_lock_key;
David S. Millercf508b12008-07-22 14:16:42 -0700638static struct lock_class_key vlan_netdev_addr_lock_key;
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800639
David S. Millere8a04642008-07-17 00:34:19 -0700640static void vlan_dev_set_lockdep_one(struct net_device *dev,
641 struct netdev_queue *txq,
642 void *_subclass)
David S. Millerc773e842008-07-08 23:13:53 -0700643{
644 lockdep_set_class_and_subclass(&txq->_xmit_lock,
David S. Millere8a04642008-07-17 00:34:19 -0700645 &vlan_netdev_xmit_lock_key,
646 *(int *)_subclass);
David S. Millerc773e842008-07-08 23:13:53 -0700647}
648
649static void vlan_dev_set_lockdep_class(struct net_device *dev, int subclass)
650{
David S. Millercf508b12008-07-22 14:16:42 -0700651 lockdep_set_class_and_subclass(&dev->addr_list_lock,
652 &vlan_netdev_addr_lock_key,
653 subclass);
David S. Millere8a04642008-07-17 00:34:19 -0700654 netdev_for_each_tx_queue(dev, vlan_dev_set_lockdep_one, &subclass);
David S. Millerc773e842008-07-08 23:13:53 -0700655}
656
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800657static const struct header_ops vlan_header_ops = {
658 .create = vlan_dev_hard_header,
659 .rebuild = vlan_dev_rebuild_header,
660 .parse = eth_header_parse,
661};
662
Eric Dumazetf7d1b9f2008-12-25 16:45:19 -0800663static const struct net_device_ops vlan_netdev_ops, vlan_netdev_accel_ops;
664
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800665static int vlan_dev_init(struct net_device *dev)
666{
Patrick McHardy9dfebcc2008-01-21 00:26:07 -0800667 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800668 int subclass = 0;
669
Jay Vosburghadc667e2009-04-25 18:03:35 -0700670 netif_carrier_off(dev);
671
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800672 /* IFF_BROADCAST|IFF_MULTICAST; ??? */
Patrick McHardy0ed21b32008-03-26 00:15:17 -0700673 dev->flags = real_dev->flags & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI);
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800674 dev->iflink = real_dev->ifindex;
675 dev->state = (real_dev->state & ((1<<__LINK_STATE_NOCARRIER) |
676 (1<<__LINK_STATE_DORMANT))) |
677 (1<<__LINK_STATE_PRESENT);
678
Patrick McHardy289c79a2008-05-23 00:22:04 -0700679 dev->features |= real_dev->features & real_dev->vlan_features;
Alexander Duyck1ae4be22008-09-11 20:17:05 -0700680 dev->gso_max_size = real_dev->gso_max_size;
Patrick McHardy5fb13572008-05-20 14:54:50 -0700681
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800682 /* ipv6 shared card related stuff */
683 dev->dev_id = real_dev->dev_id;
684
685 if (is_zero_ether_addr(dev->dev_addr))
686 memcpy(dev->dev_addr, real_dev->dev_addr, dev->addr_len);
687 if (is_zero_ether_addr(dev->broadcast))
688 memcpy(dev->broadcast, real_dev->broadcast, dev->addr_len);
689
Vasu Devb85daa52009-08-14 12:41:07 +0000690#if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
691 dev->fcoe_ddp_xid = real_dev->fcoe_ddp_xid;
692#endif
693
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800694 if (real_dev->features & NETIF_F_HW_VLAN_TX) {
695 dev->header_ops = real_dev->header_ops;
696 dev->hard_header_len = real_dev->hard_header_len;
Eric Dumazetf7d1b9f2008-12-25 16:45:19 -0800697 dev->netdev_ops = &vlan_netdev_accel_ops;
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800698 } else {
699 dev->header_ops = &vlan_header_ops;
700 dev->hard_header_len = real_dev->hard_header_len + VLAN_HLEN;
Eric Dumazetf7d1b9f2008-12-25 16:45:19 -0800701 dev->netdev_ops = &vlan_netdev_ops;
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800702 }
703
Joonwoo Park26a25232008-07-08 03:22:16 -0700704 if (is_vlan_dev(real_dev))
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800705 subclass = 1;
706
David S. Millerc773e842008-07-08 23:13:53 -0700707 vlan_dev_set_lockdep_class(dev, subclass);
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800708 return 0;
709}
710
Pavel Emelyanov23556322008-04-04 12:45:12 -0700711static void vlan_dev_uninit(struct net_device *dev)
712{
713 struct vlan_priority_tci_mapping *pm;
714 struct vlan_dev_info *vlan = vlan_dev_info(dev);
715 int i;
716
717 for (i = 0; i < ARRAY_SIZE(vlan->egress_priority_map); i++) {
718 while ((pm = vlan->egress_priority_map[i]) != NULL) {
719 vlan->egress_priority_map[i] = pm->next;
720 kfree(pm);
721 }
722 }
723}
724
Stephen Hemmingerb30200612008-10-28 22:12:36 -0700725static int vlan_ethtool_get_settings(struct net_device *dev,
726 struct ethtool_cmd *cmd)
727{
728 const struct vlan_dev_info *vlan = vlan_dev_info(dev);
Patrick McHardyb1b67dd2009-04-20 04:49:28 +0000729 return dev_ethtool_get_settings(vlan->real_dev, cmd);
Stephen Hemmingerb30200612008-10-28 22:12:36 -0700730}
731
732static void vlan_ethtool_get_drvinfo(struct net_device *dev,
733 struct ethtool_drvinfo *info)
734{
735 strcpy(info->driver, vlan_fullname);
736 strcpy(info->version, vlan_version);
737 strcpy(info->fw_version, "N/A");
738}
739
Patrick McHardy75b88462008-07-08 03:22:42 -0700740static u32 vlan_ethtool_get_rx_csum(struct net_device *dev)
741{
742 const struct vlan_dev_info *vlan = vlan_dev_info(dev);
Patrick McHardyb1b67dd2009-04-20 04:49:28 +0000743 return dev_ethtool_get_rx_csum(vlan->real_dev);
Patrick McHardy75b88462008-07-08 03:22:42 -0700744}
745
Patrick McHardy19b9a4e2008-07-14 22:51:01 -0700746static u32 vlan_ethtool_get_flags(struct net_device *dev)
747{
748 const struct vlan_dev_info *vlan = vlan_dev_info(dev);
Patrick McHardyb1b67dd2009-04-20 04:49:28 +0000749 return dev_ethtool_get_flags(vlan->real_dev);
Patrick McHardy19b9a4e2008-07-14 22:51:01 -0700750}
751
Patrick McHardy75b88462008-07-08 03:22:42 -0700752static const struct ethtool_ops vlan_ethtool_ops = {
Stephen Hemmingerb30200612008-10-28 22:12:36 -0700753 .get_settings = vlan_ethtool_get_settings,
754 .get_drvinfo = vlan_ethtool_get_drvinfo,
Patrick McHardy75b88462008-07-08 03:22:42 -0700755 .get_link = ethtool_op_get_link,
756 .get_rx_csum = vlan_ethtool_get_rx_csum,
Patrick McHardy19b9a4e2008-07-14 22:51:01 -0700757 .get_flags = vlan_ethtool_get_flags,
Patrick McHardy75b88462008-07-08 03:22:42 -0700758};
759
Stephen Hemminger656299f2008-11-19 21:53:47 -0800760static const struct net_device_ops vlan_netdev_ops = {
761 .ndo_change_mtu = vlan_dev_change_mtu,
762 .ndo_init = vlan_dev_init,
763 .ndo_uninit = vlan_dev_uninit,
764 .ndo_open = vlan_dev_open,
765 .ndo_stop = vlan_dev_stop,
Eric Dumazetf7d1b9f2008-12-25 16:45:19 -0800766 .ndo_start_xmit = vlan_dev_hard_start_xmit,
767 .ndo_validate_addr = eth_validate_addr,
768 .ndo_set_mac_address = vlan_dev_set_mac_address,
769 .ndo_set_rx_mode = vlan_dev_set_rx_mode,
770 .ndo_set_multicast_list = vlan_dev_set_rx_mode,
771 .ndo_change_rx_flags = vlan_dev_change_rx_flags,
772 .ndo_do_ioctl = vlan_dev_ioctl,
Frank Blaschkacc883d12009-01-08 10:50:20 -0800773 .ndo_neigh_setup = vlan_dev_neigh_setup,
Vasu Devb85daa52009-08-14 12:41:07 +0000774#if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
775 .ndo_fcoe_ddp_setup = vlan_dev_fcoe_ddp_setup,
776 .ndo_fcoe_ddp_done = vlan_dev_fcoe_ddp_done,
Yi Zou0af46d92009-08-31 12:31:55 +0000777 .ndo_fcoe_enable = vlan_dev_fcoe_enable,
778 .ndo_fcoe_disable = vlan_dev_fcoe_disable,
Vasu Devb85daa52009-08-14 12:41:07 +0000779#endif
Eric Dumazetf7d1b9f2008-12-25 16:45:19 -0800780};
781
782static const struct net_device_ops vlan_netdev_accel_ops = {
783 .ndo_change_mtu = vlan_dev_change_mtu,
784 .ndo_init = vlan_dev_init,
785 .ndo_uninit = vlan_dev_uninit,
786 .ndo_open = vlan_dev_open,
787 .ndo_stop = vlan_dev_stop,
788 .ndo_start_xmit = vlan_dev_hwaccel_hard_start_xmit,
Stephen Hemminger656299f2008-11-19 21:53:47 -0800789 .ndo_validate_addr = eth_validate_addr,
790 .ndo_set_mac_address = vlan_dev_set_mac_address,
791 .ndo_set_rx_mode = vlan_dev_set_rx_mode,
792 .ndo_set_multicast_list = vlan_dev_set_rx_mode,
793 .ndo_change_rx_flags = vlan_dev_change_rx_flags,
794 .ndo_do_ioctl = vlan_dev_ioctl,
Frank Blaschkacc883d12009-01-08 10:50:20 -0800795 .ndo_neigh_setup = vlan_dev_neigh_setup,
Vasu Devb85daa52009-08-14 12:41:07 +0000796#if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
797 .ndo_fcoe_ddp_setup = vlan_dev_fcoe_ddp_setup,
798 .ndo_fcoe_ddp_done = vlan_dev_fcoe_ddp_done,
Yi Zou0af46d92009-08-31 12:31:55 +0000799 .ndo_fcoe_enable = vlan_dev_fcoe_enable,
800 .ndo_fcoe_disable = vlan_dev_fcoe_disable,
Vasu Devb85daa52009-08-14 12:41:07 +0000801#endif
Stephen Hemminger656299f2008-11-19 21:53:47 -0800802};
803
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800804void vlan_setup(struct net_device *dev)
805{
806 ether_setup(dev);
807
808 dev->priv_flags |= IFF_802_1Q_VLAN;
Eric Dumazet93f154b2009-05-18 22:19:19 -0700809 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800810 dev->tx_queue_len = 0;
811
Stephen Hemminger656299f2008-11-19 21:53:47 -0800812 dev->netdev_ops = &vlan_netdev_ops;
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800813 dev->destructor = free_netdev;
Patrick McHardy75b88462008-07-08 03:22:42 -0700814 dev->ethtool_ops = &vlan_ethtool_ops;
Patrick McHardyef3eb3e2008-01-21 00:22:11 -0800815
816 memset(dev->broadcast, 0, ETH_ALEN);
817}