xfrm6_mode_ro.c 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /*
  2. * xfrm6_mode_ro.c - Route optimization mode for IPv6.
  3. *
  4. * Copyright (C)2003-2006 Helsinki University of Technology
  5. * Copyright (C)2003-2006 USAGI/WIDE Project
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, see <http://www.gnu.org/licenses/>.
  19. */
  20. /*
  21. * Authors:
  22. * Noriaki TAKAMIYA @USAGI
  23. * Masahide NAKAMURA @USAGI
  24. */
  25. #include <linux/init.h>
  26. #include <linux/kernel.h>
  27. #include <linux/module.h>
  28. #include <linux/skbuff.h>
  29. #include <linux/spinlock.h>
  30. #include <linux/stringify.h>
  31. #include <linux/time.h>
  32. #include <net/ipv6.h>
  33. #include <net/xfrm.h>
  34. /* Add route optimization header space.
  35. *
  36. * The IP header and mutable extension headers will be moved forward to make
  37. * space for the route optimization header.
  38. */
  39. static int xfrm6_ro_output(struct xfrm_state *x, struct sk_buff *skb)
  40. {
  41. struct ipv6hdr *iph;
  42. u8 *prevhdr;
  43. int hdr_len;
  44. iph = ipv6_hdr(skb);
  45. hdr_len = x->type->hdr_offset(x, skb, &prevhdr);
  46. if (hdr_len < 0)
  47. return hdr_len;
  48. skb_set_mac_header(skb, (prevhdr - x->props.header_len) - skb->data);
  49. skb_set_network_header(skb, -x->props.header_len);
  50. skb->transport_header = skb->network_header + hdr_len;
  51. __skb_pull(skb, hdr_len);
  52. memmove(ipv6_hdr(skb), iph, hdr_len);
  53. x->lastused = get_seconds();
  54. return 0;
  55. }
  56. static struct xfrm_mode xfrm6_ro_mode = {
  57. .output = xfrm6_ro_output,
  58. .owner = THIS_MODULE,
  59. .encap = XFRM_MODE_ROUTEOPTIMIZATION,
  60. };
  61. static int __init xfrm6_ro_init(void)
  62. {
  63. return xfrm_register_mode(&xfrm6_ro_mode, AF_INET6);
  64. }
  65. static void __exit xfrm6_ro_exit(void)
  66. {
  67. int err;
  68. err = xfrm_unregister_mode(&xfrm6_ro_mode, AF_INET6);
  69. BUG_ON(err);
  70. }
  71. module_init(xfrm6_ro_init);
  72. module_exit(xfrm6_ro_exit);
  73. MODULE_LICENSE("GPL");
  74. MODULE_ALIAS_XFRM_MODE(AF_INET6, XFRM_MODE_ROUTEOPTIMIZATION);