Received: by 10.223.185.111 with SMTP id b44csp915007wrg; Fri, 9 Mar 2018 16:45:27 -0800 (PST) X-Google-Smtp-Source: AG47ELsa4dgRvAnOXVsyKni8ZBpqtWwV4xCI3JarJnMM/dUTGCi3tYHLTSbGPlvnOtB59IWsGtzB X-Received: by 2002:a17:902:6184:: with SMTP id u4-v6mr379802plj.390.1520642726950; Fri, 09 Mar 2018 16:45:26 -0800 (PST) ARC-Seal: i=1; a=rsa-sha256; t=1520642726; cv=none; d=google.com; s=arc-20160816; b=AgCZ44G/Jl9siI1n5ReP5aVHmBw5UkRNSyCDGybsVEeYy22TInQw05tuDEABZaoq+D vdPuL27mpkVrQG+iE63z2VNH0Vmyw1B2NICZ8O2xzPS05s6y6FTo9SgHmighVQPGdfnN vVUIRUwf09Fu9fZoMT2r2OCqQ78SCxIPw4RxxYGA7tdqOp/IQcERCVtM5Z5Un6E7sX14 ZkhPsRqmPxhdB2fC9s82Cel8WmOpDzne1+qVCuGmEcSroFv0YytIjvb1cLeo4gf8pmOZ lZvP5gLywxVkW3nl+TcUfryE+aCP3JKJpTeJiqRD81cfDfl26VQ23FTC7AIOWSFS0SUG ZsnQ== 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=ax5rvJBAMO+6WqJW2U7Uc9pw94Q+p+d1Pp5pQ/dpcy8=; b=CmnW3VhAKTBFUh2EQH3BTGGQTrPJF50zyTCYB5V6BAHSfhH7Yx+scfDTp3JLMBS8V0 ZHAdwoEDN1HA80v9MqqFo718HU+RhsLwjyFrDJaNDvABG/vkUYQ9ZlRy5aud8WjnLLtO fNZiFzZnc7GzfhgL7SH9MWWTvORXagloaUjw3k9WZhLcvMKUDI2wwcwMSqHkea6kjhB0 2CO8lwtzl05PI2TTGlhE5G52pUUm7C6IDmLzuoESpL8nsNlsmkjbphN2UsN8uLnJffVG u2GFp5z+8fHO8SOalxkvKQoxEqDjjQWgsGQsHFzEXyUBqYfcFtOdZ6HL4BK2NKsK7KlL wYGA== 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 13-v6si1749835ple.157.2018.03.09.16.45.12; Fri, 09 Mar 2018 16:45:26 -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 S933498AbeCJAUo (ORCPT + 99 others); Fri, 9 Mar 2018 19:20:44 -0500 Received: from mail.linuxfoundation.org ([140.211.169.12]:39260 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933261AbeCJAUm (ORCPT ); Fri, 9 Mar 2018 19:20:42 -0500 Received: from localhost (unknown [185.236.200.248]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id B046AFE0; Sat, 10 Mar 2018 00:20:41 +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.4 28/36] sctp: fix dst refcnt leak in sctp_v6_get_dst() Date: Fri, 9 Mar 2018 16:18:44 -0800 Message-Id: <20180310001808.915272334@linuxfoundation.org> X-Mailer: git-send-email 2.16.2 In-Reply-To: <20180310001807.213987241@linuxfoundation.org> References: <20180310001807.213987241@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.4-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 @@ -323,8 +323,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); @@ -333,8 +335,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);