blob: ce98a8e7ef78f67c8ffc03d4e303fbb0867e70a0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* 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 Rostedtce6bd422007-12-05 15:46:09 +010010#include <linux/types.h>
Al Viroedd63a22012-04-27 13:42:45 -040011#include <linux/bug.h>
Mark Rutland7d1ab812016-10-19 19:28:12 +010012#include <linux/restart_block.h>
Thomas Gleixnera332d862008-02-10 09:04:12 +010013
Andy Lutomirskic65eacb2016-09-13 14:29:24 -070014#ifdef CONFIG_THREAD_INFO_IN_TASK
Mark Rutlandbe8c7b62016-10-19 19:28:13 +010015/*
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>
Andy Lutomirskic65eacb2016-09-13 14:29:24 -070021#define current_thread_info() ((struct thread_info *)current)
22#endif
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/bitops.h>
25#include <asm/thread_info.h>
26
27#ifdef __KERNEL__
28
Kees Cook6a19e262018-04-20 14:55:31 -070029#define THREADINFO_GFP (GFP_KERNEL_ACCOUNT | __GFP_NOTRACK | __GFP_ZERO)
Thomas Gleixner2889f602012-05-05 15:05:41 +000030
Linus Torvalds1da177e2005-04-16 15:20:36 -070031/*
32 * flag set/clear/test wrappers
33 * - pass TIF_xxxx constants to these functions
34 */
35
Linus Torvalds1da177e2005-04-16 15:20:36 -070036static inline void set_ti_thread_flag(struct thread_info *ti, int flag)
37{
Jeremy Fitzhardinge5548fec2008-01-30 13:30:55 +010038 set_bit(flag, (unsigned long *)&ti->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070039}
40
41static inline void clear_ti_thread_flag(struct thread_info *ti, int flag)
42{
Jeremy Fitzhardinge5548fec2008-01-30 13:30:55 +010043 clear_bit(flag, (unsigned long *)&ti->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044}
45
46static inline int test_and_set_ti_thread_flag(struct thread_info *ti, int flag)
47{
Jeremy Fitzhardinge5548fec2008-01-30 13:30:55 +010048 return test_and_set_bit(flag, (unsigned long *)&ti->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070049}
50
51static inline int test_and_clear_ti_thread_flag(struct thread_info *ti, int flag)
52{
Jeremy Fitzhardinge5548fec2008-01-30 13:30:55 +010053 return test_and_clear_bit(flag, (unsigned long *)&ti->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070054}
55
56static inline int test_ti_thread_flag(struct thread_info *ti, int flag)
57{
Jeremy Fitzhardinge5548fec2008-01-30 13:30:55 +010058 return test_bit(flag, (unsigned long *)&ti->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070059}
60
Roman Zippel3b66a1e2005-11-13 16:06:59 -080061#define set_thread_flag(flag) \
62 set_ti_thread_flag(current_thread_info(), flag)
63#define clear_thread_flag(flag) \
64 clear_ti_thread_flag(current_thread_info(), flag)
65#define test_and_set_thread_flag(flag) \
66 test_and_set_ti_thread_flag(current_thread_info(), flag)
67#define test_and_clear_thread_flag(flag) \
68 test_and_clear_ti_thread_flag(current_thread_info(), flag)
69#define test_thread_flag(flag) \
70 test_ti_thread_flag(current_thread_info(), flag)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071
Peter Zijlstraea811742013-09-11 12:43:13 +020072#define tif_need_resched() test_thread_flag(TIF_NEED_RESCHED)
73
Kees Cook0f60a8e2016-07-12 16:19:48 -070074#ifndef CONFIG_HAVE_ARCH_WITHIN_STACK_FRAMES
75static inline int arch_within_stack_frames(const void * const stack,
76 const void * const stackend,
77 const void *obj, unsigned long len)
78{
79 return 0;
80}
81#endif
82
Kees Cookf5509cc2016-06-07 11:05:33 -070083#ifdef CONFIG_HARDENED_USERCOPY
84extern void __check_object_size(const void *ptr, unsigned long n,
85 bool to_user);
86
Kees Cooka85d6b82016-09-07 09:39:32 -070087static __always_inline void check_object_size(const void *ptr, unsigned long n,
88 bool to_user)
Kees Cookf5509cc2016-06-07 11:05:33 -070089{
Kees Cook81409e92016-08-31 16:04:21 -070090 if (!__builtin_constant_p(n))
91 __check_object_size(ptr, n, to_user);
Kees Cookf5509cc2016-06-07 11:05:33 -070092}
93#else
94static inline void check_object_size(const void *ptr, unsigned long n,
95 bool to_user)
96{ }
97#endif /* CONFIG_HARDENED_USERCOPY */
98
Roland McGrath4e4c22c2008-04-30 00:53:06 -070099#endif /* __KERNEL__ */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100
101#endif /* _LINUX_THREAD_INFO_H */