diff options
| author | Stafford Horne <[email protected]> | 2020-08-04 01:41:54 +0000 |
|---|---|---|
| committer | Stafford Horne <[email protected]> | 2020-08-08 22:57:21 +0000 |
| commit | 55b2662ec665cc8b592809a011fe807b05370ab8 (patch) | |
| tree | abfebce45160da87e2aecb2619feb393694fa4e1 | |
| parent | openrisc: signal: Fix sparse address space warnings (diff) | |
| download | kernel-55b2662ec665cc8b592809a011fe807b05370ab8.tar.gz kernel-55b2662ec665cc8b592809a011fe807b05370ab8.zip | |
openrisc: uaccess: Add user address space check to access_ok
Now that __user annotations are fixed for openrisc uaccess api's we can
add checking to the access_ok macro. This patch adds the __chk_user_ptr
check, on normal builds the added check is a nop.
Signed-off-by: Stafford Horne <[email protected]>
Reviewed-by: Luc Van Oostenryck <[email protected]>
| -rw-r--r-- | arch/openrisc/include/asm/uaccess.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/arch/openrisc/include/asm/uaccess.h b/arch/openrisc/include/asm/uaccess.h index 85a55359b244..7c5892f56765 100644 --- a/arch/openrisc/include/asm/uaccess.h +++ b/arch/openrisc/include/asm/uaccess.h @@ -57,6 +57,7 @@ static inline int __range_ok(unsigned long addr, unsigned long size) #define access_ok(addr, size) \ ({ \ + __chk_user_ptr(addr); \ __range_ok((unsigned long)(addr), (size)); \ }) |
