Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 1 | /* |
| 2 | * net/dsa/tag_dsa.c - (Non-ethertype) DSA tagging |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 3 | * Copyright (c) 2008-2009 Marvell Semiconductor |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 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> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 13 | #include <linux/slab.h> |
Andrew Lunn | c6e970a | 2017-03-28 23:45:06 +0200 | [diff] [blame] | 14 | #include <net/dsa.h> |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 15 | #include "dsa_priv.h" |
| 16 | |
| 17 | #define DSA_HLEN 4 |
| 18 | |
Florian Fainelli | 4ed70ce | 2015-07-31 11:42:56 -0700 | [diff] [blame] | 19 | static struct sk_buff *dsa_xmit(struct sk_buff *skb, struct net_device *dev) |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 20 | { |
| 21 | struct dsa_slave_priv *p = netdev_priv(dev); |
| 22 | u8 *dsa_header; |
| 23 | |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 24 | /* |
| 25 | * Convert the outermost 802.1q tag to a DSA tag for tagged |
| 26 | * packets, or insert a DSA tag between the addresses and |
| 27 | * the ethertype field for untagged packets. |
| 28 | */ |
| 29 | if (skb->protocol == htons(ETH_P_8021Q)) { |
| 30 | if (skb_cow_head(skb, 0) < 0) |
| 31 | goto out_free; |
| 32 | |
| 33 | /* |
| 34 | * Construct tagged FROM_CPU DSA tag from 802.1q tag. |
| 35 | */ |
| 36 | dsa_header = skb->data + 2 * ETH_ALEN; |
Vivien Didelot | afdcf15 | 2017-01-27 15:29:39 -0500 | [diff] [blame] | 37 | dsa_header[0] = 0x60 | p->dp->ds->index; |
| 38 | dsa_header[1] = p->dp->index << 3; |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 39 | |
| 40 | /* |
| 41 | * Move CFI field from byte 2 to byte 1. |
| 42 | */ |
| 43 | if (dsa_header[2] & 0x10) { |
| 44 | dsa_header[1] |= 0x01; |
| 45 | dsa_header[2] &= ~0x10; |
| 46 | } |
| 47 | } else { |
| 48 | if (skb_cow_head(skb, DSA_HLEN) < 0) |
| 49 | goto out_free; |
| 50 | skb_push(skb, DSA_HLEN); |
| 51 | |
| 52 | memmove(skb->data, skb->data + DSA_HLEN, 2 * ETH_ALEN); |
| 53 | |
| 54 | /* |
| 55 | * Construct untagged FROM_CPU DSA tag. |
| 56 | */ |
| 57 | dsa_header = skb->data + 2 * ETH_ALEN; |
Vivien Didelot | afdcf15 | 2017-01-27 15:29:39 -0500 | [diff] [blame] | 58 | dsa_header[0] = 0x40 | p->dp->ds->index; |
| 59 | dsa_header[1] = p->dp->index << 3; |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 60 | dsa_header[2] = 0x00; |
| 61 | dsa_header[3] = 0x00; |
| 62 | } |
| 63 | |
Florian Fainelli | 4ed70ce | 2015-07-31 11:42:56 -0700 | [diff] [blame] | 64 | return skb; |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 65 | |
| 66 | out_free: |
| 67 | kfree_skb(skb); |
Florian Fainelli | 4ed70ce | 2015-07-31 11:42:56 -0700 | [diff] [blame] | 68 | return NULL; |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | static int dsa_rcv(struct sk_buff *skb, struct net_device *dev, |
| 72 | struct packet_type *pt, struct net_device *orig_dev) |
| 73 | { |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 74 | struct dsa_switch_tree *dst = dev->dsa_ptr; |
| 75 | struct dsa_switch *ds; |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 76 | u8 *dsa_header; |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 77 | int source_device; |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 78 | int source_port; |
| 79 | |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 80 | if (unlikely(!pskb_may_pull(skb, DSA_HLEN))) |
| 81 | goto out_drop; |
| 82 | |
| 83 | /* |
| 84 | * The ethertype field is part of the DSA header. |
| 85 | */ |
| 86 | dsa_header = skb->data - 2; |
| 87 | |
| 88 | /* |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 89 | * Check that frame type is either TO_CPU or FORWARD. |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 90 | */ |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 91 | if ((dsa_header[0] & 0xc0) != 0x00 && (dsa_header[0] & 0xc0) != 0xc0) |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 92 | goto out_drop; |
| 93 | |
| 94 | /* |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 95 | * Determine source device and port. |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 96 | */ |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 97 | source_device = dsa_header[0] & 0x1f; |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 98 | source_port = (dsa_header[1] >> 3) & 0x1f; |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 99 | |
| 100 | /* |
| 101 | * Check that the source device exists and that the source |
| 102 | * port is a registered DSA port. |
| 103 | */ |
Andrew Lunn | 149cafd | 2016-06-04 21:16:56 +0200 | [diff] [blame] | 104 | if (source_device >= DSA_MAX_SWITCHES) |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 105 | goto out_drop; |
Andrew Lunn | 149cafd | 2016-06-04 21:16:56 +0200 | [diff] [blame] | 106 | |
Lennert Buytenhek | e84665c | 2009-03-20 09:52:09 +0000 | [diff] [blame] | 107 | ds = dst->ds[source_device]; |
Andrew Lunn | 149cafd | 2016-06-04 21:16:56 +0200 | [diff] [blame] | 108 | if (!ds) |
| 109 | goto out_drop; |
| 110 | |
Vivien Didelot | 26895e2 | 2017-01-27 15:29:37 -0500 | [diff] [blame] | 111 | if (source_port >= ds->num_ports || !ds->ports[source_port].netdev) |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 112 | goto out_drop; |
| 113 | |
| 114 | /* |
| 115 | * Convert the DSA header to an 802.1q header if the 'tagged' |
| 116 | * bit in the DSA header is set. If the 'tagged' bit is clear, |
| 117 | * delete the DSA header entirely. |
| 118 | */ |
| 119 | if (dsa_header[0] & 0x20) { |
| 120 | u8 new_header[4]; |
| 121 | |
| 122 | /* |
| 123 | * Insert 802.1q ethertype and copy the VLAN-related |
| 124 | * fields, but clear the bit that will hold CFI (since |
| 125 | * DSA uses that bit location for another purpose). |
| 126 | */ |
| 127 | new_header[0] = (ETH_P_8021Q >> 8) & 0xff; |
| 128 | new_header[1] = ETH_P_8021Q & 0xff; |
| 129 | new_header[2] = dsa_header[2] & ~0x10; |
| 130 | new_header[3] = dsa_header[3]; |
| 131 | |
| 132 | /* |
| 133 | * Move CFI bit from its place in the DSA header to |
| 134 | * its 802.1q-designated place. |
| 135 | */ |
| 136 | if (dsa_header[1] & 0x01) |
| 137 | new_header[2] |= 0x10; |
| 138 | |
| 139 | /* |
| 140 | * Update packet checksum if skb is CHECKSUM_COMPLETE. |
| 141 | */ |
| 142 | if (skb->ip_summed == CHECKSUM_COMPLETE) { |
| 143 | __wsum c = skb->csum; |
| 144 | c = csum_add(c, csum_partial(new_header + 2, 2, 0)); |
| 145 | c = csum_sub(c, csum_partial(dsa_header + 2, 2, 0)); |
| 146 | skb->csum = c; |
| 147 | } |
| 148 | |
| 149 | memcpy(dsa_header, new_header, DSA_HLEN); |
| 150 | } else { |
| 151 | /* |
| 152 | * Remove DSA tag and update checksum. |
| 153 | */ |
| 154 | skb_pull_rcsum(skb, DSA_HLEN); |
| 155 | memmove(skb->data - ETH_HLEN, |
| 156 | skb->data - ETH_HLEN - DSA_HLEN, |
| 157 | 2 * ETH_ALEN); |
| 158 | } |
| 159 | |
Andrew Lunn | c8b0980 | 2016-06-04 21:16:57 +0200 | [diff] [blame] | 160 | skb->dev = ds->ports[source_port].netdev; |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 161 | skb_push(skb, ETH_HLEN); |
Lennert Buytenhek | 14ee674 | 2008-11-10 21:52:42 -0800 | [diff] [blame] | 162 | skb->pkt_type = PACKET_HOST; |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 163 | skb->protocol = eth_type_trans(skb, skb->dev); |
| 164 | |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 165 | skb->dev->stats.rx_packets++; |
| 166 | skb->dev->stats.rx_bytes += skb->len; |
| 167 | |
| 168 | netif_receive_skb(skb); |
| 169 | |
| 170 | return 0; |
| 171 | |
| 172 | out_drop: |
| 173 | kfree_skb(skb); |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 174 | return 0; |
| 175 | } |
| 176 | |
Florian Fainelli | 3e8a72d | 2014-08-27 17:04:46 -0700 | [diff] [blame] | 177 | const struct dsa_device_ops dsa_netdev_ops = { |
| 178 | .xmit = dsa_xmit, |
| 179 | .rcv = dsa_rcv, |
Lennert Buytenhek | cf85d08 | 2008-10-07 13:45:02 +0000 | [diff] [blame] | 180 | }; |