Received: by 2002:ac0:a582:0:0:0:0:0 with SMTP id m2-v6csp1367183imm; Tue, 2 Oct 2018 07:10:30 -0700 (PDT) X-Google-Smtp-Source: ACcGV61h/DkfVsoKwxjPuHWRSpaK1CSaXtZUsX/6OXvjzYFe6m+11M1c33b0SkPHTVhzOERUPKrZ X-Received: by 2002:a17:902:b182:: with SMTP id s2-v6mr17117485plr.84.1538489430580; Tue, 02 Oct 2018 07:10:30 -0700 (PDT) ARC-Seal: i=1; a=rsa-sha256; t=1538489430; cv=none; d=google.com; s=arc-20160816; b=Xca6SUJuhqEKRnsGut6sEff190rY3hb9+qqraAwfbbSRfsvoTroPNrYcVmf4sINYSF MSdUj2F9prQOyAyLaXVVbx45AAfodifNtJCRxpTgSvmhPZXODUW+heaNE3h9c/vgBVEr 71DTBEkdX5O+ktLiacHZFeI53MTLbLZd1xAsUcb9FX5thPXirmHS3iiva1zz4g7wNAV8 0TdfwLZAYccRyTnfZWvPYfoYRfhJDVYWY/YJ3Z7B0w5urVqtz3x0mQyDqCZk5mCQ+LTU OZ/yBEMec3txcmrUFg9LJcHXh9XJjUbsFa4Gzc8JqWnVz+U4rR6r1gsz0h8R0DN+8yAM RYUg== 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=PsUeCeVaB9hoeOOLFKJz59ZcPUwg4lxyUN44KqYRCE4=; b=XWq+Xwzr5okUC5wrJfCsKL9NPpenTIvhR0uLqS86kJUjcObZghp2tZBY4VmmwnmjgE Dj+/i4udaQl6oETrk05pfMH4THRdgOSxt+ZIb84VcIno2+QGc6+zgjlT5ZGmz7X1yFvV nnpJjvOHbMjbnzfZtrECaurYnFd6qtUGngwchjGAJdiOteyBGpjqOvhGnvXofkLi1BFE BYqg0sFE+Ww2euE2EWD8ZzsNWbBg8FrUJk8MxIGBrD4dZ2W9Tsr0vXJTvF63pPy+XcdD GdRtZn/D3i3QODhYG+YsmO1qQiFMeR1FOEv4V2R6OQdJKazDiCurO8MQspjw4yi2eKXn RipA== 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 4-v6si8711445pfe.142.2018.10.02.07.10.15; Tue, 02 Oct 2018 07:10:30 -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 S1728999AbeJBULY (ORCPT + 99 others); Tue, 2 Oct 2018 16:11:24 -0400 Received: from mail.linuxfoundation.org ([140.211.169.12]:60684 "EHLO mail.linuxfoundation.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727658AbeJBULX (ORCPT ); Tue, 2 Oct 2018 16:11:23 -0400 Received: from localhost (24-104-73-23-ip-static.hfc.comcastbusiness.net [24.104.73.23]) by mail.linuxfoundation.org (Postfix) with ESMTPSA id 3E485266; Tue, 2 Oct 2018 13:28:02 +0000 (UTC) From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Dan Carpenter , Kalle Valo , Sasha Levin Subject: [PATCH 4.18 089/228] rndis_wlan: potential buffer overflow in rndis_wlan_auth_indication() Date: Tue, 2 Oct 2018 06:23:06 -0700 Message-Id: <20181002132505.353175538@linuxfoundation.org> X-Mailer: git-send-email 2.19.0 In-Reply-To: <20181002132459.032960735@linuxfoundation.org> References: <20181002132459.032960735@linuxfoundation.org> User-Agent: quilt/0.65 X-stable: review 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: Dan Carpenter [ Upstream commit ae636fb1554833ee5133ca47bf4b2791b6739c52 ] This is a static checker fix, not something I have tested. The issue is that on the second iteration through the loop, we jump forward by le32_to_cpu(auth_req->length) bytes. The problem is that if the length is more than "buflen" then we end up with a negative "buflen". A negative buflen is type promoted to a high positive value and the loop continues but it's accessing beyond the end of the buffer. I believe the "auth_req->length" comes from the firmware and if the firmware is malicious or buggy, you're already toasted so the impact of this bug is probably not very severe. Fixes: 030645aceb3d ("rndis_wlan: handle 802.11 indications from device") Signed-off-by: Dan Carpenter Signed-off-by: Kalle Valo Signed-off-by: Sasha Levin Signed-off-by: Greg Kroah-Hartman --- drivers/net/wireless/rndis_wlan.c | 2 ++ 1 file changed, 2 insertions(+) --- a/drivers/net/wireless/rndis_wlan.c +++ b/drivers/net/wireless/rndis_wlan.c @@ -2928,6 +2928,8 @@ static void rndis_wlan_auth_indication(s while (buflen >= sizeof(*auth_req)) { auth_req = (void *)buf; + if (buflen < le32_to_cpu(auth_req->length)) + return; type = "unknown"; flags = le32_to_cpu(auth_req->flags); pairwise_error = false;