All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH V2] powerpc/ptrace: Fix out of bounds array access warning
@ 2016-04-25 16:19 Khem Raj
  2016-05-11 17:51 ` Aaro Koskinen
  2016-06-07  3:35 ` [V2] " Michael Ellerman
  0 siblings, 2 replies; 4+ messages in thread
From: Khem Raj @ 2016-04-25 16:19 UTC (permalink / raw)
  To: linuxppc-dev; +Cc: Khem Raj, Kees Cook, Michael Ellerman, Segher Boessenkool

gcc-6 correctly warns about a out of bounds access

arch/powerpc/kernel/ptrace.c:407:24: warning: index 32 denotes an offset greater than size of 'u64[32][1] {aka long long unsigned int[32][1]}' [-Warray-bounds]
        offsetof(struct thread_fp_state, fpr[32][0]));
                        ^

check the end of array instead of beginning of next element to fix this

Signed-off-by: Khem Raj <raj.khem@gmail.com>
Cc: Kees Cook <keescook@chromium.org>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Segher Boessenkool <segher@kernel.crashing.org>
---
Changes from v1 to v2:
- Check for fpr[32] instead of fpr[31][1]

 arch/powerpc/kernel/ptrace.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/arch/powerpc/kernel/ptrace.c b/arch/powerpc/kernel/ptrace.c
index 30a03c0..060b140 100644
--- a/arch/powerpc/kernel/ptrace.c
+++ b/arch/powerpc/kernel/ptrace.c
@@ -377,7 +377,7 @@ static int fpr_get(struct task_struct *target, const struct user_regset *regset,
 
 #else
 	BUILD_BUG_ON(offsetof(struct thread_fp_state, fpscr) !=
-		     offsetof(struct thread_fp_state, fpr[32][0]));
+		     offsetof(struct thread_fp_state, fpr[32]));
 
 	return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
 				   &target->thread.fp_state, 0, -1);
@@ -405,7 +405,7 @@ static int fpr_set(struct task_struct *target, const struct user_regset *regset,
 	return 0;
 #else
 	BUILD_BUG_ON(offsetof(struct thread_fp_state, fpscr) !=
-		     offsetof(struct thread_fp_state, fpr[32][0]));
+		     offsetof(struct thread_fp_state, fpr[32]));
 
 	return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
 				  &target->thread.fp_state, 0, -1);
-- 
2.8.0

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

* Re: [PATCH V2] powerpc/ptrace: Fix out of bounds array access warning
  2016-04-25 16:19 [PATCH V2] powerpc/ptrace: Fix out of bounds array access warning Khem Raj
@ 2016-05-11 17:51 ` Aaro Koskinen
  2016-06-05 22:04   ` Olof Johansson
  2016-06-07  3:35 ` [V2] " Michael Ellerman
  1 sibling, 1 reply; 4+ messages in thread
From: Aaro Koskinen @ 2016-05-11 17:51 UTC (permalink / raw)
  To: Khem Raj, Michael Ellerman; +Cc: linuxppc-dev, Kees Cook

Hi,

On Mon, Apr 25, 2016 at 09:19:17AM -0700, Khem Raj wrote:
> gcc-6 correctly warns about a out of bounds access
> 
> arch/powerpc/kernel/ptrace.c:407:24: warning: index 32 denotes an offset greater than size of 'u64[32][1] {aka long long unsigned int[32][1]}' [-Warray-bounds]
>         offsetof(struct thread_fp_state, fpr[32][0]));
>                         ^
> 
> check the end of array instead of beginning of next element to fix this
> 
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> Cc: Kees Cook <keescook@chromium.org>
> Cc: Michael Ellerman <mpe@ellerman.id.au>
> Cc: Segher Boessenkool <segher@kernel.crashing.org>

This patch fixes PPC kernel build failure with GCC 6.1.

Tested-by: Aaro Koskinen <aaro.koskinen@iki.fi>

Thanks,

A.


> ---
> Changes from v1 to v2:
> - Check for fpr[32] instead of fpr[31][1]
> 
>  arch/powerpc/kernel/ptrace.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)
> 
> diff --git a/arch/powerpc/kernel/ptrace.c b/arch/powerpc/kernel/ptrace.c
> index 30a03c0..060b140 100644
> --- a/arch/powerpc/kernel/ptrace.c
> +++ b/arch/powerpc/kernel/ptrace.c
> @@ -377,7 +377,7 @@ static int fpr_get(struct task_struct *target, const struct user_regset *regset,
>  
>  #else
>  	BUILD_BUG_ON(offsetof(struct thread_fp_state, fpscr) !=
> -		     offsetof(struct thread_fp_state, fpr[32][0]));
> +		     offsetof(struct thread_fp_state, fpr[32]));
>  
>  	return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
>  				   &target->thread.fp_state, 0, -1);
> @@ -405,7 +405,7 @@ static int fpr_set(struct task_struct *target, const struct user_regset *regset,
>  	return 0;
>  #else
>  	BUILD_BUG_ON(offsetof(struct thread_fp_state, fpscr) !=
> -		     offsetof(struct thread_fp_state, fpr[32][0]));
> +		     offsetof(struct thread_fp_state, fpr[32]));
>  
>  	return user_regset_copyin(&pos, &count, &kbuf, &ubuf,
>  				  &target->thread.fp_state, 0, -1);
> -- 
> 2.8.0
> 
> _______________________________________________
> Linuxppc-dev mailing list
> Linuxppc-dev@lists.ozlabs.org
> https://lists.ozlabs.org/listinfo/linuxppc-dev

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

* Re: [PATCH V2] powerpc/ptrace: Fix out of bounds array access warning
  2016-05-11 17:51 ` Aaro Koskinen
