Received: by 10.223.185.116 with SMTP id b49csp5456163wrg; Wed, 7 Mar 2018 12:04:27 -0800 (PST) X-Google-Smtp-Source: AG47ELvcz/MdJU+MIuG4aHya5SNp9+NXr36jv6NF6/5UFKXfucRyPiur/M/XV0/NPkB1cfLI7S6v X-Received: by 10.167.129.24 with SMTP id b24mr23686525pfi.183.1520453067602; Wed, 07 Mar 2018 12:04:27 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1520453067; cv=none; d=google.com; s=arc-20160816; b=hlia3VM1q/U0zrXtp+oMdpWsGgAIdGZ6jUgDPfxpXfYkET75xFllpedfLIBOd3CZ5M FyySuoBUce1AfPnywgtCipsqUg568vOnSRMGOw6pKXJ/Qj5fM6P6L++OK+C2yeAUlDo/ s/oZubfAAJe9qWRPDlqpdzxhnE9Pq2Ob2gJ1GBXaxJ9en984N1yVBFG9vz36PE939U/M vBJzY4z9j8iELFfSQWq+jlJTCswtcwLcyiOu/9C3GlKNYhREbREHD6FRCBvfn21Mj6c1 wt+PCQ+ve/AxAq6syRRLzFdsv0sYRpxkr1Cxjr4GmXtCi9EcBbn/ijwidAVILSmLsJO0 ghgg== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:mime-version:user-agent:references :in-reply-to:message-id:date:subject:cc:to:from :arc-authentication-results; bh=0931gSh8jsr436Aeq227hdm8VA66DFhBQyr8DfFb+Kc=; b=iAz7UYUFiyqaaCD08ERRsIVcEH3Qyt31zkOvhFSwCdlzmpMs1iFIb5xlfSsFWFLWfA xCP/TWHa0q07fqqGPcBFP7Us10r5Uy+R+xAKYF+lj8ppQA+08R2b7O010aqckiMdFxoQ cu4Dx843MK9sWY71Nuq4bPnVCNMFwvgMcveQr3a/C2K2VidBJqTSMvPiK4HNXW8K7Ok8 EXD01ObhcQz1LQpiPvpJ5MSgpJ8+rtwO0F5BNYlAyXU9k9R4ut5j9a74aJUQYJRc/FEm a33Pz+g5O1h/eUopvgYCoGsTNiex9XkNb59Vl+iUYsh8VenC0WaCnplW7AAGPqV2IYqU uo6g== ARC-Authentication-Results: i=1; mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Return-Path: Received: from vger.kernel.org (vger.kernel.org. [209.132.180.67]) by mx.google.com with ESMTP id s72si3555849pgc.818.2018.03.07.12.04.12; Wed, 07 Mar 2018 12:04:27 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) client-ip=209.132.180.67; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of linux-kernel-owner@vger.kernel.org designates 209.132.180.67 as permitted sender) smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S965567AbeCGTqf (ORCPT + 99 others); Wed, 7 Mar 2018 14:46:35 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:44644 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S965259AbeCGTqc (ORCPT ); Wed, 7 Mar 2018 14:46:32 -0500 Received: from localhost (unknown [185.236.200.248]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id CA93C1077; Wed, 7 Mar 2018 19:46:31 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Alexey Kodanev , Neil Horman , Marcelo Ricardo Leitner , "David S. Miller" Subject: [PATCH 4.14 064/110] sctp: fix dst refcnt leak in sctp_v6_get_dst() Date: Wed, 7 Mar 2018 11:38:47 -0800 Message-Id: <20180307191047.762065859@linuxfoundation.org> X-Mailer: git-send-email 2.16.2 In-Reply-To: <20180307191039.748351103@linuxfoundation.org> References: <20180307191039.748351103@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.14-stable review patch. If anyone has any objections, please let me know. ------------------ From: Alexey Kodanev [ Upstream commit 957d761cf91cdbb175ad7d8f5472336a4d54dbf2 ] When going through the bind address list in sctp_v6_get_dst() and the previously found address is better ('matchlen > bmatchlen'), the code continues to the next iteration without releasing currently held destination. Fix it by releasing 'bdst' before continue to the next iteration, and instead of introducing one more '!IS_ERR(bdst)' check for dst_release(), move the already existed one right after ip6_dst_lookup_flow(), i.e. we shouldn't proceed further if we get an error for the route lookup. Fixes: dbc2b5e9a09e ("sctp: fix src address selection if using secondary addresses for ipv6") Signed-off-by: Alexey Kodanev Acked-by: Neil Horman Acked-by: Marcelo Ricardo Leitner Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- net/sctp/ipv6.c | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) --- a/net/sctp/ipv6.c +++ b/net/sctp/ipv6.c @@ -326,8 +326,10 @@ static void sctp_v6_get_dst(struct sctp_ final_p = fl6_update_dst(fl6, rcu_dereference(np->opt), &final); bdst = ip6_dst_lookup_flow(sk, fl6, final_p); - if (!IS_ERR(bdst) && - ipv6_chk_addr(dev_net(bdst->dev), + if (IS_ERR(bdst)) + continue; + + if (ipv6_chk_addr(dev_net(bdst->dev), &laddr->a.v6.sin6_addr, bdst->dev, 1)) { if (!IS_ERR_OR_NULL(dst)) dst_release(dst); @@ -336,8 +338,10 @@ static void sctp_v6_get_dst(struct sctp_ } bmatchlen = sctp_v6_addr_match_len(daddr, &laddr->a); - if (matchlen > bmatchlen) + if (matchlen > bmatchlen) { + dst_release(bdst); continue; + } if (!IS_ERR_OR_NULL(dst)) dst_release(dst);