From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-13.0 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_PULL_REQUEST,MAILING_LIST_MULTI, MENTIONS_GIT_HOSTING,SPF_PASS,USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 635F8C282C2 for ; Wed, 13 Feb 2019 17:48:11 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 3BD202086C for ; Wed, 13 Feb 2019 17:48:11 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S2404484AbfBMRsH (ORCPT ); Wed, 13 Feb 2019 12:48:07 -0500 Received: from mail.us.es ([193.147.175.20]:52380 "EHLO mail.us.es" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1728914AbfBMRsG (ORCPT ); Wed, 13 Feb 2019 12:48:06 -0500 Received: from antivirus1-rhel7.int (unknown [192.168.2.11]) by mail.us.es (Postfix) with ESMTP id 5B29FF2804 for ; Wed, 13 Feb 2019 18:48:03 +0100 (CET) Received: from antivirus1-rhel7.int (localhost [127.0.0.1]) by antivirus1-rhel7.int (Postfix) with ESMTP id 4A2ADDA846 for ; Wed, 13 Feb 2019 18:48:03 +0100 (CET) Received: by antivirus1-rhel7.int (Postfix, from userid 99) id 3F2E3DA85E; Wed, 13 Feb 2019 18:48:03 +0100 (CET) Received: from antivirus1-rhel7.int (localhost [127.0.0.1]) by antivirus1-rhel7.int (Postfix) with ESMTP id 5F86DDA846; Wed, 13 Feb 2019 18:48:01 +0100 (CET) Received: from 192.168.1.97 (192.168.1.97) by antivirus1-rhel7.int (F-Secure/fsigk_smtp/550/antivirus1-rhel7.int); Wed, 13 Feb 2019 18:48:01 +0100 (CET) X-Virus-Status: clean(F-Secure/fsigk_smtp/550/antivirus1-rhel7.int) Received: from salvia.here (sys.soleta.eu [212.170.55.40]) (Authenticated sender: pneira@us.es) by entrada.int (Postfix) with ESMTPA id 32ADA4265A4C; Wed, 13 Feb 2019 18:48:01 +0100 (CET) X-SMTPAUTHUS: auth mail.us.es From: Pablo Neira Ayuso To: netfilter-devel@vger.kernel.org Cc: davem@davemloft.net, netdev@vger.kernel.org Subject: [PATCH 0/3] Netfilter/IPVS fixes for net Date: Wed, 13 Feb 2019 18:47:55 +0100 Message-Id: <20190213174758.17275-1-pablo@netfilter.org> X-Mailer: git-send-email 2.11.0 X-Virus-Scanned: ClamAV using ClamSMTP Sender: netdev-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netdev@vger.kernel.org Hi David, The following patchset contains Netfilter/IPVS fixes for net: 1) Missing structure initialization in ebtables causes splat with 32-bit user level on a 64-bit kernel, from Francesco Ruggeri. 2) Missing dependency on nf_defrag in IPVS IPv6 codebase, from Andrea Claudi. 3) Fix possible use-after-free from release path of target extensions. You can pull these changes from: git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git Thanks! ---------------------------------------------------------------- The following changes since commit cf657d22ee1f0e887326a92169f2e28dc932fd10: net/x25: do not hold the cpu too long in x25_new_lci() (2019-02-11 13:20:14 -0800) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf.git HEAD for you to fetch changes up to 753c111f655e38bbd52fc01321266633f022ebe2: netfilter: nft_compat: use-after-free when deleting targets (2019-02-13 18:14:54 +0100) ---------------------------------------------------------------- Andrea Claudi (1): ipvs: fix dependency on nf_defrag_ipv6 Francesco Ruggeri (1): netfilter: compat: initialize all fields in xt_init Pablo Neira Ayuso (1): netfilter: nft_compat: use-after-free when deleting targets net/netfilter/ipvs/Kconfig | 1 + net/netfilter/ipvs/ip_vs_core.c | 10 ++++------ net/netfilter/ipvs/ip_vs_ctl.c | 10 ++++++++++ net/netfilter/nft_compat.c | 3 ++- net/netfilter/x_tables.c | 2 +- 5 files changed, 18 insertions(+), 8 deletions(-)