Merge branch 'for-6.3/hid-bpf' into for-linus
[linux-block.git] / include / linux / thread_info.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1da177e4
LT
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
ce6bd420 11#include <linux/types.h>
f39650de 12#include <linux/limits.h>
edd63a27 13#include <linux/bug.h>
53d74d05 14#include <linux/restart_block.h>
5abbe51a 15#include <linux/errno.h>
a332d86d 16
c65eacbe 17#ifdef CONFIG_THREAD_INFO_IN_TASK
dc3d2a67
MR
18/*
19 * For CONFIG_THREAD_INFO_IN_TASK kernels we need <asm/current.h> for the
20 * definition of current, but for !CONFIG_THREAD_INFO_IN_TASK kernels,
21 * including <asm/current.h> can cause a circular dependency on some platforms.
22 */
23#include <asm/current.h>
c65eacbe
AL
24#define current_thread_info() ((struct thread_info *)current)
25#endif
26
1da177e4 27#include <linux/bitops.h>
96dc4f9f
S
28
29/*
30 * For per-arch arch_within_stack_frames() implementations, defined in
31 * asm/thread_info.h.
32 */
33enum {
34 BAD_STACK = -1,
35 NOT_STACK = 0,
36 GOOD_FRAME,
37 GOOD_STACK,
38};
39
5903f61e 40#ifdef CONFIG_GENERIC_ENTRY
23d67a54
GKB
41enum syscall_work_bit {
42 SYSCALL_WORK_BIT_SECCOMP,
524666cb 43 SYSCALL_WORK_BIT_SYSCALL_TRACEPOINT,
64c19ba2 44 SYSCALL_WORK_BIT_SYSCALL_TRACE,
64eb35f7 45 SYSCALL_WORK_BIT_SYSCALL_EMU,
785dc4eb 46 SYSCALL_WORK_BIT_SYSCALL_AUDIT,
1446e1df 47 SYSCALL_WORK_BIT_SYSCALL_USER_DISPATCH,
6342adca 48 SYSCALL_WORK_BIT_SYSCALL_EXIT_TRAP,
23d67a54
GKB
49};
50
51#define SYSCALL_WORK_SECCOMP BIT(SYSCALL_WORK_BIT_SECCOMP)
524666cb 52#define SYSCALL_WORK_SYSCALL_TRACEPOINT BIT(SYSCALL_WORK_BIT_SYSCALL_TRACEPOINT)
64c19ba2 53#define SYSCALL_WORK_SYSCALL_TRACE BIT(SYSCALL_WORK_BIT_SYSCALL_TRACE)
64eb35f7 54#define SYSCALL_WORK_SYSCALL_EMU BIT(SYSCALL_WORK_BIT_SYSCALL_EMU)
785dc4eb 55#define SYSCALL_WORK_SYSCALL_AUDIT BIT(SYSCALL_WORK_BIT_SYSCALL_AUDIT)
1446e1df 56#define SYSCALL_WORK_SYSCALL_USER_DISPATCH BIT(SYSCALL_WORK_BIT_SYSCALL_USER_DISPATCH)
6342adca 57#define SYSCALL_WORK_SYSCALL_EXIT_TRAP BIT(SYSCALL_WORK_BIT_SYSCALL_EXIT_TRAP)
5903f61e 58#endif
23d67a54 59
1da177e4
LT
60#include <asm/thread_info.h>
61
62#ifdef __KERNEL__
63
5abbe51a
ON
64#ifndef arch_set_restart_data
65#define arch_set_restart_data(restart) do { } while (0)
66#endif
67
68static inline long set_restart_fn(struct restart_block *restart,
69 long (*fn)(struct restart_block *))
70{
71 restart->fn = fn;
72 arch_set_restart_data(restart);
73 return -ERESTART_RESTARTBLOCK;
74}
75
48ac3c18
MR
76#ifndef THREAD_ALIGN
77#define THREAD_ALIGN THREAD_SIZE
78#endif
79
e01e8063 80#define THREADINFO_GFP (GFP_KERNEL_ACCOUNT | __GFP_ZERO)
2889f608 81
1da177e4
LT
82/*
83 * flag set/clear/test wrappers
84 * - pass TIF_xxxx constants to these functions
85 */
86
1da177e4
LT
87static inline void set_ti_thread_flag(struct thread_info *ti, int flag)
88{
5548fecd 89 set_bit(flag, (unsigned long *)&ti->flags);
1da177e4
LT
90}
91
92static inline void clear_ti_thread_flag(struct thread_info *ti, int flag)
93{
5548fecd 94 clear_bit(flag, (unsigned long *)&ti->flags);
1da177e4
LT
95}
96
93ee37c2
DM
97static inline void update_ti_thread_flag(struct thread_info *ti, int flag,
98 bool value)
99{
100 if (value)
101 set_ti_thread_flag(ti, flag);
102 else
103 clear_ti_thread_flag(ti, flag);
104}
105
1da177e4
LT
106static inline int test_and_set_ti_thread_flag(struct thread_info *ti, int flag)
107{
5548fecd 108 return test_and_set_bit(flag, (unsigned long *)&ti->flags);
1da177e4
LT
109}
110
111static inline int test_and_clear_ti_thread_flag(struct thread_info *ti, int flag)
112{
5548fecd 113 return test_and_clear_bit(flag, (unsigned long *)&ti->flags);
1da177e4
LT
114}
115
116static inline int test_ti_thread_flag(struct thread_info *ti, int flag)
117{
5548fecd 118 return test_bit(flag, (unsigned long *)&ti->flags);
1da177e4
LT
119}
120
7ad63984
MR
121/*
122 * This may be used in noinstr code, and needs to be __always_inline to prevent
123 * inadvertent instrumentation.
124 */
125static __always_inline unsigned long read_ti_thread_flags(struct thread_info *ti)
126{
127 return READ_ONCE(ti->flags);
128}
129
3b66a1ed
RZ
130#define set_thread_flag(flag) \
131 set_ti_thread_flag(current_thread_info(), flag)
132#define clear_thread_flag(flag) \
133 clear_ti_thread_flag(current_thread_info(), flag)
93ee37c2
DM
134#define update_thread_flag(flag, value) \
135 update_ti_thread_flag(current_thread_info(), flag, value)
3b66a1ed
RZ
136#define test_and_set_thread_flag(flag) \
137 test_and_set_ti_thread_flag(current_thread_info(), flag)
138#define test_and_clear_thread_flag(flag) \
139 test_and_clear_ti_thread_flag(current_thread_info(), flag)
140#define test_thread_flag(flag) \
141 test_ti_thread_flag(current_thread_info(), flag)
7ad63984
MR
142#define read_thread_flags() \
143 read_ti_thread_flags(current_thread_info())
144
145#define read_task_thread_flags(t) \
146 read_ti_thread_flags(task_thread_info(t))
3b66a1ed 147
3136b93c
GKB
148#ifdef CONFIG_GENERIC_ENTRY
149#define set_syscall_work(fl) \
150 set_bit(SYSCALL_WORK_BIT_##fl, &current_thread_info()->syscall_work)
151#define test_syscall_work(fl) \
152 test_bit(SYSCALL_WORK_BIT_##fl, &current_thread_info()->syscall_work)
153#define clear_syscall_work(fl) \
154 clear_bit(SYSCALL_WORK_BIT_##fl, &current_thread_info()->syscall_work)
155
156#define set_task_syscall_work(t, fl) \
157 set_bit(SYSCALL_WORK_BIT_##fl, &task_thread_info(t)->syscall_work)
158#define test_task_syscall_work(t, fl) \
159 test_bit(SYSCALL_WORK_BIT_##fl, &task_thread_info(t)->syscall_work)
160#define clear_task_syscall_work(t, fl) \
161 clear_bit(SYSCALL_WORK_BIT_##fl, &task_thread_info(t)->syscall_work)
162
163#else /* CONFIG_GENERIC_ENTRY */
164
165#define set_syscall_work(fl) \
5903f61e 166 set_ti_thread_flag(current_thread_info(), TIF_##fl)
3136b93c 167#define test_syscall_work(fl) \
5903f61e 168 test_ti_thread_flag(current_thread_info(), TIF_##fl)
3136b93c 169#define clear_syscall_work(fl) \
5903f61e 170 clear_ti_thread_flag(current_thread_info(), TIF_##fl)
3136b93c
GKB
171
172#define set_task_syscall_work(t, fl) \
173 set_ti_thread_flag(task_thread_info(t), TIF_##fl)
174#define test_task_syscall_work(t, fl) \
175 test_ti_thread_flag(task_thread_info(t), TIF_##fl)
176#define clear_task_syscall_work(t, fl) \
177 clear_ti_thread_flag(task_thread_info(t), TIF_##fl)
178#endif /* !CONFIG_GENERIC_ENTRY */
179
ea811747
PZ
180#define tif_need_resched() test_thread_flag(TIF_NEED_RESCHED)
181
0f60a8ef
KC
182#ifndef CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES
183static inline int arch_within_stack_frames(const void * const stack,
184 const void * const stackend,
185 const void *obj, unsigned long len)
186{
187 return 0;
188}
189#endif
190
f5509cc1
KC
191#ifdef CONFIG_HARDENED_USERCOPY
192extern void __check_object_size(const void *ptr, unsigned long n,
193 bool to_user);
194
a85d6b82
KC
195static __always_inline void check_object_size(const void *ptr, unsigned long n,
196 bool to_user)
f5509cc1 197{
81409e9e
KC
198 if (!__builtin_constant_p(n))
199 __check_object_size(ptr, n, to_user);
f5509cc1
KC
200}
201#else
202static inline void check_object_size(const void *ptr, unsigned long n,
203 bool to_user)
204{ }
205#endif /* CONFIG_HARDENED_USERCOPY */
206
b0377fed
AV
207extern void __compiletime_error("copy source size is too small")
208__bad_copy_from(void);
209extern void __compiletime_error("copy destination size is too small")
210__bad_copy_to(void);
211
ad7489d5
CL
212void __copy_overflow(int size, unsigned long count);
213
b0377fed
AV
214static inline void copy_overflow(int size, unsigned long count)
215{
ad7489d5
CL
216 if (IS_ENABLED(CONFIG_BUG))
217 __copy_overflow(size, count);
b0377fed
AV
218}
219
9dd819a1 220static __always_inline __must_check bool
b0377fed
AV
221check_copy_size(const void *addr, size_t bytes, bool is_source)
222{
c80d92fb 223 int sz = __builtin_object_size(addr, 0);
b0377fed
AV
224 if (unlikely(sz >= 0 && sz < bytes)) {
225 if (!__builtin_constant_p(bytes))
226 copy_overflow(sz, bytes);
227 else if (is_source)
228 __bad_copy_from();
229 else
230 __bad_copy_to();
231 return false;
232 }
6d13de14
KC
233 if (WARN_ON_ONCE(bytes > INT_MAX))
234 return false;
b0377fed
AV
235 check_object_size(addr, bytes, is_source);
236 return true;
237}
238
e9ea1e7f
KH
239#ifndef arch_setup_new_exec
240static inline void arch_setup_new_exec(void) { }
241#endif
242
4e4c22c7 243#endif /* __KERNEL__ */
1da177e4
LT
244
245#endif /* _LINUX_THREAD_INFO_H */