[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <20250616174748.2799-1-listout@listout.xyz>
Date: Mon, 16 Jun 2025 23:17:48 +0530
From: Brahmajit Das <listout@...tout.xyz>
To: linux-hardening@...r.kernel.org,
linux-kernel@...r.kernel.org
Cc: rafael@...nel.org,
lenb@...nel.org,
linux-acpi@...r.kernel.org,
lv.zheng@...el.com
Subject: [RFC PATCH] ACPI / sysfs: Replace deprecated strcpy() with strscpy()
strcpy() is deprecated; use strscpy() instead. Use strscpy() to copy the
long name because there's no string to format with sprintf().
In the else clause we cannot use strscpy due to padding of
trace_method_name with '\', hence we can use other kernel safe string
functions such as scnprintf.
I'm not sure with the scnprintf, I would like some commet/s on that,
hence the RFC.
No functional changes intended.
Link: https://github.com/KSPP/linux/issues/88
Signed-off-by: Brahmajit Das <listout@...tout.xyz>
---
drivers/acpi/sysfs.c | 5 ++---
1 file changed, 2 insertions(+), 3 deletions(-)
diff --git a/drivers/acpi/sysfs.c b/drivers/acpi/sysfs.c
index a48ebbf768f9..4005c9faf14f 100644
--- a/drivers/acpi/sysfs.c
+++ b/drivers/acpi/sysfs.c
@@ -181,10 +181,9 @@ static int param_set_trace_method_name(const char *val,
/* This is a hack. We can't kmalloc in early boot. */
if (is_abs_path)
- strcpy(trace_method_name, val);
+ strscpy(trace_method_name, val);
else {
- trace_method_name[0] = '\\';
- strcpy(trace_method_name+1, val);
+ scnprintf(trace_method_name, sizeof(trace_method_name), "%c%s", '\\', val);
}
/* Restore the original tracer state */
--
2.49.0
Powered by blists - more mailing lists