]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - include/linux/thread_info.h
UBUNTU: Ubuntu-4.13.0-45.50
[mirror_ubuntu-artful-kernel.git] / include / linux / thread_info.h
CommitLineData
1da177e4
LT
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
ce6bd420 10#include <linux/types.h>
edd63a27 11#include <linux/bug.h>
53d74d05 12#include <linux/restart_block.h>
a332d86d 13
c65eacbe 14#ifdef CONFIG_THREAD_INFO_IN_TASK
dc3d2a67
MR
15/*
16 * For CONFIG_THREAD_INFO_IN_TASK kernels we need <asm/current.h> for the
17 * definition of current, but for !CONFIG_THREAD_INFO_IN_TASK kernels,
18 * including <asm/current.h> can cause a circular dependency on some platforms.
19 */
20#include <asm/current.h>
c65eacbe
AL
21#define current_thread_info() ((struct thread_info *)current)
22#endif
23
1da177e4 24#include <linux/bitops.h>
96dc4f9f
S
25
26/*
27 * For per-arch arch_within_stack_frames() implementations, defined in
28 * asm/thread_info.h.
29 */
30enum {
31 BAD_STACK = -1,
32 NOT_STACK = 0,
33 GOOD_FRAME,
34 GOOD_STACK,
35};
36
1da177e4
LT
37#include <asm/thread_info.h>
38
39#ifdef __KERNEL__
40
21724920
MR
41#ifndef THREAD_ALIGN
42#define THREAD_ALIGN THREAD_SIZE
43#endif
44
2889f608 45#ifdef CONFIG_DEBUG_STACK_USAGE
5d097056
VD
46# define THREADINFO_GFP (GFP_KERNEL_ACCOUNT | __GFP_NOTRACK | \
47 __GFP_ZERO)
2889f608 48#else
5d097056 49# define THREADINFO_GFP (GFP_KERNEL_ACCOUNT | __GFP_NOTRACK)
2889f608
TG
50#endif
51
1da177e4
LT
52/*
53 * flag set/clear/test wrappers
54 * - pass TIF_xxxx constants to these functions
55 */
56
1da177e4
LT
57static inline void set_ti_thread_flag(struct thread_info *ti, int flag)
58{
5548fecd 59 set_bit(flag, (unsigned long *)&ti->flags);
1da177e4
LT
60}
61
62static inline void clear_ti_thread_flag(struct thread_info *ti, int flag)
63{
5548fecd 64 clear_bit(flag, (unsigned long *)&ti->flags);
1da177e4
LT
65}
66
67static inline int test_and_set_ti_thread_flag(struct thread_info *ti, int flag)
68{
5548fecd 69 return test_and_set_bit(flag, (unsigned long *)&ti->flags);
1da177e4
LT
70}
71
72static inline int test_and_clear_ti_thread_flag(struct thread_info *ti, int flag)
73{
5548fecd 74 return test_and_clear_bit(flag, (unsigned long *)&ti->flags);
1da177e4
LT
75}
76
77static inline int test_ti_thread_flag(struct thread_info *ti, int flag)
78{
5548fecd 79 return test_bit(flag, (unsigned long *)&ti->flags);
1da177e4
LT
80}
81
3b66a1ed
RZ
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)
92
ea811747
PZ
93#define tif_need_resched() test_thread_flag(TIF_NEED_RESCHED)
94
0f60a8ef
KC
95#ifndef CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES
96static 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
f5509cc1
KC
104#ifdef CONFIG_HARDENED_USERCOPY
105extern void __check_object_size(const void *ptr, unsigned long n,
106 bool to_user);
107
a85d6b82
KC
108static __always_inline void check_object_size(const void *ptr, unsigned long n,
109 bool to_user)
f5509cc1 110{
81409e9e
KC
111 if (!__builtin_constant_p(n))
112 __check_object_size(ptr, n, to_user);
f5509cc1
KC
113}
114#else
115static inline void check_object_size(const void *ptr, unsigned long n,
116 bool to_user)
117{ }
118#endif /* CONFIG_HARDENED_USERCOPY */
119
b0377fed
AV
120extern void __compiletime_error("copy source size is too small")
121__bad_copy_from(void);
122extern void __compiletime_error("copy destination size is too small")
123__bad_copy_to(void);
124
125static inline void copy_overflow(int size, unsigned long count)
126{
127 WARN(1, "Buffer overflow detected (%d < %lu)!\n", size, count);
128}
129
130static __always_inline bool
131check_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
e9ea1e7f
KH
147#ifndef arch_setup_new_exec
148static inline void arch_setup_new_exec(void) { }
149#endif
150
4e4c22c7 151#endif /* __KERNEL__ */
1da177e4
LT
152
153#endif /* _LINUX_THREAD_INFO_H */