blob: 94bc260d015d11f1a321ca3f3876c7b901716302 [file] [log] [blame]
Lennert Buytenhek396138f02008-10-07 13:46:07 +00001/*
2 * net/dsa/tag_trailer.c - Trailer tag format handling
Lennert Buytenheke84665c2009-03-20 09:52:09 +00003 * Copyright (c) 2008-2009 Marvell Semiconductor
Lennert Buytenhek396138f02008-10-07 13:46:07 +00004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
9 */
10
11#include <linux/etherdevice.h>
12#include <linux/list.h>
13#include <linux/netdevice.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090014#include <linux/slab.h>
Lennert Buytenhek396138f02008-10-07 13:46:07 +000015#include "dsa_priv.h"
16
Stephen Hemminger6fef4c02009-08-31 19:50:41 +000017netdev_tx_t trailer_xmit(struct sk_buff *skb, struct net_device *dev)
Lennert Buytenhek396138f02008-10-07 13:46:07 +000018{
19 struct dsa_slave_priv *p = netdev_priv(dev);
20 struct sk_buff *nskb;
21 int padlen;
22 u8 *trailer;
23
24 dev->stats.tx_packets++;
25 dev->stats.tx_bytes += skb->len;
26
27 /*
28 * We have to make sure that the trailer ends up as the very
29 * last 4 bytes of the packet. This means that we have to pad
30 * the packet to the minimum ethernet frame size, if necessary,
31 * before adding the trailer.
32 */
33 padlen = 0;
34 if (skb->len < 60)
35 padlen = 60 - skb->len;
36
37 nskb = alloc_skb(NET_IP_ALIGN + skb->len + padlen + 4, GFP_ATOMIC);
38 if (nskb == NULL) {
39 kfree_skb(skb);
40 return NETDEV_TX_OK;
41 }
42 skb_reserve(nskb, NET_IP_ALIGN);
43
44 skb_reset_mac_header(nskb);
45 skb_set_network_header(nskb, skb_network_header(skb) - skb->head);
46 skb_set_transport_header(nskb, skb_transport_header(skb) - skb->head);
47 skb_copy_and_csum_dev(skb, skb_put(nskb, skb->len));
48 kfree_skb(skb);
49
50 if (padlen) {
51 u8 *pad = skb_put(nskb, padlen);
52 memset(pad, 0, padlen);
53 }
54
55 trailer = skb_put(nskb, 4);
56 trailer[0] = 0x80;
57 trailer[1] = 1 << p->port;
58 trailer[2] = 0x10;
59 trailer[3] = 0x00;
60
61 nskb->protocol = htons(ETH_P_TRAILER);
62
Lennert Buytenheke84665c2009-03-20 09:52:09 +000063 nskb->dev = p->parent->dst->master_netdev;
Lennert Buytenhek396138f02008-10-07 13:46:07 +000064 dev_queue_xmit(nskb);
65
66 return NETDEV_TX_OK;
67}
68
69static int trailer_rcv(struct sk_buff *skb, struct net_device *dev,
70 struct packet_type *pt, struct net_device *orig_dev)
71{
Lennert Buytenheke84665c2009-03-20 09:52:09 +000072 struct dsa_switch_tree *dst = dev->dsa_ptr;
73 struct dsa_switch *ds;
Lennert Buytenhek396138f02008-10-07 13:46:07 +000074 u8 *trailer;
75 int source_port;
76
Lennert Buytenheke84665c2009-03-20 09:52:09 +000077 if (unlikely(dst == NULL))
Lennert Buytenhek396138f02008-10-07 13:46:07 +000078 goto out_drop;
Lennert Buytenheke84665c2009-03-20 09:52:09 +000079 ds = dst->ds[0];
Lennert Buytenhek396138f02008-10-07 13:46:07 +000080
81 skb = skb_unshare(skb, GFP_ATOMIC);
82 if (skb == NULL)
83 goto out;
84
85 if (skb_linearize(skb))
86 goto out_drop;
87
88 trailer = skb_tail_pointer(skb) - 4;
89 if (trailer[0] != 0x80 || (trailer[1] & 0xf8) != 0x00 ||
90 (trailer[3] & 0xef) != 0x00 || trailer[3] != 0x00)
91 goto out_drop;
92
93 source_port = trailer[1] & 7;
94 if (source_port >= DSA_MAX_PORTS || ds->ports[source_port] == NULL)
95 goto out_drop;
96
97 pskb_trim_rcsum(skb, skb->len - 4);
98
99 skb->dev = ds->ports[source_port];
100 skb_push(skb, ETH_HLEN);
Lennert Buytenhek14ee6742008-11-10 21:52:42 -0800101 skb->pkt_type = PACKET_HOST;
Lennert Buytenhek396138f02008-10-07 13:46:07 +0000102 skb->protocol = eth_type_trans(skb, skb->dev);
103
Lennert Buytenhek396138f02008-10-07 13:46:07 +0000104 skb->dev->stats.rx_packets++;
105 skb->dev->stats.rx_bytes += skb->len;
106
107 netif_receive_skb(skb);
108
109 return 0;
110
111out_drop:
112 kfree_skb(skb);
113out:
114 return 0;
115}
116
Ben Hutchings7df899c2011-11-25 14:35:02 +0000117struct packet_type trailer_packet_type __read_mostly = {
Harvey Harrison09640e62009-02-01 00:45:17 -0800118 .type = cpu_to_be16(ETH_P_TRAILER),
Lennert Buytenhek396138f02008-10-07 13:46:07 +0000119 .func = trailer_rcv,
120};