blob: 9c66b1ada9d7d6d3a97882168ba37ca9a0b9aa2f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _LINUX__INIT_TASK_H
2#define _LINUX__INIT_TASK_H
3
Dipankar Sarmaab2af1f2005-09-09 13:04:13 -07004#include <linux/rcupdate.h>
Ingo Molnarde30a2b2006-07-03 00:24:42 -07005#include <linux/irqflags.h>
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -07006#include <linux/utsname.h>
Ingo Molnarfbb9ce952006-07-03 00:24:50 -07007#include <linux/lockdep.h>
Steven Rostedt5ac9f622009-03-25 20:55:00 -04008#include <linux/ftrace.h>
Kirill Korotaev73ea4132006-10-02 02:18:20 -07009#include <linux/ipc.h>
Cedric Le Goater9a575a92006-12-08 02:37:59 -080010#include <linux/pid_namespace.h>
Cedric Le Goateracce2922007-07-15 23:40:59 -070011#include <linux/user_namespace.h>
Andrew G. Morgan3898b1b2008-04-28 02:13:40 -070012#include <linux/securebits.h>
Eric W. Biederman772698f2007-09-12 11:55:17 +020013#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014
Dario Faggioli806c09a2010-11-30 19:51:33 +010015#ifdef CONFIG_SMP
16# define INIT_PUSHABLE_TASKS(tsk) \
17 .pushable_tasks = PLIST_NODE_INIT(tsk.pushable_tasks, MAX_PRIO),
18#else
19# define INIT_PUSHABLE_TASKS(tsk)
20#endif
21
Al Virof52111b2008-05-08 18:19:16 -040022extern struct files_struct init_files;
Al Viro18d8fda2008-12-26 00:35:37 -050023extern struct fs_struct init_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
Ben Blum4714d1d2011-05-26 16:25:18 -070025#ifdef CONFIG_CGROUPS
Tejun Heo257058a2011-12-12 18:12:21 -080026#define INIT_GROUP_RWSEM(sig) \
27 .group_rwsem = __RWSEM_INITIALIZER(sig.group_rwsem),
Ben Blum4714d1d2011-05-26 16:25:18 -070028#else
Tejun Heo257058a2011-12-12 18:12:21 -080029#define INIT_GROUP_RWSEM(sig)
Ben Blum4714d1d2011-05-26 16:25:18 -070030#endif
31
Cedric Le Goater1ec320a2006-12-08 02:37:55 -080032#define INIT_SIGNALS(sig) { \
Oleg Nesterovb3ac0222010-05-26 14:43:24 -070033 .nr_threads = 1, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070034 .wait_chldexit = __WAIT_QUEUE_HEAD_INITIALIZER(sig.wait_chldexit),\
Cedric Le Goater1ec320a2006-12-08 02:37:55 -080035 .shared_pending = { \
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 .list = LIST_HEAD_INIT(sig.shared_pending.list), \
Cedric Le Goater1ec320a2006-12-08 02:37:55 -080037 .signal = {{0}}}, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 .posix_timers = LIST_HEAD_INIT(sig.posix_timers), \
39 .cpu_timers = INIT_CPU_TIMERS(sig.cpu_timers), \
40 .rlim = INIT_RLIMITS, \
Peter Zijlstra4cd4c1b2009-02-05 12:24:16 +010041 .cputimer = { \
42 .cputime = INIT_CPUTIME, \
43 .running = 0, \
Thomas Gleixneree30a7b2009-07-25 18:56:56 +020044 .lock = __RAW_SPIN_LOCK_UNLOCKED(sig.cputimer.lock), \
Peter Zijlstra4cd4c1b2009-02-05 12:24:16 +010045 }, \
KOSAKI Motohiro9b1bf122010-10-27 15:34:08 -070046 .cred_guard_mutex = \
47 __MUTEX_INITIALIZER(sig.cred_guard_mutex), \
Tejun Heo257058a2011-12-12 18:12:21 -080048 INIT_GROUP_RWSEM(sig) \
Linus Torvalds1da177e2005-04-16 15:20:36 -070049}
50
Serge E. Hallynab516012006-10-02 02:18:06 -070051extern struct nsproxy init_nsproxy;
Serge E. Hallynab516012006-10-02 02:18:06 -070052
Linus Torvalds1da177e2005-04-16 15:20:36 -070053#define INIT_SIGHAND(sighand) { \
54 .count = ATOMIC_INIT(1), \
Oleg Nesterov0a14a132010-05-26 14:44:12 -070055 .action = { { { .sa_handler = SIG_DFL, } }, }, \
Ingo Molnare4d91912006-07-03 00:24:34 -070056 .siglock = __SPIN_LOCK_UNLOCKED(sighand.siglock), \
Davide Libenzib8fceee2007-09-20 12:40:16 -070057 .signalfd_wqh = __WAIT_QUEUE_HEAD_INITIALIZER(sighand.signalfd_wqh), \
Linus Torvalds1da177e2005-04-16 15:20:36 -070058}
59
60extern struct group_info init_groups;
61
Sukadev Bhattiprolu820e45d2007-05-10 22:23:00 -070062#define INIT_STRUCT_PID { \
63 .count = ATOMIC_INIT(1), \
Sukadev Bhattiprolu820e45d2007-05-10 22:23:00 -070064 .tasks = { \
Oleg Nesterovf2001142010-05-26 14:44:10 -070065 { .first = NULL }, \
66 { .first = NULL }, \
67 { .first = NULL }, \
Sukadev Bhattiprolu820e45d2007-05-10 22:23:00 -070068 }, \
Sukadev Bhattiprolu4c3f2ea2007-10-18 23:40:03 -070069 .level = 0, \
70 .numbers = { { \
71 .nr = 0, \
72 .ns = &init_pid_ns, \
73 .pid_chain = { .next = NULL, .pprev = NULL }, \
74 }, } \
Sukadev Bhattiprolu820e45d2007-05-10 22:23:00 -070075}
76
77#define INIT_PID_LINK(type) \
78{ \
79 .node = { \
80 .next = NULL, \
Oleg Nesterovf2001142010-05-26 14:44:10 -070081 .pprev = NULL, \
Sukadev Bhattiprolu820e45d2007-05-10 22:23:00 -070082 }, \
83 .pid = &init_struct_pid, \
84}
85
Al Virobfef93a2008-01-10 04:53:18 -050086#ifdef CONFIG_AUDITSYSCALL
87#define INIT_IDS \
Eric Paris4746ec52008-01-08 10:06:53 -050088 .loginuid = -1, \
89 .sessionid = -1,
Al Virobfef93a2008-01-10 04:53:18 -050090#else
91#define INIT_IDS
92#endif
Serge E. Hallyn3b7391d2008-02-04 22:29:45 -080093
Paul E. McKenney24278d12010-09-27 17:25:23 -070094#ifdef CONFIG_RCU_BOOST
95#define INIT_TASK_RCU_BOOST() \
96 .rcu_boost_mutex = NULL,
97#else
98#define INIT_TASK_RCU_BOOST()
99#endif
Paul E. McKenney6b3ef482009-08-22 13:56:53 -0700100#ifdef CONFIG_TREE_PREEMPT_RCU
Paul E. McKenneya57eb942010-06-29 16:49:16 -0700101#define INIT_TASK_RCU_TREE_PREEMPT() \
102 .rcu_blocked_node = NULL,
103#else
104#define INIT_TASK_RCU_TREE_PREEMPT(tsk)
105#endif
106#ifdef CONFIG_PREEMPT_RCU
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700107#define INIT_TASK_RCU_PREEMPT(tsk) \
108 .rcu_read_lock_nesting = 0, \
109 .rcu_read_unlock_special = 0, \
Paul E. McKenneya57eb942010-06-29 16:49:16 -0700110 .rcu_node_entry = LIST_HEAD_INIT(tsk.rcu_node_entry), \
Paul E. McKenney24278d12010-09-27 17:25:23 -0700111 INIT_TASK_RCU_TREE_PREEMPT() \
112 INIT_TASK_RCU_BOOST()
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700113#else
114#define INIT_TASK_RCU_PREEMPT(tsk)
115#endif
116
David Howellsb6dff3e2008-11-14 10:39:16 +1100117extern struct cred init_cred;
118
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200119#ifdef CONFIG_PERF_EVENTS
120# define INIT_PERF_EVENTS(tsk) \
121 .perf_event_mutex = \
122 __MUTEX_INITIALIZER(tsk.perf_event_mutex), \
123 .perf_event_list = LIST_HEAD_INIT(tsk.perf_event_list),
Peter Zijlstra082ff5a2009-05-23 18:29:00 +0200124#else
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200125# define INIT_PERF_EVENTS(tsk)
Peter Zijlstra082ff5a2009-05-23 18:29:00 +0200126#endif
127
Carsten Emdef1c6f1a2011-10-26 23:14:16 +0200128#define INIT_TASK_COMM "swapper"
129
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130/*
131 * INIT_TASK is used to set up the first task table, touch at
132 * your own risk!. Base=0, limit=0x1fffff (=2MB)
133 */
134#define INIT_TASK(tsk) \
135{ \
136 .state = 0, \
Roman Zippelf7e42172007-05-09 02:35:17 -0700137 .stack = &init_thread_info, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 .usage = ATOMIC_INIT(2), \
Oleg Nesterov7b34e422008-07-25 01:47:37 -0700139 .flags = PF_KTHREAD, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 .prio = MAX_PRIO-20, \
141 .static_prio = MAX_PRIO-20, \
Ingo Molnarb29739f2006-06-27 02:54:51 -0700142 .normal_prio = MAX_PRIO-20, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143 .policy = SCHED_NORMAL, \
144 .cpus_allowed = CPU_MASK_ALL, \
145 .mm = NULL, \
146 .active_mm = &init_mm, \
Peter Zijlstra4a55bd52008-04-19 19:45:00 +0200147 .se = { \
148 .group_node = LIST_HEAD_INIT(tsk.se.group_node), \
149 }, \
Peter Zijlstrafa717062008-01-25 21:08:27 +0100150 .rt = { \
151 .run_list = LIST_HEAD_INIT(tsk.rt.run_list), \
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100152 .time_slice = HZ, \
153 .nr_cpus_allowed = NR_CPUS, \
154 }, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 .tasks = LIST_HEAD_INIT(tsk.tasks), \
Dario Faggioli806c09a2010-11-30 19:51:33 +0100156 INIT_PUSHABLE_TASKS(tsk) \
Roland McGrathf4700212008-03-24 18:36:23 -0700157 .ptraced = LIST_HEAD_INIT(tsk.ptraced), \
158 .ptrace_entry = LIST_HEAD_INIT(tsk.ptrace_entry), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 .real_parent = &tsk, \
160 .parent = &tsk, \
161 .children = LIST_HEAD_INIT(tsk.children), \
162 .sibling = LIST_HEAD_INIT(tsk.sibling), \
163 .group_leader = &tsk, \
Arnd Bergmann4d2deb42010-02-24 20:01:56 +0100164 RCU_INIT_POINTER(.real_cred, &init_cred), \
165 RCU_INIT_POINTER(.cred, &init_cred), \
Carsten Emdef1c6f1a2011-10-26 23:14:16 +0200166 .comm = INIT_TASK_COMM, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 .thread = INIT_THREAD, \
168 .fs = &init_fs, \
169 .files = &init_files, \
170 .signal = &init_signals, \
171 .sighand = &init_sighand, \
Serge E. Hallynab516012006-10-02 02:18:06 -0700172 .nsproxy = &init_nsproxy, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 .pending = { \
174 .list = LIST_HEAD_INIT(tsk.pending.list), \
175 .signal = {{0}}}, \
176 .blocked = {{0}}, \
Ingo Molnare4d91912006-07-03 00:24:34 -0700177 .alloc_lock = __SPIN_LOCK_UNLOCKED(tsk.alloc_lock), \
Linus Torvaldsb6e32242009-12-17 13:23:24 -0800178 .journal_info = NULL, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 .cpu_timers = INIT_CPU_TIMERS(tsk.cpu_timers), \
Thomas Gleixner1d615482009-11-17 14:54:03 +0100180 .pi_lock = __RAW_SPIN_LOCK_UNLOCKED(tsk.pi_lock), \
Arjan van de Ven69766752008-09-01 15:52:40 -0700181 .timer_slack_ns = 50000, /* 50 usec default slack */ \
Sukadev Bhattiprolu820e45d2007-05-10 22:23:00 -0700182 .pids = { \
183 [PIDTYPE_PID] = INIT_PID_LINK(PIDTYPE_PID), \
184 [PIDTYPE_PGID] = INIT_PID_LINK(PIDTYPE_PGID), \
185 [PIDTYPE_SID] = INIT_PID_LINK(PIDTYPE_SID), \
186 }, \
Oleg Nesterovfa2755e2010-05-26 14:44:08 -0700187 .thread_group = LIST_HEAD_INIT(tsk.thread_group), \
Al Virobfef93a2008-01-10 04:53:18 -0500188 INIT_IDS \
Ingo Molnarcdd6c482009-09-21 12:02:48 +0200189 INIT_PERF_EVENTS(tsk) \
Ingo Molnarde30a2b2006-07-03 00:24:42 -0700190 INIT_TRACE_IRQFLAGS \
Ingo Molnarfbb9ce952006-07-03 00:24:50 -0700191 INIT_LOCKDEP \
Steven Rostedt5ac9f622009-03-25 20:55:00 -0400192 INIT_FTRACE_GRAPH \
Steven Rostedt261842b2009-04-16 21:41:52 -0400193 INIT_TRACE_RECURSION \
Paul E. McKenneyf41d9112009-08-22 13:56:52 -0700194 INIT_TASK_RCU_PREEMPT(tsk) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195}
196
197
198#define INIT_CPU_TIMERS(cpu_timers) \
199{ \
200 LIST_HEAD_INIT(cpu_timers[0]), \
201 LIST_HEAD_INIT(cpu_timers[1]), \
202 LIST_HEAD_INIT(cpu_timers[2]), \
203}
204
Tim Abbott857ecee2009-06-23 19:59:36 -0400205/* Attach to the init_task data structure for proper alignment */
Tim Abbott2af76872010-02-20 01:03:35 +0100206#define __init_task_data __attribute__((__section__(".data..init_task")))
Tim Abbott857ecee2009-06-23 19:59:36 -0400207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
209#endif