Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* thread_info.h: common low-level thread information accessors |
| 3 | * |
| 4 | * Copyright (C) 2002 David Howells (dhowells@redhat.com) |
| 5 | * - Incorporating suggestions made by Linus Torvalds |
| 6 | */ |
| 7 | |
| 8 | #ifndef _LINUX_THREAD_INFO_H |
| 9 | #define _LINUX_THREAD_INFO_H |
| 10 | |
Steven Rostedt | ce6bd42 | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 11 | #include <linux/types.h> |
Al Viro | edd63a2 | 2012-04-27 13:42:45 -0400 | [diff] [blame] | 12 | #include <linux/bug.h> |
Mark Rutland | 53d74d0 | 2016-10-19 19:28:12 +0100 | [diff] [blame] | 13 | #include <linux/restart_block.h> |
Thomas Gleixner | a332d86 | 2008-02-10 09:04:12 +0100 | [diff] [blame] | 14 | |
Andy Lutomirski | c65eacb | 2016-09-13 14:29:24 -0700 | [diff] [blame] | 15 | #ifdef CONFIG_THREAD_INFO_IN_TASK |
Mark Rutland | dc3d2a6 | 2016-10-19 19:28:13 +0100 | [diff] [blame] | 16 | /* |
| 17 | * For CONFIG_THREAD_INFO_IN_TASK kernels we need <asm/current.h> for the |
| 18 | * definition of current, but for !CONFIG_THREAD_INFO_IN_TASK kernels, |
| 19 | * including <asm/current.h> can cause a circular dependency on some platforms. |
| 20 | */ |
| 21 | #include <asm/current.h> |
Andy Lutomirski | c65eacb | 2016-09-13 14:29:24 -0700 | [diff] [blame] | 22 | #define current_thread_info() ((struct thread_info *)current) |
| 23 | #endif |
| 24 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/bitops.h> |
Sahara | 96dc4f9 | 2017-02-16 18:29:15 +0000 | [diff] [blame] | 26 | |
| 27 | /* |
| 28 | * For per-arch arch_within_stack_frames() implementations, defined in |
| 29 | * asm/thread_info.h. |
| 30 | */ |
| 31 | enum { |
| 32 | BAD_STACK = -1, |
| 33 | NOT_STACK = 0, |
| 34 | GOOD_FRAME, |
| 35 | GOOD_STACK, |
| 36 | }; |
| 37 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <asm/thread_info.h> |
| 39 | |
| 40 | #ifdef __KERNEL__ |
| 41 | |
Mark Rutland | 48ac3c1 | 2017-07-14 12:23:09 +0100 | [diff] [blame] | 42 | #ifndef THREAD_ALIGN |
| 43 | #define THREAD_ALIGN THREAD_SIZE |
| 44 | #endif |
| 45 | |
Konstantin Khlebnikov | ca18255 | 2017-10-13 15:58:22 -0700 | [diff] [blame] | 46 | #if IS_ENABLED(CONFIG_DEBUG_STACK_USAGE) || IS_ENABLED(CONFIG_DEBUG_KMEMLEAK) |
Levin, Alexander (Sasha Levin) | 75f296d | 2017-11-15 17:35:54 -0800 | [diff] [blame] | 47 | # define THREADINFO_GFP (GFP_KERNEL_ACCOUNT | __GFP_ZERO) |
Thomas Gleixner | 2889f60 | 2012-05-05 15:05:41 +0000 | [diff] [blame] | 48 | #else |
Levin, Alexander (Sasha Levin) | 75f296d | 2017-11-15 17:35:54 -0800 | [diff] [blame] | 49 | # define THREADINFO_GFP (GFP_KERNEL_ACCOUNT) |
Thomas Gleixner | 2889f60 | 2012-05-05 15:05:41 +0000 | [diff] [blame] | 50 | #endif |
| 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | /* |
| 53 | * flag set/clear/test wrappers |
| 54 | * - pass TIF_xxxx constants to these functions |
| 55 | */ |
| 56 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | static inline void set_ti_thread_flag(struct thread_info *ti, int flag) |
| 58 | { |
Jeremy Fitzhardinge | 5548fec | 2008-01-30 13:30:55 +0100 | [diff] [blame] | 59 | set_bit(flag, (unsigned long *)&ti->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | static inline void clear_ti_thread_flag(struct thread_info *ti, int flag) |
| 63 | { |
Jeremy Fitzhardinge | 5548fec | 2008-01-30 13:30:55 +0100 | [diff] [blame] | 64 | clear_bit(flag, (unsigned long *)&ti->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | } |
| 66 | |
| 67 | static inline int test_and_set_ti_thread_flag(struct thread_info *ti, int flag) |
| 68 | { |
Jeremy Fitzhardinge | 5548fec | 2008-01-30 13:30:55 +0100 | [diff] [blame] | 69 | return test_and_set_bit(flag, (unsigned long *)&ti->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | } |
| 71 | |
| 72 | static inline int test_and_clear_ti_thread_flag(struct thread_info *ti, int flag) |
| 73 | { |
Jeremy Fitzhardinge | 5548fec | 2008-01-30 13:30:55 +0100 | [diff] [blame] | 74 | return test_and_clear_bit(flag, (unsigned long *)&ti->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | static inline int test_ti_thread_flag(struct thread_info *ti, int flag) |
| 78 | { |
Jeremy Fitzhardinge | 5548fec | 2008-01-30 13:30:55 +0100 | [diff] [blame] | 79 | return test_bit(flag, (unsigned long *)&ti->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | } |
| 81 | |
Roman Zippel | 3b66a1e | 2005-11-13 16:06:59 -0800 | [diff] [blame] | 82 | #define set_thread_flag(flag) \ |
| 83 | set_ti_thread_flag(current_thread_info(), flag) |
| 84 | #define clear_thread_flag(flag) \ |
| 85 | clear_ti_thread_flag(current_thread_info(), flag) |
| 86 | #define test_and_set_thread_flag(flag) \ |
| 87 | test_and_set_ti_thread_flag(current_thread_info(), flag) |
| 88 | #define test_and_clear_thread_flag(flag) \ |
| 89 | test_and_clear_ti_thread_flag(current_thread_info(), flag) |
| 90 | #define test_thread_flag(flag) \ |
| 91 | test_ti_thread_flag(current_thread_info(), flag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 92 | |
Peter Zijlstra | ea81174 | 2013-09-11 12:43:13 +0200 | [diff] [blame] | 93 | #define tif_need_resched() test_thread_flag(TIF_NEED_RESCHED) |
| 94 | |
Kees Cook | 0f60a8e | 2016-07-12 16:19:48 -0700 | [diff] [blame] | 95 | #ifndef CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES |
| 96 | static inline int arch_within_stack_frames(const void * const stack, |
| 97 | const void * const stackend, |
| 98 | const void *obj, unsigned long len) |
| 99 | { |
| 100 | return 0; |
| 101 | } |
| 102 | #endif |
| 103 | |
Kees Cook | f5509cc | 2016-06-07 11:05:33 -0700 | [diff] [blame] | 104 | #ifdef CONFIG_HARDENED_USERCOPY |
| 105 | extern void __check_object_size(const void *ptr, unsigned long n, |
| 106 | bool to_user); |
| 107 | |
Kees Cook | a85d6b8 | 2016-09-07 09:39:32 -0700 | [diff] [blame] | 108 | static __always_inline void check_object_size(const void *ptr, unsigned long n, |
| 109 | bool to_user) |
Kees Cook | f5509cc | 2016-06-07 11:05:33 -0700 | [diff] [blame] | 110 | { |
Kees Cook | 81409e9 | 2016-08-31 16:04:21 -0700 | [diff] [blame] | 111 | if (!__builtin_constant_p(n)) |
| 112 | __check_object_size(ptr, n, to_user); |
Kees Cook | f5509cc | 2016-06-07 11:05:33 -0700 | [diff] [blame] | 113 | } |
| 114 | #else |
| 115 | static inline void check_object_size(const void *ptr, unsigned long n, |
| 116 | bool to_user) |
| 117 | { } |
| 118 | #endif /* CONFIG_HARDENED_USERCOPY */ |
| 119 | |
Al Viro | b0377fe | 2017-06-29 21:42:43 -0400 | [diff] [blame] | 120 | extern void __compiletime_error("copy source size is too small") |
| 121 | __bad_copy_from(void); |
| 122 | extern void __compiletime_error("copy destination size is too small") |
| 123 | __bad_copy_to(void); |
| 124 | |
| 125 | static inline void copy_overflow(int size, unsigned long count) |
| 126 | { |
| 127 | WARN(1, "Buffer overflow detected (%d < %lu)!\n", size, count); |
| 128 | } |
| 129 | |
| 130 | static __always_inline bool |
| 131 | check_copy_size(const void *addr, size_t bytes, bool is_source) |
| 132 | { |
| 133 | int sz = __compiletime_object_size(addr); |
| 134 | if (unlikely(sz >= 0 && sz < bytes)) { |
| 135 | if (!__builtin_constant_p(bytes)) |
| 136 | copy_overflow(sz, bytes); |
| 137 | else if (is_source) |
| 138 | __bad_copy_from(); |
| 139 | else |
| 140 | __bad_copy_to(); |
| 141 | return false; |
| 142 | } |
| 143 | check_object_size(addr, bytes, is_source); |
| 144 | return true; |
| 145 | } |
| 146 | |
Kyle Huey | e9ea1e7 | 2017-03-20 01:16:26 -0700 | [diff] [blame] | 147 | #ifndef arch_setup_new_exec |
| 148 | static inline void arch_setup_new_exec(void) { } |
| 149 | #endif |
| 150 | |
Roland McGrath | 4e4c22c | 2008-04-30 00:53:06 -0700 | [diff] [blame] | 151 | #endif /* __KERNEL__ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 152 | |
| 153 | #endif /* _LINUX_THREAD_INFO_H */ |