tag_edsa.c 5.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  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->dev = p->parent->dst->master_netdev;
  69. dev_queue_xmit(skb);
  70. return NETDEV_TX_OK;
  71. out_free:
  72. kfree_skb(skb);
  73. return NETDEV_TX_OK;
  74. }
  75. static int edsa_rcv(struct sk_buff *skb, struct net_device *dev,
  76. struct packet_type *pt, struct net_device *orig_dev)
  77. {
  78. struct dsa_switch_tree *dst = dev->dsa_ptr;
  79. struct dsa_switch *ds;
  80. u8 *edsa_header;
  81. int source_device;
  82. int source_port;
  83. if (unlikely(dst == NULL))
  84. goto out_drop;
  85. skb = skb_unshare(skb, GFP_ATOMIC);
  86. if (skb == NULL)
  87. goto out;
  88. if (unlikely(!pskb_may_pull(skb, EDSA_HLEN)))
  89. goto out_drop;
  90. /*
  91. * Skip the two null bytes after the ethertype.
  92. */
  93. edsa_header = skb->data + 2;
  94. /*
  95. * Check that frame type is either TO_CPU or FORWARD.
  96. */
  97. if ((edsa_header[0] & 0xc0) != 0x00 && (edsa_header[0] & 0xc0) != 0xc0)
  98. goto out_drop;
  99. /*
  100. * Determine source device and port.
  101. */
  102. source_device = edsa_header[0] & 0x1f;
  103. source_port = (edsa_header[1] >> 3) & 0x1f;
  104. /*
  105. * Check that the source device exists and that the source
  106. * port is a registered DSA port.
  107. */
  108. if (source_device >= dst->pd->nr_chips)
  109. goto out_drop;
  110. ds = dst->ds[source_device];
  111. if (source_port >= DSA_MAX_PORTS || ds->ports[source_port] == NULL)
  112. goto out_drop;
  113. /*
  114. * If the 'tagged' bit is set, convert the DSA tag to a 802.1q
  115. * tag and delete the ethertype part. If the 'tagged' bit is
  116. * clear, delete the ethertype and the DSA tag parts.
  117. */
  118. if (edsa_header[0] & 0x20) {
  119. u8 new_header[4];
  120. /*
  121. * Insert 802.1q ethertype and copy the VLAN-related
  122. * fields, but clear the bit that will hold CFI (since
  123. * DSA uses that bit location for another purpose).
  124. */
  125. new_header[0] = (ETH_P_8021Q >> 8) & 0xff;
  126. new_header[1] = ETH_P_8021Q & 0xff;
  127. new_header[2] = edsa_header[2] & ~0x10;
  128. new_header[3] = edsa_header[3];
  129. /*
  130. * Move CFI bit from its place in the DSA header to
  131. * its 802.1q-designated place.
  132. */
  133. if (edsa_header[1] & 0x01)
  134. new_header[2] |= 0x10;
  135. skb_pull_rcsum(skb, DSA_HLEN);
  136. /*
  137. * Update packet checksum if skb is CHECKSUM_COMPLETE.
  138. */
  139. if (skb->ip_summed == CHECKSUM_COMPLETE) {
  140. __wsum c = skb->csum;
  141. c = csum_add(c, csum_partial(new_header + 2, 2, 0));
  142. c = csum_sub(c, csum_partial(edsa_header + 2, 2, 0));
  143. skb->csum = c;
  144. }
  145. memcpy(edsa_header, new_header, DSA_HLEN);
  146. memmove(skb->data - ETH_HLEN,
  147. skb->data - ETH_HLEN - DSA_HLEN,
  148. 2 * ETH_ALEN);
  149. } else {
  150. /*
  151. * Remove DSA tag and update checksum.
  152. */
  153. skb_pull_rcsum(skb, EDSA_HLEN);
  154. memmove(skb->data - ETH_HLEN,
  155. skb->data - ETH_HLEN - EDSA_HLEN,
  156. 2 * ETH_ALEN);
  157. }
  158. skb->dev = ds->ports[source_port];
  159. skb_push(skb, ETH_HLEN);
  160. skb->pkt_type = PACKET_HOST;
  161. skb->protocol = eth_type_trans(skb, skb->dev);
  162. skb->dev->stats.rx_packets++;
  163. skb->dev->stats.rx_bytes += skb->len;
  164. netif_receive_skb(skb);
  165. return 0;
  166. out_drop:
  167. kfree_skb(skb);
  168. out:
  169. return 0;
  170. }
  171. const struct dsa_device_ops edsa_netdev_ops = {
  172. .xmit = edsa_xmit,
  173. .rcv = edsa_rcv,
  174. };