From: Kees Cook <kees@kernel.org>
To: Ricardo Ribalda <ribalda@chromium.org>
Cc: Dan Carpenter <dan.carpenter@linaro.org>,
linux-media@vger.kernel.org,
Patchwork Integration <patchwork@media-ci.org>
Subject: Re: [v2,0/3] module: Add compile-time check for embedded NUL characters
Date: Mon, 20 Oct 2025 11:51:05 -0700 [thread overview]
Message-ID: <202510201146.F12EA92@keescook> (raw)
In-Reply-To: <CANiDSCtbrM4Fg_p56EdV09ts_j8HnMCc1hGH31-BZvv03Z0DjQ@mail.gmail.com>
On Mon, Oct 20, 2025 at 08:35:53PM +0200, Ricardo Ribalda wrote:
> Hi Kees
>
> On Mon, 20 Oct 2025 at 20:29, Kees Cook <kees@kernel.org> wrote:
> >
> > On Wed, Oct 15, 2025 at 09:33:40AM +0200, Ricardo Ribalda wrote:
> > > Hi Dan
> > >
> > > On Tue, 14 Oct 2025 at 22:45, Kees Cook <kees@kernel.org> wrote:
> > > >
> > > > On Tue, Oct 14, 2025 at 08:24:00AM +0200, Ricardo Ribalda wrote:
> > > > > Hi Kees
> > > > >
> > > > > Thanks for the report.
> > > > >
> > > > >
> > > > > On Tue, 14 Oct 2025 at 07:41, Kees Cook <kees@kernel.org> wrote:
> > > > > >
> > > > > >
> > > > > >
> > > > > > On October 13, 2025 1:34:20 PM PDT, Patchwork Integration <patchwork@media-ci.org> wrote:
> > > > > > >Dear Kees Cook:
> > > > > > >
> > > > > > >Thanks for your patches! Unfortunately the Media CI robot detected some
> > > > > > >issues:
> > > > > > >
> > > > > > ># Test static:test-smatch
> > > > > > >
> > > > > > >drivers/media/usb/usbtv/usbtv-core.c:157:1: error: bad constant expression
> > > > > >
> > > > > > Where can I find what this test actually does?
> > > > > >
> > > > > > >For more details, check the full report at:
> > > > > > >https://linux-media.pages.freedesktop.org/-/users/patchwork/-/jobs/85913402/artifacts/report.htm .
> > > > > >
> > > > > > This webserver appears to be misconfigured to send compressed output without the right headers? I can't actually view this URL.
> > > > >
> > > > > I will follow-up with fdo maintainers to figure out what happened.
> > > > > there. On the meantime you can use these url that seems to work:
> > > > > https://linux-media.pages.freedesktop.org/-/users/patchwork/-/jobs/85913402/artifacts/report.txt
> > > > > https://gitlab.freedesktop.org/linux-media/users/patchwork/-/jobs/85913398
> > > > >
> > > > > Basically sparse/smatch do not seem to understand the constant.
> > > >
> > > > Yeah, I managed to find the actual scripts that are run for the
> > > > static-sparse/smatch tests. It looks like those tools aren't correctly
> > > > handling string literals for __builtin_strlen(), which is a constant for
> > > > constant arguments.
> > > >
> > > > So, that's a C parsing bug in those tools (GCC and Clang are fine).
> > >
> > > Could you take a look at this patch:
> > > https://patchwork.linuxtv.org/project/linux-media/patch/20251010030610.3032147-3-kees@kernel.org/
> > >
> > > Seems that sparse/smatch are not very happy about __builtin_strlen()
> > >
> > > Could you fix support for __builtin_strlen() in your tool?
> > >
> > > Once Kees lands his patch it will break all the CIs using
> > > sparse/smatch, including media-ci.
> > >
> > > Eg:
> > >
> > > drivers/media/pci/zoran/zr36060.c:33:1: error: bad constant expression
> > > drivers/media/usb/pvrusb2/pvrusb2-dvb.c:19:1: error: bad constant expression
> > > drivers/media/usb/pvrusb2/pvrusb2-dvb.c:19:1: error: bad constant expression
> >
> > We've waited a decade to get the embedded-NUL check into the modinfo
> > macros, so I'm happy to wait until we can get the CI tooling updated.
>
> For media-ci. It will probably be after 6.19rc1
>
> Basically, when
> https://lore.kernel.org/linux-sparse/CACePvbVG2KrGQq4cNKV=wbO5h=jp3M0RO1SdfX8kV4OukjPG8A@mail.gmail.com/T/#t
> lands in media-committers.
That's external to Linux, though; it's a patch for sparse and smatch. How
often does the CI rebuild sparse and smatch?
> How did you plan to land this series? via which tree?
I assume it would go either via the modules tree or the hardening tree.
(Again, no rush.)
> if Chris have not landed his fix yet, maybe you can include that patch
> in your series as 1/X.... That will make every ci happy
Since it's a patch for a separate project, I don't think that will work.
(Maybe I'm misunderstanding something?)
-Kees
--
Kees Cook
next prev parent reply other threads:[~2025-10-20 18:51 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-10 3:06 [PATCH v2 0/3] module: Add compile-time check for embedded NUL characters Kees Cook
2025-10-10 3:06 ` [PATCH v2 1/3] media: dvb-usb-v2: lmedm04: Fix firmware macro definitions Kees Cook
2025-10-10 7:10 ` Mauro Carvalho Chehab
2025-10-10 3:06 ` [PATCH v2 2/3] media: radio: si470x: Fix DRIVER_AUTHOR macro definition Kees Cook
2025-10-10 7:10 ` Mauro Carvalho Chehab
2025-10-10 3:06 ` [PATCH v2 3/3] module: Add compile-time check for embedded NUL characters Kees Cook
2025-10-10 4:19 ` Petr Pavlu
2025-10-21 2:05 ` Aaron Tomlin
2025-11-03 8:54 ` Hans Verkuil
2025-11-03 8:58 ` Daniel Gomez
2025-11-03 9:05 ` Hans Verkuil
2025-12-19 12:29 ` Matthieu Baerts
2025-12-19 12:41 ` Daniel Gomez
2025-12-19 12:44 ` Dan Carpenter
2025-12-19 14:59 ` Matthieu Baerts
2026-01-16 23:35 ` Chris Li
[not found] ` <68ed624c.050a0220.3ba739.64ea@mx.google.com>
2025-10-14 5:41 ` [v2,0/3] " Kees Cook
2025-10-14 6:24 ` Ricardo Ribalda
2025-10-14 20:45 ` Kees Cook
2025-10-15 7:33 ` Ricardo Ribalda
2025-10-20 18:29 ` Kees Cook
2025-10-20 18:35 ` Ricardo Ribalda
2025-10-20 18:51 ` Kees Cook [this message]
2025-10-20 18:55 ` Ricardo Ribalda
2025-11-11 13:14 ` Daniel Gomez
2025-11-03 19:49 ` [PATCH v2 0/3] " Daniel Gomez
2025-11-04 0:13 ` Kees Cook
2025-11-04 6:35 ` Daniel Gomez
2025-11-04 10:35 ` Hans Verkuil
2025-11-04 12:03 ` Daniel Gomez
2025-11-04 20:35 ` Daniel Gomez
2025-11-04 20:59 ` Hans Verkuil
2025-11-05 13:03 ` Daniel Gomez
2025-11-05 13:06 ` Daniel Gomez
2025-11-11 11:42 ` Andy Shevchenko
2025-11-11 12:34 ` Daniel Gomez
2025-11-11 17:52 ` Uwe Kleine-König
2025-11-05 13:19 ` Daniel Gomez
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=202510201146.F12EA92@keescook \
--to=kees@kernel.org \
--cc=dan.carpenter@linaro.org \
--cc=linux-media@vger.kernel.org \
--cc=patchwork@media-ci.org \
--cc=ribalda@chromium.org \
/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