mpls_gso.c 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  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. /* Setup inner SKB. */
  26. mpls_protocol = skb->protocol;
  27. skb->protocol = skb->inner_protocol;
  28. /* Push back the mac header that skb_mac_gso_segment() has pulled.
  29. * It will be re-pulled by the call to skb_mac_gso_segment() below
  30. */
  31. __skb_push(skb, skb->mac_len);
  32. /* Segment inner packet. */
  33. mpls_features = skb->dev->mpls_features & features;
  34. segs = skb_mac_gso_segment(skb, mpls_features);
  35. /* Restore outer protocol. */
  36. skb->protocol = mpls_protocol;
  37. /* Re-pull the mac header that the call to skb_mac_gso_segment()
  38. * above pulled. It will be re-pushed after returning
  39. * skb_mac_gso_segment(), an indirect caller of this function.
  40. */
  41. __skb_pull(skb, skb->data - skb_mac_header(skb));
  42. return segs;
  43. }
  44. static struct packet_offload mpls_mc_offload __read_mostly = {
  45. .type = cpu_to_be16(ETH_P_MPLS_MC),
  46. .priority = 15,
  47. .callbacks = {
  48. .gso_segment = mpls_gso_segment,
  49. },
  50. };
  51. static struct packet_offload mpls_uc_offload __read_mostly = {
  52. .type = cpu_to_be16(ETH_P_MPLS_UC),
  53. .priority = 15,
  54. .callbacks = {
  55. .gso_segment = mpls_gso_segment,
  56. },
  57. };
  58. static int __init mpls_gso_init(void)
  59. {
  60. pr_info("MPLS GSO support\n");
  61. dev_add_offload(&mpls_uc_offload);
  62. dev_add_offload(&mpls_mc_offload);
  63. return 0;
  64. }
  65. static void __exit mpls_gso_exit(void)
  66. {
  67. dev_remove_offload(&mpls_uc_offload);
  68. dev_remove_offload(&mpls_mc_offload);
  69. }
  70. module_init(mpls_gso_init);
  71. module_exit(mpls_gso_exit);
  72. MODULE_DESCRIPTION("MPLS GSO support");
  73. MODULE_AUTHOR("Simon Horman (horms@verge.net.au)");
  74. MODULE_LICENSE("GPL");