Merge tag 'for-linus-20190706' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / net / dsa / tag_dsa.c
blob7ddec9794477c1f0798ea58bf85740843bf3d960
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3 * net/dsa/tag_dsa.c - (Non-ethertype) DSA tagging
4 * Copyright (c) 2008-2009 Marvell Semiconductor
5 */
7 #include <linux/etherdevice.h>
8 #include <linux/list.h>
9 #include <linux/slab.h>
11 #include "dsa_priv.h"
13 #define DSA_HLEN 4
15 static struct sk_buff *dsa_xmit(struct sk_buff *skb, struct net_device *dev)
17 struct dsa_port *dp = dsa_slave_to_port(dev);
18 u8 *dsa_header;
21 * Convert the outermost 802.1q tag to a DSA tag for tagged
22 * packets, or insert a DSA tag between the addresses and
23 * the ethertype field for untagged packets.
25 if (skb->protocol == htons(ETH_P_8021Q)) {
26 if (skb_cow_head(skb, 0) < 0)
27 return NULL;
30 * Construct tagged FROM_CPU DSA tag from 802.1q tag.
32 dsa_header = skb->data + 2 * ETH_ALEN;
33 dsa_header[0] = 0x60 | dp->ds->index;
34 dsa_header[1] = dp->index << 3;
37 * Move CFI field from byte 2 to byte 1.
39 if (dsa_header[2] & 0x10) {
40 dsa_header[1] |= 0x01;
41 dsa_header[2] &= ~0x10;
43 } else {
44 if (skb_cow_head(skb, DSA_HLEN) < 0)
45 return NULL;
46 skb_push(skb, DSA_HLEN);
48 memmove(skb->data, skb->data + DSA_HLEN, 2 * ETH_ALEN);
51 * Construct untagged FROM_CPU DSA tag.
53 dsa_header = skb->data + 2 * ETH_ALEN;
54 dsa_header[0] = 0x40 | dp->ds->index;
55 dsa_header[1] = dp->index << 3;
56 dsa_header[2] = 0x00;
57 dsa_header[3] = 0x00;
60 return skb;
63 static struct sk_buff *dsa_rcv(struct sk_buff *skb, struct net_device *dev,
64 struct packet_type *pt)
66 u8 *dsa_header;
67 int source_device;
68 int source_port;
70 if (unlikely(!pskb_may_pull(skb, DSA_HLEN)))
71 return NULL;
74 * The ethertype field is part of the DSA header.
76 dsa_header = skb->data - 2;
79 * Check that frame type is either TO_CPU or FORWARD.
81 if ((dsa_header[0] & 0xc0) != 0x00 && (dsa_header[0] & 0xc0) != 0xc0)
82 return NULL;
85 * Determine source device and port.
87 source_device = dsa_header[0] & 0x1f;
88 source_port = (dsa_header[1] >> 3) & 0x1f;
90 skb->dev = dsa_master_find_slave(dev, source_device, source_port);
91 if (!skb->dev)
92 return NULL;
95 * Convert the DSA header to an 802.1q header if the 'tagged'
96 * bit in the DSA header is set. If the 'tagged' bit is clear,
97 * delete the DSA header entirely.
99 if (dsa_header[0] & 0x20) {
100 u8 new_header[4];
103 * Insert 802.1q ethertype and copy the VLAN-related
104 * fields, but clear the bit that will hold CFI (since
105 * DSA uses that bit location for another purpose).
107 new_header[0] = (ETH_P_8021Q >> 8) & 0xff;
108 new_header[1] = ETH_P_8021Q & 0xff;
109 new_header[2] = dsa_header[2] & ~0x10;
110 new_header[3] = dsa_header[3];
113 * Move CFI bit from its place in the DSA header to
114 * its 802.1q-designated place.
116 if (dsa_header[1] & 0x01)
117 new_header[2] |= 0x10;
120 * Update packet checksum if skb is CHECKSUM_COMPLETE.
122 if (skb->ip_summed == CHECKSUM_COMPLETE) {
123 __wsum c = skb->csum;
124 c = csum_add(c, csum_partial(new_header + 2, 2, 0));
125 c = csum_sub(c, csum_partial(dsa_header + 2, 2, 0));
126 skb->csum = c;
129 memcpy(dsa_header, new_header, DSA_HLEN);
130 } else {
132 * Remove DSA tag and update checksum.
134 skb_pull_rcsum(skb, DSA_HLEN);
135 memmove(skb->data - ETH_HLEN,
136 skb->data - ETH_HLEN - DSA_HLEN,
137 2 * ETH_ALEN);
140 skb->offload_fwd_mark = 1;
142 return skb;
145 static int dsa_tag_flow_dissect(const struct sk_buff *skb, __be16 *proto,
146 int *offset)
148 *offset = 4;
149 *proto = ((__be16 *)skb->data)[1];
150 return 0;
153 static const struct dsa_device_ops dsa_netdev_ops = {
154 .name = "dsa",
155 .proto = DSA_TAG_PROTO_DSA,
156 .xmit = dsa_xmit,
157 .rcv = dsa_rcv,
158 .flow_dissect = dsa_tag_flow_dissect,
159 .overhead = DSA_HLEN,
162 MODULE_LICENSE("GPL");
163 MODULE_ALIAS_DSA_TAG_DRIVER(DSA_TAG_PROTO_DSA);
165 module_dsa_tag_driver(dsa_netdev_ops);