blob: 8d8821b3689a2e1638547f99b1335089c56ff9fc [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/* 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 Rostedtce6bd422007-12-05 15:46:09 +010011#include <linux/types.h>
Al Viroedd63a22012-04-27 13:42:45 -040012#include <linux/bug.h>
Mark Rutland53d74d02016-10-19 19:28:12 +010013#include <linux/restart_block.h>
Thomas Gleixnera332d862008-02-10 09:04:12 +010014
Andy Lutomirskic65eacb2016-09-13 14:29:24 -070015#ifdef CONFIG_THREAD_INFO_IN_TASK
Mark Rutlanddc3d2a62016-10-19 19:28:13 +010016/*
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 Lutomirskic65eacb2016-09-13 14:29:24 -070022#define current_thread_info() ((struct thread_info *)current)
23#endif
24
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/bitops.h>
Sahara96dc4f92017-02-16 18:29:15 +000026
27/*
28 * For per-arch arch_within_stack_frames() implementations, defined in
29 * asm/thread_info.h.
30 */
31enum {
32 BAD_STACK = -1,
33 NOT_STACK = 0,
34 GOOD_FRAME,
35 GOOD_STACK,
36};
37
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/thread_info.h>
39
40#ifdef __KERNEL__
41
Mark Rutland48ac3c12017-07-14 12:23:09 +010042#ifndef THREAD_ALIGN
43#define THREAD_ALIGN THREAD_SIZE
44#endif
45
Kees Cooke01e8062018-04-20 14:55:31 -070046#define THREADINFO_GFP (GFP_KERNEL_ACCOUNT | __GFP_ZERO)
Thomas Gleixner2889f602012-05-05 15:05:41 +000047
Linus Torvalds1da177e2005-04-16 15:20:36 -070048/*
49 * flag set/clear/test wrappers
50 * - pass TIF_xxxx constants to these functions
51 */
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053static inline void set_ti_thread_flag(struct thread_info *ti, int flag)
54{
Jeremy Fitzhardinge5548fec2008-01-30 13:30:55 +010055 set_bit(flag, (unsigned long *)&ti->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070056}
57
58static inline void clear_ti_thread_flag(struct thread_info *ti, int flag)
59{
Jeremy Fitzhardinge5548fec2008-01-30 13:30:55 +010060 clear_bit(flag, (unsigned long *)&ti->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061}
62
Dave Martin93ee37c2018-04-11 17:54:20 +010063static inline void update_ti_thread_flag(struct thread_info *ti, int flag,
64 bool value)
65{
66 if (value)
67 set_ti_thread_flag(ti, flag);
68 else
69 clear_ti_thread_flag(ti, flag);
70}
71
Linus Torvalds1da177e2005-04-16 15:20:36 -070072static inline int test_and_set_ti_thread_flag(struct thread_info *ti, int flag)
73{
Jeremy Fitzhardinge5548fec2008-01-30 13:30:55 +010074 return test_and_set_bit(flag, (unsigned long *)&ti->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070075}
76
77static inline int test_and_clear_ti_thread_flag(struct thread_info *ti, int flag)
78{
Jeremy Fitzhardinge5548fec2008-01-30 13:30:55 +010079 return test_and_clear_bit(flag, (unsigned long *)&ti->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070080}
81
82static inline int test_ti_thread_flag(struct thread_info *ti, int flag)
83{
Jeremy Fitzhardinge5548fec2008-01-30 13:30:55 +010084 return test_bit(flag, (unsigned long *)&ti->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085}
86
Roman Zippel3b66a1e2005-11-13 16:06:59 -080087#define set_thread_flag(flag) \
88 set_ti_thread_flag(current_thread_info(), flag)
89#define clear_thread_flag(flag) \
90 clear_ti_thread_flag(current_thread_info(), flag)
Dave Martin93ee37c2018-04-11 17:54:20 +010091#define update_thread_flag(flag, value) \
92 update_ti_thread_flag(current_thread_info(), flag, value)
Roman Zippel3b66a1e2005-11-13 16:06:59 -080093#define test_and_set_thread_flag(flag) \
94 test_and_set_ti_thread_flag(current_thread_info(), flag)
95#define test_and_clear_thread_flag(flag) \
96 test_and_clear_ti_thread_flag(current_thread_info(), flag)
97#define test_thread_flag(flag) \
98 test_ti_thread_flag(current_thread_info(), flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
Peter Zijlstraea811742013-09-11 12:43:13 +0200100#define tif_need_resched() test_thread_flag(TIF_NEED_RESCHED)
101
Kees Cook0f60a8e2016-07-12 16:19:48 -0700102#ifndef CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES
103static inline int arch_within_stack_frames(const void * const stack,
104 const void * const stackend,
105 const void *obj, unsigned long len)
106{
107 return 0;
108}
109#endif
110
Kees Cookf5509cc2016-06-07 11:05:33 -0700111#ifdef CONFIG_HARDENED_USERCOPY
112extern void __check_object_size(const void *ptr, unsigned long n,
113 bool to_user);
114
Kees Cooka85d6b82016-09-07 09:39:32 -0700115static __always_inline void check_object_size(const void *ptr, unsigned long n,
116 bool to_user)
Kees Cookf5509cc2016-06-07 11:05:33 -0700117{
Kees Cook81409e92016-08-31 16:04:21 -0700118 if (!__builtin_constant_p(n))
119 __check_object_size(ptr, n, to_user);
Kees Cookf5509cc2016-06-07 11:05:33 -0700120}
121#else
122static inline void check_object_size(const void *ptr, unsigned long n,
123 bool to_user)
124{ }
125#endif /* CONFIG_HARDENED_USERCOPY */
126
Al Virob0377fe2017-06-29 21:42:43 -0400127extern void __compiletime_error("copy source size is too small")
128__bad_copy_from(void);
129extern void __compiletime_error("copy destination size is too small")
130__bad_copy_to(void);
131
132static inline void copy_overflow(int size, unsigned long count)
133{
134 WARN(1, "Buffer overflow detected (%d < %lu)!\n", size, count);
135}
136
137static __always_inline bool
138check_copy_size(const void *addr, size_t bytes, bool is_source)
139{
140 int sz = __compiletime_object_size(addr);
141 if (unlikely(sz >= 0 && sz < bytes)) {
142 if (!__builtin_constant_p(bytes))
143 copy_overflow(sz, bytes);
144 else if (is_source)
145 __bad_copy_from();
146 else
147 __bad_copy_to();
148 return false;
149 }
150 check_object_size(addr, bytes, is_source);
151 return true;
152}
153
Kyle Hueye9ea1e72017-03-20 01:16:26 -0700154#ifndef arch_setup_new_exec
155static inline void arch_setup_new_exec(void) { }
156#endif
157
Roland McGrath4e4c22c2008-04-30 00:53:06 -0700158#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159
160#endif /* _LINUX_THREAD_INFO_H */