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=-5.2 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_HELO_NONE,SPF_PASS, URIBL_BLOCKED,USER_AGENT_SANE_1 autolearn=no 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 CEBE2C4363A for ; Mon, 5 Oct 2020 15:25:46 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 83B0620774 for ; Mon, 5 Oct 2020 15:25:46 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1727060AbgJEPZp (ORCPT ); Mon, 5 Oct 2020 11:25:45 -0400 Received: from netrider.rowland.org ([192.131.102.5]:42135 "HELO netrider.rowland.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1727032AbgJEPZl (ORCPT ); Mon, 5 Oct 2020 11:25:41 -0400 Received: (qmail 380341 invoked by uid 1000); 5 Oct 2020 11:25:40 -0400 Date: Mon, 5 Oct 2020 11:25:40 -0400 From: Alan Stern To: Andrey Konovalov Cc: Greg Kroah-Hartman , Valentina Manea , Shuah Khan , USB list , LKML , Dmitry Vyukov , Nazime Hande Harputluoglu , syzkaller Subject: Re: Is usb_hcd_giveback_urb() allowed in task context? Message-ID: <20201005152540.GG376584@rowland.harvard.edu> References: <20201005151857.GA2309511@kroah.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.10.1 (2018-07-13) Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, Oct 05, 2020 at 05:21:30PM +0200, Andrey Konovalov wrote: > On Mon, Oct 5, 2020 at 5:18 PM Greg Kroah-Hartman > wrote: > > > > On Mon, Oct 05, 2020 at 05:08:11PM +0200, Andrey Konovalov wrote: > > > Dear USB and USB/IP maintainers, > > > > > > While fuzzing the USB/IP stack with syzkaller we've stumbled upon an issue. > > > > > > Currently kcov (the subsystem that is used for coverage collection) > > > USB-related callbacks assume that usb_hcd_giveback_urb() can only be > > > called from interrupt context, as indicated by the comment before the > > > function definition. In the USB/IP code, however, it's called from the > > > task context (see the stack trace below). > > > > > > Is this something that is allowed and we need to fix kcov? Or is this > > > a bug in USB/IP? > > > > It's a bug in kcov, and is not true as you have found out :) > > OK, I see, I'll work on a fix, thanks! > > Should I also update the comment above usb_hcd_giveback_urb() to > mention that it can be called in_task()? Or is this redundant and is > assumed in general? No, no -- it won't work right if it's called in process context. Not only do the spinlock calls leave the interrupt flag unchanged, also the driver callback routines may expect to be invoked with interrupts disabled. (We have tried to fix this, but I'm not at all certain that all the cases have been updated.) Alan Stern