xfrm4_output.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102
  1. /*
  2. * xfrm4_output.c - Common IPsec encapsulation code for IPv4.
  3. * Copyright (c) 2004 Herbert Xu <herbert@gondor.apana.org.au>
  4. *
  5. * This program is free software; you can redistribute it and/or
  6. * modify it under the terms of the GNU General Public License
  7. * as published by the Free Software Foundation; either version
  8. * 2 of the License, or (at your option) any later version.
  9. */
  10. #include <linux/if_ether.h>
  11. #include <linux/kernel.h>
  12. #include <linux/module.h>
  13. #include <linux/skbuff.h>
  14. #include <linux/netfilter_ipv4.h>
  15. #include <net/dst.h>
  16. #include <net/ip.h>
  17. #include <net/xfrm.h>
  18. #include <net/icmp.h>
  19. static int xfrm4_tunnel_check_size(struct sk_buff *skb)
  20. {
  21. int mtu, ret = 0;
  22. struct dst_entry *dst;
  23. if (IPCB(skb)->flags & IPSKB_XFRM_TUNNEL_SIZE)
  24. goto out;
  25. if (!(ip_hdr(skb)->frag_off & htons(IP_DF)) || skb->local_df)
  26. goto out;
  27. dst = skb_dst(skb);
  28. mtu = dst_mtu(dst);
  29. if (skb->len > mtu) {
  30. if (skb->sk)
  31. ip_local_error(skb->sk, EMSGSIZE, ip_hdr(skb)->daddr,
  32. inet_sk(skb->sk)->inet_dport, mtu);
  33. else
  34. icmp_send(skb, ICMP_DEST_UNREACH,
  35. ICMP_FRAG_NEEDED, htonl(mtu));
  36. ret = -EMSGSIZE;
  37. }
  38. out:
  39. return ret;
  40. }
  41. int xfrm4_extract_output(struct xfrm_state *x, struct sk_buff *skb)
  42. {
  43. int err;
  44. err = xfrm4_tunnel_check_size(skb);
  45. if (err)
  46. return err;
  47. XFRM_MODE_SKB_CB(skb)->protocol = ip_hdr(skb)->protocol;
  48. return xfrm4_extract_header(skb);
  49. }
  50. int xfrm4_prepare_output(struct xfrm_state *x, struct sk_buff *skb)
  51. {
  52. int err;
  53. err = xfrm_inner_extract_output(x, skb);
  54. if (err)
  55. return err;
  56. memset(IPCB(skb), 0, sizeof(*IPCB(skb)));
  57. IPCB(skb)->flags |= IPSKB_XFRM_TUNNEL_SIZE | IPSKB_XFRM_TRANSFORMED;
  58. skb->protocol = htons(ETH_P_IP);
  59. return x->outer_mode->output2(x, skb);
  60. }
  61. EXPORT_SYMBOL(xfrm4_prepare_output);
  62. int xfrm4_output_finish(struct sk_buff *skb)
  63. {
  64. #ifdef CONFIG_NETFILTER
  65. if (!skb_dst(skb)->xfrm) {
  66. IPCB(skb)->flags |= IPSKB_REROUTED;
  67. return dst_output(skb);
  68. }
  69. IPCB(skb)->flags |= IPSKB_XFRM_TRANSFORMED;
  70. #endif
  71. skb->protocol = htons(ETH_P_IP);
  72. return xfrm_output(skb);
  73. }
  74. int xfrm4_output(struct sk_buff *skb)
  75. {
  76. struct dst_entry *dst = skb_dst(skb);
  77. struct xfrm_state *x = dst->xfrm;
  78. return NF_HOOK_COND(NFPROTO_IPV4, NF_INET_POST_ROUTING, skb,
  79. NULL, dst->dev,
  80. x->outer_mode->afinfo->output_finish,
  81. !(IPCB(skb)->flags & IPSKB_REROUTED));
  82. }