All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kgdbts: Passing ekgdbts to command line causes panic
@ 2020-12-27 13:43 Defang Bo
  2020-12-27 15:01 ` Greg KH
  0 siblings, 1 reply; 7+ messages in thread
From: Defang Bo @ 2020-12-27 13:43 UTC (permalink / raw)
  To: jason.wessel, daniel.thompson, arnd
  Cc: dianders, gregkh, kgdb-bugreport, linux-kernel, Defang Bo

Similar to commit<1bd54d85>,kgdbts_option_setup does not check input argument
before passing it to strlen. The argument would be a NULL pointer.

Signed-off-by: Defang Bo <bodefang@126.com>
---
 drivers/misc/kgdbts.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/misc/kgdbts.c b/drivers/misc/kgdbts.c
index 945701b..99d9795 100644
--- a/drivers/misc/kgdbts.c
+++ b/drivers/misc/kgdbts.c
@@ -1057,6 +1057,11 @@ static void kgdbts_run_tests(void)
 
 static int kgdbts_option_setup(char *opt)
 {
+	if (!opt) {
+		pr_err("kgdbts: config string not provided\n");
+		return -EINVAL;
+	}
+
 	if (strlen(opt) >= MAX_CONFIG_LEN) {
 		printk(KERN_ERR "kgdbts: config string too long\n");
 		return -ENOSPC;
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [PATCH] kgdbts: Passing ekgdbts to command line causes panic
@ 2020-12-28  1:54 Defang Bo
  0 siblings, 0 replies; 7+ messages in thread
From: Defang Bo @ 2020-12-28  1:54 UTC (permalink / raw)
  To: jason.wessel, daniel.thompson, dianders, arnd, gregkh,
	kgdb-bugreport, linux-kernel
  Cc: Defang Bo

Similar to commit<1bd54d851f50>(("kgdboc: Passing ekgdboc to command line causes panic"),
kgdbts_option_setup does not check input argument before passing it to strlen.
The argument would be a NULL pointer.

Signed-off-by: Defang Bo <bodefang@126.com>
---
 drivers/misc/kgdbts.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/misc/kgdbts.c b/drivers/misc/kgdbts.c
index 945701b..b077547 100644
--- a/drivers/misc/kgdbts.c
+++ b/drivers/misc/kgdbts.c
@@ -1057,6 +1057,11 @@ static void kgdbts_run_tests(void)
 
 static int kgdbts_option_setup(char *opt)
 {
+	if (!opt) {
+		pr_err("kgdbts: config string not provided\n");
+		return -EINVAL;
+	}
+
 	if (strlen(opt) >= MAX_CONFIG_LEN) {
 		printk(KERN_ERR "kgdbts: config string too long\n");
 		return -ENOSPC;
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 7+ messages in thread
* [PATCH] kgdbts: Passing ekgdbts to command line causes panic
@ 2020-12-28  1:58 Defang Bo
  2021-01-04 11:28 ` Daniel Thompson
  2021-01-05 14:01 ` Greg KH
  0 siblings, 2 replies; 7+ messages in thread
From: Defang Bo @ 2020-12-28  1:58 UTC (permalink / raw)
  To: jason.wessel, daniel.thompson, dianders, arnd, gregkh,
	kgdb-bugreport, linux-kernel
  Cc: Defang Bo

Similar to commit<1bd54d851f50>("kgdboc: Passing ekgdboc to command line causes panic"),
kgdbts_option_setup does not check input argument before passing it to strlen.
The argument would be a NULL pointer.

Signed-off-by: Defang Bo <bodefang@126.com>
---
 drivers/misc/kgdbts.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/misc/kgdbts.c b/drivers/misc/kgdbts.c
index 945701b..b077547 100644
--- a/drivers/misc/kgdbts.c
+++ b/drivers/misc/kgdbts.c
@@ -1057,6 +1057,11 @@ static void kgdbts_run_tests(void)
 
 static int kgdbts_option_setup(char *opt)
 {
+	if (!opt) {
+		pr_err("kgdbts: config string not provided\n");
+		return -EINVAL;
+	}
+
 	if (strlen(opt) >= MAX_CONFIG_LEN) {
 		printk(KERN_ERR "kgdbts: config string too long\n");
 		return -ENOSPC;
-- 
2.7.4


^ permalink raw reply related	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2021-01-05 14:00 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-12-27 13:43 [PATCH] kgdbts: Passing ekgdbts to command line causes panic Defang Bo
2020-12-27 15:01 ` Greg KH
2020-12-28  1:54 Defang Bo
2020-12-28  1:58 Defang Bo
2021-01-04 11:28 ` Daniel Thompson
     [not found]   ` <279df92c.1b26.176d0907b64.Coremail.bodefang@126.com>
2021-01-05 12:10     ` Daniel Thompson
2021-01-05 14:01 ` Greg KH

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.