From: Jan Polensky Date: Mon, 1 Jun 2026 17:46:23 +0000 (+0200) Subject: rust: helpers: Add memchr wrapper for string operations X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71247e71a41fb79ff3612961957b05153fed2862;p=thirdparty%2Flinux.git rust: helpers: Add memchr wrapper for string operations Add a dedicated string helper file with a memchr wrapper that uses the kernel's instrumented memchr() function to ensure KASAN and FORTIFY_SOURCE protections are preserved for Rust code. Reported-by: Miguel Ojeda Link: https://lore.kernel.org/rust-for-linux/CANiq72mXAZc0sNM7ShX8VDVs_7zJddawP-e=wt+ERr1YUCcWUw@mail.gmail.com/ Signed-off-by: Jan Polensky Acked-by: Heiko Carstens Acked-by: Gary Guo Signed-off-by: Alexander Gordeev --- diff --git a/rust/helpers/helpers.c b/rust/helpers/helpers.c index 625921e27dfbc..592b9bdb4e4af 100644 --- a/rust/helpers/helpers.c +++ b/rust/helpers/helpers.c @@ -88,6 +88,7 @@ #include "signal.c" #include "slab.c" #include "spinlock.c" +#include "string.c" #include "sync.c" #include "task.c" #include "time.c" diff --git a/rust/helpers/string.c b/rust/helpers/string.c new file mode 100644 index 0000000000000..8ef30eb07a153 --- /dev/null +++ b/rust/helpers/string.c @@ -0,0 +1,8 @@ +// SPDX-License-Identifier: GPL-2.0 + +#include + +__rust_helper void *rust_helper_memchr(const void *s, int c, size_t n) +{ + return memchr(s, c, n); +}