xfrm6_output.c 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * xfrm6_output.c - Common IPsec encapsulation code for IPv6.
  3. * Copyright (C) 2002 USAGI/WIDE Project
  4. * Copyright (c) 2004 Herbert Xu <herbert@gondor.apana.org.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. #include <linux/if_ether.h>
  12. #include <linux/kernel.h>
  13. #include <linux/module.h>
  14. #include <linux/skbuff.h>
  15. #include <linux/icmpv6.h>
  16. #include <linux/netfilter_ipv6.h>
  17. #include <net/dst.h>
  18. #include <net/ipv6.h>
  19. #include <net/xfrm.h>
  20. int xfrm6_find_1stfragopt(struct xfrm_state *x, struct sk_buff *skb,
  21. u8 **prevhdr)
  22. {
  23. return ip6_find_1stfragopt(skb, prevhdr);
  24. }
  25. EXPORT_SYMBOL(xfrm6_find_1stfragopt);
  26. static int xfrm6_tunnel_check_size(struct sk_buff *skb)
  27. {
  28. int mtu, ret = 0;
  29. struct dst_entry *dst = skb_dst(skb);
  30. mtu = dst_mtu(dst);
  31. if (mtu < IPV6_MIN_MTU)
  32. mtu = IPV6_MIN_MTU;
  33. if (!skb->local_df && skb->len > mtu) {
  34. skb->dev = dst->dev;
  35. icmpv6_send(skb, ICMPV6_PKT_TOOBIG, 0, mtu, skb->dev);
  36. ret = -EMSGSIZE;
  37. }
  38. return ret;
  39. }
  40. int xfrm6_extract_output(struct xfrm_state *x, struct sk_buff *skb)
  41. {
  42. int err;
  43. err = xfrm6_tunnel_check_size(skb);
  44. if (err)
  45. return err;
  46. XFRM_MODE_SKB_CB(skb)->protocol = ipv6_hdr(skb)->nexthdr;
  47. return xfrm6_extract_header(skb);
  48. }
  49. int xfrm6_prepare_output(struct xfrm_state *x, struct sk_buff *skb)
  50. {
  51. int err;
  52. err = xfrm_inner_extract_output(x, skb);
  53. if (err)
  54. return err;
  55. memset(IP6CB(skb), 0, sizeof(*IP6CB(skb)));
  56. #ifdef CONFIG_NETFILTER
  57. IP6CB(skb)->flags |= IP6SKB_XFRM_TRANSFORMED;
  58. #endif
  59. skb->protocol = htons(ETH_P_IPV6);
  60. skb->local_df = 1;
  61. return x->outer_mode->output2(x, skb);
  62. }
  63. EXPORT_SYMBOL(xfrm6_prepare_output);
  64. static int xfrm6_output_finish(struct sk_buff *skb)
  65. {
  66. #ifdef CONFIG_NETFILTER
  67. IP6CB(skb)->flags |= IP6SKB_XFRM_TRANSFORMED;
  68. #endif
  69. skb->protocol = htons(ETH_P_IPV6);
  70. return xfrm_output(skb);
  71. }
  72. int xfrm6_output(struct sk_buff *skb)
  73. {
  74. return NF_HOOK(PF_INET6, NF_INET_POST_ROUTING, skb, NULL, skb_dst(skb)->dev,
  75. xfrm6_output_finish);
  76. }