@ 2016-06-05 22:04   ` Olof Johansson
  0 siblings, 0 replies; 4+ messages in thread
From: Olof Johansson @ 2016-06-05 22:04 UTC (permalink / raw)
  To: Aaro Koskinen; +Cc: Khem Raj, Michael Ellerman, linuxppc-dev, Kees Cook

On Wed, May 11, 2016 at 10:51 AM, Aaro Koskinen <aaro.koskinen@iki.fi> wrote:
> Hi,
>
> On Mon, Apr 25, 2016 at 09:19:17AM -0700, Khem Raj wrote:
>> gcc-6 correctly warns about a out of bounds access
>>
>> arch/powerpc/kernel/ptrace.c:407:24: warning: index 32 denotes an offset greater than size of 'u64[32][1] {aka long long unsigned int[32][1]}' [-Warray-bounds]
>>         offsetof(struct thread_fp_state, fpr[32][0]));
>>                         ^
>>
>> check the end of array instead of beginning of next element to fix this
>>
>> Signed-off-by: Khem Raj <raj.khem@gmail.com>
>> Cc: Kees Cook <keescook@chromium.org>
>> Cc: Michael Ellerman <mpe@ellerman.id.au>
>> Cc: Segher Boessenkool <segher@kernel.crashing.org>
>
> This patch fixes PPC kernel build failure with GCC 6.1.
>
> Tested-by: Aaro Koskinen <aaro.koskinen@iki.fi>

I question the usefulness of this BUG_BUILD_ON() to be honest, but I'd
like to see _a_ fix go in for it for 4.7-rc3 or so to fix the GCC 6.1
build breakage.

So, consider that an:

Acked-by: Olof Johansson <olof@lixom.net>


-Olof

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

* Re: [V2] powerpc/ptrace: Fix out of bounds array access warning
  2016-04-25 16:19 [PATCH V2] powerpc/ptrace: Fix out of bounds array access warning Khem Raj
  2016-05-11 17:51 ` Aaro Koskinen
@ 2016-06-07  3:35 ` Michael Ellerman
  1 sibling, 0 replies; 4+ messages in thread
From: Michael Ellerman @ 2016-06-07  3:35 UTC (permalink / raw)
  To: Khem Raj, linuxppc-dev; +Cc: Khem Raj, Kees Cook

On Mon, 2016-25-04 at 16:19:17 UTC, Khem Raj wrote:
> gcc-6 correctly warns about a out of bounds access
> 
> arch/powerpc/kernel/ptrace.c:407:24: warning: index 32 denotes an offset greater than size of 'u64[32][1] {aka long long unsigned int[32][1]}' [-Warray-bounds]
>         offsetof(struct thread_fp_state, fpr[32][0]));
>                         ^
> 
> check the end of array instead of beginning of next element to fix this
> 
> Signed-off-by: Khem Raj <raj.khem@gmail.com>
> Cc: Kees Cook <keescook@chromium.org>
> Cc: Michael Ellerman <mpe@ellerman.id.au>
> Cc: Segher Boessenkool <segher@kernel.crashing.org>
> Tested-by: Aaro Koskinen <aaro.koskinen@iki.fi>
> Acked-by: Olof Johansson <olof@lixom.net>

Applied to powerpc fixes, thanks.

https://git.kernel.org/powerpc/c/1e407ee3b21f981140491d5b8a

cheers

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

end of thread, other threads:[~2016-06-07  3:35 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-04-25 16:19 [PATCH V2] powerpc/ptrace: Fix out of bounds array access warning Khem Raj
2016-05-11 17:51 ` Aaro Koskinen
2016-06-05 22:04   ` Olof Johansson
2016-06-07  3:35 ` [V2] " Michael Ellerman

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.