From patchwork Tue Oct 1 09:08:25 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Pablo Neira Ayuso X-Patchwork-Id: 279376 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by ozlabs.org (Postfix) with ESMTP id 3270C2C012D for ; Tue, 1 Oct 2013 19:09:50 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752064Ab3JAJJs (ORCPT ); Tue, 1 Oct 2013 05:09:48 -0400 Received: from mail.us.es ([193.147.175.20]:58253 "EHLO mail.us.es" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751939Ab3JAJJs (ORCPT ); Tue, 1 Oct 2013 05:09:48 -0400 Received: (qmail 14759 invoked from network); 1 Oct 2013 11:09:45 +0200 Received: from unknown (HELO us.es) (192.168.2.13) by us.es with SMTP; 1 Oct 2013 11:09:45 +0200 Received: (qmail 5211 invoked by uid 507); 1 Oct 2013 09:09:51 -0000 X-Qmail-Scanner-Diagnostics: from 127.0.0.1 by antivirus3 (envelope-from , uid 501) with qmail-scanner-2.10 (clamdscan: 0.98/17920. spamassassin: 3.3.2. Clear:RC:1(127.0.0.1):SA:0(-98.0/7.5):. Processed in 13.587025 secs); 01 Oct 2013 09:09:51 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on antivirus3 X-Spam-Level: X-Spam-Status: No, score=-98.0 required=7.5 tests=BAYES_50,RCVD_IN_BRBL, RCVD_IN_BRBL_LASTEXT, RCVD_IN_PBL, RCVD_IN_SORBS_DUL, RDNS_DYNAMIC, SMTPAUTH_US, USER_IN_WHITELIST autolearn=disabled version=3.3.2 X-Spam-ASN: AS12715 95.20.0.0/16 X-Envelope-From: pablo@netfilter.org Received: from unknown (HELO antivirus3) (127.0.0.1) by us.es with SMTP; 1 Oct 2013 09:09:37 -0000 Received: from 192.168.1.13 (192.168.1.13) by antivirus3 (F-Secure/fsigk_smtp/412/antivirus3); Tue, 01 Oct 2013 11:09:37 +0200 (CEST) X-Virus-Status: clean(F-Secure/fsigk_smtp/412/antivirus3) Received: (qmail 24450 invoked from network); 1 Oct 2013 11:09:28 +0200 Received: from 171.158.20.95.dynamic.jazztel.es (HELO localhost.localdomain) (pneira@us.es@95.20.158.171) by mail.us.es with SMTP; 1 Oct 2013 11:09:28 +0200 From: Pablo Neira Ayuso To: netfilter-devel@vger.kernel.org Cc: davem@davemloft.net, netdev@vger.kernel.org Subject: [PATCH 0/6] Netfilter/IPVS fixes for net Date: Tue, 1 Oct 2013 11:08:25 +0200 Message-Id: <1380618511-6109-1-git-send-email-pablo@netfilter.org> X-Mailer: git-send-email 1.7.10.4 Sender: netfilter-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org Hi David, The following patchset contains Netfilter/IPVS fixes for your net tree, they are: * Fix BUG_ON splat due to malformed TCP packets seen by synproxy, from Patrick McHardy. * Fix possible weight overflow in lblc and lblcr schedulers due to 32-bits arithmetics, from Simon Kirby. * Fix possible memory access race in the lblc and lblcr schedulers, introduced when it was converted to use RCU, two patches from Julian Anastasov. * Fix hard dependency on CPU 0 when reading per-cpu stats in the rate estimator, from Julian Anastasov. * Fix race that may lead to object use after release, when invoking ipvsadm -C && ipvsadm -R, introduced when adding RCU, from Julian Anastasov. You can pull these changes from: git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git master Thanks! ---------------------------------------------------------------- The following changes since commit 61c5923a2f2d8ab98a1e3c76f17e0f4a871ec75b: Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf (2013-09-17 20:22:53 -0400) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git master for you to fetch changes up to f4a87e7bd2eaef26a3ca25437ce8b807de2966ad: netfilter: synproxy: fix BUG_ON triggered by corrupt TCP packets (2013-09-30 12:44:38 +0200) ---------------------------------------------------------------- Julian Anastasov (4): ipvs: make the service replacement more robust ipvs: do not use dest after ip_vs_dest_put in LBLC ipvs: do not use dest after ip_vs_dest_put in LBLCR ipvs: stats should not depend on CPU 0 Patrick McHardy (1): netfilter: synproxy: fix BUG_ON triggered by corrupt TCP packets Simon Kirby (1): ipvs: fix overflow on dest weight multiply include/net/ip_vs.h | 9 +-- include/net/netfilter/nf_conntrack_synproxy.h | 2 +- net/ipv4/netfilter/ipt_SYNPROXY.c | 10 ++- net/ipv6/netfilter/ip6t_SYNPROXY.c | 10 ++- net/netfilter/ipvs/ip_vs_core.c | 12 +++- net/netfilter/ipvs/ip_vs_ctl.c | 86 ++++++++++--------------- net/netfilter/ipvs/ip_vs_est.c | 4 +- net/netfilter/ipvs/ip_vs_lblc.c | 72 ++++++++++----------- net/netfilter/ipvs/ip_vs_lblcr.c | 62 ++++++++---------- net/netfilter/ipvs/ip_vs_nq.c | 8 +-- net/netfilter/ipvs/ip_vs_sed.c | 8 +-- net/netfilter/ipvs/ip_vs_wlc.c | 6 +- net/netfilter/nf_synproxy_core.c | 12 ++-- 13 files changed, 143 insertions(+), 158 deletions(-) --- To unsubscribe from this list: send the line "unsubscribe netfilter-devel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html