From patchwork Wed May 29 16:03:08 2013 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Pablo Neira Ayuso X-Patchwork-Id: 247297 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 0AC232C0325 for ; Thu, 30 May 2013 02:03:29 +1000 (EST) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753305Ab3E2QD0 (ORCPT ); Wed, 29 May 2013 12:03:26 -0400 Received: from mail.us.es ([193.147.175.20]:35929 "EHLO mail.us.es" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750856Ab3E2QDZ (ORCPT ); Wed, 29 May 2013 12:03:25 -0400 Received: (qmail 19421 invoked from network); 29 May 2013 18:03:23 +0200 Received: from unknown (HELO us.es) (192.168.2.13) by us.es with SMTP; 29 May 2013 18:03:23 +0200 Received: (qmail 19726 invoked by uid 507); 29 May 2013 16:03:23 -0000 X-Qmail-Scanner-Diagnostics: from 127.0.0.1 by antivirus3 (envelope-from , uid 501) with qmail-scanner-2.10 (clamdscan: 0.97.8/17275. spamassassin: 3.3.2. Clear:RC:1(127.0.0.1):SA:0(-97.2/7.5):. Processed in 4.84996 secs); 29 May 2013 16:03:23 -0000 X-Spam-Checker-Version: SpamAssassin 3.3.2 (2011-06-06) on antivirus3 X-Spam-Level: X-Spam-Status: No, score=-97.2 required=7.5 tests=BAYES_50,RCVD_IN_PBL, RCVD_IN_RP_RNBL,RCVD_IN_SORBS_DUL,RDNS_DYNAMIC,USER_IN_WHITELIST autolearn=disabled version=3.3.2 X-Envelope-From: pablo@netfilter.org Received: from unknown (HELO antivirus3) (127.0.0.1) by us.es with SMTP; 29 May 2013 16:03:18 -0000 Received: from 192.168.1.13 (192.168.1.13) by antivirus3 (F-Secure/fsigk_smtp/410/antivirus3); Wed, 29 May 2013 18:03:18 +0200 (CEST) X-Virus-Status: clean(F-Secure/fsigk_smtp/410/antivirus3) Received: (qmail 9849 invoked from network); 29 May 2013 18:03:17 +0200 Received: from 27.224.78.188.dynamic.jazztel.es (HELO localhost.localdomain) (pneira@us.es@188.78.224.27) by us.es with SMTP; 29 May 2013 18:03:17 +0200 From: Pablo Neira Ayuso To: netfilter-devel@vger.kernel.org Cc: davem@davemloft.net, netdev@vger.kernel.org Subject: [PATCH 0/5] netfilter fixes for 3.10-rc3 Date: Wed, 29 May 2013 18:03:08 +0200 Message-Id: <1369843394-24251-1-git-send-email-pablo@netfilter.org> X-Mailer: git-send-email 1.7.10.4 MIME-Version: 1.0 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 3.10-rc3, they are: * fix xt_addrtype with IPv6, from Florian Westphal. This required a new hook for IPv6 functions in the netfilter core to avoid hard dependencies with the ipv6 subsystem when this match is only used for IPv4. * fix connection reuse case in IPVS. Currently, if an reused connection are directed to the same server. If that server is down, those connection would fail. Therefore, clear the connection and choose a new server among the available ones. * fix possible non-nul terminated string sent to user-space if ipt_ULOG is used as the default netfilter logging stub, from Chen Gang. * fix mark logging of IPv6 packets in xt_LOG, from Michal Kubecek. This bug has been there since 2.6.26. * Fix breakage ip_vs_sh due to incorrect structure layout for RCU, from Jan Beulich. The following changes since commit 497574c72c9922cf20c12aed15313c389f722fa0: xfrm: properly handle invalid states as an error (2013-05-23 01:20:07 -0700) 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 a70b9641e6a90d6821e4354a2c2fede74015db29: ipvs: ip_vs_sh: fix build (2013-05-29 17:50:39 +0200) ---------------------------------------------------------------- Chen Gang (1): netfilter: ipt_ULOG: fix non-null terminated string in the nf_log path Florian Westphal (1): netfilter: add nf_ipv6_ops hook to fix xt_addrtype with IPv6 Grzegorz Lyczba (1): ipvs: Fix reuse connection if real server is dead Jan Beulich (1): ipvs: ip_vs_sh: fix build Michal Kubeček (1): netfilter: xt_LOG: fix mark logging for IPv6 packets include/linux/netfilter_ipv6.h | 16 ++++++++++++++++ include/net/addrconf.h | 2 +- net/ipv4/netfilter/ipt_ULOG.c | 6 ++++-- net/ipv6/addrconf.c | 2 +- net/ipv6/netfilter.c | 7 +++++++ net/netfilter/core.c | 2 ++ net/netfilter/ipvs/ip_vs_core.c | 35 +++++++++++++++++++++++++++++++++++ net/netfilter/ipvs/ip_vs_sh.c | 2 +- net/netfilter/xt_LOG.c | 2 +- net/netfilter/xt_addrtype.c | 27 ++++++++++++++++----------- 10 files changed, 84 insertions(+), 17 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