tag_edsa.c 4.8 KB

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