tag_edsa.c 5.0 KB

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