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]
Date:	Thu, 19 Dec 2013 16:17:45 -0600
From:	Scott Wood <scottwood@...escale.com>
To:	Greg Kroah-Hartman <gregkh@...uxfoundation.org>
CC:	Kim Phillips <kim.phillips@...aro.org>,
	<linux-kernel@...r.kernel.org>, <kvm@...r.kernel.org>,
	<R65777@...escale.com>, <B07421@...escale.com>,
	<B08248@...escale.com>, <christoffer.dall@...aro.org>,
	<alex.williamson@...hat.com>, <a.motakis@...tualopensystems.com>,
	<agraf@...e.de>, <B16395@...escale.com>
Subject: Re: [REPOST][PATCH 2/2] driver core: platform: allow platform
 drivers to bind to any device

On Thu, 2013-12-19 at 12:44 -0800, Greg Kroah-Hartman wrote:
> On Thu, Dec 19, 2013 at 02:29:21PM -0600, Scott Wood wrote:
> > On Wed, 2013-12-18 at 17:03 -0800, Greg Kroah-Hartman wrote:
> > > On Tue, Dec 03, 2013 at 12:34:54PM +0000, Kim Phillips wrote:
> > > > diff --git a/drivers/base/platform.c b/drivers/base/platform.c
> > > > index 3a94b79..78a5b62 100644
> > > > --- a/drivers/base/platform.c
> > > > +++ b/drivers/base/platform.c
> > > > @@ -736,6 +736,10 @@ static int platform_match(struct device *dev, struct device_driver *drv)
> > > >  	struct platform_device *pdev = to_platform_device(dev);
> > > >  	struct platform_driver *pdrv = to_platform_driver(drv);
> > > >  
> > > > +	/* the driver matches any device */
> > > > +	if (pdrv->match_any_dev)
> > > > +		return 1;
> > > 
> > > This breaks userspace in that it will never know to load the module that
> > > can "bind to anything".
> > > 
> > > You need a way to encode this in the platform device id that can be a
> > > wildcard type of thing, so that userspace can know about this.
> > 
> > How is userspace broken?  vfio platform is a new thing; there's nothing
> > existing to break.  I don't see how automatic module loading makes sense
> > for it.  Whether the module needs to be loaded depends on the user's
> > intentions, not based on what hardware you have.
> 
> As your driver is saying it can "match any device", you need to tell
> userspace that, which you aren't doing here.

Userspace either knows how to set up VFIO platform devices, in which
case it knows what to do, or it doesn't, in which case why would we want
the module loaded?

> That's what the ids that are exported to userspace do, please add some for platform devices to
> allow this to work properly, like almost all other busses have.

This isn't about platform devices versus "almost all other buses", it's
about VFIO being fundamentally different from normal drivers.

-Scott


--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