blob: dc4ef0023d88d5b6b26b65b6e19a5db643a52edb [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 Molnarfbb9ce92006-07-03 00:24:50 -07007#include <linux/lockdep.h>
Kirill Korotaev73ea4132006-10-02 02:18:20 -07008#include <linux/ipc.h>
Cedric Le Goater9a575a92006-12-08 02:37:59 -08009#include <linux/pid_namespace.h>
Cedric Le Goateracce2922007-07-15 23:40:59 -070010#include <linux/user_namespace.h>
Andrew G. Morgan3898b1b2008-04-28 02:13:40 -070011#include <linux/securebits.h>
Eric W. Biederman772698f2007-09-12 11:55:17 +020012#include <net/net_namespace.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070013
Al Virof52111b2008-05-08 18:19:16 -040014extern struct files_struct init_files;
Al Viro18d8fda2008-12-26 00:35:37 -050015extern struct fs_struct init_fs;
Linus Torvalds1da177e2005-04-16 15:20:36 -070016
17#define INIT_KIOCTX(name, which_mm) \
18{ \
19 .users = ATOMIC_INIT(1), \
20 .dead = 0, \
21 .mm = &which_mm, \
22 .user_id = 0, \
23 .next = NULL, \
24 .wait = __WAIT_QUEUE_HEAD_INITIALIZER(name.wait), \
Ingo Molnare4d91912006-07-03 00:24:34 -070025 .ctx_lock = __SPIN_LOCK_UNLOCKED(name.ctx_lock), \
Linus Torvalds1da177e2005-04-16 15:20:36 -070026 .reqs_active = 0U, \
27 .max_reqs = ~0U, \
28}
29
30#define INIT_MM(name) \
31{ \
32 .mm_rb = RB_ROOT, \
33 .pgd = swapper_pg_dir, \
34 .mm_users = ATOMIC_INIT(2), \
35 .mm_count = ATOMIC_INIT(1), \
36 .mmap_sem = __RWSEM_INITIALIZER(name.mmap_sem), \
Ingo Molnare4d91912006-07-03 00:24:34 -070037 .page_table_lock = __SPIN_LOCK_UNLOCKED(name.page_table_lock), \
Linus Torvalds1da177e2005-04-16 15:20:36 -070038 .mmlist = LIST_HEAD_INIT(name.mmlist), \
39 .cpu_vm_mask = CPU_MASK_ALL, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070040}
41
Cedric Le Goater1ec320a2006-12-08 02:37:55 -080042#define INIT_SIGNALS(sig) { \
43 .count = ATOMIC_INIT(1), \
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 .wait_chldexit = __WAIT_QUEUE_HEAD_INITIALIZER(sig.wait_chldexit),\
Cedric Le Goater1ec320a2006-12-08 02:37:55 -080045 .shared_pending = { \
Linus Torvalds1da177e2005-04-16 15:20:36 -070046 .list = LIST_HEAD_INIT(sig.shared_pending.list), \
Cedric Le Goater1ec320a2006-12-08 02:37:55 -080047 .signal = {{0}}}, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070048 .posix_timers = LIST_HEAD_INIT(sig.posix_timers), \
49 .cpu_timers = INIT_CPU_TIMERS(sig.cpu_timers), \
50 .rlim = INIT_RLIMITS, \
Peter Zijlstra490dea42008-11-24 17:06:57 +010051 .cputime = { .totals = { \
52 .utime = cputime_zero, \
53 .stime = cputime_zero, \
54 .sum_exec_runtime = 0, \
55 .lock = __SPIN_LOCK_UNLOCKED(sig.cputime.totals.lock), \
56 }, }, \
Linus Torvalds1da177e2005-04-16 15:20:36 -070057}
58
Serge E. Hallynab516012006-10-02 02:18:06 -070059extern struct nsproxy init_nsproxy;
60#define INIT_NSPROXY(nsproxy) { \
Cedric Le Goater9a575a92006-12-08 02:37:59 -080061 .pid_ns = &init_pid_ns, \
Serge E. Hallynab516012006-10-02 02:18:06 -070062 .count = ATOMIC_INIT(1), \
Serge E. Hallyn4865ecf2006-10-02 02:18:14 -070063 .uts_ns = &init_uts_ns, \
Kirill Korotaev6b3286e2006-12-08 02:37:56 -080064 .mnt_ns = NULL, \
Daniel Lezcano4fabcd72007-09-13 09:16:29 +020065 INIT_NET_NS(net_ns) \
Kirill Korotaev73ea4132006-10-02 02:18:20 -070066 INIT_IPC_NS(ipc_ns) \
Serge E. Hallynab516012006-10-02 02:18:06 -070067}
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069#define INIT_SIGHAND(sighand) { \
70 .count = ATOMIC_INIT(1), \
71 .action = { { { .sa_handler = NULL, } }, }, \
Ingo Molnare4d91912006-07-03 00:24:34 -070072 .siglock = __SPIN_LOCK_UNLOCKED(sighand.siglock), \
Davide Libenzib8fceee2007-09-20 12:40:16 -070073 .signalfd_wqh = __WAIT_QUEUE_HEAD_INITIALIZER(sighand.signalfd_wqh), \
Linus Torvalds1da177e2005-04-16 15:20:36 -070074}
75
76extern struct group_info init_groups;
77
Sukadev Bhattiprolu820e45d2007-05-10 22:23:00 -070078#define INIT_STRUCT_PID { \
79 .count = ATOMIC_INIT(1), \
Sukadev Bhattiprolu820e45d2007-05-10 22:23:00 -070080 .tasks = { \
81 { .first = &init_task.pids[PIDTYPE_PID].node }, \
82 { .first = &init_task.pids[PIDTYPE_PGID].node }, \
83 { .first = &init_task.pids[PIDTYPE_SID].node }, \
84 }, \
85 .rcu = RCU_HEAD_INIT, \
Sukadev Bhattiprolu4c3f2ea2007-10-18 23:40:03 -070086 .level = 0, \
87 .numbers = { { \
88 .nr = 0, \
89 .ns = &init_pid_ns, \
90 .pid_chain = { .next = NULL, .pprev = NULL }, \
91 }, } \
Sukadev Bhattiprolu820e45d2007-05-10 22:23:00 -070092}
93
94#define INIT_PID_LINK(type) \
95{ \
96 .node = { \
97 .next = NULL, \
98 .pprev = &init_struct_pid.tasks[type].first, \
99 }, \
100 .pid = &init_struct_pid, \
101}
102
Al Virobfef93a2008-01-10 04:53:18 -0500103#ifdef CONFIG_AUDITSYSCALL
104#define INIT_IDS \
Eric Paris4746ec52008-01-08 10:06:53 -0500105 .loginuid = -1, \
106 .sessionid = -1,
Al Virobfef93a2008-01-10 04:53:18 -0500107#else
108#define INIT_IDS
109#endif
Serge E. Hallyn3b7391d2008-02-04 22:29:45 -0800110
111#ifdef CONFIG_SECURITY_FILE_CAPABILITIES
112/*
113 * Because of the reduced scope of CAP_SETPCAP when filesystem
114 * capabilities are in effect, it is safe to allow CAP_SETPCAP to
115 * be available in the default configuration.
116 */
117# define CAP_INIT_BSET CAP_FULL_SET
118#else
119# define CAP_INIT_BSET CAP_INIT_EFF_SET
120#endif
121
David Howellsb6dff3e2008-11-14 10:39:16 +1100122extern struct cred init_cred;
123
Ingo Molnareef6cbf2008-12-19 10:20:42 +0100124#ifdef CONFIG_PERF_COUNTERS
125# define INIT_PERF_COUNTERS(tsk) \
126 .perf_counter_ctx.counter_list = \
Ingo Molnar78b60842008-12-21 15:07:49 +0100127 LIST_HEAD_INIT(tsk.perf_counter_ctx.counter_list), \
128 .perf_counter_ctx.lock = \
129 __SPIN_LOCK_UNLOCKED(tsk.perf_counter_ctx.lock),
Ingo Molnareef6cbf2008-12-19 10:20:42 +0100130#else
131# define INIT_PERF_COUNTERS(tsk)
132#endif
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134/*
135 * INIT_TASK is used to set up the first task table, touch at
136 * your own risk!. Base=0, limit=0x1fffff (=2MB)
137 */
138#define INIT_TASK(tsk) \
139{ \
140 .state = 0, \
Roman Zippelf7e42172007-05-09 02:35:17 -0700141 .stack = &init_thread_info, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142 .usage = ATOMIC_INIT(2), \
Oleg Nesterov7b34e422008-07-25 01:47:37 -0700143 .flags = PF_KTHREAD, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 .lock_depth = -1, \
145 .prio = MAX_PRIO-20, \
146 .static_prio = MAX_PRIO-20, \
Ingo Molnarb29739f2006-06-27 02:54:51 -0700147 .normal_prio = MAX_PRIO-20, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148 .policy = SCHED_NORMAL, \
149 .cpus_allowed = CPU_MASK_ALL, \
150 .mm = NULL, \
151 .active_mm = &init_mm, \
Peter Zijlstra4a55bd52008-04-19 19:45:00 +0200152 .se = { \
153 .group_node = LIST_HEAD_INIT(tsk.se.group_node), \
154 }, \
Peter Zijlstrafa717062008-01-25 21:08:27 +0100155 .rt = { \
156 .run_list = LIST_HEAD_INIT(tsk.rt.run_list), \
Peter Zijlstra6f505b12008-01-25 21:08:30 +0100157 .time_slice = HZ, \
158 .nr_cpus_allowed = NR_CPUS, \
159 }, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160 .tasks = LIST_HEAD_INIT(tsk.tasks), \
Roland McGrathf4700212008-03-24 18:36:23 -0700161 .ptraced = LIST_HEAD_INIT(tsk.ptraced), \
162 .ptrace_entry = LIST_HEAD_INIT(tsk.ptrace_entry), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 .real_parent = &tsk, \
164 .parent = &tsk, \
165 .children = LIST_HEAD_INIT(tsk.children), \
166 .sibling = LIST_HEAD_INIT(tsk.sibling), \
167 .group_leader = &tsk, \
David Howells3b11a1d2008-11-14 10:39:26 +1100168 .real_cred = &init_cred, \
David Howellsf1752ee2008-11-14 10:39:17 +1100169 .cred = &init_cred, \
David Howellsd84f4f92008-11-14 10:39:23 +1100170 .cred_exec_mutex = \
171 __MUTEX_INITIALIZER(tsk.cred_exec_mutex), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 .comm = "swapper", \
173 .thread = INIT_THREAD, \
174 .fs = &init_fs, \
175 .files = &init_files, \
176 .signal = &init_signals, \
177 .sighand = &init_sighand, \
Serge E. Hallynab516012006-10-02 02:18:06 -0700178 .nsproxy = &init_nsproxy, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179 .pending = { \
180 .list = LIST_HEAD_INIT(tsk.pending.list), \
181 .signal = {{0}}}, \
182 .blocked = {{0}}, \
Ingo Molnare4d91912006-07-03 00:24:34 -0700183 .alloc_lock = __SPIN_LOCK_UNLOCKED(tsk.alloc_lock), \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184 .journal_info = NULL, \
185 .cpu_timers = INIT_CPU_TIMERS(tsk.cpu_timers), \
Jens Axboe22e2c502005-06-27 10:55:12 +0200186 .fs_excl = ATOMIC_INIT(0), \
Milind Arun Choudharyb32e41b2007-05-08 00:30:08 -0700187 .pi_lock = __SPIN_LOCK_UNLOCKED(tsk.pi_lock), \
Arjan van de Ven69766752008-09-01 15:52:40 -0700188 .timer_slack_ns = 50000, /* 50 usec default slack */ \
Sukadev Bhattiprolu820e45d2007-05-10 22:23:00 -0700189 .pids = { \
190 [PIDTYPE_PID] = INIT_PID_LINK(PIDTYPE_PID), \
191 [PIDTYPE_PGID] = INIT_PID_LINK(PIDTYPE_PGID), \
192 [PIDTYPE_SID] = INIT_PID_LINK(PIDTYPE_SID), \
193 }, \
Peter Zijlstra3e26c142007-10-16 23:25:50 -0700194 .dirties = INIT_PROP_LOCAL_SINGLE(dirties), \
Al Virobfef93a2008-01-10 04:53:18 -0500195 INIT_IDS \
Ingo Molnarde30a2b2006-07-03 00:24:42 -0700196 INIT_TRACE_IRQFLAGS \
Ingo Molnarfbb9ce92006-07-03 00:24:50 -0700197 INIT_LOCKDEP \
Ingo Molnareef6cbf2008-12-19 10:20:42 +0100198 INIT_PERF_COUNTERS(tsk) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199}
200
201
202#define INIT_CPU_TIMERS(cpu_timers) \
203{ \
204 LIST_HEAD_INIT(cpu_timers[0]), \
205 LIST_HEAD_INIT(cpu_timers[1]), \
206 LIST_HEAD_INIT(cpu_timers[2]), \
207}
208
209
210#endif