mpls_gso.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. /*
  2. * MPLS GSO Support
  3. *
  4. * Authors: Simon Horman (horms@verge.net.au)
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version
  9. * 2 of the License, or (at your option) any later version.
  10. *
  11. * Based on: GSO portions of net/ipv4/gre.c
  12. */
  13. #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
  14. #include <linux/err.h>
  15. #include <linux/module.h>
  16. #include <linux/netdev_features.h>
  17. #include <linux/netdevice.h>
  18. #include <linux/skbuff.h>
  19. static struct sk_buff *mpls_gso_segment(struct sk_buff *skb,
  20. netdev_features_t features)
  21. {
  22. struct sk_buff *segs = ERR_PTR(-EINVAL);
  23. netdev_features_t mpls_features;
  24. __be16 mpls_protocol;
  25. if (unlikely(skb_shinfo(skb)->gso_type &
  26. ~(SKB_GSO_TCPV4 |
  27. SKB_GSO_TCPV6 |
  28. SKB_GSO_UDP |
  29. SKB_GSO_DODGY |
  30. SKB_GSO_TCP_ECN |
  31. SKB_GSO_GRE |
  32. SKB_GSO_IPIP |
  33. SKB_GSO_MPLS)))
  34. goto out;
  35. /* Setup inner SKB. */
  36. mpls_protocol = skb->protocol;
  37. skb->protocol = skb->inner_protocol;
  38. /* Push back the mac header that skb_mac_gso_segment() has pulled.
  39. * It will be re-pulled by the call to skb_mac_gso_segment() below
  40. */
  41. __skb_push(skb, skb->mac_len);
  42. /* Segment inner packet. */
  43. mpls_features = skb->dev->mpls_features & netif_skb_features(skb);
  44. segs = skb_mac_gso_segment(skb, mpls_features);
  45. /* Restore outer protocol. */
  46. skb->protocol = mpls_protocol;
  47. /* Re-pull the mac header that the call to skb_mac_gso_segment()
  48. * above pulled. It will be re-pushed after returning
  49. * skb_mac_gso_segment(), an indirect caller of this function.
  50. */
  51. __skb_push(skb, skb->data - skb_mac_header(skb));
  52. out:
  53. return segs;
  54. }
  55. static int mpls_gso_send_check(struct sk_buff *skb)
  56. {
  57. return 0;
  58. }
  59. static struct packet_offload mpls_mc_offload = {
  60. .type = cpu_to_be16(ETH_P_MPLS_MC),
  61. .callbacks = {
  62. .gso_send_check = mpls_gso_send_check,
  63. .gso_segment = mpls_gso_segment,
  64. },
  65. };
  66. static struct packet_offload mpls_uc_offload = {
  67. .type = cpu_to_be16(ETH_P_MPLS_UC),
  68. .callbacks = {
  69. .gso_send_check = mpls_gso_send_check,
  70. .gso_segment = mpls_gso_segment,
  71. },
  72. };
  73. static int __init mpls_gso_init(void)
  74. {
  75. pr_info("MPLS GSO support\n");
  76. dev_add_offload(&mpls_uc_offload);
  77. dev_add_offload(&mpls_mc_offload);
  78. return 0;
  79. }
  80. static void __exit mpls_gso_exit(void)
  81. {
  82. dev_remove_offload(&mpls_uc_offload);
  83. dev_remove_offload(&mpls_mc_offload);
  84. }
  85. module_init(mpls_gso_init);
  86. module_exit(mpls_gso_exit);
  87. MODULE_DESCRIPTION("MPLS GSO support");
  88. MODULE_AUTHOR("Simon Horman (horms@verge.net.au)");
  89. MODULE_LICENSE("GPL");