netfilter.c 5.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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. /*
  75. * Extra routing may needed on local out, as the QUEUE target never
  76. * returns control to the table.
  77. */
  78. struct ip_rt_info {
  79. __be32 daddr;
  80. __be32 saddr;
  81. u_int8_t tos;
  82. u_int32_t mark;
  83. };
  84. static void nf_ip_saveroute(const struct sk_buff *skb,
  85. struct nf_queue_entry *entry)
  86. {
  87. struct ip_rt_info *rt_info = nf_queue_entry_reroute(entry);
  88. if (entry->state.hook == NF_INET_LOCAL_OUT) {
  89. const struct iphdr *iph = ip_hdr(skb);
  90. rt_info->tos = iph->tos;
  91. rt_info->daddr = iph->daddr;
  92. rt_info->saddr = iph->saddr;
  93. rt_info->mark = skb->mark;
  94. }
  95. }
  96. static int nf_ip_reroute(struct net *net, struct sk_buff *skb,
  97. const struct nf_queue_entry *entry)
  98. {
  99. const struct ip_rt_info *rt_info = nf_queue_entry_reroute(entry);
  100. if (entry->state.hook == NF_INET_LOCAL_OUT) {
  101. const struct iphdr *iph = ip_hdr(skb);
  102. if (!(iph->tos == rt_info->tos &&
  103. skb->mark == rt_info->mark &&
  104. iph->daddr == rt_info->daddr &&
  105. iph->saddr == rt_info->saddr))
  106. return ip_route_me_harder(net, skb, RTN_UNSPEC);
  107. }
  108. return 0;
  109. }
  110. __sum16 nf_ip_checksum(struct sk_buff *skb, unsigned int hook,
  111. unsigned int dataoff, u_int8_t protocol)
  112. {
  113. const struct iphdr *iph = ip_hdr(skb);
  114. __sum16 csum = 0;
  115. switch (skb->ip_summed) {
  116. case CHECKSUM_COMPLETE:
  117. if (hook != NF_INET_PRE_ROUTING && hook != NF_INET_LOCAL_IN)
  118. break;
  119. if ((protocol == 0 && !csum_fold(skb->csum)) ||
  120. !csum_tcpudp_magic(iph->saddr, iph->daddr,
  121. skb->len - dataoff, protocol,
  122. skb->csum)) {
  123. skb->ip_summed = CHECKSUM_UNNECESSARY;
  124. break;
  125. }
  126. /* fall through */
  127. case CHECKSUM_NONE:
  128. if (protocol == 0)
  129. skb->csum = 0;
  130. else
  131. skb->csum = csum_tcpudp_nofold(iph->saddr, iph->daddr,
  132. skb->len - dataoff,
  133. protocol, 0);
  134. csum = __skb_checksum_complete(skb);
  135. }
  136. return csum;
  137. }
  138. EXPORT_SYMBOL(nf_ip_checksum);
  139. static __sum16 nf_ip_checksum_partial(struct sk_buff *skb, unsigned int hook,
  140. unsigned int dataoff, unsigned int len,
  141. u_int8_t protocol)
  142. {
  143. const struct iphdr *iph = ip_hdr(skb);
  144. __sum16 csum = 0;
  145. switch (skb->ip_summed) {
  146. case CHECKSUM_COMPLETE:
  147. if (len == skb->len - dataoff)
  148. return nf_ip_checksum(skb, hook, dataoff, protocol);
  149. /* fall through */
  150. case CHECKSUM_NONE:
  151. skb->csum = csum_tcpudp_nofold(iph->saddr, iph->daddr, protocol,
  152. skb->len - dataoff, 0);
  153. skb->ip_summed = CHECKSUM_NONE;
  154. return __skb_checksum_complete_head(skb, dataoff + len);
  155. }
  156. return csum;
  157. }
  158. static int nf_ip_route(struct net *net, struct dst_entry **dst,
  159. struct flowi *fl, bool strict __always_unused)
  160. {
  161. struct rtable *rt = ip_route_output_key(net, &fl->u.ip4);
  162. if (IS_ERR(rt))
  163. return PTR_ERR(rt);
  164. *dst = &rt->dst;
  165. return 0;
  166. }
  167. static const struct nf_afinfo nf_ip_afinfo = {
  168. .family = AF_INET,
  169. .checksum = nf_ip_checksum,
  170. .checksum_partial = nf_ip_checksum_partial,
  171. .route = nf_ip_route,
  172. .saveroute = nf_ip_saveroute,
  173. .reroute = nf_ip_reroute,
  174. .route_key_size = sizeof(struct ip_rt_info),
  175. };
  176. static int __init ipv4_netfilter_init(void)
  177. {
  178. return nf_register_afinfo(&nf_ip_afinfo);
  179. }
  180. subsys_initcall(ipv4_netfilter_init);