| lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
|
Open Source and information security mailing list archives
| ||
|
Message-ID: <alpine.LFD.2.00.1108051326300.1494@ja.ssi.bg> Date: Fri, 5 Aug 2011 13:36:28 +0300 (EEST) From: Julian Anastasov <ja@....bg> To: Patrick McHardy <kaber@...sh.net> cc: netfilter-devel@...r.kernel.org, netdev@...r.kernel.org, Kumar Swamy <kswamy@...racuda.com> Subject: [PATCH] netfilter: avoid double free in nf_reinject NF_STOLEN means skb was already freed Signed-off-by: Julian Anastasov <ja@....bg> --- May be fixes IPVS+ip_queue problem reported by Kumar Swamy: http://marc.info/?l=linux-virtual-server&m=131098073717449&w=2 diff -urp v3.0/linux/net/netfilter/nf_queue.c linux/net/netfilter/nf_queue.c --- v3.0/linux/net/netfilter/nf_queue.c 2011-05-20 10:38:08.000000000 +0300 +++ linux/net/netfilter/nf_queue.c 2011-08-05 13:18:29.755962759 +0300 @@ -312,6 +312,7 @@ void nf_reinject(struct nf_queue_entry * } break; case NF_STOLEN: + break; default: kfree_skb(skb); } -- To unsubscribe from this list: send the line "unsubscribe netdev" in the body of a message to majordomo@...r.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists