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=-2.5 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS,USER_AGENT_MUTT 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 BFD7CC282CE for ; Tue, 4 Jun 2019 15:02:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 9569923C04 for ; Tue, 4 Jun 2019 15:02:25 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727857AbfFDPCZ (ORCPT ); Tue, 4 Jun 2019 11:02:25 -0400 Received: from mail-wr1-f67.google.com ([209.85.221.67]:38931 "EHLO mail-wr1-f67.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727777AbfFDPCZ (ORCPT ); Tue, 4 Jun 2019 11:02:25 -0400 Received: by mail-wr1-f67.google.com with SMTP id x4so16204181wrt.6 for ; Tue, 04 Jun 2019 08:02:24 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:date:from:to:cc:subject:message-id:references :mime-version:content-disposition:in-reply-to:user-agent; bh=oXElFlC1nmJaL3v6YFn53FxqpyRpE/8xy6Xrh90NmJo=; b=a1ZYjfErgd+whbZyjBTHRnwanb1SdbR5xrFntqdMw6/2CntV3r8KWWNmQmm5BWvX2L x+q0nlupgNQET9bkYTDSvoidZTVSPcbWKncyBHFlqRghDxA5Twxd4qsDjtJQk/sxubo/ lUm0C7eFQOlZn8lATDfifFW8S5H/6enEx6WlnNuw9j1eQZdGk7xCunjuM7xXi3luOhal ZnQAKX829gb4HkWbtjMIIc8CDdP4VbO308Y5lsRdlxNyjLcWgi3yxX3pzl1p+WsgqaNk Js5V8KcnrPMtbGueV181CMSgAwA72FUrCf7esaATnSaGsdqnHQShHtvr/IoMafAJxO07 Liog== X-Gm-Message-State: APjAAAWgpyYUeKoQMEB9KUGId8uFiZd+wga9E9bXXrk1V1g8H9Zz9O7o AuLHNiuvu555V1VrSca6asu+xA== X-Google-Smtp-Source: APXvYqzEmwcG0d8lQX/kl0QdpL4L3hcIIUwoksIwqLVAG+qxWZ32BNihUk7BC4wUe4xNai/y/ebwjA== X-Received: by 2002:adf:ef09:: with SMTP id e9mr7072720wro.79.1559660543558; Tue, 04 Jun 2019 08:02:23 -0700 (PDT) Received: from linux.home (aputeaux-655-1-151-164.w86-217.abo.wanadoo.fr. [86.217.126.164]) by smtp.gmail.com with ESMTPSA id q9sm22413544wmq.9.2019.06.04.08.02.22 (version=TLS1_3 cipher=AEAD-AES256-GCM-SHA384 bits=256/256); Tue, 04 Jun 2019 08:02:22 -0700 (PDT) Date: Tue, 4 Jun 2019 17:02:21 +0200 From: Guillaume Nault To: Pablo Neira Ayuso Cc: netdev@vger.kernel.org, netfilter-devel@vger.kernel.org, Peter Oskolkov , Florian Westphal , "David S. Miller" Subject: Re: [PATCH net] netfilter: ipv6: nf_defrag: fix leakage of unqueued fragments Message-ID: <20190604150218.GA12962@linux.home> References: <51d82a9bd6312e51a56ccae54e00452a0ef957dd.1559480671.git.gnault@redhat.com> <20190604132605.jlhxljrzaqkw4f2j@salvia> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20190604132605.jlhxljrzaqkw4f2j@salvia> User-Agent: Mutt/1.11.3 (2019-02-01) Sender: netfilter-devel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: netfilter-devel@vger.kernel.org On Tue, Jun 04, 2019 at 03:26:05PM +0200, Pablo Neira Ayuso wrote: > On Sun, Jun 02, 2019 at 03:13:47PM +0200, Guillaume Nault wrote: > > With commit 997dd9647164 ("net: IP6 defrag: use rbtrees in > > nf_conntrack_reasm.c"), nf_ct_frag6_reasm() is now called from > > nf_ct_frag6_queue(). With this change, nf_ct_frag6_queue() can fail > > after the skb has been added to the fragment queue and > > nf_ct_frag6_gather() was adapted to handle this case. > > Applied, thanks. Thanks. Can you also please queue it for -stable?