* Path forward for NFC in the kernel
@ 2026-04-16 17:10 Jakub Kicinski
2026-04-17 6:35 ` Michael Walle
2026-04-17 7:18 ` Krzysztof Kozlowski
0 siblings, 2 replies; 9+ messages in thread
From: Jakub Kicinski @ 2026-04-16 17:10 UTC (permalink / raw)
To: Michael Thalmeier, Raymond Hackley, Michael Walle, Bongsu Jeon,
Krzysztof Kozlowski, Mark Greer
Cc: netdev
Hi folks!
We are struggling to keep up with the number of security reports and AI
generated patches in the kernel. NFC is infamous for being a huge CVE
magnet. We need someone to step up as a maintainer, create an NFC tree
and handle all the incoming submissions. Send us (or Linus if you
prefer) periodic PRs, like WiFi, Bluetooth etc. do. If that does not
happen I'm afraid we'll have to move the NFC code out of the tree,
put it up on GH or some such, and let it accumulate CVEs there..
I'm planning to send a PR to Linus to shed the unmaintained code early
next week. We need to have a maintainer established by then.
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Path forward for NFC in the kernel
2026-04-16 17:10 Path forward for NFC in the kernel Jakub Kicinski
@ 2026-04-17 6:35 ` Michael Walle
2026-04-17 7:18 ` Krzysztof Kozlowski
1 sibling, 0 replies; 9+ messages in thread
From: Michael Walle @ 2026-04-17 6:35 UTC (permalink / raw)
To: Jakub Kicinski, Michael Thalmeier, Raymond Hackley, Bongsu Jeon,
Krzysztof Kozlowski, Mark Greer
Cc: netdev
[-- Attachment #1: Type: text/plain, Size: 881 bytes --]
Hi,
On Thu Apr 16, 2026 at 7:10 PM CEST, Jakub Kicinski wrote:
> Hi folks!
>
> We are struggling to keep up with the number of security reports and AI
> generated patches in the kernel. NFC is infamous for being a huge CVE
> magnet. We need someone to step up as a maintainer, create an NFC tree
> and handle all the incoming submissions. Send us (or Linus if you
> prefer) periodic PRs, like WiFi, Bluetooth etc. do. If that does not
> happen I'm afraid we'll have to move the NFC code out of the tree,
> put it up on GH or some such, and let it accumulate CVEs there..
>
> I'm planning to send a PR to Linus to shed the unmaintained code early
> next week. We need to have a maintainer established by then.
Thanks for asking, but I'm busy renovating my house, sorry. I
couldn't put much work into that. The former is already stressful
enough :)
-michael
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 297 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Path forward for NFC in the kernel
2026-04-16 17:10 Path forward for NFC in the kernel Jakub Kicinski
2026-04-17 6:35 ` Michael Walle
@ 2026-04-17 7:18 ` Krzysztof Kozlowski
2026-04-17 8:12 ` David Heidelberg
` (3 more replies)
1 sibling, 4 replies; 9+ messages in thread
From: Krzysztof Kozlowski @ 2026-04-17 7:18 UTC (permalink / raw)
To: Jakub Kicinski, Michael Thalmeier, Raymond Hackley, Michael Walle,
Bongsu Jeon, Mark Greer, David Heidelberg
Cc: netdev
On 16/04/2026 19:10, Jakub Kicinski wrote:
> Hi folks!
>
> We are struggling to keep up with the number of security reports and AI
> generated patches in the kernel. NFC is infamous for being a huge CVE
> magnet. We need someone to step up as a maintainer, create an NFC tree
> and handle all the incoming submissions. Send us (or Linus if you
> prefer) periodic PRs, like WiFi, Bluetooth etc. do. If that does not
> happen I'm afraid we'll have to move the NFC code out of the tree,
> put it up on GH or some such, and let it accumulate CVEs there..
>
> I'm planning to send a PR to Linus to shed the unmaintained code early
> next week. We need to have a maintainer established by then.
+Cc David Heidelberg recently trying to use Linux NFC stack,
Just "collecting" patches is not a big deal, I could do this, but
actually reviewing the patches with necessary due diligence is the
effort I could not provide in a reasonable time frame. And picking up
patches without proper review feels risky...
NFC has a long history of issues, first mostly pointed out by syzbot but
now apparently by AI tools. The code base is quite old, with no major
improvements or testings happening but not in a way "oh, it's stable and
working like 'cp' command" but rather "no one knows how many bugs are on
top of each other and if it actually still works".
Syzbot and AI reported bugs encourage random drive-by fixes by people
not testing the code, thus particular bug report might be fixed, but for
example NFC stops working and no one knows that.
Does anyone knows if the NFC stack/drivers actually works fine? Did
anyone test actual devices?
If not, then moving to Github would be even more reasonable.
Another point is that AFAIU, most of real world devices, like
Android-based phones, don't use the Linux NFC stack but their custom
HAL/user-space based libraries and drivers. Some other non-Android
projects use libnfc userspace, which seems to be maintained only as
bugfix (https://github.com/nfc-tools/libnfc/commits/master/).
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Path forward for NFC in the kernel
2026-04-17 7:18 ` Krzysztof Kozlowski
@ 2026-04-17 8:12 ` David Heidelberg
2026-04-21 14:10 ` Jakub Kicinski
2026-04-17 8:54 ` Michael Walle
` (2 subsequent siblings)
3 siblings, 1 reply; 9+ messages in thread
From: David Heidelberg @ 2026-04-17 8:12 UTC (permalink / raw)
To: Krzysztof Kozlowski, Jakub Kicinski, Michael Thalmeier,
Raymond Hackley, Michael Walle, Bongsu Jeon, Mark Greer
Cc: netdev
On 17/04/2026 09:18, Krzysztof Kozlowski wrote:
> On 16/04/2026 19:10, Jakub Kicinski wrote:
>> Hi folks!
>>
>> We are struggling to keep up with the number of security reports and AI
>> generated patches in the kernel. NFC is infamous for being a huge CVE
>> magnet. We need someone to step up as a maintainer, create an NFC tree
>> and handle all the incoming submissions. Send us (or Linus if you
>> prefer) periodic PRs, like WiFi, Bluetooth etc. do. If that does not
>> happen I'm afraid we'll have to move the NFC code out of the tree,
>> put it up on GH or some such, and let it accumulate CVEs there..
>>
>> I'm planning to send a PR to Linus to shed the unmaintained code early
>> next week. We need to have a maintainer established by then.
>
> +Cc David Heidelberg recently trying to use Linux NFC stack,
>
> Just "collecting" patches is not a big deal, I could do this, but
> actually reviewing the patches with necessary due diligence is the
> effort I could not provide in a reasonable time frame. And picking up
> patches without proper review feels risky...
Hello Krzystof, Jakub,
thanks for putting me into loop.
I can do limited reviews and basic maintenance. My knowledge about NFC is for
now somehow limited (but I'm willing to invest my limited time into learning more).
As "I & LLM" wrote [1] userspace very basic reader for GNOME and planning to do
more tight integration into GNOME, so would make sense to keep the kernel stack
alive.
[1] https://gitlab.gnome.org/dh/gnfc/
>
> NFC has a long history of issues, first mostly pointed out by syzbot but
> now apparently by AI tools. The code base is quite old, with no major
> improvements or testings happening but not in a way "oh, it's stable and
> working like 'cp' command" but rather "no one knows how many bugs are on
> top of each other and if it actually still works".
>
> Syzbot and AI reported bugs encourage random drive-by fixes by people
> not testing the code, thus particular bug report might be fixed, but for
> example NFC stops working and no one knows that.
I think I could filter out nonsense, possibly with help of Sashiko [2].
[2] https://sashiko.dev/
>
> Does anyone knows if the NFC stack/drivers actually works fine? Did
> anyone test actual devices?
Yes, nxp,pn553, nxp,pn557.
Other people did also test on some phones with different tags (I currently have
only one tag with vCARD loaded on it).
David
>
> If not, then moving to Github would be even more reasonable.
>
> Another point is that AFAIU, most of real world devices, like
> Android-based phones, don't use the Linux NFC stack but their custom
> HAL/user-space based libraries and drivers. Some other non-Android
> projects use libnfc userspace, which seems to be maintained only as
> bugfix (https://github.com/nfc-tools/libnfc/commits/master/).
>
> Best regards,
> Krzysztof
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Path forward for NFC in the kernel
2026-04-17 7:18 ` Krzysztof Kozlowski
2026-04-17 8:12 ` David Heidelberg
@ 2026-04-17 8:54 ` Michael Walle
2026-04-17 12:16 ` David Heidelberg
2026-04-17 13:32 ` David Heidelberg
2026-04-20 15:31 ` Mark Greer
3 siblings, 1 reply; 9+ messages in thread
From: Michael Walle @ 2026-04-17 8:54 UTC (permalink / raw)
To: Krzysztof Kozlowski, Jakub Kicinski, Michael Thalmeier,
Raymond Hackley, Bongsu Jeon, Mark Greer, David Heidelberg
Cc: netdev
[-- Attachment #1: Type: text/plain, Size: 543 bytes --]
On Fri Apr 17, 2026 at 9:18 AM CEST, Krzysztof Kozlowski wrote:
> Does anyone knows if the NFC stack/drivers actually works fine? Did
> anyone test actual devices?
I was working on a product which used an NFC part from NXP. We
started with the upstream driver and libnfc and we did some
bugfixes, that's also probably the reason I'm in the loop here ;).
But eventually it was decided to switch to the libs provided by the
vendor, because that at least somehow worked reliably (and you'll
get support from the vendor).
-michael
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 297 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Path forward for NFC in the kernel
2026-04-17 8:54 ` Michael Walle
@ 2026-04-17 12:16 ` David Heidelberg
0 siblings, 0 replies; 9+ messages in thread
From: David Heidelberg @ 2026-04-17 12:16 UTC (permalink / raw)
To: Michael Walle, Krzysztof Kozlowski, Jakub Kicinski,
Michael Thalmeier, Raymond Hackley, Bongsu Jeon, Mark Greer
Cc: netdev
On 17/04/2026 10:54, Michael Walle wrote:
> On Fri Apr 17, 2026 at 9:18 AM CEST, Krzysztof Kozlowski wrote:
>> Does anyone knows if the NFC stack/drivers actually works fine? Did
>> anyone test actual devices?
>
> I was working on a product which used an NFC part from NXP. We
> started with the upstream driver and libnfc and we did some
> bugfixes, that's also probably the reason I'm in the loop here ;).
>
> But eventually it was decided to switch to the libs provided by the
> vendor, because that at least somehow worked reliably (and you'll
> get support from the vendor).
So what we need is show vendor how wonderful Linux kernel is, thus he should
contribute to it and then switch to it (when nVidia can understand it's
beneficial to them, why not NXP).
David
>
> -michael
--
David Heidelberg
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Path forward for NFC in the kernel
2026-04-17 7:18 ` Krzysztof Kozlowski
2026-04-17 8:12 ` David Heidelberg
2026-04-17 8:54 ` Michael Walle
@ 2026-04-17 13:32 ` David Heidelberg
2026-04-20 15:31 ` Mark Greer
3 siblings, 0 replies; 9+ messages in thread
From: David Heidelberg @ 2026-04-17 13:32 UTC (permalink / raw)
To: Krzysztof Kozlowski, Jakub Kicinski, Michael Thalmeier,
Raymond Hackley, Michael Walle, Bongsu Jeon, Mark Greer
Cc: netdev, oe-linux-nfc
On 17/04/2026 09:18, Krzysztof Kozlowski wrote:
> On 16/04/2026 19:10, Jakub Kicinski wrote:
>> Hi folks!
>>
>> We are struggling to keep up with the number of security reports and AI
>> generated patches in the kernel. NFC is infamous for being a huge CVE
>> magnet. We need someone to step up as a maintainer, create an NFC tree
>> and handle all the incoming submissions. Send us (or Linus if you
>> prefer) periodic PRs, like WiFi, Bluetooth etc. do. If that does not
>> happen I'm afraid we'll have to move the NFC code out of the tree,
>> put it up on GH or some such, and let it accumulate CVEs there..
>>
>> I'm planning to send a PR to Linus to shed the unmaintained code early
>> next week. We need to have a maintainer established by then.
>
> +Cc David Heidelberg recently trying to use Linux NFC stack,
>
+Cc oe-linux-nfc@lists.linux.dev
For now we had NFC related discussion in our sdm845-next channel, but I brought
Matrix channel [1] for the kernel, neard, user-space discussion, so people can
share and interact in real-time (the chat content is public without needing to
join the room).
David
[1] https://matrix.to/#/#linux-nfc:ixit.cz
...
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Path forward for NFC in the kernel
2026-04-17 7:18 ` Krzysztof Kozlowski
` (2 preceding siblings ...)
2026-04-17 13:32 ` David Heidelberg
@ 2026-04-20 15:31 ` Mark Greer
3 siblings, 0 replies; 9+ messages in thread
From: Mark Greer @ 2026-04-20 15:31 UTC (permalink / raw)
To: Krzysztof Kozlowski, Jakub Kicinski, Michael Thalmeier,
Raymond Hackley, Michael Walle, Bongsu Jeon, David Heidelberg
Cc: netdev
[Trying this again hopefully without HTML.]
On 4/17/26 12:18 AM, Krzysztof Kozlowski wrote:
> On 16/04/2026 19:10, Jakub Kicinski wrote:
>> Hi folks! We are struggling to keep up with the number of security
>> reports and AI generated patches in the kernel. NFC is infamous for
>> being a huge CVE magnet. We need someone to step up as a maintainer,
>> create an NFC tree and handle all the incoming submissions. Send us
>> (or Linus if you prefer) periodic PRs, like WiFi, Bluetooth etc. do.
>> If that does not happen I'm afraid we'll have to move the NFC code
>> out of the tree, put it up on GH or some such, and let it accumulate
>> CVEs there.. I'm planning to send a PR to Linus to shed the
>> unmaintained code early next week. We need to have a maintainer
>> established by then.
> +Cc David Heidelberg recently trying to use Linux NFC stack, Just
> "collecting" patches is not a big deal, I could do this, but actually
> reviewing the patches with necessary due diligence is the effort I
> could not provide in a reasonable time frame. And picking up patches
> without proper review feels risky... NFC has a long history of issues,
> first mostly pointed out by syzbot but now apparently by AI tools. The
> code base is quite old, with no major improvements or testings
> happening but not in a way "oh, it's stable and working like 'cp'
> command" but rather "no one knows how many bugs are on top of each
> other and if it actually still works". Syzbot and AI reported bugs
> encourage random drive-by fixes by people not testing the code, thus
> particular bug report might be fixed, but for example NFC stops
> working and no one knows that. Does anyone knows if the NFC
> stack/drivers actually works fine? Did anyone test actual devices? If
> not, then moving to Github would be even more reasonable. Another
> point is that AFAIU, most of real world devices, like Android-based
> phones, don't use the Linux NFC stack but their custom HAL/user-space
> based libraries and drivers. Some other non-Android projects use
> libnfc userspace, which seems to be maintained only as bugfix
> (https://github.com/nfc-tools/libnfc/commits/master/). Best regards,
> Krzysztof
That is my understanding too.
I would love to take this on but I've been swamped for years with my
"day job" and I'm pretty burned out.
Taking on something like this isn't possible for me. I also didn't
realize it was creating so many CVEs so,
yeah, sounds like it should be removed then. Thanks for all of the work
you did on this, Krzysztof.
Mark
--
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: Path forward for NFC in the kernel
2026-04-17 8:12 ` David Heidelberg
@ 2026-04-21 14:10 ` Jakub Kicinski
0 siblings, 0 replies; 9+ messages in thread
From: Jakub Kicinski @ 2026-04-21 14:10 UTC (permalink / raw)
To: David Heidelberg
Cc: Krzysztof Kozlowski, Michael Thalmeier, Raymond Hackley,
Michael Walle, Bongsu Jeon, Mark Greer, netdev
On Fri, 17 Apr 2026 10:12:22 +0200 David Heidelberg wrote:
> > +Cc David Heidelberg recently trying to use Linux NFC stack,
> >
> > Just "collecting" patches is not a big deal, I could do this, but
> > actually reviewing the patches with necessary due diligence is the
> > effort I could not provide in a reasonable time frame. And picking up
> > patches without proper review feels risky...
>
> Hello Krzystof, Jakub,
>
> thanks for putting me into loop.
>
> I can do limited reviews and basic maintenance. My knowledge about NFC is for
> now somehow limited (but I'm willing to invest my limited time into learning more).
>
> As "I & LLM" wrote [1] userspace very basic reader for GNOME and planning to do
> more tight integration into GNOME, so would make sense to keep the kernel stack
> alive.
Hi David!
Sorry for the delay, we (core maintainers) discussed the situation
off-list and since our choices are either delete all this code or give
you a chance, everyone agreed that the latter is strictly better :)
It's a little unusual to designate someone who doesn't have a proven
track record acting as a de facto maintainer, but such are the times...
Our expectation would be that:
- you'd create your own tree to gather NFC patches and send us
periodic pull requests every 2 or 3 weeks, with what you gathered
- act upon submissions within 48h of posting (excluding weekends)
Of course we'll happy to provide any support and guidance you need,
specially for the first few months.
Is this what you had in mind? The phrase "limited reviews and basic
maintenance" is slightly worrying, we assumed it's an expression of
modesty rather than commitment? :)
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2026-04-21 14:10 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-04-16 17:10 Path forward for NFC in the kernel Jakub Kicinski
2026-04-17 6:35 ` Michael Walle
2026-04-17 7:18 ` Krzysztof Kozlowski
2026-04-17 8:12 ` David Heidelberg
2026-04-21 14:10 ` Jakub Kicinski
2026-04-17 8:54 ` Michael Walle
2026-04-17 12:16 ` David Heidelberg
2026-04-17 13:32 ` David Heidelberg
2026-04-20 15:31 ` Mark Greer
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox