[PATCH] kdb: Replace deprecated strcpy() with strscpy()
From: Thorsten Blum
Date: Fri Jul 18 2025 - 17:41:12 EST
strcpy() is deprecated; use strscpy() instead.
Link: https://github.com/KSPP/linux/issues/88
Signed-off-by: Thorsten Blum <thorsten.blum@xxxxxxxxx>
---
kernel/debug/kdb/kdb_support.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/kernel/debug/kdb/kdb_support.c b/kernel/debug/kdb/kdb_support.c
index 05b137e7dcb9..158430a890b6 100644
--- a/kernel/debug/kdb/kdb_support.c
+++ b/kernel/debug/kdb/kdb_support.c
@@ -23,6 +23,7 @@
#include <linux/uaccess.h>
#include <linux/kdb.h>
#include <linux/slab.h>
+#include <linux/string.h>
#include <linux/ctype.h>
#include "kdb_private.h"
@@ -250,7 +251,8 @@ char *kdb_strdup(const char *str, gfp_t type)
char *s = kmalloc(n, type);
if (!s)
return NULL;
- return strcpy(s, str);
+ strscpy(s, str, n);
+ return s;
}
/*
--
2.50.1