Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* thread_info.h: common low-level thread information accessors |
| 2 | * |
| 3 | * Copyright (C) 2002 David Howells (dhowells@redhat.com) |
| 4 | * - Incorporating suggestions made by Linus Torvalds |
| 5 | */ |
| 6 | |
| 7 | #ifndef _LINUX_THREAD_INFO_H |
| 8 | #define _LINUX_THREAD_INFO_H |
| 9 | |
Steven Rostedt | ce6bd42 | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 10 | #include <linux/types.h> |
Al Viro | edd63a2 | 2012-04-27 13:42:45 -0400 | [diff] [blame] | 11 | #include <linux/bug.h> |
Mark Rutland | 7d1ab81 | 2016-10-19 19:28:12 +0100 | [diff] [blame] | 12 | #include <linux/restart_block.h> |
Oleg Nesterov | 376a76a | 2021-02-01 18:46:41 +0100 | [diff] [blame] | 13 | #include <linux/errno.h> |
Steven Rostedt | ce6bd42 | 2007-12-05 15:46:09 +0100 | [diff] [blame] | 14 | |
Thomas Gleixner | a332d86 | 2008-02-10 09:04:12 +0100 | [diff] [blame] | 15 | struct timespec; |
| 16 | struct compat_timespec; |
| 17 | |
Andy Lutomirski | c65eacb | 2016-09-13 14:29:24 -0700 | [diff] [blame] | 18 | #ifdef CONFIG_THREAD_INFO_IN_TASK |
Mark Rutland | be8c7b6 | 2016-10-19 19:28:13 +0100 | [diff] [blame] | 19 | /* |
| 20 | * For CONFIG_THREAD_INFO_IN_TASK kernels we need <asm/current.h> for the |
| 21 | * definition of current, but for !CONFIG_THREAD_INFO_IN_TASK kernels, |
| 22 | * including <asm/current.h> can cause a circular dependency on some platforms. |
| 23 | */ |
| 24 | #include <asm/current.h> |
Andy Lutomirski | c65eacb | 2016-09-13 14:29:24 -0700 | [diff] [blame] | 25 | #define current_thread_info() ((struct thread_info *)current) |
| 26 | #endif |
| 27 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/bitops.h> |
| 29 | #include <asm/thread_info.h> |
| 30 | |
| 31 | #ifdef __KERNEL__ |
| 32 | |
Oleg Nesterov | 376a76a | 2021-02-01 18:46:41 +0100 | [diff] [blame] | 33 | #ifndef arch_set_restart_data |
| 34 | #define arch_set_restart_data(restart) do { } while (0) |
| 35 | #endif |
| 36 | |
| 37 | static inline long set_restart_fn(struct restart_block *restart, |
| 38 | long (*fn)(struct restart_block *)) |
| 39 | { |
| 40 | restart->fn = fn; |
| 41 | arch_set_restart_data(restart); |
| 42 | return -ERESTART_RESTARTBLOCK; |
| 43 | } |
| 44 | |
Kees Cook | 6a19e26 | 2018-04-20 14:55:31 -0700 | [diff] [blame] | 45 | #define THREADINFO_GFP (GFP_KERNEL_ACCOUNT | __GFP_NOTRACK | __GFP_ZERO) |
Thomas Gleixner | 2889f60 | 2012-05-05 15:05:41 +0000 | [diff] [blame] | 46 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 47 | /* |
| 48 | * flag set/clear/test wrappers |
| 49 | * - pass TIF_xxxx constants to these functions |
| 50 | */ |
| 51 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 52 | static inline void set_ti_thread_flag(struct thread_info *ti, int flag) |
| 53 | { |
Jeremy Fitzhardinge | 5548fec | 2008-01-30 13:30:55 +0100 | [diff] [blame] | 54 | set_bit(flag, (unsigned long *)&ti->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | } |
| 56 | |
| 57 | static inline void clear_ti_thread_flag(struct thread_info *ti, int flag) |
| 58 | { |
Jeremy Fitzhardinge | 5548fec | 2008-01-30 13:30:55 +0100 | [diff] [blame] | 59 | clear_bit(flag, (unsigned long *)&ti->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | } |
| 61 | |
| 62 | static inline int test_and_set_ti_thread_flag(struct thread_info *ti, int flag) |
| 63 | { |
Jeremy Fitzhardinge | 5548fec | 2008-01-30 13:30:55 +0100 | [diff] [blame] | 64 | return test_and_set_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_clear_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_clear_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_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_bit(flag, (unsigned long *)&ti->flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | } |
| 76 | |
Roman Zippel | 3b66a1e | 2005-11-13 16:06:59 -0800 | [diff] [blame] | 77 | #define set_thread_flag(flag) \ |
| 78 | set_ti_thread_flag(current_thread_info(), flag) |
| 79 | #define clear_thread_flag(flag) \ |
| 80 | clear_ti_thread_flag(current_thread_info(), flag) |
| 81 | #define test_and_set_thread_flag(flag) \ |
| 82 | test_and_set_ti_thread_flag(current_thread_info(), flag) |
| 83 | #define test_and_clear_thread_flag(flag) \ |
| 84 | test_and_clear_ti_thread_flag(current_thread_info(), flag) |
| 85 | #define test_thread_flag(flag) \ |
| 86 | test_ti_thread_flag(current_thread_info(), flag) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
Peter Zijlstra | ea81174 | 2013-09-11 12:43:13 +0200 | [diff] [blame] | 88 | #define tif_need_resched() test_thread_flag(TIF_NEED_RESCHED) |
| 89 | |
Kees Cook | 0f60a8e | 2016-07-12 16:19:48 -0700 | [diff] [blame] | 90 | #ifndef CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES |
| 91 | static inline int arch_within_stack_frames(const void * const stack, |
| 92 | const void * const stackend, |
| 93 | const void *obj, unsigned long len) |
| 94 | { |
| 95 | return 0; |
| 96 | } |
| 97 | #endif |
| 98 | |
Kees Cook | f5509cc | 2016-06-07 11:05:33 -0700 | [diff] [blame] | 99 | #ifdef CONFIG_HARDENED_USERCOPY |
| 100 | extern void __check_object_size(const void *ptr, unsigned long n, |
| 101 | bool to_user); |
| 102 | |
Kees Cook | a85d6b8 | 2016-09-07 09:39:32 -0700 | [diff] [blame] | 103 | static __always_inline void check_object_size(const void *ptr, unsigned long n, |
| 104 | bool to_user) |
Kees Cook | f5509cc | 2016-06-07 11:05:33 -0700 | [diff] [blame] | 105 | { |
Kees Cook | 81409e9 | 2016-08-31 16:04:21 -0700 | [diff] [blame] | 106 | if (!__builtin_constant_p(n)) |
| 107 | __check_object_size(ptr, n, to_user); |
Kees Cook | f5509cc | 2016-06-07 11:05:33 -0700 | [diff] [blame] | 108 | } |
| 109 | #else |
| 110 | static inline void check_object_size(const void *ptr, unsigned long n, |
| 111 | bool to_user) |
| 112 | { } |
| 113 | #endif /* CONFIG_HARDENED_USERCOPY */ |
| 114 | |
Roland McGrath | 4e4c22c | 2008-04-30 00:53:06 -0700 | [diff] [blame] | 115 | #endif /* __KERNEL__ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
| 117 | #endif /* _LINUX_THREAD_INFO_H */ |