public inbox for workflows@vger.kernel.org
 help / color / mirror / Atom feed
* Re: [PATCH net] netrom: do some basic forms of validation on incoming frames
       [not found]       ` <20260410143042.1d4436de@kernel.org>
@ 2026-04-10 21:54         ` Jakub Kicinski
  2026-04-10 22:11           ` Kuniyuki Iwashima
  0 siblings, 1 reply; 8+ messages in thread
From: Jakub Kicinski @ 2026-04-10 21:54 UTC (permalink / raw)
  To: Greg Kroah-Hartman
  Cc: Simon Horman, netdev, linux-kernel, David S. Miller, Eric Dumazet,
	Paolo Abeni, linux-hams, Yizhe Zhuang, stable, workflows

On Fri, 10 Apr 2026 14:30:42 -0700 Jakub Kicinski wrote:
> On Fri, 10 Apr 2026 07:24:36 +0200 Greg Kroah-Hartman wrote:
> > On Thu, Apr 09, 2026 at 08:32:35PM -0700, Jakub Kicinski wrote:  
> > > Or for simplicity we could also be testing against skb_headlen()
> > > since we don't expect any legit non-linear frames here? Dunno.    
> > 
> > I'll be glad to change this either way, your call.  Given that this is
> > an obsolete protocol that seems to only be a target for drive-by fuzzers
> > to attack, whatever the simplest thing to do to quiet them up I'll be
> > glad to implement.
> > 
> > Or can we just delete this stuff entirely?  :)  
> 
> Yes.
> 
> My thinking is to delete hamradio, nfc, atm, caif.. [more to come]
> Create GH repos which provide them as OOT modules.
> Hopefully we can convince any existing users to switch to that.
> 
> The only thing stopping me is the concern that this is just the softest
> target and the LLMs will find something else to focus on which we can't
> delete. I suspect any PCIe driver can be flooded with "aren't you
> trusting the HW to provide valid responses here?" bullshit.
> 
> But hey, let's try. I'll post a patch nuking all of hamradio later
> today.

Well, either we "expunge" this code to OOT repos, or we mark it 
as broken and tell everyone that we don't take security fixes
for anything that depends on BROKEN. I'd personally rather expunge.

cc: workflows, we can't be the only ones still nursing Linux 2.2 code

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH net] netrom: do some basic forms of validation on incoming frames
  2026-04-10 21:54         ` [PATCH net] netrom: do some basic forms of validation on incoming frames Jakub Kicinski
@ 2026-04-10 22:11           ` Kuniyuki Iwashima
  2026-04-10 22:25             ` Hugh Blemings
  0 siblings, 1 reply; 8+ messages in thread
From: Kuniyuki Iwashima @ 2026-04-10 22:11 UTC (permalink / raw)
  To: kuba
  Cc: davem, edumazet, gregkh, horms, linux-hams, linux-kernel, netdev,
	pabeni, stable, workflows, yizhe

From: Jakub Kicinski <kuba@kernel.org>
Date: Fri, 10 Apr 2026 14:54:48 -0700
> On Fri, 10 Apr 2026 14:30:42 -0700 Jakub Kicinski wrote:
> > On Fri, 10 Apr 2026 07:24:36 +0200 Greg Kroah-Hartman wrote:
> > > On Thu, Apr 09, 2026 at 08:32:35PM -0700, Jakub Kicinski wrote:  
> > > > Or for simplicity we could also be testing against skb_headlen()
> > > > since we don't expect any legit non-linear frames here? Dunno.    
> > > 
> > > I'll be glad to change this either way, your call.  Given that this is
> > > an obsolete protocol that seems to only be a target for drive-by fuzzers
> > > to attack, whatever the simplest thing to do to quiet them up I'll be
> > > glad to implement.
> > > 
> > > Or can we just delete this stuff entirely?  :)  
> > 
> > Yes.
> > 
> > My thinking is to delete hamradio, nfc, atm, caif.. [more to come]
> > Create GH repos which provide them as OOT modules.
> > Hopefully we can convince any existing users to switch to that.
> > 
> > The only thing stopping me is the concern that this is just the softest
> > target and the LLMs will find something else to focus on which we can't
> > delete. I suspect any PCIe driver can be flooded with "aren't you
> > trusting the HW to provide valid responses here?" bullshit.
> > 
> > But hey, let's try. I'll post a patch nuking all of hamradio later
> > today.
> 
> Well, either we "expunge" this code to OOT repos, or we mark it 
> as broken and tell everyone that we don't take security fixes
> for anything that depends on BROKEN. I'd personally rather expunge.

