xfrm6_mode_ro.c 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  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, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  20. */
  21. /*
  22. * Authors:
  23. * Noriaki TAKAMIYA @USAGI
  24. * Masahide NAKAMURA @USAGI
  25. */
  26. #include <linux/init.h>
  27. #include <linux/kernel.h>
  28. #include <linux/module.h>
  29. #include <linux/skbuff.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. * On exit, skb->h will be set to the start of the encapsulation header to be
  40. * filled in by x->type->output and the mac header will be set to the
  41. * nextheader field of the extension header directly preceding the
  42. * encapsulation header, or in its absence, that of the top IP header.
  43. * The value of skb->data and the network header will always point to the
  44. * top IP header.
  45. */
  46. static int xfrm6_ro_output(struct xfrm_state *x, struct sk_buff *skb)
  47. {
  48. struct ipv6hdr *iph;
  49. u8 *prevhdr;
  50. int hdr_len;
  51. skb_push(skb, x->props.header_len);
  52. iph = ipv6_hdr(skb);
  53. hdr_len = x->type->hdr_offset(x, skb, &prevhdr);
  54. skb_set_mac_header(skb, (prevhdr - x->props.header_len) - skb->data);
  55. skb_reset_network_header(skb);
  56. skb_set_transport_header(skb, hdr_len);
  57. memmove(skb->data, iph, hdr_len);
  58. x->lastused = get_seconds();
  59. return 0;
  60. }
  61. /*
  62. * Do nothing about routing optimization header unlike IPsec.
  63. */
  64. static int xfrm6_ro_input(struct xfrm_state *x, struct sk_buff *skb)
  65. {
  66. return 0;
  67. }
  68. static struct xfrm_mode xfrm6_ro_mode = {
  69. .input = xfrm6_ro_input,
  70. .output = xfrm6_ro_output,
  71. .owner = THIS_MODULE,
  72. .encap = XFRM_MODE_ROUTEOPTIMIZATION,
  73. };
  74. static int __init xfrm6_ro_init(void)
  75. {
  76. return xfrm_register_mode(&xfrm6_ro_mode, AF_INET6);
  77. }
  78. static void __exit xfrm6_ro_exit(void)
  79. {
  80. int err;
  81. err = xfrm_unregister_mode(&xfrm6_ro_mode, AF_INET6);
  82. BUG_ON(err);
  83. }
  84. module_init(xfrm6_ro_init);
  85. module_exit(xfrm6_ro_exit);
  86. MODULE_LICENSE("GPL");
  87. MODULE_ALIAS_XFRM_MODE(AF_INET6, XFRM_MODE_ROUTEOPTIMIZATION);