]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - include/linux/init_task.h
rcu: Simplify rcu_pending()/rcu_check_callbacks() API
[mirror_ubuntu-bionic-kernel.git] / include / linux / init_task.h
CommitLineData
1da177e4
LT
1#ifndef _LINUX__INIT_TASK_H
2#define _LINUX__INIT_TASK_H
3
ab2af1f5 4#include <linux/rcupdate.h>
de30a2b3 5#include <linux/irqflags.h>
4865ecf1 6#include <linux/utsname.h>
fbb9ce95 7#include <linux/lockdep.h>
5ac9f622 8#include <linux/ftrace.h>
73ea4130 9#include <linux/ipc.h>
9a575a92 10#include <linux/pid_namespace.h>
acce292c 11#include <linux/user_namespace.h>
3898b1b4 12#include <linux/securebits.h>
772698f6 13#include <net/net_namespace.h>
1da177e4 14
f52111b1 15extern struct files_struct init_files;
18d8fda7 16extern struct fs_struct init_fs;
1da177e4 17
1ec320af
CLG
18#define INIT_SIGNALS(sig) { \
19 .count = ATOMIC_INIT(1), \
1da177e4 20 .wait_chldexit = __WAIT_QUEUE_HEAD_INITIALIZER(sig.wait_chldexit),\
1ec320af 21 .shared_pending = { \
1da177e4 22 .list = LIST_HEAD_INIT(sig.shared_pending.list), \
1ec320af 23 .signal = {{0}}}, \
1da177e4
LT
24 .posix_timers = LIST_HEAD_INIT(sig.posix_timers), \
25 .cpu_timers = INIT_CPU_TIMERS(sig.cpu_timers), \
26 .rlim = INIT_RLIMITS, \
4cd4c1b4
PZ
27 .cputimer = { \
28 .cputime = INIT_CPUTIME, \
29 .running = 0, \
30 .lock = __SPIN_LOCK_UNLOCKED(sig.cputimer.lock), \
31 }, \
1da177e4
LT
32}
33
ab516013
SH
34extern struct nsproxy init_nsproxy;
35#define INIT_NSPROXY(nsproxy) { \
9a575a92 36 .pid_ns = &init_pid_ns, \
ab516013 37 .count = ATOMIC_INIT(1), \
4865ecf1 38 .uts_ns = &init_uts_ns, \
6b3286ed 39 .mnt_ns = NULL, \
4fabcd71 40 INIT_NET_NS(net_ns) \
73ea4130 41 INIT_IPC_NS(ipc_ns) \
ab516013
SH
42}
43
1da177e4
LT
44#define INIT_SIGHAND(sighand) { \
45 .count = ATOMIC_INIT(1), \
46 .action = { { { .sa_handler = NULL, } }, }, \
e4d91918 47 .siglock = __SPIN_LOCK_UNLOCKED(sighand.siglock), \
b8fceee1 48 .signalfd_wqh = __WAIT_QUEUE_HEAD_INITIALIZER(sighand.signalfd_wqh), \
1da177e4
LT
49}
50
51extern struct group_info init_groups;
52
820e45db
SB
53#define INIT_STRUCT_PID { \
54 .count = ATOMIC_INIT(1), \
820e45db
SB
55 .tasks = { \
56 { .first = &init_task.pids[PIDTYPE_PID].node }, \
57 { .first = &init_task.pids[PIDTYPE_PGID].node }, \
58 { .first = &init_task.pids[PIDTYPE_SID].node }, \
59 }, \
60 .rcu = RCU_HEAD_INIT, \
4c3f2ead
SB
61 .level = 0, \
62 .numbers = { { \
63 .nr = 0, \
64 .ns = &init_pid_ns, \
65 .pid_chain = { .next = NULL, .pprev = NULL }, \
66 }, } \
820e45db
SB
67}
68
69#define INIT_PID_LINK(type) \
70{ \
71 .node = { \
72 .next = NULL, \
73 .pprev = &init_struct_pid.tasks[type].first, \
74 }, \
75 .pid = &init_struct_pid, \
76}
77
bfef93a5
AV
78#ifdef CONFIG_AUDITSYSCALL
79#define INIT_IDS \
4746ec5b
EP
80 .loginuid = -1, \
81 .sessionid = -1,
bfef93a5
AV
82#else
83#define INIT_IDS
84#endif
3b7391de
SH
85
86#ifdef CONFIG_SECURITY_FILE_CAPABILITIES
87/*
88 * Because of the reduced scope of CAP_SETPCAP when filesystem
89 * capabilities are in effect, it is safe to allow CAP_SETPCAP to
90 * be available in the default configuration.
91 */
92# define CAP_INIT_BSET CAP_FULL_SET
93#else
94# define CAP_INIT_BSET CAP_INIT_EFF_SET
95#endif
96
b6dff3ec
DH
97extern struct cred init_cred;
98
082ff5a2
PZ
99#ifdef CONFIG_PERF_COUNTERS
100# define INIT_PERF_COUNTERS(tsk) \
101 .perf_counter_mutex = \
102 __MUTEX_INITIALIZER(tsk.perf_counter_mutex), \
103 .perf_counter_list = LIST_HEAD_INIT(tsk.perf_counter_list),
104#else
105# define INIT_PERF_COUNTERS(tsk)
106#endif
107
1da177e4
LT
108/*
109 * INIT_TASK is used to set up the first task table, touch at
110 * your own risk!. Base=0, limit=0x1fffff (=2MB)
111 */
112#define INIT_TASK(tsk) \
113{ \
114 .state = 0, \
f7e4217b 115 .stack = &init_thread_info, \
1da177e4 116 .usage = ATOMIC_INIT(2), \
7b34e428 117 .flags = PF_KTHREAD, \
1da177e4
LT
118 .lock_depth = -1, \
119 .prio = MAX_PRIO-20, \
120 .static_prio = MAX_PRIO-20, \
b29739f9 121 .normal_prio = MAX_PRIO-20, \
1da177e4
LT
122 .policy = SCHED_NORMAL, \
123 .cpus_allowed = CPU_MASK_ALL, \
124 .mm = NULL, \
125 .active_mm = &init_mm, \
4a55bd5e
PZ
126 .se = { \
127 .group_node = LIST_HEAD_INIT(tsk.se.group_node), \
128 }, \
fa717060
PZ
129 .rt = { \
130 .run_list = LIST_HEAD_INIT(tsk.rt.run_list), \
6f505b16
PZ
131 .time_slice = HZ, \
132 .nr_cpus_allowed = NR_CPUS, \
133 }, \
1da177e4 134 .tasks = LIST_HEAD_INIT(tsk.tasks), \
917b627d 135 .pushable_tasks = PLIST_NODE_INIT(tsk.pushable_tasks, MAX_PRIO), \
f470021a
RM
136 .ptraced = LIST_HEAD_INIT(tsk.ptraced), \
137 .ptrace_entry = LIST_HEAD_INIT(tsk.ptrace_entry), \
1da177e4
LT
138 .real_parent = &tsk, \
139 .parent = &tsk, \
140 .children = LIST_HEAD_INIT(tsk.children), \
141 .sibling = LIST_HEAD_INIT(tsk.sibling), \
142 .group_leader = &tsk, \
3b11a1de 143 .real_cred = &init_cred, \
f1752eec 144 .cred = &init_cred, \
5e751e99
DH
145 .cred_guard_mutex = \
146 __MUTEX_INITIALIZER(tsk.cred_guard_mutex), \
1da177e4
LT
147 .comm = "swapper", \
148 .thread = INIT_THREAD, \
149 .fs = &init_fs, \
150 .files = &init_files, \
151 .signal = &init_signals, \
152 .sighand = &init_sighand, \
ab516013 153 .nsproxy = &init_nsproxy, \
1da177e4
LT
154 .pending = { \
155 .list = LIST_HEAD_INIT(tsk.pending.list), \
156 .signal = {{0}}}, \
157 .blocked = {{0}}, \
e4d91918 158 .alloc_lock = __SPIN_LOCK_UNLOCKED(tsk.alloc_lock), \
1da177e4
LT
159 .journal_info = NULL, \
160 .cpu_timers = INIT_CPU_TIMERS(tsk.cpu_timers), \
22e2c507 161 .fs_excl = ATOMIC_INIT(0), \
b32e41bb 162 .pi_lock = __SPIN_LOCK_UNLOCKED(tsk.pi_lock), \
6976675d 163 .timer_slack_ns = 50000, /* 50 usec default slack */ \
820e45db
SB
164 .pids = { \
165 [PIDTYPE_PID] = INIT_PID_LINK(PIDTYPE_PID), \
166 [PIDTYPE_PGID] = INIT_PID_LINK(PIDTYPE_PGID), \
167 [PIDTYPE_SID] = INIT_PID_LINK(PIDTYPE_SID), \
168 }, \
3e26c149 169 .dirties = INIT_PROP_LOCAL_SINGLE(dirties), \
bfef93a5 170 INIT_IDS \
082ff5a2 171 INIT_PERF_COUNTERS(tsk) \
de30a2b3 172 INIT_TRACE_IRQFLAGS \
fbb9ce95 173 INIT_LOCKDEP \
5ac9f622 174 INIT_FTRACE_GRAPH \
261842b7 175 INIT_TRACE_RECURSION \
1da177e4
LT
176}
177
178
179#define INIT_CPU_TIMERS(cpu_timers) \
180{ \
181 LIST_HEAD_INIT(cpu_timers[0]), \
182 LIST_HEAD_INIT(cpu_timers[1]), \
183 LIST_HEAD_INIT(cpu_timers[2]), \
184}
185
857eceeb
TA
186/* Attach to the init_task data structure for proper alignment */
187#define __init_task_data __attribute__((__section__(".data.init_task")))
188
1da177e4
LT
189
190#endif