+1 for "expunge" to prevent LLM-based patch flood.

IIRC, we did that recently for one driver only used by OpenWRT ?


> 
> cc: workflows, we can't be the only ones still nursing Linux 2.2 code

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH net] netrom: do some basic forms of validation on incoming frames
  2026-04-10 22:11           ` Kuniyuki Iwashima
@ 2026-04-10 22:25             ` Hugh Blemings
  2026-04-10 22:51               ` Craig
  2026-04-11  5:50               ` Greg KH
  0 siblings, 2 replies; 8+ messages in thread
From: Hugh Blemings @ 2026-04-10 22:25 UTC (permalink / raw)
  To: Kuniyuki Iwashima, kuba
  Cc: davem, edumazet, gregkh, horms, linux-hams, linux-kernel, netdev,
	pabeni, stable, workflows, yizhe


On 11/4/2026 08:11, Kuniyuki Iwashima wrote:
> From: Jakub Kicinski <kuba@kernel.org>
> Date: Fri, 10 Apr 2026 14:54:48 -0700
>> On Fri, 10 Apr 2026 14:30:42 -0700 Jakub Kicinski wrote:
>>> On Fri, 10 Apr 2026 07:24:36 +0200 Greg Kroah-Hartman wrote:
>>>> On Thu, Apr 09, 2026 at 08:32:35PM -0700, Jakub Kicinski wrote:
>>>>> Or for simplicity we could also be testing against skb_headlen()
>>>>> since we don't expect any legit non-linear frames here? Dunno.
>>>> I'll be glad to change this either way, your call.  Given that this is
>>>> an obsolete protocol that seems to only be a target for drive-by fuzzers
>>>> to attack, whatever the simplest thing to do to quiet them up I'll be
>>>> glad to implement.
>>>>
>>>> Or can we just delete this stuff entirely?  :)
>>> Yes.
>>>
>>> My thinking is to delete hamradio, nfc, atm, caif.. [more to come]
>>> Create GH repos which provide them as OOT modules.
>>> Hopefully we can convince any existing users to switch to that.
>>>
>>> The only thing stopping me is the concern that this is just the softest
>>> target and the LLMs will find something else to focus on which we can't
>>> delete. I suspect any PCIe driver can be flooded with "aren't you
>>> trusting the HW to provide valid responses here?" bullshit.
>>>
>>> But hey, let's try. I'll post a patch nuking all of hamradio later
>>> today.
>> Well, either we "expunge" this code to OOT repos, or we mark it
>> as broken and tell everyone that we don't take security fixes
>> for anything that depends on BROKEN. I'd personally rather expunge.
> +1 for "expunge" to prevent LLM-based patch flood.
>
> IIRC, we did that recently for one driver only used by OpenWRT ?
>
>
If the main concern here is ongoing maintenance of these Ham Radio 
related protocols/drivers, can we pause for a moment on anything as 
dramatic as removing from the tree entirely ?

There is a good cohort of capable kernel folks that either are or were 
ham radio operators who I believe, upon realising that things have got 
to this point, will be happy to redouble efforts to ensure this code 
maintained and tested to a satisfactory standard.

Or, alternatively, as a technical community it may be that the Ham Radio 
interested folks conclude that out of tree or user space solutions are a 
better way forward as others have proposed.

Give us a few days, please, for the word to be put around that we need 
to pull ourselves together a bit as a technical group :)

