lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <88f2c959-7b88-4d97-81a4-11902dddd19a@rowland.harvard.edu>
Date: Mon, 26 Aug 2024 11:42:59 -0400
From: Alan Stern <stern@...land.harvard.edu>
To: Greg KH <gregkh@...uxfoundation.org>
Cc: WangYuli <wangyuli@...ontech.com>, leoliu-oc@...oxin.com,
	dlemoal@...nel.org, arnd@...nel.org, schnelle@...ux.ibm.com,
	WeitaoWang-oc@...oxin.com, linux-usb@...r.kernel.org,
	linux-kernel@...r.kernel.org, mathias.nyman@...ux.intel.com,
	ulf.hansson@...aro.org, vkoul@...nel.org, hslester96@...il.com,
	Carsten_Schmid@...tor.com, efremov@...ux.com, tonywwang@...oxin.com,
	weitaowang@...oxin.com, CobeChen@...oxin.com, TimGuo@...oxin.com,
	wwt8723@....com, alex.williamson@...hat.com,
	guanwentao@...ontech.com, xuerpeng@...ontech.com
Subject: Re: [PATCH v2] USB: Fix kernel NULL pointer when unbind UHCI form
 vfio-pci

All right, I see what's going on...

On Mon, Aug 26, 2024 at 11:30:14AM +0200, Greg KH wrote:
> On Mon, Aug 26, 2024 at 04:54:55PM +0800, WangYuli wrote:
> > From: leoliu-oc <leoliu-oc@...oxin.com>
> > 
> > This bug is found in Zhaoxin platform, but it's a commom code bug.
> 
> To be fair, this is not a normal "common" code path at all :)
> 
> > 
> > Fail sequence:
> > step1: Unbind UHCI controller from native driver;
> 
> First off, you all know this is really an "unsupported" thing to do.  I
> love it how the vfio people abuse this interface for their main code
> path, but remember that is NEVER what it was designed for at all.  The
> fact that it could possibly work at all is a miracle and everyone gets
> lucky if nothing dies when they attempt to manually do the gyrations you
> are doing here.

Still, it would be good to support this properly.

The big assumption in hcd-pci.c has always been that if a UHCI device is 
bound to a driver, then that driver must be uhci-hcd.  That assumption 
is no longer true here, because now the driver could be vfio-pci 
instead.

> > step2: Bind UHCI controller to vfio-pci, which will put UHCI controller in
> > 	   one vfio group's device list and set UHCI's dev->driver_data to
> > 	   struct vfio-pci(for UHCI)
> 
> Who sets the driver_data here?

The vfio-pci driver does.  Since it's a PCI virtualization driver, it 
doesn't behave like a normal USB host controller driver and it doesn't 
set the drvdata to point to the hcd structure.

> > step3: Unbind EHCI controller from native driver, will try to tell UHCI
> > 	   native driver that "I'm removed by set
> > 	   companion_hcd->self.hs_companion to NULL. However, companion_hcd
> > 	   get from UHCI's dev->driver_data that has modified by vfio-pci
> > 	   already. So, the vfio-pci structure will be damaged!
> 
> Damaged how?  Attempting to assign random PCI drivers to the vfio-pci
> driver is again, really really not supported (despite what the vfio
> authors think), so again, it's amazing this works, as you are finding
> out.

A partial workaround for this problem might be to do steps 2 and 3 in 
the opposite order: unbind both controllers (UHCI, then EHCI) and 
afterwards bind both controllers (EHCI, then UHCI).  Then nothing would 
get damaged.

> > step4: Bind EHCI controller to vfio-pci driver, which will put EHCI
> > 	   controller in the same vfio group as UHCI controller;
> >        ... ...
> > step5: Unbind UHCI controller from vfio-pci, which will delete UHCI from
> > 	   vfio group device list that has been damaged in step 3. So, delete
> > 	   operation can random result into a NULL pointer dereference with
> > 	   the below stack dump.
> > step6: Bind UHCI controller to native driver;
> > step7: Unbind EHCI controller from vfio-pci, which will try to remove EHCI
> > 	   controller from the vfio group;
> > step8: Bind EHCI controller to native driver;

Likewise, do both unbind operations first and afterwards do both the 
bind operations.  However, that might not be enough to solve the problem 
here.

