Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1466623 > unrolled thread
| Started by | Eric Biggers <ebiggers@google.com> |
|---|---|
| First post | 2016-08-19 21:30 +0200 |
| Last post | 2016-08-19 23:00 +0200 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
[PATCH] mm: avoid undefined behavior in hardened usercopy check Eric Biggers <ebiggers@google.com> - 2016-08-19 21:30 +0200
Re: [PATCH] mm: avoid undefined behavior in hardened usercopy check Kees Cook <keescook@chromium.org> - 2016-08-19 23:00 +0200
| From | Eric Biggers <ebiggers@google.com> |
|---|---|
| Date | 2016-08-19 21:30 +0200 |
| Subject | [PATCH] mm: avoid undefined behavior in hardened usercopy check |
| Message-ID | <s7XEl-1hT-7@gated-at.bofh.it> |
check_bogus_address() checked for pointer overflow using this expression,
where 'ptr' has type 'const void *':
ptr + n < ptr
Since pointer wraparound is undefined behavior, gcc at -O2 by default
treats it like the following, which would not behave as intended:
(long)n < 0
Fortunately, this doesn't currently happen for kernel code because kernel
code is compiled with -fno-strict-overflow. But the expression should be
fixed anyway to use well-defined integer arithmetic, since it could be
treated differently by different compilers in the future or could be
reported by tools checking for undefined behavior.
Signed-off-by: Eric Biggers <ebiggers@google.com>
---
mm/usercopy.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/mm/usercopy.c b/mm/usercopy.c
index 8ebae91..82f81df 100644
--- a/mm/usercopy.c
+++ b/mm/usercopy.c
@@ -124,7 +124,7 @@ static inline const char *check_kernel_text_object(const void *ptr,
static inline const char *check_bogus_address(const void *ptr, unsigned long n)
{
/* Reject if object wraps past end of memory. */
- if (ptr + n < ptr)
+ if ((unsigned long)ptr + n < (unsigned long)ptr)
return "<wrapped address>";
/* Reject if NULL or ZERO-allocation. */
--
2.8.0.rc3.226.g39d4020
[toc] | [next] | [standalone]
| From | Kees Cook <keescook@chromium.org> |
|---|---|
| Date | 2016-08-19 23:00 +0200 |
| Message-ID | <s7Z3s-21V-31@gated-at.bofh.it> |
| In reply to | #1466623 |
On Fri, Aug 19, 2016 at 12:15 PM, Eric Biggers <ebiggers@google.com> wrote:
> check_bogus_address() checked for pointer overflow using this expression,
> where 'ptr' has type 'const void *':
>
> ptr + n < ptr
>
> Since pointer wraparound is undefined behavior, gcc at -O2 by default
> treats it like the following, which would not behave as intended:
>
> (long)n < 0
>
> Fortunately, this doesn't currently happen for kernel code because kernel
> code is compiled with -fno-strict-overflow. But the expression should be
> fixed anyway to use well-defined integer arithmetic, since it could be
> treated differently by different compilers in the future or could be
> reported by tools checking for undefined behavior.
>
> Signed-off-by: Eric Biggers <ebiggers@google.com>
Cool, thanks. I'll get this into my tree.
-Kees
> ---
> mm/usercopy.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/mm/usercopy.c b/mm/usercopy.c
> index 8ebae91..82f81df 100644
> --- a/mm/usercopy.c
> +++ b/mm/usercopy.c
> @@ -124,7 +124,7 @@ static inline const char *check_kernel_text_object(const void *ptr,
> static inline const char *check_bogus_address(const void *ptr, unsigned long n)
> {
> /* Reject if object wraps past end of memory. */
> - if (ptr + n < ptr)
> + if ((unsigned long)ptr + n < (unsigned long)ptr)
> return "<wrapped address>";
>
> /* Reject if NULL or ZERO-allocation. */
> --
> 2.8.0.rc3.226.g39d4020
>
--
Kees Cook
Nexus Security
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web