Cheers/73
Hugh
VK3YYZ/AD5RV/Lapsed Kernel Maintainer... ;)


>> cc: workflows, we can't be the only ones still nursing Linux 2.2 code

-- 
I am slowly moving to hugh@blemings.id.au as my main email address.
If you're using hugh@blemings.org please update your address book accordingly.
Thank you :)


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH net] netrom: do some basic forms of validation on incoming frames
  2026-04-10 22:25             ` Hugh Blemings
@ 2026-04-10 22:51               ` Craig
  2026-04-10 23:38                 ` Hugh Blemings
  2026-04-11  5:50               ` Greg KH
  1 sibling, 1 reply; 8+ messages in thread
From: Craig @ 2026-04-10 22:51 UTC (permalink / raw)
  To: hugh, Kuniyuki Iwashima, kuba
  Cc: davem, edumazet, gregkh, horms, linux-hams, linux-kernel, netdev,
	pabeni, stable, workflows, yizhe

> If the main concern here is ongoing maintenance of these Ham Radio 
> related protocols/drivers, can we pause for a moment on anything as 
> dramatic as removing from the tree entirely ?
>
> There is a good cohort of capable kernel folks that either are or were 
> ham radio operators who I believe, upon realising that things have got 
> to this point, will be happy to redouble efforts to ensure this code 
> maintained and tested to a satisfactory standard.
>
> Or, alternatively, as a technical community it may be that the Ham 
> Radio interested folks conclude that out of tree or user space 
> solutions are a better way forward as others have proposed.
>
> Give us a few days, please, for the word to be put around that we need 
> to pull ourselves together a bit as a technical group :)
>

I, for one, really can't imagine pulling an entire network subsytem out 
of the kernel without any
knowledge of how/if/when it's used.  Like intercontinental radio 
networks, global email, ax.25
keyboard-to-keyboard, BBS and other emergency-communication systems 
throughout the
world.  If you're sure the Internet will never fail, I guess it makes 
sense removing all of this
since it's inconvenient to maintain.

Global AX.25 keyboard-to-keyboard on 14.105Mhz

    https://qsl.net/kb9pvh/105.html

AX.25/netrom VHF routed networks spanning from Oregon to Los Angeles.

    https://www.easymapmaker.com/map/80666c4898ec6e8fa0c35add5d03282d

Global radio email using AX.25

   https://winlink.org/RMSChannels (1,336 AX.25 email packet nodes on 
the Earth and Space)

This is all in operation by Amateur Radio ARES emergency 
protocols/technologies.  This
will not pass the headline test when it comes to Linux detractors.

Most of this is running on Raspberry Pi / Linux 24/7.

If we want to kill all these apps and somehow force them into user space,
it's akin to just switching to Windows - and flounder with the Microsoft 
folks
trying to do the same thing.


-craig
https://digipi.org/


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH net] netrom: do some basic forms of validation on incoming frames
  2026-04-10 22:51               ` Craig
@ 2026-04-10 23:38                 ` Hugh Blemings
  0 siblings, 0 replies; 8+ messages in thread
From: Hugh Blemings @ 2026-04-10 23:38 UTC (permalink / raw)
  To: Craig, hugh, Kuniyuki Iwashima, kuba
  Cc: davem, edumazet, gregkh, horms, linux-hams, linux-kernel, netdev,
	pabeni, stable, workflows, yizhe