> That's crazy, why would you be doing all of that in the first place?  Is
> it common to add host controller drivers to virtual machines like this?
> Why not just use usbip instead?
> 
> > [  929.114641] uhci_hcd 0000:00:10.0: remove, state 1
> > [  929.114652] usb usb1: USB disconnect, device number 1
> > [  929.114655] usb 1-1: USB disconnect, device number 2
> > [  929.270313] usb 1-2: USB disconnect, device number 3
> > [  929.318404] uhci_hcd 0000:00:10.0: USB bus 1 deregistered
> > [  929.343029] uhci_hcd 0000:00:10.1: remove, state 4
> > [  929.343045] usb usb3: USB disconnect, device number 1
> > [  929.343685] uhci_hcd 0000:00:10.1: USB bus 3 deregistered
> > [  929.369087] ehci-pci 0000:00:10.7: remove, state 4
> > [  929.369102] usb usb4: USB disconnect, device number 1
> > [  929.370325] ehci-pci 0000:00:10.7: USB bus 4 deregistered
> > [  932.398494] BUG: unable to handle kernel NULL pointer dereference at 0000000000000000
> > [  932.398496] PGD 42a67d067 P4D 42a67d067 PUD 42a65f067 PMD 0
> > [  932.398502] Oops: 0002 [#2] SMP NOPTI
> > [  932.398505] CPU: 2 PID: 7824 Comm: vfio_unbind.sh Tainted: P   D  4.19.65-2020051917-rainos #1
> 
> Note, this is a very old kernel, and one that has closed source in it
> making it such that none of us can debug it at all.
> 
> And are you sure this happens on 6.10?
> 
> > diff --git a/drivers/usb/core/hcd-pci.c b/drivers/usb/core/hcd-pci.c
> > index a08f3f228e6d..5a63d7a772ae 100644
> > --- a/drivers/usb/core/hcd-pci.c
> > +++ b/drivers/usb/core/hcd-pci.c
> > @@ -48,6 +48,7 @@ static void for_each_companion(struct pci_dev *pdev, struct usb_hcd *hcd,
> >  	struct pci_dev		*companion;
> >  	struct usb_hcd		*companion_hcd;
> >  	unsigned int		slot = PCI_SLOT(pdev->devfn);
> > +	struct pci_driver	*drv;
> >  
> >  	/*
> >  	 * Iterate through other PCI functions in the same slot.
> > @@ -60,6 +61,13 @@ static void for_each_companion(struct pci_dev *pdev, struct usb_hcd *hcd,
> >  				PCI_SLOT(companion->devfn) != slot)
> >  			continue;
> >  
> > +		drv = companion->driver;
> > +		if (drv &&
> > +		    strncmp(drv->name, "uhci_hcd", sizeof("uhci_hcd") - 1) &&
> > +		    strncmp(drv->name, "ohci-pci", sizeof("ohci-pci") - 1) &&
> > +		    strncmp(drv->name, "ehci-pci", sizeof("ehci-pci") - 1))
> 
> Attempting to rely on kernel module names within kernel code just is not
> going to work, sorry.
> 
> What exactly are you trying to do here?  Please at least comment it.

It definitely should be commented.  The idea here is to verify the 
assumption mentioned earlier, namely, to find out whether the driver 
bound to this UHCI device really is uhci-hcd.  Testing the driver's 
name is a pretty ad-hoc way of doing it, but I can't think of anything 
better.

However, this check really should be done later, after determining 
whether the companion device is a UHCI, OHCI, or EHCI host controller.  
Then only one comparison would be needed in each case.

> > +			continue;
> 
> Do you just want to fail the binding?  If so, why?  And what is
> precenting a driver to be bound after you do the check?

This won't cause the binding to fail; it will merely skip calling the 
notification function.

Races are prevented by the companions_rwsem in hcd-pci.c.  It is held 
whenever for_each_companion() gets called.

> > +
> >  		/*
> >  		 * Companion device should be either UHCI,OHCI or EHCI host
> >  		 * controller, otherwise skip.
> 
> Why doesn't this check suffice?

The question WangYuli wants to answer isn't whether the companion device 
is UHCI, OHCI, or EHCI.  Rather, it is whether the companion device is 
bound to the uhci-hcd (or ohci-pci or ehci-pci) driver -- as opposed to 
the vfio-pci driver.

Alan Stern

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