net: dsa: remove out_drop label in taggers rcv
[linux-2.6-block.git] / net / dsa / tag_edsa.c
CommitLineData
91da11f8
LB
1/*
2 * net/dsa/tag_edsa.c - Ethertype DSA tagging
e84665c9 3 * Copyright (c) 2008-2009 Marvell Semiconductor
91da11f8
LB
4 *
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>
5a0e3ad6 13#include <linux/slab.h>
ea5dd34b 14
91da11f8
LB
15#include "dsa_priv.h"
16
17#define DSA_HLEN 4
18#define EDSA_HLEN 8
19
4ed70ce9 20static struct sk_buff *edsa_xmit(struct sk_buff *skb, struct net_device *dev)
91da11f8
LB
21{
22 struct dsa_slave_priv *p = netdev_priv(dev);
23 u8 *edsa_header;
24
91da11f8
LB
25 /*
26 * Convert the outermost 802.1q tag to a DSA tag and prepend
27 * a DSA ethertype field is the packet is tagged, or insert
28 * a DSA ethertype plus DSA tag between the addresses and the
29 * current ethertype field if the packet is untagged.
30 */
31 if (skb->protocol == htons(ETH_P_8021Q)) {
32 if (skb_cow_head(skb, DSA_HLEN) < 0)
33 goto out_free;
34 skb_push(skb, DSA_HLEN);
35
36 memmove(skb->data, skb->data + DSA_HLEN, 2 * ETH_ALEN);
37
38 /*
39 * Construct tagged FROM_CPU DSA tag from 802.1q tag.
40 */
41 edsa_header = skb->data + 2 * ETH_ALEN;
42 edsa_header[0] = (ETH_P_EDSA >> 8) & 0xff;
43 edsa_header[1] = ETH_P_EDSA & 0xff;
44 edsa_header[2] = 0x00;
45 edsa_header[3] = 0x00;
afdcf151
VD
46 edsa_header[4] = 0x60 | p->dp->ds->index;
47 edsa_header[5] = p->dp->index << 3;
91da11f8
LB
48
49 /*
50 * Move CFI field from byte 6 to byte 5.
51 */
52 if (edsa_header[6] & 0x10) {
53 edsa_header[5] |= 0x01;
54 edsa_header[6] &= ~0x10;
55 }
56 } else {
57 if (skb_cow_head(skb, EDSA_HLEN) < 0)
58 goto out_free;
59 skb_push(skb, EDSA_HLEN);
60
61 memmove(skb->data, skb->data + EDSA_HLEN, 2 * ETH_ALEN);
62
63 /*
64 * Construct untagged FROM_CPU DSA tag.
65 */
66 edsa_header = skb->data + 2 * ETH_ALEN;
67 edsa_header[0] = (ETH_P_EDSA >> 8) & 0xff;
68 edsa_header[1] = ETH_P_EDSA & 0xff;
69 edsa_header[2] = 0x00;
70 edsa_header[3] = 0x00;
afdcf151
VD
71 edsa_header[4] = 0x40 | p->dp->ds->index;
72 edsa_header[5] = p->dp->index << 3;
91da11f8
LB
73 edsa_header[6] = 0x00;
74 edsa_header[7] = 0x00;
75 }
76
4ed70ce9 77 return skb;
91da11f8
LB
78
79out_free:
80 kfree_skb(skb);
4ed70ce9 81 return NULL;
91da11f8
LB
82}
83
a86d8bec
FF
84static struct sk_buff *edsa_rcv(struct sk_buff *skb, struct net_device *dev,
85 struct packet_type *pt,
86 struct net_device *orig_dev)
91da11f8 87{
e84665c9
LB
88 struct dsa_switch_tree *dst = dev->dsa_ptr;
89 struct dsa_switch *ds;
91da11f8 90 u8 *edsa_header;
e84665c9 91 int source_device;
91da11f8
LB
92 int source_port;
93
91da11f8 94 if (unlikely(!pskb_may_pull(skb, EDSA_HLEN)))
54709795 95 return NULL;
91da11f8
LB
96
97 /*
98 * Skip the two null bytes after the ethertype.
99 */
100 edsa_header = skb->data + 2;
101
102 /*
e84665c9 103 * Check that frame type is either TO_CPU or FORWARD.
91da11f8 104 */
e84665c9 105 if ((edsa_header[0] & 0xc0) != 0x00 && (edsa_header[0] & 0xc0) != 0xc0)
54709795 106 return NULL;
91da11f8
LB
107
108 /*
e84665c9 109 * Determine source device and port.
91da11f8 110 */
e84665c9 111 source_device = edsa_header[0] & 0x1f;
91da11f8 112 source_port = (edsa_header[1] >> 3) & 0x1f;
e84665c9
LB
113
114 /*
115 * Check that the source device exists and that the source
116 * port is a registered DSA port.
117 */
149cafd7 118 if (source_device >= DSA_MAX_SWITCHES)
54709795 119 return NULL;
149cafd7 120
e84665c9 121 ds = dst->ds[source_device];
149cafd7 122 if (!ds)
54709795 123 return NULL;
149cafd7 124
26895e29 125 if (source_port >= ds->num_ports || !ds->ports[source_port].netdev)
54709795 126 return NULL;
91da11f8
LB
127
128 /*
129 * If the 'tagged' bit is set, convert the DSA tag to a 802.1q
130 * tag and delete the ethertype part. If the 'tagged' bit is
131 * clear, delete the ethertype and the DSA tag parts.
132 */
133 if (edsa_header[0] & 0x20) {
134 u8 new_header[4];
135
136 /*
137 * Insert 802.1q ethertype and copy the VLAN-related
138 * fields, but clear the bit that will hold CFI (since
139 * DSA uses that bit location for another purpose).
140 */
141 new_header[0] = (ETH_P_8021Q >> 8) & 0xff;
142 new_header[1] = ETH_P_8021Q & 0xff;
143 new_header[2] = edsa_header[2] & ~0x10;
144 new_header[3] = edsa_header[3];
145
146 /*
147 * Move CFI bit from its place in the DSA header to
148 * its 802.1q-designated place.
149 */
150 if (edsa_header[1] & 0x01)
151 new_header[2] |= 0x10;
152
153 skb_pull_rcsum(skb, DSA_HLEN);
154
155 /*
156 * Update packet checksum if skb is CHECKSUM_COMPLETE.
157 */
158 if (skb->ip_summed == CHECKSUM_COMPLETE) {
159 __wsum c = skb->csum;
160 c = csum_add(c, csum_partial(new_header + 2, 2, 0));
161 c = csum_sub(c, csum_partial(edsa_header + 2, 2, 0));
162 skb->csum = c;
163 }
164
165 memcpy(edsa_header, new_header, DSA_HLEN);
166
167 memmove(skb->data - ETH_HLEN,
168 skb->data - ETH_HLEN - DSA_HLEN,
169 2 * ETH_ALEN);
170 } else {
171 /*
172 * Remove DSA tag and update checksum.
173 */
174 skb_pull_rcsum(skb, EDSA_HLEN);
175 memmove(skb->data - ETH_HLEN,
176 skb->data - ETH_HLEN - EDSA_HLEN,
177 2 * ETH_ALEN);
178 }
179
c8b09808 180 skb->dev = ds->ports[source_port].netdev;
91da11f8 181
a86d8bec 182 return skb;
91da11f8
LB
183}
184
3e8a72d1
FF
185const struct dsa_device_ops edsa_netdev_ops = {
186 .xmit = edsa_xmit,
187 .rcv = edsa_rcv,
91da11f8 188};