On 11/4/2026 08:51, Craig wrote:
>> If the main concern here is ongoing maintenance of these Ham Radio 
>> related protocols/drivers, can we pause for a moment on anything as 
>> dramatic as removing from the tree entirely ?
>>
>> There is a good cohort of capable kernel folks that either are or 
>> were ham radio operators who I believe, upon realising that things 
>> have got to this point, will be happy to redouble efforts to ensure 
>> this code maintained and tested to a satisfactory standard.
>>
>> Or, alternatively, as a technical community it may be that the Ham 
>> Radio interested folks conclude that out of tree or user space 
>> solutions are a better way forward as others have proposed.
>>
>> Give us a few days, please, for the word to be put around that we 
>> need to pull ourselves together a bit as a technical group :)
>>
>
> I, for one, really can't imagine pulling an entire network subsytem 
> out of the kernel without any
> knowledge of how/if/when it's used.  Like intercontinental radio 
> networks, global email, ax.25
> keyboard-to-keyboard, BBS and other emergency-communication systems 
> throughout the
> world.  If you're sure the Internet will never fail, I guess it makes 
> sense removing all of this
> since it's inconvenient to maintain.
>
> Global AX.25 keyboard-to-keyboard on 14.105Mhz
>
>    https://qsl.net/kb9pvh/105.html
>
> AX.25/netrom VHF routed networks spanning from Oregon to Los Angeles.
>
>  https://www.easymapmaker.com/map/80666c4898ec6e8fa0c35add5d03282d
>
> Global radio email using AX.25
>
>   https://winlink.org/RMSChannels (1,336 AX.25 email packet nodes on 
> the Earth and Space)
>
> This is all in operation by Amateur Radio ARES emergency 
> protocols/technologies.  This
> will not pass the headline test when it comes to Linux detractors.
>
> Most of this is running on Raspberry Pi / Linux 24/7.
>
> If we want to kill all these apps and somehow force them into user space,
> it's akin to just switching to Windows - and flounder with the 
> Microsoft folks
> trying to do the same thing.

Your email Craig neatly encapsulates just some of the practical and 
ongoing applications of the kernel code in question - I don't think this 
is in dispute.

What's pertinent is if we as the ham/amatuer radio community can agree 
on whether in tree, out of tree modules, or a userspace device driver 
approach make the most sense.  If we are to keep code in the kernel in 
any form, we as a community need to find someone(s) that have the skills 
and bandwidth to keep the in tree code up to date.

I don't think this would be onerous and I have a couple of people in 
mind to nudge who may be happy to do so if that proves the right way 
forward.  At a pinch I could do it, but that'll mean a lot of catching 
up. But I think it reasonable that the responsibility here falls to 
folks that are closer to the code in question than the wider and 
overworked kernel maintainer community.

That said, I think Dan Cross (KZ2X) earlier email makes a pretty strong 
case for moving out of the kernel while still providing a way to have 
backward compatibility, perhaps this might be the way forward?

In any case, done well, this approach would not kill the apps or force 
anything like switching to Windows! :) Great projects like digipi would 
be able to continue with minimal changes.

I wonder if a separate thread in linux-hams makes sense to discuss the 
various longer term approaches to maintaining these capabilities - I'll 
try make time later today to kick one off - such deliberations will be 
of less interest to the broader LKML and other lists.

Cheers/73
Hugh



>
>
> -craig
> https://digipi.org/
>
>
-- 
I am slowly moving to hugh@blemings.id.au as my main email address.
If you're using hugh@blemings.org please update your address book accordingly.
Thank you :)


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH net] netrom: do some basic forms of validation on incoming frames
  2026-04-10 22:25             ` Hugh Blemings
  2026-04-10 22:51               ` Craig
@ 2026-04-11  5:50               ` Greg KH
  2026-04-11  7:24                 ` Hugh Blemings
  1 sibling, 1 reply; 8+ messages in thread
From: Greg KH @ 2026-04-11  5:50 UTC (permalink / raw)
  To: hugh
  Cc: Kuniyuki Iwashima, kuba, davem, edumazet, horms, linux-hams,
	linux-kernel, netdev, pabeni, stable, workflows, yizhe

