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=-6.8 required=3.0 tests=DKIMWL_WL_HIGH,DKIM_SIGNED, DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SIGNED_OFF_BY, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT 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 2B941C2D0D1 for ; Thu, 19 Dec 2019 18:38:58 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 02FA324685 for ; Thu, 19 Dec 2019 18:38:58 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1576780738; bh=D88LjePSLbN6EE5u40F5tQyTS+zORMtNJIcWViBXcHQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:List-ID:From; b=07Of3FNI0K3ebxxQgcDotHQLxsFCinF6cfgmErS3fPIVL6nve1l9Ua/wGrFDlOTRu PEnnjIV4Fn3AvK4j/RNMhBV8CVzDQQeFvRRIs3MRyL/JU1p0C1pi084y+2CYslsXY8 VrOCu8/aXszD6HTAFu6qUOq4JyGY9EpSMdCY6G4U= Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1728108AbfLSSiz (ORCPT ); Thu, 19 Dec 2019 13:38:55 -0500 Received: from mail.kernel.org ([198.145.29.99]:56930 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1727330AbfLSSiy (ORCPT ); Thu, 19 Dec 2019 13:38:54 -0500 Received: from localhost (83-86-89-107.cable.dynamic.v4.ziggo.nl [83.86.89.107]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPSA id E85A2222C2; Thu, 19 Dec 2019 18:38:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=default; t=1576780734; bh=D88LjePSLbN6EE5u40F5tQyTS+zORMtNJIcWViBXcHQ=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=VGtNovfDjMu3biIipgBMtkcDqvL61aPMUoB+2nVNvD+Y/QA9RxNCLsLq7GoJ1yTuF 3QVkr6ykuEBrTNywU01RbkMZwANHNVoJkdyJ49n0zWqzIZ6sq+MxagCKho21b2iKD4 JUjJCUab3urOp25Z6lsk4hbzyXz31sHf6fAqqrlc= From: Greg Kroah-Hartman To: linux-kernel@vger.kernel.org Cc: Greg Kroah-Hartman , stable@vger.kernel.org, Emiliano Ingrassia Subject: [PATCH 4.4 095/162] usb: core: urb: fix URB structure initialization function Date: Thu, 19 Dec 2019 19:33:23 +0100 Message-Id: <20191219183213.573277837@linuxfoundation.org> X-Mailer: git-send-email 2.24.1 In-Reply-To: <20191219183150.477687052@linuxfoundation.org> References: <20191219183150.477687052@linuxfoundation.org> User-Agent: quilt/0.66 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Sender: stable-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: stable@vger.kernel.org From: Emiliano Ingrassia commit 1cd17f7f0def31e3695501c4f86cd3faf8489840 upstream. Explicitly initialize URB structure urb_list field in usb_init_urb(). This field can be potentially accessed uninitialized and its initialization is coherent with the usage of list_del_init() in usb_hcd_unlink_urb_from_ep() and usb_giveback_urb_bh() and its explicit initialization in usb_hcd_submit_urb() error path. Signed-off-by: Emiliano Ingrassia Cc: stable Link: https://lore.kernel.org/r/20191127160355.GA27196@ingrassia.epigenesys.com Signed-off-by: Greg Kroah-Hartman --- drivers/usb/core/urb.c | 1 + 1 file changed, 1 insertion(+) --- a/drivers/usb/core/urb.c +++ b/drivers/usb/core/urb.c @@ -40,6 +40,7 @@ void usb_init_urb(struct urb *urb) if (urb) { memset(urb, 0, sizeof(*urb)); kref_init(&urb->kref); + INIT_LIST_HEAD(&urb->urb_list); INIT_LIST_HEAD(&urb->anchor_list); } }