Browse Source

[NETFILTER]: nf_conntrack: attach conntrack to TCP RST generated by ip6t_REJECT

TCP RSTs generated by the REJECT target should be associated with the
conntrack of the original TCP packet. Since the conntrack entry is
usually not is the hash tables, it must be manually attached.

Signed-off-by: Yasuyuki Kozakai <yasuyuki.kozakai@toshiba.co.jp>
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Yasuyuki Kozakai 19 years ago
parent
commit
08857fa745
1 changed files with 2 additions and 0 deletions
  1. 2 0
      net/ipv6/netfilter/ip6t_REJECT.c

+ 2 - 0
net/ipv6/netfilter/ip6t_REJECT.c

@@ -160,6 +160,8 @@ static void send_reset(struct sk_buff *oldskb)
 				      csum_partial((char *)tcph,
 				      csum_partial((char *)tcph,
 						   sizeof(struct tcphdr), 0));
 						   sizeof(struct tcphdr), 0));
 
 
+	nf_ct_attach(nskb, oldskb);
+
 	NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, nskb, NULL, nskb->dst->dev,
 	NF_HOOK(PF_INET6, NF_IP6_LOCAL_OUT, nskb, NULL, nskb->dst->dev,
 		dst_output);
 		dst_output);
 }
 }