On Sat, Apr 11, 2026 at 08:25:19AM +1000, Hugh Blemings wrote:
> 
> On 11/4/2026 08:11, Kuniyuki Iwashima wrote:
> > From: Jakub Kicinski <kuba@kernel.org>
> > Date: Fri, 10 Apr 2026 14:54:48 -0700
> > > On Fri, 10 Apr 2026 14:30:42 -0700 Jakub Kicinski wrote:
> > > > On Fri, 10 Apr 2026 07:24:36 +0200 Greg Kroah-Hartman wrote:
> > > > > On Thu, Apr 09, 2026 at 08:32:35PM -0700, Jakub Kicinski wrote:
> > > > > > Or for simplicity we could also be testing against skb_headlen()
> > > > > > since we don't expect any legit non-linear frames here? Dunno.
> > > > > I'll be glad to change this either way, your call.  Given that this is
> > > > > an obsolete protocol that seems to only be a target for drive-by fuzzers
> > > > > to attack, whatever the simplest thing to do to quiet them up I'll be
> > > > > glad to implement.
> > > > > 
> > > > > Or can we just delete this stuff entirely?  :)
> > > > Yes.
> > > > 
> > > > My thinking is to delete hamradio, nfc, atm, caif.. [more to come]
> > > > Create GH repos which provide them as OOT modules.
> > > > Hopefully we can convince any existing users to switch to that.
> > > > 
> > > > The only thing stopping me is the concern that this is just the softest
> > > > target and the LLMs will find something else to focus on which we can't
> > > > delete. I suspect any PCIe driver can be flooded with "aren't you
> > > > trusting the HW to provide valid responses here?" bullshit.
> > > > 
> > > > But hey, let's try. I'll post a patch nuking all of hamradio later
> > > > today.
> > > Well, either we "expunge" this code to OOT repos, or we mark it
> > > as broken and tell everyone that we don't take security fixes
> > > for anything that depends on BROKEN. I'd personally rather expunge.
> > +1 for "expunge" to prevent LLM-based patch flood.
> > 
> > IIRC, we did that recently for one driver only used by OpenWRT ?
> > 
> > 
> If the main concern here is ongoing maintenance of these Ham Radio related
> protocols/drivers, can we pause for a moment on anything as dramatic as
> removing from the tree entirely ?

Sure, but:

> There is a good cohort of capable kernel folks that either are or were ham
> radio operators who I believe, upon realising that things have got to this
> point, will be happy to redouble efforts to ensure this code maintained and
> tested to a satisfactory standard.

