From: Fushuai Wang <fushuai.wang@linux.dev>
To: tglx@kernel.org, peterz@infradead.org,
mathieu.desnoyers@efficios.com, akpm@linux-foundation.org,
aliceryhl@google.com, yury.norov@gmail.com, vmalik@redhat.com,
kees@kernel.org, dave.hansen@linux.intel.com, luto@kernel.org,
mingo@redhat.com, bp@alien8.de, hpa@zytor.com,
rostedt@goodmis.org, mhiramat@kernel.org, brauner@kernel.org,
jack@suse.cz, cyphar@cyphar.com
Cc: linux-kernel@vger.kernel.org, x86@kernel.org,
linux-trace-kernel@vger.kernel.org, wangfushuai@baidu.com
Subject: [PATCH v2 6/6] kstrtox: Use copy_from_user_nul() instead of copy_from_user()
Date: Mon, 12 Jan 2026 15:30:39 +0800 [thread overview]
Message-ID: <20260112073039.1185-7-fushuai.wang@linux.dev> (raw)
In-Reply-To: <20260112073039.1185-1-fushuai.wang@linux.dev>
From: Fushuai Wang <wangfushuai@baidu.com>
Use copy_from_user_nul() instead of copy_from_user() to simplify
the code.
No functional change.
Signed-off-by: Fushuai Wang <wangfushuai@baidu.com>
---
lib/kstrtox.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/lib/kstrtox.c b/lib/kstrtox.c
index bdde40cd69d7..e4ee72b75e09 100644
--- a/lib/kstrtox.c
+++ b/lib/kstrtox.c
@@ -402,9 +402,8 @@ int kstrtobool_from_user(const char __user *s, size_t count, bool *res)
char buf[4];
count = min(count, sizeof(buf) - 1);
- if (copy_from_user(buf, s, count))
+ if (copy_from_user_nul(buf, s, count))
return -EFAULT;
- buf[count] = '\0';
return kstrtobool(buf, res);
}
EXPORT_SYMBOL(kstrtobool_from_user);
@@ -416,9 +415,8 @@ int f(const char __user *s, size_t count, unsigned int base, type *res) \
char buf[1 + sizeof(type) * 8 + 1 + 1]; \
\
count = min(count, sizeof(buf) - 1); \
- if (copy_from_user(buf, s, count)) \
+ if (copy_from_user_nul(buf, s, count)) \
return -EFAULT; \
- buf[count] = '\0'; \
return g(buf, base, res); \
} \
EXPORT_SYMBOL(f)
--
2.36.1
prev parent reply other threads:[~2026-01-12 7:32 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-01-12 7:30 [PATCH v2 0/6] uaccess: Introduce copy_from_user_nul helper Fushuai Wang
2026-01-12 7:30 ` [PATCH v2 1/6] uaccess: Add " Fushuai Wang
2026-01-12 9:23 ` Alice Ryhl
2026-01-12 10:00 ` Fushuai Wang
2026-01-12 11:20 ` Alice Ryhl
2026-01-12 12:22 ` Fushuai Wang
2026-01-12 13:22 ` Borislav Petkov
2026-01-12 15:40 ` Alice Ryhl
2026-01-12 16:28 ` Steven Rostedt
2026-01-12 16:37 ` Alice Ryhl
2026-01-13 18:00 ` Yury Norov
2026-01-13 18:17 ` Yury Norov
2026-01-16 8:42 ` Fushuai Wang
2026-01-12 7:30 ` [PATCH v2 2/6] x86/tlb: Use copy_from_user_nul() instead of copy_from_user() Fushuai Wang
2026-01-12 7:30 ` [PATCH v2 3/6] tracing: " Fushuai Wang
2026-01-12 15:43 ` Steven Rostedt
2026-01-13 17:05 ` Yury Norov
2026-01-13 18:03 ` Steven Rostedt
2026-01-12 7:30 ` [PATCH v2 4/6] userns: " Fushuai Wang
2026-01-12 7:30 ` [PATCH v2 5/6] time: " Fushuai Wang
2026-01-12 7:30 ` Fushuai Wang [this message]
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=20260112073039.1185-7-fushuai.wang@linux.dev \
--to=fushuai.wang@linux.dev \
--cc=akpm@linux-foundation.org \
--cc=aliceryhl@google.com \
--cc=bp@alien8.de \
--cc=brauner@kernel.org \
--cc=cyphar@cyphar.com \
--cc=dave.hansen@linux.intel.com \
--cc=hpa@zytor.com \
--cc=jack@suse.cz \
--cc=kees@kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-trace-kernel@vger.kernel.org \
--cc=luto@kernel.org \
--cc=mathieu.desnoyers@efficios.com \
--cc=mhiramat@kernel.org \
--cc=mingo@redhat.com \
--cc=peterz@infradead.org \
--cc=rostedt@goodmis.org \
--cc=tglx@kernel.org \
--cc=vmalik@redhat.com \
--cc=wangfushuai@baidu.com \
--cc=x86@kernel.org \
--cc=yury.norov@gmail.com \
/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