From: Armin Wolf <W_Armin@gmx.de>
To: "David Lechner" <dlechner@baylibre.com>,
"Uwe Kleine-König" <u.kleine-koenig@baylibre.com>,
"Danilo Krummrich" <dakr@kernel.org>
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Luis Chamberlain <mcgrof@kernel.org>,
Petr Pavlu <petr.pavlu@suse.com>,
Daniel Gomez <da.gomez@kernel.org>,
Sami Tolvanen <samitolvanen@google.com>,
Aaron Tomlin <atomlin@atomlin.com>,
Jonathan Corbet <corbet@lwn.net>,
Shuah Khan <skhan@linuxfoundation.org>,
Randy Dunlap <rdunlap@infradead.org>,
"Rafael J. Wysocki" <rafael@kernel.org>,
Steven Rostedt <rostedt@goodmis.org>,
Masami Hiramatsu <mhiramat@kernel.org>,
Mathieu Desnoyers <mathieu.desnoyers@efficios.com>,
Bradley Morgan <brads@mainlining.org>,
Aleksandr Nogikh <nogikh@google.com>,
linux-modules@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-doc@vger.kernel.org, linux-usb@vger.kernel.org,
driver-core@lists.linux.dev, linux-trace-kernel@vger.kernel.org,
Johan Hovold <johan@kernel.org>,
Richard Weinberger <richard@nod.at>
Subject: Re: [PATCH v4 0/3] driver core: add TAINT_FORCED_BIND for when userspace manually messes with devices and drivers
Date: Tue, 22 Sep 2026 23:04:46 +0200 [thread overview]
Message-ID: <9bd3a34b-5e98-4038-80d6-da2c3b1948dd@gmx.de> (raw)
In-Reply-To: <defb3953-7516-437e-b70b-d57de55b91bf@baylibre.com>
Am 22.09.26 um 15:40 schrieb David Lechner:
> On 9/22/26 2:39 AM, Uwe Kleine-König wrote:
>> On Fri, Sep 18, 2026 at 06:39:02PM +0200, Danilo Krummrich wrote:
>>> On Mon Sep 14, 2026 at 4:30 PM CEST, Greg Kroah-Hartman wrote:
>>>> The ability to add and remove devices from a driver through the sysfs
>>>> "bind" and "unbind" files was created all those decades ago as a way
>>>> that kernel developers can iterate faster, and provide a debugging way
>>>> for users to attempt to add a new device to a driver without having to
>>>> rebuild their kernel.
>>>>
>>>> This api over the years has been abused and recently come under a major
>>>> fuzzing "attack" through tools like syzbot which decided that it would
>>>> attempt to just randomly bind any driver to any type of device, causing
>>>> loads of unneeded errors and pointless kernel patches to be generated by
>>>> unsuspecting new developers.
>>>>
>>>> Handle all of this by adding a new taint flag, TAINT_FORCED_BIND, which
>>>> will be set on the driver if the bind/unbind sysfs files are ever
>>>> written to. This lets kernel developers "know" that a user is
>>>> attempting to do something that is not normal, and as such, if the
>>>> kernel breaks they get to keep the shiny pieces laying around on the
>>>> floor.
>>>>
>>>> The flag is 'Y' which was unused, and can remembered as the user is
>>>> "yeeting" the device being operated on here (thrown with force without
>>>> regard for the thing being thrown).
>>>>
>>>> Note, the taint flag gets set _BEFORE_ the bind/unbind callback happens,
>>>> as many times crashes/oops/warnings/failures happen within the callback,
>>>> and the taint flag needs to be there to show what was being attempted.
>>>> If it were to be set after the callback happens, the oops report would
>>>> not properly reflect what foolishness was being attempted.
>>>>
>>>> Fuzzing tools like syzbot, that doesn't have hand-crafted rules to keep
>>>> the tool from hitting bind/unbind, should be run with panic_on_taint
>>>> enabled so that they fall over and don't continue on, thinking that they
>>>> actually found a real issue.
>>>>
>>>> Userspace operations that rely on the bind/unbind files
>>> I agree that this should be avoided.
>>>
>>> But I also think the biggest offender really is driver_override. Specifically,
>>> on a hot-pluggable bus a driver must be complient with the device driver
>>> lifecycle rules and hence shouldn't break on bind/unbind. I think it would be
>>> nice to not taint the kernel for such busses, and only taint on driver_override,
>>> as I think we'd still want the bug reports for such cases.
>>>
>>> But I think this is fine to leave for a follow-up.
>> I fully agree. I'm fine and support tainting on driver_override, but
>> bind/unbind are used occasionally in my bubble and I consider drivers
>> not handling that properly buggy.
I fully agree with this, drivers should correctly implement the lifecycle model
and not just break when being unbound at a improper time. Drivers suffering from
this can easily break this way when unloading the associated kernel module, so this
taint is no solution.
> In the IIO subsystem, unbind/rebind is the de-facto way to reset a wedged
> chip.
>
> A few examples where other reset methods were reject in favor of unbind/bind:
>
> https://lore.kernel.org/linux-iio/20240727160216.2488ed29@jic23-huawei/
>
> This needs documenting as it's custom ABI. Note that we don't often
> accept custom ABI. Particularly not a hook that seems to reset the
> device. If you want to do that, unbind and rebind the whole drive[r]
> so we are in a known state etc.
>
> https://lore.kernel.org/linux-iio/20240720163440.03c713dc@jic23-huawei/
>
> Firstly as stated below, we don't provide interfaces for this
> because it's a heavy weight process that is most of the effort of
> unbinding and rebinding the driver. So if you need to reset, do that.
>
> https://lore.kernel.org/linux-iio/20250505200609.54756520@jic23-huawei/
>
> The solution is to run it once at driver bind. Similar to reset
> below, if the usecase needs to re do it then unbinding and rebinding
> the driver reflects the fact we are taking it effectively offline
> for a while.
>
I also consider bind/unbind to be an official API to interact with devices,
so i want to use them in the future with the WMI subsystem.
AFAIK the underlying reason for this series is that some drivers break when
being bound to unsupported devices. However IMHO drivers should verify that
they support a given device inside their .probe callback, and the associated
bus should only match devices with drivers that explicitly claim support for
those devices (ignoring driver_override).
Can we get some example bugs uncovered this way?
Thanks,
Armin Wolf
>> So please let's do
>>
>> diff --git a/drivers/base/bus.c b/drivers/base/bus.c
>> index c51ad96d4de4..ce8fb14ea19a 100644
>> --- a/drivers/base/bus.c
>> +++ b/drivers/base/bus.c
>> @@ -242,7 +242,6 @@ static ssize_t unbind_store(struct device_driver *drv, const char *buf,
>>
>> dev = bus_find_device_by_name(bus, NULL, buf);
>> if (dev && dev->driver == drv) {
>> - add_taint_module(drv->owner, TAINT_FORCED_BIND, LOCKDEP_STILL_OK);
>> device_driver_detach(dev);
>> err = count;
>> }
>> @@ -266,7 +265,6 @@ static ssize_t bind_store(struct device_driver *drv, const char *buf,
>>
>> dev = bus_find_device_by_name(bus, NULL, buf);
>> if (dev && driver_match_device(drv, dev)) {
>> - add_taint_module(drv->owner, TAINT_FORCED_BIND, LOCKDEP_STILL_OK);
>> err = device_driver_attach(drv, dev);
>> if (!err) {
>> /* success */
>> @@ -513,6 +511,7 @@ static ssize_t driver_override_store(struct device *dev,
>> {
>> int ret;
>>
>> + add_taint_module(drv->owner, TAINT_FORCED_BIND, LOCKDEP_STILL_OK);
>> ret = __device_set_driver_override(dev, buf, count);
>> if (ret)
>> return ret;
>>
>> (plus the needed documentation adaptions and maybe a rename
>> s/TAINT_FORCED_BIND/TAINT_DRIVER_OVERRIDE/).
>>
>> Best regards
>> Uwe
next prev parent reply other threads:[~2026-09-22 21:05 UTC|newest]
Thread overview: 13+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-14 14:30 Greg Kroah-Hartman
2026-09-14 14:30 ` [PATCH v4 1/3] module: pull out add_taint_module() to be public Greg Kroah-Hartman
2026-09-14 14:30 ` [PATCH v4 2/3] module: fix up documentation for add_taint() and add_taint_module() Greg Kroah-Hartman
2026-09-14 14:42 ` Bradley Morgan
2026-09-18 15:44 ` Aaron Tomlin
2026-09-14 14:30 ` [PATCH v4 3/3] driver core: add TAINT_FORCED_BIND for when userspace manually messes with devices and drivers Greg Kroah-Hartman
2026-09-18 16:39 ` [PATCH v4 0/3] " Danilo Krummrich
2026-09-18 17:25 ` Greg Kroah-Hartman
2026-09-18 17:29 ` Bradley Morgan
2026-09-22 7:39 ` Uwe Kleine-König
2026-09-22 13:40 ` David Lechner
2026-09-22 21:04 ` Armin Wolf [this message]
2026-09-23 6:29 ` Uwe Kleine-König
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=9bd3a34b-5e98-4038-80d6-da2c3b1948dd@gmx.de \
--to=w_armin@gmx.de \
--cc=atomlin@atomlin.com \
--cc=brads@mainlining.org \
--cc=corbet@lwn.net \
--cc=da.gomez@kernel.org \
--cc=dakr@kernel.org \
--cc=dlechner@baylibre.com \
--cc=driver-core@lists.linux.dev \
--cc=gregkh@linuxfoundation.org \
--cc=johan@kernel.org \
--cc=linux-doc@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-modules@vger.kernel.org \
--cc=linux-trace-kernel@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=mathieu.desnoyers@efficios.com \
--cc=mcgrof@kernel.org \
--cc=mhiramat@kernel.org \
--cc=nogikh@google.com \
--cc=petr.pavlu@suse.com \
--cc=rafael@kernel.org \
--cc=rdunlap@infradead.org \
--cc=richard@nod.at \
--cc=rostedt@goodmis.org \
--cc=samitolvanen@google.com \
--cc=skhan@linuxfoundation.org \
--cc=u.kleine-koenig@baylibre.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®