We need this code to be maintained, because as is being shown, there are
reported problems with it that will affect these devices/networks that
you all are using.  So all we need is a maintainer for this to be able
to take reports that we get and fix things up as needed.  I know you
have that experience, want to come back to kernel development, we've
missed you :)

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH net] netrom: do some basic forms of validation on incoming frames
  2026-04-11  5:50               ` Greg KH
@ 2026-04-11  7:24                 ` Hugh Blemings
  2026-04-11  8:58                   ` Greg KH
  0 siblings, 1 reply; 8+ messages in thread
From: Hugh Blemings @ 2026-04-11  7:24 UTC (permalink / raw)
  To: Greg KH, hugh
  Cc: Kuniyuki Iwashima, kuba, davem, edumazet, horms, linux-hams,
	linux-kernel, netdev, pabeni, stable, workflows, yizhe


On 11/4/2026 15:50, Greg KH wrote:
> On Sat, Apr 11, 2026 at 08:25:19AM +1000, Hugh Blemings wrote:
>> On 11/4/2026 08:11, Kuniyuki Iwashima wrote:
>>> From: Jakub Kicinski <kuba@kernel.org>
>>> Date: Fri, 10 Apr 2026 14:54:48 -0700
>>>> On Fri, 10 Apr 2026 14:30:42 -0700 Jakub Kicinski wrote:
>>>>> On Fri, 10 Apr 2026 07:24:36 +0200 Greg Kroah-Hartman wrote:
>>>>>> On Thu, Apr 09, 2026 at 08:32:35PM -0700, Jakub Kicinski wrote:
>>>>>>> Or for simplicity we could also be testing against skb_headlen()
>>>>>>> since we don't expect any legit non-linear frames here? Dunno.
>>>>>> I'll be glad to change this either way, your call.  Given that this is
>>>>>> an obsolete protocol that seems to only be a target for drive-by fuzzers
>>>>>> to attack, whatever the simplest thing to do to quiet them up I'll be
>>>>>> glad to implement.
>>>>>>
>>>>>> Or can we just delete this stuff entirely?  :)
>>>>> Yes.
>>>>>
>>>>> My thinking is to delete hamradio, nfc, atm, caif.. [more to come]
>>>>> Create GH repos which provide them as OOT modules.
>>>>> Hopefully we can convince any existing users to switch to that.
>>>>>
>>>>> The only thing stopping me is the concern that this is just the softest
>>>>> target and the LLMs will find something else to focus on which we can't
>>>>> delete. I suspect any PCIe driver can be flooded with "aren't you
>>>>> trusting the HW to provide valid responses here?" bullshit.
>>>>>
>>>>> But hey, let's try. I'll post a patch nuking all of hamradio later
>>>>> today.
>>>> Well, either we "expunge" this code to OOT repos, or we mark it
>>>> as broken and tell everyone that we don't take security fixes
>>>> for anything that depends on BROKEN. I'd personally rather expunge.
>>> +1 for "expunge" to prevent LLM-based patch flood.
>>>
>>> IIRC, we did that recently for one driver only used by OpenWRT ?
>>>
>>>
>> If the main concern here is ongoing maintenance of these Ham Radio related
>> protocols/drivers, can we pause for a moment on anything as dramatic as
>> removing from the tree entirely ?
> Sure, but:
>
>> There is a good cohort of capable kernel folks that either are or were ham
>> radio operators who I believe, upon realising that things have got to this
>> point, will be happy to redouble efforts to ensure this code maintained and
>> tested to a satisfactory standard.
> We need this code to be maintained, because as is being shown, there are
> reported problems with it that will affect these devices/networks that
> you all are using.  So all we need is a maintainer for this to be able
> to take reports that we get and fix things up as needed.  I know you
> have that experience, want to come back to kernel development, we've
> missed you :)

That's most kind Greg, thank you, have missed all you cool kids too :)

More seriously though - I'd be up for doing it, but I think there may be 
others better placed than I who haven't yet realised we have this 
conundrum. I'm nudging a few folks offline on this front.

I've also kicked off a thread in linux-hams to discuss some of the 
broader questions raised about staying in tree, going to out of tree or 
looking at userspace solutions instead.

We'll try get a cohesive picture back over next few days.

Cheers,
Hugh

-- 
I am slowly moving to hugh@blemings.id.au as my main email address.
If you're using hugh@blemings.org please update your address book accordingly.
Thank you :)


^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH net] netrom: do some basic forms of validation on incoming frames
  2026-04-11  7:24                 ` Hugh Blemings
