public inbox for kernel-janitors@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] kdb: do a sanity check on the cpu in kdb_per_cpu()
@ 2019-05-06 12:50 Dan Carpenter
  2019-05-08  8:48 ` Daniel Thompson
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Dan Carpenter @ 2019-05-06 12:50 UTC (permalink / raw)
  To: kernel-janitors

The "whichcpu" comes from argv[3].  The cpu_online() macro looks up the
cpu in a bitmap of online cpus, but if the value is too high then it
could read beyond the end of the bitmap and possibly Oops.

Fixes: 5d5314d6795f ("kdb: core for kgdb back end (1 of 2)")
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
---
 kernel/debug/kdb/kdb_main.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/kernel/debug/kdb/kdb_main.c b/kernel/debug/kdb/kdb_main.c
index fc96dbf8d9de..9ecfa37c7fbf 100644
--- a/kernel/debug/kdb/kdb_main.c
+++ b/kernel/debug/kdb/kdb_main.c
@@ -2583,7 +2583,7 @@ static int kdb_per_cpu(int argc, const char **argv)
 		diag = kdbgetularg(argv[3], &whichcpu);
 		if (diag)
 			return diag;
-		if (!cpu_online(whichcpu)) {
+		if (whichcpu >= nr_cpu_ids || !cpu_online(whichcpu)) {
 			kdb_printf("cpu %ld is not online\n", whichcpu);
 			return KDB_BADCPUNUM;
 		}
-- 
2.18.0

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

* Re: [PATCH] kdb: do a sanity check on the cpu in kdb_per_cpu()
  2019-05-06 12:50 [PATCH] kdb: do a sanity check on the cpu in kdb_per_cpu() Dan Carpenter
@ 2019-05-08  8:48 ` Daniel Thompson
  2019-05-08  8:57 ` Dan Carpenter
  2019-05-08 15:08 ` Doug Anderson
  2 siblings, 0 replies; 4+ messages in thread
From: Daniel Thompson @ 2019-05-08  8:48 UTC (permalink / raw)
  To: kernel-janitors

On Mon, May 06, 2019 at 03:50:18PM +0300, Dan Carpenter wrote:
> The "whichcpu" comes from argv[3].  The cpu_online() macro looks up the
> cpu in a bitmap of online cpus, but if the value is too high then it
> could read beyond the end of the bitmap and possibly Oops.
> 
> Fixes: 5d5314d6795f ("kdb: core for kgdb back end (1 of 2)")
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>

Just out of interest... why isn't this copied to LKML? Omiting LKML makes
the patch hard to find in a patchwork instance.


Daniel.

> ---
>  kernel/debug/kdb/kdb_main.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/kernel/debug/kdb/kdb_main.c b/kernel/debug/kdb/kdb_main.c
> index fc96dbf8d9de..9ecfa37c7fbf 100644
> --- a/kernel/debug/kdb/kdb_main.c
> +++ b/kernel/debug/kdb/kdb_main.c
> @@ -2583,7 +2583,7 @@ static int kdb_per_cpu(int argc, const char **argv)
>  		diag = kdbgetularg(argv[3], &whichcpu);
>  		if (diag)
>  			return diag;
> -		if (!cpu_online(whichcpu)) {
> +		if (whichcpu >= nr_cpu_ids || !cpu_online(whichcpu)) {
>  			kdb_printf("cpu %ld is not online\n", whichcpu);
>  			return KDB_BADCPUNUM;
>  		}
> -- 
> 2.18.0
> 

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

* Re: [PATCH] kdb: do a sanity check on the cpu in kdb_per_cpu()
  2019-05-06 12:50 [PATCH] kdb: do a sanity check on the cpu in kdb_per_cpu() Dan Carpenter
  2019-05-08  8:48 ` Daniel Thompson
@ 2019-05-08  8:57 ` Dan Carpenter
  2019-05-08 15:08 ` Doug Anderson
  2 siblings, 0 replies; 4+ messages in thread
From: Dan Carpenter @ 2019-05-08  8:57 UTC (permalink / raw)
  To: kernel-janitors

On Wed, May 08, 2019 at 09:48:38AM +0100, Daniel Thompson wrote:
> On Mon, May 06, 2019 at 03:50:18PM +0300, Dan Carpenter wrote:
> > The "whichcpu" comes from argv[3].  The cpu_online() macro looks up the
> > cpu in a bitmap of online cpus, but if the value is too high then it
> > could read beyond the end of the bitmap and possibly Oops.
> > 
> > Fixes: 5d5314d6795f ("kdb: core for kgdb back end (1 of 2)")
> > Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> 
> Just out of interest... why isn't this copied to LKML? Omiting LKML makes
> the patch hard to find in a patchwork instance.

Sorry, I wasn't aware that anyone was using LKML for patchwork.

regards,
dan carpenter

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

* Re: [PATCH] kdb: do a sanity check on the cpu in kdb_per_cpu()
  2019-05-06 12:50 [PATCH] kdb: do a sanity check on the cpu in kdb_per_cpu() Dan Carpenter
  2019-05-08  8:48 ` Daniel Thompson
  2019-05-08  8:57 ` Dan Carpenter
@ 2019-05-08 15:08 ` Doug Anderson
  2 siblings, 0 replies; 4+ messages in thread
From: Doug Anderson @ 2019-05-08 15:08 UTC (permalink / raw)
  To: kernel-janitors

Hi,

On Mon, May 6, 2019 at 5:50 AM Dan Carpenter <dan.carpenter@oracle.com> wrote:
>
> The "whichcpu" comes from argv[3].  The cpu_online() macro looks up the
> cpu in a bitmap of online cpus, but if the value is too high then it
> could read beyond the end of the bitmap and possibly Oops.
>
> Fixes: 5d5314d6795f ("kdb: core for kgdb back end (1 of 2)")
> Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
> ---
>  kernel/debug/kdb/kdb_main.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Reviewed-by: Douglas Anderson <dianders@chromium.org>

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

end of thread, other threads:[~2019-05-08 15:08 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-05-06 12:50 [PATCH] kdb: do a sanity check on the cpu in kdb_per_cpu() Dan Carpenter
2019-05-08  8:48 ` Daniel Thompson
2019-05-08  8:57 ` Dan Carpenter
2019-05-08 15:08 ` Doug Anderson

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox