public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Kees Cook <kees@kernel.org>
To: Alexei Starovoitov <alexei.starovoitov@gmail.com>
Cc: Andrii Nakryiko <andrii@kernel.org>,
	Eduard Zingerman <eddyz87@gmail.com>,
	Alexei Starovoitov <ast@kernel.org>,
	Daniel Borkmann <daniel@iogearbox.net>,
	Martin KaFai Lau <martin.lau@linux.dev>,
	Song Liu <song@kernel.org>,
	Yonghong Song <yonghong.song@linux.dev>,
	John Fastabend <john.fastabend@gmail.com>,
	KP Singh <kpsingh@kernel.org>,
	Stanislav Fomichev <sdf@fomichev.me>, Hao Luo <haoluo@google.com>,
	Jiri Olsa <jolsa@kernel.org>, bpf <bpf@vger.kernel.org>,
	LKML <linux-kernel@vger.kernel.org>,
	linux-hardening@vger.kernel.org
Subject: Re: [PATCH] libbpf: Replace strncpy() with strnlen()+memcpy() in skel_map_create()
Date: Tue, 24 Mar 2026 09:23:43 -0700	[thread overview]
Message-ID: <202603240919.D248D71B48@keescook> (raw)
In-Reply-To: <CAADnVQLA3K6v_+_7-+BDVEeZ2N=6229FL6Ko=3ywDWsPVOPLcg@mail.gmail.com>

On Tue, Mar 24, 2026 at 08:38:48AM -0700, Alexei Starovoitov wrote:
> On Tue, Mar 24, 2026 at 8:28 AM Kees Cook <kees@kernel.org> wrote:
> >
> >
> >
> > On March 24, 2026 7:42:04 AM PDT, Alexei Starovoitov <alexei.starovoitov@gmail.com> wrote:
> > >On Mon, Mar 23, 2026 at 10:25 PM Kees Cook <kees@kernel.org> wrote:
> > >>
> > >> On Mon, Mar 23, 2026 at 09:05:39PM -0700, Kees Cook wrote:
> > >> > While the original strncpy() would have copied a full 16 bytes from an
> > >> > overlong name (producing an unterminated field that the syscall rejects),
> > >> > but this wasn't a reachable state. This replacement will instead always
> > >> > truncate to 15 bytes and keeps the NUL terminator, which should have no
> > >> > behavioral changes with the present code and avoids potential issues
> > >> > with future over-long string literals.
> > >>
> > >> Hm, I got a failure report, but it *seems* unrelated? But nothing else
> > >> fails that way recently, so I will try a v2 with the "unterminated at 16
> > >> bytes" behavior restored and see if it passes...
> > >>
> > >> test_progs_no_alu32-x86_64-llvm-21:
> > >> https://github.com/kernel-patches/bpf/actions/runs/23472955268/job/68300440546
> > >
> > >Don't fix what is not broken.
> >
> > strncpy is broken. ;) This is one of the 6 remaining uses of strncpy in the kernel. But it needs a v3. I'll add explicit rejection of over-long strings and validate that the bpf test was a flake, as suggested in the other reply.
> 
> Don't. it's not a kernel.

This is a very terse reply, so I'm not sure what you're trying to tell
me.

Do you mean to say that this header is not used by the Linux kernel
build? If so, that's a misunderstanding. I found this case due to 0day
complaining about it after I removed the kernel's strncpy implementations:
https://lore.kernel.org/all/202603240325.rd8gRV6s-lkp@intel.com/
https://lore.kernel.org/all/202603241330.vmNnBWvZ-lkp@intel.com/

(I had originally ignored tools/ since normally the files there are not
included in kernel builds, but this didn't seem to be the case for this
BPF header.)

-Kees

-- 
Kees Cook

  reply	other threads:[~2026-03-24 16:23 UTC|newest]

Thread overview: 10+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2026-03-24  4:05 [PATCH] libbpf: Replace strncpy() with strnlen()+memcpy() in skel_map_create() Kees Cook
2026-03-24  5:25 ` Kees Cook
2026-03-24 14:40   ` sun jian
2026-03-24 14:42   ` Alexei Starovoitov
2026-03-24 15:28     ` Kees Cook
2026-03-24 15:38       ` Alexei Starovoitov
2026-03-24 16:23         ` Kees Cook [this message]
2026-03-24 16:31           ` Alexei Starovoitov
2026-03-25  4:10             ` Kees Cook
2026-03-25 15:48               ` Alexei Starovoitov

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=202603240919.D248D71B48@keescook \
    --to=kees@kernel.org \
    --cc=alexei.starovoitov@gmail.com \
    --cc=andrii@kernel.org \
    --cc=ast@kernel.org \
    --cc=bpf@vger.kernel.org \
    --cc=daniel@iogearbox.net \
    --cc=eddyz87@gmail.com \
    --cc=haoluo@google.com \
    --cc=john.fastabend@gmail.com \
    --cc=jolsa@kernel.org \
    --cc=kpsingh@kernel.org \
    --cc=linux-hardening@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=martin.lau@linux.dev \
    --cc=sdf@fomichev.me \
    --cc=song@kernel.org \
    --cc=yonghong.song@linux.dev \
    /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