netfilter.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. /*
  2. * IPv4 specific functions of netfilter core
  3. *
  4. * Rusty Russell (C) 2000 -- This code is GPL.
  5. * Patrick McHardy (C) 2006-2012
  6. */
  7. #include <linux/kernel.h>
  8. #include <linux/netfilter.h>
  9. #include <linux/netfilter_ipv4.h>
  10. #include <linux/ip.h>
  11. #include <linux/skbuff.h>
  12. #include <linux/gfp.h>
  13. #include <linux/export.h>
  14. #include <net/route.h>
  15. #include <net/xfrm.h>
  16. #include <net/ip.h>
  17. #include <net/netfilter/nf_queue.h>
  18. /* route_me_harder function, used by iptable_nat, iptable_mangle + ip_queue */
  19. int ip_route_me_harder(struct net *net, struct sk_buff *skb, unsigned int addr_type)
  20. {
  21. const struct iphdr *iph = ip_hdr(skb);
  22. struct rtable *rt;
  23. struct flowi4 fl4 = {};
  24. __be32 saddr = iph->saddr;
  25. const struct sock *sk = skb_to_full_sk(skb);
  26. __u8 flags = sk ? inet_sk_flowi_flags(sk) : 0;
  27. struct net_device *dev = skb_dst(skb)->dev;
  28. unsigned int hh_len;
  29. if (addr_type == RTN_UNSPEC)
  30. addr_type = inet_addr_type_dev_table(net, dev, saddr);
  31. if (addr_type == RTN_LOCAL || addr_type == RTN_UNICAST)
  32. flags |= FLOWI_FLAG_ANYSRC;
  33. else
  34. saddr = 0;
  35. /* some non-standard hacks like ipt_REJECT.c:send_reset() can cause
  36. * packets with foreign saddr to appear on the NF_INET_LOCAL_OUT hook.
  37. */
  38. fl4.daddr = iph->daddr;
  39. fl4.saddr = saddr;
  40. fl4.flowi4_tos = RT_TOS(iph->tos);
  41. fl4.flowi4_oif = sk ? sk->sk_bound_dev_if : 0;
  42. if (!fl4.flowi4_oif)
  43. fl4.flowi4_oif = l3mdev_master_ifindex(dev);
  44. fl4.flowi4_mark = skb->mark;
  45. fl4.flowi4_flags = flags;
  46. rt = ip_route_output_key(net, &fl4);
  47. if (IS_ERR(rt))
  48. return PTR_ERR(rt);
  49. /* Drop old route. */
  50. skb_dst_drop(skb);
  51. skb_dst_set(skb, &rt->dst);
  52. if (skb_dst(skb)->error)
  53. return skb_dst(skb)->error;
  54. #ifdef CONFIG_XFRM
  55. if (!(IPCB(skb)->flags & IPSKB_XFRM_TRANSFORMED) &&
  56. xfrm_decode_session(skb, flowi4_to_flowi(&fl4), AF_INET) == 0) {
  57. struct dst_entry *dst = skb_dst(skb);
  58. skb_dst_set(skb, NULL);
  59. dst = xfrm_lookup(net, dst, flowi4_to_flowi(&fl4), sk, 0);
  60. if (IS_ERR(dst))
  61. return PTR_ERR(dst);
  62. skb_dst_set(skb, dst);
  63. }
  64. #endif
  65. /* Change in oif may mean change in hh_len. */
  66. hh_len = skb_dst(skb)->dev->hard_header_len;
  67. if (skb_headroom(skb) < hh_len &&
  68. pskb_expand_head(skb, HH_DATA_ALIGN(hh_len - skb_headroom(skb)),
  69. 0, GFP_ATOMIC))
  70. return -ENOMEM;
  71. return 0;
  72. }
  73. EXPORT_SYMBOL(ip_route_me_harder);
  74. int nf_ip_reroute(struct sk_buff *skb, const struct nf_queue_entry *entry)
  75. {
  76. const struct ip_rt_info *rt_info = nf_queue_entry_reroute(entry);
  77. if (entry->state.hook == NF_INET_LOCAL_OUT) {
  78. const struct iphdr *iph = ip_hdr(skb);
  79. if (!(iph->tos == rt_info->tos &&
  80. skb->mark == rt_info->mark &&
  81. iph->daddr == rt_info->daddr &&
  82. iph->saddr == rt_info->saddr))
  83. return ip_route_me_harder(entry->state.net, skb,
  84. RTN_UNSPEC);
  85. }
  86. return 0;
  87. }
  88. EXPORT_SYMBOL_GPL(nf_ip_reroute);
  89. __sum16 nf_ip_checksum(struct sk_buff *skb, unsigned int hook,
  90. unsigned int dataoff, u_int8_t protocol)
  91. {
  92. const struct iphdr *iph = ip_hdr(skb);
  93. __sum16 csum = 0;
  94. switch (skb->ip_summed) {
  95. case CHECKSUM_COMPLETE:
  96. if (hook != NF_INET_PRE_ROUTING && hook != NF_INET_LOCAL_IN)
  97. break;
  98. if ((protocol == 0 && !csum_fold(skb->csum)) ||
  99. !csum_tcpudp_magic(iph->saddr, iph->daddr,
  100. skb->len - dataoff, protocol,
  101. skb->csum)) {
  102. skb->ip_summed = CHECKSUM_UNNECESSARY;
  103. break;
  104. }
  105. /* fall through */
  106. case CHECKSUM_NONE:
  107. if (protocol == 0)
  108. skb->csum = 0;
  109. else
  110. skb->csum = csum_tcpudp_nofold(iph->saddr, iph->daddr,
  111. skb->len - dataoff,
  112. protocol, 0);
  113. csum = __skb_checksum_complete(skb);
  114. }
  115. return csum;
  116. }
  117. EXPORT_SYMBOL(nf_ip_checksum);
  118. __sum16 nf_ip_checksum_partial(struct sk_buff *skb, unsigned int hook,
  119. unsigned int dataoff, unsigned int len,
  120. u_int8_t protocol)
  121. {
  122. const struct iphdr *iph = ip_hdr(skb);
  123. __sum16 csum = 0;
  124. switch (skb->ip_summed) {
  125. case CHECKSUM_COMPLETE:
  126. if (len == skb->len - dataoff)
  127. return nf_ip_checksum(skb, hook, dataoff, protocol);
  128. /* fall through */
  129. case CHECKSUM_NONE:
  130. skb->csum = csum_tcpudp_nofold(iph->saddr, iph->daddr, protocol,
  131. skb->len - dataoff, 0);
  132. skb->ip_summed = CHECKSUM_NONE;
  133. return __skb_checksum_complete_head(skb, dataoff + len);
  134. }
  135. return csum;
  136. }
  137. EXPORT_SYMBOL_GPL(nf_ip_checksum_partial);
  138. int nf_ip_route(struct net *net, struct dst_entry **dst, struct flowi *fl,
  139. bool strict __always_unused)
  140. {
  141. struct rtable *rt = ip_route_output_key(net, &fl->u.ip4);
  142. if (IS_ERR(rt))
  143. return PTR_ERR(rt);
  144. *dst = &rt->dst;
  145. return 0;
  146. }
  147. EXPORT_SYMBOL_GPL(nf_ip_route);