blob: a96bc4bf4f8698d332c9956fccbc0ff42b1b54aa [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * Generic pidhash and scalable, time-bounded PID allocator
4 *
Nadia Yvette Chambers6d49e352012-12-06 10:39:54 +01005 * (C) 2002-2003 Nadia Yvette Chambers, IBM
6 * (C) 2004 Nadia Yvette Chambers, Oracle
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 * (C) 2002-2004 Ingo Molnar, Red Hat
8 *
9 * pid-structures are backing objects for tasks sharing a given ID to chain
10 * against. There is very little to them aside from hashing them and
11 * parking tasks using given ID's on a list.
12 *
13 * The hash is always changed with the tasklist_lock write-acquired,
14 * and the hash is only accessed with the tasklist_lock at least
15 * read-acquired, so there's no additional SMP locking needed here.
16 *
17 * We have a list of bitmap pages, which bitmaps represent the PID space.
18 * Allocating and freeing PIDs is completely lockless. The worst-case
19 * allocation scenario when all but one out of 1 million PIDs possible are
20 * allocated already: the scanning of 32 list entries and at most PAGE_SIZE
21 * bytes. The typical fastpath is a single successful setbit. Freeing is O(1).
Pavel Emelyanov30e49c22007-10-18 23:40:10 -070022 *
23 * Pid namespaces:
24 * (C) 2007 Pavel Emelyanov <xemul@openvz.org>, OpenVZ, SWsoft Inc.
25 * (C) 2007 Sukadev Bhattiprolu <sukadev@us.ibm.com>, IBM
26 * Many thanks to Oleg Nesterov for comments and help
27 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 */
29
30#include <linux/mm.h>
Paul Gortmaker9984de12011-05-23 14:51:41 -040031#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/slab.h>
33#include <linux/init.h>
Franck Bui-Huu82524742008-05-12 21:21:05 +020034#include <linux/rculist.h>
Mike Rapoport57c8a662018-10-30 15:09:49 -070035#include <linux/memblock.h>
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -080036#include <linux/pid_namespace.h>
Sukadev Bhattiprolu820e45d2007-05-10 22:23:00 -070037#include <linux/init_task.h>
Sukadev Bhattiprolu3eb07c82007-10-18 23:40:13 -070038#include <linux/syscalls.h>
David Howells0bb80f22013-04-12 01:50:06 +010039#include <linux/proc_ns.h>
Joel Fernandes (Google)f57e5152019-07-16 16:30:06 -070040#include <linux/refcount.h>
Christian Brauner32fcb422019-05-24 12:43:51 +020041#include <linux/anon_inodes.h>
42#include <linux/sched/signal.h>
Ingo Molnar29930022017-02-08 18:51:36 +010043#include <linux/sched/task.h>
Gargi Sharma95846ec2017-11-17 15:30:30 -080044#include <linux/idr.h>
Kees Cook4969f8a2020-06-09 16:21:38 -070045#include <net/sock.h>
Christian Brauner6da73d12020-09-02 12:21:27 +020046#include <uapi/linux/pidfd.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070047
David Howellse1e871a2018-01-02 15:12:01 +000048struct pid init_struct_pid = {
Joel Fernandes (Google)f57e5152019-07-16 16:30:06 -070049 .count = REFCOUNT_INIT(1),
David Howellse1e871a2018-01-02 15:12:01 +000050 .tasks = {
51 { .first = NULL },
52 { .first = NULL },
53 { .first = NULL },
54 },
55 .level = 0,
56 .numbers = { {
57 .nr = 0,
58 .ns = &init_pid_ns,
59 }, }
60};
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62int pid_max = PID_MAX_DEFAULT;
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64#define RESERVED_PIDS 300
65
66int pid_max_min = RESERVED_PIDS + 1;
67int pid_max_max = PID_MAX_LIMIT;
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/*
70 * PID-map pages start out as NULL, they get allocated upon
71 * first use and are never deallocated. This way a low pid_max
72 * value does not cause lots of bitmaps to be allocated, but
73 * the scheme scales to up to 4 million PIDs, runtime.
74 */
Sukadev Bhattiprolu61a58c62006-12-08 02:37:58 -080075struct pid_namespace init_pid_ns = {
Peter Zijlstra1e24edc2016-11-14 17:12:23 +010076 .kref = KREF_INIT(2),
Matthew Wilcoxf6bb2a22018-04-10 16:36:52 -070077 .idr = IDR_INIT(init_pid_ns.idr),
Gargi Sharmae8cfbc22017-11-17 15:30:34 -080078 .pid_allocated = PIDNS_ADDING,
Pavel Emelyanovfaacbfd2007-10-18 23:40:04 -070079 .level = 0,
80 .child_reaper = &init_task,
Eric W. Biederman49f4d8b2012-08-02 04:25:10 -070081 .user_ns = &init_user_ns,
Al Viro435d5f42014-10-31 22:56:04 -040082 .ns.inum = PROC_PID_INIT_INO,
Al Viro33c42942014-11-01 02:32:53 -040083#ifdef CONFIG_PID_NS
84 .ns.ops = &pidns_operations,
85#endif
Sukadev Bhattiprolu3fbc9642006-10-02 02:17:24 -070086};
Pavel Emelyanov198fe212007-10-18 23:40:06 -070087EXPORT_SYMBOL_GPL(init_pid_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Eric W. Biederman92476d72006-03-31 02:31:42 -080089/*
90 * Note: disable interrupts while the pidmap_lock is held as an
91 * interrupt might come in and do read_lock(&tasklist_lock).
92 *
93 * If we don't disable interrupts there is a nasty deadlock between
94 * detach_pid()->free_pid() and another cpu that does
95 * spin_lock(&pidmap_lock) followed by an interrupt routine that does
96 * read_lock(&tasklist_lock);
97 *
98 * After we clean up the tasklist_lock and know there are no
99 * irq handlers that take it we can leave the interrupts enabled.
100 * For now it is easier to be safe than to prove it can't happen.
101 */
Sukadev Bhattiprolu3fbc9642006-10-02 02:17:24 -0700102
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103static __cacheline_aligned_in_smp DEFINE_SPINLOCK(pidmap_lock);
104
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800105void put_pid(struct pid *pid)
Eric W. Biederman92476d72006-03-31 02:31:42 -0800106{
Pavel Emelianovbaf8f0f2007-10-18 23:39:48 -0700107 struct pid_namespace *ns;
108
Eric W. Biederman92476d72006-03-31 02:31:42 -0800109 if (!pid)
110 return;
Pavel Emelianovbaf8f0f2007-10-18 23:39:48 -0700111
Pavel Emelyanov8ef047a2007-10-18 23:40:05 -0700112 ns = pid->numbers[pid->level].ns;
Joel Fernandes (Google)f57e5152019-07-16 16:30:06 -0700113 if (refcount_dec_and_test(&pid->count)) {
Pavel Emelianovbaf8f0f2007-10-18 23:39:48 -0700114 kmem_cache_free(ns->pid_cachep, pid);
Pavel Emelyanovb461cc02007-10-18 23:40:09 -0700115 put_pid_ns(ns);
Pavel Emelyanov8ef047a2007-10-18 23:40:05 -0700116 }
Eric W. Biederman92476d72006-03-31 02:31:42 -0800117}
Eric W. Biedermanbbf73142006-10-02 02:17:11 -0700118EXPORT_SYMBOL_GPL(put_pid);
Eric W. Biederman92476d72006-03-31 02:31:42 -0800119
120static void delayed_put_pid(struct rcu_head *rhp)
121{
122 struct pid *pid = container_of(rhp, struct pid, rcu);
123 put_pid(pid);
124}
125
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800126void free_pid(struct pid *pid)
Eric W. Biederman92476d72006-03-31 02:31:42 -0800127{
128 /* We can be called with write_lock_irq(&tasklist_lock) held */
Pavel Emelyanov8ef047a2007-10-18 23:40:05 -0700129 int i;
Eric W. Biederman92476d72006-03-31 02:31:42 -0800130 unsigned long flags;
131
132 spin_lock_irqsave(&pidmap_lock, flags);
Eric W. Biederman0a01f2c2012-08-01 10:33:47 -0700133 for (i = 0; i <= pid->level; i++) {
134 struct upid *upid = pid->numbers + i;
Eric W. Biedermanaf4b8a82012-08-01 15:03:42 -0700135 struct pid_namespace *ns = upid->ns;
Gargi Sharmae8cfbc22017-11-17 15:30:34 -0800136 switch (--ns->pid_allocated) {
Eric W. Biedermana6064882013-08-29 13:56:50 -0700137 case 2:
Eric W. Biedermanaf4b8a82012-08-01 15:03:42 -0700138 case 1:
139 /* When all that is left in the pid namespace
140 * is the reaper wake up the reaper. The reaper
141 * may be sleeping in zap_pid_ns_processes().
142 */
143 wake_up_process(ns->child_reaper);
144 break;
Gargi Sharmae8cfbc22017-11-17 15:30:34 -0800145 case PIDNS_ADDING:
Oleg Nesterov314a8ad2013-09-30 13:45:27 -0700146 /* Handle a fork failure of the first process */
147 WARN_ON(ns->child_reaper);
Gargi Sharmae8cfbc22017-11-17 15:30:34 -0800148 ns->pid_allocated = 0;
Eric W. Biedermanaf4b8a82012-08-01 15:03:42 -0700149 break;
Eric W. Biederman5e1182deb2010-07-12 18:50:25 -0700150 }
Gargi Sharma95846ec2017-11-17 15:30:30 -0800151
152 idr_remove(&ns->idr, upid->nr);
Eric W. Biederman0a01f2c2012-08-01 10:33:47 -0700153 }
Eric W. Biederman92476d72006-03-31 02:31:42 -0800154 spin_unlock_irqrestore(&pidmap_lock, flags);
155
Eric W. Biederman92476d72006-03-31 02:31:42 -0800156 call_rcu(&pid->rcu, delayed_put_pid);
157}
158
Adrian Reber49cb2fc2019-11-15 13:36:20 +0100159struct pid *alloc_pid(struct pid_namespace *ns, pid_t *set_tid,
160 size_t set_tid_size)
Eric W. Biederman92476d72006-03-31 02:31:42 -0800161{
162 struct pid *pid;
163 enum pid_type type;
Pavel Emelyanov8ef047a2007-10-18 23:40:05 -0700164 int i, nr;
165 struct pid_namespace *tmp;
Pavel Emelyanov198fe212007-10-18 23:40:06 -0700166 struct upid *upid;
Michal Hocko35f71bc2015-04-16 12:47:38 -0700167 int retval = -ENOMEM;
Eric W. Biederman92476d72006-03-31 02:31:42 -0800168
Adrian Reber49cb2fc2019-11-15 13:36:20 +0100169 /*
170 * set_tid_size contains the size of the set_tid array. Starting at
171 * the most nested currently active PID namespace it tells alloc_pid()
172 * which PID to set for a process in that most nested PID namespace
173 * up to set_tid_size PID namespaces. It does not have to set the PID
174 * for a process in all nested PID namespaces but set_tid_size must
175 * never be greater than the current ns->level + 1.
176 */
177 if (set_tid_size > ns->level + 1)
178 return ERR_PTR(-EINVAL);
179
Pavel Emelianovbaf8f0f2007-10-18 23:39:48 -0700180 pid = kmem_cache_alloc(ns->pid_cachep, GFP_KERNEL);
Eric W. Biederman92476d72006-03-31 02:31:42 -0800181 if (!pid)
Michal Hocko35f71bc2015-04-16 12:47:38 -0700182 return ERR_PTR(retval);
Eric W. Biederman92476d72006-03-31 02:31:42 -0800183
Pavel Emelyanov8ef047a2007-10-18 23:40:05 -0700184 tmp = ns;
Eric W. Biederman0a01f2c2012-08-01 10:33:47 -0700185 pid->level = ns->level;
Gargi Sharma95846ec2017-11-17 15:30:30 -0800186
Pavel Emelyanov8ef047a2007-10-18 23:40:05 -0700187 for (i = ns->level; i >= 0; i--) {
Adrian Reber49cb2fc2019-11-15 13:36:20 +0100188 int tid = 0;
189
190 if (set_tid_size) {
191 tid = set_tid[ns->level - i];
192
193 retval = -EINVAL;
194 if (tid < 1 || tid >= pid_max)
195 goto out_free;
196 /*
197 * Also fail if a PID != 1 is requested and
198 * no PID 1 exists.
199 */
200 if (tid != 1 && !tmp->child_reaper)
201 goto out_free;
202 retval = -EPERM;
Adrian Reber1caef812020-07-19 12:04:12 +0200203 if (!checkpoint_restore_ns_capable(tmp->user_ns))
Adrian Reber49cb2fc2019-11-15 13:36:20 +0100204 goto out_free;
205 set_tid_size--;
206 }
Gargi Sharma95846ec2017-11-17 15:30:30 -0800207
208 idr_preload(GFP_KERNEL);
209 spin_lock_irq(&pidmap_lock);
210
Adrian Reber49cb2fc2019-11-15 13:36:20 +0100211 if (tid) {
212 nr = idr_alloc(&tmp->idr, NULL, tid,
213 tid + 1, GFP_ATOMIC);
214 /*
215 * If ENOSPC is returned it means that the PID is
216 * alreay in use. Return EEXIST in that case.
217 */
218 if (nr == -ENOSPC)
219 nr = -EEXIST;
220 } else {
221 int pid_min = 1;
222 /*
223 * init really needs pid 1, but after reaching the
224 * maximum wrap back to RESERVED_PIDS
225 */
226 if (idr_get_cursor(&tmp->idr) > RESERVED_PIDS)
227 pid_min = RESERVED_PIDS;
Gargi Sharma95846ec2017-11-17 15:30:30 -0800228
Adrian Reber49cb2fc2019-11-15 13:36:20 +0100229 /*
230 * Store a null pointer so find_pid_ns does not find
231 * a partially initialized PID (see below).
232 */
233 nr = idr_alloc_cyclic(&tmp->idr, NULL, pid_min,
234 pid_max, GFP_ATOMIC);
235 }
Gargi Sharma95846ec2017-11-17 15:30:30 -0800236 spin_unlock_irq(&pidmap_lock);
237 idr_preload_end();
238
Arnd Bergmann287980e2016-05-27 23:23:25 +0200239 if (nr < 0) {
KJ Tsanaktsidisf83606f2018-09-20 12:22:25 -0700240 retval = (nr == -ENOSPC) ? -EAGAIN : nr;
Pavel Emelyanov8ef047a2007-10-18 23:40:05 -0700241 goto out_free;
Michal Hocko35f71bc2015-04-16 12:47:38 -0700242 }
Eric W. Biederman92476d72006-03-31 02:31:42 -0800243
Pavel Emelyanov8ef047a2007-10-18 23:40:05 -0700244 pid->numbers[i].nr = nr;
245 pid->numbers[i].ns = tmp;
246 tmp = tmp->parent;
247 }
248
Christian Brauner10dab842020-03-08 14:29:17 +0100249 /*
250 * ENOMEM is not the most obvious choice especially for the case
251 * where the child subreaper has already exited and the pid
252 * namespace denies the creation of any new processes. But ENOMEM
253 * is what we have exposed to userspace for a long time and it is
254 * documented behavior for pid namespaces. So we can't easily
255 * change it even if there were an error code better suited.
256 */
Corey Minyardb26ebfe2020-03-06 11:23:14 -0600257 retval = -ENOMEM;
258
Pavel Emelyanovb461cc02007-10-18 23:40:09 -0700259 get_pid_ns(ns);
Joel Fernandes (Google)f57e5152019-07-16 16:30:06 -0700260 refcount_set(&pid->count, 1);
Eric W. Biederman63f818f2020-04-07 09:43:04 -0500261 spin_lock_init(&pid->lock);
Eric W. Biederman92476d72006-03-31 02:31:42 -0800262 for (type = 0; type < PIDTYPE_MAX; ++type)
263 INIT_HLIST_HEAD(&pid->tasks[type]);
264
Joel Fernandes (Google)b53b0b92019-04-30 12:21:53 -0400265 init_waitqueue_head(&pid->wait_pidfd);
Eric W. Biederman7bc3e6e2020-02-19 18:22:26 -0600266 INIT_HLIST_HEAD(&pid->inodes);
Joel Fernandes (Google)b53b0b92019-04-30 12:21:53 -0400267
André Goddard Rosa417e3152009-12-15 16:47:40 -0800268 upid = pid->numbers + ns->level;
Eric W. Biederman92476d72006-03-31 02:31:42 -0800269 spin_lock_irq(&pidmap_lock);
Gargi Sharmae8cfbc22017-11-17 15:30:34 -0800270 if (!(ns->pid_allocated & PIDNS_ADDING))
Eric W. Biederman5e1182deb2010-07-12 18:50:25 -0700271 goto out_unlock;
Eric W. Biederman0a01f2c2012-08-01 10:33:47 -0700272 for ( ; upid >= pid->numbers; --upid) {
Gargi Sharma95846ec2017-11-17 15:30:30 -0800273 /* Make the PID visible to find_pid_ns. */
274 idr_replace(&upid->ns->idr, pid, upid->nr);
Gargi Sharmae8cfbc22017-11-17 15:30:34 -0800275 upid->ns->pid_allocated++;
Eric W. Biederman0a01f2c2012-08-01 10:33:47 -0700276 }
Eric W. Biederman92476d72006-03-31 02:31:42 -0800277 spin_unlock_irq(&pidmap_lock);
278
Eric W. Biederman92476d72006-03-31 02:31:42 -0800279 return pid;
280
Eric W. Biederman5e1182deb2010-07-12 18:50:25 -0700281out_unlock:
Eric W. Biederman6e666882013-02-12 13:46:23 -0800282 spin_unlock_irq(&pidmap_lock);
Oleg Nesterov24c037e2014-12-10 15:55:25 -0800283 put_pid_ns(ns);
284
Eric W. Biederman92476d72006-03-31 02:31:42 -0800285out_free:
Gargi Sharma95846ec2017-11-17 15:30:30 -0800286 spin_lock_irq(&pidmap_lock);
Matthew Wilcox1a80dad2018-12-28 07:22:26 -0800287 while (++i <= ns->level) {
288 upid = pid->numbers + i;
289 idr_remove(&upid->ns->idr, upid->nr);
290 }
Gargi Sharma95846ec2017-11-17 15:30:30 -0800291
Eric W. Biedermanc0ee5542017-12-22 12:37:43 -0600292 /* On failure to allocate the first pid, reset the state */
293 if (ns->pid_allocated == PIDNS_ADDING)
294 idr_set_cursor(&ns->idr, 0);
295
Gargi Sharma95846ec2017-11-17 15:30:30 -0800296 spin_unlock_irq(&pidmap_lock);
Pavel Emelyanov8ef047a2007-10-18 23:40:05 -0700297
Pavel Emelianovbaf8f0f2007-10-18 23:39:48 -0700298 kmem_cache_free(ns->pid_cachep, pid);
Michal Hocko35f71bc2015-04-16 12:47:38 -0700299 return ERR_PTR(retval);
Eric W. Biederman92476d72006-03-31 02:31:42 -0800300}
301
Eric W. Biedermanc876ad762012-12-21 20:27:12 -0800302void disable_pid_allocation(struct pid_namespace *ns)
303{
304 spin_lock_irq(&pidmap_lock);
Gargi Sharmae8cfbc22017-11-17 15:30:34 -0800305 ns->pid_allocated &= ~PIDNS_ADDING;
Eric W. Biedermanc876ad762012-12-21 20:27:12 -0800306 spin_unlock_irq(&pidmap_lock);
307}
308
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800309struct pid *find_pid_ns(int nr, struct pid_namespace *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
Gargi Sharmae8cfbc22017-11-17 15:30:34 -0800311 return idr_find(&ns->idr, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312}
Pavel Emelyanov198fe212007-10-18 23:40:06 -0700313EXPORT_SYMBOL_GPL(find_pid_ns);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Pavel Emelyanov89905712007-10-18 23:40:19 -0700315struct pid *find_vpid(int nr)
316{
Eric W. Biederman17cf22c2010-03-02 14:51:53 -0800317 return find_pid_ns(nr, task_active_pid_ns(current));
Pavel Emelyanov89905712007-10-18 23:40:19 -0700318}
319EXPORT_SYMBOL_GPL(find_vpid);
320
Eric W. Biederman2c470472017-09-26 13:06:43 -0500321static struct pid **task_pid_ptr(struct task_struct *task, enum pid_type type)
322{
323 return (type == PIDTYPE_PID) ?
324 &task->thread_pid :
Eric W. Biederman2c470472017-09-26 13:06:43 -0500325 &task->signal->pids[type];
326}
327
Sukadev Bhattiprolue713d0d2007-05-10 22:22:58 -0700328/*
329 * attach_pid() must be called with the tasklist_lock write-held.
330 */
Oleg Nesterov81907732013-07-03 15:08:31 -0700331void attach_pid(struct task_struct *task, enum pid_type type)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
Eric W. Biederman2c470472017-09-26 13:06:43 -0500333 struct pid *pid = *task_pid_ptr(task, type);
334 hlist_add_head_rcu(&task->pid_links[type], &pid->tasks[type]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335}
336
Oleg Nesterov24336eae2008-04-30 00:54:26 -0700337static void __change_pid(struct task_struct *task, enum pid_type type,
338 struct pid *new)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339{
Eric W. Biederman2c470472017-09-26 13:06:43 -0500340 struct pid **pid_ptr = task_pid_ptr(task, type);
Eric W. Biederman92476d72006-03-31 02:31:42 -0800341 struct pid *pid;
342 int tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343
Eric W. Biederman2c470472017-09-26 13:06:43 -0500344 pid = *pid_ptr;
Eric W. Biederman92476d72006-03-31 02:31:42 -0800345
Eric W. Biederman2c470472017-09-26 13:06:43 -0500346 hlist_del_rcu(&task->pid_links[type]);
347 *pid_ptr = new;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348
349 for (tmp = PIDTYPE_MAX; --tmp >= 0; )
Christian Brauner1d416a12019-10-17 12:18:30 +0200350 if (pid_has_task(pid, tmp))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 return;
352
Eric W. Biederman92476d72006-03-31 02:31:42 -0800353 free_pid(pid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354}
355
Oleg Nesterov24336eae2008-04-30 00:54:26 -0700356void detach_pid(struct task_struct *task, enum pid_type type)
357{
358 __change_pid(task, type, NULL);
359}
360
361void change_pid(struct task_struct *task, enum pid_type type,
362 struct pid *pid)
363{
364 __change_pid(task, type, pid);
Oleg Nesterov81907732013-07-03 15:08:31 -0700365 attach_pid(task, type);
Oleg Nesterov24336eae2008-04-30 00:54:26 -0700366}
367
Eric W. Biederman6b03d132020-04-19 06:35:02 -0500368void exchange_tids(struct task_struct *left, struct task_struct *right)
369{
370 struct pid *pid1 = left->thread_pid;
371 struct pid *pid2 = right->thread_pid;
372 struct hlist_head *head1 = &pid1->tasks[PIDTYPE_PID];
373 struct hlist_head *head2 = &pid2->tasks[PIDTYPE_PID];
374
375 /* Swap the single entry tid lists */
376 hlists_swap_heads_rcu(head1, head2);
377
378 /* Swap the per task_struct pid */
379 rcu_assign_pointer(left->thread_pid, pid2);
380 rcu_assign_pointer(right->thread_pid, pid1);
381
382 /* Swap the cached value */
383 WRITE_ONCE(left->pid, pid_nr(pid2));
384 WRITE_ONCE(right->pid, pid_nr(pid1));
385}
386
Eric W. Biedermanc18258c2006-09-27 01:51:06 -0700387/* transfer_pid is an optimization of attach_pid(new), detach_pid(old) */
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800388void transfer_pid(struct task_struct *old, struct task_struct *new,
Eric W. Biedermanc18258c2006-09-27 01:51:06 -0700389 enum pid_type type)
390{
Eric W. Biederman2c470472017-09-26 13:06:43 -0500391 if (type == PIDTYPE_PID)
392 new->thread_pid = old->thread_pid;
393 hlist_replace_rcu(&old->pid_links[type], &new->pid_links[type]);
Eric W. Biedermanc18258c2006-09-27 01:51:06 -0700394}
395
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800396struct task_struct *pid_task(struct pid *pid, enum pid_type type)
Eric W. Biederman92476d72006-03-31 02:31:42 -0800397{
398 struct task_struct *result = NULL;
399 if (pid) {
400 struct hlist_node *first;
Arnd Bergmann67bdbff2010-02-25 16:55:13 +0100401 first = rcu_dereference_check(hlist_first_rcu(&pid->tasks[type]),
Paul E. McKenneydb1466b2010-03-03 07:46:56 -0800402 lockdep_tasklist_lock_is_held());
Eric W. Biederman92476d72006-03-31 02:31:42 -0800403 if (first)
Eric W. Biederman2c470472017-09-26 13:06:43 -0500404 result = hlist_entry(first, struct task_struct, pid_links[(type)]);
Eric W. Biederman92476d72006-03-31 02:31:42 -0800405 }
406 return result;
407}
Pavel Emelyanoveccba062008-02-07 00:13:21 -0800408EXPORT_SYMBOL(pid_task);
Eric W. Biederman92476d72006-03-31 02:31:42 -0800409
410/*
Tetsuo Handa9728e5d2010-03-05 13:42:56 -0800411 * Must be called under rcu_read_lock().
Eric W. Biederman92476d72006-03-31 02:31:42 -0800412 */
Christoph Hellwig17f98dc2009-06-17 16:27:51 -0700413struct task_struct *find_task_by_pid_ns(pid_t nr, struct pid_namespace *ns)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414{
Paul E. McKenneyf78f5b92015-06-18 15:50:02 -0700415 RCU_LOCKDEP_WARN(!rcu_read_lock_held(),
416 "find_task_by_pid_ns() needs rcu_read_lock() protection");
Christoph Hellwig17f98dc2009-06-17 16:27:51 -0700417 return pid_task(find_pid_ns(nr, ns), PIDTYPE_PID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700420struct task_struct *find_task_by_vpid(pid_t vnr)
421{
Eric W. Biederman17cf22c2010-03-02 14:51:53 -0800422 return find_task_by_pid_ns(vnr, task_active_pid_ns(current));
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700423}
Pavel Emelyanov228ebcb2007-10-18 23:40:16 -0700424
Mike Rapoport2ee08262018-02-06 15:40:17 -0800425struct task_struct *find_get_task_by_vpid(pid_t nr)
426{
427 struct task_struct *task;
428
429 rcu_read_lock();
430 task = find_task_by_vpid(nr);
431 if (task)
432 get_task_struct(task);
433 rcu_read_unlock();
434
435 return task;
436}
437
Oleg Nesterov1a657f782006-10-02 02:18:59 -0700438struct pid *get_task_pid(struct task_struct *task, enum pid_type type)
439{
440 struct pid *pid;
441 rcu_read_lock();
Eric W. Biederman2c470472017-09-26 13:06:43 -0500442 pid = get_pid(rcu_dereference(*task_pid_ptr(task, type)));
Oleg Nesterov1a657f782006-10-02 02:18:59 -0700443 rcu_read_unlock();
444 return pid;
445}
Rik van Riel77c100c2011-02-01 09:51:46 -0500446EXPORT_SYMBOL_GPL(get_task_pid);
Oleg Nesterov1a657f782006-10-02 02:18:59 -0700447
Harvey Harrison7ad5b3a2008-02-08 04:19:53 -0800448struct task_struct *get_pid_task(struct pid *pid, enum pid_type type)
Eric W. Biederman92476d72006-03-31 02:31:42 -0800449{
450 struct task_struct *result;
451 rcu_read_lock();
452 result = pid_task(pid, type);
453 if (result)
454 get_task_struct(result);
455 rcu_read_unlock();
456 return result;
457}
Rik van Riel77c100c2011-02-01 09:51:46 -0500458EXPORT_SYMBOL_GPL(get_pid_task);
Eric W. Biederman92476d72006-03-31 02:31:42 -0800459
460struct pid *find_get_pid(pid_t nr)
461{
462 struct pid *pid;
463
464 rcu_read_lock();
Pavel Emelyanov198fe212007-10-18 23:40:06 -0700465 pid = get_pid(find_vpid(nr));
Eric W. Biederman92476d72006-03-31 02:31:42 -0800466 rcu_read_unlock();
467
468 return pid;
469}
David Sterba339caf22008-07-25 01:48:31 -0700470EXPORT_SYMBOL_GPL(find_get_pid);
Eric W. Biederman92476d72006-03-31 02:31:42 -0800471
Pavel Emelyanov7af57292007-10-18 23:40:06 -0700472pid_t pid_nr_ns(struct pid *pid, struct pid_namespace *ns)
473{
474 struct upid *upid;
475 pid_t nr = 0;
476
477 if (pid && ns->level <= pid->level) {
478 upid = &pid->numbers[ns->level];
479 if (upid->ns == ns)
480 nr = upid->nr;
481 }
482 return nr;
483}
Eric W. Biederman4f82f452012-05-24 10:37:59 -0600484EXPORT_SYMBOL_GPL(pid_nr_ns);
Pavel Emelyanov7af57292007-10-18 23:40:06 -0700485
Eric W. Biederman44c4e1b2008-02-08 04:19:15 -0800486pid_t pid_vnr(struct pid *pid)
487{
Eric W. Biederman17cf22c2010-03-02 14:51:53 -0800488 return pid_nr_ns(pid, task_active_pid_ns(current));
Eric W. Biederman44c4e1b2008-02-08 04:19:15 -0800489}
490EXPORT_SYMBOL_GPL(pid_vnr);
491
Oleg Nesterov52ee2df2009-04-02 16:58:38 -0700492pid_t __task_pid_nr_ns(struct task_struct *task, enum pid_type type,
493 struct pid_namespace *ns)
Pavel Emelyanov2f2a3a42007-10-18 23:40:19 -0700494{
Oleg Nesterov52ee2df2009-04-02 16:58:38 -0700495 pid_t nr = 0;
496
497 rcu_read_lock();
498 if (!ns)
Eric W. Biederman17cf22c2010-03-02 14:51:53 -0800499 ns = task_active_pid_ns(current);
Oleg Nesterov1dd694a2020-04-21 12:19:04 +0200500 nr = pid_nr_ns(rcu_dereference(*task_pid_ptr(task, type)), ns);
Oleg Nesterov52ee2df2009-04-02 16:58:38 -0700501 rcu_read_unlock();
502
503 return nr;
Pavel Emelyanov2f2a3a42007-10-18 23:40:19 -0700504}
Oleg Nesterov52ee2df2009-04-02 16:58:38 -0700505EXPORT_SYMBOL(__task_pid_nr_ns);
Pavel Emelyanov2f2a3a42007-10-18 23:40:19 -0700506
Eric W. Biederman61bce0f2009-01-07 18:08:49 -0800507struct pid_namespace *task_active_pid_ns(struct task_struct *tsk)
508{
509 return ns_of_pid(task_pid(tsk));
510}
511EXPORT_SYMBOL_GPL(task_active_pid_ns);
512
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513/*
Frederik Schwarzer025dfda2008-10-16 19:02:37 +0200514 * Used by proc to find the first pid that is greater than or equal to nr.
Eric W. Biederman0804ef42006-10-02 02:17:04 -0700515 *
Pavel Emelyanove49859e2008-07-25 01:48:36 -0700516 * If there is a pid at nr this function is exactly the same as find_pid_ns.
Eric W. Biederman0804ef42006-10-02 02:17:04 -0700517 */
Pavel Emelyanov198fe212007-10-18 23:40:06 -0700518struct pid *find_ge_pid(int nr, struct pid_namespace *ns)
Eric W. Biederman0804ef42006-10-02 02:17:04 -0700519{
Gargi Sharma95846ec2017-11-17 15:30:30 -0800520 return idr_get_next(&ns->idr, &nr);
Eric W. Biederman0804ef42006-10-02 02:17:04 -0700521}
522
Minchan Kim1aa92cd2020-10-17 16:14:54 -0700523struct pid *pidfd_get_pid(unsigned int fd, unsigned int *flags)
524{
525 struct fd f;
526 struct pid *pid;
527
528 f = fdget(fd);
529 if (!f.file)
530 return ERR_PTR(-EBADF);
531
532 pid = pidfd_pid(f.file);
533 if (!IS_ERR(pid)) {
534 get_pid(pid);
535 *flags = f.file->f_flags;
536 }
537
538 fdput(f);
539 return pid;
540}
541
Christian Brauner32fcb422019-05-24 12:43:51 +0200542/**
543 * pidfd_create() - Create a new pid file descriptor.
544 *
Christian Brauner6da73d12020-09-02 12:21:27 +0200545 * @pid: struct pid that the pidfd will reference
546 * @flags: flags to pass
Christian Brauner32fcb422019-05-24 12:43:51 +0200547 *
548 * This creates a new pid file descriptor with the O_CLOEXEC flag set.
549 *
550 * Note, that this function can only be called after the fd table has
551 * been unshared to avoid leaking the pidfd to the new process.
552 *
553 * Return: On success, a cloexec pidfd is returned.
554 * On error, a negative errno number will be returned.
555 */
Christian Brauner6da73d12020-09-02 12:21:27 +0200556static int pidfd_create(struct pid *pid, unsigned int flags)
Christian Brauner32fcb422019-05-24 12:43:51 +0200557{
558 int fd;
559
560 fd = anon_inode_getfd("[pidfd]", &pidfd_fops, get_pid(pid),
Christian Brauner6da73d12020-09-02 12:21:27 +0200561 flags | O_RDWR | O_CLOEXEC);
Christian Brauner32fcb422019-05-24 12:43:51 +0200562 if (fd < 0)
563 put_pid(pid);
564
565 return fd;
566}
567
568/**
569 * pidfd_open() - Open new pid file descriptor.
570 *
571 * @pid: pid for which to retrieve a pidfd
572 * @flags: flags to pass
573 *
574 * This creates a new pid file descriptor with the O_CLOEXEC flag set for
575 * the process identified by @pid. Currently, the process identified by
576 * @pid must be a thread-group leader. This restriction currently exists
577 * for all aspects of pidfds including pidfd creation (CLONE_PIDFD cannot
578 * be used with CLONE_THREAD) and pidfd polling (only supports thread group
579 * leaders).
580 *
581 * Return: On success, a cloexec pidfd is returned.
582 * On error, a negative errno number will be returned.
583 */
584SYSCALL_DEFINE2(pidfd_open, pid_t, pid, unsigned int, flags)
585{
Christian Brauner1e1d0f02019-10-17 12:18:32 +0200586 int fd;
Christian Brauner32fcb422019-05-24 12:43:51 +0200587 struct pid *p;
588
Christian Brauner6da73d12020-09-02 12:21:27 +0200589 if (flags & ~PIDFD_NONBLOCK)
Christian Brauner32fcb422019-05-24 12:43:51 +0200590 return -EINVAL;
591
592 if (pid <= 0)
593 return -EINVAL;
594
595 p = find_get_pid(pid);
596 if (!p)
597 return -ESRCH;
598
Christian Brauner1e1d0f02019-10-17 12:18:32 +0200599 if (pid_has_task(p, PIDTYPE_TGID))
Christian Brauner6da73d12020-09-02 12:21:27 +0200600 fd = pidfd_create(p, flags);
Christian Brauner1e1d0f02019-10-17 12:18:32 +0200601 else
602 fd = -EINVAL;
Christian Brauner32fcb422019-05-24 12:43:51 +0200603
Christian Brauner32fcb422019-05-24 12:43:51 +0200604 put_pid(p);
605 return fd;
606}
607
Gargi Sharma95846ec2017-11-17 15:30:30 -0800608void __init pid_idr_init(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609{
Zhen Lei840d6fe2016-01-30 10:04:17 +0800610 /* Verify no one has done anything silly: */
Gargi Sharmae8cfbc22017-11-17 15:30:34 -0800611 BUILD_BUG_ON(PID_MAX_LIMIT >= PIDNS_ADDING);
Eric W. Biedermanc876ad762012-12-21 20:27:12 -0800612
Hedi Berriche72680a12010-05-26 14:44:06 -0700613 /* bump default and minimum pid_max based on number of cpus */
614 pid_max = min(pid_max_max, max_t(int, pid_max,
615 PIDS_PER_CPU_DEFAULT * num_possible_cpus()));
616 pid_max_min = max_t(int, pid_max_min,
617 PIDS_PER_CPU_MIN * num_possible_cpus());
618 pr_info("pid_max: default: %u minimum: %u\n", pid_max, pid_max_min);
619
Gargi Sharma95846ec2017-11-17 15:30:30 -0800620 idr_init(&init_pid_ns.idr);
Eric W. Biederman92476d72006-03-31 02:31:42 -0800621
Pavel Emelyanov74bd59b2008-02-08 04:18:24 -0800622 init_pid_ns.pid_cachep = KMEM_CACHE(pid,
Vladimir Davydov5d097052016-01-14 15:18:21 -0800623 SLAB_HWCACHE_ALIGN | SLAB_PANIC | SLAB_ACCOUNT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624}
Sargun Dhillon8649c322020-01-07 09:59:25 -0800625
626static struct file *__pidfd_fget(struct task_struct *task, int fd)
627{
628 struct file *file;
629 int ret;
630
Bernd Edlinger501f9322020-03-21 02:46:16 +0000631 ret = mutex_lock_killable(&task->signal->exec_update_mutex);
Sargun Dhillon8649c322020-01-07 09:59:25 -0800632 if (ret)
633 return ERR_PTR(ret);
634
635 if (ptrace_may_access(task, PTRACE_MODE_ATTACH_REALCREDS))
636 file = fget_task(task, fd);
637 else
638 file = ERR_PTR(-EPERM);
639
Bernd Edlinger501f9322020-03-21 02:46:16 +0000640 mutex_unlock(&task->signal->exec_update_mutex);
Sargun Dhillon8649c322020-01-07 09:59:25 -0800641
642 return file ?: ERR_PTR(-EBADF);
643}
644
645static int pidfd_getfd(struct pid *pid, int fd)
646{
647 struct task_struct *task;
648 struct file *file;
649 int ret;
650
651 task = get_pid_task(pid, PIDTYPE_PID);
652 if (!task)
653 return -ESRCH;
654
655 file = __pidfd_fget(task, fd);
656 put_task_struct(task);
657 if (IS_ERR(file))
658 return PTR_ERR(file);
659
Kees Cook910d2f12020-06-09 16:21:38 -0700660 ret = receive_fd(file, O_CLOEXEC);
661 fput(file);
Sargun Dhillon8649c322020-01-07 09:59:25 -0800662
663 return ret;
664}
665
666/**
667 * sys_pidfd_getfd() - Get a file descriptor from another process
668 *
669 * @pidfd: the pidfd file descriptor of the process
670 * @fd: the file descriptor number to get
671 * @flags: flags on how to get the fd (reserved)
672 *
673 * This syscall gets a copy of a file descriptor from another process
674 * based on the pidfd, and file descriptor number. It requires that
675 * the calling process has the ability to ptrace the process represented
676 * by the pidfd. The process which is having its file descriptor copied
677 * is otherwise unaffected.
678 *
679 * Return: On success, a cloexec file descriptor is returned.
680 * On error, a negative errno number will be returned.
681 */
682SYSCALL_DEFINE3(pidfd_getfd, int, pidfd, int, fd,
683 unsigned int, flags)
684{
685 struct pid *pid;
686 struct fd f;
687 int ret;
688
689 /* flags is currently unused - make sure it's unset */
690 if (flags)
691 return -EINVAL;
692
693 f = fdget(pidfd);
694 if (!f.file)
695 return -EBADF;
696
697 pid = pidfd_pid(f.file);
698 if (IS_ERR(pid))
699 ret = PTR_ERR(pid);
700 else
701 ret = pidfd_getfd(pid, fd);
702
703 fdput(f);
704 return ret;
705}