Received: by 2002:ac0:a5a6:0:0:0:0:0 with SMTP id m35-v6csp723165imm; Thu, 13 Sep 2018 06:51:08 -0700 (PDT) X-Google-Smtp-Source: ANB0VdYQdH+y9Nam/MQ6SZTm+R3QPTNW8c6ytkWJdT8HJNbdZvZvb/acBghl+flDHieJUiB5HbCj X-Received: by 2002:a62:ed5:: with SMTP id 82-v6mr7507323pfo.198.1536846668378; Thu, 13 Sep 2018 06:51:08 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1536846668; cv=none; d=google.com; s=arc-20160816; b=hQ1Lrjt66dt3/gQlw5tATONHXmFn22wMTV0XU+PW9SWJb1Ivo6EJ2JzrZKpXSI8P+z lbh+ADhahUHfIlxJ/uAz08LcVKgpvWdQh/KmATJAtlxrveo3S1di8oPv+FiJH85EZOx/ 9dQ8WS9ygLC/S+8sYzXBw8AxAk8iK2j9+4LV1YKzl4Uo0c1kKkFgHZcdd6iX5Jw3oVnC Qn1HIz0kZWT3QgjaiUMGVoatt+JEG4Np7acCPQCxov7wBlSWHrEmdcm5nBVYE4wP+CMs Vo9mJaof1Ryf0uULQi27Rv2XcpDAKAeIR7imQwens3ua5a+Ou6kHTQX0RhrIGKDNhUeb dNYA== ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=google.com; s=arc-20160816; h=list-id:precedence:sender:content-transfer-encoding:mime-version :user-agent:references:in-reply-to:message-id:date:subject:cc:to :from; bh=A76Ip5/Q9cc7beL9zKaVa9qtrf4ystgyntNyVvzOGZ8=; b=kQekBxjktFFFpJkFQSdBILtYLApJ6zmVeBhbJxypiUAX49KpjxKV8AaA/m+d57RTDD qpxitphIizwHXwxscBMUijJrwBEaYSk0Snh4cad2k7vIFC8l6pairhWkYPL+5K8yuTZB NhCeHJcQM7Leg1RD0Nc21ez3k/xDhktTh4p0PorGm2MitHB9dXSwQuYdsx3ypDV8tXy4 zQGWXBxtK95oq7OO6MVaR9Z+ULtZiXcjlVM5RTRz5sB5Wkj/7y+0Falfq3QjiXkdWPSO TkLcRr0VTT3H/IuKVYjC5y7ZDLoPsdULNZQMyXYATxuD0iBH9iPennFJyogIwLASZf+6 LCUQ== 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 f16-v6si4154363pff.13.2018.09.13.06.50.53; Thu, 13 Sep 2018 06:51:08 -0700 (PDT) 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 S1730694AbeIMS7v (ORCPT + 99 others); Thu, 13 Sep 2018 14:59:51 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:33136 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1730190AbeIMS7u (ORCPT ); Thu, 13 Sep 2018 14:59:50 -0400 Received: from localhost (ip-213-127-77-73.ip.prioritytelecom.net [213.127.77.73]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 90EB4D1A; Thu, 13 Sep 2018 13:50:16 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Jamal Hadi Salim , Cong Wang , "David S. Miller" Subject: [PATCH 4.18 001/197] act_ife: fix a potential use-after-free Date: Thu, 13 Sep 2018 15:29:10 +0200 Message-Id: <20180913131841.625021439@linuxfoundation.org> X-Mailer: git-send-email 2.19.0 In-Reply-To: <20180913131841.568116777@linuxfoundation.org> References: <20180913131841.568116777@linuxfoundation.org> User-Agent: quilt/0.65 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 4.18-stable review patch. If anyone has any objections, please let me know. ------------------ From: Cong Wang [ Upstream commit 6d784f1625ea68783cc1fb17de8f6cd3e1660c3f ] Immediately after module_put(), user could delete this module, so e->ops could be already freed before we call e->ops->release(). Fix this by moving module_put() after ops->release(). Fixes: ef6980b6becb ("introduce IFE action") Cc: Jamal Hadi Salim Signed-off-by: Cong Wang Signed-off-by: David S. Miller Signed-off-by: Greg Kroah-Hartman --- net/sched/act_ife.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) --- a/net/sched/act_ife.c +++ b/net/sched/act_ife.c @@ -393,7 +393,6 @@ static void _tcf_ife_cleanup(struct tc_a struct tcf_meta_info *e, *n; list_for_each_entry_safe(e, n, &ife->metalist, metalist) { - module_put(e->ops->owner); list_del(&e->metalist); if (e->metaval) { if (e->ops->release) @@ -401,6 +400,7 @@ static void _tcf_ife_cleanup(struct tc_a else kfree(e->metaval); } + module_put(e->ops->owner); kfree(e); } }