vlan: 64 bit rx counters
[linux-2.6/libata-dev.git] / net / 8021q / vlan_dev.c
blobc6456cb842faded41a5f94016c441c5b6c748f5a
1 /* -*- linux-c -*-
2 * INET 802.1Q VLAN
3 * Ethernet-type device handling.
5 * Authors: Ben Greear <greearb@candelatech.com>
6 * Please send support related email to: netdev@vger.kernel.org
7 * VLAN Home Page: http://www.candelatech.com/~greear/vlan.html
9 * 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.
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.
23 #include <linux/module.h>
24 #include <linux/slab.h>
25 #include <linux/skbuff.h>
26 #include <linux/netdevice.h>
27 #include <linux/etherdevice.h>
28 #include <linux/ethtool.h>
29 #include <net/arp.h>
31 #include "vlan.h"
32 #include "vlanproc.h"
33 #include <linux/if_vlan.h>
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.
40 * This routine CANNOT use cached dst->neigh!
41 * Really, it is used only when dst->neigh is wrong.
43 * TODO: This needs a checkup, I'm ignorant here. --BLG
45 static int vlan_dev_rebuild_header(struct sk_buff *skb)
47 struct net_device *dev = skb->dev;
48 struct vlan_ethhdr *veth = (struct vlan_ethhdr *)(skb->data);
50 switch (veth->h_vlan_encapsulated_proto) {
51 #ifdef CONFIG_INET
52 case htons(ETH_P_IP):
54 /* TODO: Confirm this will work with VLAN headers... */
55 return arp_find(veth->h_dest, skb);
56 #endif
57 default:
58 pr_debug("%s: unable to resolve type %X addresses.\n",
59 dev->name, ntohs(veth->h_vlan_encapsulated_proto));
61 memcpy(veth->h_source, dev->dev_addr, ETH_ALEN);
62 break;
65 return 0;
68 static inline struct sk_buff *vlan_check_reorder_header(struct sk_buff *skb)
70 if (vlan_dev_info(skb->dev)->flags & VLAN_FLAG_REORDER_HDR) {
71 if (skb_cow(skb, skb_headroom(skb)) < 0)
72 skb = NULL;
73 if (skb) {
74 /* Lifted from Gleb's VLAN code... */
75 memmove(skb->data - ETH_HLEN,
76 skb->data - VLAN_ETH_HLEN, 12);
77 skb->mac_header += VLAN_HLEN;
81 return skb;
84 static inline void vlan_set_encap_proto(struct sk_buff *skb,
85 struct vlan_hdr *vhdr)
87 __be16 proto;
88 unsigned char *rawp;
91 * Was a VLAN packet, grab the encapsulated protocol, which the layer
92 * three protocols care about.
95 proto = vhdr->h_vlan_encapsulated_proto;
96 if (ntohs(proto) >= 1536) {
97 skb->protocol = proto;
98 return;
101 rawp = skb->data;
102 if (*(unsigned short *)rawp == 0xFFFF)
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.
110 skb->protocol = htons(ETH_P_802_3);
111 else
113 * Real 802.2 LLC
115 skb->protocol = htons(ETH_P_802_2);
119 * Determine the packet's protocol ID. The rule here is that we
120 * 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.
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.
127 * NOTE: Should be similar to ethernet/eth.c.
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...
135 * 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
140 int vlan_skb_recv(struct sk_buff *skb, struct net_device *dev,
141 struct packet_type *ptype, struct net_device *orig_dev)
143 struct vlan_hdr *vhdr;
144 struct vlan_rx_stats *rx_stats;
145 u16 vlan_id;
146 u16 vlan_tci;
148 skb = skb_share_check(skb, GFP_ATOMIC);
149 if (skb == NULL)
150 goto err_free;
152 if (unlikely(!pskb_may_pull(skb, VLAN_HLEN)))
153 goto err_free;
155 vhdr = (struct vlan_hdr *)skb->data;
156 vlan_tci = ntohs(vhdr->h_vlan_TCI);
157 vlan_id = vlan_tci & VLAN_VID_MASK;
159 rcu_read_lock();
160 skb->dev = __find_vlan_dev(dev, vlan_id);
161 if (!skb->dev) {
162 pr_debug("%s: ERROR: No net_device for VID: %u on dev: %s\n",
163 __func__, vlan_id, dev->name);
164 goto err_unlock;
167 rx_stats = per_cpu_ptr(vlan_dev_info(skb->dev)->vlan_rx_stats,
168 smp_processor_id());
169 u64_stats_update_begin(&rx_stats->syncp);
170 rx_stats->rx_packets++;
171 rx_stats->rx_bytes += skb->len;
173 skb_pull_rcsum(skb, VLAN_HLEN);
175 skb->priority = vlan_get_ingress_priority(skb->dev, vlan_tci);
177 pr_debug("%s: priority: %u for TCI: %hu\n",
178 __func__, skb->priority, vlan_tci);
180 switch (skb->pkt_type) {
181 case PACKET_BROADCAST: /* Yeah, stats collect these together.. */
182 /* stats->broadcast ++; // no such counter :-( */
183 break;
185 case PACKET_MULTICAST:
186 rx_stats->rx_multicast++;
187 break;
189 case PACKET_OTHERHOST:
190 /* Our lower layer thinks this is not local, let's make sure.
191 * This allows the VLAN to have a different MAC than the
192 * underlying device, and still route correctly.
194 if (!compare_ether_addr(eth_hdr(skb)->h_dest,
195 skb->dev->dev_addr))
196 skb->pkt_type = PACKET_HOST;
197 break;
198 default:
199 break;
201 u64_stats_update_end(&rx_stats->syncp);
203 vlan_set_encap_proto(skb, vhdr);
205 skb = vlan_check_reorder_header(skb);
206 if (!skb) {
207 rx_stats->rx_errors++;
208 goto err_unlock;
211 netif_rx(skb);
212 rcu_read_unlock();
213 return NET_RX_SUCCESS;
215 err_unlock:
216 rcu_read_unlock();
217 err_free:
218 kfree_skb(skb);
219 return NET_RX_DROP;
222 static inline u16
223 vlan_dev_get_egress_qos_mask(struct net_device *dev, struct sk_buff *skb)
225 struct vlan_priority_tci_mapping *mp;
227 mp = vlan_dev_info(dev)->egress_priority_map[(skb->priority & 0xF)];
228 while (mp) {
229 if (mp->priority == skb->priority) {
230 return mp->vlan_qos; /* This should already be shifted
231 * to mask correctly with the
232 * VLAN's TCI */
234 mp = mp->next;
236 return 0;
240 * Create the VLAN header for an arbitrary protocol layer
242 * saddr=NULL means use device source address
243 * daddr=NULL means leave destination address (eg unresolved arp)
245 * This is called when the SKB is moving down the stack towards the
246 * physical devices.
248 static int vlan_dev_hard_header(struct sk_buff *skb, struct net_device *dev,
249 unsigned short type,
250 const void *daddr, const void *saddr,
251 unsigned int len)
253 struct vlan_hdr *vhdr;
254 unsigned int vhdrlen = 0;
255 u16 vlan_tci = 0;
256 int rc;
258 if (WARN_ON(skb_headroom(skb) < dev->hard_header_len))
259 return -ENOSPC;
261 if (!(vlan_dev_info(dev)->flags & VLAN_FLAG_REORDER_HDR)) {
262 vhdr = (struct vlan_hdr *) skb_push(skb, VLAN_HLEN);
264 vlan_tci = vlan_dev_info(dev)->vlan_id;
265 vlan_tci |= vlan_dev_get_egress_qos_mask(dev, skb);
266 vhdr->h_vlan_TCI = htons(vlan_tci);
269 * Set the protocol type. For a packet of type ETH_P_802_3/2 we
270 * put the length in here instead.
272 if (type != ETH_P_802_3 && type != ETH_P_802_2)
273 vhdr->h_vlan_encapsulated_proto = htons(type);
274 else
275 vhdr->h_vlan_encapsulated_proto = htons(len);
277 skb->protocol = htons(ETH_P_8021Q);
278 type = ETH_P_8021Q;
279 vhdrlen = VLAN_HLEN;
282 /* Before delegating work to the lower layer, enter our MAC-address */
283 if (saddr == NULL)
284 saddr = dev->dev_addr;
286 /* Now make the underlying real hard header */
287 dev = vlan_dev_info(dev)->real_dev;
288 rc = dev_hard_header(skb, dev, type, daddr, saddr, len + vhdrlen);
289 if (rc > 0)
290 rc += vhdrlen;
291 return rc;
294 static netdev_tx_t vlan_dev_hard_start_xmit(struct sk_buff *skb,
295 struct net_device *dev)
297 int i = skb_get_queue_mapping(skb);
298 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
299 struct vlan_ethhdr *veth = (struct vlan_ethhdr *)(skb->data);
300 unsigned int len;
301 int ret;
303 /* Handle non-VLAN frames if they are sent to us, for example by DHCP.
305 * NOTE: THIS ASSUMES DIX ETHERNET, SPECIFICALLY NOT SUPPORTING
306 * OTHER THINGS LIKE FDDI/TokenRing/802.3 SNAPs...
308 if (veth->h_vlan_proto != htons(ETH_P_8021Q) ||
309 vlan_dev_info(dev)->flags & VLAN_FLAG_REORDER_HDR) {
310 unsigned int orig_headroom = skb_headroom(skb);
311 u16 vlan_tci;
313 vlan_dev_info(dev)->cnt_encap_on_xmit++;
315 vlan_tci = vlan_dev_info(dev)->vlan_id;
316 vlan_tci |= vlan_dev_get_egress_qos_mask(dev, skb);
317 skb = __vlan_put_tag(skb, vlan_tci);
318 if (!skb) {
319 txq->tx_dropped++;
320 return NETDEV_TX_OK;
323 if (orig_headroom < VLAN_HLEN)
324 vlan_dev_info(dev)->cnt_inc_headroom_on_tx++;
328 skb_set_dev(skb, vlan_dev_info(dev)->real_dev);
329 len = skb->len;
330 ret = dev_queue_xmit(skb);
332 if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
333 txq->tx_packets++;
334 txq->tx_bytes += len;
335 } else
336 txq->tx_dropped++;
338 return ret;
341 static netdev_tx_t vlan_dev_hwaccel_hard_start_xmit(struct sk_buff *skb,
342 struct net_device *dev)
344 int i = skb_get_queue_mapping(skb);
345 struct netdev_queue *txq = netdev_get_tx_queue(dev, i);
346 u16 vlan_tci;
347 unsigned int len;
348 int ret;
350 vlan_tci = vlan_dev_info(dev)->vlan_id;
351 vlan_tci |= vlan_dev_get_egress_qos_mask(dev, skb);
352 skb = __vlan_hwaccel_put_tag(skb, vlan_tci);
354 skb->dev = vlan_dev_info(dev)->real_dev;
355 len = skb->len;
356 ret = dev_queue_xmit(skb);
358 if (likely(ret == NET_XMIT_SUCCESS || ret == NET_XMIT_CN)) {
359 txq->tx_packets++;
360 txq->tx_bytes += len;
361 } else
362 txq->tx_dropped++;
364 return ret;
367 static u16 vlan_dev_select_queue(struct net_device *dev, struct sk_buff *skb)
369 struct net_device *rdev = vlan_dev_info(dev)->real_dev;
370 const struct net_device_ops *ops = rdev->netdev_ops;
372 return ops->ndo_select_queue(rdev, skb);
375 static int vlan_dev_change_mtu(struct net_device *dev, int new_mtu)
377 /* TODO: gotta make sure the underlying layer can handle it,
378 * maybe an IFF_VLAN_CAPABLE flag for devices?
380 if (vlan_dev_info(dev)->real_dev->mtu < new_mtu)
381 return -ERANGE;
383 dev->mtu = new_mtu;
385 return 0;
388 void vlan_dev_set_ingress_priority(const struct net_device *dev,
389 u32 skb_prio, u16 vlan_prio)
391 struct vlan_dev_info *vlan = vlan_dev_info(dev);
393 if (vlan->ingress_priority_map[vlan_prio & 0x7] && !skb_prio)
394 vlan->nr_ingress_mappings--;
395 else if (!vlan->ingress_priority_map[vlan_prio & 0x7] && skb_prio)
396 vlan->nr_ingress_mappings++;
398 vlan->ingress_priority_map[vlan_prio & 0x7] = skb_prio;
401 int vlan_dev_set_egress_priority(const struct net_device *dev,
402 u32 skb_prio, u16 vlan_prio)
404 struct vlan_dev_info *vlan = vlan_dev_info(dev);
405 struct vlan_priority_tci_mapping *mp = NULL;
406 struct vlan_priority_tci_mapping *np;
407 u32 vlan_qos = (vlan_prio << VLAN_PRIO_SHIFT) & VLAN_PRIO_MASK;
409 /* See if a priority mapping exists.. */
410 mp = vlan->egress_priority_map[skb_prio & 0xF];
411 while (mp) {
412 if (mp->priority == skb_prio) {
413 if (mp->vlan_qos && !vlan_qos)
414 vlan->nr_egress_mappings--;
415 else if (!mp->vlan_qos && vlan_qos)
416 vlan->nr_egress_mappings++;
417 mp->vlan_qos = vlan_qos;
418 return 0;
420 mp = mp->next;
423 /* Create a new mapping then. */
424 mp = vlan->egress_priority_map[skb_prio & 0xF];
425 np = kmalloc(sizeof(struct vlan_priority_tci_mapping), GFP_KERNEL);
426 if (!np)
427 return -ENOBUFS;
429 np->next = mp;
430 np->priority = skb_prio;
431 np->vlan_qos = vlan_qos;
432 vlan->egress_priority_map[skb_prio & 0xF] = np;
433 if (vlan_qos)
434 vlan->nr_egress_mappings++;
435 return 0;
438 /* Flags are defined in the vlan_flags enum in include/linux/if_vlan.h file. */
439 int vlan_dev_change_flags(const struct net_device *dev, u32 flags, u32 mask)
441 struct vlan_dev_info *vlan = vlan_dev_info(dev);
442 u32 old_flags = vlan->flags;
444 if (mask & ~(VLAN_FLAG_REORDER_HDR | VLAN_FLAG_GVRP |
445 VLAN_FLAG_LOOSE_BINDING))
446 return -EINVAL;
448 vlan->flags = (old_flags & ~mask) | (flags & mask);
450 if (netif_running(dev) && (vlan->flags ^ old_flags) & VLAN_FLAG_GVRP) {
451 if (vlan->flags & VLAN_FLAG_GVRP)
452 vlan_gvrp_request_join(dev);
453 else
454 vlan_gvrp_request_leave(dev);
456 return 0;
459 void vlan_dev_get_realdev_name(const struct net_device *dev, char *result)
461 strncpy(result, vlan_dev_info(dev)->real_dev->name, 23);
464 static int vlan_dev_open(struct net_device *dev)
466 struct vlan_dev_info *vlan = vlan_dev_info(dev);
467 struct net_device *real_dev = vlan->real_dev;
468 int err;
470 if (!(real_dev->flags & IFF_UP) &&
471 !(vlan->flags & VLAN_FLAG_LOOSE_BINDING))
472 return -ENETDOWN;
474 if (compare_ether_addr(dev->dev_addr, real_dev->dev_addr)) {
475 err = dev_uc_add(real_dev, dev->dev_addr);
476 if (err < 0)
477 goto out;
480 if (dev->flags & IFF_ALLMULTI) {
481 err = dev_set_allmulti(real_dev, 1);
482 if (err < 0)
483 goto del_unicast;
485 if (dev->flags & IFF_PROMISC) {
486 err = dev_set_promiscuity(real_dev, 1);
487 if (err < 0)
488 goto clear_allmulti;
491 memcpy(vlan->real_dev_addr, real_dev->dev_addr, ETH_ALEN);
493 if (vlan->flags & VLAN_FLAG_GVRP)
494 vlan_gvrp_request_join(dev);
496 netif_carrier_on(dev);
497 return 0;
499 clear_allmulti:
500 if (dev->flags & IFF_ALLMULTI)
501 dev_set_allmulti(real_dev, -1);
502 del_unicast:
503 if (compare_ether_addr(dev->dev_addr, real_dev->dev_addr))
504 dev_uc_del(real_dev, dev->dev_addr);
505 out:
506 netif_carrier_off(dev);
507 return err;
510 static int vlan_dev_stop(struct net_device *dev)
512 struct vlan_dev_info *vlan = vlan_dev_info(dev);
513 struct net_device *real_dev = vlan->real_dev;
515 if (vlan->flags & VLAN_FLAG_GVRP)
516 vlan_gvrp_request_leave(dev);
518 dev_mc_unsync(real_dev, dev);
519 dev_uc_unsync(real_dev, dev);
520 if (dev->flags & IFF_ALLMULTI)
521 dev_set_allmulti(real_dev, -1);
522 if (dev->flags & IFF_PROMISC)
523 dev_set_promiscuity(real_dev, -1);
525 if (compare_ether_addr(dev->dev_addr, real_dev->dev_addr))
526 dev_uc_del(real_dev, dev->dev_addr);
528 netif_carrier_off(dev);
529 return 0;
532 static int vlan_dev_set_mac_address(struct net_device *dev, void *p)
534 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
535 struct sockaddr *addr = p;
536 int err;
538 if (!is_valid_ether_addr(addr->sa_data))
539 return -EADDRNOTAVAIL;
541 if (!(dev->flags & IFF_UP))
542 goto out;
544 if (compare_ether_addr(addr->sa_data, real_dev->dev_addr)) {
545 err = dev_uc_add(real_dev, addr->sa_data);
546 if (err < 0)
547 return err;
550 if (compare_ether_addr(dev->dev_addr, real_dev->dev_addr))
551 dev_uc_del(real_dev, dev->dev_addr);
553 out:
554 memcpy(dev->dev_addr, addr->sa_data, ETH_ALEN);
555 return 0;
558 static int vlan_dev_ioctl(struct net_device *dev, struct ifreq *ifr, int cmd)
560 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
561 const struct net_device_ops *ops = real_dev->netdev_ops;
562 struct ifreq ifrr;
563 int err = -EOPNOTSUPP;
565 strncpy(ifrr.ifr_name, real_dev->name, IFNAMSIZ);
566 ifrr.ifr_ifru = ifr->ifr_ifru;
568 switch (cmd) {
569 case SIOCGMIIPHY:
570 case SIOCGMIIREG:
571 case SIOCSMIIREG:
572 if (netif_device_present(real_dev) && ops->ndo_do_ioctl)
573 err = ops->ndo_do_ioctl(real_dev, &ifrr, cmd);
574 break;
577 if (!err)
578 ifr->ifr_ifru = ifrr.ifr_ifru;
580 return err;
583 static int vlan_dev_neigh_setup(struct net_device *dev, struct neigh_parms *pa)
585 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
586 const struct net_device_ops *ops = real_dev->netdev_ops;
587 int err = 0;
589 if (netif_device_present(real_dev) && ops->ndo_neigh_setup)
590 err = ops->ndo_neigh_setup(real_dev, pa);
592 return err;
595 #if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
596 static int vlan_dev_fcoe_ddp_setup(struct net_device *dev, u16 xid,
597 struct scatterlist *sgl, unsigned int sgc)
599 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
600 const struct net_device_ops *ops = real_dev->netdev_ops;
601 int rc = 0;
603 if (ops->ndo_fcoe_ddp_setup)
604 rc = ops->ndo_fcoe_ddp_setup(real_dev, xid, sgl, sgc);
606 return rc;
609 static int vlan_dev_fcoe_ddp_done(struct net_device *dev, u16 xid)
611 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
612 const struct net_device_ops *ops = real_dev->netdev_ops;
613 int len = 0;
615 if (ops->ndo_fcoe_ddp_done)
616 len = ops->ndo_fcoe_ddp_done(real_dev, xid);
618 return len;
621 static int vlan_dev_fcoe_enable(struct net_device *dev)
623 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
624 const struct net_device_ops *ops = real_dev->netdev_ops;
625 int rc = -EINVAL;
627 if (ops->ndo_fcoe_enable)
628 rc = ops->ndo_fcoe_enable(real_dev);
629 return rc;
632 static int vlan_dev_fcoe_disable(struct net_device *dev)
634 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
635 const struct net_device_ops *ops = real_dev->netdev_ops;
636 int rc = -EINVAL;
638 if (ops->ndo_fcoe_disable)
639 rc = ops->ndo_fcoe_disable(real_dev);
640 return rc;
643 static int vlan_dev_fcoe_get_wwn(struct net_device *dev, u64 *wwn, int type)
645 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
646 const struct net_device_ops *ops = real_dev->netdev_ops;
647 int rc = -EINVAL;
649 if (ops->ndo_fcoe_get_wwn)
650 rc = ops->ndo_fcoe_get_wwn(real_dev, wwn, type);
651 return rc;
653 #endif
655 static void vlan_dev_change_rx_flags(struct net_device *dev, int change)
657 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
659 if (change & IFF_ALLMULTI)
660 dev_set_allmulti(real_dev, dev->flags & IFF_ALLMULTI ? 1 : -1);
661 if (change & IFF_PROMISC)
662 dev_set_promiscuity(real_dev, dev->flags & IFF_PROMISC ? 1 : -1);
665 static void vlan_dev_set_rx_mode(struct net_device *vlan_dev)
667 dev_mc_sync(vlan_dev_info(vlan_dev)->real_dev, vlan_dev);
668 dev_uc_sync(vlan_dev_info(vlan_dev)->real_dev, vlan_dev);
672 * vlan network devices have devices nesting below it, and are a special
673 * "super class" of normal network devices; split their locks off into a
674 * separate class since they always nest.
676 static struct lock_class_key vlan_netdev_xmit_lock_key;
677 static struct lock_class_key vlan_netdev_addr_lock_key;
679 static void vlan_dev_set_lockdep_one(struct net_device *dev,
680 struct netdev_queue *txq,
681 void *_subclass)
683 lockdep_set_class_and_subclass(&txq->_xmit_lock,
684 &vlan_netdev_xmit_lock_key,
685 *(int *)_subclass);
688 static void vlan_dev_set_lockdep_class(struct net_device *dev, int subclass)
690 lockdep_set_class_and_subclass(&dev->addr_list_lock,
691 &vlan_netdev_addr_lock_key,
692 subclass);
693 netdev_for_each_tx_queue(dev, vlan_dev_set_lockdep_one, &subclass);
696 static const struct header_ops vlan_header_ops = {
697 .create = vlan_dev_hard_header,
698 .rebuild = vlan_dev_rebuild_header,
699 .parse = eth_header_parse,
702 static const struct net_device_ops vlan_netdev_ops, vlan_netdev_accel_ops,
703 vlan_netdev_ops_sq, vlan_netdev_accel_ops_sq;
705 static int vlan_dev_init(struct net_device *dev)
707 struct net_device *real_dev = vlan_dev_info(dev)->real_dev;
708 int subclass = 0;
710 netif_carrier_off(dev);
712 /* IFF_BROADCAST|IFF_MULTICAST; ??? */
713 dev->flags = real_dev->flags & ~(IFF_UP | IFF_PROMISC | IFF_ALLMULTI |
714 IFF_MASTER | IFF_SLAVE);
715 dev->iflink = real_dev->ifindex;
716 dev->state = (real_dev->state & ((1<<__LINK_STATE_NOCARRIER) |
717 (1<<__LINK_STATE_DORMANT))) |
718 (1<<__LINK_STATE_PRESENT);
720 dev->features |= real_dev->features & real_dev->vlan_features;
721 dev->gso_max_size = real_dev->gso_max_size;
723 /* ipv6 shared card related stuff */
724 dev->dev_id = real_dev->dev_id;
726 if (is_zero_ether_addr(dev->dev_addr))
727 memcpy(dev->dev_addr, real_dev->dev_addr, dev->addr_len);
728 if (is_zero_ether_addr(dev->broadcast))
729 memcpy(dev->broadcast, real_dev->broadcast, dev->addr_len);
731 #if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
732 dev->fcoe_ddp_xid = real_dev->fcoe_ddp_xid;
733 #endif
735 if (real_dev->features & NETIF_F_HW_VLAN_TX) {
736 dev->header_ops = real_dev->header_ops;
737 dev->hard_header_len = real_dev->hard_header_len;
738 if (real_dev->netdev_ops->ndo_select_queue)
739 dev->netdev_ops = &vlan_netdev_accel_ops_sq;
740 else
741 dev->netdev_ops = &vlan_netdev_accel_ops;
742 } else {
743 dev->header_ops = &vlan_header_ops;
744 dev->hard_header_len = real_dev->hard_header_len + VLAN_HLEN;
745 if (real_dev->netdev_ops->ndo_select_queue)
746 dev->netdev_ops = &vlan_netdev_ops_sq;
747 else
748 dev->netdev_ops = &vlan_netdev_ops;
751 if (is_vlan_dev(real_dev))
752 subclass = 1;
754 vlan_dev_set_lockdep_class(dev, subclass);
756 vlan_dev_info(dev)->vlan_rx_stats = alloc_percpu(struct vlan_rx_stats);
757 if (!vlan_dev_info(dev)->vlan_rx_stats)
758 return -ENOMEM;
760 return 0;
763 static void vlan_dev_uninit(struct net_device *dev)
765 struct vlan_priority_tci_mapping *pm;
766 struct vlan_dev_info *vlan = vlan_dev_info(dev);
767 int i;
769 free_percpu(vlan->vlan_rx_stats);
770 vlan->vlan_rx_stats = NULL;
771 for (i = 0; i < ARRAY_SIZE(vlan->egress_priority_map); i++) {
772 while ((pm = vlan->egress_priority_map[i]) != NULL) {
773 vlan->egress_priority_map[i] = pm->next;
774 kfree(pm);
779 static int vlan_ethtool_get_settings(struct net_device *dev,
780 struct ethtool_cmd *cmd)
782 const struct vlan_dev_info *vlan = vlan_dev_info(dev);
783 return dev_ethtool_get_settings(vlan->real_dev, cmd);
786 static void vlan_ethtool_get_drvinfo(struct net_device *dev,
787 struct ethtool_drvinfo *info)
789 strcpy(info->driver, vlan_fullname);
790 strcpy(info->version, vlan_version);
791 strcpy(info->fw_version, "N/A");
794 static u32 vlan_ethtool_get_rx_csum(struct net_device *dev)
796 const struct vlan_dev_info *vlan = vlan_dev_info(dev);
797 return dev_ethtool_get_rx_csum(vlan->real_dev);
800 static u32 vlan_ethtool_get_flags(struct net_device *dev)
802 const struct vlan_dev_info *vlan = vlan_dev_info(dev);
803 return dev_ethtool_get_flags(vlan->real_dev);
806 static struct rtnl_link_stats64 *vlan_dev_get_stats64(struct net_device *dev)
808 struct rtnl_link_stats64 *stats = &dev->stats64;
810 dev_txq_stats_fold(dev, &dev->stats);
812 if (vlan_dev_info(dev)->vlan_rx_stats) {
813 struct vlan_rx_stats *p, accum = {0};
814 int i;
816 for_each_possible_cpu(i) {
817 u64 rxpackets, rxbytes, rxmulticast;
818 unsigned int start;
820 p = per_cpu_ptr(vlan_dev_info(dev)->vlan_rx_stats, i);
821 do {
822 start = u64_stats_fetch_begin_bh(&p->syncp);
823 rxpackets = p->rx_packets;
824 rxbytes = p->rx_bytes;
825 rxmulticast = p->rx_multicast;
826 } while (u64_stats_fetch_retry_bh(&p->syncp, start));
827 accum.rx_packets += rxpackets;
828 accum.rx_bytes += rxbytes;
829 accum.rx_multicast += rxmulticast;
830 /* rx_errors is an ulong, not protected by syncp */
831 accum.rx_errors += p->rx_errors;
833 stats->rx_packets = accum.rx_packets;
834 stats->rx_bytes = accum.rx_bytes;
835 stats->rx_errors = accum.rx_errors;
836 stats->multicast = accum.rx_multicast;
838 return stats;
841 static const struct ethtool_ops vlan_ethtool_ops = {
842 .get_settings = vlan_ethtool_get_settings,
843 .get_drvinfo = vlan_ethtool_get_drvinfo,
844 .get_link = ethtool_op_get_link,
845 .get_rx_csum = vlan_ethtool_get_rx_csum,
846 .get_flags = vlan_ethtool_get_flags,
849 static const struct net_device_ops vlan_netdev_ops = {
850 .ndo_change_mtu = vlan_dev_change_mtu,
851 .ndo_init = vlan_dev_init,
852 .ndo_uninit = vlan_dev_uninit,
853 .ndo_open = vlan_dev_open,
854 .ndo_stop = vlan_dev_stop,
855 .ndo_start_xmit = vlan_dev_hard_start_xmit,
856 .ndo_validate_addr = eth_validate_addr,
857 .ndo_set_mac_address = vlan_dev_set_mac_address,
858 .ndo_set_rx_mode = vlan_dev_set_rx_mode,
859 .ndo_set_multicast_list = vlan_dev_set_rx_mode,
860 .ndo_change_rx_flags = vlan_dev_change_rx_flags,
861 .ndo_do_ioctl = vlan_dev_ioctl,
862 .ndo_neigh_setup = vlan_dev_neigh_setup,
863 .ndo_get_stats64 = vlan_dev_get_stats64,
864 #if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
865 .ndo_fcoe_ddp_setup = vlan_dev_fcoe_ddp_setup,
866 .ndo_fcoe_ddp_done = vlan_dev_fcoe_ddp_done,
867 .ndo_fcoe_enable = vlan_dev_fcoe_enable,
868 .ndo_fcoe_disable = vlan_dev_fcoe_disable,
869 .ndo_fcoe_get_wwn = vlan_dev_fcoe_get_wwn,
870 #endif
873 static const struct net_device_ops vlan_netdev_accel_ops = {
874 .ndo_change_mtu = vlan_dev_change_mtu,
875 .ndo_init = vlan_dev_init,
876 .ndo_uninit = vlan_dev_uninit,
877 .ndo_open = vlan_dev_open,
878 .ndo_stop = vlan_dev_stop,
879 .ndo_start_xmit = vlan_dev_hwaccel_hard_start_xmit,
880 .ndo_validate_addr = eth_validate_addr,
881 .ndo_set_mac_address = vlan_dev_set_mac_address,
882 .ndo_set_rx_mode = vlan_dev_set_rx_mode,
883 .ndo_set_multicast_list = vlan_dev_set_rx_mode,
884 .ndo_change_rx_flags = vlan_dev_change_rx_flags,
885 .ndo_do_ioctl = vlan_dev_ioctl,
886 .ndo_neigh_setup = vlan_dev_neigh_setup,
887 .ndo_get_stats64 = vlan_dev_get_stats64,
888 #if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
889 .ndo_fcoe_ddp_setup = vlan_dev_fcoe_ddp_setup,
890 .ndo_fcoe_ddp_done = vlan_dev_fcoe_ddp_done,
891 .ndo_fcoe_enable = vlan_dev_fcoe_enable,
892 .ndo_fcoe_disable = vlan_dev_fcoe_disable,
893 .ndo_fcoe_get_wwn = vlan_dev_fcoe_get_wwn,
894 #endif
897 static const struct net_device_ops vlan_netdev_ops_sq = {
898 .ndo_select_queue = vlan_dev_select_queue,
899 .ndo_change_mtu = vlan_dev_change_mtu,
900 .ndo_init = vlan_dev_init,
901 .ndo_uninit = vlan_dev_uninit,
902 .ndo_open = vlan_dev_open,
903 .ndo_stop = vlan_dev_stop,
904 .ndo_start_xmit = vlan_dev_hard_start_xmit,
905 .ndo_validate_addr = eth_validate_addr,
906 .ndo_set_mac_address = vlan_dev_set_mac_address,
907 .ndo_set_rx_mode = vlan_dev_set_rx_mode,
908 .ndo_set_multicast_list = vlan_dev_set_rx_mode,
909 .ndo_change_rx_flags = vlan_dev_change_rx_flags,
910 .ndo_do_ioctl = vlan_dev_ioctl,
911 .ndo_neigh_setup = vlan_dev_neigh_setup,
912 .ndo_get_stats64 = vlan_dev_get_stats64,
913 #if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
914 .ndo_fcoe_ddp_setup = vlan_dev_fcoe_ddp_setup,
915 .ndo_fcoe_ddp_done = vlan_dev_fcoe_ddp_done,
916 .ndo_fcoe_enable = vlan_dev_fcoe_enable,
917 .ndo_fcoe_disable = vlan_dev_fcoe_disable,
918 .ndo_fcoe_get_wwn = vlan_dev_fcoe_get_wwn,
919 #endif
922 static const struct net_device_ops vlan_netdev_accel_ops_sq = {
923 .ndo_select_queue = vlan_dev_select_queue,
924 .ndo_change_mtu = vlan_dev_change_mtu,
925 .ndo_init = vlan_dev_init,
926 .ndo_uninit = vlan_dev_uninit,
927 .ndo_open = vlan_dev_open,
928 .ndo_stop = vlan_dev_stop,
929 .ndo_start_xmit = vlan_dev_hwaccel_hard_start_xmit,
930 .ndo_validate_addr = eth_validate_addr,
931 .ndo_set_mac_address = vlan_dev_set_mac_address,
932 .ndo_set_rx_mode = vlan_dev_set_rx_mode,
933 .ndo_set_multicast_list = vlan_dev_set_rx_mode,
934 .ndo_change_rx_flags = vlan_dev_change_rx_flags,
935 .ndo_do_ioctl = vlan_dev_ioctl,
936 .ndo_neigh_setup = vlan_dev_neigh_setup,
937 .ndo_get_stats64 = vlan_dev_get_stats64,
938 #if defined(CONFIG_FCOE) || defined(CONFIG_FCOE_MODULE)
939 .ndo_fcoe_ddp_setup = vlan_dev_fcoe_ddp_setup,
940 .ndo_fcoe_ddp_done = vlan_dev_fcoe_ddp_done,
941 .ndo_fcoe_enable = vlan_dev_fcoe_enable,
942 .ndo_fcoe_disable = vlan_dev_fcoe_disable,
943 .ndo_fcoe_get_wwn = vlan_dev_fcoe_get_wwn,
944 #endif
947 void vlan_setup(struct net_device *dev)
949 ether_setup(dev);
951 dev->priv_flags |= IFF_802_1Q_VLAN;
952 dev->priv_flags &= ~IFF_XMIT_DST_RELEASE;
953 dev->tx_queue_len = 0;
955 dev->netdev_ops = &vlan_netdev_ops;
956 dev->destructor = free_netdev;
957 dev->ethtool_ops = &vlan_ethtool_ops;
959 memset(dev->broadcast, 0, ETH_ALEN);