blob: 5e3903eb1afa644b8b8861e60e112957346e5104 [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Lennert Buytenhek396138f02008-10-07 13:46:07 +000014#include "dsa_priv.h"
15
Florian Fainelli4ed70ce2015-07-31 11:42:56 -070016static struct sk_buff *trailer_xmit(struct sk_buff *skb, struct net_device *dev)
Lennert Buytenhek396138f02008-10-07 13:46:07 +000017{
18 struct dsa_slave_priv *p = netdev_priv(dev);
19 struct sk_buff *nskb;
20 int padlen;
21 u8 *trailer;
22
Lennert Buytenhek396138f02008-10-07 13:46:07 +000023 /*
24 * We have to make sure that the trailer ends up as the very
25 * last 4 bytes of the packet. This means that we have to pad
26 * the packet to the minimum ethernet frame size, if necessary,
27 * before adding the trailer.
28 */
29 padlen = 0;
30 if (skb->len < 60)
31 padlen = 60 - skb->len;
32
33 nskb = alloc_skb(NET_IP_ALIGN + skb->len + padlen + 4, GFP_ATOMIC);
34 if (nskb == NULL) {
35 kfree_skb(skb);
Florian Fainelli4ed70ce2015-07-31 11:42:56 -070036 return NULL;
Lennert Buytenhek396138f02008-10-07 13:46:07 +000037 }
38 skb_reserve(nskb, NET_IP_ALIGN);
39
40 skb_reset_mac_header(nskb);
41 skb_set_network_header(nskb, skb_network_header(skb) - skb->head);
42 skb_set_transport_header(nskb, skb_transport_header(skb) - skb->head);
43 skb_copy_and_csum_dev(skb, skb_put(nskb, skb->len));
44 kfree_skb(skb);
45
46 if (padlen) {
47 u8 *pad = skb_put(nskb, padlen);
48 memset(pad, 0, padlen);
49 }
50
51 trailer = skb_put(nskb, 4);
52 trailer[0] = 0x80;
53 trailer[1] = 1 << p->port;
54 trailer[2] = 0x10;
55 trailer[3] = 0x00;
56
Florian Fainelli4ed70ce2015-07-31 11:42:56 -070057 return nskb;
Lennert Buytenhek396138f02008-10-07 13:46:07 +000058}
59
60static int trailer_rcv(struct sk_buff *skb, struct net_device *dev,
61 struct packet_type *pt, struct net_device *orig_dev)
62{
Lennert Buytenheke84665c2009-03-20 09:52:09 +000063 struct dsa_switch_tree *dst = dev->dsa_ptr;
64 struct dsa_switch *ds;
Lennert Buytenhek396138f02008-10-07 13:46:07 +000065 u8 *trailer;
66 int source_port;
67
Lennert Buytenheke84665c2009-03-20 09:52:09 +000068 if (unlikely(dst == NULL))
Lennert Buytenhek396138f02008-10-07 13:46:07 +000069 goto out_drop;
Lennert Buytenheke84665c2009-03-20 09:52:09 +000070 ds = dst->ds[0];
Lennert Buytenhek396138f02008-10-07 13:46:07 +000071
72 skb = skb_unshare(skb, GFP_ATOMIC);
73 if (skb == NULL)
74 goto out;
75
76 if (skb_linearize(skb))
77 goto out_drop;
78
79 trailer = skb_tail_pointer(skb) - 4;
80 if (trailer[0] != 0x80 || (trailer[1] & 0xf8) != 0x00 ||
Neil Armstrongfbd03512015-09-22 11:28:14 +020081 (trailer[2] & 0xef) != 0x00 || trailer[3] != 0x00)
Lennert Buytenhek396138f02008-10-07 13:46:07 +000082 goto out_drop;
83
84 source_port = trailer[1] & 7;
Andrew Lunnc8b09802016-06-04 21:16:57 +020085 if (source_port >= DSA_MAX_PORTS || !ds->ports[source_port].netdev)
Lennert Buytenhek396138f02008-10-07 13:46:07 +000086 goto out_drop;
87
88 pskb_trim_rcsum(skb, skb->len - 4);
89
Andrew Lunnc8b09802016-06-04 21:16:57 +020090 skb->dev = ds->ports[source_port].netdev;
Lennert Buytenhek396138f02008-10-07 13:46:07 +000091 skb_push(skb, ETH_HLEN);
Lennert Buytenhek14ee6742008-11-10 21:52:42 -080092 skb->pkt_type = PACKET_HOST;
Lennert Buytenhek396138f02008-10-07 13:46:07 +000093 skb->protocol = eth_type_trans(skb, skb->dev);
94
Lennert Buytenhek396138f02008-10-07 13:46:07 +000095 skb->dev->stats.rx_packets++;
96 skb->dev->stats.rx_bytes += skb->len;
97
98 netif_receive_skb(skb);
99
100 return 0;
101
102out_drop:
103 kfree_skb(skb);
104out:
105 return 0;
106}
107
Florian Fainelli3e8a72d2014-08-27 17:04:46 -0700108const struct dsa_device_ops trailer_netdev_ops = {
109 .xmit = trailer_xmit,
110 .rcv = trailer_rcv,
Lennert Buytenhek396138f02008-10-07 13:46:07 +0000111};