Merge tag 'io_uring-5.11-2021-01-16' of git://git.kernel.dk/linux-block
[linux/fpc-iii.git] / kernel / cgroup / pids.c
blob511af87f685e8ec6bffc482a1f2941379ce36a05
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3 * Process number limiting controller for cgroups.
5 * Used to allow a cgroup hierarchy to stop any new processes from fork()ing
6 * after a certain limit is reached.
8 * Since it is trivial to hit the task limit without hitting any kmemcg limits
9 * in place, PIDs are a fundamental resource. As such, PID exhaustion must be
10 * preventable in the scope of a cgroup hierarchy by allowing resource limiting
11 * of the number of tasks in a cgroup.
13 * In order to use the `pids` controller, set the maximum number of tasks in
14 * pids.max (this is not available in the root cgroup for obvious reasons). The
15 * number of processes currently in the cgroup is given by pids.current.
16 * Organisational operations are not blocked by cgroup policies, so it is
17 * possible to have pids.current > pids.max. However, it is not possible to
18 * violate a cgroup policy through fork(). fork() will return -EAGAIN if forking
19 * would cause a cgroup policy to be violated.
21 * To set a cgroup to have no limit, set pids.max to "max". This is the default
22 * for all new cgroups (N.B. that PID limits are hierarchical, so the most
23 * stringent limit in the hierarchy is followed).
25 * pids.current tracks all child cgroup hierarchies, so parent/pids.current is
26 * a superset of parent/child/pids.current.
28 * Copyright (C) 2015 Aleksa Sarai <cyphar@cyphar.com>
31 #include <linux/kernel.h>
32 #include <linux/threads.h>
33 #include <linux/atomic.h>
34 #include <linux/cgroup.h>
35 #include <linux/slab.h>
36 #include <linux/sched/task.h>
38 #define PIDS_MAX (PID_MAX_LIMIT + 1ULL)
39 #define PIDS_MAX_STR "max"
41 struct pids_cgroup {
42 struct cgroup_subsys_state css;
45 * Use 64-bit types so that we can safely represent "max" as
46 * %PIDS_MAX = (%PID_MAX_LIMIT + 1).
48 atomic64_t counter;
49 atomic64_t limit;
51 /* Handle for "pids.events" */
52 struct cgroup_file events_file;
54 /* Number of times fork failed because limit was hit. */
55 atomic64_t events_limit;
58 static struct pids_cgroup *css_pids(struct cgroup_subsys_state *css)
60 return container_of(css, struct pids_cgroup, css);
63 static struct pids_cgroup *parent_pids(struct pids_cgroup *pids)
65 return css_pids(pids->css.parent);
68 static struct cgroup_subsys_state *
69 pids_css_alloc(struct cgroup_subsys_state *parent)
71 struct pids_cgroup *pids;
73 pids = kzalloc(sizeof(struct pids_cgroup), GFP_KERNEL);
74 if (!pids)
75 return ERR_PTR(-ENOMEM);
77 atomic64_set(&pids->counter, 0);
78 atomic64_set(&pids->limit, PIDS_MAX);
79 atomic64_set(&pids->events_limit, 0);
80 return &pids->css;
83 static void pids_css_free(struct cgroup_subsys_state *css)
85 kfree(css_pids(css));
88 /**
89 * pids_cancel - uncharge the local pid count
90 * @pids: the pid cgroup state
91 * @num: the number of pids to cancel
93 * This function will WARN if the pid count goes under 0, because such a case is
94 * a bug in the pids controller proper.
96 static void pids_cancel(struct pids_cgroup *pids, int num)
99 * A negative count (or overflow for that matter) is invalid,
100 * and indicates a bug in the `pids` controller proper.
102 WARN_ON_ONCE(atomic64_add_negative(-num, &pids->counter));
106 * pids_uncharge - hierarchically uncharge the pid count
107 * @pids: the pid cgroup state
108 * @num: the number of pids to uncharge
110 static void pids_uncharge(struct pids_cgroup *pids, int num)
112 struct pids_cgroup *p;
114 for (p = pids; parent_pids(p); p = parent_pids(p))
115 pids_cancel(p, num);
119 * pids_charge - hierarchically charge the pid count
120 * @pids: the pid cgroup state
121 * @num: the number of pids to charge
123 * This function does *not* follow the pid limit set. It cannot fail and the new
124 * pid count may exceed the limit. This is only used for reverting failed
125 * attaches, where there is no other way out than violating the limit.
127 static void pids_charge(struct pids_cgroup *pids, int num)
129 struct pids_cgroup *p;
131 for (p = pids; parent_pids(p); p = parent_pids(p))
132 atomic64_add(num, &p->counter);
136 * pids_try_charge - hierarchically try to charge the pid count
137 * @pids: the pid cgroup state
138 * @num: the number of pids to charge
140 * This function follows the set limit. It will fail if the charge would cause
141 * the new value to exceed the hierarchical limit. Returns 0 if the charge
142 * succeeded, otherwise -EAGAIN.
144 static int pids_try_charge(struct pids_cgroup *pids, int num)
146 struct pids_cgroup *p, *q;
148 for (p = pids; parent_pids(p); p = parent_pids(p)) {
149 int64_t new = atomic64_add_return(num, &p->counter);
150 int64_t limit = atomic64_read(&p->limit);
153 * Since new is capped to the maximum number of pid_t, if
154 * p->limit is %PIDS_MAX then we know that this test will never
155 * fail.
157 if (new > limit)
158 goto revert;
161 return 0;
163 revert:
164 for (q = pids; q != p; q = parent_pids(q))
165 pids_cancel(q, num);
166 pids_cancel(p, num);
168 return -EAGAIN;
171 static int pids_can_attach(struct cgroup_taskset *tset)
173 struct task_struct *task;
174 struct cgroup_subsys_state *dst_css;
176 cgroup_taskset_for_each(task, dst_css, tset) {
177 struct pids_cgroup *pids = css_pids(dst_css);
178 struct cgroup_subsys_state *old_css;
179 struct pids_cgroup *old_pids;
182 * No need to pin @old_css between here and cancel_attach()
183 * because cgroup core protects it from being freed before
184 * the migration completes or fails.
186 old_css = task_css(task, pids_cgrp_id);
187 old_pids = css_pids(old_css);
189 pids_charge(pids, 1);
190 pids_uncharge(old_pids, 1);
193 return 0;
196 static void pids_cancel_attach(struct cgroup_taskset *tset)
198 struct task_struct *task;
199 struct cgroup_subsys_state *dst_css;
201 cgroup_taskset_for_each(task, dst_css, tset) {
202 struct pids_cgroup *pids = css_pids(dst_css);
203 struct cgroup_subsys_state *old_css;
204 struct pids_cgroup *old_pids;
206 old_css = task_css(task, pids_cgrp_id);
207 old_pids = css_pids(old_css);
209 pids_charge(old_pids, 1);
210 pids_uncharge(pids, 1);
215 * task_css_check(true) in pids_can_fork() and pids_cancel_fork() relies
216 * on cgroup_threadgroup_change_begin() held by the copy_process().
218 static int pids_can_fork(struct task_struct *task, struct css_set *cset)
220 struct cgroup_subsys_state *css;
221 struct pids_cgroup *pids;
222 int err;
224 if (cset)
225 css = cset->subsys[pids_cgrp_id];
226 else
227 css = task_css_check(current, pids_cgrp_id, true);
228 pids = css_pids(css);
229 err = pids_try_charge(pids, 1);
230 if (err) {
231 /* Only log the first time events_limit is incremented. */
232 if (atomic64_inc_return(&pids->events_limit) == 1) {
233 pr_info("cgroup: fork rejected by pids controller in ");
234 pr_cont_cgroup_path(css->cgroup);
235 pr_cont("\n");
237 cgroup_file_notify(&pids->events_file);
239 return err;
242 static void pids_cancel_fork(struct task_struct *task, struct css_set *cset)
244 struct cgroup_subsys_state *css;
245 struct pids_cgroup *pids;
247 if (cset)
248 css = cset->subsys[pids_cgrp_id];
249 else
250 css = task_css_check(current, pids_cgrp_id, true);
251 pids = css_pids(css);
252 pids_uncharge(pids, 1);
255 static void pids_release(struct task_struct *task)
257 struct pids_cgroup *pids = css_pids(task_css(task, pids_cgrp_id));
259 pids_uncharge(pids, 1);
262 static ssize_t pids_max_write(struct kernfs_open_file *of, char *buf,
263 size_t nbytes, loff_t off)
265 struct cgroup_subsys_state *css = of_css(of);
266 struct pids_cgroup *pids = css_pids(css);
267 int64_t limit;
268 int err;
270 buf = strstrip(buf);
271 if (!strcmp(buf, PIDS_MAX_STR)) {
272 limit = PIDS_MAX;
273 goto set_limit;
276 err = kstrtoll(buf, 0, &limit);
277 if (err)
278 return err;
280 if (limit < 0 || limit >= PIDS_MAX)
281 return -EINVAL;
283 set_limit:
285 * Limit updates don't need to be mutex'd, since it isn't
286 * critical that any racing fork()s follow the new limit.
288 atomic64_set(&pids->limit, limit);
289 return nbytes;
292 static int pids_max_show(struct seq_file *sf, void *v)
294 struct cgroup_subsys_state *css = seq_css(sf);
295 struct pids_cgroup *pids = css_pids(css);
296 int64_t limit = atomic64_read(&pids->limit);
298 if (limit >= PIDS_MAX)
299 seq_printf(sf, "%s\n", PIDS_MAX_STR);
300 else
301 seq_printf(sf, "%lld\n", limit);
303 return 0;
306 static s64 pids_current_read(struct cgroup_subsys_state *css,
307 struct cftype *cft)
309 struct pids_cgroup *pids = css_pids(css);
311 return atomic64_read(&pids->counter);
314 static int pids_events_show(struct seq_file *sf, void *v)
316 struct pids_cgroup *pids = css_pids(seq_css(sf));
318 seq_printf(sf, "max %lld\n", (s64)atomic64_read(&pids->events_limit));
319 return 0;
322 static struct cftype pids_files[] = {
324 .name = "max",
325 .write = pids_max_write,
326 .seq_show = pids_max_show,
327 .flags = CFTYPE_NOT_ON_ROOT,
330 .name = "current",
331 .read_s64 = pids_current_read,
332 .flags = CFTYPE_NOT_ON_ROOT,
335 .name = "events",
336 .seq_show = pids_events_show,
337 .file_offset = offsetof(struct pids_cgroup, events_file),
338 .flags = CFTYPE_NOT_ON_ROOT,
340 { } /* terminate */
343 struct cgroup_subsys pids_cgrp_subsys = {
344 .css_alloc = pids_css_alloc,
345 .css_free = pids_css_free,
346 .can_attach = pids_can_attach,
347 .cancel_attach = pids_cancel_attach,
348 .can_fork = pids_can_fork,
349 .cancel_fork = pids_cancel_fork,
350 .release = pids_release,
351 .legacy_cftypes = pids_files,
352 .dfl_cftypes = pids_files,
353 .threaded = true,