@ 2026-04-11  8:58                   ` Greg KH
  0 siblings, 0 replies; 8+ messages in thread
From: Greg KH @ 2026-04-11  8:58 UTC (permalink / raw)
  To: hugh
  Cc: Kuniyuki Iwashima, kuba, davem, edumazet, horms, linux-hams,
	linux-kernel, netdev, pabeni, stable, workflows, yizhe

On Sat, Apr 11, 2026 at 05:24:17PM +1000, Hugh Blemings wrote:
> 
> On 11/4/2026 15:50, Greg KH wrote:
> > On Sat, Apr 11, 2026 at 08:25:19AM +1000, Hugh Blemings wrote:
> > > On 11/4/2026 08:11, Kuniyuki Iwashima wrote:
> > > > From: Jakub Kicinski <kuba@kernel.org>
> > > > Date: Fri, 10 Apr 2026 14:54:48 -0700
> > > > > On Fri, 10 Apr 2026 14:30:42 -0700 Jakub Kicinski wrote:
> > > > > > On Fri, 10 Apr 2026 07:24:36 +0200 Greg Kroah-Hartman wrote:
> > > > > > > On Thu, Apr 09, 2026 at 08:32:35PM -0700, Jakub Kicinski wrote:
> > > > > > > > Or for simplicity we could also be testing against skb_headlen()
> > > > > > > > since we don't expect any legit non-linear frames here? Dunno.
> > > > > > > I'll be glad to change this either way, your call.  Given that this is
> > > > > > > an obsolete protocol that seems to only be a target for drive-by fuzzers
> > > > > > > to attack, whatever the simplest thing to do to quiet them up I'll be
> > > > > > > glad to implement.
> > > > > > > 
> > > > > > > Or can we just delete this stuff entirely?  :)
> > > > > > Yes.
> > > > > > 
> > > > > > My thinking is to delete hamradio, nfc, atm, caif.. [more to come]
> > > > > > Create GH repos which provide them as OOT modules.
> > > > > > Hopefully we can convince any existing users to switch to that.
> > > > > > 
> > > > > > The only thing stopping me is the concern that this is just the softest
> > > > > > target and the LLMs will find something else to focus on which we can't
> > > > > > delete. I suspect any PCIe driver can be flooded with "aren't you
> > > > > > trusting the HW to provide valid responses here?" bullshit.
> > > > > > 
> > > > > > But hey, let's try. I'll post a patch nuking all of hamradio later
> > > > > > today.
> > > > > Well, either we "expunge" this code to OOT repos, or we mark it
> > > > > as broken and tell everyone that we don't take security fixes
> > > > > for anything that depends on BROKEN. I'd personally rather expunge.
> > > > +1 for "expunge" to prevent LLM-based patch flood.
> > > > 
> > > > IIRC, we did that recently for one driver only used by OpenWRT ?
> > > > 
> > > > 
> > > If the main concern here is ongoing maintenance of these Ham Radio related
> > > protocols/drivers, can we pause for a moment on anything as dramatic as
> > > removing from the tree entirely ?
> > Sure, but:
> > 
> > > There is a good cohort of capable kernel folks that either are or were ham
> > > radio operators who I believe, upon realising that things have got to this
> > > point, will be happy to redouble efforts to ensure this code maintained and
> > > tested to a satisfactory standard.
> > We need this code to be maintained, because as is being shown, there are
> > reported problems with it that will affect these devices/networks that
> > you all are using.  So all we need is a maintainer for this to be able
> > to take reports that we get and fix things up as needed.  I know you
> > have that experience, want to come back to kernel development, we've
> > missed you :)
> 
> That's most kind Greg, thank you, have missed all you cool kids too :)
> 
> More seriously though - I'd be up for doing it, but I think there may be
> others better placed than I who haven't yet realised we have this conundrum.
> I'm nudging a few folks offline on this front.

The main "conundrum" is, is that this protocol completly trusts the
hardware to give the kernel the "correct" data.  So if you trust the
hardware to work properly, it will be fine, but as the fuzzing tools are
finding, if the data from the hardware modems is a bit out-of-spec,
"bad" things can happen.

I don't know how well controlled the data is from these devices, if it's
just a "pass through" from what they get off the "wire" or if the
devices always ensure the protocol packets are sane before passing them
off to the kernel.  That's going to be something you all with the
hardware is going to have to determine in order to keep this a working
system over time.  Especially given that this is a wireless protcol
where you "have" to trust the remote end.

thanks,

greg k-h

^ permalink raw reply	[flat|nested] 8+ messages in thread

end of thread, other threads:[~2026-04-11  8:59 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <2026040730-untagged-groin-bbb7@gregkh>
     [not found] ` <20260409190328.GS469338@kernel.org>
     [not found]   ` <20260409203235.6b9329f0@kernel.org>
     [not found]     ` <2026041026-excuse-slashing-c4ee@gregkh>
     [not found]       ` <20260410143042.1d4436de@kernel.org>
2026-04-10 21:54         ` [PATCH net] netrom: do some basic forms of validation on incoming frames Jakub Kicinski
2026-04-10 22:11           ` Kuniyuki Iwashima
2026-04-10 22:25             ` Hugh Blemings
2026-04-10 22:51               ` Craig
2026-04-10 23:38                 ` Hugh Blemings
2026-04-11  5:50               ` Greg KH
2026-04-11  7:24                 ` Hugh Blemings
2026-04-11  8:58                   ` Greg KH

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox