1 // SPDX-License-Identifier: GPL-2.0-only
2 #include "cgroup-internal.h"
4 #include <linux/sched/cputime.h>
8 #include <linux/btf_ids.h>
10 static DEFINE_SPINLOCK(cgroup_rstat_lock);
11 static DEFINE_PER_CPU(raw_spinlock_t, cgroup_rstat_cpu_lock);
13 static void cgroup_base_stat_flush(struct cgroup *cgrp, int cpu);
15 static struct cgroup_rstat_cpu *cgroup_rstat_cpu(struct cgroup *cgrp, int cpu)
17 return per_cpu_ptr(cgrp->rstat_cpu, cpu);
21 * cgroup_rstat_updated - keep track of updated rstat_cpu
22 * @cgrp: target cgroup
23 * @cpu: cpu on which rstat_cpu was updated
25 * @cgrp's rstat_cpu on @cpu was updated. Put it on the parent's matching
26 * rstat_cpu->updated_children list. See the comment on top of
27 * cgroup_rstat_cpu definition for details.
29 void cgroup_rstat_updated(struct cgroup *cgrp, int cpu)
31 raw_spinlock_t *cpu_lock = per_cpu_ptr(&cgroup_rstat_cpu_lock, cpu);
35 * Speculative already-on-list test. This may race leading to
36 * temporary inaccuracies, which is fine.
38 * Because @parent's updated_children is terminated with @parent
39 * instead of NULL, we can tell whether @cgrp is on the list by
40 * testing the next pointer for NULL.
42 if (data_race(cgroup_rstat_cpu(cgrp, cpu)->updated_next))
45 raw_spin_lock_irqsave(cpu_lock, flags);
47 /* put @cgrp and all ancestors on the corresponding updated lists */
49 struct cgroup_rstat_cpu *rstatc = cgroup_rstat_cpu(cgrp, cpu);
50 struct cgroup *parent = cgroup_parent(cgrp);
51 struct cgroup_rstat_cpu *prstatc;
54 * Both additions and removals are bottom-up. If a cgroup
55 * is already in the tree, all ancestors are.
57 if (rstatc->updated_next)
60 /* Root has no parent to link it to, but mark it busy */
62 rstatc->updated_next = cgrp;
66 prstatc = cgroup_rstat_cpu(parent, cpu);
67 rstatc->updated_next = prstatc->updated_children;
68 prstatc->updated_children = cgrp;
73 raw_spin_unlock_irqrestore(cpu_lock, flags);
77 * cgroup_rstat_cpu_pop_updated - iterate and dismantle rstat_cpu updated tree
78 * @pos: current position
79 * @root: root of the tree to traversal
82 * Walks the updated rstat_cpu tree on @cpu from @root. %NULL @pos starts
83 * the traversal and %NULL return indicates the end. During traversal,
84 * each returned cgroup is unlinked from the tree. Must be called with the
85 * matching cgroup_rstat_cpu_lock held.
87 * The only ordering guarantee is that, for a parent and a child pair
88 * covered by a given traversal, if a child is visited, its parent is
89 * guaranteed to be visited afterwards.
91 static struct cgroup *cgroup_rstat_cpu_pop_updated(struct cgroup *pos,
92 struct cgroup *root, int cpu)
94 struct cgroup_rstat_cpu *rstatc;
95 struct cgroup *parent;
101 * We're gonna walk down to the first leaf and visit/remove it. We
102 * can pick whatever unvisited node as the starting point.
106 /* return NULL if this subtree is not on-list */
107 if (!cgroup_rstat_cpu(pos, cpu)->updated_next)
110 pos = cgroup_parent(pos);
113 /* walk down to the first leaf */
115 rstatc = cgroup_rstat_cpu(pos, cpu);
116 if (rstatc->updated_children == pos)
118 pos = rstatc->updated_children;
122 * Unlink @pos from the tree. As the updated_children list is
123 * singly linked, we have to walk it to find the removal point.
124 * However, due to the way we traverse, @pos will be the first
125 * child in most cases. The only exception is @root.
127 parent = cgroup_parent(pos);
129 struct cgroup_rstat_cpu *prstatc;
130 struct cgroup **nextp;
132 prstatc = cgroup_rstat_cpu(parent, cpu);
133 nextp = &prstatc->updated_children;
134 while (*nextp != pos) {
135 struct cgroup_rstat_cpu *nrstatc;
137 nrstatc = cgroup_rstat_cpu(*nextp, cpu);
138 WARN_ON_ONCE(*nextp == parent);
139 nextp = &nrstatc->updated_next;
141 *nextp = rstatc->updated_next;
144 rstatc->updated_next = NULL;
149 * A hook for bpf stat collectors to attach to and flush their stats.
150 * Together with providing bpf kfuncs for cgroup_rstat_updated() and
151 * cgroup_rstat_flush(), this enables a complete workflow where bpf progs that
152 * collect cgroup stats can integrate with rstat for efficient flushing.
154 * A static noinline declaration here could cause the compiler to optimize away
155 * the function. A global noinline declaration will keep the definition, but may
156 * optimize away the callsite. Therefore, __weak is needed to ensure that the
157 * call is still emitted, by telling the compiler that we don't know what the
158 * function might eventually be.
160 * __diag_* below are needed to dismiss the missing prototype warning.
163 __diag_ignore_all("-Wmissing-prototypes",
164 "kfuncs which will be used in BPF programs");
166 __weak noinline void bpf_rstat_flush(struct cgroup *cgrp,
167 struct cgroup *parent, int cpu)
173 /* see cgroup_rstat_flush() */
174 static void cgroup_rstat_flush_locked(struct cgroup *cgrp, bool may_sleep)
175 __releases(&cgroup_rstat_lock) __acquires(&cgroup_rstat_lock)
179 lockdep_assert_held(&cgroup_rstat_lock);
181 for_each_possible_cpu(cpu) {
182 raw_spinlock_t *cpu_lock = per_cpu_ptr(&cgroup_rstat_cpu_lock,
184 struct cgroup *pos = NULL;
188 * The _irqsave() is needed because cgroup_rstat_lock is
189 * spinlock_t which is a sleeping lock on PREEMPT_RT. Acquiring
190 * this lock with the _irq() suffix only disables interrupts on
191 * a non-PREEMPT_RT kernel. The raw_spinlock_t below disables
192 * interrupts on both configurations. The _irqsave() ensures
193 * that interrupts are always disabled and later restored.
195 raw_spin_lock_irqsave(cpu_lock, flags);
196 while ((pos = cgroup_rstat_cpu_pop_updated(pos, cgrp, cpu))) {
197 struct cgroup_subsys_state *css;
199 cgroup_base_stat_flush(pos, cpu);
200 bpf_rstat_flush(pos, cgroup_parent(pos), cpu);
203 list_for_each_entry_rcu(css, &pos->rstat_css_list,
205 css->ss->css_rstat_flush(css, cpu);
208 raw_spin_unlock_irqrestore(cpu_lock, flags);
210 /* if @may_sleep, play nice and yield if necessary */
211 if (may_sleep && (need_resched() ||
212 spin_needbreak(&cgroup_rstat_lock))) {
213 spin_unlock_irq(&cgroup_rstat_lock);
216 spin_lock_irq(&cgroup_rstat_lock);
222 * cgroup_rstat_flush - flush stats in @cgrp's subtree
223 * @cgrp: target cgroup
225 * Collect all per-cpu stats in @cgrp's subtree into the global counters
226 * and propagate them upwards. After this function returns, all cgroups in
227 * the subtree have up-to-date ->stat.
229 * This also gets all cgroups in the subtree including @cgrp off the
230 * ->updated_children lists.
232 * This function may block.
234 void cgroup_rstat_flush(struct cgroup *cgrp)
238 spin_lock_irq(&cgroup_rstat_lock);
239 cgroup_rstat_flush_locked(cgrp, true);
240 spin_unlock_irq(&cgroup_rstat_lock);
244 * cgroup_rstat_flush_irqsafe - irqsafe version of cgroup_rstat_flush()
245 * @cgrp: target cgroup
247 * This function can be called from any context.
249 void cgroup_rstat_flush_irqsafe(struct cgroup *cgrp)
253 spin_lock_irqsave(&cgroup_rstat_lock, flags);
254 cgroup_rstat_flush_locked(cgrp, false);
255 spin_unlock_irqrestore(&cgroup_rstat_lock, flags);
259 * cgroup_rstat_flush_hold - flush stats in @cgrp's subtree and hold
260 * @cgrp: target cgroup
262 * Flush stats in @cgrp's subtree and prevent further flushes. Must be
263 * paired with cgroup_rstat_flush_release().
265 * This function may block.
267 void cgroup_rstat_flush_hold(struct cgroup *cgrp)
268 __acquires(&cgroup_rstat_lock)
271 spin_lock_irq(&cgroup_rstat_lock);
272 cgroup_rstat_flush_locked(cgrp, true);
276 * cgroup_rstat_flush_release - release cgroup_rstat_flush_hold()
278 void cgroup_rstat_flush_release(void)
279 __releases(&cgroup_rstat_lock)
281 spin_unlock_irq(&cgroup_rstat_lock);
284 int cgroup_rstat_init(struct cgroup *cgrp)
288 /* the root cgrp has rstat_cpu preallocated */
289 if (!cgrp->rstat_cpu) {
290 cgrp->rstat_cpu = alloc_percpu(struct cgroup_rstat_cpu);
291 if (!cgrp->rstat_cpu)
295 /* ->updated_children list is self terminated */
296 for_each_possible_cpu(cpu) {
297 struct cgroup_rstat_cpu *rstatc = cgroup_rstat_cpu(cgrp, cpu);
299 rstatc->updated_children = cgrp;
300 u64_stats_init(&rstatc->bsync);
306 void cgroup_rstat_exit(struct cgroup *cgrp)
310 cgroup_rstat_flush(cgrp);
313 for_each_possible_cpu(cpu) {
314 struct cgroup_rstat_cpu *rstatc = cgroup_rstat_cpu(cgrp, cpu);
316 if (WARN_ON_ONCE(rstatc->updated_children != cgrp) ||
317 WARN_ON_ONCE(rstatc->updated_next))
321 free_percpu(cgrp->rstat_cpu);
322 cgrp->rstat_cpu = NULL;
325 void __init cgroup_rstat_boot(void)
329 for_each_possible_cpu(cpu)
330 raw_spin_lock_init(per_cpu_ptr(&cgroup_rstat_cpu_lock, cpu));
334 * Functions for cgroup basic resource statistics implemented on top of
337 static void cgroup_base_stat_add(struct cgroup_base_stat *dst_bstat,
338 struct cgroup_base_stat *src_bstat)
340 dst_bstat->cputime.utime += src_bstat->cputime.utime;
341 dst_bstat->cputime.stime += src_bstat->cputime.stime;
342 dst_bstat->cputime.sum_exec_runtime += src_bstat->cputime.sum_exec_runtime;
343 #ifdef CONFIG_SCHED_CORE
344 dst_bstat->forceidle_sum += src_bstat->forceidle_sum;
348 static void cgroup_base_stat_sub(struct cgroup_base_stat *dst_bstat,
349 struct cgroup_base_stat *src_bstat)
351 dst_bstat->cputime.utime -= src_bstat->cputime.utime;
352 dst_bstat->cputime.stime -= src_bstat->cputime.stime;
353 dst_bstat->cputime.sum_exec_runtime -= src_bstat->cputime.sum_exec_runtime;
354 #ifdef CONFIG_SCHED_CORE
355 dst_bstat->forceidle_sum -= src_bstat->forceidle_sum;
359 static void cgroup_base_stat_flush(struct cgroup *cgrp, int cpu)
361 struct cgroup_rstat_cpu *rstatc = cgroup_rstat_cpu(cgrp, cpu);
362 struct cgroup *parent = cgroup_parent(cgrp);
363 struct cgroup_base_stat delta;
366 /* Root-level stats are sourced from system-wide CPU stats */
370 /* fetch the current per-cpu values */
372 seq = __u64_stats_fetch_begin(&rstatc->bsync);
373 delta = rstatc->bstat;
374 } while (__u64_stats_fetch_retry(&rstatc->bsync, seq));
376 /* propagate percpu delta to global */
377 cgroup_base_stat_sub(&delta, &rstatc->last_bstat);
378 cgroup_base_stat_add(&cgrp->bstat, &delta);
379 cgroup_base_stat_add(&rstatc->last_bstat, &delta);
381 /* propagate global delta to parent (unless that's root) */
382 if (cgroup_parent(parent)) {
384 cgroup_base_stat_sub(&delta, &cgrp->last_bstat);
385 cgroup_base_stat_add(&parent->bstat, &delta);
386 cgroup_base_stat_add(&cgrp->last_bstat, &delta);
390 static struct cgroup_rstat_cpu *
391 cgroup_base_stat_cputime_account_begin(struct cgroup *cgrp, unsigned long *flags)
393 struct cgroup_rstat_cpu *rstatc;
395 rstatc = get_cpu_ptr(cgrp->rstat_cpu);
396 *flags = u64_stats_update_begin_irqsave(&rstatc->bsync);
400 static void cgroup_base_stat_cputime_account_end(struct cgroup *cgrp,
401 struct cgroup_rstat_cpu *rstatc,
404 u64_stats_update_end_irqrestore(&rstatc->bsync, flags);
405 cgroup_rstat_updated(cgrp, smp_processor_id());
409 void __cgroup_account_cputime(struct cgroup *cgrp, u64 delta_exec)
411 struct cgroup_rstat_cpu *rstatc;
414 rstatc = cgroup_base_stat_cputime_account_begin(cgrp, &flags);
415 rstatc->bstat.cputime.sum_exec_runtime += delta_exec;
416 cgroup_base_stat_cputime_account_end(cgrp, rstatc, flags);
419 void __cgroup_account_cputime_field(struct cgroup *cgrp,
420 enum cpu_usage_stat index, u64 delta_exec)
422 struct cgroup_rstat_cpu *rstatc;
425 rstatc = cgroup_base_stat_cputime_account_begin(cgrp, &flags);
430 rstatc->bstat.cputime.utime += delta_exec;
434 case CPUTIME_SOFTIRQ:
435 rstatc->bstat.cputime.stime += delta_exec;
437 #ifdef CONFIG_SCHED_CORE
438 case CPUTIME_FORCEIDLE:
439 rstatc->bstat.forceidle_sum += delta_exec;
446 cgroup_base_stat_cputime_account_end(cgrp, rstatc, flags);
450 * compute the cputime for the root cgroup by getting the per cpu data
451 * at a global level, then categorizing the fields in a manner consistent
452 * with how it is done by __cgroup_account_cputime_field for each bit of
453 * cpu time attributed to a cgroup.
455 static void root_cgroup_cputime(struct cgroup_base_stat *bstat)
457 struct task_cputime *cputime = &bstat->cputime;
462 cputime->sum_exec_runtime = 0;
463 for_each_possible_cpu(i) {
464 struct kernel_cpustat kcpustat;
465 u64 *cpustat = kcpustat.cpustat;
469 kcpustat_cpu_fetch(&kcpustat, i);
471 user += cpustat[CPUTIME_USER];
472 user += cpustat[CPUTIME_NICE];
473 cputime->utime += user;
475 sys += cpustat[CPUTIME_SYSTEM];
476 sys += cpustat[CPUTIME_IRQ];
477 sys += cpustat[CPUTIME_SOFTIRQ];
478 cputime->stime += sys;
480 cputime->sum_exec_runtime += user;
481 cputime->sum_exec_runtime += sys;
482 cputime->sum_exec_runtime += cpustat[CPUTIME_STEAL];
484 #ifdef CONFIG_SCHED_CORE
485 bstat->forceidle_sum += cpustat[CPUTIME_FORCEIDLE];
490 void cgroup_base_stat_cputime_show(struct seq_file *seq)
492 struct cgroup *cgrp = seq_css(seq)->cgroup;
493 u64 usage, utime, stime;
494 struct cgroup_base_stat bstat;
495 #ifdef CONFIG_SCHED_CORE
499 if (cgroup_parent(cgrp)) {
500 cgroup_rstat_flush_hold(cgrp);
501 usage = cgrp->bstat.cputime.sum_exec_runtime;
502 cputime_adjust(&cgrp->bstat.cputime, &cgrp->prev_cputime,
504 #ifdef CONFIG_SCHED_CORE
505 forceidle_time = cgrp->bstat.forceidle_sum;
507 cgroup_rstat_flush_release();
509 root_cgroup_cputime(&bstat);
510 usage = bstat.cputime.sum_exec_runtime;
511 utime = bstat.cputime.utime;
512 stime = bstat.cputime.stime;
513 #ifdef CONFIG_SCHED_CORE
514 forceidle_time = bstat.forceidle_sum;
518 do_div(usage, NSEC_PER_USEC);
519 do_div(utime, NSEC_PER_USEC);
520 do_div(stime, NSEC_PER_USEC);
521 #ifdef CONFIG_SCHED_CORE
522 do_div(forceidle_time, NSEC_PER_USEC);
525 seq_printf(seq, "usage_usec %llu\n"
527 "system_usec %llu\n",
528 usage, utime, stime);
530 #ifdef CONFIG_SCHED_CORE
531 seq_printf(seq, "core_sched.force_idle_usec %llu\n", forceidle_time);
535 /* Add bpf kfuncs for cgroup_rstat_updated() and cgroup_rstat_flush() */
536 BTF_SET8_START(bpf_rstat_kfunc_ids)
537 BTF_ID_FLAGS(func, cgroup_rstat_updated)
538 BTF_ID_FLAGS(func, cgroup_rstat_flush, KF_SLEEPABLE)
539 BTF_SET8_END(bpf_rstat_kfunc_ids)
541 static const struct btf_kfunc_id_set bpf_rstat_kfunc_set = {
542 .owner = THIS_MODULE,
543 .set = &bpf_rstat_kfunc_ids,
546 static int __init bpf_rstat_kfunc_init(void)
548 return register_btf_kfunc_id_set(BPF_PROG_TYPE_TRACING,
549 &bpf_rstat_kfunc_set);
551 late_initcall(bpf_rstat_kfunc_init);