mpls_gso.c 2.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113
  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. #include <net/mpls.h>
  20. static struct sk_buff *mpls_gso_segment(struct sk_buff *skb,
  21. netdev_features_t features)
  22. {
  23. struct sk_buff *segs = ERR_PTR(-EINVAL);
  24. u16 mac_offset = skb->mac_header;
  25. netdev_features_t mpls_features;
  26. u16 mac_len = skb->mac_len;
  27. __be16 mpls_protocol;
  28. unsigned int mpls_hlen;
  29. skb_reset_network_header(skb);
  30. mpls_hlen = skb_inner_network_header(skb) - skb_network_header(skb);
  31. if (unlikely(!mpls_hlen || mpls_hlen % MPLS_HLEN))
  32. goto out;
  33. if (unlikely(!pskb_may_pull(skb, mpls_hlen)))
  34. goto out;
  35. /* Setup inner SKB. */
  36. mpls_protocol = skb->protocol;
  37. skb->protocol = skb->inner_protocol;
  38. __skb_pull(skb, mpls_hlen);
  39. skb->mac_len = 0;
  40. skb_reset_mac_header(skb);
  41. /* Segment inner packet. */
  42. mpls_features = skb->dev->mpls_features & features;
  43. segs = skb_mac_gso_segment(skb, mpls_features);
  44. if (IS_ERR_OR_NULL(segs)) {
  45. skb_gso_error_unwind(skb, mpls_protocol, mpls_hlen, mac_offset,
  46. mac_len);
  47. goto out;
  48. }
  49. skb = segs;
  50. mpls_hlen += mac_len;
  51. do {
  52. skb->mac_len = mac_len;
  53. skb->protocol = mpls_protocol;
  54. skb_reset_inner_network_header(skb);
  55. __skb_push(skb, mpls_hlen);
  56. skb_reset_mac_header(skb);
  57. skb_set_network_header(skb, mac_len);
  58. } while ((skb = skb->next));
  59. out:
  60. return segs;
  61. }
  62. static struct packet_offload mpls_mc_offload __read_mostly = {
  63. .type = cpu_to_be16(ETH_P_MPLS_MC),
  64. .priority = 15,
  65. .callbacks = {
  66. .gso_segment = mpls_gso_segment,
  67. },
  68. };
  69. static struct packet_offload mpls_uc_offload __read_mostly = {
  70. .type = cpu_to_be16(ETH_P_MPLS_UC),
  71. .priority = 15,
  72. .callbacks = {
  73. .gso_segment = mpls_gso_segment,
  74. },
  75. };
  76. static int __init mpls_gso_init(void)
  77. {
  78. pr_info("MPLS GSO support\n");
  79. dev_add_offload(&mpls_uc_offload);
  80. dev_add_offload(&mpls_mc_offload);
  81. return 0;
  82. }
  83. static void __exit mpls_gso_exit(void)
  84. {
  85. dev_remove_offload(&mpls_uc_offload);
  86. dev_remove_offload(&mpls_mc_offload);
  87. }
  88. module_init(mpls_gso_init);
  89. module_exit(mpls_gso_exit);
  90. MODULE_DESCRIPTION("MPLS GSO support");
  91. MODULE_AUTHOR("Simon Horman (horms@verge.net.au)");
  92. MODULE_LICENSE("GPL");